diff --git a/.yarn/versions/118d26de.yml b/.yarn/versions/118d26de.yml new file mode 100644 index 0000000000..f522e77c74 --- /dev/null +++ b/.yarn/versions/118d26de.yml @@ -0,0 +1,4 @@ +undecided: + - "@beanstalk/sdk" + - ui + - "@beanstalk/protocol" diff --git a/projects/cli/package.json b/projects/cli/package.json index 2bff02aee7..12102991fd 100644 --- a/projects/cli/package.json +++ b/projects/cli/package.json @@ -1,6 +1,6 @@ { "name": "@beanstalk/cli", - "version": "0.0.9", + "version": "0.0.10", "description": "Beanstalk protocol development cli tool", "license": "MIT", "repository": { diff --git a/projects/cli/src/cli.ts b/projects/cli/src/cli.ts index 73c222b41e..3777bc5381 100644 --- a/projects/cli/src/cli.ts +++ b/projects/cli/src/cli.ts @@ -7,6 +7,7 @@ import { setbalance } from "./commands/setbalance.js"; import { sunrise } from "./commands/sunrise.js"; import { setPrice } from "./commands/setprice.js"; import { help } from "./commands/help.js"; +import { mineBlocks } from "./commands/mine.js"; main().catch((e) => { console.log("FAILED:"); @@ -22,7 +23,7 @@ async function main() { { name: "amount", alias: "m", defaultValue: "50000" }, { name: "rpcUrl", alias: "r", defaultValue: "http://127.0.0.1:8545" }, { name: "no-imp", type: Boolean }, - { name: "force", alias: "f", type: Boolean} + { name: "force", alias: "f", type: Boolean } ]; const args = commandLineArgs(commands, { partial: true }); @@ -41,6 +42,9 @@ async function main() { case "setprice": await setPrice(sdk, chain, { params: args._unknown }); break; + case "mine": + await mineBlocks(sdk, args.amount); + break; case "help": default: await help(); diff --git a/projects/cli/src/commands/balance.ts b/projects/cli/src/commands/balance.ts index 62c8cfcb3c..e62588a305 100644 --- a/projects/cli/src/commands/balance.ts +++ b/projects/cli/src/commands/balance.ts @@ -9,9 +9,20 @@ export const balance = async (sdk, { account, symbol }) => { res.push(await getBal(sdk, symbol, account)); } else { const bals = await Promise.all( - ["ETH", "WETH", "BEAN", "USDT", "USDC", "DAI", "CRV3", "UNRIPE_BEAN", "UNRIPE_BEAN_CRV3", "BEAN_CRV3_LP", "ROOT"].map((s) => - getBal(sdk, s, account) - ) + [ + "ETH", + "WETH", + "BEAN", + "USDT", + "USDC", + "DAI", + "CRV3", + "UNRIPE_BEAN", + "UNRIPE_BEAN_WETH", + "BEAN_CRV3_LP", + "BEAN_ETH_WELL_LP", + "ROOT" + ].map((s) => getBal(sdk, s, account)) ); res.push(...bals); } diff --git a/projects/cli/src/commands/mine.ts b/projects/cli/src/commands/mine.ts new file mode 100644 index 0000000000..7b3ebaa5d3 --- /dev/null +++ b/projects/cli/src/commands/mine.ts @@ -0,0 +1,18 @@ +import { BeanstalkSDK } from "@beanstalk/sdk"; +import chalk from "chalk"; +import { table } from "table"; + +export const mineBlocks = async (sdk: BeanstalkSDK, amount) => { + const numBlocks = amount === "50000" ? 1 : amount; + + async function mineBlocks(blockNumber) { + while (blockNumber > 0) { + blockNumber--; + await sdk.provider.send("evm_mine", []); + } + } + + await mineBlocks(numBlocks); + + console.log(`${chalk.bold.whiteBright("Mined ")} ${chalk.greenBright(numBlocks)} block(s)`); +}; diff --git a/projects/cli/src/commands/setbalance.ts b/projects/cli/src/commands/setbalance.ts index 04ae6ea661..aa60c95bca 100644 --- a/projects/cli/src/commands/setbalance.ts +++ b/projects/cli/src/commands/setbalance.ts @@ -11,7 +11,7 @@ export const setbalance = async (sdk, chain, { account, symbol, amount }) => { if (!symbol) { await chain.setAllBalances(account, amount); } else { - const symbols = ["ETH", "WETH", "BEAN", "USDT", "USDC", "DAI", "3CRV", "BEAN3CRV", "urBEAN", "urBEAN3CRV", "ROOT"]; + const symbols = ["ETH", "WETH", "BEAN", "USDT", "USDC", "DAI", "3CRV", "BEAN3CRV", "BEANWETH", "urBEAN", "urBEANWETH", "ROOT"]; if (!symbols.includes(symbol)) { console.log(`${chalk.bold.red("Error")} - ${chalk.bold.white(symbol)} is not a valid token. Valid options are: `); console.log(symbols.map((s) => chalk.green(s)).join(", ")); @@ -19,8 +19,9 @@ export const setbalance = async (sdk, chain, { account, symbol, amount }) => { } let t = sdk.tokens[symbol] as Token; if (symbol === "urBEAN") t = sdk.tokens.UNRIPE_BEAN; - if (symbol === "urBEAN3CRV") t = sdk.tokens.UNRIPE_BEAN_CRV3; + if (symbol === "urBEANWETH") t = sdk.tokens.UNRIPE_BEAN_WETH; if (symbol === "BEAN3CRV") t = sdk.tokens.BEAN_CRV3_LP; + if (symbol === "BEANWETH") t = sdk.tokens.BEAN_ETH_WELL_LP; if (typeof chain[`set${symbol}Balance`] !== "function") throw new Error(`${symbol} is not a valid token or the method ${chalk.bold.whiteBright("")}`); diff --git a/projects/sdk/src/classes/Workflow.ts b/projects/sdk/src/classes/Workflow.ts index dd877fcd1f..0ef1d3ae07 100644 --- a/projects/sdk/src/classes/Workflow.ts +++ b/projects/sdk/src/classes/Workflow.ts @@ -1,4 +1,4 @@ -import { ethers } from "ethers"; +import { CallOverrides, ethers } from "ethers"; import { Token } from "src/classes/Token"; import { BeanstalkSDK } from "src/lib/BeanstalkSDK"; import { TokenValue } from "src/TokenValue"; @@ -593,7 +593,7 @@ export abstract class Workflow< * @param slippage A human readable percent value. Ex: 0.1 would mean 0.1% slippage * @returns Promise of a Transaction */ - abstract execute(amountIn: ethers.BigNumber | TokenValue, data: RunData): Promise; + abstract execute(amountIn: ethers.BigNumber | TokenValue, data: RunData, overrides?: CallOverrides): Promise; /** * CallStatic version of the execute method. Allows testing the execution of the workflow. diff --git a/projects/sdk/src/constants/addresses.ts b/projects/sdk/src/constants/addresses.ts index b918951e21..f68b14e68b 100644 --- a/projects/sdk/src/constants/addresses.ts +++ b/projects/sdk/src/constants/addresses.ts @@ -29,8 +29,8 @@ export const addresses = { UNRIPE_BEAN: // "Unripe Bean": Unripe vesting asset for the Bean token, Localhost Address.make("0x1BEA0050E63e05FBb5D8BA2f10cf5800B6224449"), - UNRIPE_BEAN_CRV3: - // "Unripe BEAN:CRV3 LP": Unripe vesting asset for the BEAN:CRV3 LP token, Localhost + UNRIPE_BEAN_WETH: + // "Unripe BEAN:WETH LP": Unripe vesting asset for the BEAN:WETH LP token, Localhost Address.make("0x1BEA3CcD22F4EBd3d37d731BA31Eeca95713716D"), // ---------------------------------------- diff --git a/projects/sdk/src/lib/farm/LibraryPresets.ts b/projects/sdk/src/lib/farm/LibraryPresets.ts index 6b46b41d83..7aa1d3b1b0 100644 --- a/projects/sdk/src/lib/farm/LibraryPresets.ts +++ b/projects/sdk/src/lib/farm/LibraryPresets.ts @@ -22,6 +22,7 @@ export class LibraryPresets { public readonly weth2bean: ActionBuilder; public readonly bean2weth: ActionBuilder; + public readonly weth2bean3crv: ActionBuilder; public readonly wellWethBean; public readonly wellAddLiquidity; @@ -37,6 +38,7 @@ export class LibraryPresets { public readonly dai2weth: ActionBuilder; public readonly usdc2weth: ActionBuilder; + public readonly usdt23crv: ActionBuilder; public readonly usdc2beaneth; public readonly usdt2beaneth; public readonly dai2beaneth; @@ -176,6 +178,20 @@ export class LibraryPresets { this.usdt2weth(FarmFromMode.INTERNAL, toMode) as StepGenerator ]; + ///////// WETH -> 3CRV /////////// + this.weth2bean3crv = (fromMode?: FarmFromMode, toMode?: FarmToMode) => [ + this.weth2usdt(fromMode, FarmToMode.INTERNAL) as StepGenerator, + this.usdt23crv(fromMode, FarmToMode.INTERNAL) as StepGenerator + ]; + + //////// USDT -> 3CRV //////// + this.usdt23crv = (fromMode?: FarmFromMode, toMode?: FarmToMode) => { + const pool = sdk.contracts.curve.pools.pool3.address; + const registry = sdk.contracts.curve.registries.poolRegistry.address; + // [0 ,0 , 1] is for USDT; [DAI, USDC, USDT] + return new sdk.farm.actions.AddLiquidity(pool, registry, [0, 0, 1], fromMode, toMode); + }; + ///////// DAI -> USDT /////////// this.dai2usdt = (fromMode?: FarmFromMode, toMode?: FarmToMode) => new Exchange( @@ -197,7 +213,7 @@ export class LibraryPresets { fromMode, toMode ); - + ///////// DAI -> WETH /////////// this.dai2weth = (fromMode?: FarmFromMode, toMode?: FarmToMode) => [ this.dai2usdt(fromMode, FarmToMode.INTERNAL) as StepGenerator, @@ -210,7 +226,6 @@ export class LibraryPresets { this.usdt2weth(FarmFromMode.INTERNAL, toMode) as StepGenerator ]; - ///////// [ USDC, USDT, DAI ] -> BEANETH /////////// this.usdc2beaneth = (well: BasinWell, account: string, fromMode?: FarmFromMode, toMode?: FarmToMode) => [ this.usdc2weth(fromMode, FarmToMode.INTERNAL) as StepGenerator, @@ -275,7 +290,6 @@ export class LibraryPresets { }; this.wellAddLiquidity = (well: BasinWell, tokenIn: ERC20Token, account: string, from?: FarmFromMode, to?: FarmToMode) => { - const result = []; const advancedPipe = sdk.farm.createAdvancedPipe("pipelineDeposit"); @@ -304,13 +318,13 @@ export class LibraryPresets { } const transferToBeanstalk = new sdk.farm.actions.TransferToken(well.address, account, FarmFromMode.EXTERNAL, FarmToMode.INTERNAL, transferClipboard); - result.push(transfer); advancedPipe.add(addLiquidity, { tag: "amountToDeposit" }); if (transferBack) { advancedPipe.add(approveBack); advancedPipe.add(transferToBeanstalk); } + result.push(advancedPipe); return result; diff --git a/projects/sdk/src/lib/farm/actions/WellShift.ts b/projects/sdk/src/lib/farm/actions/WellShift.ts index ae19433b4a..d11e009c54 100644 --- a/projects/sdk/src/lib/farm/actions/WellShift.ts +++ b/projects/sdk/src/lib/farm/actions/WellShift.ts @@ -4,6 +4,9 @@ import { Token } from "src/classes/Token"; import { RunContext, RunMode, Step, StepClass, Workflow } from "src/classes/Workflow"; import { AdvancedPipePreparedResult } from "src/lib/depot/pipe"; +/** + * Swap tokens in a Well by using the shift() method + */ export class WellShift extends StepClass { public name: string = "shift"; diff --git a/projects/sdk/src/lib/farm/actions/WellSync.ts b/projects/sdk/src/lib/farm/actions/WellSync.ts index 89c2395486..a635e09110 100644 --- a/projects/sdk/src/lib/farm/actions/WellSync.ts +++ b/projects/sdk/src/lib/farm/actions/WellSync.ts @@ -5,6 +5,10 @@ import { Token } from "src/classes/Token"; import { RunContext, RunMode, Step, StepClass } from "src/classes/Workflow"; import { AdvancedPipePreparedResult } from "src/lib/depot/pipe"; +/** + * Add liqudity to a well using the Sync method, which transfers tokens directly to the well first + * which does not require an approval + */ export class WellSync extends StepClass { public name: string = "wellSync"; @@ -31,7 +35,7 @@ export class WellSync extends StepClass { throw new Error("Reverse direction is not supported by wellSync"); } - let amounts: TokenValue[] = [] + let amounts: TokenValue[] = []; for (let i = 0; i < this._well.tokens.length; i++) { if (i === tokenIndex) { amounts[i] = this.tokenIn.fromBlockchain(_amountInStep); @@ -47,23 +51,19 @@ export class WellSync extends StepClass { amountOut: quote.toBigNumber(), value: ethers.BigNumber.from(0), prepare: () => { - const minLP = quote.subSlippage(context.data.slippage || 0.1); WellSync.sdk.debug(`>[${this.name}.prepare()]`, { - well: well.name, - recipient: this.recipient, - quoteAmountLessSlippage: minLP, - method: "sync", - context + well: well.name, + recipient: this.recipient, + quoteAmountLessSlippage: minLP, + method: "sync", + context }); return { target: well.address, - callData: well.contract.interface.encodeFunctionData("sync", [ - this.recipient, - minLP.toBigNumber().toString(), - ]) + callData: well.contract.interface.encodeFunctionData("sync", [this.recipient, minLP.toBigNumber().toString()]) }; }, decode: (data: string) => well.contract.interface.decodeFunctionData("sync", data), diff --git a/projects/sdk/src/lib/silo/Convert.test.ts b/projects/sdk/src/lib/silo/Convert.test.ts index ebcadc36cb..5617994896 100644 --- a/projects/sdk/src/lib/silo/Convert.test.ts +++ b/projects/sdk/src/lib/silo/Convert.test.ts @@ -15,7 +15,7 @@ describe("Silo Convert", function () { const BEAN = sdk.tokens.BEAN; const BEANLP = sdk.tokens.BEAN_CRV3_LP; const urBEAN = sdk.tokens.UNRIPE_BEAN; - const urBEANLP = sdk.tokens.UNRIPE_BEAN_CRV3; + const urBEANLP = sdk.tokens.UNRIPE_BEAN_WETH; const whitelistedTokens = [BEAN, BEANLP, urBEAN, urBEANLP]; beforeAll(async () => { diff --git a/projects/sdk/src/lib/silo/Convert.ts b/projects/sdk/src/lib/silo/Convert.ts index be0a34cff0..f389c07526 100644 --- a/projects/sdk/src/lib/silo/Convert.ts +++ b/projects/sdk/src/lib/silo/Convert.ts @@ -21,24 +21,24 @@ export class Convert { BeanCrv3: Token; BeanEth: Token; urBean: Token; - urBeanCrv3: Token; + urBeanWeth: Token; paths: Map; constructor(sdk: BeanstalkSDK) { Convert.sdk = sdk; this.Bean = Convert.sdk.tokens.BEAN; - this.BeanCrv3 = Convert.sdk.tokens.BEAN_CRV3_LP; + this.BeanCrv3 = Convert.sdk.tokens.BEAN_CRV3_LP; this.BeanEth = Convert.sdk.tokens.BEAN_ETH_WELL_LP; this.urBean = Convert.sdk.tokens.UNRIPE_BEAN; - this.urBeanCrv3 = Convert.sdk.tokens.UNRIPE_BEAN_CRV3; + this.urBeanWeth = Convert.sdk.tokens.UNRIPE_BEAN_WETH; this.paths = new Map(); this.paths.set(this.Bean, this.BeanCrv3); this.paths.set(this.BeanCrv3, this.Bean); this.paths.set(this.Bean, this.BeanEth); this.paths.set(this.BeanEth, this.Bean); - this.paths.set(this.urBean, this.urBeanCrv3); - this.paths.set(this.urBeanCrv3, this.urBean); + this.paths.set(this.urBean, this.urBeanWeth); + this.paths.set(this.urBeanWeth, this.urBean); } async convert(fromToken: Token, toToken: Token, fromAmount: TokenValue, slippage: number = 0.1): Promise { @@ -117,12 +117,12 @@ export class Convert { calculateEncoding(fromToken: Token, toToken: Token, amountIn: TokenValue, minAmountOut: TokenValue) { let encoding; - if (fromToken.address === this.urBean.address && toToken.address === this.urBeanCrv3.address) { + if (fromToken.address === this.urBean.address && toToken.address === this.urBeanWeth.address) { encoding = ConvertEncoder.unripeBeansToLP( amountIn.toBlockchain(), // amountBeans minAmountOut.toBlockchain() // minLP ); - } else if (fromToken.address === this.urBeanCrv3.address && toToken.address === this.urBean.address) { + } else if (fromToken.address === this.urBeanWeth.address && toToken.address === this.urBean.address) { encoding = ConvertEncoder.unripeLPToBeans( amountIn.toBlockchain(), // amountLP minAmountOut.toBlockchain() // minBeans @@ -178,7 +178,7 @@ export class Convert { const deltaB = await Convert.sdk.bean.getDeltaB(); if (deltaB.gte(TokenValue.ZERO)) { - if (fromToken.equals(this.BeanCrv3) || fromToken.equals(this.urBeanCrv3) || fromToken.equals(this.BeanEth)) { + if (fromToken.equals(this.BeanCrv3) || fromToken.equals(this.urBeanWeth) || fromToken.equals(this.BeanEth)) { throw new Error("Cannot convert this token when deltaB is >= 0"); } } else if (deltaB.lt(TokenValue.ZERO)) { diff --git a/projects/sdk/src/lib/silo/Deposit.test.ts b/projects/sdk/src/lib/silo/Deposit.test.ts index eb43243d18..d26cf02b34 100644 --- a/projects/sdk/src/lib/silo/Deposit.test.ts +++ b/projects/sdk/src/lib/silo/Deposit.test.ts @@ -10,10 +10,41 @@ const { sdk, account, utils } = getTestUtils(); jest.setTimeout(30000); +const happyPaths: Record = { + "ETH:BEAN": "ETH -> WETH -> BEAN -> BEAN:SILO", + "ETH:BEAN3CRV": "ETH -> WETH -> 3CRV -> BEAN3CRV -> BEAN3CRV:SILO", + "ETH:BEANWETH": "ETH -> WETH -> BEANWETH -> BEANWETH:SILO", + + "WETH:BEAN": "WETH -> BEAN -> BEAN:SILO", + "WETH:BEAN3CRV": "WETH -> 3CRV -> BEAN3CRV -> BEAN3CRV:SILO", + "WETH:BEANWETH": "WETH -> BEANWETH -> BEANWETH:SILO", + + "BEAN:BEAN": "BEAN -> BEAN:SILO", + "BEAN:BEAN3CRV": "BEAN -> BEAN3CRV -> BEAN3CRV:SILO", + "BEAN:BEANWETH": "BEAN -> BEANWETH -> BEANWETH:SILO", + + "3CRV:BEAN": "3CRV -> USDC -> WETH -> BEAN -> BEAN:SILO", // TODO: Fix this path + "3CRV:BEAN3CRV": "3CRV -> BEAN3CRV -> BEAN3CRV:SILO", + "3CRV:BEANWETH": "3CRV -> USDC -> BEANWETH -> BEANWETH:SILO", + + "DAI:BEAN": "DAI -> WETH -> BEAN -> BEAN:SILO", + "DAI:BEAN3CRV": "DAI -> 3CRV -> BEAN3CRV -> BEAN3CRV:SILO", + "DAI:BEANWETH": "DAI -> BEANWETH -> BEANWETH:SILO", + + "USDC:BEAN": "USDC -> WETH -> BEAN -> BEAN:SILO", + "USDC:BEAN3CRV": "USDC -> 3CRV -> BEAN3CRV -> BEAN3CRV:SILO", + "USDC:BEANWETH": "USDC -> BEANWETH -> BEANWETH:SILO", + + "USDT:BEAN": "USDT -> WETH -> BEAN -> BEAN:SILO", + "USDT:BEAN3CRV": "USDT -> 3CRV -> BEAN3CRV -> BEAN3CRV:SILO", + "USDT:BEANWETH": "USDT -> BEANWETH -> BEANWETH:SILO" +}; + describe("Silo Deposit", function () { const builder = new DepositBuilder(sdk); const whiteListedTokens = Array.from(sdk.tokens.siloWhitelist); + const whiteListedTokensRipe = whiteListedTokens.filter((t) => !t.isUnripe); const bean3CrvDepositable = [ sdk.tokens.ETH, sdk.tokens.WETH, @@ -29,6 +60,22 @@ describe("Silo Deposit", function () { await utils.setAllBalances(account, "20000"); }); + describe("Routes correctly", () => { + describe.each(bean3CrvDepositable)("Whitelist Token", (token: Token) => { + it.each(whiteListedTokensRipe.map((t) => [t.symbol, t]))(`Deposit ${token.symbol} into %s`, async (symbol: string, silo: Token) => { + const op = builder.buildDeposit(silo, account); + op.setInputToken(token); + + // need to run an estimate first to generate the route + await op.estimate(token.amount(10)); + const path = op.route.toString(); + + const goodPath = happyPaths[`${token.symbol}:${silo.symbol}`]; + expect(path).toBe(goodPath); + }); + }); + }); + it("Estimates", async () => { const op = builder.buildDeposit(sdk.tokens.BEAN_CRV3_LP, account); op.setInputToken(sdk.tokens.USDC); diff --git a/projects/sdk/src/lib/silo/DepositOperation.ts b/projects/sdk/src/lib/silo/DepositOperation.ts index b3e4b7d851..31def683ab 100644 --- a/projects/sdk/src/lib/silo/DepositOperation.ts +++ b/projects/sdk/src/lib/silo/DepositOperation.ts @@ -1,5 +1,5 @@ import { ContractTransaction } from "ethers"; -import { Router } from "src/classes/Router"; +import { Router, Route } from "src/classes/Router"; import { Token } from "src/classes/Token"; import { ActionType } from "src/constants/actions"; import { TokenValue } from "src/TokenValue"; @@ -16,6 +16,7 @@ export class DepositOperation { readonly router: Router; workflow: AdvancedFarmWorkflow|FarmWorkflow<{ slippage: number } & Record>; lastAmountIn: TokenValue; + route: Route; constructor(sdk: BeanstalkSDK, router: Router, targetToken: Token, account: string) { if (!sdk.tokens.siloWhitelist.has(targetToken)) throw new Error(`Cannot deposit ${targetToken.symbol}, not on whitelist.`); @@ -35,7 +36,7 @@ export class DepositOperation { } buildWorkflow() { - const route = this.router.getRoute(this.inputToken.symbol, `${this.targetToken.symbol}:SILO`); + this.route = this.router.getRoute(this.inputToken.symbol, `${this.targetToken.symbol}:SILO`); if (this.inputToken.symbol !== "BEANETH" && this.targetToken.symbol === "BEANETH") { this.workflow = DepositOperation.sdk.farm.createAdvancedFarm(`Deposit`); @@ -43,7 +44,7 @@ export class DepositOperation { this.workflow = DepositOperation.sdk.farm.create(`Deposit`); } - for (let i = 0; i < route.length; i++) { + for (let i = 0; i < this.route.length; i++) { let from, to; // First leg, use (USER-DEFINED, INTERNAL) if (i == 0) { @@ -51,7 +52,7 @@ export class DepositOperation { to = FarmToMode.INTERNAL; } // Last leg, ie Deposit() step, use (INTERNAL_TOLERANT, not-used) - else if (i == route.length - 1) { + else if (i == this.route.length - 1) { from = FarmFromMode.INTERNAL_TOLERANT; to = FarmToMode.EXTERNAL; // Dummy value, not used in the Deposit() step } @@ -60,7 +61,7 @@ export class DepositOperation { from = FarmFromMode.INTERNAL_TOLERANT; to = FarmToMode.INTERNAL; } - this.workflow.add(route.getStep(i).build(this.account, from, to)); + this.workflow.add(this.route.getStep(i).build(this.account, from, to)); } } @@ -68,6 +69,10 @@ export class DepositOperation { console.log(this.router.getGraphCode()); } + getSimplePath() { + console.log(this.workflow.summarizeSteps()); + } + async getSummary() { const summary = []; const fromToken = this.inputToken; diff --git a/projects/sdk/src/lib/silo/depositGraph.ts b/projects/sdk/src/lib/silo/depositGraph.ts index 52faf4d0c7..cd23a6d4c0 100644 --- a/projects/sdk/src/lib/silo/depositGraph.ts +++ b/projects/sdk/src/lib/silo/depositGraph.ts @@ -4,6 +4,7 @@ import { CurveMetaPool } from "src/classes/Pool/CurveMetaPool"; import { BasinWell } from "src/classes/Pool/BasinWell"; import { BeanstalkSDK } from "src/lib/BeanstalkSDK"; import { FarmFromMode, FarmToMode } from "src/lib/farm"; +import { setBidirectionalAddRemoveLiquidityEdges } from "../swap/graph"; export const getDepositGraph = (sdk: BeanstalkSDK): Graph => { const whitelist: string[] = []; @@ -132,7 +133,7 @@ export const getDepositGraph = (sdk: BeanstalkSDK): Graph => { * Setup edges to addLiquidity to BEAN:ETH Well. * * Custom routes to avoid swaps to-from Bean - * + * * BEAN / ETH / USDC / USDT / DAI => BEAN_ETH_LP */ { @@ -148,6 +149,7 @@ export const getDepositGraph = (sdk: BeanstalkSDK): Graph => { sdk.farm.presets.wellAddLiquidity(well, from, account, fromMode, toMode), from: from.symbol, to: targetToken.symbol, + label: "wellAddLiquidity" }); }); @@ -157,6 +159,7 @@ export const getDepositGraph = (sdk: BeanstalkSDK): Graph => { sdk.farm.presets.usdc2beaneth(well, account, fromMode, toMode), from: sdk.tokens.USDC.symbol, to: targetToken.symbol, + label: "swap2weth,deposit" }); // USDT => BEAN_ETH_LP @@ -165,40 +168,15 @@ export const getDepositGraph = (sdk: BeanstalkSDK): Graph => { sdk.farm.presets.usdt2beaneth(well, account, fromMode, toMode), from: sdk.tokens.USDT.symbol, to: targetToken.symbol, + label: "swap2weth,eposit" }); // DAI => BEAN_ETH_LP graph.setEdge(sdk.tokens.DAI.symbol, targetToken.symbol, { - build: (account: string, fromMode: FarmFromMode, toMode: FarmToMode) => - sdk.farm.presets.dai2beaneth(well, account, fromMode, toMode), + build: (account: string, fromMode: FarmFromMode, toMode: FarmToMode) => sdk.farm.presets.dai2beaneth(well, account, fromMode, toMode), from: sdk.tokens.DAI.symbol, to: targetToken.symbol, - }); - - } - - /** - * Setup edges to addLiquidity to Curve 3pool. - * - * [ DAI, USDC, USDT ] => 3CRV - */ - { - const targetToken = sdk.tokens.CRV3; - const pool = sdk.contracts.curve.pools.pool3; - const registry = sdk.contracts.curve.registries.poolRegistry.address; - - [sdk.tokens.DAI, sdk.tokens.USDC, sdk.tokens.USDT].forEach((from: Token) => { - const indexes: [number, number, number] = [0, 0, 0]; - const tokenIndex = sdk.pools.BEAN_CRV3.getTokenIndex(from); - if (tokenIndex === -1) throw new Error(`Unable to find index for token ${from.symbol}`); - indexes[tokenIndex - 1] = 1; - graph.setEdge(from.symbol, targetToken.symbol, { - build: (_: string, fromMode: FarmFromMode, toMode: FarmToMode) => - new sdk.farm.actions.AddLiquidity(pool.address, registry, indexes, fromMode, toMode), - from: from.symbol, - to: targetToken.symbol, - label: "addLiquidity" - }); + label: "swap2weth,deposit" }); } @@ -266,70 +244,50 @@ export const getDepositGraph = (sdk: BeanstalkSDK): Graph => { }); } + /** + * Well Swap: WETH => BEAN + */ { - /** - * Handle Other swaps to BEAN - */ - graph.setEdge("USDT", "BEAN", { - build: (_: string, from: FarmFromMode, to: FarmToMode) => sdk.farm.presets.usdt2bean(from, to), - from: "USDT", - to: "BEAN" - }); - - graph.setEdge("USDC", "BEAN", { - build: (_: string, from: FarmFromMode, to: FarmToMode) => sdk.farm.presets.usdc2bean(from, to), - from: "USDC", - to: "BEAN" + graph.setEdge("WETH", "BEAN", { + build: (account: string, from: FarmFromMode, to: FarmToMode) => + sdk.farm.presets.wellWethBean(sdk.tokens.WETH, sdk.tokens.BEAN, account, from, to), + from: "WETH", + to: "BEAN", + label: "wellWethBean" }); - - graph.setEdge("DAI", "BEAN", { - build: (_: string, from: FarmFromMode, to: FarmToMode) => sdk.farm.presets.dai2bean(from, to), - from: "DAI", - to: "BEAN" + graph.setEdge("BEAN", "WETH", { + build: (account: string, from: FarmFromMode, to: FarmToMode) => + sdk.farm.presets.wellWethBean(sdk.tokens.BEAN, sdk.tokens.WETH, account, from, to), + from: "BEAN", + to: "WETH", + label: "wellWethBean" }); } - /** - * WETH <=> BEAN routes through Curve pool - */ - { - graph.setEdge("WETH", "BEAN", { - build: (_: string, from: FarmFromMode, to: FarmToMode) => - sdk.farm.presets.weth2bean(from, to), - from: "WETH", - to: "BEAN" - }); - graph.setEdge("BEAN", "WETH", { - build: (_: string, from: FarmFromMode, to: FarmToMode) => - sdk.farm.presets.bean2weth(from, to), - from: "BEAN", - to: "WETH" - }); - } - - + /// 3CRV<>Stables via 3Pool Add/Remove Liquidity + + // HEADS UP: the ordering of these tokens needs to match their indexing in the 3CRV LP token. + // Should be: 0 = DAI, 1 = USDC, 2 = USDT. + [sdk.tokens.DAI, sdk.tokens.USDC, sdk.tokens.USDT].forEach((token, index) => { + setBidirectionalAddRemoveLiquidityEdges( + sdk, + graph, + sdk.contracts.curve.pools.pool3.address, + sdk.contracts.curve.registries.poolRegistry.address, + sdk.tokens.CRV3, // LP token + token, // underlying token + index + ); + }); - /** - * DO NOT TURN THIS ON YET. Doing so will FORCE all ETH<>BEAN trades - * through the Well, and it may not be ready/have enough liquidity/etc... - */ - // /** - // * Well Swap: WETH => BEAN - // */ - // { - // graph.setEdge("WETH", "BEAN", { - // build: (account: string, from: FarmFromMode, to: FarmToMode) => - // sdk.farm.presets.wellWethBean(sdk.tokens.WETH, sdk.tokens.BEAN, account, from, to), - // from: "WETH", - // to: "BEAN" - // }); - // graph.setEdge("BEAN", "WETH", { - // build: (account: string, from: FarmFromMode, to: FarmToMode) => - // sdk.farm.presets.wellWethBean(sdk.tokens.BEAN, sdk.tokens.WETH, account, from, to), - // from: "BEAN", - // to: "WETH" - // }); - // } + // WETH => 3CRV + // needed to force a path when depositing WETH > BEAN3CRV, so it doesn't go through BEAN + graph.setEdge("WETH", "3CRV", { + build: (_: string, from: FarmFromMode, to: FarmToMode) => sdk.farm.presets.weth2bean3crv(from, to), + from: "WETH", + to: "3CRV", + label: "swap2usdt23crv" + }); return graph; }; diff --git a/projects/sdk/src/lib/swap/SwapOperation.ts b/projects/sdk/src/lib/swap/SwapOperation.ts index 72588dc93d..1e4dbacd3b 100644 --- a/projects/sdk/src/lib/swap/SwapOperation.ts +++ b/projects/sdk/src/lib/swap/SwapOperation.ts @@ -1,4 +1,4 @@ -import { ContractTransaction, ethers, BigNumber } from "ethers"; +import { ContractTransaction, ethers, BigNumber, CallOverrides } from "ethers"; import { Workflow } from "src/classes/Workflow"; import { TokenValue } from "src/TokenValue"; import { Token } from "src/classes/Token"; @@ -51,10 +51,10 @@ export class SwapOperation { return this.tokenOut.fromBlockchain(est); } - // TODO: implement - // async estimateGas(amountIn: BigNumber | TokenValue, slippage: number): Promise { - // return this.workflow.estimateGas(amountIn, slippage); - // } + async estimateGas(amountIn: BigNumber | TokenValue, slippage: number): Promise { + const gas = await this.workflow.estimateGas(amountIn, { slippage }); + return TokenValue.fromBlockchain(gas, 0); + } /** * Estimate the min amount to input to the workflow to receive the desiredAmountOut output @@ -75,10 +75,10 @@ export class SwapOperation { * @param slippage A human readable percent value. Ex: 0.1 would mean 0.1% slippage * @returns Promise of a Transaction */ - async execute(amountIn: BigNumber | TokenValue, slippage: number): Promise { + async execute(amountIn: BigNumber | TokenValue, slippage: number, overrides: CallOverrides = {}): Promise { if (!this.isValid()) throw new Error("Invalid swap configuration"); - return this.workflow.execute(amountIn, { slippage }); + return this.workflow.execute(amountIn, { slippage }, overrides); } getFarm() { diff --git a/projects/sdk/src/lib/swap/graph.ts b/projects/sdk/src/lib/swap/graph.ts index 81a35e198c..736db459eb 100644 --- a/projects/sdk/src/lib/swap/graph.ts +++ b/projects/sdk/src/lib/swap/graph.ts @@ -20,7 +20,8 @@ export const setBidirectionalAddRemoveLiquidityEdges = ( g.setEdge(underlyingToken.symbol, lpToken.symbol, { build: (_: string, from: FarmFromMode, to: FarmToMode) => new sdk.farm.actions.AddLiquidity(pool, registry, amounts as any, from, to), from: underlyingToken.symbol, - to: lpToken.symbol + to: lpToken.symbol, + label: "addLiquidity" }); // LP -> Underlying is RemoveLiquidity @@ -28,7 +29,8 @@ export const setBidirectionalAddRemoveLiquidityEdges = ( build: (_: string, from: FarmFromMode, to: FarmToMode) => new sdk.farm.actions.RemoveLiquidityOneToken(pool, registry, underlyingToken.address, from, to), from: lpToken.symbol, - to: underlyingToken.symbol + to: underlyingToken.symbol, + label: "removeLiquidity" }); }; @@ -107,61 +109,21 @@ export const getSwapGraph = (sdk: BeanstalkSDK): Graph => { to: "WETH" }); - /// USDT<>BEAN via Metapool Exchange Underlying - - graph.setEdge("USDT", "BEAN", { - build: (_: string, from: FarmFromMode, to: FarmToMode) => sdk.farm.presets.usdt2bean(from, to), - from: "USDT", - to: "BEAN" - }); - graph.setEdge("BEAN", "USDT", { - build: (_: string, from: FarmFromMode, to: FarmToMode) => sdk.farm.presets.bean2usdt(from, to), - from: "BEAN", - to: "USDT" - }); - - /// USDC<>BEAN via Metapool Exchange Underlying - - graph.setEdge("USDC", "BEAN", { - build: (_: string, from: FarmFromMode, to: FarmToMode) => - new sdk.farm.actions.ExchangeUnderlying(sdk.contracts.curve.pools.beanCrv3.address, sdk.tokens.USDC, sdk.tokens.BEAN, from, to), - from: "USDC", - to: "BEAN" - }); - graph.setEdge("BEAN", "USDC", { - build: (_: string, from: FarmFromMode, to: FarmToMode) => - new sdk.farm.actions.ExchangeUnderlying(sdk.contracts.curve.pools.beanCrv3.address, sdk.tokens.BEAN, sdk.tokens.USDC, from, to), + // BEAN<>WETH via Basin Well + graph.setEdge("BEAN", "WETH", { + build: (account: string, from: FarmFromMode, to: FarmToMode) => + sdk.farm.presets.wellWethBean(sdk.tokens.BEAN, sdk.tokens.WETH, account, from, to), from: "BEAN", - to: "USDC" + to: "WETH" }); - /// DAI<>BEAN via Metapool Exchange Underlying - - graph.setEdge("DAI", "BEAN", { - build: (_: string, from: FarmFromMode, to: FarmToMode) => - new sdk.farm.actions.ExchangeUnderlying(sdk.contracts.curve.pools.beanCrv3.address, sdk.tokens.DAI, sdk.tokens.BEAN, from, to), - from: "DAI", + graph.setEdge("WETH", "BEAN", { + build: (account: string, from: FarmFromMode, to: FarmToMode) => + sdk.farm.presets.wellWethBean(sdk.tokens.WETH, sdk.tokens.BEAN, account, from, to), + from: "WETH", to: "BEAN" }); - graph.setEdge("BEAN", "DAI", { - build: (_: string, from: FarmFromMode, to: FarmToMode) => - new sdk.farm.actions.ExchangeUnderlying(sdk.contracts.curve.pools.beanCrv3.address, sdk.tokens.BEAN, sdk.tokens.DAI, from, to), - from: "BEAN", - to: "DAI" - }); - - /// CRV3<>BEAN via Metapool Exchange - - setBidirectionalExchangeEdges( - sdk, - graph, - sdk.contracts.curve.pools.beanCrv3.address, - sdk.contracts.curve.registries.metaFactory.address, - sdk.tokens.BEAN, - sdk.tokens.CRV3 - ); - /// 3CRV<>Stables via 3Pool Add/Remove Liquidity // HEADS UP: the ordering of these tokens needs to match their indexing in the 3CRV LP token. diff --git a/projects/sdk/src/lib/tokens.ts b/projects/sdk/src/lib/tokens.ts index 8476a8b66d..d9e1a9ae64 100644 --- a/projects/sdk/src/lib/tokens.ts +++ b/projects/sdk/src/lib/tokens.ts @@ -26,7 +26,7 @@ export class Tokens { public readonly BEAN_ETH_WELL_LP: ERC20Token; public readonly BEAN_CRV3_LP: ERC20Token; public readonly UNRIPE_BEAN: ERC20Token; - public readonly UNRIPE_BEAN_CRV3: ERC20Token; + public readonly UNRIPE_BEAN_WETH: ERC20Token; public readonly STALK: BeanstalkToken; public readonly SEEDS: BeanstalkToken; public readonly PODS: BeanstalkToken; @@ -142,7 +142,7 @@ export class Tokens { 18, "BEANETH", { - name: "BEAN:WETH Well LP Token", // see .name() + name: "BEAN:ETH Well LP Token", // see .name() displayName: "BEAN:ETH LP", isLP: true, color: "#DFB385" @@ -172,29 +172,29 @@ export class Tokens { }; this.UNRIPE_BEAN.isUnripe = true; - this.UNRIPE_BEAN_CRV3 = new ERC20Token( + this.UNRIPE_BEAN_WETH = new ERC20Token( chainId, - addresses.UNRIPE_BEAN_CRV3.get(chainId), + addresses.UNRIPE_BEAN_WETH.get(chainId), 6, - "urBEAN3CRV", + "urBEANETH", { - name: "Unripe BEAN3CRV", // see `.name()` - displayName: "Unripe BEAN:3CRV LP", + name: "Unripe BEANETH", // see `.name()` + displayName: "Unripe BEAN:ETH LP", displayDecimals: 2 }, providerOrSigner ); - this.UNRIPE_BEAN_CRV3.rewards = { + this.UNRIPE_BEAN_WETH.rewards = { stalk: this.STALK.amount(1), seeds: this.SEEDS.amount(0) }; - this.UNRIPE_BEAN_CRV3.isUnripe = true; + this.UNRIPE_BEAN_WETH.isUnripe = true; this.map.set(addresses.BEAN.get(chainId), this.BEAN); this.map.set(addresses.BEAN_CRV3.get(chainId), this.BEAN_CRV3_LP); this.map.set(addresses.BEANWETH_WELL.get(chainId), this.BEAN_ETH_WELL_LP); this.map.set(addresses.UNRIPE_BEAN.get(chainId), this.UNRIPE_BEAN); - this.map.set(addresses.UNRIPE_BEAN_CRV3.get(chainId), this.UNRIPE_BEAN_CRV3); + this.map.set(addresses.UNRIPE_BEAN_WETH.get(chainId), this.UNRIPE_BEAN_WETH); ////////// Beanstalk "Tokens" (non ERC-20) ////////// @@ -341,11 +341,11 @@ export class Tokens { ////////// Groups ////////// - const siloWhitelist = [this.BEAN, this.BEAN_CRV3_LP, this.BEAN_ETH_WELL_LP, this.UNRIPE_BEAN, this.UNRIPE_BEAN_CRV3]; + const siloWhitelist = [this.BEAN, this.BEAN_CRV3_LP, this.BEAN_ETH_WELL_LP, this.UNRIPE_BEAN, this.UNRIPE_BEAN_WETH]; this.siloWhitelist = new Set(siloWhitelist); this.siloWhitelistAddresses = siloWhitelist.map((t) => t.address); - this.unripeTokens = new Set([this.UNRIPE_BEAN, this.UNRIPE_BEAN_CRV3]); + this.unripeTokens = new Set([this.UNRIPE_BEAN, this.UNRIPE_BEAN_WETH]); this.unripeUnderlyingTokens = new Set([this.BEAN, this.BEAN_CRV3_LP]); this.erc20Tokens = new Set([...this.siloWhitelist, this.WETH, this.CRV3, this.DAI, this.USDC, this.USDT]); this.balanceTokens = new Set([this.ETH, ...this.erc20Tokens]); diff --git a/projects/sdk/src/utils/TestUtils/BlockchainUtils.ts b/projects/sdk/src/utils/TestUtils/BlockchainUtils.ts index 3002ffa3f6..13106dcb39 100644 --- a/projects/sdk/src/utils/TestUtils/BlockchainUtils.ts +++ b/projects/sdk/src/utils/TestUtils/BlockchainUtils.ts @@ -126,8 +126,10 @@ export class BlockchainUtils { this.setBEANBalance(account, this.sdk.tokens.BEAN.amount(amount)), this.setROOTBalance(account, this.sdk.tokens.ROOT.amount(amount)), this.seturBEANBalance(account, this.sdk.tokens.UNRIPE_BEAN.amount(amount)), - this.seturBEAN3CRVBalance(account, this.sdk.tokens.UNRIPE_BEAN_CRV3.amount(amount)), - this.setBEAN3CRVBalance(account, this.sdk.tokens.BEAN_CRV3_LP.amount(amount)) + // this.seturBEAN3CRVBalance(account, this.sdk.tokens.UNRIPE_BEAN_CRV3.amount(amount)), + this.seturBEANWETHBalance(account, this.sdk.tokens.UNRIPE_BEAN_WETH.amount(amount)), + this.setBEAN3CRVBalance(account, this.sdk.tokens.BEAN_CRV3_LP.amount(amount)), + this.setBEANWETHBalance(account, this.sdk.tokens.BEAN_ETH_WELL_LP.amount(amount)) ]); } async setETHBalance(account: string, balance: TokenValue) { @@ -157,12 +159,15 @@ export class BlockchainUtils { async seturBEANBalance(account: string, balance: TokenValue) { this.setBalance(this.sdk.tokens.UNRIPE_BEAN, account, balance); } - async seturBEAN3CRVBalance(account: string, balance: TokenValue) { - this.setBalance(this.sdk.tokens.UNRIPE_BEAN_CRV3, account, balance); + async seturBEANWETHBalance(account: string, balance: TokenValue) { + this.setBalance(this.sdk.tokens.UNRIPE_BEAN_WETH, account, balance); } async setBEAN3CRVBalance(account: string, balance: TokenValue) { this.setBalance(this.sdk.tokens.BEAN_CRV3_LP, account, balance); } + async setBEANWETHBalance(account: string, balance: TokenValue) { + this.setBalance(this.sdk.tokens.BEAN_CRV3_LP, account, balance); + } private getBalanceConfig(tokenAddress: string) { const slotConfig = new Map(); @@ -174,8 +179,9 @@ export class BlockchainUtils { slotConfig.set(this.sdk.tokens.BEAN.address, [0, false]); slotConfig.set(this.sdk.tokens.ROOT.address, [151, false]); slotConfig.set(this.sdk.tokens.UNRIPE_BEAN.address, [0, false]); - slotConfig.set(this.sdk.tokens.UNRIPE_BEAN_CRV3.address, [0, false]); + slotConfig.set(this.sdk.tokens.UNRIPE_BEAN_WETH.address, [0, false]); slotConfig.set(this.sdk.tokens.BEAN_CRV3_LP.address, [15, true]); + slotConfig.set(this.sdk.tokens.BEAN_ETH_WELL_LP.address, [51, false]); return slotConfig.get(tokenAddress); } diff --git a/projects/ui/netlify.toml b/projects/ui/netlify.toml index 8da5b44133..d9ce6d9432 100644 --- a/projects/ui/netlify.toml +++ b/projects/ui/netlify.toml @@ -19,4 +19,12 @@ for = "/*" [headers.values] X-Frame-Options = "DENY" - X-Content-Type-Options = "nosniff" \ No newline at end of file + X-Content-Type-Options = "nosniff" + +[dev] + command = "yarn start" + framework = "#custom" + port = 8888 + targetPort = 4173 + functionsPort = 59199 + autoLaunch = false diff --git a/projects/ui/package.json b/projects/ui/package.json index b373ca6141..251f7afec8 100644 --- a/projects/ui/package.json +++ b/projects/ui/package.json @@ -128,7 +128,7 @@ }, "scripts": { "start": "vite --port 4173", - "dev": "netlify dev --command \"yarn start\" --targetPort 4173", + "dev": "netlify dev", "serve": "vite preview", "build": "yarn generate && tsc && vite build", "build:dev": "tsc --noEmit --watch", diff --git a/projects/ui/src/components/Analytics/Silo/index.tsx b/projects/ui/src/components/Analytics/Silo/index.tsx index 2fda9fa100..c9e915136d 100644 --- a/projects/ui/src/components/Analytics/Silo/index.tsx +++ b/projects/ui/src/components/Analytics/Silo/index.tsx @@ -5,7 +5,7 @@ import { BEAN_CRV3_LP, BEAN_ETH_WELL_LP, UNRIPE_BEAN, - UNRIPE_BEAN_CRV3, + UNRIPE_BEAN_WETH, } from '~/constants/tokens'; import { BEANSTALK_ADDRESSES } from '~/constants'; import useTabs from '~/hooks/display/useTabs'; @@ -39,7 +39,7 @@ const SiloAnalytics: FC<{}> = () => { > - + @@ -79,7 +79,7 @@ const SiloAnalytics: FC<{}> = () => { )} {tab === 4 && ( diff --git a/projects/ui/src/components/App/SdkProvider.tsx b/projects/ui/src/components/App/SdkProvider.tsx index ab4be79532..09b668addf 100644 --- a/projects/ui/src/components/App/SdkProvider.tsx +++ b/projects/ui/src/components/App/SdkProvider.tsx @@ -28,7 +28,7 @@ import usdcLogo from '~/img/tokens/usdc-logo.svg'; import usdtLogo from '~/img/tokens/usdt-logo.svg'; import lusdLogo from '~/img/tokens/lusd-logo.svg'; import unripeBeanLogo from '~/img/tokens/unripe-bean-logo-circled.svg'; -import unripeBeanCrv3Logo from '~/img/tokens/unripe-lp-logo-circled.svg'; +import unripeBeanWethLogoUrl from '~/img/tokens/unrip-beanweth.svg'; import useSetting from '~/hooks/app/useSetting'; import { SUBGRAPH_ENVIRONMENTS } from '~/graph/endpoints'; @@ -45,7 +45,7 @@ const useBeanstalkSdkContext = () => { SUBGRAPH_ENVIRONMENTS?.[subgraphEnv]?.subgraphs?.beanstalk; const sdk = useMemo(() => { - console.log(`Instantiating BeanstalkSDK`, { + console.info(`Instantiating BeanstalkSDK`, { provider, signer, datasource, @@ -67,7 +67,7 @@ const useBeanstalkSdkContext = () => { _sdk.tokens.BEAN_CRV3_LP.setMetadata({ logo: beanCrv3LpLogo }); _sdk.tokens.BEAN_ETH_WELL_LP.setMetadata({ logo: beanEthWellLpLogo }); _sdk.tokens.UNRIPE_BEAN.setMetadata({ logo: unripeBeanLogo }); - _sdk.tokens.UNRIPE_BEAN_CRV3.setMetadata({ logo: unripeBeanCrv3Logo }); + _sdk.tokens.UNRIPE_BEAN_WETH.setMetadata({ logo: unripeBeanWethLogoUrl }); _sdk.tokens.STALK.setMetadata({ logo: stalkLogo }); _sdk.tokens.SEEDS.setMetadata({ logo: seedLogo }); diff --git a/projects/ui/src/components/Balances/Actions/ClaimSiloRewards.tsx b/projects/ui/src/components/Balances/Actions/ClaimSiloRewards.tsx index 439f44a6a9..14caba63f2 100644 --- a/projects/ui/src/components/Balances/Actions/ClaimSiloRewards.tsx +++ b/projects/ui/src/components/Balances/Actions/ClaimSiloRewards.tsx @@ -26,7 +26,7 @@ import useGetChainToken from '~/hooks/chain/useGetChainToken'; import useFarmerSiloBalances from '~/hooks/farmer/useFarmerSiloBalances'; import RewardsForm, { ClaimRewardsFormParams } from '../../Silo/RewardsForm'; import { ClaimRewardsAction } from '~/util'; -import { UNRIPE_BEAN, UNRIPE_BEAN_CRV3 } from '~/constants/tokens'; +import { UNRIPE_BEAN, UNRIPE_BEAN_WETH } from '~/constants/tokens'; import DescriptionButton from '../../Common/DescriptionButton'; import GasTag from '../../Common/GasTag'; import { hoverMap } from '~/constants/silo'; @@ -93,10 +93,10 @@ const ClaimRewardsContent: React.FC< /// Calculate Unripe Silo Balance const urBean = getChainToken(UNRIPE_BEAN); - const urBeanCrv3 = getChainToken(UNRIPE_BEAN_CRV3); + const urBeanWeth = getChainToken(UNRIPE_BEAN_WETH); const unripeDepositedBalance = balances[ urBean.address - ]?.deposited.amount.plus(balances[urBeanCrv3.address]?.deposited.amount); + ]?.deposited.amount.plus(balances[urBeanWeth.address]?.deposited.amount); /// Handlers const onMouseOver = useCallback( diff --git a/projects/ui/src/components/Balances/SiloBalances.tsx b/projects/ui/src/components/Balances/SiloBalances.tsx index 8642729ae4..e691069db7 100644 --- a/projects/ui/src/components/Balances/SiloBalances.tsx +++ b/projects/ui/src/components/Balances/SiloBalances.tsx @@ -17,7 +17,7 @@ import { SEEDS, STALK, UNRIPE_BEAN, - UNRIPE_BEAN_CRV3, + UNRIPE_BEAN_WETH, } from '~/constants/tokens'; import useWhitelist from '~/hooks/beanstalk/useWhitelist'; import { BeanstalkPalette, IconSize } from '../App/muiTheme'; @@ -52,7 +52,7 @@ const SiloBalances: React.FC<{}> = () => { const Bean = getChainToken(BEAN); const urBean = getChainToken(UNRIPE_BEAN); - const urBeanCrv3 = getChainToken(UNRIPE_BEAN_CRV3); + const urBeanWeth = getChainToken(UNRIPE_BEAN_WETH); const unripeUnderlyingTokens = useUnripeUnderlyingMap(); // State @@ -129,7 +129,7 @@ const SiloBalances: React.FC<{}> = () => { {tokens.map(([address, token]) => { const deposits = balances[address]?.deposited; - const isUnripe = token === urBean || token === urBeanCrv3; + const isUnripe = token === urBean || token === urBeanWeth; return ( diff --git a/projects/ui/src/components/Barn/Actions/Buy.tsx b/projects/ui/src/components/Barn/Actions/Buy.tsx index 5f44279f82..76baa5ac16 100644 --- a/projects/ui/src/components/Barn/Actions/Buy.tsx +++ b/projects/ui/src/components/Barn/Actions/Buy.tsx @@ -1,4 +1,10 @@ -import React, { useCallback, useMemo, useRef } from 'react'; +import React, { + useCallback, + useEffect, + useMemo, + useRef, + useState, +} from 'react'; import { Box, Divider, Link, Stack, Typography } from '@mui/material'; import BigNumber from 'bignumber.js'; import KeyboardArrowDownIcon from '@mui/icons-material/KeyboardArrowDown'; @@ -10,6 +16,7 @@ import { BeanstalkSDK, FarmFromMode, FarmToMode, + TokenValue, } from '@beanstalk/sdk'; import { useSelector } from 'react-redux'; @@ -19,6 +26,8 @@ import { FormStateNew, FormTokenStateNew, FormTxnsFormState, + SettingInput, + TxnSettings, } from '~/components/Common/Form'; import TxnPreview from '~/components/Common/Form/TxnPreview'; import TxnAccordion from '~/components/Common/TxnAccordion'; @@ -34,12 +43,7 @@ import useFarmerBalances from '~/hooks/farmer/useFarmerBalances'; import usePreferredToken, { PreferredToken, } from '~/hooks/farmer/usePreferredToken'; -import { - displayFullBN, - getTokenIndex, - normaliseTV, - tokenValueToBN, -} from '~/util'; +import { getTokenIndex, normaliseTV, tokenValueToBN } from '~/util'; import { useFetchFarmerAllowances } from '~/state/farmer/allowances/updater'; import { FarmerBalances } from '~/state/farmer/balances'; import FertilizerItem from '../FertilizerItem'; @@ -64,6 +68,7 @@ import ClaimBeanDrawerContent from '~/components/Common/Form/FormTxn/ClaimBeanDr import FormTxnProvider from '~/components/Common/Form/FormTxnProvider'; import useFormTxnContext from '~/hooks/sdk/useFormTxnContext'; import { BuyFertilizerFarmStep, ClaimAndDoX } from '~/lib/Txn'; +import { useEthPriceFromBeanstalk } from '~/hooks/ledger/useEthPriceFromBeanstalk'; // --------------------------------------------------- @@ -111,13 +116,22 @@ const BuyForm: FC< sdk, }) => { const formRef = useRef(null); - + const getEthPrice = useEthPriceFromBeanstalk(); const tokenMap = useTokenMap(tokenList); + const [ethPrice, setEthPrice] = useState(TokenValue.ZERO); + + useEffect(() => { + getEthPrice().then((price) => { + setEthPrice(price); + }); + }, [getEthPrice]); const combinedTokenState = [...values.tokens, values.claimableBeans]; - const { usdc, fert, humidity, actions } = - useFertilizerSummary(combinedTokenState); + const { fert, humidity, actions } = useFertilizerSummary( + combinedTokenState, + ethPrice + ); // Extract const isValid = fert?.gt(0); @@ -214,8 +228,13 @@ const BuyForm: FC< /> - The amount of Fertilizer received rounds down to the nearest - USDC. {usdc?.toFixed(2)} USDC = {fert?.toFixed(0)} FERT. + The amount of Fertilizer received is:
+ {values.tokens[0].amount?.toFixed(2)}{' '} + {values.tokens[0].token.symbol} + {values.tokens[0].token.symbol !== 'WETH' && ( + <> → {values.tokens[0].amountOut?.toFixed(2)} WETH + )}{' '} + * ${ethPrice.toHuman('short')} = {fert.toFixed(0)} Fertilizer
@@ -283,8 +302,10 @@ const BuyForm: FC< ); }; +// eslint-disable-next-line unused-imports/no-unused-vars const BuyPropProvider: FC<{}> = () => { const sdk = useSdk(); + const getEthPrice = useEthPriceFromBeanstalk(); const { remaining } = useSelector( (state) => state._beanstalk.barn @@ -309,7 +330,7 @@ const BuyPropProvider: FC<{}> = () => { }; }, [sdk.tokens]); const baseToken = usePreferredToken(preferredTokens, 'use-best'); - const tokenOut = sdk.tokens.USDC; + const tokenOut = sdk.tokens.WETH; const initialValues: BuyFormValues = useMemo( () => ({ @@ -369,7 +390,8 @@ const BuyPropProvider: FC<{}> = () => { let txToast; try { middleware.before(); - const { USDC, BEAN } = sdk.tokens; + const ethPrice = await getEthPrice(); + const { USDC, BEAN, WETH } = sdk.tokens; const { fertilizer } = sdk.contracts; if (!sdk.contracts.beanstalk) { @@ -391,14 +413,13 @@ const BuyPropProvider: FC<{}> = () => { } const amountIn = normaliseTV(tokenIn, _amountIn); - const amountOut = USDC.equals(tokenIn) + const amountOut = WETH.equals(tokenIn) ? amountIn - : normaliseTV(USDC, _amountOut); - // : USDC.amount(_amountOut?.toString() || '0'); - const claimedUsedUSDCOut = normaliseTV(USDC, claimData.amountOut); - const totalUSDCOut = amountOut.add(claimedUsedUSDCOut); + : normaliseTV(WETH, _amountOut); + + const totalWETHOut = amountOut; - if (totalUSDCOut.lte(0)) throw new Error('Amount required'); + if (totalWETHOut.lte(0)) throw new Error('Amount required'); const claimAndDoX = new ClaimAndDoX( sdk, @@ -408,12 +429,10 @@ const BuyPropProvider: FC<{}> = () => { ); const buyTxn = new BuyFertilizerFarmStep(sdk, account); + const estFert = buyTxn.getFertFromWeth(totalWETHOut, ethPrice); txToast = new TransactionToast({ - loading: `Buying ${displayFullBN( - buyTxn.roundDownUSDC(totalUSDCOut), - USDC.displayDecimals - )} Fertilizer...`, + loading: `Buying ${estFert} Fertilizer...`, success: 'Purchase successful.', }); @@ -421,11 +440,27 @@ const BuyPropProvider: FC<{}> = () => { tokenIn, amountIn, balanceFromToMode(values.balanceFrom), - claimAndDoX + claimAndDoX, + ethPrice, + slippage ); const performed = txnBundler.setFarmSteps(values.farmActions); - const { execute } = await txnBundler.bundle(buyTxn, amountIn, 0.1); + const { execute, farm } = await txnBundler.bundle( + buyTxn, + amountIn, + slippage + ); + try { + // smoke test, if this fails, slippage is too low + await farm.estimateGas(amountIn, { slippage: 1 }); + } catch (err) { + console.log('Failed to estimate gas. May need to increase slippage.'); + txToast.error( + new Error('Failed to estimate gas. May need to increase slippage.') + ); + return; + } const txn = await execute(); txToast.confirming(txn); @@ -451,7 +486,6 @@ const BuyPropProvider: FC<{}> = () => { txToast.success(receipt); formActions.resetForm(); } catch (err) { - // this sucks if (txToast) { txToast.error(err); } else { @@ -461,21 +495,38 @@ const BuyPropProvider: FC<{}> = () => { console.error(err); } }, - [middleware, sdk, account, txnBundler, refetch, refetchAllowances] + [ + middleware, + getEthPrice, + sdk, + account, + txnBundler, + refetch, + refetchAllowances, + ] ); return ( {(formikProps) => ( - + <> + + + + + )} ); @@ -483,7 +534,19 @@ const BuyPropProvider: FC<{}> = () => { const Buy: React.FC<{}> = () => ( - + {/* */} +
+ Temporarily disabled while BIP-38 migration is in progress +
); diff --git a/projects/ui/src/components/Barn/RemainingFertilizer.tsx b/projects/ui/src/components/Barn/RemainingFertilizer.tsx index 2ef068f5af..eb4138a40e 100644 --- a/projects/ui/src/components/Barn/RemainingFertilizer.tsx +++ b/projects/ui/src/components/Barn/RemainingFertilizer.tsx @@ -69,7 +69,7 @@ const RemainingFertilizer: FC<{}> = () => { Available Fertilizer  & { balances: ReturnType; beanstalk: Beanstalk; } > = ({ values, setFieldValue, balances, beanstalk }) => { + const sdk = useSdk(); + const getBDV = useBDV(); const erc20TokenMap = useTokenMap(UNRIPE_TOKENS); const [isTokenSelectVisible, showTokenSelect, hideTokenSelect] = useToggle(); const unripeUnderlying = useUnripeUnderlyingMap(); + const [quote, setQuote] = useState(new BigNumber(0)); + const [quoteBdv, setQuoteBdv] = useState(new BigNumber(0)); /// Derived values const state = values.tokens[0]; @@ -77,13 +84,43 @@ const ChopForm: FC< const tokenBalance = balances[inputToken.address]; const outputToken = unripeUnderlying[inputToken.address]; + useEffect(() => { + const fetchQuote = async () => { + const amountIn = toStringBaseUnitBN(state.amount!, state.token.decimals); + const token = inputToken.address; + console.log('Fetching chop quote', amountIn?.toString(), token); + + const result = await sdk.contracts.beanstalk.getPenalizedUnderlying( + token, + amountIn!.toString() + ); + + // const resbn = tokenResult(state.token)(result) + const resbn = new BigNumber(result.toString()).div( + 10 ** outputToken.decimals + ); + setQuote(resbn); + const bdv = getBDV(outputToken).times(resbn); + setQuoteBdv(bdv); + }; + + if (state.amount?.gt(0)) { + fetchQuote(); + } else { + setQuote(new BigNumber(0)); + } + }, [state, inputToken, sdk, outputToken, getBDV]); + + // Clear quote when token changes + useEffect(() => { + setQuote(new BigNumber(0)); + }, [inputToken]); + /// Chop Penalty = 99% <-> Chop Rate = 0.01 const unripeTokens = useSelector( (_state) => _state._bean.unripe ); - const amountOut = state.amount?.multipliedBy( - unripeTokens[inputToken.address]?.chopRate || ZERO_BN - ); + const chopPenalty = unripeTokens[inputToken.address]?.chopPenalty || new BigNumber(100); @@ -109,7 +146,7 @@ const ChopForm: FC< [values.tokens, setFieldValue] ); - const isSubmittable = amountOut?.gt(0) && values.destination; + const isSubmittable = quote?.gt(0) && values.destination; return (
@@ -162,7 +199,8 @@ const ChopForm: FC< @@ -179,9 +217,13 @@ const ChopForm: FC< { type: ActionType.BASE, message: `Add ${displayBN( - amountOut || ZERO_BN + quote || ZERO_BN )} ${outputToken} to your - ${values.destination === FarmToMode.EXTERNAL ? `Circulating` : `Farm`} Balance.`, + ${ + values.destination === FarmToMode.EXTERNAL + ? `Circulating` + : `Farm` + } Balance.`, }, ]} /> @@ -215,7 +257,7 @@ const PREFERRED_TOKENS: PreferredToken[] = [ minimum: new BigNumber(1), }, { - token: UNRIPE_BEAN_CRV3, + token: UNRIPE_BEAN_WETH, minimum: new BigNumber(1), }, ]; @@ -301,11 +343,23 @@ const Chop: FC<{}> = () => { onSubmit={onSubmit} > {(formikProps: FormikProps) => ( - + // +
+ Temporarily disabled while BIP-38 migration is in progress +
)} ); diff --git a/projects/ui/src/components/Common/Accordion/AccordionSummary.tsx b/projects/ui/src/components/Common/Accordion/AccordionSummary.tsx index d25e3faab6..80c495daad 100644 --- a/projects/ui/src/components/Common/Accordion/AccordionSummary.tsx +++ b/projects/ui/src/components/Common/Accordion/AccordionSummary.tsx @@ -34,8 +34,10 @@ const StyledAccordionSummary: FC<{ ? { background: 'linear-gradient(90deg, #1D8A79 0%, #7B61FF 36.58%, #1F78B4 96.2%)', - '-webkit-background-clip': 'text', - '-webkit-text-fill-color': 'transparent', + // '-webkit-background-clip': 'text', + // '-webkit-text-fill-color': 'transparent', + WebkitBackgroundClip: 'text', + WebkitTextFillColor: 'transparent', } : null } diff --git a/projects/ui/src/components/Common/Balances/BeanstalkBalances.tsx b/projects/ui/src/components/Common/Balances/BeanstalkBalances.tsx index e9953240f6..db80b92820 100644 --- a/projects/ui/src/components/Common/Balances/BeanstalkBalances.tsx +++ b/projects/ui/src/components/Common/Balances/BeanstalkBalances.tsx @@ -12,7 +12,7 @@ import useBeanstalkSiloBreakdown, { import useWhitelist from '~/hooks/beanstalk/useWhitelist'; import TokenRow from '~/components/Common/Balances/TokenRow'; import useChainConstant from '~/hooks/chain/useChainConstant'; -import { BEAN, UNRIPE_BEAN, UNRIPE_BEAN_CRV3 } from '~/constants/tokens'; +import { BEAN, UNRIPE_BEAN, UNRIPE_BEAN_WETH } from '~/constants/tokens'; import { FC } from '~/types'; import StatHorizontal from '../StatHorizontal'; import { useAppSelector } from '~/state'; @@ -29,7 +29,7 @@ const BeanstalkBalances: FC<{ const getChainToken = useGetChainToken(); const Bean = useChainConstant(BEAN); const urBean = getChainToken(UNRIPE_BEAN); - const urBeanCrv3 = getChainToken(UNRIPE_BEAN_CRV3); + const urBeanWeth = getChainToken(UNRIPE_BEAN_WETH); const availableTokens = useMemo( () => Object.keys(breakdown.tokens), [breakdown.tokens] @@ -46,7 +46,7 @@ const BeanstalkBalances: FC<{ function isTokenUnripe(tokenAddress: string) { return ( tokenAddress.toLowerCase() === urBean.address || - tokenAddress.toLowerCase() === urBeanCrv3.address + tokenAddress.toLowerCase() === urBeanWeth.address ); } @@ -90,19 +90,28 @@ const BeanstalkBalances: FC<{ return { bdv: BigNumber(0), usd: BigNumber(0) }; const ratio = amount.div(unripeTokens[token.address].supply); - const ratioAmount = unripeTokens[token.address].underlying.multipliedBy(ratio); + const ratioAmount = + unripeTokens[token.address].underlying.multipliedBy(ratio); const bdv = siloTokenToFiat(token, ratioAmount, 'bdv', false); const usd = siloTokenToFiat(token, ratioAmount, 'usd', false); return { bdv: bdv, usd: usd }; } - function amountTooltip(token: ERC20Token, amount: BigNumber, isBreakdown?: boolean) { + function amountTooltip( + token: ERC20Token, + amount: BigNumber, + isBreakdown?: boolean + ) { if (!beanPrice || !token || !amount || loadingUnripe) return undefined; const isUnripe = isTokenUnripe(token.address); - const underlyingToken = isUnripe ? unripeUnderlyingTokens[token.address] : token; - const tokenAmount = isUnripe ? unripeTokens[token.address].underlying : amount; + const underlyingToken = isUnripe + ? unripeUnderlyingTokens[token.address] + : token; + const tokenAmount = isUnripe + ? unripeTokens[token.address].underlying + : amount; const bdv = isBreakdown && isUnripe ? getUnripeBreakdown(token, amount).bdv @@ -113,9 +122,7 @@ const BeanstalkBalances: FC<{ {displayFullBN(amount, 2, 2)} - - {displayFullBN(bdv, 2, 2)} - + {displayFullBN(bdv, 2, 2)} ); } diff --git a/projects/ui/src/components/Common/Charts/MultiLineChart.tsx b/projects/ui/src/components/Common/Charts/MultiLineChart.tsx index 3a60d4554a..a266287ab8 100644 --- a/projects/ui/src/components/Common/Charts/MultiLineChart.tsx +++ b/projects/ui/src/components/Common/Charts/MultiLineChart.tsx @@ -147,6 +147,9 @@ const MultiLineChartInner: React.FC = (props) => { common.margin.bottom, // chart edge to data region first pixel }; + let yScale = scales[0].yScale(1); + if (Number.isNaN(yScale)) yScale = 0; + return (
= (props) => { {/** Add TWAP line */} {(isTWAP || pegLine) && ( diff --git a/projects/ui/src/components/Common/Form/TokenOutputField.tsx b/projects/ui/src/components/Common/Form/TokenOutputField.tsx index 5980796d41..a8d62085f6 100644 --- a/projects/ui/src/components/Common/Form/TokenOutputField.tsx +++ b/projects/ui/src/components/Common/Form/TokenOutputField.tsx @@ -29,6 +29,8 @@ const TokenOutputField: FC<{ override?: any; /** */ size?: 'small'; + /** BDV */ + bdv?: BigNumber; }> = ({ token, amount, @@ -39,6 +41,7 @@ const TokenOutputField: FC<{ isLoading = false, override, size, + bdv, }) => { const isZero = amount.eq(0); const isNegative = amount.lt(0); @@ -47,41 +50,51 @@ const TokenOutputField: FC<{ {!isLoading ? ( - - {amount.abs().gt(new BigNumber(1000000)) ? ( - <> - {prefix} {displayFullBN(amount.abs(), 0)} - - ) : ( - <> - {prefix}  - {displayFullBN( - amount.abs(), - token.displayDecimals, - token.displayDecimals - )} - - )} - {amountSecondary && ( - <> -    - - ( - {typeof amountSecondary === 'string' - ? amountSecondary - : displayFullBN( - amountSecondary, - token.displayDecimals || 2 - )} - ) - - + + + {amount.abs().gt(new BigNumber(1000000)) ? ( + <> + {prefix} {displayFullBN(amount.abs(), 0)} + + ) : ( + <> + {prefix}  + {displayFullBN( + amount.abs(), + token.displayDecimals, + token.displayDecimals + )} + + )} + {amountSecondary && ( + <> +    + + ( + {typeof amountSecondary === 'string' + ? amountSecondary + : displayFullBN( + amountSecondary, + token.displayDecimals || 2 + )} + ) + + + )} + + {bdv && ( + + ~{displayFullBN(bdv!, 0)} BDV + )} - + ) : ( diff --git a/projects/ui/src/components/Common/Form/TxnPreview.tsx b/projects/ui/src/components/Common/Form/TxnPreview.tsx index eae5dcb6ec..1c85af00c7 100644 --- a/projects/ui/src/components/Common/Form/TxnPreview.tsx +++ b/projects/ui/src/components/Common/Form/TxnPreview.tsx @@ -19,7 +19,7 @@ import { TransferBalanceAction, } from '~/util/Actions'; import { SupportedChainId } from '~/constants/chains'; -import { BEAN, PODS, SEEDS, SPROUTS, STALK, USDC } from '~/constants/tokens'; +import { BEAN, PODS, SEEDS, SPROUTS, STALK, WETH } from '~/constants/tokens'; import AddressIcon from '~/components/Common/AddressIcon'; import Row from '~/components/Common/Row'; import { FC } from '~/types'; @@ -289,7 +289,7 @@ const TxnStep: FC<{ step = ( diff --git a/projects/ui/src/components/Farmer/Unripe/PickDialog.tsx b/projects/ui/src/components/Farmer/Unripe/PickDialog.tsx index 05f451d9de..1eb97eed4a 100644 --- a/projects/ui/src/components/Farmer/Unripe/PickDialog.tsx +++ b/projects/ui/src/components/Farmer/Unripe/PickDialog.tsx @@ -14,7 +14,7 @@ import { useTheme } from '@mui/material/styles'; import { LoadingButton } from '@mui/lab'; import { FarmFromMode, FarmToMode } from '@beanstalk/sdk'; import unripeBeanIcon from '~/img/tokens/unripe-bean-logo-circled.svg'; -import brownLPIcon from '~/img/tokens/unripe-lp-logo-circled.svg'; +import brownLPIcon from '~/img/tokens/unrip-beanweth.svg'; import { BeanstalkPalette } from '~/components/App/muiTheme'; import { StyledDialogActions, @@ -33,7 +33,7 @@ import { BEAN_ETH_UNIV2_LP, BEAN_LUSD_LP, UNRIPE_BEAN, - UNRIPE_BEAN_CRV3, + UNRIPE_BEAN_WETH, } from '~/constants/tokens'; import { UNRIPE_ASSET_TOOLTIPS } from '~/constants/tooltips'; import { ZERO_BN } from '~/constants'; @@ -121,7 +121,7 @@ const PickBeansDialog: FC< /// Tokens const getChainToken = useGetChainToken(); const urBean = getChainToken(UNRIPE_BEAN); - const urBeanCRV3 = getChainToken(UNRIPE_BEAN_CRV3); + const urBeanWeth = getChainToken(UNRIPE_BEAN_WETH); /// Farmer const [refetchFarmerSilo] = useFetchFarmerSilo(); @@ -159,7 +159,7 @@ const PickBeansDialog: FC< ), Promise.all([ beanstalk.picked(account, urBean.address), - beanstalk.picked(account, urBeanCRV3.address), + beanstalk.picked(account, urBeanWeth.address), ]), ]); console.debug('[PickDialog] loaded states', { @@ -177,7 +177,7 @@ const PickBeansDialog: FC< errorToast.error(err); } })(); - }, [account, beanstalk, open, urBean.address, urBeanCRV3.address]); + }, [account, beanstalk, open, urBean.address, urBeanWeth.address]); /// Tab handlers const handleDialogClose = () => { @@ -223,7 +223,7 @@ const PickBeansDialog: FC< if (merkles.bean3crv && picked[1] === false) { data.push( beanstalk.interface.encodeFunctionData('pick', [ - urBeanCRV3.address, + urBeanWeth.address, merkles.bean3crv.amount, merkles.bean3crv.proof, isDeposit ? FarmToMode.INTERNAL : FarmToMode.EXTERNAL, @@ -232,7 +232,7 @@ const PickBeansDialog: FC< if (isDeposit) { data.push( beanstalk.interface.encodeFunctionData('deposit', [ - urBeanCRV3.address, + urBeanWeth.address, merkles.bean3crv.amount, FarmFromMode.INTERNAL, // always use internal for deposits ]) @@ -272,7 +272,7 @@ const PickBeansDialog: FC< picked, beanstalk, urBean.address, - urBeanCRV3.address, + urBeanWeth.address, refetchFarmerSilo, middleware, ] @@ -297,17 +297,17 @@ const PickBeansDialog: FC< const tab0 = ( <> - Pick non-Deposited Unripe Beans and Unripe BEAN:3CRV LP + Pick non-Deposited Unripe Beans and Unripe BEAN:ETH LP pick - To claim non-Deposited Unripe Beans and Unripe BEAN:3CRV LP, they must - be Picked. After Replant, you can Pick assets to your wallet, or Pick + To claim non-Deposited Unripe Beans and Unripe BEAN:ETH LP, they must + be Picked. You can Pick assets to your wallet, or Pick and Deposit them directly in the Silo.

- Unripe Deposited assets do not need to be Picked and will be + Unripe Deposited assets do not need to be Picked and were be automatically Deposited at Replant.

@@ -353,7 +353,7 @@ const PickBeansDialog: FC< * Section 3b: Total Unripe Beans */} - Unripe Beans available to Pick at Replant + Unripe Beans available to Pick Circulating Beans @@ -417,7 +417,7 @@ const PickBeansDialog: FC< */} - Unripe BEAN:3CRV LP available to Pick at Replant + Unripe BEAN:ETH LP available to Pick Circulating Beans diff --git a/projects/ui/src/components/Silo/Actions/Convert.tsx b/projects/ui/src/components/Silo/Actions/Convert.tsx index 9709ea87d7..5b007c5b50 100644 --- a/projects/ui/src/components/Silo/Actions/Convert.tsx +++ b/projects/ui/src/components/Silo/Actions/Convert.tsx @@ -257,6 +257,19 @@ const ConvertForm: FC< [tokenIn.isUnripe] ); + const getConvertWarning = () => { + let pool = tokenIn.isLP ? tokenIn.symbol : tokenOut!.symbol; + pool += ' pool'; + if (['urBEANETH', 'urBEAN'].includes(tokenIn.symbol)) pool = 'BEANETH Well'; + + const lowerOrGreater = + tokenIn.isLP || tokenIn.symbol === 'urBEANETH' ? 'lower' : 'greater'; + + const message = `${tokenIn.symbol} can only be Converted to ${tokenOut?.symbol} when deltaB in the ${pool} is ${lowerOrGreater} than 0.`; + + return message; + }; + return ( - {tokenIn.symbol} can only be Converted to {tokenOut?.symbol} when - deltaB in the {tokenIn.isLP ? tokenIn.symbol : tokenOut.symbol} pool is{' '} - {tokenIn.isLP || tokenIn.symbol === 'urBEAN3CRV' ? 'lower' : 'greater'} than 0. + {getConvertWarning()}
@@ -590,6 +601,11 @@ const ConvertPropProvider: FC<{ const isPlanting = plantAndDoX && values.farmActions.primary?.includes(FormTxn.PLANT); + const lpConversion = + tokenOut.equals(sdk.tokens.BEAN_ETH_WELL_LP) || + tokenIn.address.toLowerCase() === + sdk.tokens.BEAN_ETH_WELL_LP.address.toLowerCase(); + const convertTxn = new ConvertFarmStep( sdk, tokenIn, diff --git a/projects/ui/src/components/Silo/Actions/Deposit.tsx b/projects/ui/src/components/Silo/Actions/Deposit.tsx index 1f5ad5bebd..7b28e16dde 100644 --- a/projects/ui/src/components/Silo/Actions/Deposit.tsx +++ b/projects/ui/src/components/Silo/Actions/Deposit.tsx @@ -563,6 +563,7 @@ const DepositPropProvider: FC<{ txToast.success(receipt); formActions.resetForm(); } catch (err) { + console.log('Deposite Failed: ', err); if (txToast) { txToast.error(err); } else { diff --git a/projects/ui/src/components/Silo/Actions/index.tsx b/projects/ui/src/components/Silo/Actions/index.tsx index bd8cdbded3..730946070e 100644 --- a/projects/ui/src/components/Silo/Actions/index.tsx +++ b/projects/ui/src/components/Silo/Actions/index.tsx @@ -85,6 +85,26 @@ const SiloActions: FC<{ ? withdrawalItems.length > 0 : false; + if (['urBEANETH', 'urBEAN'].includes(token.symbol)) { + return ( + <> +
+ Interacting with {token.symbol} is temporarily disabled while BIP-38 + migration is in progress +
+ + ); + } + return ( <> diff --git a/projects/ui/src/components/Silo/PoolCard.stories.tsx b/projects/ui/src/components/Silo/PoolCard.stories.tsx index 89c23f1b2e..e3bd258b86 100644 --- a/projects/ui/src/components/Silo/PoolCard.stories.tsx +++ b/projects/ui/src/components/Silo/PoolCard.stories.tsx @@ -15,6 +15,8 @@ const poolState: BeanPoolState = { deltaB: new BigNumber(100000), liquidity: new BigNumber(123567), supply: new BigNumber(1234), + lpBdv: new BigNumber(1234), + lpUsd: new BigNumber(1234), }; const Template: ComponentStory = (args: any) => ( diff --git a/projects/ui/src/components/Silo/RewardsDialog.tsx b/projects/ui/src/components/Silo/RewardsDialog.tsx index 7810172196..00f809dd84 100644 --- a/projects/ui/src/components/Silo/RewardsDialog.tsx +++ b/projects/ui/src/components/Silo/RewardsDialog.tsx @@ -11,7 +11,7 @@ import { StyledDialogTitle, } from '~/components/Common/Dialog'; import { ClaimRewardsAction } from '~/util'; -import { UNRIPE_BEAN, UNRIPE_BEAN_CRV3 } from '~/constants/tokens'; +import { UNRIPE_BEAN, UNRIPE_BEAN_WETH } from '~/constants/tokens'; import DescriptionButton from '~/components/Common/DescriptionButton'; import RewardsSummary, { RewardsBarProps } from './RewardsSummary'; import { hoverMap } from '~/constants/silo'; @@ -83,10 +83,10 @@ const ClaimRewardsForm: FC< /// Calculate Unripe Silo Balance const urBean = getChainToken(UNRIPE_BEAN); - const urBeanCrv3 = getChainToken(UNRIPE_BEAN_CRV3); + const urBeanWeth = getChainToken(UNRIPE_BEAN_WETH); const unripeDepositedBalance = balances[ urBean.address - ]?.deposited.amount.plus(balances[urBeanCrv3.address]?.deposited.amount); + ]?.deposited.amount.plus(balances[urBeanWeth.address]?.deposited.amount); /// Handlers const onMouseOver = useCallback( diff --git a/projects/ui/src/components/Silo/SiloCarousel.tsx b/projects/ui/src/components/Silo/SiloCarousel.tsx index 0a13bb482e..097c152f82 100644 --- a/projects/ui/src/components/Silo/SiloCarousel.tsx +++ b/projects/ui/src/components/Silo/SiloCarousel.tsx @@ -4,14 +4,16 @@ import { ERC20Token } from '~/classes/Token'; import { BEAN, BEAN_CRV3_LP, + BEAN_ETH_WELL_LP, UNRIPE_BEAN, - UNRIPE_BEAN_CRV3, + UNRIPE_BEAN_WETH, } from '~/constants/tokens'; import earnBeansImg from '~/img/beanstalk/silo/edu/earnBeansImg.png'; import depositBeanImg from '~/img/beanstalk/silo/edu/depositBeanImg.svg'; import depositBean3crvImg from '~/img/beanstalk/silo/edu/depositBean3crvImg.svg'; -import depositUrBean3crvImg from '~/img/beanstalk/silo/edu/depositUrBean3crvImg.svg'; import depositUrBeanImg from '~/img/beanstalk/silo/edu/depositUrBeanImg.svg'; +import depositBeanEth from '~/img/beanstalk/silo/edu/depositBeanEth.svg'; +import depositUrBeanEth from '~/img/beanstalk/silo/edu/depositUrBeanEth.svg'; import earnStalkAndSeedsImg from '~/img/beanstalk/silo/edu/earnStalkAndSeedsImg.svg'; import { BeanstalkPalette } from '~/components/App/muiTheme'; import Carousel from '~/components/Common/Carousel/Carousel'; @@ -26,11 +28,15 @@ const depositCardContentByToken = { [BEAN_CRV3_LP[1].address]: { img: depositBean3crvImg, }, + [BEAN_ETH_WELL_LP[1].address]: { + img: depositBeanEth, + }, [UNRIPE_BEAN[1].address]: { img: depositUrBeanImg, }, - [UNRIPE_BEAN_CRV3[1].address]: { - img: depositUrBean3crvImg, + [UNRIPE_BEAN_WETH[1].address]: { + // TODO: Update this image to use BEAN/WETH logo + img: depositUrBeanEth, }, }; diff --git a/projects/ui/src/components/Silo/Whitelist.tsx b/projects/ui/src/components/Silo/Whitelist.tsx index 0776968590..c080b79f9b 100644 --- a/projects/ui/src/components/Silo/Whitelist.tsx +++ b/projects/ui/src/components/Silo/Whitelist.tsx @@ -23,7 +23,7 @@ import { SEEDS, STALK, UNRIPE_BEAN, - UNRIPE_BEAN_CRV3, + UNRIPE_BEAN_WETH, } from '~/constants/tokens'; import { AddressMap, ONE_BN, ZERO_BN } from '~/constants'; import { displayFullBN, displayTokenAmount } from '~/util/Tokens'; @@ -74,7 +74,7 @@ const Whitelist: FC<{ const getChainToken = useGetChainToken(); const Bean = getChainToken(BEAN); const urBean = getChainToken(UNRIPE_BEAN); - const urBeanCrv3 = getChainToken(UNRIPE_BEAN_CRV3); + const urBeanWeth = getChainToken(UNRIPE_BEAN_WETH); const unripeUnderlyingTokens = useUnripeUnderlyingMap(); /// State @@ -227,7 +227,7 @@ const Whitelist: FC<{ {config.whitelist.map((token) => { const deposited = farmerSilo.balances[token.address]?.deposited; - const isUnripe = token === urBean || token === urBeanCrv3; + const isUnripe = token === urBean || token === urBeanWeth; // Unripe data const underlyingToken = isUnripe ? unripeUnderlyingTokens[token.address] diff --git a/projects/ui/src/components/Swap/Actions/Swap.tsx b/projects/ui/src/components/Swap/Actions/Swap.tsx index fc2fb59b17..ab12bf4a73 100644 --- a/projects/ui/src/components/Swap/Actions/Swap.tsx +++ b/projects/ui/src/components/Swap/Actions/Swap.tsx @@ -760,10 +760,22 @@ const Swap: FC<{}> = () => { loading: 'Swapping...', success: 'Swap successful.', }); - + let gas; + try { + gas = await values.swapOperation.estimateGas( + amountIn, + values.settings.slippage + ); + } catch (err) { + console.warn( + 'Failed to estimate gas: ', + (err as unknown as Error).message + ); + } const txn = await values.swapOperation.execute( amountIn, - values.settings.slippage + values.settings.slippage, + { gasLimit: gas?.mul(1.1).toBigNumber() } ); txToast.confirming(txn); diff --git a/projects/ui/src/constants/addresses.ts b/projects/ui/src/constants/addresses.ts index 32f1ea7d6c..7d8137d795 100644 --- a/projects/ui/src/constants/addresses.ts +++ b/projects/ui/src/constants/addresses.ts @@ -60,9 +60,9 @@ export const UNRIPE_BEAN_ADDRESSES = { '0x1BEA0050E63e05FBb5D8BA2f10cf5800B6224449'.toLowerCase(), }; -export const UNRIPE_BEAN_CRV3_ADDRESSES = { +export const UNRIPE_BEAN_WETH_ADDRESSES = { // -------------------------------------------------- - // "Unripe BEAN:CRV3 LP": Unripe vesting asset for the BEAN:CRV3 LP token, Localhost + // "Unripe BEAN:WETH LP": Unripe vesting asset for the BEAN:WETH LP token, Localhost // ------------------------------------------------- [SupportedChainId.MAINNET]: '0x1BEA3CcD22F4EBd3d37d731BA31Eeca95713716D'.toLowerCase(), diff --git a/projects/ui/src/constants/pools.ts b/projects/ui/src/constants/pools.ts index 6db274de7e..ed2bccc7cd 100644 --- a/projects/ui/src/constants/pools.ts +++ b/projects/ui/src/constants/pools.ts @@ -30,10 +30,10 @@ export const BEANETH_WELL_MAINNET = new BasinWell( BEAN_ETH_WELL_LP, [BEAN, WETH], { - name: 'BEAN:ETH Well Pool', + name: 'BEAN:WETH Well Pool', logo: curveLogo, - symbol: 'BEAN:ETH', - color: '#ed9f9c' + symbol: 'BEAN:WETH', + color: '#ed9f9c', } ); diff --git a/projects/ui/src/constants/tokens.ts b/projects/ui/src/constants/tokens.ts index a85a8e8aea..2abbac033a 100644 --- a/projects/ui/src/constants/tokens.ts +++ b/projects/ui/src/constants/tokens.ts @@ -24,7 +24,7 @@ import usdcLogoUrl from '~/img/tokens/usdc-logo.svg'; import usdtLogoUrl from '~/img/tokens/usdt-logo.svg'; import lusdLogoUrl from '~/img/tokens/lusd-logo.svg'; import unripeBeanLogoUrl from '~/img/tokens/unripe-bean-logo-circled.svg'; -import unripeBeanCrv3LogoUrl from '~/img/tokens/unripe-lp-logo-circled.svg'; +import unripeBeanWethLogoUrl from '~/img/tokens/unrip-beanweth.svg'; // Other imports import { ERC20Token, NativeToken, BeanstalkToken } from '~/classes/Token'; @@ -38,7 +38,7 @@ import { USDC_ADDRESSES, USDT_ADDRESSES, UNRIPE_BEAN_ADDRESSES, - UNRIPE_BEAN_CRV3_ADDRESSES, + UNRIPE_BEAN_WETH_ADDRESSES, BEAN_ADDRESSES, BEAN_ETH_WELL_ADDRESSES, } from './addresses'; @@ -329,15 +329,15 @@ export const UNRIPE_BEAN = { ), }; -export const UNRIPE_BEAN_CRV3 = { +export const UNRIPE_BEAN_WETH = { [SupportedChainId.MAINNET]: new ERC20Token( SupportedChainId.MAINNET, - UNRIPE_BEAN_CRV3_ADDRESSES, + UNRIPE_BEAN_WETH_ADDRESSES, 6, { - name: 'Unripe BEAN:3CRV LP', - symbol: 'urBEAN3CRV', - logo: unripeBeanCrv3LogoUrl, + name: 'Unripe BEAN:ETH LP', + symbol: 'urBEANETH', + logo: unripeBeanWethLogoUrl, displayDecimals: 2, color: BeanstalkPalette.lightBlue, isUnripe: true, @@ -355,11 +355,11 @@ export const UNRIPE_BEAN_CRV3 = { export const UNRIPE_TOKENS: ChainConstant[] = [ UNRIPE_BEAN, - UNRIPE_BEAN_CRV3, + UNRIPE_BEAN_WETH, ]; export const UNRIPE_UNDERLYING_TOKENS: ChainConstant[] = [ BEAN, - BEAN_CRV3_LP, + BEAN_ETH_WELL_LP, ]; // Show these tokens as whitelisted in the Silo. @@ -368,7 +368,7 @@ export const SILO_WHITELIST: ChainConstant[] = [ BEAN_CRV3_LP, BEAN_ETH_WELL_LP, UNRIPE_BEAN, - UNRIPE_BEAN_CRV3, + UNRIPE_BEAN_WETH, ]; // All supported ERC20 tokens. diff --git a/projects/ui/src/graph/graphql.schema.json b/projects/ui/src/graph/graphql.schema.json index 0cbf867354..4674251193 100644 --- a/projects/ui/src/graph/graphql.schema.json +++ b/projects/ui/src/graph/graphql.schema.json @@ -3282,24 +3282,8 @@ "description": null, "fields": [ { - "name": "crosses", - "description": "Cumulative number of crosses", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dailySnapshot", - "description": "Daily snapshot of Bean data", + "name": "crossEvents", + "description": "Detailed cross events during this snapshot", "args": [ { "name": "first", @@ -3318,7 +3302,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "BeanDailySnapshot_orderBy", + "name": "BeanCross_orderBy", "ofType": null }, "defaultValue": null, @@ -3354,7 +3338,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "BeanDailySnapshot_filter", + "name": "BeanCross_filter", "ofType": null }, "defaultValue": null, @@ -3373,7 +3357,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "BeanDailySnapshot", + "name": "BeanCross", "ofType": null } } @@ -3383,8 +3367,24 @@ "deprecationReason": null }, { - "name": "hourlySnapshot", - "description": "Hourly snapshot of Bean data", + "name": "crosses", + "description": "Cumulative number of crosses", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dailySnapshot", + "description": "Daily snapshot of Bean data", "args": [ { "name": "first", @@ -3403,7 +3403,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "BeanHourlySnapshot_orderBy", + "name": "BeanDailySnapshot_orderBy", "ofType": null }, "defaultValue": null, @@ -3439,7 +3439,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "BeanHourlySnapshot_filter", + "name": "BeanDailySnapshot_filter", "ofType": null }, "defaultValue": null, @@ -3458,7 +3458,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "BeanHourlySnapshot", + "name": "BeanDailySnapshot", "ofType": null } } @@ -3468,88 +3468,8 @@ "deprecationReason": null }, { - "name": "id", - "description": "Contract address of the Bean token", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastCross", - "description": "Last timestamp a cross was seen", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastSeason", - "description": "Last season seen from Beanstalk", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityUSD", - "description": "Current liquidity in USD value", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "marketCap", - "description": "Current market cap", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pools", - "description": "Pools that include this Bean", + "name": "hourlySnapshot", + "description": "Hourly snapshot of Bean data", "args": [ { "name": "first", @@ -3568,7 +3488,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Pool_orderBy", + "name": "BeanHourlySnapshot_orderBy", "ofType": null }, "defaultValue": null, @@ -3604,7 +3524,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Pool_filter", + "name": "BeanHourlySnapshot_filter", "ofType": null }, "defaultValue": null, @@ -3623,7 +3543,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Pool", + "name": "BeanHourlySnapshot", "ofType": null } } @@ -3633,15 +3553,15 @@ "deprecationReason": null }, { - "name": "price", - "description": "Latest price seen", + "name": "id", + "description": "Contract address of the Bean token", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null } }, @@ -3649,8 +3569,8 @@ "deprecationReason": null }, { - "name": "supply", - "description": "Current supply", + "name": "lastCross", + "description": "Last timestamp a cross was seen", "args": [], "type": { "kind": "NON_NULL", @@ -3665,31 +3585,15 @@ "deprecationReason": null }, { - "name": "supplyInPegLP", - "description": "Percent of supply in LP used for peg maintenance", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volume", - "description": "Cumulative volume of beans traded", + "name": "lastSeason", + "description": "Last season seen from Beanstalk", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null } }, @@ -3697,8 +3601,8 @@ "deprecationReason": null }, { - "name": "volumeUSD", - "description": "Cumulative volume in USD value", + "name": "liquidityUSD", + "description": "Current liquidity in USD value", "args": [], "type": { "kind": "NON_NULL", @@ -3711,44 +3615,17 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BeanDailySnapshot", - "description": null, - "fields": [ - { - "name": "bean", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Bean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "blockNumber", - "description": null, + "name": "marketCap", + "description": "Current market cap", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "BigDecimal", "ofType": null } }, @@ -3756,8 +3633,8 @@ "deprecationReason": null }, { - "name": "crossEvents", - "description": null, + "name": "pools", + "description": "Pools that include this Bean", "args": [ { "name": "first", @@ -3776,7 +3653,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Cross_orderBy", + "name": "Pool_orderBy", "ofType": null }, "defaultValue": null, @@ -3812,7 +3689,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Cross_filter", + "name": "Pool_filter", "ofType": null }, "defaultValue": null, @@ -3831,7 +3708,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Cross", + "name": "Pool", "ofType": null } } @@ -3841,15 +3718,15 @@ "deprecationReason": null }, { - "name": "crosses", - "description": null, + "name": "price", + "description": "Latest price seen", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "BigDecimal", "ofType": null } }, @@ -3857,8 +3734,8 @@ "deprecationReason": null }, { - "name": "deltaBeans", - "description": null, + "name": "supply", + "description": "Current supply", "args": [], "type": { "kind": "NON_NULL", @@ -3873,24 +3750,8 @@ "deprecationReason": null }, { - "name": "deltaCrosses", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deltaLiquidityUSD", - "description": null, + "name": "supplyInPegLP", + "description": "Percent of supply in LP used for peg maintenance", "args": [], "type": { "kind": "NON_NULL", @@ -3905,8 +3766,8 @@ "deprecationReason": null }, { - "name": "deltaVolume", - "description": null, + "name": "volume", + "description": "Cumulative volume of beans traded", "args": [], "type": { "kind": "NON_NULL", @@ -3921,8 +3782,8 @@ "deprecationReason": null }, { - "name": "deltaVolumeUSD", - "description": null, + "name": "volumeUSD", + "description": "Cumulative volume in USD value", "args": [], "type": { "kind": "NON_NULL", @@ -3935,9 +3796,20 @@ }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "BeanCross", + "description": null, + "fields": [ { - "name": "id", + "name": "above", "description": null, "args": [], "type": { @@ -3945,7 +3817,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null } }, @@ -3953,15 +3825,15 @@ "deprecationReason": null }, { - "name": "liquidityUSD", + "name": "bean", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", + "kind": "OBJECT", + "name": "Bean", "ofType": null } }, @@ -3969,15 +3841,15 @@ "deprecationReason": null }, { - "name": "marketCap", + "name": "dailySnapshot", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", + "kind": "OBJECT", + "name": "BeanDailySnapshot", "ofType": null } }, @@ -3985,15 +3857,15 @@ "deprecationReason": null }, { - "name": "price", + "name": "hourlySnapshot", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", + "kind": "OBJECT", + "name": "BeanHourlySnapshot", "ofType": null } }, @@ -4001,7 +3873,7 @@ "deprecationReason": null }, { - "name": "season", + "name": "id", "description": null, "args": [], "type": { @@ -4009,7 +3881,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null } }, @@ -4017,7 +3889,7 @@ "deprecationReason": null }, { - "name": "supply", + "name": "price", "description": null, "args": [], "type": { @@ -4025,7 +3897,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "BigDecimal", "ofType": null } }, @@ -4033,15 +3905,15 @@ "deprecationReason": null }, { - "name": "supplyInPegLP", - "description": "Percent of supply in LP used for peg maintenance", + "name": "timeSinceLastCross", + "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null } }, @@ -4063,63 +3935,95 @@ }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "BeanCross_filter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_change_block", + "description": "Filter for the block changed event.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "volume", + "name": "above", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "volumeUSD", + "name": "above_in", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BeanDailySnapshot_filter", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "_change_block", - "description": "Filter for the block changed event.", + "name": "above_not", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, + { + "name": "above_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "and", "description": null, @@ -4128,7 +4032,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "BeanDailySnapshot_filter", + "name": "BeanCross_filter", "ofType": null } }, @@ -4405,11 +4309,11 @@ "deprecationReason": null }, { - "name": "blockNumber", + "name": "dailySnapshot", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4417,11 +4321,23 @@ "deprecationReason": null }, { - "name": "blockNumber_gt", + "name": "dailySnapshot_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BeanDailySnapshot_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dailySnapshot_contains", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4429,11 +4345,11 @@ "deprecationReason": null }, { - "name": "blockNumber_gte", + "name": "dailySnapshot_contains_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4441,31 +4357,23 @@ "deprecationReason": null }, { - "name": "blockNumber_in", + "name": "dailySnapshot_ends_with", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "blockNumber_lt", + "name": "dailySnapshot_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4473,11 +4381,11 @@ "deprecationReason": null }, { - "name": "blockNumber_lte", + "name": "dailySnapshot_gt", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4485,11 +4393,11 @@ "deprecationReason": null }, { - "name": "blockNumber_not", + "name": "dailySnapshot_gte", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4497,7 +4405,7 @@ "deprecationReason": null }, { - "name": "blockNumber_not_in", + "name": "dailySnapshot_in", "description": null, "type": { "kind": "LIST", @@ -4507,7 +4415,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } } @@ -4517,11 +4425,11 @@ "deprecationReason": null }, { - "name": "crossEvents_", + "name": "dailySnapshot_lt", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "Cross_filter", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4529,11 +4437,11 @@ "deprecationReason": null }, { - "name": "crosses", + "name": "dailySnapshot_lte", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4541,11 +4449,11 @@ "deprecationReason": null }, { - "name": "crosses_gt", + "name": "dailySnapshot_not", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4553,11 +4461,11 @@ "deprecationReason": null }, { - "name": "crosses_gte", + "name": "dailySnapshot_not_contains", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4565,31 +4473,11 @@ "deprecationReason": null }, { - "name": "crosses_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "crosses_lt", + "name": "dailySnapshot_not_contains_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4597,11 +4485,11 @@ "deprecationReason": null }, { - "name": "crosses_lte", + "name": "dailySnapshot_not_ends_with", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4609,11 +4497,11 @@ "deprecationReason": null }, { - "name": "crosses_not", + "name": "dailySnapshot_not_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4621,7 +4509,7 @@ "deprecationReason": null }, { - "name": "crosses_not_in", + "name": "dailySnapshot_not_in", "description": null, "type": { "kind": "LIST", @@ -4631,7 +4519,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } } @@ -4641,11 +4529,11 @@ "deprecationReason": null }, { - "name": "deltaBeans", + "name": "dailySnapshot_not_starts_with", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4653,11 +4541,11 @@ "deprecationReason": null }, { - "name": "deltaBeans_gt", + "name": "dailySnapshot_not_starts_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4665,11 +4553,11 @@ "deprecationReason": null }, { - "name": "deltaBeans_gte", + "name": "dailySnapshot_starts_with", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4677,31 +4565,23 @@ "deprecationReason": null }, { - "name": "deltaBeans_in", + "name": "dailySnapshot_starts_with_nocase", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deltaBeans_lt", + "name": "hourlySnapshot", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4709,11 +4589,23 @@ "deprecationReason": null }, { - "name": "deltaBeans_lte", + "name": "hourlySnapshot_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BeanHourlySnapshot_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hourlySnapshot_contains", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4721,11 +4613,11 @@ "deprecationReason": null }, { - "name": "deltaBeans_not", + "name": "hourlySnapshot_contains_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4733,31 +4625,23 @@ "deprecationReason": null }, { - "name": "deltaBeans_not_in", + "name": "hourlySnapshot_ends_with", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deltaCrosses", + "name": "hourlySnapshot_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4765,11 +4649,11 @@ "deprecationReason": null }, { - "name": "deltaCrosses_gt", + "name": "hourlySnapshot_gt", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4777,11 +4661,11 @@ "deprecationReason": null }, { - "name": "deltaCrosses_gte", + "name": "hourlySnapshot_gte", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4789,7 +4673,7 @@ "deprecationReason": null }, { - "name": "deltaCrosses_in", + "name": "hourlySnapshot_in", "description": null, "type": { "kind": "LIST", @@ -4799,7 +4683,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } } @@ -4809,11 +4693,11 @@ "deprecationReason": null }, { - "name": "deltaCrosses_lt", + "name": "hourlySnapshot_lt", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4821,11 +4705,11 @@ "deprecationReason": null }, { - "name": "deltaCrosses_lte", + "name": "hourlySnapshot_lte", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4833,11 +4717,11 @@ "deprecationReason": null }, { - "name": "deltaCrosses_not", + "name": "hourlySnapshot_not", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4845,31 +4729,23 @@ "deprecationReason": null }, { - "name": "deltaCrosses_not_in", + "name": "hourlySnapshot_not_contains", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deltaLiquidityUSD", + "name": "hourlySnapshot_not_contains_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4877,11 +4753,11 @@ "deprecationReason": null }, { - "name": "deltaLiquidityUSD_gt", + "name": "hourlySnapshot_not_ends_with", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4889,11 +4765,11 @@ "deprecationReason": null }, { - "name": "deltaLiquidityUSD_gte", + "name": "hourlySnapshot_not_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4901,7 +4777,7 @@ "deprecationReason": null }, { - "name": "deltaLiquidityUSD_in", + "name": "hourlySnapshot_not_in", "description": null, "type": { "kind": "LIST", @@ -4911,7 +4787,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null } } @@ -4921,11 +4797,11 @@ "deprecationReason": null }, { - "name": "deltaLiquidityUSD_lt", + "name": "hourlySnapshot_not_starts_with", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4933,11 +4809,11 @@ "deprecationReason": null }, { - "name": "deltaLiquidityUSD_lte", + "name": "hourlySnapshot_not_starts_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4945,11 +4821,11 @@ "deprecationReason": null }, { - "name": "deltaLiquidityUSD_not", + "name": "hourlySnapshot_starts_with", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4957,31 +4833,11 @@ "deprecationReason": null }, { - "name": "deltaLiquidityUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deltaVolume", + "name": "hourlySnapshot_starts_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -4989,11 +4845,11 @@ "deprecationReason": null }, { - "name": "deltaVolumeUSD", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -5001,11 +4857,11 @@ "deprecationReason": null }, { - "name": "deltaVolumeUSD_gt", + "name": "id_gt", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -5013,11 +4869,11 @@ "deprecationReason": null }, { - "name": "deltaVolumeUSD_gte", + "name": "id_gte", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -5025,7 +4881,7 @@ "deprecationReason": null }, { - "name": "deltaVolumeUSD_in", + "name": "id_in", "description": null, "type": { "kind": "LIST", @@ -5035,7 +4891,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null } } @@ -5045,11 +4901,11 @@ "deprecationReason": null }, { - "name": "deltaVolumeUSD_lt", + "name": "id_lt", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -5057,11 +4913,11 @@ "deprecationReason": null }, { - "name": "deltaVolumeUSD_lte", + "name": "id_lte", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -5069,11 +4925,11 @@ "deprecationReason": null }, { - "name": "deltaVolumeUSD_not", + "name": "id_not", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -5081,7 +4937,7 @@ "deprecationReason": null }, { - "name": "deltaVolumeUSD_not_in", + "name": "id_not_in", "description": null, "type": { "kind": "LIST", @@ -5091,7 +4947,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null } } @@ -5101,43 +4957,15 @@ "deprecationReason": null }, { - "name": "deltaVolume_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deltaVolume_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deltaVolume_in", + "name": "or", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "BeanCross_filter", + "ofType": null } }, "defaultValue": null, @@ -5145,11 +4973,11 @@ "deprecationReason": null }, { - "name": "deltaVolume_lt", + "name": "price", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -5157,11 +4985,11 @@ "deprecationReason": null }, { - "name": "deltaVolume_lte", + "name": "price_gt", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -5169,11 +4997,11 @@ "deprecationReason": null }, { - "name": "deltaVolume_not", + "name": "price_gte", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -5181,7 +5009,7 @@ "deprecationReason": null }, { - "name": "deltaVolume_not_in", + "name": "price_in", "description": null, "type": { "kind": "LIST", @@ -5191,7 +5019,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "BigDecimal", "ofType": null } } @@ -5201,11 +5029,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "price_lt", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -5213,11 +5041,11 @@ "deprecationReason": null }, { - "name": "id_gt", + "name": "price_lte", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -5225,11 +5053,11 @@ "deprecationReason": null }, { - "name": "id_gte", + "name": "price_not", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -5237,7 +5065,7 @@ "deprecationReason": null }, { - "name": "id_in", + "name": "price_not_in", "description": null, "type": { "kind": "LIST", @@ -5247,7 +5075,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "BigDecimal", "ofType": null } } @@ -5257,11 +5085,11 @@ "deprecationReason": null }, { - "name": "id_lt", + "name": "timeSinceLastCross", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -5269,11 +5097,11 @@ "deprecationReason": null }, { - "name": "id_lte", + "name": "timeSinceLastCross_gt", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -5281,11 +5109,11 @@ "deprecationReason": null }, { - "name": "id_not", + "name": "timeSinceLastCross_gte", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -5293,7 +5121,7 @@ "deprecationReason": null }, { - "name": "id_not_in", + "name": "timeSinceLastCross_in", "description": null, "type": { "kind": "LIST", @@ -5303,7 +5131,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "BigInt", "ofType": null } } @@ -5313,11 +5141,11 @@ "deprecationReason": null }, { - "name": "liquidityUSD", + "name": "timeSinceLastCross_lt", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -5325,11 +5153,11 @@ "deprecationReason": null }, { - "name": "liquidityUSD_gt", + "name": "timeSinceLastCross_lte", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -5337,11 +5165,11 @@ "deprecationReason": null }, { - "name": "liquidityUSD_gte", + "name": "timeSinceLastCross_not", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -5349,7 +5177,7 @@ "deprecationReason": null }, { - "name": "liquidityUSD_in", + "name": "timeSinceLastCross_not_in", "description": null, "type": { "kind": "LIST", @@ -5359,7 +5187,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null } } @@ -5369,11 +5197,11 @@ "deprecationReason": null }, { - "name": "liquidityUSD_lt", + "name": "timestamp", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -5381,11 +5209,11 @@ "deprecationReason": null }, { - "name": "liquidityUSD_lte", + "name": "timestamp_gt", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -5393,11 +5221,11 @@ "deprecationReason": null }, { - "name": "liquidityUSD_not", + "name": "timestamp_gte", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -5405,7 +5233,7 @@ "deprecationReason": null }, { - "name": "liquidityUSD_not_in", + "name": "timestamp_in", "description": null, "type": { "kind": "LIST", @@ -5415,7 +5243,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null } } @@ -5425,11 +5253,11 @@ "deprecationReason": null }, { - "name": "marketCap", + "name": "timestamp_lt", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -5437,11 +5265,11 @@ "deprecationReason": null }, { - "name": "marketCap_gt", + "name": "timestamp_lte", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -5449,11 +5277,11 @@ "deprecationReason": null }, { - "name": "marketCap_gte", + "name": "timestamp_not", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -5461,7 +5289,7 @@ "deprecationReason": null }, { - "name": "marketCap_in", + "name": "timestamp_not_in", "description": null, "type": { "kind": "LIST", @@ -5471,7 +5299,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null } } @@ -5479,992 +5307,310 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "BeanCross_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "marketCap_lt", + "name": "above", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "marketCap_lte", + "name": "bean", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "marketCap_not", + "name": "bean__crosses", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "marketCap_not_in", + "name": "bean__id", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "or", + "name": "bean__lastCross", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "BeanDailySnapshot_filter", - "ofType": null - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "price", + "name": "bean__lastSeason", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "price_gt", + "name": "bean__liquidityUSD", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "price_gte", + "name": "bean__marketCap", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "price_in", + "name": "bean__price", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "price_lt", + "name": "bean__supply", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "price_lte", + "name": "bean__supplyInPegLP", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "price_not", + "name": "bean__volume", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "price_not_in", + "name": "bean__volumeUSD", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "season", + "name": "dailySnapshot", "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "season_gt", + "name": "dailySnapshot__blockNumber", "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "season_gte", + "name": "dailySnapshot__crosses", "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "season_in", + "name": "dailySnapshot__deltaBeans", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "season_lt", + "name": "dailySnapshot__deltaCrosses", "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "season_lte", + "name": "dailySnapshot__deltaLiquidityUSD", "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "season_not", + "name": "dailySnapshot__deltaVolume", "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "season_not_in", + "name": "dailySnapshot__deltaVolumeUSD", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "supply", + "name": "dailySnapshot__id", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "supplyInPegLP", + "name": "dailySnapshot__liquidityUSD", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "supplyInPegLP_gt", + "name": "dailySnapshot__marketCap", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "supplyInPegLP_gte", + "name": "dailySnapshot__price", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "supplyInPegLP_in", + "name": "dailySnapshot__season", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "supplyInPegLP_lt", + "name": "dailySnapshot__supply", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "supplyInPegLP_lte", + "name": "dailySnapshot__supplyInPegLP", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "supplyInPegLP_not", + "name": "dailySnapshot__timestamp", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "supplyInPegLP_not_in", + "name": "dailySnapshot__volume", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "supply_gt", + "name": "dailySnapshot__volumeUSD", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "supply_gte", + "name": "hourlySnapshot", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "supply_in", + "name": "hourlySnapshot__blockNumber", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "supply_lt", + "name": "hourlySnapshot__crosses", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "supply_lte", + "name": "hourlySnapshot__deltaBeans", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "supply_not", + "name": "hourlySnapshot__deltaCrosses", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "supply_not_in", + "name": "hourlySnapshot__deltaLiquidityUSD", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp", + "name": "hourlySnapshot__deltaVolume", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_gt", + "name": "hourlySnapshot__deltaVolumeUSD", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_gte", + "name": "hourlySnapshot__id", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_in", + "name": "hourlySnapshot__liquidityUSD", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_lt", + "name": "hourlySnapshot__marketCap", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_lte", + "name": "hourlySnapshot__price", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_not", + "name": "hourlySnapshot__season", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_not_in", + "name": "hourlySnapshot__supply", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "volume", + "name": "hourlySnapshot__supplyInPegLP", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "volumeUSD", + "name": "hourlySnapshot__timestamp", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "volumeUSD_gt", + "name": "hourlySnapshot__volume", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "volumeUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volume_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volume_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volume_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volume_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volume_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volume_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volume_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "BeanDailySnapshot_orderBy", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "bean", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bean__crosses", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bean__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bean__lastCross", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bean__lastSeason", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bean__liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bean__marketCap", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bean__price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bean__supply", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bean__supplyInPegLP", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bean__volume", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bean__volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "crossEvents", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "crosses", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deltaBeans", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deltaCrosses", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deltaLiquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deltaVolume", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deltaVolumeUSD", + "name": "hourlySnapshot__volumeUSD", "description": null, "isDeprecated": false, "deprecationReason": null @@ -6475,18 +5621,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "marketCap", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "price", "description": null, @@ -6494,19 +5628,7 @@ "deprecationReason": null }, { - "name": "season", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "supply", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "supplyInPegLP", + "name": "timeSinceLastCross", "description": null, "isDeprecated": false, "deprecationReason": null @@ -6516,30 +5638,18 @@ "description": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "volume", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null } ], "possibleTypes": null }, { "kind": "OBJECT", - "name": "BeanHourlySnapshot", + "name": "BeanDailySnapshot", "description": null, "fields": [ { "name": "bean", - "description": "Bean token address", + "description": null, "args": [], "type": { "kind": "NON_NULL", @@ -6555,7 +5665,7 @@ }, { "name": "blockNumber", - "description": "Block number this snapshot was updated", + "description": null, "args": [], "type": { "kind": "NON_NULL", @@ -6571,7 +5681,7 @@ }, { "name": "crossEvents", - "description": "Detailed cross events during this snapshot", + "description": null, "args": [ { "name": "first", @@ -6590,7 +5700,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Cross_orderBy", + "name": "BeanCross_orderBy", "ofType": null }, "defaultValue": null, @@ -6626,7 +5736,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Cross_filter", + "name": "BeanCross_filter", "ofType": null }, "defaultValue": null, @@ -6645,7 +5755,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Cross", + "name": "BeanCross", "ofType": null } } @@ -6656,7 +5766,7 @@ }, { "name": "crosses", - "description": "Cumulative number of crosses", + "description": null, "args": [], "type": { "kind": "NON_NULL", @@ -6672,7 +5782,7 @@ }, { "name": "deltaBeans", - "description": "Current deltaB for peg", + "description": null, "args": [], "type": { "kind": "NON_NULL", @@ -6688,7 +5798,7 @@ }, { "name": "deltaCrosses", - "description": "Crosses occuring in this snapshot", + "description": null, "args": [], "type": { "kind": "NON_NULL", @@ -6704,7 +5814,7 @@ }, { "name": "deltaLiquidityUSD", - "description": "Difference in liquidity for this snapshot", + "description": null, "args": [], "type": { "kind": "NON_NULL", @@ -6720,7 +5830,7 @@ }, { "name": "deltaVolume", - "description": "Volume in BEAN for this snapshot", + "description": null, "args": [], "type": { "kind": "NON_NULL", @@ -6736,7 +5846,7 @@ }, { "name": "deltaVolumeUSD", - "description": "Volume in USD for this snapshot", + "description": null, "args": [], "type": { "kind": "NON_NULL", @@ -6752,7 +5862,7 @@ }, { "name": "id", - "description": "{Token address}-{Season}", + "description": null, "args": [], "type": { "kind": "NON_NULL", @@ -6768,7 +5878,7 @@ }, { "name": "liquidityUSD", - "description": "Current liquidity in USD", + "description": null, "args": [], "type": { "kind": "NON_NULL", @@ -6784,7 +5894,7 @@ }, { "name": "marketCap", - "description": "Current market cap", + "description": null, "args": [], "type": { "kind": "NON_NULL", @@ -6800,7 +5910,7 @@ }, { "name": "price", - "description": "Current USD price", + "description": null, "args": [], "type": { "kind": "NON_NULL", @@ -6816,7 +5926,7 @@ }, { "name": "season", - "description": "Season associated with this snapshot", + "description": null, "args": [], "type": { "kind": "NON_NULL", @@ -6832,7 +5942,7 @@ }, { "name": "supply", - "description": "Current supply", + "description": null, "args": [], "type": { "kind": "NON_NULL", @@ -6864,7 +5974,7 @@ }, { "name": "timestamp", - "description": "Timestamp this snapshot was updated", + "description": null, "args": [], "type": { "kind": "NON_NULL", @@ -6880,7 +5990,7 @@ }, { "name": "volume", - "description": "Cumulative volume in BEAN", + "description": null, "args": [], "type": { "kind": "NON_NULL", @@ -6896,7 +6006,7 @@ }, { "name": "volumeUSD", - "description": "Cumulative volume in USD", + "description": null, "args": [], "type": { "kind": "NON_NULL", @@ -6918,7 +6028,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "BeanHourlySnapshot_filter", + "name": "BeanDailySnapshot_filter", "description": null, "fields": null, "inputFields": [ @@ -6942,7 +6052,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "BeanHourlySnapshot_filter", + "name": "BeanDailySnapshot_filter", "ofType": null } }, @@ -7335,7 +6445,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Cross_filter", + "name": "BeanCross_filter", "ofType": null }, "defaultValue": null, @@ -8358,7 +7468,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "BeanHourlySnapshot_filter", + "name": "BeanDailySnapshot_filter", "ofType": null } }, @@ -9157,7 +8267,7 @@ }, { "kind": "ENUM", - "name": "BeanHourlySnapshot_orderBy", + "name": "BeanDailySnapshot_orderBy", "description": null, "fields": null, "inputFields": null, @@ -9346,9 +8456,393 @@ ], "possibleTypes": null }, + { + "kind": "OBJECT", + "name": "BeanHourlySnapshot", + "description": null, + "fields": [ + { + "name": "bean", + "description": "Bean token address", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Bean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "blockNumber", + "description": "Block number this snapshot was updated", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "crossEvents", + "description": "Detailed cross events during this snapshot", + "args": [ + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "BeanCross_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BeanCross_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BeanCross", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "crosses", + "description": "Cumulative number of crosses", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deltaBeans", + "description": "Current deltaB for peg", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deltaCrosses", + "description": "Crosses occuring in this snapshot", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deltaLiquidityUSD", + "description": "Difference in liquidity for this snapshot", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deltaVolume", + "description": "Volume in BEAN for this snapshot", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deltaVolumeUSD", + "description": "Volume in USD for this snapshot", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "{Token address}-{Season}", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityUSD", + "description": "Current liquidity in USD", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "marketCap", + "description": "Current market cap", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "price", + "description": "Current USD price", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season", + "description": "Season associated with this snapshot", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "supply", + "description": "Current supply", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "supplyInPegLP", + "description": "Percent of supply in LP used for peg maintenance", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp", + "description": "Timestamp this snapshot was updated", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volume", + "description": "Cumulative volume in BEAN", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeUSD", + "description": "Cumulative volume in USD", + "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": "Bean_filter", + "name": "BeanHourlySnapshot_filter", "description": null, "fields": null, "inputFields": [ @@ -9372,7 +8866,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "Bean_filter", + "name": "BeanHourlySnapshot_filter", "ofType": null } }, @@ -9381,11 +8875,11 @@ "deprecationReason": null }, { - "name": "crosses", + "name": "bean", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -9393,11 +8887,23 @@ "deprecationReason": null }, { - "name": "crosses_gt", + "name": "bean_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Bean_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bean_contains", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -9405,11 +8911,11 @@ "deprecationReason": null }, { - "name": "crosses_gte", + "name": "bean_contains_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -9417,7 +8923,55 @@ "deprecationReason": null }, { - "name": "crosses_in", + "name": "bean_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bean_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bean_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bean_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bean_in", "description": null, "type": { "kind": "LIST", @@ -9427,7 +8981,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } } @@ -9437,11 +8991,11 @@ "deprecationReason": null }, { - "name": "crosses_lt", + "name": "bean_lt", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -9449,11 +9003,11 @@ "deprecationReason": null }, { - "name": "crosses_lte", + "name": "bean_lte", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -9461,11 +9015,11 @@ "deprecationReason": null }, { - "name": "crosses_not", + "name": "bean_not", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -9473,7 +9027,55 @@ "deprecationReason": null }, { - "name": "crosses_not_in", + "name": "bean_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bean_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bean_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bean_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bean_not_in", "description": null, "type": { "kind": "LIST", @@ -9483,7 +9085,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } } @@ -9493,11 +9095,11 @@ "deprecationReason": null }, { - "name": "dailySnapshot_", + "name": "bean_not_starts_with", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "BeanDailySnapshot_filter", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -9505,11 +9107,159 @@ "deprecationReason": null }, { - "name": "hourlySnapshot_", + "name": "bean_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bean_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bean_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "blockNumber", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "blockNumber_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "blockNumber_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "blockNumber_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "blockNumber_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "blockNumber_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "blockNumber_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "blockNumber_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "crossEvents_", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "BeanHourlySnapshot_filter", + "name": "BeanCross_filter", "ofType": null }, "defaultValue": null, @@ -9517,11 +9267,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "crosses", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -9529,11 +9279,11 @@ "deprecationReason": null }, { - "name": "id_gt", + "name": "crosses_gt", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -9541,11 +9291,11 @@ "deprecationReason": null }, { - "name": "id_gte", + "name": "crosses_gte", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -9553,7 +9303,7 @@ "deprecationReason": null }, { - "name": "id_in", + "name": "crosses_in", "description": null, "type": { "kind": "LIST", @@ -9563,7 +9313,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null } } @@ -9573,11 +9323,11 @@ "deprecationReason": null }, { - "name": "id_lt", + "name": "crosses_lt", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -9585,11 +9335,11 @@ "deprecationReason": null }, { - "name": "id_lte", + "name": "crosses_lte", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -9597,11 +9347,11 @@ "deprecationReason": null }, { - "name": "id_not", + "name": "crosses_not", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -9609,7 +9359,7 @@ "deprecationReason": null }, { - "name": "id_not_in", + "name": "crosses_not_in", "description": null, "type": { "kind": "LIST", @@ -9619,7 +9369,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null } } @@ -9629,7 +9379,7 @@ "deprecationReason": null }, { - "name": "lastCross", + "name": "deltaBeans", "description": null, "type": { "kind": "SCALAR", @@ -9641,7 +9391,7 @@ "deprecationReason": null }, { - "name": "lastCross_gt", + "name": "deltaBeans_gt", "description": null, "type": { "kind": "SCALAR", @@ -9653,7 +9403,7 @@ "deprecationReason": null }, { - "name": "lastCross_gte", + "name": "deltaBeans_gte", "description": null, "type": { "kind": "SCALAR", @@ -9665,7 +9415,7 @@ "deprecationReason": null }, { - "name": "lastCross_in", + "name": "deltaBeans_in", "description": null, "type": { "kind": "LIST", @@ -9685,7 +9435,7 @@ "deprecationReason": null }, { - "name": "lastCross_lt", + "name": "deltaBeans_lt", "description": null, "type": { "kind": "SCALAR", @@ -9697,7 +9447,7 @@ "deprecationReason": null }, { - "name": "lastCross_lte", + "name": "deltaBeans_lte", "description": null, "type": { "kind": "SCALAR", @@ -9709,7 +9459,7 @@ "deprecationReason": null }, { - "name": "lastCross_not", + "name": "deltaBeans_not", "description": null, "type": { "kind": "SCALAR", @@ -9721,7 +9471,7 @@ "deprecationReason": null }, { - "name": "lastCross_not_in", + "name": "deltaBeans_not_in", "description": null, "type": { "kind": "LIST", @@ -9741,7 +9491,7 @@ "deprecationReason": null }, { - "name": "lastSeason", + "name": "deltaCrosses", "description": null, "type": { "kind": "SCALAR", @@ -9753,7 +9503,7 @@ "deprecationReason": null }, { - "name": "lastSeason_gt", + "name": "deltaCrosses_gt", "description": null, "type": { "kind": "SCALAR", @@ -9765,7 +9515,7 @@ "deprecationReason": null }, { - "name": "lastSeason_gte", + "name": "deltaCrosses_gte", "description": null, "type": { "kind": "SCALAR", @@ -9777,7 +9527,7 @@ "deprecationReason": null }, { - "name": "lastSeason_in", + "name": "deltaCrosses_in", "description": null, "type": { "kind": "LIST", @@ -9797,7 +9547,7 @@ "deprecationReason": null }, { - "name": "lastSeason_lt", + "name": "deltaCrosses_lt", "description": null, "type": { "kind": "SCALAR", @@ -9809,7 +9559,7 @@ "deprecationReason": null }, { - "name": "lastSeason_lte", + "name": "deltaCrosses_lte", "description": null, "type": { "kind": "SCALAR", @@ -9821,7 +9571,7 @@ "deprecationReason": null }, { - "name": "lastSeason_not", + "name": "deltaCrosses_not", "description": null, "type": { "kind": "SCALAR", @@ -9833,7 +9583,7 @@ "deprecationReason": null }, { - "name": "lastSeason_not_in", + "name": "deltaCrosses_not_in", "description": null, "type": { "kind": "LIST", @@ -9853,7 +9603,7 @@ "deprecationReason": null }, { - "name": "liquidityUSD", + "name": "deltaLiquidityUSD", "description": null, "type": { "kind": "SCALAR", @@ -9865,7 +9615,7 @@ "deprecationReason": null }, { - "name": "liquidityUSD_gt", + "name": "deltaLiquidityUSD_gt", "description": null, "type": { "kind": "SCALAR", @@ -9877,7 +9627,7 @@ "deprecationReason": null }, { - "name": "liquidityUSD_gte", + "name": "deltaLiquidityUSD_gte", "description": null, "type": { "kind": "SCALAR", @@ -9889,7 +9639,7 @@ "deprecationReason": null }, { - "name": "liquidityUSD_in", + "name": "deltaLiquidityUSD_in", "description": null, "type": { "kind": "LIST", @@ -9909,7 +9659,7 @@ "deprecationReason": null }, { - "name": "liquidityUSD_lt", + "name": "deltaLiquidityUSD_lt", "description": null, "type": { "kind": "SCALAR", @@ -9921,7 +9671,7 @@ "deprecationReason": null }, { - "name": "liquidityUSD_lte", + "name": "deltaLiquidityUSD_lte", "description": null, "type": { "kind": "SCALAR", @@ -9933,7 +9683,7 @@ "deprecationReason": null }, { - "name": "liquidityUSD_not", + "name": "deltaLiquidityUSD_not", "description": null, "type": { "kind": "SCALAR", @@ -9945,7 +9695,7 @@ "deprecationReason": null }, { - "name": "liquidityUSD_not_in", + "name": "deltaLiquidityUSD_not_in", "description": null, "type": { "kind": "LIST", @@ -9965,7 +9715,19 @@ "deprecationReason": null }, { - "name": "marketCap", + "name": "deltaVolume", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deltaVolumeUSD", "description": null, "type": { "kind": "SCALAR", @@ -9977,7 +9739,7 @@ "deprecationReason": null }, { - "name": "marketCap_gt", + "name": "deltaVolumeUSD_gt", "description": null, "type": { "kind": "SCALAR", @@ -9989,7 +9751,7 @@ "deprecationReason": null }, { - "name": "marketCap_gte", + "name": "deltaVolumeUSD_gte", "description": null, "type": { "kind": "SCALAR", @@ -10001,7 +9763,7 @@ "deprecationReason": null }, { - "name": "marketCap_in", + "name": "deltaVolumeUSD_in", "description": null, "type": { "kind": "LIST", @@ -10021,7 +9783,7 @@ "deprecationReason": null }, { - "name": "marketCap_lt", + "name": "deltaVolumeUSD_lt", "description": null, "type": { "kind": "SCALAR", @@ -10033,7 +9795,7 @@ "deprecationReason": null }, { - "name": "marketCap_lte", + "name": "deltaVolumeUSD_lte", "description": null, "type": { "kind": "SCALAR", @@ -10045,7 +9807,7 @@ "deprecationReason": null }, { - "name": "marketCap_not", + "name": "deltaVolumeUSD_not", "description": null, "type": { "kind": "SCALAR", @@ -10057,7 +9819,7 @@ "deprecationReason": null }, { - "name": "marketCap_not_in", + "name": "deltaVolumeUSD_not_in", "description": null, "type": { "kind": "LIST", @@ -10077,15 +9839,43 @@ "deprecationReason": null }, { - "name": "or", + "name": "deltaVolume_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deltaVolume_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deltaVolume_in", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "Bean_filter", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } } }, "defaultValue": null, @@ -10093,7 +9883,43 @@ "deprecationReason": null }, { - "name": "pools", + "name": "deltaVolume_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deltaVolume_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deltaVolume_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deltaVolume_not_in", "description": null, "type": { "kind": "LIST", @@ -10103,7 +9929,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } } @@ -10113,11 +9939,11 @@ "deprecationReason": null }, { - "name": "pools_", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "Pool_filter", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -10125,7 +9951,31 @@ "deprecationReason": null }, { - "name": "pools_contains", + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_in", "description": null, "type": { "kind": "LIST", @@ -10135,7 +9985,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } } @@ -10145,7 +9995,43 @@ "deprecationReason": null }, { - "name": "pools_contains_nocase", + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_not_in", "description": null, "type": { "kind": "LIST", @@ -10155,7 +10041,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } } @@ -10165,7 +10051,43 @@ "deprecationReason": null }, { - "name": "pools_not", + "name": "liquidityUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityUSD_in", "description": null, "type": { "kind": "LIST", @@ -10175,7 +10097,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null } } @@ -10185,7 +10107,43 @@ "deprecationReason": null }, { - "name": "pools_not_contains", + "name": "liquidityUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityUSD_not_in", "description": null, "type": { "kind": "LIST", @@ -10195,7 +10153,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null } } @@ -10205,7 +10163,43 @@ "deprecationReason": null }, { - "name": "pools_not_contains_nocase", + "name": "marketCap", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "marketCap_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "marketCap_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "marketCap_in", "description": null, "type": { "kind": "LIST", @@ -10215,7 +10209,63 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "marketCap_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "marketCap_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "marketCap_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "marketCap_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", "ofType": null } } @@ -10224,6 +10274,22 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BeanHourlySnapshot_filter", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "price", "description": null, @@ -10336,6 +10402,118 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "season", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "supply", "description": null, @@ -10560,6 +10738,118 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "timestamp", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "volume", "description": null, @@ -10791,406 +11081,198 @@ }, { "kind": "ENUM", - "name": "Bean_orderBy", + "name": "BeanHourlySnapshot_orderBy", "description": null, "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "crosses", + "name": "bean", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dailySnapshot", + "name": "bean__crosses", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hourlySnapshot", + "name": "bean__id", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "bean__lastCross", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "lastCross", + "name": "bean__lastSeason", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "lastSeason", + "name": "bean__liquidityUSD", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "liquidityUSD", + "name": "bean__marketCap", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "marketCap", + "name": "bean__price", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pools", + "name": "bean__supply", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "price", + "name": "bean__supplyInPegLP", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "supply", + "name": "bean__volume", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "supplyInPegLP", + "name": "bean__volumeUSD", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "volume", + "name": "blockNumber", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "volumeUSD", + "name": "crossEvents", "description": null, "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Beanstalk", - "description": null, - "fields": [ + }, { - "name": "activeFarmers", - "description": " Array of the addresses for all active farmers in the silo ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, + "name": "crosses", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "farmersToUpdate", - "description": " Array of the addresses for all farmers that had silo transfers and need stalk/seeds/roots updated ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, + "name": "deltaBeans", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "field", - "description": " Field level data ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Field", - "ofType": null - } - }, + "name": "deltaCrosses", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deltaLiquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deltaVolume", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deltaVolumeUSD", + "description": null, "isDeprecated": false, "deprecationReason": null }, { "name": "id", - "description": " Smart contract address of the protocol's main contract (Factory, Registry, etc) ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "lastSeason", - "description": " Last season called ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, + "name": "liquidityUSD", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "lastUpgrade", - "description": " Timestamp of the latest DiamondCut call ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, + "name": "marketCap", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "methodologyVersion", - "description": " Version of the methodology used to compute metrics, loosely based on SemVer format (e.g. 1.0.0) ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "price", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": " Name of the protocol, including version. e.g. Uniswap v3 ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "season", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "schemaVersion", - "description": " Version of the subgraph schema, in SemVer format (e.g. 1.0.0) ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "supply", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "seasons", - "description": " Season specific data ", - "args": [ - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Season_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Season_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Season", - "ofType": null - } - } - } - }, + "name": "supplyInPegLP", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "silo", - "description": " Silo level data ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Silo", - "ofType": null - } - }, + "name": "timestamp", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "slug", - "description": " Slug of protocol, including version. e.g. uniswap-v3 ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "volume", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "subgraphVersion", - "description": " Version of the subgraph implementation, in SemVer format (e.g. 1.0.0) ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "volumeUSD", + "description": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "Beanstalk_filter", + "name": "Bean_filter", "description": null, "fields": null, "inputFields": [ @@ -11207,59 +11289,15 @@ "deprecationReason": null }, { - "name": "activeFarmers", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "activeFarmers_contains", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "activeFarmers_contains_nocase", + "name": "and", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "Bean_filter", + "ofType": null } }, "defaultValue": null, @@ -11267,83 +11305,55 @@ "deprecationReason": null }, { - "name": "activeFarmers_not", + "name": "crossEvents_", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "BeanCross_filter", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "activeFarmers_not_contains", + "name": "crosses", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "activeFarmers_not_contains_nocase", + "name": "crosses_gt", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "and", + "name": "crosses_gte", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Beanstalk_filter", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "farmersToUpdate", + "name": "crosses_in", "description": null, "type": { "kind": "LIST", @@ -11353,7 +11363,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } } @@ -11363,67 +11373,43 @@ "deprecationReason": null }, { - "name": "farmersToUpdate_contains", + "name": "crosses_lt", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "farmersToUpdate_contains_nocase", + "name": "crosses_lte", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "farmersToUpdate_not", + "name": "crosses_not", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "farmersToUpdate_not_contains", + "name": "crosses_not_in", "description": null, "type": { "kind": "LIST", @@ -11433,7 +11419,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } } @@ -11443,31 +11429,23 @@ "deprecationReason": null }, { - "name": "farmersToUpdate_not_contains_nocase", + "name": "dailySnapshot_", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "BeanDailySnapshot_filter", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "field_", + "name": "hourlySnapshot_", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Field_filter", + "name": "BeanHourlySnapshot_filter", "ofType": null }, "defaultValue": null, @@ -11587,11 +11565,11 @@ "deprecationReason": null }, { - "name": "lastSeason", + "name": "lastCross", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -11599,11 +11577,11 @@ "deprecationReason": null }, { - "name": "lastSeason_gt", + "name": "lastCross_gt", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -11611,11 +11589,11 @@ "deprecationReason": null }, { - "name": "lastSeason_gte", + "name": "lastCross_gte", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -11623,7 +11601,7 @@ "deprecationReason": null }, { - "name": "lastSeason_in", + "name": "lastCross_in", "description": null, "type": { "kind": "LIST", @@ -11633,7 +11611,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null } } @@ -11643,11 +11621,11 @@ "deprecationReason": null }, { - "name": "lastSeason_lt", + "name": "lastCross_lt", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -11655,11 +11633,11 @@ "deprecationReason": null }, { - "name": "lastSeason_lte", + "name": "lastCross_lte", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -11667,11 +11645,11 @@ "deprecationReason": null }, { - "name": "lastSeason_not", + "name": "lastCross_not", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -11679,7 +11657,7 @@ "deprecationReason": null }, { - "name": "lastSeason_not_in", + "name": "lastCross_not_in", "description": null, "type": { "kind": "LIST", @@ -11689,7 +11667,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null } } @@ -11699,11 +11677,11 @@ "deprecationReason": null }, { - "name": "lastUpgrade", + "name": "lastSeason", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -11711,11 +11689,11 @@ "deprecationReason": null }, { - "name": "lastUpgrade_gt", + "name": "lastSeason_gt", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -11723,11 +11701,11 @@ "deprecationReason": null }, { - "name": "lastUpgrade_gte", + "name": "lastSeason_gte", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -11735,7 +11713,7 @@ "deprecationReason": null }, { - "name": "lastUpgrade_in", + "name": "lastSeason_in", "description": null, "type": { "kind": "LIST", @@ -11745,7 +11723,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null } } @@ -11755,11 +11733,11 @@ "deprecationReason": null }, { - "name": "lastUpgrade_lt", + "name": "lastSeason_lt", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -11767,11 +11745,11 @@ "deprecationReason": null }, { - "name": "lastUpgrade_lte", + "name": "lastSeason_lte", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -11779,11 +11757,11 @@ "deprecationReason": null }, { - "name": "lastUpgrade_not", + "name": "lastSeason_not", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -11791,7 +11769,7 @@ "deprecationReason": null }, { - "name": "lastUpgrade_not_in", + "name": "lastSeason_not_in", "description": null, "type": { "kind": "LIST", @@ -11801,7 +11779,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null } } @@ -11811,59 +11789,11 @@ "deprecationReason": null }, { - "name": "methodologyVersion", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "methodologyVersion_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "methodologyVersion_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "methodologyVersion_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "methodologyVersion_ends_with_nocase", + "name": "liquidityUSD", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -11871,11 +11801,11 @@ "deprecationReason": null }, { - "name": "methodologyVersion_gt", + "name": "liquidityUSD_gt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -11883,11 +11813,11 @@ "deprecationReason": null }, { - "name": "methodologyVersion_gte", + "name": "liquidityUSD_gte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -11895,7 +11825,7 @@ "deprecationReason": null }, { - "name": "methodologyVersion_in", + "name": "liquidityUSD_in", "description": null, "type": { "kind": "LIST", @@ -11905,7 +11835,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null } } @@ -11915,11 +11845,11 @@ "deprecationReason": null }, { - "name": "methodologyVersion_lt", + "name": "liquidityUSD_lt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -11927,11 +11857,11 @@ "deprecationReason": null }, { - "name": "methodologyVersion_lte", + "name": "liquidityUSD_lte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -11939,11 +11869,11 @@ "deprecationReason": null }, { - "name": "methodologyVersion_not", + "name": "liquidityUSD_not", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -11951,23 +11881,31 @@ "deprecationReason": null }, { - "name": "methodologyVersion_not_contains", + "name": "liquidityUSD_not_in", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "methodologyVersion_not_contains_nocase", + "name": "marketCap", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -11975,11 +11913,11 @@ "deprecationReason": null }, { - "name": "methodologyVersion_not_ends_with", + "name": "marketCap_gt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -11987,11 +11925,11 @@ "deprecationReason": null }, { - "name": "methodologyVersion_not_ends_with_nocase", + "name": "marketCap_gte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -11999,7 +11937,7 @@ "deprecationReason": null }, { - "name": "methodologyVersion_not_in", + "name": "marketCap_in", "description": null, "type": { "kind": "LIST", @@ -12009,7 +11947,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null } } @@ -12019,11 +11957,11 @@ "deprecationReason": null }, { - "name": "methodologyVersion_not_starts_with", + "name": "marketCap_lt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -12031,11 +11969,11 @@ "deprecationReason": null }, { - "name": "methodologyVersion_not_starts_with_nocase", + "name": "marketCap_lte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -12043,11 +11981,11 @@ "deprecationReason": null }, { - "name": "methodologyVersion_starts_with", + "name": "marketCap_not", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -12055,47 +11993,67 @@ "deprecationReason": null }, { - "name": "methodologyVersion_starts_with_nocase", + "name": "marketCap_not_in", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "or", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Bean_filter", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name_contains", + "name": "pools", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name_contains_nocase", + "name": "pools_", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "Pool_filter", "ofType": null }, "defaultValue": null, @@ -12103,55 +12061,87 @@ "deprecationReason": null }, { - "name": "name_ends_with", + "name": "pools_contains", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name_ends_with_nocase", + "name": "pools_contains_nocase", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name_gt", + "name": "pools_not", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name_gte", + "name": "pools_not_contains", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name_in", + "name": "pools_not_contains_nocase", "description": null, "type": { "kind": "LIST", @@ -12171,11 +12161,11 @@ "deprecationReason": null }, { - "name": "name_lt", + "name": "price", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -12183,11 +12173,11 @@ "deprecationReason": null }, { - "name": "name_lte", + "name": "price_gt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -12195,11 +12185,11 @@ "deprecationReason": null }, { - "name": "name_not", + "name": "price_gte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -12207,23 +12197,31 @@ "deprecationReason": null }, { - "name": "name_not_contains", + "name": "price_in", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name_not_contains_nocase", + "name": "price_lt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -12231,11 +12229,11 @@ "deprecationReason": null }, { - "name": "name_not_ends_with", + "name": "price_lte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -12243,11 +12241,11 @@ "deprecationReason": null }, { - "name": "name_not_ends_with_nocase", + "name": "price_not", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -12255,7 +12253,7 @@ "deprecationReason": null }, { - "name": "name_not_in", + "name": "price_not_in", "description": null, "type": { "kind": "LIST", @@ -12265,7 +12263,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null } } @@ -12275,11 +12273,11 @@ "deprecationReason": null }, { - "name": "name_not_starts_with", + "name": "supply", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -12287,11 +12285,11 @@ "deprecationReason": null }, { - "name": "name_not_starts_with_nocase", + "name": "supplyInPegLP", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -12299,11 +12297,11 @@ "deprecationReason": null }, { - "name": "name_starts_with", + "name": "supplyInPegLP_gt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -12311,11 +12309,11 @@ "deprecationReason": null }, { - "name": "name_starts_with_nocase", + "name": "supplyInPegLP_gte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -12323,15 +12321,19 @@ "deprecationReason": null }, { - "name": "or", + "name": "supplyInPegLP_in", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "Beanstalk_filter", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } } }, "defaultValue": null, @@ -12339,23 +12341,11 @@ "deprecationReason": null }, { - "name": "schemaVersion", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "schemaVersion_contains", + "name": "supplyInPegLP_lt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -12363,11 +12353,11 @@ "deprecationReason": null }, { - "name": "schemaVersion_contains_nocase", + "name": "supplyInPegLP_lte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -12375,11 +12365,11 @@ "deprecationReason": null }, { - "name": "schemaVersion_ends_with", + "name": "supplyInPegLP_not", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -12387,23 +12377,31 @@ "deprecationReason": null }, { - "name": "schemaVersion_ends_with_nocase", + "name": "supplyInPegLP_not_in", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "schemaVersion_gt", + "name": "supply_gt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -12411,11 +12409,11 @@ "deprecationReason": null }, { - "name": "schemaVersion_gte", + "name": "supply_gte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -12423,7 +12421,7 @@ "deprecationReason": null }, { - "name": "schemaVersion_in", + "name": "supply_in", "description": null, "type": { "kind": "LIST", @@ -12433,7 +12431,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } } @@ -12443,11 +12441,11 @@ "deprecationReason": null }, { - "name": "schemaVersion_lt", + "name": "supply_lt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -12455,11 +12453,11 @@ "deprecationReason": null }, { - "name": "schemaVersion_lte", + "name": "supply_lte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -12467,11 +12465,11 @@ "deprecationReason": null }, { - "name": "schemaVersion_not", + "name": "supply_not", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -12479,11 +12477,31 @@ "deprecationReason": null }, { - "name": "schemaVersion_not_contains", + "name": "supply_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volume", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -12491,11 +12509,11 @@ "deprecationReason": null }, { - "name": "schemaVersion_not_contains_nocase", + "name": "volumeUSD", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -12503,11 +12521,11 @@ "deprecationReason": null }, { - "name": "schemaVersion_not_ends_with", + "name": "volumeUSD_gt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -12515,11 +12533,11 @@ "deprecationReason": null }, { - "name": "schemaVersion_not_ends_with_nocase", + "name": "volumeUSD_gte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -12527,7 +12545,7 @@ "deprecationReason": null }, { - "name": "schemaVersion_not_in", + "name": "volumeUSD_in", "description": null, "type": { "kind": "LIST", @@ -12537,7 +12555,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null } } @@ -12547,11 +12565,11 @@ "deprecationReason": null }, { - "name": "schemaVersion_not_starts_with", + "name": "volumeUSD_lt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -12559,11 +12577,11 @@ "deprecationReason": null }, { - "name": "schemaVersion_not_starts_with_nocase", + "name": "volumeUSD_lte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -12571,11 +12589,11 @@ "deprecationReason": null }, { - "name": "schemaVersion_starts_with", + "name": "volumeUSD_not", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -12583,23 +12601,31 @@ "deprecationReason": null }, { - "name": "schemaVersion_starts_with_nocase", + "name": "volumeUSD_not_in", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "seasons_", + "name": "volume_gt", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "Season_filter", + "kind": "SCALAR", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -12607,11 +12633,11 @@ "deprecationReason": null }, { - "name": "silo_", + "name": "volume_gte", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "Silo_filter", + "kind": "SCALAR", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -12619,23 +12645,31 @@ "deprecationReason": null }, { - "name": "slug", + "name": "volume_in", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "slug_contains", + "name": "volume_lt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -12643,11 +12677,11 @@ "deprecationReason": null }, { - "name": "slug_contains_nocase", + "name": "volume_lte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -12655,11 +12689,11 @@ "deprecationReason": null }, { - "name": "slug_ends_with", + "name": "volume_not", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -12667,359 +12701,447 @@ "deprecationReason": null }, { - "name": "slug_ends_with_nocase", + "name": "volume_not_in", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "Bean_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "crossEvents", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "slug_gt", + "name": "crosses", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "slug_gte", + "name": "dailySnapshot", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "slug_in", + "name": "hourlySnapshot", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "slug_lt", + "name": "id", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "slug_lte", + "name": "lastCross", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "slug_not", + "name": "lastSeason", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "slug_not_contains", + "name": "liquidityUSD", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "slug_not_contains_nocase", + "name": "marketCap", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "slug_not_ends_with", + "name": "pools", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "slug_not_ends_with_nocase", + "name": "price", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "slug_not_in", + "name": "supply", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "slug_not_starts_with", + "name": "supplyInPegLP", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "slug_not_starts_with_nocase", + "name": "volume", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "slug_starts_with", + "name": "volumeUSD", "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Beanstalk", + "description": null, + "fields": [ + { + "name": "activeFarmers", + "description": " Array of the addresses for all active farmers in the silo ", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "slug_starts_with_nocase", - "description": null, + "name": "farmersToUpdate", + "description": " Array of the addresses for all farmers that had silo transfers and need stalk/seeds/roots updated ", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "subgraphVersion", - "description": null, + "name": "field", + "description": " Field level data ", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Field", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "subgraphVersion_contains", - "description": null, + "name": "id", + "description": " Smart contract address of the protocol's main contract (Factory, Registry, etc) ", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "subgraphVersion_contains_nocase", - "description": null, + "name": "lastSeason", + "description": " Last season called ", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "subgraphVersion_ends_with", - "description": null, + "name": "lastUpgrade", + "description": " Timestamp of the latest DiamondCut call ", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "subgraphVersion_ends_with_nocase", - "description": null, + "name": "methodologyVersion", + "description": " Version of the methodology used to compute metrics, loosely based on SemVer format (e.g. 1.0.0) ", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "subgraphVersion_gt", - "description": null, + "name": "name", + "description": " Name of the protocol, including version. e.g. Uniswap v3 ", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "subgraphVersion_gte", - "description": null, + "name": "schemaVersion", + "description": " Version of the subgraph schema, in SemVer format (e.g. 1.0.0) ", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "subgraphVersion_in", - "description": null, + "name": "seasons", + "description": " Season specific data ", + "args": [ + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Season_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Season_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Season", + "ofType": null + } } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "subgraphVersion_lt", - "description": null, + "name": "silo", + "description": " Silo level data ", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Silo", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "subgraphVersion_lte", - "description": null, + "name": "slug", + "description": " Slug of protocol, including version. e.g. uniswap-v3 ", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "subgraphVersion_not", - "description": null, + "name": "subgraphVersion", + "description": " Version of the subgraph implementation, in SemVer format (e.g. 1.0.0) ", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "Beanstalk_filter", + "description": null, + "fields": null, + "inputFields": [ { - "name": "subgraphVersion_not_contains", - "description": null, + "name": "_change_block", + "description": "Filter for the block changed event.", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", "ofType": null }, "defaultValue": null, @@ -13027,43 +13149,67 @@ "deprecationReason": null }, { - "name": "subgraphVersion_not_contains_nocase", + "name": "activeFarmers", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "subgraphVersion_not_ends_with", + "name": "activeFarmers_contains", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "subgraphVersion_not_ends_with_nocase", + "name": "activeFarmers_contains_nocase", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "subgraphVersion_not_in", + "name": "activeFarmers_not", "description": null, "type": { "kind": "LIST", @@ -13083,408 +13229,188 @@ "deprecationReason": null }, { - "name": "subgraphVersion_not_starts_with", + "name": "activeFarmers_not_contains", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "subgraphVersion_not_starts_with_nocase", + "name": "activeFarmers_not_contains_nocase", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "subgraphVersion_starts_with", + "name": "and", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Beanstalk_filter", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "subgraphVersion_starts_with_nocase", + "name": "farmersToUpdate", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "Beanstalk_orderBy", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "activeFarmers", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "farmersToUpdate", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "field", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "field__harvestablePods", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "field__harvestedPods", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "field__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "field__numberOfSowers", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "field__numberOfSows", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "field__podIndex", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "field__podRate", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "field__realRateOfReturn", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "field__season", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "field__soil", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "field__sownBeans", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "field__temperature", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "field__unharvestablePods", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastSeason", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastUpgrade", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "methodologyVersion", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "schemaVersion", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "seasons", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "silo", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "silo__activeFarmers", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "silo__beanMints", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "silo__depositedBDV", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "silo__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "silo__plantableStalk", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "silo__roots", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "silo__seeds", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "silo__stalk", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "slug", - "description": null, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "subgraphVersion", - "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": "OBJECT", - "name": "Block", - "description": null, - "fields": [ - { - "name": "id", + "name": "farmersToUpdate_contains", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "number", + "name": "farmersToUpdate_contains_nocase", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp", + "name": "farmersToUpdate_not", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "number_gte", + "name": "farmersToUpdate_not_contains", "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "Block_filter", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "_change_block", - "description": "Filter for the block changed event.", + "name": "farmersToUpdate_not_contains_nocase", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "and", + "name": "field_", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Block_filter", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "Field_filter", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -13603,11 +13529,11 @@ "deprecationReason": null }, { - "name": "number", + "name": "lastSeason", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -13615,11 +13541,11 @@ "deprecationReason": null }, { - "name": "number_gt", + "name": "lastSeason_gt", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -13627,11 +13553,11 @@ "deprecationReason": null }, { - "name": "number_gte", + "name": "lastSeason_gte", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -13639,7 +13565,7 @@ "deprecationReason": null }, { - "name": "number_in", + "name": "lastSeason_in", "description": null, "type": { "kind": "LIST", @@ -13649,7 +13575,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null } } @@ -13659,11 +13585,11 @@ "deprecationReason": null }, { - "name": "number_lt", + "name": "lastSeason_lt", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -13671,11 +13597,11 @@ "deprecationReason": null }, { - "name": "number_lte", + "name": "lastSeason_lte", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -13683,11 +13609,11 @@ "deprecationReason": null }, { - "name": "number_not", + "name": "lastSeason_not", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -13695,7 +13621,7 @@ "deprecationReason": null }, { - "name": "number_not_in", + "name": "lastSeason_not_in", "description": null, "type": { "kind": "LIST", @@ -13705,7 +13631,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null } } @@ -13715,23 +13641,7 @@ "deprecationReason": null }, { - "name": "or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Block_filter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", + "name": "lastUpgrade", "description": null, "type": { "kind": "SCALAR", @@ -13743,7 +13653,7 @@ "deprecationReason": null }, { - "name": "timestamp_gt", + "name": "lastUpgrade_gt", "description": null, "type": { "kind": "SCALAR", @@ -13755,7 +13665,7 @@ "deprecationReason": null }, { - "name": "timestamp_gte", + "name": "lastUpgrade_gte", "description": null, "type": { "kind": "SCALAR", @@ -13767,7 +13677,7 @@ "deprecationReason": null }, { - "name": "timestamp_in", + "name": "lastUpgrade_in", "description": null, "type": { "kind": "LIST", @@ -13787,7 +13697,7 @@ "deprecationReason": null }, { - "name": "timestamp_lt", + "name": "lastUpgrade_lt", "description": null, "type": { "kind": "SCALAR", @@ -13799,7 +13709,7 @@ "deprecationReason": null }, { - "name": "timestamp_lte", + "name": "lastUpgrade_lte", "description": null, "type": { "kind": "SCALAR", @@ -13811,7 +13721,7 @@ "deprecationReason": null }, { - "name": "timestamp_not", + "name": "lastUpgrade_not", "description": null, "type": { "kind": "SCALAR", @@ -13823,7 +13733,7 @@ "deprecationReason": null }, { - "name": "timestamp_not_in", + "name": "lastUpgrade_not_in", "description": null, "type": { "kind": "LIST", @@ -13841,24 +13751,13 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "hash", + "name": "methodologyVersion", "description": null, "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "String", "ofType": null }, "defaultValue": null, @@ -13866,11 +13765,11 @@ "deprecationReason": null }, { - "name": "number", + "name": "methodologyVersion_contains", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -13878,260 +13777,23 @@ "deprecationReason": null }, { - "name": "number_gte", + "name": "methodologyVersion_contains_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "Block_orderBy", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "number", - "description": null, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "timestamp", + "name": "methodologyVersion_ends_with", "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Boolean", - "description": "The `Boolean` scalar type represents `true` or `false`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Bytes", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Chop", - "description": null, - "fields": [ - { - "name": "amount", - "description": " Amount being chopped", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": " Block number of this event ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": " Timestamp of this event ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "farmer", - "description": " Address chopping ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hash", - "description": " Transaction hash of the transaction that emitted this event ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "chop-{ Transaction hash }-{ Log index }", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "logIndex", - "description": " Event log index. For transactions that don't emit event, create arbitrary index starting from 0 ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol", - "description": " The protocol this transaction belongs to ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Beanstalk", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "underlying", - "description": " Underlying token ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unripe", - "description": " Unripe token being chopped ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "SiloEvent", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "Chop_filter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_change_block", - "description": "Filter for the block changed event.", "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -14139,11 +13801,11 @@ "deprecationReason": null }, { - "name": "amount", + "name": "methodologyVersion_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -14151,11 +13813,11 @@ "deprecationReason": null }, { - "name": "amount_gt", + "name": "methodologyVersion_gt", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -14163,11 +13825,11 @@ "deprecationReason": null }, { - "name": "amount_gte", + "name": "methodologyVersion_gte", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -14175,7 +13837,7 @@ "deprecationReason": null }, { - "name": "amount_in", + "name": "methodologyVersion_in", "description": null, "type": { "kind": "LIST", @@ -14185,7 +13847,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } } @@ -14195,11 +13857,11 @@ "deprecationReason": null }, { - "name": "amount_lt", + "name": "methodologyVersion_lt", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -14207,11 +13869,11 @@ "deprecationReason": null }, { - "name": "amount_lte", + "name": "methodologyVersion_lte", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -14219,11 +13881,11 @@ "deprecationReason": null }, { - "name": "amount_not", + "name": "methodologyVersion_not", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -14231,47 +13893,23 @@ "deprecationReason": null }, { - "name": "amount_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "and", + "name": "methodologyVersion_not_contains", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Chop_filter", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "blockNumber", + "name": "methodologyVersion_not_contains_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -14279,11 +13917,11 @@ "deprecationReason": null }, { - "name": "blockNumber_gt", + "name": "methodologyVersion_not_ends_with", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -14291,11 +13929,11 @@ "deprecationReason": null }, { - "name": "blockNumber_gte", + "name": "methodologyVersion_not_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -14303,7 +13941,7 @@ "deprecationReason": null }, { - "name": "blockNumber_in", + "name": "methodologyVersion_not_in", "description": null, "type": { "kind": "LIST", @@ -14313,7 +13951,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } } @@ -14323,11 +13961,11 @@ "deprecationReason": null }, { - "name": "blockNumber_lt", + "name": "methodologyVersion_not_starts_with", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -14335,11 +13973,11 @@ "deprecationReason": null }, { - "name": "blockNumber_lte", + "name": "methodologyVersion_not_starts_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -14347,11 +13985,11 @@ "deprecationReason": null }, { - "name": "blockNumber_not", + "name": "methodologyVersion_starts_with", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -14359,31 +13997,23 @@ "deprecationReason": null }, { - "name": "blockNumber_not_in", + "name": "methodologyVersion_starts_with_nocase", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -14391,11 +14021,11 @@ "deprecationReason": null }, { - "name": "createdAt_gt", + "name": "name_contains", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -14403,11 +14033,11 @@ "deprecationReason": null }, { - "name": "createdAt_gte", + "name": "name_contains_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -14415,31 +14045,23 @@ "deprecationReason": null }, { - "name": "createdAt_in", + "name": "name_ends_with", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt_lt", + "name": "name_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -14447,11 +14069,11 @@ "deprecationReason": null }, { - "name": "createdAt_lte", + "name": "name_gt", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -14459,11 +14081,11 @@ "deprecationReason": null }, { - "name": "createdAt_not", + "name": "name_gte", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -14471,7 +14093,7 @@ "deprecationReason": null }, { - "name": "createdAt_not_in", + "name": "name_in", "description": null, "type": { "kind": "LIST", @@ -14481,7 +14103,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } } @@ -14491,7 +14113,7 @@ "deprecationReason": null }, { - "name": "farmer", + "name": "name_lt", "description": null, "type": { "kind": "SCALAR", @@ -14503,7 +14125,7 @@ "deprecationReason": null }, { - "name": "farmer_contains", + "name": "name_lte", "description": null, "type": { "kind": "SCALAR", @@ -14515,7 +14137,7 @@ "deprecationReason": null }, { - "name": "farmer_contains_nocase", + "name": "name_not", "description": null, "type": { "kind": "SCALAR", @@ -14527,7 +14149,7 @@ "deprecationReason": null }, { - "name": "farmer_ends_with", + "name": "name_not_contains", "description": null, "type": { "kind": "SCALAR", @@ -14539,7 +14161,7 @@ "deprecationReason": null }, { - "name": "farmer_ends_with_nocase", + "name": "name_not_contains_nocase", "description": null, "type": { "kind": "SCALAR", @@ -14551,7 +14173,7 @@ "deprecationReason": null }, { - "name": "farmer_gt", + "name": "name_not_ends_with", "description": null, "type": { "kind": "SCALAR", @@ -14563,7 +14185,7 @@ "deprecationReason": null }, { - "name": "farmer_gte", + "name": "name_not_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", @@ -14575,7 +14197,7 @@ "deprecationReason": null }, { - "name": "farmer_in", + "name": "name_not_in", "description": null, "type": { "kind": "LIST", @@ -14595,7 +14217,7 @@ "deprecationReason": null }, { - "name": "farmer_lt", + "name": "name_not_starts_with", "description": null, "type": { "kind": "SCALAR", @@ -14607,7 +14229,7 @@ "deprecationReason": null }, { - "name": "farmer_lte", + "name": "name_not_starts_with_nocase", "description": null, "type": { "kind": "SCALAR", @@ -14619,7 +14241,7 @@ "deprecationReason": null }, { - "name": "farmer_not", + "name": "name_starts_with", "description": null, "type": { "kind": "SCALAR", @@ -14631,7 +14253,7 @@ "deprecationReason": null }, { - "name": "farmer_not_contains", + "name": "name_starts_with_nocase", "description": null, "type": { "kind": "SCALAR", @@ -14643,19 +14265,23 @@ "deprecationReason": null }, { - "name": "farmer_not_contains_nocase", + "name": "or", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Beanstalk_filter", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "farmer_not_ends_with", + "name": "schemaVersion", "description": null, "type": { "kind": "SCALAR", @@ -14667,7 +14293,7 @@ "deprecationReason": null }, { - "name": "farmer_not_ends_with_nocase", + "name": "schemaVersion_contains", "description": null, "type": { "kind": "SCALAR", @@ -14679,27 +14305,19 @@ "deprecationReason": null }, { - "name": "farmer_not_in", + "name": "schemaVersion_contains_nocase", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "farmer_not_starts_with", + "name": "schemaVersion_ends_with", "description": null, "type": { "kind": "SCALAR", @@ -14711,7 +14329,7 @@ "deprecationReason": null }, { - "name": "farmer_not_starts_with_nocase", + "name": "schemaVersion_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", @@ -14723,7 +14341,7 @@ "deprecationReason": null }, { - "name": "farmer_starts_with", + "name": "schemaVersion_gt", "description": null, "type": { "kind": "SCALAR", @@ -14735,7 +14353,7 @@ "deprecationReason": null }, { - "name": "farmer_starts_with_nocase", + "name": "schemaVersion_gte", "description": null, "type": { "kind": "SCALAR", @@ -14747,7 +14365,27 @@ "deprecationReason": null }, { - "name": "hash", + "name": "schemaVersion_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "schemaVersion_lt", "description": null, "type": { "kind": "SCALAR", @@ -14759,7 +14397,7 @@ "deprecationReason": null }, { - "name": "hash_contains", + "name": "schemaVersion_lte", "description": null, "type": { "kind": "SCALAR", @@ -14771,7 +14409,7 @@ "deprecationReason": null }, { - "name": "hash_contains_nocase", + "name": "schemaVersion_not", "description": null, "type": { "kind": "SCALAR", @@ -14783,7 +14421,7 @@ "deprecationReason": null }, { - "name": "hash_ends_with", + "name": "schemaVersion_not_contains", "description": null, "type": { "kind": "SCALAR", @@ -14795,7 +14433,7 @@ "deprecationReason": null }, { - "name": "hash_ends_with_nocase", + "name": "schemaVersion_not_contains_nocase", "description": null, "type": { "kind": "SCALAR", @@ -14807,7 +14445,7 @@ "deprecationReason": null }, { - "name": "hash_gt", + "name": "schemaVersion_not_ends_with", "description": null, "type": { "kind": "SCALAR", @@ -14819,7 +14457,7 @@ "deprecationReason": null }, { - "name": "hash_gte", + "name": "schemaVersion_not_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", @@ -14831,7 +14469,7 @@ "deprecationReason": null }, { - "name": "hash_in", + "name": "schemaVersion_not_in", "description": null, "type": { "kind": "LIST", @@ -14851,7 +14489,7 @@ "deprecationReason": null }, { - "name": "hash_lt", + "name": "schemaVersion_not_starts_with", "description": null, "type": { "kind": "SCALAR", @@ -14863,7 +14501,7 @@ "deprecationReason": null }, { - "name": "hash_lte", + "name": "schemaVersion_not_starts_with_nocase", "description": null, "type": { "kind": "SCALAR", @@ -14875,7 +14513,7 @@ "deprecationReason": null }, { - "name": "hash_not", + "name": "schemaVersion_starts_with", "description": null, "type": { "kind": "SCALAR", @@ -14887,7 +14525,7 @@ "deprecationReason": null }, { - "name": "hash_not_contains", + "name": "schemaVersion_starts_with_nocase", "description": null, "type": { "kind": "SCALAR", @@ -14899,11 +14537,11 @@ "deprecationReason": null }, { - "name": "hash_not_contains_nocase", + "name": "seasons_", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "Season_filter", "ofType": null }, "defaultValue": null, @@ -14911,11 +14549,11 @@ "deprecationReason": null }, { - "name": "hash_not_ends_with", + "name": "silo_", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "Silo_filter", "ofType": null }, "defaultValue": null, @@ -14923,7 +14561,7 @@ "deprecationReason": null }, { - "name": "hash_not_ends_with_nocase", + "name": "slug", "description": null, "type": { "kind": "SCALAR", @@ -14935,27 +14573,7 @@ "deprecationReason": null }, { - "name": "hash_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hash_not_starts_with", + "name": "slug_contains", "description": null, "type": { "kind": "SCALAR", @@ -14967,7 +14585,7 @@ "deprecationReason": null }, { - "name": "hash_not_starts_with_nocase", + "name": "slug_contains_nocase", "description": null, "type": { "kind": "SCALAR", @@ -14979,7 +14597,7 @@ "deprecationReason": null }, { - "name": "hash_starts_with", + "name": "slug_ends_with", "description": null, "type": { "kind": "SCALAR", @@ -14991,7 +14609,7 @@ "deprecationReason": null }, { - "name": "hash_starts_with_nocase", + "name": "slug_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", @@ -15003,23 +14621,11 @@ "deprecationReason": null }, { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_gt", + "name": "slug_gt", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -15027,11 +14633,11 @@ "deprecationReason": null }, { - "name": "id_gte", + "name": "slug_gte", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -15039,7 +14645,7 @@ "deprecationReason": null }, { - "name": "id_in", + "name": "slug_in", "description": null, "type": { "kind": "LIST", @@ -15049,7 +14655,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } } @@ -15059,11 +14665,11 @@ "deprecationReason": null }, { - "name": "id_lt", + "name": "slug_lt", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -15071,11 +14677,11 @@ "deprecationReason": null }, { - "name": "id_lte", + "name": "slug_lte", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -15083,11 +14689,11 @@ "deprecationReason": null }, { - "name": "id_not", + "name": "slug_not", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -15095,31 +14701,23 @@ "deprecationReason": null }, { - "name": "id_not_in", + "name": "slug_not_contains", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "logIndex", + "name": "slug_not_contains_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -15127,11 +14725,11 @@ "deprecationReason": null }, { - "name": "logIndex_gt", + "name": "slug_not_ends_with", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -15139,11 +14737,11 @@ "deprecationReason": null }, { - "name": "logIndex_gte", + "name": "slug_not_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -15151,7 +14749,7 @@ "deprecationReason": null }, { - "name": "logIndex_in", + "name": "slug_not_in", "description": null, "type": { "kind": "LIST", @@ -15161,7 +14759,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } } @@ -15171,11 +14769,11 @@ "deprecationReason": null }, { - "name": "logIndex_lt", + "name": "slug_not_starts_with", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -15183,11 +14781,11 @@ "deprecationReason": null }, { - "name": "logIndex_lte", + "name": "slug_not_starts_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -15195,11 +14793,11 @@ "deprecationReason": null }, { - "name": "logIndex_not", + "name": "slug_starts_with", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -15207,43 +14805,7 @@ "deprecationReason": null }, { - "name": "logIndex_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Chop_filter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol", + "name": "slug_starts_with_nocase", "description": null, "type": { "kind": "SCALAR", @@ -15255,11 +14817,11 @@ "deprecationReason": null }, { - "name": "protocol_", + "name": "subgraphVersion", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "Beanstalk_filter", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -15267,7 +14829,7 @@ "deprecationReason": null }, { - "name": "protocol_contains", + "name": "subgraphVersion_contains", "description": null, "type": { "kind": "SCALAR", @@ -15279,7 +14841,7 @@ "deprecationReason": null }, { - "name": "protocol_contains_nocase", + "name": "subgraphVersion_contains_nocase", "description": null, "type": { "kind": "SCALAR", @@ -15291,7 +14853,7 @@ "deprecationReason": null }, { - "name": "protocol_ends_with", + "name": "subgraphVersion_ends_with", "description": null, "type": { "kind": "SCALAR", @@ -15303,7 +14865,7 @@ "deprecationReason": null }, { - "name": "protocol_ends_with_nocase", + "name": "subgraphVersion_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", @@ -15315,7 +14877,7 @@ "deprecationReason": null }, { - "name": "protocol_gt", + "name": "subgraphVersion_gt", "description": null, "type": { "kind": "SCALAR", @@ -15327,7 +14889,7 @@ "deprecationReason": null }, { - "name": "protocol_gte", + "name": "subgraphVersion_gte", "description": null, "type": { "kind": "SCALAR", @@ -15339,7 +14901,7 @@ "deprecationReason": null }, { - "name": "protocol_in", + "name": "subgraphVersion_in", "description": null, "type": { "kind": "LIST", @@ -15359,7 +14921,7 @@ "deprecationReason": null }, { - "name": "protocol_lt", + "name": "subgraphVersion_lt", "description": null, "type": { "kind": "SCALAR", @@ -15371,7 +14933,7 @@ "deprecationReason": null }, { - "name": "protocol_lte", + "name": "subgraphVersion_lte", "description": null, "type": { "kind": "SCALAR", @@ -15383,7 +14945,7 @@ "deprecationReason": null }, { - "name": "protocol_not", + "name": "subgraphVersion_not", "description": null, "type": { "kind": "SCALAR", @@ -15395,7 +14957,7 @@ "deprecationReason": null }, { - "name": "protocol_not_contains", + "name": "subgraphVersion_not_contains", "description": null, "type": { "kind": "SCALAR", @@ -15407,7 +14969,7 @@ "deprecationReason": null }, { - "name": "protocol_not_contains_nocase", + "name": "subgraphVersion_not_contains_nocase", "description": null, "type": { "kind": "SCALAR", @@ -15419,7 +14981,7 @@ "deprecationReason": null }, { - "name": "protocol_not_ends_with", + "name": "subgraphVersion_not_ends_with", "description": null, "type": { "kind": "SCALAR", @@ -15431,7 +14993,7 @@ "deprecationReason": null }, { - "name": "protocol_not_ends_with_nocase", + "name": "subgraphVersion_not_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", @@ -15443,7 +15005,7 @@ "deprecationReason": null }, { - "name": "protocol_not_in", + "name": "subgraphVersion_not_in", "description": null, "type": { "kind": "LIST", @@ -15463,7 +15025,7 @@ "deprecationReason": null }, { - "name": "protocol_not_starts_with", + "name": "subgraphVersion_not_starts_with", "description": null, "type": { "kind": "SCALAR", @@ -15475,7 +15037,7 @@ "deprecationReason": null }, { - "name": "protocol_not_starts_with_nocase", + "name": "subgraphVersion_not_starts_with_nocase", "description": null, "type": { "kind": "SCALAR", @@ -15487,7 +15049,7 @@ "deprecationReason": null }, { - "name": "protocol_starts_with", + "name": "subgraphVersion_starts_with", "description": null, "type": { "kind": "SCALAR", @@ -15499,7 +15061,7 @@ "deprecationReason": null }, { - "name": "protocol_starts_with_nocase", + "name": "subgraphVersion_starts_with_nocase", "description": null, "type": { "kind": "SCALAR", @@ -15509,646 +15071,250 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "Beanstalk_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "underlying", + "name": "activeFarmers", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "underlying_contains", + "name": "farmersToUpdate", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "underlying_contains_nocase", + "name": "field", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "underlying_ends_with", + "name": "field__harvestablePods", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "underlying_ends_with_nocase", + "name": "field__harvestedPods", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "underlying_gt", + "name": "field__id", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "underlying_gte", + "name": "field__numberOfSowers", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "underlying_in", + "name": "field__numberOfSows", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "underlying_lt", + "name": "field__podIndex", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "underlying_lte", + "name": "field__podRate", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "underlying_not", + "name": "field__realRateOfReturn", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "underlying_not_contains", + "name": "field__season", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "underlying_not_contains_nocase", + "name": "field__soil", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "underlying_not_ends_with", + "name": "field__sownBeans", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "underlying_not_ends_with_nocase", + "name": "field__temperature", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "underlying_not_in", + "name": "field__unharvestablePods", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "underlying_not_starts_with", + "name": "id", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "underlying_not_starts_with_nocase", + "name": "lastSeason", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "underlying_starts_with", + "name": "lastUpgrade", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "underlying_starts_with_nocase", + "name": "methodologyVersion", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "unripe", + "name": "name", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "unripe_contains", + "name": "schemaVersion", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "unripe_contains_nocase", + "name": "seasons", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "unripe_ends_with", + "name": "silo", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "unripe_ends_with_nocase", + "name": "silo__activeFarmers", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "unripe_gt", + "name": "silo__beanMints", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "unripe_gte", + "name": "silo__depositedBDV", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "unripe_in", + "name": "silo__id", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "unripe_lt", + "name": "silo__plantableStalk", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "unripe_lte", + "name": "silo__roots", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "unripe_not", + "name": "silo__seeds", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "unripe_not_contains", + "name": "silo__stalk", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "unripe_not_contains_nocase", + "name": "slug", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "unripe_not_ends_with", + "name": "subgraphVersion", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unripe_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unripe_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unripe_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unripe_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unripe_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unripe_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "BigDecimal", + "description": null, + "fields": null, + "inputFields": null, "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "Chop_orderBy", + "kind": "SCALAR", + "name": "BigInt", "description": null, "fields": null, "inputFields": null, "interfaces": null, - "enumValues": [ - { - "name": "amount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "farmer", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hash", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "logIndex", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol__lastSeason", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol__lastUpgrade", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol__methodologyVersion", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol__name", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol__schemaVersion", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol__slug", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol__subgraphVersion", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "underlying", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unripe", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "CollectionData", + "name": "Block", "description": null, "fields": [ { @@ -16168,20 +15334,32 @@ "deprecationReason": null }, { - "name": "minted", + "name": "number", "description": null, "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "BigInt", + "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, @@ -16195,7 +15373,34 @@ }, { "kind": "INPUT_OBJECT", - "name": "CollectionData_filter", + "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, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "Block_filter", "description": null, "fields": null, "inputFields": [ @@ -16219,7 +15424,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CollectionData_filter", + "name": "Block_filter", "ofType": null } }, @@ -16340,27 +15545,43 @@ "deprecationReason": null }, { - "name": "minted", + "name": "number", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "BigInt", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "minted_contains", + "name": "number_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "number_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "number_in", "description": null, "type": { "kind": "LIST", @@ -16370,7 +15591,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null } } @@ -16380,7 +15601,43 @@ "deprecationReason": null }, { - "name": "minted_contains_nocase", + "name": "number_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "number_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "number_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "number_not_in", "description": null, "type": { "kind": "LIST", @@ -16390,7 +15647,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null } } @@ -16400,19 +15657,15 @@ "deprecationReason": null }, { - "name": "minted_not", + "name": "or", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "Block_filter", + "ofType": null } }, "defaultValue": null, @@ -16420,7 +15673,43 @@ "deprecationReason": null }, { - "name": "minted_not_contains", + "name": "timestamp", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp_in", "description": null, "type": { "kind": "LIST", @@ -16430,7 +15719,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null } } @@ -16440,7 +15729,43 @@ "deprecationReason": null }, { - "name": "minted_not_contains_nocase", + "name": "timestamp_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp_not_in", "description": null, "type": { "kind": "LIST", @@ -16450,7 +15775,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null } } @@ -16458,18 +15783,49 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": 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, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "or", + "name": "number", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CollectionData_filter", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "number_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -16482,7 +15838,7 @@ }, { "kind": "ENUM", - "name": "CollectionData_orderBy", + "name": "Block_orderBy", "description": null, "fields": null, "inputFields": null, @@ -16495,7 +15851,13 @@ "deprecationReason": null }, { - "name": "minted", + "name": "number", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp", "description": null, "isDeprecated": false, "deprecationReason": null @@ -16503,21 +15865,41 @@ ], "possibleTypes": null }, + { + "kind": "SCALAR", + "name": "Boolean", + "description": "The `Boolean` scalar type represents `true` or `false`.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Bytes", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, { "kind": "OBJECT", - "name": "Cross", + "name": "Chop", "description": null, "fields": [ { - "name": "above", - "description": null, + "name": "amount", + "description": " Amount being chopped", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "BigInt", "ofType": null } }, @@ -16525,15 +15907,15 @@ "deprecationReason": null }, { - "name": "dailySnapshot", - "description": null, + "name": "blockNumber", + "description": " Block number of this event ", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "BeanDailySnapshot", + "kind": "SCALAR", + "name": "BigInt", "ofType": null } }, @@ -16541,15 +15923,15 @@ "deprecationReason": null }, { - "name": "hourlySnapshot", - "description": null, + "name": "createdAt", + "description": " Timestamp of this event ", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "BeanHourlySnapshot", + "kind": "SCALAR", + "name": "BigInt", "ofType": null } }, @@ -16557,15 +15939,15 @@ "deprecationReason": null }, { - "name": "id", - "description": null, + "name": "farmer", + "description": " Address chopping ", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -16573,15 +15955,15 @@ "deprecationReason": null }, { - "name": "pool", - "description": null, + "name": "hash", + "description": " Transaction hash of the transaction that emitted this event ", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Pool", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -16589,15 +15971,15 @@ "deprecationReason": null }, { - "name": "poolDailySnapshot", - "description": null, + "name": "id", + "description": "chop-{ Transaction hash }-{ Log index }", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PoolDailySnapshot", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -16605,15 +15987,15 @@ "deprecationReason": null }, { - "name": "poolHourlySnapshot", - "description": null, + "name": "logIndex", + "description": " Event log index. For transactions that don't emit event, create arbitrary index starting from 0 ", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PoolHourlySnapshot", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, @@ -16621,15 +16003,15 @@ "deprecationReason": null }, { - "name": "price", - "description": null, + "name": "protocol", + "description": " The protocol this transaction belongs to ", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", + "kind": "OBJECT", + "name": "Beanstalk", "ofType": null } }, @@ -16637,15 +16019,15 @@ "deprecationReason": null }, { - "name": "timeSinceLastCross", - "description": null, + "name": "underlying", + "description": " Underlying token ", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, @@ -16653,15 +16035,15 @@ "deprecationReason": null }, { - "name": "timestamp", - "description": null, + "name": "unripe", + "description": " Unripe token being chopped ", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, @@ -16670,13 +16052,19 @@ } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "SiloEvent", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "Cross_filter", + "name": "Chop_filter", "description": null, "fields": null, "inputFields": [ @@ -16693,11 +16081,11 @@ "deprecationReason": null }, { - "name": "above", + "name": "amount", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -16705,31 +16093,23 @@ "deprecationReason": null }, { - "name": "above_in", + "name": "amount_gt", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } + "kind": "SCALAR", + "name": "BigInt", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "above_not", + "name": "amount_gte", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -16737,7 +16117,7 @@ "deprecationReason": null }, { - "name": "above_not_in", + "name": "amount_in", "description": null, "type": { "kind": "LIST", @@ -16747,7 +16127,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "BigInt", "ofType": null } } @@ -16757,27 +16137,11 @@ "deprecationReason": null }, { - "name": "and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Cross_filter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dailySnapshot", + "name": "amount_lt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -16785,11 +16149,11 @@ "deprecationReason": null }, { - "name": "dailySnapshot_", + "name": "amount_lte", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "BeanDailySnapshot_filter", + "kind": "SCALAR", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -16797,11 +16161,11 @@ "deprecationReason": null }, { - "name": "dailySnapshot_contains", + "name": "amount_not", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -16809,35 +16173,47 @@ "deprecationReason": null }, { - "name": "dailySnapshot_contains_nocase", + "name": "amount_not_in", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dailySnapshot_ends_with", + "name": "and", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Chop_filter", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dailySnapshot_ends_with_nocase", + "name": "blockNumber", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -16845,11 +16221,11 @@ "deprecationReason": null }, { - "name": "dailySnapshot_gt", + "name": "blockNumber_gt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -16857,11 +16233,11 @@ "deprecationReason": null }, { - "name": "dailySnapshot_gte", + "name": "blockNumber_gte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -16869,7 +16245,7 @@ "deprecationReason": null }, { - "name": "dailySnapshot_in", + "name": "blockNumber_in", "description": null, "type": { "kind": "LIST", @@ -16879,7 +16255,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } } @@ -16889,11 +16265,11 @@ "deprecationReason": null }, { - "name": "dailySnapshot_lt", + "name": "blockNumber_lt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -16901,11 +16277,11 @@ "deprecationReason": null }, { - "name": "dailySnapshot_lte", + "name": "blockNumber_lte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -16913,11 +16289,11 @@ "deprecationReason": null }, { - "name": "dailySnapshot_not", + "name": "blockNumber_not", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -16925,23 +16301,31 @@ "deprecationReason": null }, { - "name": "dailySnapshot_not_contains", + "name": "blockNumber_not_in", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dailySnapshot_not_contains_nocase", + "name": "createdAt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -16949,11 +16333,11 @@ "deprecationReason": null }, { - "name": "dailySnapshot_not_ends_with", + "name": "createdAt_gt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -16961,11 +16345,11 @@ "deprecationReason": null }, { - "name": "dailySnapshot_not_ends_with_nocase", + "name": "createdAt_gte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -16973,7 +16357,7 @@ "deprecationReason": null }, { - "name": "dailySnapshot_not_in", + "name": "createdAt_in", "description": null, "type": { "kind": "LIST", @@ -16983,7 +16367,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } } @@ -16993,11 +16377,11 @@ "deprecationReason": null }, { - "name": "dailySnapshot_not_starts_with", + "name": "createdAt_lt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -17005,11 +16389,11 @@ "deprecationReason": null }, { - "name": "dailySnapshot_not_starts_with_nocase", + "name": "createdAt_lte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -17017,11 +16401,11 @@ "deprecationReason": null }, { - "name": "dailySnapshot_starts_with", + "name": "createdAt_not", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -17029,19 +16413,27 @@ "deprecationReason": null }, { - "name": "dailySnapshot_starts_with_nocase", + "name": "createdAt_not_in", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hourlySnapshot", + "name": "farmer", "description": null, "type": { "kind": "SCALAR", @@ -17053,19 +16445,7 @@ "deprecationReason": null }, { - "name": "hourlySnapshot_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "BeanHourlySnapshot_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hourlySnapshot_contains", + "name": "farmer_contains", "description": null, "type": { "kind": "SCALAR", @@ -17077,7 +16457,7 @@ "deprecationReason": null }, { - "name": "hourlySnapshot_contains_nocase", + "name": "farmer_contains_nocase", "description": null, "type": { "kind": "SCALAR", @@ -17089,7 +16469,7 @@ "deprecationReason": null }, { - "name": "hourlySnapshot_ends_with", + "name": "farmer_ends_with", "description": null, "type": { "kind": "SCALAR", @@ -17101,7 +16481,7 @@ "deprecationReason": null }, { - "name": "hourlySnapshot_ends_with_nocase", + "name": "farmer_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", @@ -17113,7 +16493,7 @@ "deprecationReason": null }, { - "name": "hourlySnapshot_gt", + "name": "farmer_gt", "description": null, "type": { "kind": "SCALAR", @@ -17125,7 +16505,7 @@ "deprecationReason": null }, { - "name": "hourlySnapshot_gte", + "name": "farmer_gte", "description": null, "type": { "kind": "SCALAR", @@ -17137,7 +16517,7 @@ "deprecationReason": null }, { - "name": "hourlySnapshot_in", + "name": "farmer_in", "description": null, "type": { "kind": "LIST", @@ -17157,7 +16537,7 @@ "deprecationReason": null }, { - "name": "hourlySnapshot_lt", + "name": "farmer_lt", "description": null, "type": { "kind": "SCALAR", @@ -17169,7 +16549,7 @@ "deprecationReason": null }, { - "name": "hourlySnapshot_lte", + "name": "farmer_lte", "description": null, "type": { "kind": "SCALAR", @@ -17181,7 +16561,7 @@ "deprecationReason": null }, { - "name": "hourlySnapshot_not", + "name": "farmer_not", "description": null, "type": { "kind": "SCALAR", @@ -17193,7 +16573,7 @@ "deprecationReason": null }, { - "name": "hourlySnapshot_not_contains", + "name": "farmer_not_contains", "description": null, "type": { "kind": "SCALAR", @@ -17205,7 +16585,7 @@ "deprecationReason": null }, { - "name": "hourlySnapshot_not_contains_nocase", + "name": "farmer_not_contains_nocase", "description": null, "type": { "kind": "SCALAR", @@ -17217,7 +16597,7 @@ "deprecationReason": null }, { - "name": "hourlySnapshot_not_ends_with", + "name": "farmer_not_ends_with", "description": null, "type": { "kind": "SCALAR", @@ -17229,7 +16609,7 @@ "deprecationReason": null }, { - "name": "hourlySnapshot_not_ends_with_nocase", + "name": "farmer_not_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", @@ -17241,7 +16621,7 @@ "deprecationReason": null }, { - "name": "hourlySnapshot_not_in", + "name": "farmer_not_in", "description": null, "type": { "kind": "LIST", @@ -17261,7 +16641,7 @@ "deprecationReason": null }, { - "name": "hourlySnapshot_not_starts_with", + "name": "farmer_not_starts_with", "description": null, "type": { "kind": "SCALAR", @@ -17273,7 +16653,7 @@ "deprecationReason": null }, { - "name": "hourlySnapshot_not_starts_with_nocase", + "name": "farmer_not_starts_with_nocase", "description": null, "type": { "kind": "SCALAR", @@ -17285,7 +16665,7 @@ "deprecationReason": null }, { - "name": "hourlySnapshot_starts_with", + "name": "farmer_starts_with", "description": null, "type": { "kind": "SCALAR", @@ -17297,7 +16677,7 @@ "deprecationReason": null }, { - "name": "hourlySnapshot_starts_with_nocase", + "name": "farmer_starts_with_nocase", "description": null, "type": { "kind": "SCALAR", @@ -17309,11 +16689,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "hash", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -17321,11 +16701,11 @@ "deprecationReason": null }, { - "name": "id_gt", + "name": "hash_contains", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -17333,11 +16713,11 @@ "deprecationReason": null }, { - "name": "id_gte", + "name": "hash_contains_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -17345,31 +16725,23 @@ "deprecationReason": null }, { - "name": "id_in", + "name": "hash_ends_with", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_lt", + "name": "hash_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -17377,11 +16749,11 @@ "deprecationReason": null }, { - "name": "id_lte", + "name": "hash_gt", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -17389,11 +16761,11 @@ "deprecationReason": null }, { - "name": "id_not", + "name": "hash_gte", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -17401,7 +16773,7 @@ "deprecationReason": null }, { - "name": "id_not_in", + "name": "hash_in", "description": null, "type": { "kind": "LIST", @@ -17411,7 +16783,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } } @@ -17421,35 +16793,7 @@ "deprecationReason": null }, { - "name": "or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Cross_filter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pool", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "poolDailySnapshot", + "name": "hash_lt", "description": null, "type": { "kind": "SCALAR", @@ -17461,19 +16805,7 @@ "deprecationReason": null }, { - "name": "poolDailySnapshot_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PoolDailySnapshot_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "poolDailySnapshot_contains", + "name": "hash_lte", "description": null, "type": { "kind": "SCALAR", @@ -17485,7 +16817,7 @@ "deprecationReason": null }, { - "name": "poolDailySnapshot_contains_nocase", + "name": "hash_not", "description": null, "type": { "kind": "SCALAR", @@ -17497,7 +16829,7 @@ "deprecationReason": null }, { - "name": "poolDailySnapshot_ends_with", + "name": "hash_not_contains", "description": null, "type": { "kind": "SCALAR", @@ -17509,7 +16841,7 @@ "deprecationReason": null }, { - "name": "poolDailySnapshot_ends_with_nocase", + "name": "hash_not_contains_nocase", "description": null, "type": { "kind": "SCALAR", @@ -17521,7 +16853,7 @@ "deprecationReason": null }, { - "name": "poolDailySnapshot_gt", + "name": "hash_not_ends_with", "description": null, "type": { "kind": "SCALAR", @@ -17533,7 +16865,7 @@ "deprecationReason": null }, { - "name": "poolDailySnapshot_gte", + "name": "hash_not_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", @@ -17545,7 +16877,7 @@ "deprecationReason": null }, { - "name": "poolDailySnapshot_in", + "name": "hash_not_in", "description": null, "type": { "kind": "LIST", @@ -17565,7 +16897,7 @@ "deprecationReason": null }, { - "name": "poolDailySnapshot_lt", + "name": "hash_not_starts_with", "description": null, "type": { "kind": "SCALAR", @@ -17577,7 +16909,7 @@ "deprecationReason": null }, { - "name": "poolDailySnapshot_lte", + "name": "hash_not_starts_with_nocase", "description": null, "type": { "kind": "SCALAR", @@ -17589,7 +16921,7 @@ "deprecationReason": null }, { - "name": "poolDailySnapshot_not", + "name": "hash_starts_with", "description": null, "type": { "kind": "SCALAR", @@ -17601,7 +16933,7 @@ "deprecationReason": null }, { - "name": "poolDailySnapshot_not_contains", + "name": "hash_starts_with_nocase", "description": null, "type": { "kind": "SCALAR", @@ -17613,11 +16945,11 @@ "deprecationReason": null }, { - "name": "poolDailySnapshot_not_contains_nocase", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -17625,11 +16957,11 @@ "deprecationReason": null }, { - "name": "poolDailySnapshot_not_ends_with", + "name": "id_gt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -17637,11 +16969,11 @@ "deprecationReason": null }, { - "name": "poolDailySnapshot_not_ends_with_nocase", + "name": "id_gte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -17649,7 +16981,7 @@ "deprecationReason": null }, { - "name": "poolDailySnapshot_not_in", + "name": "id_in", "description": null, "type": { "kind": "LIST", @@ -17659,7 +16991,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } } @@ -17669,11 +17001,11 @@ "deprecationReason": null }, { - "name": "poolDailySnapshot_not_starts_with", + "name": "id_lt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -17681,11 +17013,11 @@ "deprecationReason": null }, { - "name": "poolDailySnapshot_not_starts_with_nocase", + "name": "id_lte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -17693,11 +17025,11 @@ "deprecationReason": null }, { - "name": "poolDailySnapshot_starts_with", + "name": "id_not", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -17705,23 +17037,31 @@ "deprecationReason": null }, { - "name": "poolDailySnapshot_starts_with_nocase", + "name": "id_not_in", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "poolHourlySnapshot", + "name": "logIndex", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -17729,11 +17069,11 @@ "deprecationReason": null }, { - "name": "poolHourlySnapshot_", + "name": "logIndex_gt", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PoolHourlySnapshot_filter", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -17741,11 +17081,11 @@ "deprecationReason": null }, { - "name": "poolHourlySnapshot_contains", + "name": "logIndex_gte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -17753,23 +17093,31 @@ "deprecationReason": null }, { - "name": "poolHourlySnapshot_contains_nocase", + "name": "logIndex_in", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "poolHourlySnapshot_ends_with", + "name": "logIndex_lt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -17777,11 +17125,11 @@ "deprecationReason": null }, { - "name": "poolHourlySnapshot_ends_with_nocase", + "name": "logIndex_lte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -17789,11 +17137,11 @@ "deprecationReason": null }, { - "name": "poolHourlySnapshot_gt", + "name": "logIndex_not", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -17801,31 +17149,35 @@ "deprecationReason": null }, { - "name": "poolHourlySnapshot_gte", + "name": "logIndex_not_in", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "poolHourlySnapshot_in", + "name": "or", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "Chop_filter", + "ofType": null } }, "defaultValue": null, @@ -17833,7 +17185,7 @@ "deprecationReason": null }, { - "name": "poolHourlySnapshot_lt", + "name": "protocol", "description": null, "type": { "kind": "SCALAR", @@ -17845,11 +17197,11 @@ "deprecationReason": null }, { - "name": "poolHourlySnapshot_lte", + "name": "protocol_", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "Beanstalk_filter", "ofType": null }, "defaultValue": null, @@ -17857,7 +17209,7 @@ "deprecationReason": null }, { - "name": "poolHourlySnapshot_not", + "name": "protocol_contains", "description": null, "type": { "kind": "SCALAR", @@ -17869,7 +17221,7 @@ "deprecationReason": null }, { - "name": "poolHourlySnapshot_not_contains", + "name": "protocol_contains_nocase", "description": null, "type": { "kind": "SCALAR", @@ -17881,7 +17233,7 @@ "deprecationReason": null }, { - "name": "poolHourlySnapshot_not_contains_nocase", + "name": "protocol_ends_with", "description": null, "type": { "kind": "SCALAR", @@ -17893,7 +17245,7 @@ "deprecationReason": null }, { - "name": "poolHourlySnapshot_not_ends_with", + "name": "protocol_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", @@ -17905,7 +17257,7 @@ "deprecationReason": null }, { - "name": "poolHourlySnapshot_not_ends_with_nocase", + "name": "protocol_gt", "description": null, "type": { "kind": "SCALAR", @@ -17917,11 +17269,23 @@ "deprecationReason": null }, { - "name": "poolHourlySnapshot_not_in", + "name": "protocol_gte", "description": null, "type": { - "kind": "LIST", - "name": null, + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, "ofType": { "kind": "NON_NULL", "name": null, @@ -17937,7 +17301,7 @@ "deprecationReason": null }, { - "name": "poolHourlySnapshot_not_starts_with", + "name": "protocol_lt", "description": null, "type": { "kind": "SCALAR", @@ -17949,7 +17313,7 @@ "deprecationReason": null }, { - "name": "poolHourlySnapshot_not_starts_with_nocase", + "name": "protocol_lte", "description": null, "type": { "kind": "SCALAR", @@ -17961,7 +17325,7 @@ "deprecationReason": null }, { - "name": "poolHourlySnapshot_starts_with", + "name": "protocol_not", "description": null, "type": { "kind": "SCALAR", @@ -17973,7 +17337,7 @@ "deprecationReason": null }, { - "name": "poolHourlySnapshot_starts_with_nocase", + "name": "protocol_not_contains", "description": null, "type": { "kind": "SCALAR", @@ -17985,11 +17349,11 @@ "deprecationReason": null }, { - "name": "pool_", + "name": "protocol_not_contains_nocase", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "Pool_filter", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -17997,7 +17361,7 @@ "deprecationReason": null }, { - "name": "pool_contains", + "name": "protocol_not_ends_with", "description": null, "type": { "kind": "SCALAR", @@ -18009,7 +17373,7 @@ "deprecationReason": null }, { - "name": "pool_contains_nocase", + "name": "protocol_not_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", @@ -18021,19 +17385,27 @@ "deprecationReason": null }, { - "name": "pool_ends_with", + "name": "protocol_not_in", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pool_ends_with_nocase", + "name": "protocol_not_starts_with", "description": null, "type": { "kind": "SCALAR", @@ -18045,7 +17417,7 @@ "deprecationReason": null }, { - "name": "pool_gt", + "name": "protocol_not_starts_with_nocase", "description": null, "type": { "kind": "SCALAR", @@ -18057,7 +17429,7 @@ "deprecationReason": null }, { - "name": "pool_gte", + "name": "protocol_starts_with", "description": null, "type": { "kind": "SCALAR", @@ -18069,27 +17441,19 @@ "deprecationReason": null }, { - "name": "pool_in", + "name": "protocol_starts_with_nocase", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pool_lt", + "name": "underlying", "description": null, "type": { "kind": "SCALAR", @@ -18101,7 +17465,7 @@ "deprecationReason": null }, { - "name": "pool_lte", + "name": "underlying_contains", "description": null, "type": { "kind": "SCALAR", @@ -18113,7 +17477,7 @@ "deprecationReason": null }, { - "name": "pool_not", + "name": "underlying_contains_nocase", "description": null, "type": { "kind": "SCALAR", @@ -18125,7 +17489,7 @@ "deprecationReason": null }, { - "name": "pool_not_contains", + "name": "underlying_ends_with", "description": null, "type": { "kind": "SCALAR", @@ -18137,7 +17501,7 @@ "deprecationReason": null }, { - "name": "pool_not_contains_nocase", + "name": "underlying_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", @@ -18149,7 +17513,7 @@ "deprecationReason": null }, { - "name": "pool_not_ends_with", + "name": "underlying_gt", "description": null, "type": { "kind": "SCALAR", @@ -18161,7 +17525,7 @@ "deprecationReason": null }, { - "name": "pool_not_ends_with_nocase", + "name": "underlying_gte", "description": null, "type": { "kind": "SCALAR", @@ -18173,7 +17537,7 @@ "deprecationReason": null }, { - "name": "pool_not_in", + "name": "underlying_in", "description": null, "type": { "kind": "LIST", @@ -18193,7 +17557,7 @@ "deprecationReason": null }, { - "name": "pool_not_starts_with", + "name": "underlying_lt", "description": null, "type": { "kind": "SCALAR", @@ -18205,7 +17569,7 @@ "deprecationReason": null }, { - "name": "pool_not_starts_with_nocase", + "name": "underlying_lte", "description": null, "type": { "kind": "SCALAR", @@ -18217,7 +17581,7 @@ "deprecationReason": null }, { - "name": "pool_starts_with", + "name": "underlying_not", "description": null, "type": { "kind": "SCALAR", @@ -18229,7 +17593,7 @@ "deprecationReason": null }, { - "name": "pool_starts_with_nocase", + "name": "underlying_not_contains", "description": null, "type": { "kind": "SCALAR", @@ -18241,11 +17605,11 @@ "deprecationReason": null }, { - "name": "price", + "name": "underlying_not_contains_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -18253,11 +17617,11 @@ "deprecationReason": null }, { - "name": "price_gt", + "name": "underlying_not_ends_with", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -18265,11 +17629,11 @@ "deprecationReason": null }, { - "name": "price_gte", + "name": "underlying_not_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -18277,7 +17641,7 @@ "deprecationReason": null }, { - "name": "price_in", + "name": "underlying_not_in", "description": null, "type": { "kind": "LIST", @@ -18287,7 +17651,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null } } @@ -18297,11 +17661,11 @@ "deprecationReason": null }, { - "name": "price_lt", + "name": "underlying_not_starts_with", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -18309,11 +17673,11 @@ "deprecationReason": null }, { - "name": "price_lte", + "name": "underlying_not_starts_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -18321,11 +17685,11 @@ "deprecationReason": null }, { - "name": "price_not", + "name": "underlying_starts_with", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -18333,31 +17697,23 @@ "deprecationReason": null }, { - "name": "price_not_in", + "name": "underlying_starts_with_nocase", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "timeSinceLastCross", + "name": "unripe", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -18365,11 +17721,11 @@ "deprecationReason": null }, { - "name": "timeSinceLastCross_gt", + "name": "unripe_contains", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -18377,11 +17733,11 @@ "deprecationReason": null }, { - "name": "timeSinceLastCross_gte", + "name": "unripe_contains_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -18389,31 +17745,23 @@ "deprecationReason": null }, { - "name": "timeSinceLastCross_in", + "name": "unripe_ends_with", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "timeSinceLastCross_lt", + "name": "unripe_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -18421,11 +17769,11 @@ "deprecationReason": null }, { - "name": "timeSinceLastCross_lte", + "name": "unripe_gt", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -18433,11 +17781,11 @@ "deprecationReason": null }, { - "name": "timeSinceLastCross_not", + "name": "unripe_gte", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -18445,7 +17793,7 @@ "deprecationReason": null }, { - "name": "timeSinceLastCross_not_in", + "name": "unripe_in", "description": null, "type": { "kind": "LIST", @@ -18455,7 +17803,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } } @@ -18465,11 +17813,11 @@ "deprecationReason": null }, { - "name": "timestamp", + "name": "unripe_lt", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -18477,11 +17825,11 @@ "deprecationReason": null }, { - "name": "timestamp_gt", + "name": "unripe_lte", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -18489,11 +17837,11 @@ "deprecationReason": null }, { - "name": "timestamp_gte", + "name": "unripe_not", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -18501,31 +17849,23 @@ "deprecationReason": null }, { - "name": "timestamp_in", + "name": "unripe_not_contains", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_lt", + "name": "unripe_not_contains_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -18533,11 +17873,11 @@ "deprecationReason": null }, { - "name": "timestamp_lte", + "name": "unripe_not_ends_with", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -18545,11 +17885,11 @@ "deprecationReason": null }, { - "name": "timestamp_not", + "name": "unripe_not_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -18557,7 +17897,7 @@ "deprecationReason": null }, { - "name": "timestamp_not_in", + "name": "unripe_not_in", "description": null, "type": { "kind": "LIST", @@ -18567,7 +17907,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } } @@ -18575,238 +17915,94 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "Cross_orderBy", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "above", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dailySnapshot", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dailySnapshot__blockNumber", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dailySnapshot__crosses", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dailySnapshot__deltaBeans", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dailySnapshot__deltaCrosses", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dailySnapshot__deltaLiquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dailySnapshot__deltaVolume", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dailySnapshot__deltaVolumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dailySnapshot__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dailySnapshot__liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dailySnapshot__marketCap", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dailySnapshot__price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dailySnapshot__season", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dailySnapshot__supply", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dailySnapshot__supplyInPegLP", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dailySnapshot__timestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dailySnapshot__volume", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dailySnapshot__volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hourlySnapshot", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hourlySnapshot__blockNumber", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hourlySnapshot__crosses", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hourlySnapshot__deltaBeans", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hourlySnapshot__deltaCrosses", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hourlySnapshot__deltaLiquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hourlySnapshot__deltaVolume", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hourlySnapshot__deltaVolumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hourlySnapshot__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "hourlySnapshot__liquidityUSD", + "name": "unripe_not_starts_with", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hourlySnapshot__marketCap", + "name": "unripe_not_starts_with_nocase", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hourlySnapshot__price", + "name": "unripe_starts_with", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hourlySnapshot__season", + "name": "unripe_starts_with_nocase", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "Chop_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "hourlySnapshot__supply", + "name": "amount", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hourlySnapshot__supplyInPegLP", + "name": "blockNumber", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hourlySnapshot__timestamp", + "name": "createdAt", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hourlySnapshot__volume", + "name": "farmer", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hourlySnapshot__volumeUSD", + "name": "hash", "description": null, "isDeprecated": false, "deprecationReason": null @@ -18818,265 +18014,430 @@ "deprecationReason": null }, { - "name": "pool", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "poolDailySnapshot", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "poolDailySnapshot__createdAt", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "poolDailySnapshot__crosses", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "poolDailySnapshot__deltaBeans", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "poolDailySnapshot__deltaCrosses", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "poolDailySnapshot__deltaLiquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "poolDailySnapshot__deltaVolume", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "poolDailySnapshot__deltaVolumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "poolDailySnapshot__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "poolDailySnapshot__lastPrice", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "poolDailySnapshot__liquidityUSD", + "name": "logIndex", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "poolDailySnapshot__season", + "name": "protocol", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "poolDailySnapshot__updatedAt", + "name": "protocol__id", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "poolDailySnapshot__utilization", + "name": "protocol__lastSeason", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "poolDailySnapshot__volume", + "name": "protocol__lastUpgrade", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "poolDailySnapshot__volumeUSD", + "name": "protocol__methodologyVersion", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "poolHourlySnapshot", + "name": "protocol__name", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "poolHourlySnapshot__createdAt", + "name": "protocol__schemaVersion", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "poolHourlySnapshot__crosses", + "name": "protocol__slug", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "poolHourlySnapshot__deltaBeans", + "name": "protocol__subgraphVersion", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "poolHourlySnapshot__deltaCrosses", + "name": "underlying", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "poolHourlySnapshot__deltaLiquidityUSD", + "name": "unripe", "description": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CollectionData", + "description": null, + "fields": [ { - "name": "poolHourlySnapshot__deltaVolume", + "name": "id", "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "poolHourlySnapshot__deltaVolumeUSD", + "name": "minted", "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CollectionData_filter", + "description": null, + "fields": null, + "inputFields": [ { - "name": "poolHourlySnapshot__id", - "description": null, + "name": "_change_block", + "description": "Filter for the block changed event.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "poolHourlySnapshot__lastPrice", + "name": "and", "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CollectionData_filter", + "ofType": null + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "poolHourlySnapshot__liquidityUSD", + "name": "id", "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "poolHourlySnapshot__season", + "name": "id_gt", "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "poolHourlySnapshot__updatedAt", + "name": "id_gte", "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "poolHourlySnapshot__utilization", + "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, "isDeprecated": false, "deprecationReason": null }, { - "name": "poolHourlySnapshot__volume", + "name": "id_lt", "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "poolHourlySnapshot__volumeUSD", + "name": "id_lte", "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pool__crosses", + "name": "id_not", "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pool__deltaBeans", + "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, "isDeprecated": false, "deprecationReason": null }, { - "name": "pool__id", + "name": "minted", "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pool__lastPrice", + "name": "minted_contains", "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pool__lastSeason", + "name": "minted_contains_nocase", "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pool__liquidityUSD", + "name": "minted_not", "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pool__volume", + "name": "minted_not_contains", "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pool__volumeUSD", + "name": "minted_not_contains_nocase", "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "price", + "name": "or", "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CollectionData_filter", + "ofType": null + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "CollectionData_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "timeSinceLastCross", + "name": "id", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp", + "name": "minted", "description": null, "isDeprecated": false, "deprecationReason": null @@ -43001,6 +42362,34 @@ "description": null, "fields": null, "inputFields": [ + { + "name": "address", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "address_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "id", "description": null, @@ -85457,7 +84846,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Cross_orderBy", + "name": "PoolCross_orderBy", "ofType": null }, "defaultValue": null, @@ -85493,7 +84882,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Cross_filter", + "name": "PoolCross_filter", "ofType": null }, "defaultValue": null, @@ -85512,7 +84901,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Cross", + "name": "PoolCross", "ofType": null } } @@ -85740,80 +85129,8 @@ "deprecationReason": null }, { - "name": "lastPrice", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastSeason", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "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": "reserves", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volume", - "description": null, + "name": "lastCross", + "description": "Last timestamp a cross was seen for this pool", "args": [], "type": { "kind": "NON_NULL", @@ -85828,7 +85145,7 @@ "deprecationReason": null }, { - "name": "volumeUSD", + "name": "lastPrice", "description": null, "args": [], "type": { @@ -85842,153 +85159,9 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PoolDailySnapshot", - "description": null, - "fields": [ - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "crossEvents", - "description": null, - "args": [ - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Cross_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Cross_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Cross", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "crosses", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "deltaBeans", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deltaCrosses", + "name": "lastSeason", "description": null, "args": [], "type": { @@ -86003,110 +85176,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "deltaLiquidityUSD", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deltaReserves", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deltaVolume", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deltaVolumeUSD", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastPrice", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "liquidityUSD", "description": null, @@ -86123,22 +85192,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "pool", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Pool", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "reserves", "description": null, @@ -86164,7 +85217,7 @@ "deprecationReason": null }, { - "name": "season", + "name": "volume", "description": null, "args": [], "type": { @@ -86172,7 +85225,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null } }, @@ -86180,7 +85233,7 @@ "deprecationReason": null }, { - "name": "updatedAt", + "name": "volumeUSD", "description": null, "args": [], "type": { @@ -86188,15 +85241,26 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "BigDecimal", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PoolCross", + "description": null, + "fields": [ { - "name": "utilization", + "name": "above", "description": null, "args": [], "type": { @@ -86204,7 +85268,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Boolean", "ofType": null } }, @@ -86212,15 +85276,15 @@ "deprecationReason": null }, { - "name": "volume", + "name": "dailySnapshot", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "OBJECT", + "name": "PoolDailySnapshot", "ofType": null } }, @@ -86228,259 +85292,119 @@ "deprecationReason": null }, { - "name": "volumeUSD", + "name": "hourlySnapshot", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", + "kind": "OBJECT", + "name": "PoolHourlySnapshot", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PoolDailySnapshot_filter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_change_block", - "description": "Filter for the block changed event.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "and", + "name": "id", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "PoolDailySnapshot_filter", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt_in", + "name": "pool", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } + "kind": "OBJECT", + "name": "Pool", + "ofType": null } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt_not_in", + "name": "price", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "crossEvents_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Cross_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "crosses", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "crosses_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "crosses_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "crosses_in", + "name": "timeSinceLastCross", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "BigInt", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "crosses_lt", + "name": "timestamp", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PoolCross_filter", + "description": null, + "fields": null, + "inputFields": [ { - "name": "crosses_lte", - "description": null, + "name": "_change_block", + "description": "Filter for the block changed event.", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", "ofType": null }, "defaultValue": null, @@ -86488,11 +85412,11 @@ "deprecationReason": null }, { - "name": "crosses_not", + "name": "above", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -86500,7 +85424,7 @@ "deprecationReason": null }, { - "name": "crosses_not_in", + "name": "above_in", "description": null, "type": { "kind": "LIST", @@ -86510,7 +85434,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null } } @@ -86520,35 +85444,11 @@ "deprecationReason": null }, { - "name": "deltaBeans", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deltaBeans_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deltaBeans_gte", + "name": "above_not", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -86556,7 +85456,7 @@ "deprecationReason": null }, { - "name": "deltaBeans_in", + "name": "above_not_in", "description": null, "type": { "kind": "LIST", @@ -86566,7 +85466,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "Boolean", "ofType": null } } @@ -86576,55 +85476,15 @@ "deprecationReason": null }, { - "name": "deltaBeans_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deltaBeans_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deltaBeans_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deltaBeans_not_in", + "name": "and", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "PoolCross_filter", + "ofType": null } }, "defaultValue": null, @@ -86632,23 +85492,11 @@ "deprecationReason": null }, { - "name": "deltaCrosses", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deltaCrosses_gt", + "name": "dailySnapshot", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -86656,11 +85504,11 @@ "deprecationReason": null }, { - "name": "deltaCrosses_gte", + "name": "dailySnapshot_", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "PoolDailySnapshot_filter", "ofType": null }, "defaultValue": null, @@ -86668,31 +85516,11 @@ "deprecationReason": null }, { - "name": "deltaCrosses_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deltaCrosses_lt", + "name": "dailySnapshot_contains", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -86700,11 +85528,11 @@ "deprecationReason": null }, { - "name": "deltaCrosses_lte", + "name": "dailySnapshot_contains_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -86712,11 +85540,11 @@ "deprecationReason": null }, { - "name": "deltaCrosses_not", + "name": "dailySnapshot_ends_with", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -86724,31 +85552,11 @@ "deprecationReason": null }, { - "name": "deltaCrosses_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deltaLiquidityUSD", + "name": "dailySnapshot_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -86756,11 +85564,11 @@ "deprecationReason": null }, { - "name": "deltaLiquidityUSD_gt", + "name": "dailySnapshot_gt", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -86768,11 +85576,11 @@ "deprecationReason": null }, { - "name": "deltaLiquidityUSD_gte", + "name": "dailySnapshot_gte", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -86780,7 +85588,7 @@ "deprecationReason": null }, { - "name": "deltaLiquidityUSD_in", + "name": "dailySnapshot_in", "description": null, "type": { "kind": "LIST", @@ -86790,7 +85598,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null } } @@ -86800,11 +85608,11 @@ "deprecationReason": null }, { - "name": "deltaLiquidityUSD_lt", + "name": "dailySnapshot_lt", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -86812,11 +85620,11 @@ "deprecationReason": null }, { - "name": "deltaLiquidityUSD_lte", + "name": "dailySnapshot_lte", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -86824,11 +85632,11 @@ "deprecationReason": null }, { - "name": "deltaLiquidityUSD_not", + "name": "dailySnapshot_not", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -86836,151 +85644,11 @@ "deprecationReason": null }, { - "name": "deltaLiquidityUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deltaReserves", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deltaReserves_contains", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deltaReserves_contains_nocase", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deltaReserves_not", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deltaReserves_not_contains", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deltaReserves_not_contains_nocase", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deltaVolume", + "name": "dailySnapshot_not_contains", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -86988,11 +85656,11 @@ "deprecationReason": null }, { - "name": "deltaVolumeUSD", + "name": "dailySnapshot_not_contains_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -87000,11 +85668,11 @@ "deprecationReason": null }, { - "name": "deltaVolumeUSD_gt", + "name": "dailySnapshot_not_ends_with", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -87012,11 +85680,11 @@ "deprecationReason": null }, { - "name": "deltaVolumeUSD_gte", + "name": "dailySnapshot_not_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -87024,7 +85692,7 @@ "deprecationReason": null }, { - "name": "deltaVolumeUSD_in", + "name": "dailySnapshot_not_in", "description": null, "type": { "kind": "LIST", @@ -87034,7 +85702,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null } } @@ -87044,11 +85712,11 @@ "deprecationReason": null }, { - "name": "deltaVolumeUSD_lt", + "name": "dailySnapshot_not_starts_with", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -87056,11 +85724,11 @@ "deprecationReason": null }, { - "name": "deltaVolumeUSD_lte", + "name": "dailySnapshot_not_starts_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -87068,11 +85736,11 @@ "deprecationReason": null }, { - "name": "deltaVolumeUSD_not", + "name": "dailySnapshot_starts_with", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -87080,31 +85748,11 @@ "deprecationReason": null }, { - "name": "deltaVolumeUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deltaVolume_gt", + "name": "dailySnapshot_starts_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -87112,11 +85760,11 @@ "deprecationReason": null }, { - "name": "deltaVolume_gte", + "name": "hourlySnapshot", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -87124,31 +85772,23 @@ "deprecationReason": null }, { - "name": "deltaVolume_in", + "name": "hourlySnapshot_", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "PoolHourlySnapshot_filter", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deltaVolume_lt", + "name": "hourlySnapshot_contains", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -87156,11 +85796,11 @@ "deprecationReason": null }, { - "name": "deltaVolume_lte", + "name": "hourlySnapshot_contains_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -87168,11 +85808,11 @@ "deprecationReason": null }, { - "name": "deltaVolume_not", + "name": "hourlySnapshot_ends_with", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -87180,31 +85820,11 @@ "deprecationReason": null }, { - "name": "deltaVolume_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", + "name": "hourlySnapshot_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -87212,11 +85832,11 @@ "deprecationReason": null }, { - "name": "id_gt", + "name": "hourlySnapshot_gt", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -87224,11 +85844,11 @@ "deprecationReason": null }, { - "name": "id_gte", + "name": "hourlySnapshot_gte", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -87236,7 +85856,7 @@ "deprecationReason": null }, { - "name": "id_in", + "name": "hourlySnapshot_in", "description": null, "type": { "kind": "LIST", @@ -87246,7 +85866,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } } @@ -87256,11 +85876,11 @@ "deprecationReason": null }, { - "name": "id_lt", + "name": "hourlySnapshot_lt", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -87268,11 +85888,11 @@ "deprecationReason": null }, { - "name": "id_lte", + "name": "hourlySnapshot_lte", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -87280,11 +85900,11 @@ "deprecationReason": null }, { - "name": "id_not", + "name": "hourlySnapshot_not", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -87292,31 +85912,23 @@ "deprecationReason": null }, { - "name": "id_not_in", + "name": "hourlySnapshot_not_contains", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "lastPrice", + "name": "hourlySnapshot_not_contains_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -87324,11 +85936,11 @@ "deprecationReason": null }, { - "name": "lastPrice_gt", + "name": "hourlySnapshot_not_ends_with", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -87336,11 +85948,11 @@ "deprecationReason": null }, { - "name": "lastPrice_gte", + "name": "hourlySnapshot_not_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -87348,7 +85960,7 @@ "deprecationReason": null }, { - "name": "lastPrice_in", + "name": "hourlySnapshot_not_in", "description": null, "type": { "kind": "LIST", @@ -87358,7 +85970,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null } } @@ -87368,11 +85980,11 @@ "deprecationReason": null }, { - "name": "lastPrice_lt", + "name": "hourlySnapshot_not_starts_with", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -87380,11 +85992,11 @@ "deprecationReason": null }, { - "name": "lastPrice_lte", + "name": "hourlySnapshot_not_starts_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -87392,11 +86004,11 @@ "deprecationReason": null }, { - "name": "lastPrice_not", + "name": "hourlySnapshot_starts_with", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null }, "defaultValue": null, @@ -87404,31 +86016,23 @@ "deprecationReason": null }, { - "name": "lastPrice_not_in", + "name": "hourlySnapshot_starts_with_nocase", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "liquidityUSD", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -87436,11 +86040,11 @@ "deprecationReason": null }, { - "name": "liquidityUSD_gt", + "name": "id_gt", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -87448,11 +86052,11 @@ "deprecationReason": null }, { - "name": "liquidityUSD_gte", + "name": "id_gte", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -87460,7 +86064,7 @@ "deprecationReason": null }, { - "name": "liquidityUSD_in", + "name": "id_in", "description": null, "type": { "kind": "LIST", @@ -87470,7 +86074,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null } } @@ -87480,11 +86084,11 @@ "deprecationReason": null }, { - "name": "liquidityUSD_lt", + "name": "id_lt", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -87492,11 +86096,11 @@ "deprecationReason": null }, { - "name": "liquidityUSD_lte", + "name": "id_lte", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -87504,11 +86108,11 @@ "deprecationReason": null }, { - "name": "liquidityUSD_not", + "name": "id_not", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -87516,7 +86120,7 @@ "deprecationReason": null }, { - "name": "liquidityUSD_not_in", + "name": "id_not_in", "description": null, "type": { "kind": "LIST", @@ -87526,7 +86130,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null } } @@ -87543,7 +86147,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "PoolDailySnapshot_filter", + "name": "PoolCross_filter", "ofType": null } }, @@ -87820,107 +86424,43 @@ "deprecationReason": null }, { - "name": "reserves", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reserves_contains", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reserves_contains_nocase", + "name": "price", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "reserves_not", + "name": "price_gt", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "reserves_not_contains", + "name": "price_gte", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "reserves_not_contains_nocase", + "name": "price_in", "description": null, "type": { "kind": "LIST", @@ -87930,7 +86470,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "BigDecimal", "ofType": null } } @@ -87940,11 +86480,11 @@ "deprecationReason": null }, { - "name": "season", + "name": "price_lt", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -87952,11 +86492,11 @@ "deprecationReason": null }, { - "name": "season_gt", + "name": "price_lte", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -87964,11 +86504,11 @@ "deprecationReason": null }, { - "name": "season_gte", + "name": "price_not", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -87976,7 +86516,7 @@ "deprecationReason": null }, { - "name": "season_in", + "name": "price_not_in", "description": null, "type": { "kind": "LIST", @@ -87986,7 +86526,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "BigDecimal", "ofType": null } } @@ -87996,11 +86536,11 @@ "deprecationReason": null }, { - "name": "season_lt", + "name": "timeSinceLastCross", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -88008,11 +86548,11 @@ "deprecationReason": null }, { - "name": "season_lte", + "name": "timeSinceLastCross_gt", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -88020,11 +86560,11 @@ "deprecationReason": null }, { - "name": "season_not", + "name": "timeSinceLastCross_gte", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -88032,7 +86572,7 @@ "deprecationReason": null }, { - "name": "season_not_in", + "name": "timeSinceLastCross_in", "description": null, "type": { "kind": "LIST", @@ -88042,7 +86582,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null } } @@ -88052,7 +86592,7 @@ "deprecationReason": null }, { - "name": "updatedAt", + "name": "timeSinceLastCross_lt", "description": null, "type": { "kind": "SCALAR", @@ -88064,7 +86604,7 @@ "deprecationReason": null }, { - "name": "updatedAt_gt", + "name": "timeSinceLastCross_lte", "description": null, "type": { "kind": "SCALAR", @@ -88076,7 +86616,7 @@ "deprecationReason": null }, { - "name": "updatedAt_gte", + "name": "timeSinceLastCross_not", "description": null, "type": { "kind": "SCALAR", @@ -88088,7 +86628,7 @@ "deprecationReason": null }, { - "name": "updatedAt_in", + "name": "timeSinceLastCross_not_in", "description": null, "type": { "kind": "LIST", @@ -88108,7 +86648,7 @@ "deprecationReason": null }, { - "name": "updatedAt_lt", + "name": "timestamp", "description": null, "type": { "kind": "SCALAR", @@ -88120,7 +86660,7 @@ "deprecationReason": null }, { - "name": "updatedAt_lte", + "name": "timestamp_gt", "description": null, "type": { "kind": "SCALAR", @@ -88132,7 +86672,7 @@ "deprecationReason": null }, { - "name": "updatedAt_not", + "name": "timestamp_gte", "description": null, "type": { "kind": "SCALAR", @@ -88144,7 +86684,7 @@ "deprecationReason": null }, { - "name": "updatedAt_not_in", + "name": "timestamp_in", "description": null, "type": { "kind": "LIST", @@ -88164,11 +86704,11 @@ "deprecationReason": null }, { - "name": "utilization", + "name": "timestamp_lt", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -88176,11 +86716,11 @@ "deprecationReason": null }, { - "name": "utilization_gt", + "name": "timestamp_lte", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -88188,11 +86728,11 @@ "deprecationReason": null }, { - "name": "utilization_gte", + "name": "timestamp_not", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -88200,7 +86740,7 @@ "deprecationReason": null }, { - "name": "utilization_in", + "name": "timestamp_not_in", "description": null, "type": { "kind": "LIST", @@ -88210,7 +86750,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null } } @@ -88218,458 +86758,298 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "PoolCross_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "utilization_lt", + "name": "above", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "utilization_lte", + "name": "dailySnapshot", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "utilization_not", + "name": "dailySnapshot__createdAt", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "utilization_not_in", + "name": "dailySnapshot__crosses", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "volume", + "name": "dailySnapshot__deltaBeans", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "volumeUSD", + "name": "dailySnapshot__deltaCrosses", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "volumeUSD_gt", + "name": "dailySnapshot__deltaLiquidityUSD", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "volumeUSD_gte", + "name": "dailySnapshot__deltaVolume", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "volumeUSD_in", + "name": "dailySnapshot__deltaVolumeUSD", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "volumeUSD_lt", + "name": "dailySnapshot__id", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "volumeUSD_lte", + "name": "dailySnapshot__lastPrice", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "volumeUSD_not", + "name": "dailySnapshot__liquidityUSD", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "volumeUSD_not_in", + "name": "dailySnapshot__season", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "volume_gt", + "name": "dailySnapshot__updatedAt", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "volume_gte", + "name": "dailySnapshot__utilization", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "volume_in", + "name": "dailySnapshot__volume", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "volume_lt", + "name": "dailySnapshot__volumeUSD", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "volume_lte", + "name": "hourlySnapshot", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "volume_not", + "name": "hourlySnapshot__createdAt", "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "volume_not_in", + "name": "hourlySnapshot__crosses", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "PoolDailySnapshot_orderBy", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + }, { - "name": "createdAt", + "name": "hourlySnapshot__deltaBeans", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "crossEvents", + "name": "hourlySnapshot__deltaCrosses", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "crosses", + "name": "hourlySnapshot__deltaLiquidityUSD", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deltaBeans", + "name": "hourlySnapshot__deltaVolume", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deltaCrosses", + "name": "hourlySnapshot__deltaVolumeUSD", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deltaLiquidityUSD", + "name": "hourlySnapshot__id", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deltaReserves", + "name": "hourlySnapshot__lastPrice", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deltaVolume", + "name": "hourlySnapshot__liquidityUSD", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deltaVolumeUSD", + "name": "hourlySnapshot__season", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "hourlySnapshot__updatedAt", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "lastPrice", + "name": "hourlySnapshot__utilization", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "liquidityUSD", + "name": "hourlySnapshot__volume", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pool", + "name": "hourlySnapshot__volumeUSD", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pool__crosses", + "name": "id", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pool__deltaBeans", + "name": "pool", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pool__id", + "name": "pool__crosses", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pool__lastPrice", + "name": "pool__deltaBeans", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pool__lastSeason", + "name": "pool__id", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pool__liquidityUSD", + "name": "pool__lastCross", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pool__volume", + "name": "pool__lastPrice", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pool__volumeUSD", + "name": "pool__lastSeason", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "reserves", + "name": "pool__liquidityUSD", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "season", + "name": "pool__volume", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedAt", + "name": "pool__volumeUSD", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "utilization", + "name": "price", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "volume", + "name": "timeSinceLastCross", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "volumeUSD", + "name": "timestamp", "description": null, "isDeprecated": false, "deprecationReason": null @@ -88679,7 +87059,7 @@ }, { "kind": "OBJECT", - "name": "PoolHourlySnapshot", + "name": "PoolDailySnapshot", "description": null, "fields": [ { @@ -88719,7 +87099,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Cross_orderBy", + "name": "PoolCross_orderBy", "ofType": null }, "defaultValue": null, @@ -88755,7 +87135,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Cross_filter", + "name": "PoolCross_filter", "ofType": null }, "defaultValue": null, @@ -88774,7 +87154,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Cross", + "name": "PoolCross", "ofType": null } } @@ -89079,7 +87459,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "PoolHourlySnapshot_filter", + "name": "PoolDailySnapshot_filter", "description": null, "fields": null, "inputFields": [ @@ -89103,7 +87483,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "PoolHourlySnapshot_filter", + "name": "PoolDailySnapshot_filter", "ofType": null } }, @@ -89228,7 +87608,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Cross_filter", + "name": "PoolCross_filter", "ofType": null }, "defaultValue": null, @@ -90371,7 +88751,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "PoolHourlySnapshot_filter", + "name": "PoolDailySnapshot_filter", "ofType": null } }, @@ -91334,7 +89714,7 @@ }, { "kind": "ENUM", - "name": "PoolHourlySnapshot_orderBy", + "name": "PoolDailySnapshot_orderBy", "description": null, "fields": null, "inputFields": null, @@ -91436,6 +89816,12 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "pool__lastCross", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "pool__lastPrice", "description": null, @@ -91505,9 +89891,409 @@ ], "possibleTypes": null }, + { + "kind": "OBJECT", + "name": "PoolHourlySnapshot", + "description": null, + "fields": [ + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "crossEvents", + "description": null, + "args": [ + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "PoolCross_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PoolCross_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PoolCross", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "crosses", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deltaBeans", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deltaCrosses", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deltaLiquidityUSD", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deltaReserves", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deltaVolume", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deltaVolumeUSD", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastPrice", + "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": "pool", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Pool", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reserves", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "utilization", + "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": "BigInt", + "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 + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", - "name": "Pool_filter", + "name": "PoolHourlySnapshot_filter", "description": null, "fields": null, "inputFields": [ @@ -91531,7 +90317,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "Pool_filter", + "name": "PoolHourlySnapshot_filter", "ofType": null } }, @@ -91540,23 +90326,11 @@ "deprecationReason": null }, { - "name": "bean", + "name": "createdAt", "description": null, "type": { "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bean_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Bean_filter", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -91564,11 +90338,11 @@ "deprecationReason": null }, { - "name": "bean_contains", + "name": "createdAt_gt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -91576,11 +90350,11 @@ "deprecationReason": null }, { - "name": "bean_contains_nocase", + "name": "createdAt_gte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -91588,23 +90362,31 @@ "deprecationReason": null }, { - "name": "bean_ends_with", + "name": "createdAt_in", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "bean_ends_with_nocase", + "name": "createdAt_lt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -91612,11 +90394,11 @@ "deprecationReason": null }, { - "name": "bean_gt", + "name": "createdAt_lte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -91624,11 +90406,11 @@ "deprecationReason": null }, { - "name": "bean_gte", + "name": "createdAt_not", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -91636,7 +90418,7 @@ "deprecationReason": null }, { - "name": "bean_in", + "name": "createdAt_not_in", "description": null, "type": { "kind": "LIST", @@ -91646,7 +90428,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } } @@ -91656,11 +90438,11 @@ "deprecationReason": null }, { - "name": "bean_lt", + "name": "crossEvents_", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "PoolCross_filter", "ofType": null }, "defaultValue": null, @@ -91668,11 +90450,11 @@ "deprecationReason": null }, { - "name": "bean_lte", + "name": "crosses", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -91680,11 +90462,11 @@ "deprecationReason": null }, { - "name": "bean_not", + "name": "crosses_gt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -91692,11 +90474,11 @@ "deprecationReason": null }, { - "name": "bean_not_contains", + "name": "crosses_gte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -91704,11 +90486,31 @@ "deprecationReason": null }, { - "name": "bean_not_contains_nocase", + "name": "crosses_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "crosses_lt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -91716,11 +90518,11 @@ "deprecationReason": null }, { - "name": "bean_not_ends_with", + "name": "crosses_lte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -91728,11 +90530,11 @@ "deprecationReason": null }, { - "name": "bean_not_ends_with_nocase", + "name": "crosses_not", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -91740,7 +90542,7 @@ "deprecationReason": null }, { - "name": "bean_not_in", + "name": "crosses_not_in", "description": null, "type": { "kind": "LIST", @@ -91750,7 +90552,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } } @@ -91760,23 +90562,11 @@ "deprecationReason": null }, { - "name": "bean_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bean_not_starts_with_nocase", + "name": "deltaBeans", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -91784,11 +90574,11 @@ "deprecationReason": null }, { - "name": "bean_starts_with", + "name": "deltaBeans_gt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -91796,11 +90586,11 @@ "deprecationReason": null }, { - "name": "bean_starts_with_nocase", + "name": "deltaBeans_gte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -91808,23 +90598,31 @@ "deprecationReason": null }, { - "name": "crossEvents_", + "name": "deltaBeans_in", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "Cross_filter", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "crosses", + "name": "deltaBeans_lt", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -91832,11 +90630,11 @@ "deprecationReason": null }, { - "name": "crosses_gt", + "name": "deltaBeans_lte", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -91844,11 +90642,11 @@ "deprecationReason": null }, { - "name": "crosses_gte", + "name": "deltaBeans_not", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -91856,7 +90654,7 @@ "deprecationReason": null }, { - "name": "crosses_in", + "name": "deltaBeans_not_in", "description": null, "type": { "kind": "LIST", @@ -91866,7 +90664,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null } } @@ -91876,7 +90674,7 @@ "deprecationReason": null }, { - "name": "crosses_lt", + "name": "deltaCrosses", "description": null, "type": { "kind": "SCALAR", @@ -91888,7 +90686,7 @@ "deprecationReason": null }, { - "name": "crosses_lte", + "name": "deltaCrosses_gt", "description": null, "type": { "kind": "SCALAR", @@ -91900,7 +90698,7 @@ "deprecationReason": null }, { - "name": "crosses_not", + "name": "deltaCrosses_gte", "description": null, "type": { "kind": "SCALAR", @@ -91912,7 +90710,7 @@ "deprecationReason": null }, { - "name": "crosses_not_in", + "name": "deltaCrosses_in", "description": null, "type": { "kind": "LIST", @@ -91932,23 +90730,11 @@ "deprecationReason": null }, { - "name": "dailySnapshot_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PoolDailySnapshot_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deltaBeans", + "name": "deltaCrosses_lt", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -91956,11 +90742,11 @@ "deprecationReason": null }, { - "name": "deltaBeans_gt", + "name": "deltaCrosses_lte", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -91968,11 +90754,11 @@ "deprecationReason": null }, { - "name": "deltaBeans_gte", + "name": "deltaCrosses_not", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -91980,7 +90766,7 @@ "deprecationReason": null }, { - "name": "deltaBeans_in", + "name": "deltaCrosses_not_in", "description": null, "type": { "kind": "LIST", @@ -91990,7 +90776,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null } } @@ -92000,11 +90786,11 @@ "deprecationReason": null }, { - "name": "deltaBeans_lt", + "name": "deltaLiquidityUSD", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -92012,11 +90798,11 @@ "deprecationReason": null }, { - "name": "deltaBeans_lte", + "name": "deltaLiquidityUSD_gt", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -92024,11 +90810,11 @@ "deprecationReason": null }, { - "name": "deltaBeans_not", + "name": "deltaLiquidityUSD_gte", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -92036,7 +90822,7 @@ "deprecationReason": null }, { - "name": "deltaBeans_not_in", + "name": "deltaLiquidityUSD_in", "description": null, "type": { "kind": "LIST", @@ -92046,7 +90832,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "BigDecimal", "ofType": null } } @@ -92056,11 +90842,11 @@ "deprecationReason": null }, { - "name": "hourlySnapshot_", + "name": "deltaLiquidityUSD_lt", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PoolHourlySnapshot_filter", + "kind": "SCALAR", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -92068,11 +90854,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "deltaLiquidityUSD_lte", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -92080,11 +90866,11 @@ "deprecationReason": null }, { - "name": "id_gt", + "name": "deltaLiquidityUSD_not", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -92092,19 +90878,27 @@ "deprecationReason": null }, { - "name": "id_gte", + "name": "deltaLiquidityUSD_not_in", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_in", + "name": "deltaReserves", "description": null, "type": { "kind": "LIST", @@ -92114,7 +90908,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "BigInt", "ofType": null } } @@ -92124,43 +90918,67 @@ "deprecationReason": null }, { - "name": "id_lt", + "name": "deltaReserves_contains", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_lte", + "name": "deltaReserves_contains_nocase", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_not", + "name": "deltaReserves_not", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_not_in", + "name": "deltaReserves_not_contains", "description": null, "type": { "kind": "LIST", @@ -92170,7 +90988,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "BigInt", "ofType": null } } @@ -92180,7 +90998,39 @@ "deprecationReason": null }, { - "name": "lastPrice", + "name": "deltaReserves_not_contains_nocase", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deltaVolume", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deltaVolumeUSD", "description": null, "type": { "kind": "SCALAR", @@ -92192,7 +91042,7 @@ "deprecationReason": null }, { - "name": "lastPrice_gt", + "name": "deltaVolumeUSD_gt", "description": null, "type": { "kind": "SCALAR", @@ -92204,7 +91054,7 @@ "deprecationReason": null }, { - "name": "lastPrice_gte", + "name": "deltaVolumeUSD_gte", "description": null, "type": { "kind": "SCALAR", @@ -92216,7 +91066,7 @@ "deprecationReason": null }, { - "name": "lastPrice_in", + "name": "deltaVolumeUSD_in", "description": null, "type": { "kind": "LIST", @@ -92236,7 +91086,7 @@ "deprecationReason": null }, { - "name": "lastPrice_lt", + "name": "deltaVolumeUSD_lt", "description": null, "type": { "kind": "SCALAR", @@ -92248,7 +91098,7 @@ "deprecationReason": null }, { - "name": "lastPrice_lte", + "name": "deltaVolumeUSD_lte", "description": null, "type": { "kind": "SCALAR", @@ -92260,7 +91110,7 @@ "deprecationReason": null }, { - "name": "lastPrice_not", + "name": "deltaVolumeUSD_not", "description": null, "type": { "kind": "SCALAR", @@ -92272,7 +91122,7 @@ "deprecationReason": null }, { - "name": "lastPrice_not_in", + "name": "deltaVolumeUSD_not_in", "description": null, "type": { "kind": "LIST", @@ -92292,23 +91142,11 @@ "deprecationReason": null }, { - "name": "lastSeason", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastSeason_gt", + "name": "deltaVolume_gt", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -92316,11 +91154,11 @@ "deprecationReason": null }, { - "name": "lastSeason_gte", + "name": "deltaVolume_gte", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -92328,7 +91166,7 @@ "deprecationReason": null }, { - "name": "lastSeason_in", + "name": "deltaVolume_in", "description": null, "type": { "kind": "LIST", @@ -92338,7 +91176,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null } } @@ -92348,11 +91186,11 @@ "deprecationReason": null }, { - "name": "lastSeason_lt", + "name": "deltaVolume_lt", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -92360,11 +91198,11 @@ "deprecationReason": null }, { - "name": "lastSeason_lte", + "name": "deltaVolume_lte", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -92372,11 +91210,11 @@ "deprecationReason": null }, { - "name": "lastSeason_not", + "name": "deltaVolume_not", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -92384,7 +91222,7 @@ "deprecationReason": null }, { - "name": "lastSeason_not_in", + "name": "deltaVolume_not_in", "description": null, "type": { "kind": "LIST", @@ -92394,7 +91232,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null } } @@ -92404,11 +91242,11 @@ "deprecationReason": null }, { - "name": "liquidityUSD", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -92416,11 +91254,11 @@ "deprecationReason": null }, { - "name": "liquidityUSD_gt", + "name": "id_gt", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -92428,11 +91266,11 @@ "deprecationReason": null }, { - "name": "liquidityUSD_gte", + "name": "id_gte", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -92440,7 +91278,7 @@ "deprecationReason": null }, { - "name": "liquidityUSD_in", + "name": "id_in", "description": null, "type": { "kind": "LIST", @@ -92450,7 +91288,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null } } @@ -92460,11 +91298,11 @@ "deprecationReason": null }, { - "name": "liquidityUSD_lt", + "name": "id_lt", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -92472,11 +91310,11 @@ "deprecationReason": null }, { - "name": "liquidityUSD_lte", + "name": "id_lte", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -92484,11 +91322,11 @@ "deprecationReason": null }, { - "name": "liquidityUSD_not", + "name": "id_not", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -92496,7 +91334,7 @@ "deprecationReason": null }, { - "name": "liquidityUSD_not_in", + "name": "id_not_in", "description": null, "type": { "kind": "LIST", @@ -92506,7 +91344,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null } } @@ -92516,63 +91354,43 @@ "deprecationReason": null }, { - "name": "or", + "name": "lastPrice", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Pool_filter", - "ofType": null - } + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "reserves", + "name": "lastPrice_gt", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "reserves_contains", + "name": "lastPrice_gte", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "reserves_contains_nocase", + "name": "lastPrice_in", "description": null, "type": { "kind": "LIST", @@ -92582,7 +91400,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "BigDecimal", "ofType": null } } @@ -92592,47 +91410,43 @@ "deprecationReason": null }, { - "name": "reserves_not", + "name": "lastPrice_lt", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "reserves_not_contains", + "name": "lastPrice_lte", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "reserves_not_contains_nocase", + "name": "lastPrice_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastPrice_not_in", "description": null, "type": { "kind": "LIST", @@ -92642,7 +91456,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "BigDecimal", "ofType": null } } @@ -92652,19 +91466,7 @@ "deprecationReason": null }, { - "name": "volume", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeUSD", + "name": "liquidityUSD", "description": null, "type": { "kind": "SCALAR", @@ -92676,7 +91478,7 @@ "deprecationReason": null }, { - "name": "volumeUSD_gt", + "name": "liquidityUSD_gt", "description": null, "type": { "kind": "SCALAR", @@ -92688,7 +91490,7 @@ "deprecationReason": null }, { - "name": "volumeUSD_gte", + "name": "liquidityUSD_gte", "description": null, "type": { "kind": "SCALAR", @@ -92700,7 +91502,7 @@ "deprecationReason": null }, { - "name": "volumeUSD_in", + "name": "liquidityUSD_in", "description": null, "type": { "kind": "LIST", @@ -92720,7 +91522,7 @@ "deprecationReason": null }, { - "name": "volumeUSD_lt", + "name": "liquidityUSD_lt", "description": null, "type": { "kind": "SCALAR", @@ -92732,7 +91534,7 @@ "deprecationReason": null }, { - "name": "volumeUSD_lte", + "name": "liquidityUSD_lte", "description": null, "type": { "kind": "SCALAR", @@ -92744,7 +91546,7 @@ "deprecationReason": null }, { - "name": "volumeUSD_not", + "name": "liquidityUSD_not", "description": null, "type": { "kind": "SCALAR", @@ -92756,7 +91558,7 @@ "deprecationReason": null }, { - "name": "volumeUSD_not_in", + "name": "liquidityUSD_not_in", "description": null, "type": { "kind": "LIST", @@ -92776,23 +91578,27 @@ "deprecationReason": null }, { - "name": "volume_gt", + "name": "or", "description": null, "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PoolHourlySnapshot_filter", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "volume_gte", + "name": "pool", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -92800,31 +91606,23 @@ "deprecationReason": null }, { - "name": "volume_in", + "name": "pool_", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "Pool_filter", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "volume_lt", + "name": "pool_contains", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -92832,11 +91630,11 @@ "deprecationReason": null }, { - "name": "volume_lte", + "name": "pool_contains_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -92844,11 +91642,11 @@ "deprecationReason": null }, { - "name": "volume_not", + "name": "pool_ends_with", "description": null, "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null }, "defaultValue": null, @@ -92856,632 +91654,711 @@ "deprecationReason": null }, { - "name": "volume_not_in", + "name": "pool_ends_with_nocase", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "Pool_orderBy", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "bean", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bean__crosses", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bean__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bean__lastCross", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bean__lastSeason", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bean__liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bean__marketCap", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bean__price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bean__supply", - "description": null, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "bean__supplyInPegLP", + "name": "pool_gt", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "bean__volume", + "name": "pool_gte", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "bean__volumeUSD", + "name": "pool_in", "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "crossEvents", + "name": "pool_lt", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "crosses", + "name": "pool_lte", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dailySnapshot", + "name": "pool_not", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deltaBeans", + "name": "pool_not_contains", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hourlySnapshot", + "name": "pool_not_contains_nocase", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "pool_not_ends_with", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "lastPrice", + "name": "pool_not_ends_with_nocase", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "lastSeason", + "name": "pool_not_in", "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "liquidityUSD", + "name": "pool_not_starts_with", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "reserves", + "name": "pool_not_starts_with_nocase", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "volume", + "name": "pool_starts_with", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Proposal", - "description": null, - "fields": [ - { - "name": "app", + "name": "pool_starts_with_nocase", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "author", + "name": "reserves", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "body", + "name": "reserves_contains", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "choices", + "name": "reserves_contains_nocase", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created", + "name": "reserves_not", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "discussion", + "name": "reserves_not_contains", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "end", + "name": "reserves_not_contains_nocase", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "flagged", + "name": "season", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ipfs", + "name": "season_gt", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "link", + "name": "season_gte", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "network", + "name": "season_in", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "plugins", + "name": "season_lt", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Any", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "privacy", + "name": "season_lte", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "quorum", + "name": "season_not", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "scores", + "name": "season_not_in", "description": null, - "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "scores_by_strategy", + "name": "updatedAt", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Any", + "name": "BigInt", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "scores_state", + "name": "updatedAt_gt", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "scores_total", + "name": "updatedAt_gte", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "BigInt", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "scores_updated", + "name": "updatedAt_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_lt", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "snapshot", + "name": "updatedAt_lte", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "space", + "name": "updatedAt_not", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "Space", + "kind": "SCALAR", + "name": "BigInt", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "start", + "name": "updatedAt_not_in", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "state", + "name": "utilization", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "strategies", + "name": "utilization_gt", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "utilization_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "utilization_in", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Strategy", + "kind": "SCALAR", + "name": "BigDecimal", "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "symbol", + "name": "utilization_lt", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "title", + "name": "utilization_lte", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "utilization_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "utilization_not_in", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "type", + "name": "volume", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "validation", + "name": "volumeUSD", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "Validation", + "kind": "SCALAR", + "name": "BigDecimal", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "votes", + "name": "volumeUSD_gt", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigDecimal", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalWhere", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "app", + "name": "volumeUSD_gte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -93489,15 +92366,19 @@ "deprecationReason": null }, { - "name": "app_in", + "name": "volumeUSD_in", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } } }, "defaultValue": null, @@ -93505,11 +92386,11 @@ "deprecationReason": null }, { - "name": "app_not", + "name": "volumeUSD_lt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigDecimal", "ofType": null }, "defaultValue": null, @@ -93517,15 +92398,43 @@ "deprecationReason": null }, { - "name": "app_not_in", + "name": "volumeUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeUSD_not_in", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } } }, "defaultValue": null, @@ -93533,11 +92442,11 @@ "deprecationReason": null }, { - "name": "author", + "name": "volume_gt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -93545,15 +92454,31 @@ "deprecationReason": null }, { - "name": "author_in", + "name": "volume_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volume_in", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } } }, "defaultValue": null, @@ -93561,11 +92486,11 @@ "deprecationReason": null }, { - "name": "created", + "name": "volume_lt", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -93573,11 +92498,11 @@ "deprecationReason": null }, { - "name": "created_gt", + "name": "volume_lte", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -93585,11 +92510,11 @@ "deprecationReason": null }, { - "name": "created_gte", + "name": "volume_not", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -93597,27 +92522,221 @@ "deprecationReason": null }, { - "name": "created_in", + "name": "volume_not_in", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "PoolHourlySnapshot_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "createdAt", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "created_lt", + "name": "crossEvents", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "crosses", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deltaBeans", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deltaCrosses", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deltaLiquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deltaReserves", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deltaVolume", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deltaVolumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastPrice", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pool", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pool__crosses", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pool__deltaBeans", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pool__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pool__lastCross", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pool__lastPrice", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pool__lastSeason", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pool__liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pool__volume", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pool__volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reserves", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "utilization", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volume", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeUSD", "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "Pool_filter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_change_block", + "description": "Filter for the block changed event.", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", "ofType": null }, "defaultValue": null, @@ -93625,23 +92744,27 @@ "deprecationReason": null }, { - "name": "created_lte", + "name": "and", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Pool_filter", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "end", + "name": "bean", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -93649,11 +92772,11 @@ "deprecationReason": null }, { - "name": "end_gt", + "name": "bean_", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "Bean_filter", "ofType": null }, "defaultValue": null, @@ -93661,11 +92784,11 @@ "deprecationReason": null }, { - "name": "end_gte", + "name": "bean_contains", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -93673,27 +92796,23 @@ "deprecationReason": null }, { - "name": "end_in", + "name": "bean_contains_nocase", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "end_lt", + "name": "bean_ends_with", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -93701,11 +92820,11 @@ "deprecationReason": null }, { - "name": "end_lte", + "name": "bean_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -93713,11 +92832,11 @@ "deprecationReason": null }, { - "name": "flagged", + "name": "bean_gt", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null, @@ -93725,7 +92844,7 @@ "deprecationReason": null }, { - "name": "id", + "name": "bean_gte", "description": null, "type": { "kind": "SCALAR", @@ -93737,15 +92856,19 @@ "deprecationReason": null }, { - "name": "id_in", + "name": "bean_in", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null, @@ -93753,7 +92876,7 @@ "deprecationReason": null }, { - "name": "ipfs", + "name": "bean_lt", "description": null, "type": { "kind": "SCALAR", @@ -93765,23 +92888,19 @@ "deprecationReason": null }, { - "name": "ipfs_in", + "name": "bean_lte", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "network", + "name": "bean_not", "description": null, "type": { "kind": "SCALAR", @@ -93793,23 +92912,19 @@ "deprecationReason": null }, { - "name": "network_in", + "name": "bean_not_contains", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "plugins_contains", + "name": "bean_not_contains_nocase", "description": null, "type": { "kind": "SCALAR", @@ -93821,7 +92936,7 @@ "deprecationReason": null }, { - "name": "scores_state", + "name": "bean_not_ends_with", "description": null, "type": { "kind": "SCALAR", @@ -93833,15 +92948,31 @@ "deprecationReason": null }, { - "name": "scores_state_in", + "name": "bean_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bean_not_in", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null, @@ -93849,7 +92980,7 @@ "deprecationReason": null }, { - "name": "space", + "name": "bean_not_starts_with", "description": null, "type": { "kind": "SCALAR", @@ -93861,27 +92992,23 @@ "deprecationReason": null }, { - "name": "space_in", + "name": "bean_not_starts_with_nocase", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "space_verified", + "name": "bean_starts_with", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null, @@ -93889,7 +93016,31 @@ "deprecationReason": null }, { - "name": "start", + "name": "bean_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "crossEvents_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PoolCross_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "crosses", "description": null, "type": { "kind": "SCALAR", @@ -93901,7 +93052,7 @@ "deprecationReason": null }, { - "name": "start_gt", + "name": "crosses_gt", "description": null, "type": { "kind": "SCALAR", @@ -93913,7 +93064,7 @@ "deprecationReason": null }, { - "name": "start_gte", + "name": "crosses_gte", "description": null, "type": { "kind": "SCALAR", @@ -93925,15 +93076,19 @@ "deprecationReason": null }, { - "name": "start_in", + "name": "crosses_in", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, "defaultValue": null, @@ -93941,7 +93096,7 @@ "deprecationReason": null }, { - "name": "start_lt", + "name": "crosses_lt", "description": null, "type": { "kind": "SCALAR", @@ -93953,7 +93108,7 @@ "deprecationReason": null }, { - "name": "start_lte", + "name": "crosses_lte", "description": null, "type": { "kind": "SCALAR", @@ -93965,11 +93120,11 @@ "deprecationReason": null }, { - "name": "state", + "name": "crosses_not", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -93977,11 +93132,43 @@ "deprecationReason": null }, { - "name": "strategies_contains", + "name": "crosses_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dailySnapshot_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PoolDailySnapshot_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deltaBeans", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -93989,11 +93176,11 @@ "deprecationReason": null }, { - "name": "title_contains", + "name": "deltaBeans_gt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -94001,11 +93188,11 @@ "deprecationReason": null }, { - "name": "type", + "name": "deltaBeans_gte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -94013,15 +93200,19 @@ "deprecationReason": null }, { - "name": "type_in", + "name": "deltaBeans_in", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } } }, "defaultValue": null, @@ -94029,3396 +93220,1208 @@ "deprecationReason": null }, { - "name": "validation", + "name": "deltaBeans_lt", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Query", - "description": null, - "fields": [ + }, { - "name": "_meta", - "description": "Access to subgraph metadata", - "args": [ - { - "name": "block", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "deltaBeans_lte", + "description": null, "type": { - "kind": "OBJECT", - "name": "_Meta_", + "kind": "SCALAR", + "name": "BigInt", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "addDeposit", + "name": "deltaBeans_not", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "AddDeposit", + "kind": "SCALAR", + "name": "BigInt", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "addDeposits", + "name": "deltaBeans_not_in", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "AddDeposit_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddDeposit_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AddDeposit", - "ofType": null - } + "kind": "SCALAR", + "name": "BigInt", + "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "aliases", + "name": "hourlySnapshot_", "description": null, - "args": [ - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AliasWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Alias", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "PoolHourlySnapshot_filter", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beaNFTUser", + "name": "id", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "BeaNFTUser", + "kind": "SCALAR", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beaNFTUsers", + "name": "id_gt", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "BeaNFTUser_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "BeaNFTUser_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BeaNFTUser", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "bean", + "name": "id_lt", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "Bean", + "kind": "SCALAR", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanDailySnapshot", + "name": "id_lte", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "BeanDailySnapshot", + "kind": "SCALAR", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanDailySnapshots", + "name": "id_not", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "BeanDailySnapshot_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "BeanDailySnapshot_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BeanDailySnapshot", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanHourlySnapshot", + "name": "lastCross", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "BeanHourlySnapshot", + "kind": "SCALAR", + "name": "BigInt", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanHourlySnapshots", + "name": "lastCross_gt", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "BeanHourlySnapshot_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "BeanHourlySnapshot_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastCross_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastCross_in", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BeanHourlySnapshot", - "ofType": null - } + "kind": "SCALAR", + "name": "BigInt", + "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beans", + "name": "lastCross_lt", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Bean_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Bean_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastCross_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastCross_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastCross_not_in", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Bean", - "ofType": null - } + "kind": "SCALAR", + "name": "BigInt", + "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanstalk", + "name": "lastPrice", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "Beanstalk", + "kind": "SCALAR", + "name": "BigDecimal", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanstalks", + "name": "lastPrice_gt", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Beanstalk_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastPrice_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastPrice_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Beanstalk_filter", + "name": "BigDecimal", "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastPrice_lt", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastPrice_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastPrice_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastPrice_not_in", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Beanstalk", - "ofType": null - } + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "block", + "name": "lastSeason", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "Block", + "kind": "SCALAR", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "blocks", + "name": "lastSeason_gt", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Block_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastSeason_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastSeason_in", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "chop", + "name": "lastSeason_lt", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "Chop", + "kind": "SCALAR", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "chops", + "name": "lastSeason_lte", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Chop_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Chop_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastSeason_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastSeason_not_in", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Chop", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "collectionData", + "name": "liquidityUSD", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "CollectionData", + "kind": "SCALAR", + "name": "BigDecimal", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "collectionDatas", + "name": "liquidityUSD_gt", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "CollectionData_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CollectionData_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityUSD_in", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CollectionData", - "ofType": null - } + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cross", + "name": "liquidityUSD_lt", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "Cross", + "kind": "SCALAR", + "name": "BigDecimal", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "crosses", + "name": "liquidityUSD_lte", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Cross_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Cross_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityUSD_not_in", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Cross", - "ofType": null - } + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delegation", + "name": "or", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "Delegation", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Pool_filter", + "ofType": null + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delegations", + "name": "reserves", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Delegation_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Delegation_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Delegation", - "ofType": null - } + "kind": "SCALAR", + "name": "BigInt", + "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dewhitelistToken", + "name": "reserves_contains", "description": null, - "args": [ - { - "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", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "DewhitelistToken", - "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dewhitelistTokens", + "name": "reserves_contains_nocase", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "DewhitelistToken_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "DewhitelistToken_filter", + "name": "BigInt", "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reserves_not", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DewhitelistToken", - "ofType": null - } + "kind": "SCALAR", + "name": "BigInt", + "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "farmer", + "name": "reserves_not_contains", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "Farmer", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "farmers", + "name": "reserves_not_contains_nocase", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Farmer_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Farmer_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Farmer", - "ofType": null - } + "kind": "SCALAR", + "name": "BigInt", + "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "fertilizer", + "name": "volume", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "Fertilizer", + "kind": "SCALAR", + "name": "BigInt", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "fertilizerBalance", + "name": "volumeUSD", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "FertilizerBalance", + "kind": "SCALAR", + "name": "BigDecimal", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "fertilizerBalances", + "name": "volumeUSD_gt", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "FertilizerBalance_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FertilizerBalance_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FertilizerBalance", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "fertilizerToken", + "name": "volumeUSD_gte", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "FertilizerToken", + "kind": "SCALAR", + "name": "BigDecimal", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "fertilizerTokens", + "name": "volumeUSD_in", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "FertilizerToken_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FertilizerToken_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FertilizerToken", - "ofType": null - } + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "fertilizerYield", + "name": "volumeUSD_lt", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "FertilizerYield", + "kind": "SCALAR", + "name": "BigDecimal", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "fertilizerYields", + "name": "volumeUSD_lte", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "FertilizerYield_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FertilizerYield_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeUSD_not_in", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FertilizerYield", - "ofType": null - } + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "fertilizers", + "name": "volume_gt", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Fertilizer_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Fertilizer_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volume_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volume_in", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Fertilizer", - "ofType": null - } + "kind": "SCALAR", + "name": "BigInt", + "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "field", + "name": "volume_lt", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "Field", + "kind": "SCALAR", + "name": "BigInt", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "fieldDailySnapshot", + "name": "volume_lte", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "FieldDailySnapshot", + "kind": "SCALAR", + "name": "BigInt", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "fieldDailySnapshots", + "name": "volume_not", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volume_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "FieldDailySnapshot_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", + "name": "BigInt", "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FieldDailySnapshot_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "Pool_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "bean", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bean__crosses", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bean__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bean__lastCross", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bean__lastSeason", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bean__liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bean__marketCap", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bean__price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bean__supply", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bean__supplyInPegLP", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bean__volume", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bean__volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "crossEvents", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "crosses", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dailySnapshot", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deltaBeans", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hourlySnapshot", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastCross", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastPrice", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastSeason", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reserves", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volume", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Proposal", + "description": null, + "fields": [ + { + "name": "app", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "author", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FieldDailySnapshot", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "fieldEvent", + "name": "body", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { - "kind": "INTERFACE", - "name": "FieldEvent", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "fieldEvents", + "name": "choices", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "FieldEvent_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FieldEvent_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -97426,13 +94429,9 @@ "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "FieldEvent", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } } }, @@ -97440,359 +94439,75 @@ "deprecationReason": null }, { - "name": "fieldHourlySnapshot", + "name": "created", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { - "kind": "OBJECT", - "name": "FieldHourlySnapshot", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "fieldHourlySnapshots", + "name": "discussion", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "FieldHourlySnapshot_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FieldHourlySnapshot_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FieldHourlySnapshot", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "fields", + "name": "end", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Field_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Field_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Field", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "follows", + "name": "flagged", "description": null, - "args": [ - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FollowWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { - "kind": "LIST", + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Follow", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -97800,318 +94515,977 @@ "deprecationReason": null }, { - "name": "harvest", + "name": "ipfs", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { - "kind": "OBJECT", - "name": "Harvest", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "harvests", + "name": "link", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Harvest_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Harvest_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "network", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Harvest", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "incentive", + "name": "plugins", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Any", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "privacy", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "Incentive", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "incentives", + "name": "quorum", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Incentive_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scores", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scores_by_strategy", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Any", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scores_state", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scores_total", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scores_updated", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "snapshot", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "space", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Space", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "start", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "strategies", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Strategy", "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "symbol", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "title", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validation", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Validation", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "votes", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProposalWhere", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "app", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "app_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "app_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "app_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "author", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "author_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "end", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "end_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "end_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "end_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "end_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "end_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "flagged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ipfs", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ipfs_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "network", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "network_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "plugins_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scores_state", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scores_state_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "space", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "space_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "space_verified", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "start", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "start_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "start_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "start_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "start_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "start_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "strategies_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "title_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validation", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Query", + "description": null, + "fields": [ + { + "name": "_meta", + "description": "Access to subgraph metadata", + "args": [ { - "name": "where", + "name": "block", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Incentive_filter", + "name": "Block_height", "ofType": null }, "defaultValue": null, @@ -98120,27 +95494,15 @@ } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Incentive", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "_Meta_", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "marketplaceEvent", + "name": "addDeposit", "description": null, "args": [ { @@ -98189,15 +95551,15 @@ } ], "type": { - "kind": "INTERFACE", - "name": "MarketplaceEvent", + "kind": "OBJECT", + "name": "AddDeposit", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "marketplaceEvents", + "name": "addDeposits", "description": null, "args": [ { @@ -98229,7 +95591,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "MarketplaceEvent_orderBy", + "name": "AddDeposit_orderBy", "ofType": null }, "defaultValue": null, @@ -98281,7 +95643,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "MarketplaceEvent_filter", + "name": "AddDeposit_filter", "ofType": null }, "defaultValue": null, @@ -98299,8 +95661,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "MarketplaceEvent", + "kind": "OBJECT", + "name": "AddDeposit", "ofType": null } } @@ -98310,7 +95672,7 @@ "deprecationReason": null }, { - "name": "messages", + "name": "aliases", "description": null, "args": [ { @@ -98366,7 +95728,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "MessageWhere", + "name": "AliasWhere", "ofType": null }, "defaultValue": null, @@ -98379,7 +95741,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Message", + "name": "Alias", "ofType": null } }, @@ -98387,7 +95749,7 @@ "deprecationReason": null }, { - "name": "metapoolOracle", + "name": "beaNFTUser", "description": null, "args": [ { @@ -98437,14 +95799,14 @@ ], "type": { "kind": "OBJECT", - "name": "MetapoolOracle", + "name": "BeaNFTUser", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "metapoolOracles", + "name": "beaNFTUsers", "description": null, "args": [ { @@ -98476,7 +95838,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "MetapoolOracle_orderBy", + "name": "BeaNFTUser_orderBy", "ofType": null }, "defaultValue": null, @@ -98528,7 +95890,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "MetapoolOracle_filter", + "name": "BeaNFTUser_filter", "ofType": null }, "defaultValue": null, @@ -98547,7 +95909,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "MetapoolOracle", + "name": "BeaNFTUser", "ofType": null } } @@ -98557,23 +95919,7 @@ "deprecationReason": null }, { - "name": "networks", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Item", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "plot", + "name": "bean", "description": null, "args": [ { @@ -98623,14 +95969,14 @@ ], "type": { "kind": "OBJECT", - "name": "Plot", + "name": "Bean", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "plots", + "name": "beanCross", "description": null, "args": [ { @@ -98646,12 +95992,69 @@ "deprecationReason": null }, { - "name": "first", + "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "BeanCross", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "beanCrosses", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": "100", "isDeprecated": false, @@ -98662,7 +96065,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Plot_orderBy", + "name": "BeanCross_orderBy", "ofType": null }, "defaultValue": null, @@ -98714,7 +96117,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Plot_filter", + "name": "BeanCross_filter", "ofType": null }, "defaultValue": null, @@ -98733,7 +96136,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Plot", + "name": "BeanCross", "ofType": null } } @@ -98743,23 +96146,7 @@ "deprecationReason": null }, { - "name": "plugins", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Item", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "podFill", + "name": "beanDailySnapshot", "description": null, "args": [ { @@ -98809,14 +96196,14 @@ ], "type": { "kind": "OBJECT", - "name": "PodFill", + "name": "BeanDailySnapshot", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podFills", + "name": "beanDailySnapshots", "description": null, "args": [ { @@ -98848,7 +96235,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodFill_orderBy", + "name": "BeanDailySnapshot_orderBy", "ofType": null }, "defaultValue": null, @@ -98900,7 +96287,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodFill_filter", + "name": "BeanDailySnapshot_filter", "ofType": null }, "defaultValue": null, @@ -98919,7 +96306,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodFill", + "name": "BeanDailySnapshot", "ofType": null } } @@ -98929,7 +96316,7 @@ "deprecationReason": null }, { - "name": "podListing", + "name": "beanHourlySnapshot", "description": null, "args": [ { @@ -98979,14 +96366,14 @@ ], "type": { "kind": "OBJECT", - "name": "PodListing", + "name": "BeanHourlySnapshot", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podListingCancelled", + "name": "beanHourlySnapshots", "description": null, "args": [ { @@ -99002,21 +96389,53 @@ "deprecationReason": null }, { - "name": "id", + "name": "first", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "BeanHourlySnapshot_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + }, { "name": "subgraphError", "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", @@ -99032,18 +96451,42 @@ "defaultValue": "deny", "isDeprecated": false, "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BeanHourlySnapshot_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "OBJECT", - "name": "PodListingCancelled", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BeanHourlySnapshot", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podListingCancelleds", + "name": "beans", "description": null, "args": [ { @@ -99075,7 +96518,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodListingCancelled_orderBy", + "name": "Bean_orderBy", "ofType": null }, "defaultValue": null, @@ -99127,7 +96570,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodListingCancelled_filter", + "name": "Bean_filter", "ofType": null }, "defaultValue": null, @@ -99146,7 +96589,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodListingCancelled", + "name": "Bean", "ofType": null } } @@ -99156,7 +96599,7 @@ "deprecationReason": null }, { - "name": "podListingCreated", + "name": "beanstalk", "description": null, "args": [ { @@ -99206,14 +96649,14 @@ ], "type": { "kind": "OBJECT", - "name": "PodListingCreated", + "name": "Beanstalk", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podListingCreateds", + "name": "beanstalks", "description": null, "args": [ { @@ -99245,7 +96688,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodListingCreated_orderBy", + "name": "Beanstalk_orderBy", "ofType": null }, "defaultValue": null, @@ -99297,7 +96740,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodListingCreated_filter", + "name": "Beanstalk_filter", "ofType": null }, "defaultValue": null, @@ -99316,7 +96759,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodListingCreated", + "name": "Beanstalk", "ofType": null } } @@ -99326,7 +96769,7 @@ "deprecationReason": null }, { - "name": "podListingFilled", + "name": "block", "description": null, "args": [ { @@ -99376,14 +96819,14 @@ ], "type": { "kind": "OBJECT", - "name": "PodListingFilled", + "name": "Block", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podListingFilleds", + "name": "blocks", "description": null, "args": [ { @@ -99415,7 +96858,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodListingFilled_orderBy", + "name": "Block_orderBy", "ofType": null }, "defaultValue": null, @@ -99467,7 +96910,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodListingFilled_filter", + "name": "Block_filter", "ofType": null }, "defaultValue": null, @@ -99486,7 +96929,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodListingFilled", + "name": "Block", "ofType": null } } @@ -99496,7 +96939,64 @@ "deprecationReason": null }, { - "name": "podListings", + "name": "chop", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Chop", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "chops", "description": null, "args": [ { @@ -99528,7 +97028,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodListing_orderBy", + "name": "Chop_orderBy", "ofType": null }, "defaultValue": null, @@ -99580,7 +97080,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodListing_filter", + "name": "Chop_filter", "ofType": null }, "defaultValue": null, @@ -99599,7 +97099,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodListing", + "name": "Chop", "ofType": null } } @@ -99609,7 +97109,7 @@ "deprecationReason": null }, { - "name": "podMarketplace", + "name": "collectionData", "description": null, "args": [ { @@ -99659,14 +97159,127 @@ ], "type": { "kind": "OBJECT", - "name": "PodMarketplace", + "name": "CollectionData", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podMarketplaceDailySnapshot", + "name": "collectionDatas", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "CollectionData_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CollectionData_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CollectionData", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delegation", "description": null, "args": [ { @@ -99716,14 +97329,14 @@ ], "type": { "kind": "OBJECT", - "name": "PodMarketplaceDailySnapshot", + "name": "Delegation", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podMarketplaceDailySnapshots", + "name": "delegations", "description": null, "args": [ { @@ -99755,7 +97368,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodMarketplaceDailySnapshot_orderBy", + "name": "Delegation_orderBy", "ofType": null }, "defaultValue": null, @@ -99807,7 +97420,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodMarketplaceDailySnapshot_filter", + "name": "Delegation_filter", "ofType": null }, "defaultValue": null, @@ -99826,7 +97439,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodMarketplaceDailySnapshot", + "name": "Delegation", "ofType": null } } @@ -99836,7 +97449,7 @@ "deprecationReason": null }, { - "name": "podMarketplaceHourlySnapshot", + "name": "dewhitelistToken", "description": null, "args": [ { @@ -99886,14 +97499,14 @@ ], "type": { "kind": "OBJECT", - "name": "PodMarketplaceHourlySnapshot", + "name": "DewhitelistToken", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podMarketplaceHourlySnapshots", + "name": "dewhitelistTokens", "description": null, "args": [ { @@ -99925,7 +97538,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodMarketplaceHourlySnapshot_orderBy", + "name": "DewhitelistToken_orderBy", "ofType": null }, "defaultValue": null, @@ -99977,7 +97590,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodMarketplaceHourlySnapshot_filter", + "name": "DewhitelistToken_filter", "ofType": null }, "defaultValue": null, @@ -99996,7 +97609,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodMarketplaceHourlySnapshot", + "name": "DewhitelistToken", "ofType": null } } @@ -100006,7 +97619,64 @@ "deprecationReason": null }, { - "name": "podMarketplaces", + "name": "farmer", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Farmer", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "farmers", "description": null, "args": [ { @@ -100038,7 +97708,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodMarketplace_orderBy", + "name": "Farmer_orderBy", "ofType": null }, "defaultValue": null, @@ -100090,7 +97760,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodMarketplace_filter", + "name": "Farmer_filter", "ofType": null }, "defaultValue": null, @@ -100109,7 +97779,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodMarketplace", + "name": "Farmer", "ofType": null } } @@ -100119,7 +97789,7 @@ "deprecationReason": null }, { - "name": "podOrder", + "name": "fertilizer", "description": null, "args": [ { @@ -100169,14 +97839,14 @@ ], "type": { "kind": "OBJECT", - "name": "PodOrder", + "name": "Fertilizer", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podOrderCancelled", + "name": "fertilizerBalance", "description": null, "args": [ { @@ -100226,14 +97896,14 @@ ], "type": { "kind": "OBJECT", - "name": "PodOrderCancelled", + "name": "FertilizerBalance", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podOrderCancelleds", + "name": "fertilizerBalances", "description": null, "args": [ { @@ -100265,7 +97935,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodOrderCancelled_orderBy", + "name": "FertilizerBalance_orderBy", "ofType": null }, "defaultValue": null, @@ -100317,7 +97987,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodOrderCancelled_filter", + "name": "FertilizerBalance_filter", "ofType": null }, "defaultValue": null, @@ -100336,7 +98006,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodOrderCancelled", + "name": "FertilizerBalance", "ofType": null } } @@ -100346,7 +98016,7 @@ "deprecationReason": null }, { - "name": "podOrderCreated", + "name": "fertilizerToken", "description": null, "args": [ { @@ -100396,14 +98066,14 @@ ], "type": { "kind": "OBJECT", - "name": "PodOrderCreated", + "name": "FertilizerToken", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podOrderCreateds", + "name": "fertilizerTokens", "description": null, "args": [ { @@ -100435,7 +98105,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodOrderCreated_orderBy", + "name": "FertilizerToken_orderBy", "ofType": null }, "defaultValue": null, @@ -100487,7 +98157,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodOrderCreated_filter", + "name": "FertilizerToken_filter", "ofType": null }, "defaultValue": null, @@ -100506,7 +98176,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodOrderCreated", + "name": "FertilizerToken", "ofType": null } } @@ -100516,7 +98186,7 @@ "deprecationReason": null }, { - "name": "podOrderFilled", + "name": "fertilizerYield", "description": null, "args": [ { @@ -100566,14 +98236,14 @@ ], "type": { "kind": "OBJECT", - "name": "PodOrderFilled", + "name": "FertilizerYield", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podOrderFilleds", + "name": "fertilizerYields", "description": null, "args": [ { @@ -100605,7 +98275,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodOrderFilled_orderBy", + "name": "FertilizerYield_orderBy", "ofType": null }, "defaultValue": null, @@ -100657,7 +98327,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodOrderFilled_filter", + "name": "FertilizerYield_filter", "ofType": null }, "defaultValue": null, @@ -100676,7 +98346,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodOrderFilled", + "name": "FertilizerYield", "ofType": null } } @@ -100686,7 +98356,7 @@ "deprecationReason": null }, { - "name": "podOrders", + "name": "fertilizers", "description": null, "args": [ { @@ -100718,7 +98388,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodOrder_orderBy", + "name": "Fertilizer_orderBy", "ofType": null }, "defaultValue": null, @@ -100770,7 +98440,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodOrder_filter", + "name": "Fertilizer_filter", "ofType": null }, "defaultValue": null, @@ -100789,7 +98459,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodOrder", + "name": "Fertilizer", "ofType": null } } @@ -100799,7 +98469,7 @@ "deprecationReason": null }, { - "name": "podTransfer", + "name": "field", "description": null, "args": [ { @@ -100849,14 +98519,71 @@ ], "type": { "kind": "OBJECT", - "name": "PodTransfer", + "name": "Field", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podTransfers", + "name": "fieldDailySnapshot", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "FieldDailySnapshot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fieldDailySnapshots", "description": null, "args": [ { @@ -100888,7 +98615,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodTransfer_orderBy", + "name": "FieldDailySnapshot_orderBy", "ofType": null }, "defaultValue": null, @@ -100940,7 +98667,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodTransfer_filter", + "name": "FieldDailySnapshot_filter", "ofType": null }, "defaultValue": null, @@ -100959,7 +98686,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodTransfer", + "name": "FieldDailySnapshot", "ofType": null } } @@ -100969,64 +98696,7 @@ "deprecationReason": null }, { - "name": "pool", - "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Pool", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "poolDailySnapshot", + "name": "fieldEvent", "description": null, "args": [ { @@ -101075,15 +98745,15 @@ } ], "type": { - "kind": "OBJECT", - "name": "PoolDailySnapshot", + "kind": "INTERFACE", + "name": "FieldEvent", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "poolDailySnapshots", + "name": "fieldEvents", "description": null, "args": [ { @@ -101115,7 +98785,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PoolDailySnapshot_orderBy", + "name": "FieldEvent_orderBy", "ofType": null }, "defaultValue": null, @@ -101167,7 +98837,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PoolDailySnapshot_filter", + "name": "FieldEvent_filter", "ofType": null }, "defaultValue": null, @@ -101185,8 +98855,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PoolDailySnapshot", + "kind": "INTERFACE", + "name": "FieldEvent", "ofType": null } } @@ -101196,7 +98866,7 @@ "deprecationReason": null }, { - "name": "poolHourlySnapshot", + "name": "fieldHourlySnapshot", "description": null, "args": [ { @@ -101246,14 +98916,14 @@ ], "type": { "kind": "OBJECT", - "name": "PoolHourlySnapshot", + "name": "FieldHourlySnapshot", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "poolHourlySnapshots", + "name": "fieldHourlySnapshots", "description": null, "args": [ { @@ -101285,7 +98955,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PoolHourlySnapshot_orderBy", + "name": "FieldHourlySnapshot_orderBy", "ofType": null }, "defaultValue": null, @@ -101337,7 +99007,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PoolHourlySnapshot_filter", + "name": "FieldHourlySnapshot_filter", "ofType": null }, "defaultValue": null, @@ -101356,7 +99026,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PoolHourlySnapshot", + "name": "FieldHourlySnapshot", "ofType": null } } @@ -101366,7 +99036,7 @@ "deprecationReason": null }, { - "name": "pools", + "name": "fields", "description": null, "args": [ { @@ -101398,7 +99068,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Pool_orderBy", + "name": "Field_orderBy", "ofType": null }, "defaultValue": null, @@ -101450,7 +99120,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Pool_filter", + "name": "Field_filter", "ofType": null }, "defaultValue": null, @@ -101469,7 +99139,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Pool", + "name": "Field", "ofType": null } } @@ -101479,32 +99149,7 @@ "deprecationReason": null }, { - "name": "proposal", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Proposal", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposals", + "name": "follows", "description": null, "args": [ { @@ -101560,7 +99205,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProposalWhere", + "name": "FollowWhere", "ofType": null }, "defaultValue": null, @@ -101573,7 +99218,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Proposal", + "name": "Follow", "ofType": null } }, @@ -101581,56 +99226,7 @@ "deprecationReason": null }, { - "name": "ranking", - "description": null, - "args": [ - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RankingWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "RankingObject", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "removeDeposit", + "name": "harvest", "description": null, "args": [ { @@ -101680,14 +99276,14 @@ ], "type": { "kind": "OBJECT", - "name": "RemoveDeposit", + "name": "Harvest", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "removeDeposits", + "name": "harvests", "description": null, "args": [ { @@ -101719,7 +99315,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "RemoveDeposit_orderBy", + "name": "Harvest_orderBy", "ofType": null }, "defaultValue": null, @@ -101771,7 +99367,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "RemoveDeposit_filter", + "name": "Harvest_filter", "ofType": null }, "defaultValue": null, @@ -101790,7 +99386,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RemoveDeposit", + "name": "Harvest", "ofType": null } } @@ -101800,7 +99396,7 @@ "deprecationReason": null }, { - "name": "reward", + "name": "incentive", "description": null, "args": [ { @@ -101850,14 +99446,14 @@ ], "type": { "kind": "OBJECT", - "name": "Reward", + "name": "Incentive", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "rewards", + "name": "incentives", "description": null, "args": [ { @@ -101889,7 +99485,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Reward_orderBy", + "name": "Incentive_orderBy", "ofType": null }, "defaultValue": null, @@ -101941,7 +99537,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Reward_filter", + "name": "Incentive_filter", "ofType": null }, "defaultValue": null, @@ -101960,7 +99556,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Reward", + "name": "Incentive", "ofType": null } } @@ -101970,7 +99566,7 @@ "deprecationReason": null }, { - "name": "season", + "name": "marketplaceEvent", "description": null, "args": [ { @@ -102019,15 +99615,15 @@ } ], "type": { - "kind": "OBJECT", - "name": "Season", + "kind": "INTERFACE", + "name": "MarketplaceEvent", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "seasons", + "name": "marketplaceEvents", "description": null, "args": [ { @@ -102059,7 +99655,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Season_orderBy", + "name": "MarketplaceEvent_orderBy", "ofType": null }, "defaultValue": null, @@ -102111,7 +99707,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Season_filter", + "name": "MarketplaceEvent_filter", "ofType": null }, "defaultValue": null, @@ -102129,8 +99725,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Season", + "kind": "INTERFACE", + "name": "MarketplaceEvent", "ofType": null } } @@ -102140,7 +99736,84 @@ "deprecationReason": null }, { - "name": "seedChange", + "name": "messages", + "description": null, + "args": [ + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MessageWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Message", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "metapoolOracle", "description": null, "args": [ { @@ -102190,14 +99863,14 @@ ], "type": { "kind": "OBJECT", - "name": "SeedChange", + "name": "MetapoolOracle", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "seedChanges", + "name": "metapoolOracles", "description": null, "args": [ { @@ -102229,7 +99902,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "SeedChange_orderBy", + "name": "MetapoolOracle_orderBy", "ofType": null }, "defaultValue": null, @@ -102281,7 +99954,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SeedChange_filter", + "name": "MetapoolOracle_filter", "ofType": null }, "defaultValue": null, @@ -102300,7 +99973,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SeedChange", + "name": "MetapoolOracle", "ofType": null } } @@ -102310,7 +99983,23 @@ "deprecationReason": null }, { - "name": "sig", + "name": "networks", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Item", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "plot", "description": null, "args": [ { @@ -102360,14 +100049,14 @@ ], "type": { "kind": "OBJECT", - "name": "Sig", + "name": "Plot", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sigs", + "name": "plots", "description": null, "args": [ { @@ -102399,7 +100088,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Sig_orderBy", + "name": "Plot_orderBy", "ofType": null }, "defaultValue": null, @@ -102451,7 +100140,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Sig_filter", + "name": "Plot_filter", "ofType": null }, "defaultValue": null, @@ -102470,7 +100159,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Sig", + "name": "Plot", "ofType": null } } @@ -102480,121 +100169,23 @@ "deprecationReason": null }, { - "name": "silo", + "name": "plugins", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { - "kind": "OBJECT", - "name": "Silo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "siloAsset", - "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Item", + "ofType": null } - ], - "type": { - "kind": "OBJECT", - "name": "SiloAsset", - "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloAssetDailySnapshot", + "name": "podFill", "description": null, "args": [ { @@ -102644,14 +100235,14 @@ ], "type": { "kind": "OBJECT", - "name": "SiloAssetDailySnapshot", + "name": "PodFill", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloAssetDailySnapshots", + "name": "podFills", "description": null, "args": [ { @@ -102683,7 +100274,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "SiloAssetDailySnapshot_orderBy", + "name": "PodFill_orderBy", "ofType": null }, "defaultValue": null, @@ -102735,7 +100326,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SiloAssetDailySnapshot_filter", + "name": "PodFill_filter", "ofType": null }, "defaultValue": null, @@ -102754,7 +100345,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SiloAssetDailySnapshot", + "name": "PodFill", "ofType": null } } @@ -102764,7 +100355,7 @@ "deprecationReason": null }, { - "name": "siloAssetHourlySnapshot", + "name": "podListing", "description": null, "args": [ { @@ -102814,14 +100405,14 @@ ], "type": { "kind": "OBJECT", - "name": "SiloAssetHourlySnapshot", + "name": "PodListing", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloAssetHourlySnapshots", + "name": "podListingCancelled", "description": null, "args": [ { @@ -102837,53 +100428,21 @@ "deprecationReason": null }, { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "SiloAssetHourlySnapshot_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", + "name": "id", "description": null, "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": null - }, { "name": "subgraphError", "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", @@ -102899,42 +100458,18 @@ "defaultValue": "deny", "isDeprecated": false, "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SiloAssetHourlySnapshot_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SiloAssetHourlySnapshot", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "PodListingCancelled", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloAssets", + "name": "podListingCancelleds", "description": null, "args": [ { @@ -102966,7 +100501,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "SiloAsset_orderBy", + "name": "PodListingCancelled_orderBy", "ofType": null }, "defaultValue": null, @@ -103018,7 +100553,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SiloAsset_filter", + "name": "PodListingCancelled_filter", "ofType": null }, "defaultValue": null, @@ -103037,7 +100572,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SiloAsset", + "name": "PodListingCancelled", "ofType": null } } @@ -103047,7 +100582,7 @@ "deprecationReason": null }, { - "name": "siloDailySnapshot", + "name": "podListingCreated", "description": null, "args": [ { @@ -103097,14 +100632,14 @@ ], "type": { "kind": "OBJECT", - "name": "SiloDailySnapshot", + "name": "PodListingCreated", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloDailySnapshots", + "name": "podListingCreateds", "description": null, "args": [ { @@ -103136,7 +100671,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "SiloDailySnapshot_orderBy", + "name": "PodListingCreated_orderBy", "ofType": null }, "defaultValue": null, @@ -103188,7 +100723,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SiloDailySnapshot_filter", + "name": "PodListingCreated_filter", "ofType": null }, "defaultValue": null, @@ -103207,7 +100742,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SiloDailySnapshot", + "name": "PodListingCreated", "ofType": null } } @@ -103217,7 +100752,7 @@ "deprecationReason": null }, { - "name": "siloDeposit", + "name": "podListingFilled", "description": null, "args": [ { @@ -103267,14 +100802,14 @@ ], "type": { "kind": "OBJECT", - "name": "SiloDeposit", + "name": "PodListingFilled", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloDeposits", + "name": "podListingFilleds", "description": null, "args": [ { @@ -103306,7 +100841,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "SiloDeposit_orderBy", + "name": "PodListingFilled_orderBy", "ofType": null }, "defaultValue": null, @@ -103358,7 +100893,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SiloDeposit_filter", + "name": "PodListingFilled_filter", "ofType": null }, "defaultValue": null, @@ -103377,7 +100912,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SiloDeposit", + "name": "PodListingFilled", "ofType": null } } @@ -103387,64 +100922,7 @@ "deprecationReason": null }, { - "name": "siloEvent", - "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "INTERFACE", - "name": "SiloEvent", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "siloEvents", + "name": "podListings", "description": null, "args": [ { @@ -103476,7 +100954,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "SiloEvent_orderBy", + "name": "PodListing_orderBy", "ofType": null }, "defaultValue": null, @@ -103528,7 +101006,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SiloEvent_filter", + "name": "PodListing_filter", "ofType": null }, "defaultValue": null, @@ -103546,8 +101024,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "SiloEvent", + "kind": "OBJECT", + "name": "PodListing", "ofType": null } } @@ -103557,7 +101035,7 @@ "deprecationReason": null }, { - "name": "siloHourlySnapshot", + "name": "podMarketplace", "description": null, "args": [ { @@ -103607,14 +101085,71 @@ ], "type": { "kind": "OBJECT", - "name": "SiloHourlySnapshot", + "name": "PodMarketplace", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloHourlySnapshots", + "name": "podMarketplaceDailySnapshot", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "PodMarketplaceDailySnapshot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "podMarketplaceDailySnapshots", "description": null, "args": [ { @@ -103646,7 +101181,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "SiloHourlySnapshot_orderBy", + "name": "PodMarketplaceDailySnapshot_orderBy", "ofType": null }, "defaultValue": null, @@ -103698,7 +101233,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SiloHourlySnapshot_filter", + "name": "PodMarketplaceDailySnapshot_filter", "ofType": null }, "defaultValue": null, @@ -103717,7 +101252,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SiloHourlySnapshot", + "name": "PodMarketplaceDailySnapshot", "ofType": null } } @@ -103727,7 +101262,7 @@ "deprecationReason": null }, { - "name": "siloWithdraw", + "name": "podMarketplaceHourlySnapshot", "description": null, "args": [ { @@ -103777,14 +101312,14 @@ ], "type": { "kind": "OBJECT", - "name": "SiloWithdraw", + "name": "PodMarketplaceHourlySnapshot", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloWithdraws", + "name": "podMarketplaceHourlySnapshots", "description": null, "args": [ { @@ -103816,7 +101351,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "SiloWithdraw_orderBy", + "name": "PodMarketplaceHourlySnapshot_orderBy", "ofType": null }, "defaultValue": null, @@ -103868,7 +101403,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SiloWithdraw_filter", + "name": "PodMarketplaceHourlySnapshot_filter", "ofType": null }, "defaultValue": null, @@ -103887,7 +101422,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SiloWithdraw", + "name": "PodMarketplaceHourlySnapshot", "ofType": null } } @@ -103897,64 +101432,7 @@ "deprecationReason": null }, { - "name": "siloYield", - "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SiloYield", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "siloYields", + "name": "podMarketplaces", "description": null, "args": [ { @@ -103986,7 +101464,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "SiloYield_orderBy", + "name": "PodMarketplace_orderBy", "ofType": null }, "defaultValue": null, @@ -104038,7 +101516,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SiloYield_filter", + "name": "PodMarketplace_filter", "ofType": null }, "defaultValue": null, @@ -104057,7 +101535,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SiloYield", + "name": "PodMarketplace", "ofType": null } } @@ -104067,7 +101545,7 @@ "deprecationReason": null }, { - "name": "silos", + "name": "podOrder", "description": null, "args": [ { @@ -104083,35 +101561,56 @@ "deprecationReason": null }, { - "name": "first", + "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": "100", + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "orderBy", - "description": null, + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", "type": { - "kind": "ENUM", - "name": "Silo_orderBy", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } }, - "defaultValue": null, + "defaultValue": "deny", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "PodOrder", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "podOrderCancelled", + "description": null, + "args": [ { - "name": "orderDirection", - "description": 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": "ENUM", - "name": "OrderDirection", + "kind": "INPUT_OBJECT", + "name": "Block_height", "ofType": null }, "defaultValue": null, @@ -104119,14 +101618,18 @@ "deprecationReason": null }, { - "name": "skip", + "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": "0", + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, @@ -104145,85 +101648,32 @@ "defaultValue": "deny", "isDeprecated": false, "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Silo_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Silo", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skins", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Item", - "ofType": null - } + "kind": "OBJECT", + "name": "PodOrderCancelled", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "space", + "name": "podOrderCancelleds", "description": null, "args": [ { - "name": "id", - "description": 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": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "Block_height", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Space", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "spaces", - "description": null, - "args": [ + }, { "name": "first", "description": null, @@ -104232,7 +101682,7 @@ "name": "Int", "ofType": null }, - "defaultValue": null, + "defaultValue": "100", "isDeprecated": false, "deprecationReason": null }, @@ -104240,8 +101690,8 @@ "name": "orderBy", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "PodOrderCancelled_orderBy", "ofType": null }, "defaultValue": null, @@ -104268,7 +101718,23 @@ "name": "Int", "ofType": null }, - "defaultValue": null, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", "isDeprecated": false, "deprecationReason": null }, @@ -104277,7 +101743,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SpaceWhere", + "name": "PodOrderCancelled_filter", "ofType": null }, "defaultValue": null, @@ -104286,19 +101752,27 @@ } ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Space", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PodOrderCancelled", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "stalkChange", + "name": "podOrderCreated", "description": null, "args": [ { @@ -104348,14 +101822,14 @@ ], "type": { "kind": "OBJECT", - "name": "StalkChange", + "name": "PodOrderCreated", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "stalkChanges", + "name": "podOrderCreateds", "description": null, "args": [ { @@ -104387,7 +101861,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "StalkChange_orderBy", + "name": "PodOrderCreated_orderBy", "ofType": null }, "defaultValue": null, @@ -104439,7 +101913,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "StalkChange_filter", + "name": "PodOrderCreated_filter", "ofType": null }, "defaultValue": null, @@ -104458,7 +101932,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "StalkChange", + "name": "PodOrderCreated", "ofType": null } } @@ -104468,34 +101942,78 @@ "deprecationReason": null }, { - "name": "statement", + "name": "podOrderFilled", "description": null, "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "Statement", + "name": "PodOrderFilled", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "statements", + "name": "podOrderFilleds", "description": null, "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "first", "description": null, @@ -104504,7 +102022,7 @@ "name": "Int", "ofType": null }, - "defaultValue": null, + "defaultValue": "100", "isDeprecated": false, "deprecationReason": null }, @@ -104512,8 +102030,8 @@ "name": "orderBy", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "PodOrderFilled_orderBy", "ofType": null }, "defaultValue": null, @@ -104540,7 +102058,23 @@ "name": "Int", "ofType": null }, - "defaultValue": null, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", "isDeprecated": false, "deprecationReason": null }, @@ -104549,7 +102083,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "StatementsWhere", + "name": "PodOrderFilled_filter", "ofType": null }, "defaultValue": null, @@ -104558,62 +102092,211 @@ } ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Statement", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PodOrderFilled", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "strategies", + "name": "podOrders", "description": null, - "args": [], + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "PodOrder_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PodOrder_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "StrategyItem", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PodOrder", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "strategy", + "name": "podTransfer", "description": null, "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "StrategyItem", + "name": "PodTransfer", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "subscriptions", + "name": "podTransfers", "description": null, "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "first", "description": null, @@ -104622,7 +102305,7 @@ "name": "Int", "ofType": null }, - "defaultValue": null, + "defaultValue": "100", "isDeprecated": false, "deprecationReason": null }, @@ -104630,8 +102313,8 @@ "name": "orderBy", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "PodTransfer_orderBy", "ofType": null }, "defaultValue": null, @@ -104658,7 +102341,23 @@ "name": "Int", "ofType": null }, - "defaultValue": null, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", "isDeprecated": false, "deprecationReason": null }, @@ -104667,7 +102366,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SubscriptionWhere", + "name": "PodTransfer_filter", "ofType": null }, "defaultValue": null, @@ -104676,19 +102375,27 @@ } ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Subscription", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PodTransfer", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "token", + "name": "pool", "description": null, "args": [ { @@ -104738,14 +102445,71 @@ ], "type": { "kind": "OBJECT", - "name": "Token", + "name": "Pool", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "tokens", + "name": "poolCross", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "PoolCross", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "poolCrosses", "description": null, "args": [ { @@ -104777,7 +102541,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Token_orderBy", + "name": "PoolCross_orderBy", "ofType": null }, "defaultValue": null, @@ -104829,7 +102593,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Token_filter", + "name": "PoolCross_filter", "ofType": null }, "defaultValue": null, @@ -104848,7 +102612,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Token", + "name": "PoolCross", "ofType": null } } @@ -104858,34 +102622,248 @@ "deprecationReason": null }, { - "name": "user", + "name": "poolDailySnapshot", "description": null, "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "id", "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "PoolDailySnapshot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "poolDailySnapshots", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "PoolDailySnapshot_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PoolDailySnapshot_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PoolDailySnapshot", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "poolHourlySnapshot", + "description": null, + "args": [ + { + "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, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "User", + "name": "PoolHourlySnapshot", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "users", + "name": "poolHourlySnapshots", "description": null, "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "first", "description": null, @@ -104894,7 +102872,7 @@ "name": "Int", "ofType": null }, - "defaultValue": null, + "defaultValue": "100", "isDeprecated": false, "deprecationReason": null }, @@ -104902,8 +102880,8 @@ "name": "orderBy", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "PoolHourlySnapshot_orderBy", "ofType": null }, "defaultValue": null, @@ -104930,7 +102908,23 @@ "name": "Int", "ofType": null }, - "defaultValue": null, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", "isDeprecated": false, "deprecationReason": null }, @@ -104939,7 +102933,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "UsersWhere", + "name": "PoolHourlySnapshot_filter", "ofType": null }, "defaultValue": null, @@ -104948,35 +102942,140 @@ } ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PoolHourlySnapshot", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "validations", + "name": "pools", "description": null, - "args": [], + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Pool_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Pool_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Item", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Pool", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "vote", + "name": "proposal", "description": null, "args": [ { @@ -104994,14 +103093,14 @@ ], "type": { "kind": "OBJECT", - "name": "Vote", + "name": "Proposal", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "votes", + "name": "proposals", "description": null, "args": [ { @@ -105057,7 +103156,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "VoteWhere", + "name": "ProposalWhere", "ofType": null }, "defaultValue": null, @@ -105070,7 +103169,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Vote", + "name": "Proposal", "ofType": null } }, @@ -105078,15 +103177,15 @@ "deprecationReason": null }, { - "name": "vp", + "name": "ranking", "description": null, "args": [ { - "name": "proposal", + "name": "first", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -105094,14 +103193,63 @@ "deprecationReason": null }, { - "name": "space", + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RankingWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "RankingObject", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "removeDeposit", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, @@ -105110,32 +103258,145 @@ "deprecationReason": null }, { - "name": "voter", - "description": 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": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", "ofType": null } }, - "defaultValue": null, + "defaultValue": "deny", "isDeprecated": false, "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "Vp", + "name": "RemoveDeposit", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "whitelistToken", + "name": "removeDeposits", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "RemoveDeposit_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveDeposit_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RemoveDeposit", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reward", "description": null, "args": [ { @@ -105185,14 +103446,14 @@ ], "type": { "kind": "OBJECT", - "name": "WhitelistToken", + "name": "Reward", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "whitelistTokens", + "name": "rewards", "description": null, "args": [ { @@ -105224,7 +103485,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "WhitelistToken_orderBy", + "name": "Reward_orderBy", "ofType": null }, "defaultValue": null, @@ -105276,7 +103537,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "WhitelistToken_filter", + "name": "Reward_filter", "ofType": null }, "defaultValue": null, @@ -105295,7 +103556,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "WhitelistToken", + "name": "Reward", "ofType": null } } @@ -105303,28 +103564,30 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RankingObject", - "description": null, - "fields": [ + }, { - "name": "items", + "name": "roles", "description": null, - "args": [], + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RolesWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "Space", + "name": "Role", "ofType": null } }, @@ -105332,48 +103595,3580 @@ "deprecationReason": null }, { - "name": "metrics", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Metrics", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RankingWhere", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "category", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", + "name": "season", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Season", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "seasons", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Season_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Season_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Season", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "seedChange", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SeedChange", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "seedChanges", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "SeedChange_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SeedChange_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SeedChange", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sig", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Sig", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sigs", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Sig_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Sig_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Sig", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "silo", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Silo", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siloAsset", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SiloAsset", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siloAssetDailySnapshot", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SiloAssetDailySnapshot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siloAssetDailySnapshots", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "SiloAssetDailySnapshot_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SiloAssetDailySnapshot_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SiloAssetDailySnapshot", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siloAssetHourlySnapshot", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SiloAssetHourlySnapshot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siloAssetHourlySnapshots", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "SiloAssetHourlySnapshot_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SiloAssetHourlySnapshot_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SiloAssetHourlySnapshot", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siloAssets", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "SiloAsset_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SiloAsset_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SiloAsset", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siloDailySnapshot", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SiloDailySnapshot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siloDailySnapshots", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "SiloDailySnapshot_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SiloDailySnapshot_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SiloDailySnapshot", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siloDeposit", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SiloDeposit", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siloDeposits", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "SiloDeposit_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SiloDeposit_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SiloDeposit", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siloEvent", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "INTERFACE", + "name": "SiloEvent", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siloEvents", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "SiloEvent_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SiloEvent_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "SiloEvent", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siloHourlySnapshot", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SiloHourlySnapshot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siloHourlySnapshots", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "SiloHourlySnapshot_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SiloHourlySnapshot_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SiloHourlySnapshot", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siloWithdraw", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SiloWithdraw", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siloWithdraws", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "SiloWithdraw_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SiloWithdraw_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SiloWithdraw", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siloYield", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SiloYield", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siloYields", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "SiloYield_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SiloYield_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SiloYield", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "silos", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Silo_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Silo_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Silo", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skins", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Item", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "space", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Space", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "spaces", + "description": null, + "args": [ + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SpaceWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Space", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkChange", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "StalkChange", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stalkChanges", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "StalkChange_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StalkChange_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StalkChange", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "statement", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Statement", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "statements", + "description": null, + "args": [ + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StatementsWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Statement", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "strategies", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StrategyItem", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "strategy", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "StrategyItem", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subscriptions", + "description": null, + "args": [ + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SubscriptionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Subscription", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Token", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokens", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Token_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Token_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "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": "user", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "users", + "description": null, + "args": [ + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UsersWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validations", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Item", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "vote", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Vote", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "votes", + "description": null, + "args": [ + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "VoteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Vote", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "vp", + "description": null, + "args": [ + { + "name": "proposal", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "space", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "voter", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Vp", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "wellOracle", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "WellOracle", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "wellOracles", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "WellOracle_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "WellOracle_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WellOracle", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "whitelistToken", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "WhitelistToken", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "whitelistTokens", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "WhitelistToken_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "WhitelistToken_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WhitelistToken", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RankingObject", + "description": null, + "fields": [ + { + "name": "items", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Space", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "metrics", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Metrics", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RankingWhere", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "category", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -109514,6 +111309,68 @@ ], "possibleTypes": null }, + { + "kind": "OBJECT", + "name": "Role", + "description": null, + "fields": [ + { + "name": "permissions", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "space", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RolesWhere", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "address", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, { "kind": "OBJECT", "name": "Season", @@ -125251,6 +127108,11 @@ "name": "StalkChange", "ofType": null }, + { + "kind": "OBJECT", + "name": "WellOracle", + "ofType": null + }, { "kind": "OBJECT", "name": "WhitelistToken", @@ -130817,9 +132679,41 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "fourPointFiveSeedBeanAPY", + "description": "Bean APY for 4.5 seeds per BDV", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fourPointFiveSeedStalkAPY", + "description": "Stalk APY for 4.5 seeds per BDV", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "fourSeedBeanAPY", - "description": "Bean APY for four seeds per BDV", + "description": "Bean APY for 4 seeds per BDV", "args": [], "type": { "kind": "NON_NULL", @@ -130835,7 +132729,7 @@ }, { "name": "fourSeedStalkAPY", - "description": "Stalk APY for four seeds per BDV", + "description": "Stalk APY for 4 seeds per BDV", "args": [], "type": { "kind": "NON_NULL", @@ -130881,9 +132775,73 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "threePointTwoFiveSeedBeanAPY", + "description": "Bean APY for 3.25 seeds per BDV", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threePointTwoFiveSeedStalkAPY", + "description": "Stalk APY for 3.25 seeds per BDV", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threeSeedBeanAPY", + "description": "Bean APY for 3 seeds per BDV", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threeSeedStalkAPY", + "description": "Stalk APY for 3 seeds per BDV", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "twoSeedBeanAPY", - "description": "Bean APY for two seeds per BDV", + "description": "Bean APY for 2 seeds per BDV", "args": [], "type": { "kind": "NON_NULL", @@ -130899,7 +132857,7 @@ }, { "name": "twoSeedStalkAPY", - "description": "Stalk APY for two seeds per BDV", + "description": "Stalk APY for 2 seeds per BDV", "args": [], "type": { "kind": "NON_NULL", @@ -130928,6 +132886,22 @@ }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "zeroSeedBeanAPY", + "description": "Bean APY for 0 seeds per BDV", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -131305,6 +133279,230 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "fourPointFiveSeedBeanAPY", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fourPointFiveSeedBeanAPY_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fourPointFiveSeedBeanAPY_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fourPointFiveSeedBeanAPY_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fourPointFiveSeedBeanAPY_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fourPointFiveSeedBeanAPY_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fourPointFiveSeedBeanAPY_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fourPointFiveSeedBeanAPY_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fourPointFiveSeedStalkAPY", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fourPointFiveSeedStalkAPY_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fourPointFiveSeedStalkAPY_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fourPointFiveSeedStalkAPY_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fourPointFiveSeedStalkAPY_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fourPointFiveSeedStalkAPY_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fourPointFiveSeedStalkAPY_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fourPointFiveSeedStalkAPY_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "fourSeedBeanAPY", "description": null, @@ -131769,6 +133967,454 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "threePointTwoFiveSeedBeanAPY", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threePointTwoFiveSeedBeanAPY_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threePointTwoFiveSeedBeanAPY_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threePointTwoFiveSeedBeanAPY_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threePointTwoFiveSeedBeanAPY_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threePointTwoFiveSeedBeanAPY_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threePointTwoFiveSeedBeanAPY_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threePointTwoFiveSeedBeanAPY_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threePointTwoFiveSeedStalkAPY", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threePointTwoFiveSeedStalkAPY_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threePointTwoFiveSeedStalkAPY_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threePointTwoFiveSeedStalkAPY_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threePointTwoFiveSeedStalkAPY_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threePointTwoFiveSeedStalkAPY_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threePointTwoFiveSeedStalkAPY_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threePointTwoFiveSeedStalkAPY_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threeSeedBeanAPY", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threeSeedBeanAPY_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threeSeedBeanAPY_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threeSeedBeanAPY_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threeSeedBeanAPY_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threeSeedBeanAPY_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threeSeedBeanAPY_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threeSeedBeanAPY_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threeSeedStalkAPY", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threeSeedStalkAPY_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threeSeedStalkAPY_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threeSeedStalkAPY_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threeSeedStalkAPY_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threeSeedStalkAPY_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threeSeedStalkAPY_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threeSeedStalkAPY_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "twoSeedBeanAPY", "description": null, @@ -132104,6 +134750,118 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "zeroSeedBeanAPY", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "zeroSeedBeanAPY_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "zeroSeedBeanAPY_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "zeroSeedBeanAPY_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "zeroSeedBeanAPY_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "zeroSeedBeanAPY_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "zeroSeedBeanAPY_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "zeroSeedBeanAPY_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "interfaces": null, @@ -132136,6 +134894,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "fourPointFiveSeedBeanAPY", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fourPointFiveSeedStalkAPY", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "fourSeedBeanAPY", "description": null, @@ -132160,6 +134930,30 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "threePointTwoFiveSeedBeanAPY", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threePointTwoFiveSeedStalkAPY", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threeSeedBeanAPY", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threeSeedStalkAPY", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "twoSeedBeanAPY", "description": null, @@ -132177,6 +134971,12 @@ "description": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "zeroSeedBeanAPY", + "description": null, + "isDeprecated": false, + "deprecationReason": null } ], "possibleTypes": null @@ -135908,997 +138708,4867 @@ } } }, - "defaultValue": null, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "logIndex_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "logIndex_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "logIndex_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "logIndex_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StalkChange_filter", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Beanstalk_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "StalkChange_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "account", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "blockNumber", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delta", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hash", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "logIndex", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol__lastSeason", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol__lastUpgrade", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol__methodologyVersion", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol__name", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol__schemaVersion", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol__slug", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol__subgraphVersion", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Statement", + "description": null, + "fields": [ + { + "name": "about", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delegate", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ipfs", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "space", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "statement", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StatementsWhere", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "created", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delegate", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delegate_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ipfs", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ipfs_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "space", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "space_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Strategy", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "network", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "logIndex_lt", + "name": "params", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "Any", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "StrategyItem", + "description": null, + "fields": [ { - "name": "logIndex_lte", + "name": "about", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "logIndex_not", + "name": "author", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "logIndex_not_in", + "name": "examples", "description": null, + "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Any", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "or", + "name": "id", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "StalkChange_filter", + "kind": "SCALAR", + "name": "String", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "protocol", + "name": "schema", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Any", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "protocol_", + "name": "spacesCount", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "Beanstalk_filter", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "protocol_contains", + "name": "version", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "String", + "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Subscription", + "description": null, + "fields": [ { - "name": "protocol_contains_nocase", - "description": null, + "name": "_meta", + "description": "Access to subgraph metadata", + "args": [ + { + "name": "block", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "_Meta_", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "protocol_ends_with", + "name": "addDeposit", "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "AddDeposit", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "protocol_ends_with_nocase", + "name": "addDeposits", "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "AddDeposit_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddDeposit_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AddDeposit", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "protocol_gt", + "name": "address", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "protocol_gte", + "name": "beaNFTUser", "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "BeaNFTUser", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "protocol_in", + "name": "beaNFTUsers", "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "BeaNFTUser_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BeaNFTUser_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BeaNFTUser", + "ofType": null + } } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "protocol_lt", + "name": "bean", "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Bean", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "protocol_lte", + "name": "beanCross", "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "BeanCross", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "protocol_not", + "name": "beanCrosses", "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "BeanCross_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BeanCross_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BeanCross", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "protocol_not_contains", + "name": "beanDailySnapshot", "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "BeanDailySnapshot", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "protocol_not_contains_nocase", + "name": "beanDailySnapshots", "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "BeanDailySnapshot_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BeanDailySnapshot_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BeanDailySnapshot", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "protocol_not_ends_with", + "name": "beanHourlySnapshot", "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "BeanHourlySnapshot", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "protocol_not_ends_with_nocase", + "name": "beanHourlySnapshots", "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "BeanHourlySnapshot_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BeanHourlySnapshot_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BeanHourlySnapshot", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "protocol_not_in", + "name": "beans", "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Bean_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Bean_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Bean", + "ofType": null + } } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "protocol_not_starts_with", + "name": "beanstalk", "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Beanstalk", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "protocol_not_starts_with_nocase", + "name": "beanstalks", "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Beanstalk_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Beanstalk_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Beanstalk", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "protocol_starts_with", + "name": "block", "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Block", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "protocol_starts_with_nocase", + "name": "blocks", "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Block_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Block", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "season", + "name": "chop", "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "Chop", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "season_gt", + "name": "chops", "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Chop_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Chop_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Chop", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "season_gte", + "name": "collectionData", "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "CollectionData", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "season_in", + "name": "collectionDatas", "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "CollectionData_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CollectionData_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CollectionData", + "ofType": null + } } } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "season_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "season_lte", + "name": "created", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "season_not", + "name": "delegation", "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "Delegation", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "season_not_in", + "name": "delegations", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { "kind": "SCALAR", "name": "Int", "ofType": null - } + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Delegation_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Delegation_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "StalkChange_orderBy", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "account", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delta", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hash", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "logIndex", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol__lastSeason", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol__lastUpgrade", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol__methodologyVersion", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol__name", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol__schemaVersion", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol__slug", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "protocol__subgraphVersion", - "description": null, + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Delegation", + "ofType": null + } + } + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "season", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Statement", - "description": null, - "fields": [ - { - "name": "about", + "name": "dewhitelistToken", "description": null, - "args": [], + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "DewhitelistToken", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "created", + "name": "dewhitelistTokens", "description": null, - "args": [], + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "DewhitelistToken_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DewhitelistToken_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DewhitelistToken", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "delegate", + "name": "farmer", "description": null, - "args": [], + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Farmer", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "farmers", "description": null, - "args": [], + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Farmer_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Farmer_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Farmer", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ipfs", + "name": "fertilizer", "description": null, - "args": [], + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "OBJECT", + "name": "Fertilizer", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fertilizerBalance", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null } + ], + "type": { + "kind": "OBJECT", + "name": "FertilizerBalance", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "space", + "name": "fertilizerBalances", "description": null, - "args": [], + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "FertilizerBalance_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FertilizerBalance_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FertilizerBalance", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "statement", + "name": "fertilizerToken", "description": null, - "args": [], + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "FertilizerToken", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated", + "name": "fertilizerTokens", "description": null, - "args": [], + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "FertilizerToken_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FertilizerToken_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FertilizerToken", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StatementsWhere", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "created", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "created_gt", + "name": "fertilizerYield", "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "FertilizerYield", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_gte", + "name": "fertilizerYields", "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "FertilizerYield_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FertilizerYield_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FertilizerYield", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_in", + "name": "fertilizers", "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Fertilizer_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Fertilizer_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Fertilizer", + "ofType": null + } + } } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_lte", + "name": "field", "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "Field", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delegate", + "name": "fieldDailySnapshot", "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "FieldDailySnapshot", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delegate_in", + "name": "fieldDailySnapshots", "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "FieldDailySnapshot_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FieldDailySnapshot_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FieldDailySnapshot", + "ofType": null + } + } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "fieldEvent", "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INTERFACE", + "name": "FieldEvent", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_in", + "name": "fieldEvents", "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "FieldEvent_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FieldEvent_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "FieldEvent", + "ofType": null + } + } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ipfs", + "name": "fieldHourlySnapshot", "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "FieldHourlySnapshot", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ipfs_in", + "name": "fieldHourlySnapshots", "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "FieldHourlySnapshot_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FieldHourlySnapshot_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FieldHourlySnapshot", + "ofType": null + } + } } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "space", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "space_in", + "name": "fields", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Field_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Field_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Strategy", - "description": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Field", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "network", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "params", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Any", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "StrategyItem", - "description": null, - "fields": [ - { - "name": "about", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "author", + "name": "harvest", "description": null, - "args": [], + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Harvest", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "examples", + "name": "harvests", "description": null, - "args": [], + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Harvest_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Harvest_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Any", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Harvest", + "ofType": null + } + } } }, "isDeprecated": false, @@ -136921,89 +143591,7 @@ "deprecationReason": null }, { - "name": "schema", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Any", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "spacesCount", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "version", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "String", - "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Subscription", - "description": null, - "fields": [ - { - "name": "_meta", - "description": "Access to subgraph metadata", - "args": [ - { - "name": "block", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "_Meta_", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "addDeposit", + "name": "incentive", "description": null, "args": [ { @@ -137053,14 +143641,14 @@ ], "type": { "kind": "OBJECT", - "name": "AddDeposit", + "name": "Incentive", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "addDeposits", + "name": "incentives", "description": null, "args": [ { @@ -137092,7 +143680,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "AddDeposit_orderBy", + "name": "Incentive_orderBy", "ofType": null }, "defaultValue": null, @@ -137144,7 +143732,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "AddDeposit_filter", + "name": "Incentive_filter", "ofType": null }, "defaultValue": null, @@ -137163,7 +143751,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AddDeposit", + "name": "Incentive", "ofType": null } } @@ -137173,23 +143761,19 @@ "deprecationReason": null }, { - "name": "address", + "name": "ipfs", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "beaNFTUser", + "name": "marketplaceEvent", "description": null, "args": [ { @@ -137238,15 +143822,15 @@ } ], "type": { - "kind": "OBJECT", - "name": "BeaNFTUser", + "kind": "INTERFACE", + "name": "MarketplaceEvent", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "beaNFTUsers", + "name": "marketplaceEvents", "description": null, "args": [ { @@ -137278,7 +143862,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "BeaNFTUser_orderBy", + "name": "MarketplaceEvent_orderBy", "ofType": null }, "defaultValue": null, @@ -137330,7 +143914,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "BeaNFTUser_filter", + "name": "MarketplaceEvent_filter", "ofType": null }, "defaultValue": null, @@ -137348,8 +143932,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "BeaNFTUser", + "kind": "INTERFACE", + "name": "MarketplaceEvent", "ofType": null } } @@ -137359,64 +143943,7 @@ "deprecationReason": null }, { - "name": "bean", - "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Bean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "beanDailySnapshot", + "name": "metapoolOracle", "description": null, "args": [ { @@ -137466,14 +143993,14 @@ ], "type": { "kind": "OBJECT", - "name": "BeanDailySnapshot", + "name": "MetapoolOracle", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanDailySnapshots", + "name": "metapoolOracles", "description": null, "args": [ { @@ -137505,7 +144032,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "BeanDailySnapshot_orderBy", + "name": "MetapoolOracle_orderBy", "ofType": null }, "defaultValue": null, @@ -137557,7 +144084,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "BeanDailySnapshot_filter", + "name": "MetapoolOracle_filter", "ofType": null }, "defaultValue": null, @@ -137576,7 +144103,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "BeanDailySnapshot", + "name": "MetapoolOracle", "ofType": null } } @@ -137586,7 +144113,7 @@ "deprecationReason": null }, { - "name": "beanHourlySnapshot", + "name": "plot", "description": null, "args": [ { @@ -137636,127 +144163,14 @@ ], "type": { "kind": "OBJECT", - "name": "BeanHourlySnapshot", + "name": "Plot", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanHourlySnapshots", - "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "BeanHourlySnapshot_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "BeanHourlySnapshot_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BeanHourlySnapshot", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "beans", + "name": "plots", "description": null, "args": [ { @@ -137788,7 +144202,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Bean_orderBy", + "name": "Plot_orderBy", "ofType": null }, "defaultValue": null, @@ -137840,7 +144254,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Bean_filter", + "name": "Plot_filter", "ofType": null }, "defaultValue": null, @@ -137859,7 +144273,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Bean", + "name": "Plot", "ofType": null } } @@ -137869,7 +144283,7 @@ "deprecationReason": null }, { - "name": "beanstalk", + "name": "podFill", "description": null, "args": [ { @@ -137919,14 +144333,14 @@ ], "type": { "kind": "OBJECT", - "name": "Beanstalk", + "name": "PodFill", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "beanstalks", + "name": "podFills", "description": null, "args": [ { @@ -137958,7 +144372,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Beanstalk_orderBy", + "name": "PodFill_orderBy", "ofType": null }, "defaultValue": null, @@ -138010,7 +144424,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Beanstalk_filter", + "name": "PodFill_filter", "ofType": null }, "defaultValue": null, @@ -138029,7 +144443,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Beanstalk", + "name": "PodFill", "ofType": null } } @@ -138039,7 +144453,7 @@ "deprecationReason": null }, { - "name": "block", + "name": "podListing", "description": null, "args": [ { @@ -138089,14 +144503,71 @@ ], "type": { "kind": "OBJECT", - "name": "Block", + "name": "PodListing", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "blocks", + "name": "podListingCancelled", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "PodListingCancelled", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "podListingCancelleds", "description": null, "args": [ { @@ -138128,7 +144599,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Block_orderBy", + "name": "PodListingCancelled_orderBy", "ofType": null }, "defaultValue": null, @@ -138180,7 +144651,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Block_filter", + "name": "PodListingCancelled_filter", "ofType": null }, "defaultValue": null, @@ -138199,7 +144670,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Block", + "name": "PodListingCancelled", "ofType": null } } @@ -138209,7 +144680,7 @@ "deprecationReason": null }, { - "name": "chop", + "name": "podListingCreated", "description": null, "args": [ { @@ -138259,14 +144730,14 @@ ], "type": { "kind": "OBJECT", - "name": "Chop", + "name": "PodListingCreated", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "chops", + "name": "podListingCreateds", "description": null, "args": [ { @@ -138298,7 +144769,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Chop_orderBy", + "name": "PodListingCreated_orderBy", "ofType": null }, "defaultValue": null, @@ -138350,7 +144821,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Chop_filter", + "name": "PodListingCreated_filter", "ofType": null }, "defaultValue": null, @@ -138369,7 +144840,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Chop", + "name": "PodListingCreated", "ofType": null } } @@ -138379,7 +144850,7 @@ "deprecationReason": null }, { - "name": "collectionData", + "name": "podListingFilled", "description": null, "args": [ { @@ -138429,14 +144900,14 @@ ], "type": { "kind": "OBJECT", - "name": "CollectionData", + "name": "PodListingFilled", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "collectionDatas", + "name": "podListingFilleds", "description": null, "args": [ { @@ -138468,7 +144939,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "CollectionData_orderBy", + "name": "PodListingFilled_orderBy", "ofType": null }, "defaultValue": null, @@ -138520,7 +144991,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CollectionData_filter", + "name": "PodListingFilled_filter", "ofType": null }, "defaultValue": null, @@ -138539,7 +145010,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CollectionData", + "name": "PodListingFilled", "ofType": null } } @@ -138549,80 +145020,7 @@ "deprecationReason": null }, { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cross", - "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Cross", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "crosses", + "name": "podListings", "description": null, "args": [ { @@ -138654,7 +145052,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Cross_orderBy", + "name": "PodListing_orderBy", "ofType": null }, "defaultValue": null, @@ -138706,7 +145104,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Cross_filter", + "name": "PodListing_filter", "ofType": null }, "defaultValue": null, @@ -138725,7 +145123,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Cross", + "name": "PodListing", "ofType": null } } @@ -138735,7 +145133,7 @@ "deprecationReason": null }, { - "name": "delegation", + "name": "podMarketplace", "description": null, "args": [ { @@ -138785,14 +145183,71 @@ ], "type": { "kind": "OBJECT", - "name": "Delegation", + "name": "PodMarketplace", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "delegations", + "name": "podMarketplaceDailySnapshot", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "PodMarketplaceDailySnapshot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "podMarketplaceDailySnapshots", "description": null, "args": [ { @@ -138824,7 +145279,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Delegation_orderBy", + "name": "PodMarketplaceDailySnapshot_orderBy", "ofType": null }, "defaultValue": null, @@ -138876,7 +145331,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Delegation_filter", + "name": "PodMarketplaceDailySnapshot_filter", "ofType": null }, "defaultValue": null, @@ -138895,7 +145350,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Delegation", + "name": "PodMarketplaceDailySnapshot", "ofType": null } } @@ -138905,7 +145360,7 @@ "deprecationReason": null }, { - "name": "dewhitelistToken", + "name": "podMarketplaceHourlySnapshot", "description": null, "args": [ { @@ -138955,14 +145410,14 @@ ], "type": { "kind": "OBJECT", - "name": "DewhitelistToken", + "name": "PodMarketplaceHourlySnapshot", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dewhitelistTokens", + "name": "podMarketplaceHourlySnapshots", "description": null, "args": [ { @@ -138994,7 +145449,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "DewhitelistToken_orderBy", + "name": "PodMarketplaceHourlySnapshot_orderBy", "ofType": null }, "defaultValue": null, @@ -139046,7 +145501,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "DewhitelistToken_filter", + "name": "PodMarketplaceHourlySnapshot_filter", "ofType": null }, "defaultValue": null, @@ -139065,7 +145520,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "DewhitelistToken", + "name": "PodMarketplaceHourlySnapshot", "ofType": null } } @@ -139075,64 +145530,7 @@ "deprecationReason": null }, { - "name": "farmer", - "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Farmer", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "farmers", + "name": "podMarketplaces", "description": null, "args": [ { @@ -139164,7 +145562,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Farmer_orderBy", + "name": "PodMarketplace_orderBy", "ofType": null }, "defaultValue": null, @@ -139216,7 +145614,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Farmer_filter", + "name": "PodMarketplace_filter", "ofType": null }, "defaultValue": null, @@ -139235,7 +145633,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Farmer", + "name": "PodMarketplace", "ofType": null } } @@ -139245,7 +145643,7 @@ "deprecationReason": null }, { - "name": "fertilizer", + "name": "podOrder", "description": null, "args": [ { @@ -139295,14 +145693,14 @@ ], "type": { "kind": "OBJECT", - "name": "Fertilizer", + "name": "PodOrder", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "fertilizerBalance", + "name": "podOrderCancelled", "description": null, "args": [ { @@ -139352,14 +145750,14 @@ ], "type": { "kind": "OBJECT", - "name": "FertilizerBalance", + "name": "PodOrderCancelled", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "fertilizerBalances", + "name": "podOrderCancelleds", "description": null, "args": [ { @@ -139391,7 +145789,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "FertilizerBalance_orderBy", + "name": "PodOrderCancelled_orderBy", "ofType": null }, "defaultValue": null, @@ -139443,7 +145841,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FertilizerBalance_filter", + "name": "PodOrderCancelled_filter", "ofType": null }, "defaultValue": null, @@ -139462,7 +145860,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FertilizerBalance", + "name": "PodOrderCancelled", "ofType": null } } @@ -139472,7 +145870,7 @@ "deprecationReason": null }, { - "name": "fertilizerToken", + "name": "podOrderCreated", "description": null, "args": [ { @@ -139522,14 +145920,14 @@ ], "type": { "kind": "OBJECT", - "name": "FertilizerToken", + "name": "PodOrderCreated", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "fertilizerTokens", + "name": "podOrderCreateds", "description": null, "args": [ { @@ -139561,7 +145959,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "FertilizerToken_orderBy", + "name": "PodOrderCreated_orderBy", "ofType": null }, "defaultValue": null, @@ -139613,7 +146011,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FertilizerToken_filter", + "name": "PodOrderCreated_filter", "ofType": null }, "defaultValue": null, @@ -139632,7 +146030,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FertilizerToken", + "name": "PodOrderCreated", "ofType": null } } @@ -139642,7 +146040,7 @@ "deprecationReason": null }, { - "name": "fertilizerYield", + "name": "podOrderFilled", "description": null, "args": [ { @@ -139692,14 +146090,14 @@ ], "type": { "kind": "OBJECT", - "name": "FertilizerYield", + "name": "PodOrderFilled", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "fertilizerYields", + "name": "podOrderFilleds", "description": null, "args": [ { @@ -139731,7 +146129,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "FertilizerYield_orderBy", + "name": "PodOrderFilled_orderBy", "ofType": null }, "defaultValue": null, @@ -139783,7 +146181,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FertilizerYield_filter", + "name": "PodOrderFilled_filter", "ofType": null }, "defaultValue": null, @@ -139802,7 +146200,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FertilizerYield", + "name": "PodOrderFilled", "ofType": null } } @@ -139812,7 +146210,7 @@ "deprecationReason": null }, { - "name": "fertilizers", + "name": "podOrders", "description": null, "args": [ { @@ -139844,7 +146242,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Fertilizer_orderBy", + "name": "PodOrder_orderBy", "ofType": null }, "defaultValue": null, @@ -139896,7 +146294,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Fertilizer_filter", + "name": "PodOrder_filter", "ofType": null }, "defaultValue": null, @@ -139915,7 +146313,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Fertilizer", + "name": "PodOrder", "ofType": null } } @@ -139925,7 +146323,7 @@ "deprecationReason": null }, { - "name": "field", + "name": "podTransfer", "description": null, "args": [ { @@ -139975,14 +146373,127 @@ ], "type": { "kind": "OBJECT", - "name": "Field", + "name": "PodTransfer", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "fieldDailySnapshot", + "name": "podTransfers", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "PodTransfer_orderBy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PodTransfer_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PodTransfer", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pool", "description": null, "args": [ { @@ -140032,14 +146543,71 @@ ], "type": { "kind": "OBJECT", - "name": "FieldDailySnapshot", + "name": "Pool", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "fieldDailySnapshots", + "name": "poolCross", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "PoolCross", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "poolCrosses", "description": null, "args": [ { @@ -140071,7 +146639,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "FieldDailySnapshot_orderBy", + "name": "PoolCross_orderBy", "ofType": null }, "defaultValue": null, @@ -140123,7 +146691,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FieldDailySnapshot_filter", + "name": "PoolCross_filter", "ofType": null }, "defaultValue": null, @@ -140142,7 +146710,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FieldDailySnapshot", + "name": "PoolCross", "ofType": null } } @@ -140152,7 +146720,7 @@ "deprecationReason": null }, { - "name": "fieldEvent", + "name": "poolDailySnapshot", "description": null, "args": [ { @@ -140201,15 +146769,15 @@ } ], "type": { - "kind": "INTERFACE", - "name": "FieldEvent", + "kind": "OBJECT", + "name": "PoolDailySnapshot", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "fieldEvents", + "name": "poolDailySnapshots", "description": null, "args": [ { @@ -140241,7 +146809,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "FieldEvent_orderBy", + "name": "PoolDailySnapshot_orderBy", "ofType": null }, "defaultValue": null, @@ -140293,7 +146861,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FieldEvent_filter", + "name": "PoolDailySnapshot_filter", "ofType": null }, "defaultValue": null, @@ -140311,8 +146879,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "FieldEvent", + "kind": "OBJECT", + "name": "PoolDailySnapshot", "ofType": null } } @@ -140322,7 +146890,7 @@ "deprecationReason": null }, { - "name": "fieldHourlySnapshot", + "name": "poolHourlySnapshot", "description": null, "args": [ { @@ -140372,14 +146940,14 @@ ], "type": { "kind": "OBJECT", - "name": "FieldHourlySnapshot", + "name": "PoolHourlySnapshot", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "fieldHourlySnapshots", + "name": "poolHourlySnapshots", "description": null, "args": [ { @@ -140411,7 +146979,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "FieldHourlySnapshot_orderBy", + "name": "PoolHourlySnapshot_orderBy", "ofType": null }, "defaultValue": null, @@ -140463,7 +147031,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FieldHourlySnapshot_filter", + "name": "PoolHourlySnapshot_filter", "ofType": null }, "defaultValue": null, @@ -140482,7 +147050,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FieldHourlySnapshot", + "name": "PoolHourlySnapshot", "ofType": null } } @@ -140492,7 +147060,7 @@ "deprecationReason": null }, { - "name": "fields", + "name": "pools", "description": null, "args": [ { @@ -140524,7 +147092,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Field_orderBy", + "name": "Pool_orderBy", "ofType": null }, "defaultValue": null, @@ -140576,7 +147144,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Field_filter", + "name": "Pool_filter", "ofType": null }, "defaultValue": null, @@ -140595,7 +147163,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Field", + "name": "Pool", "ofType": null } } @@ -140605,7 +147173,7 @@ "deprecationReason": null }, { - "name": "harvest", + "name": "removeDeposit", "description": null, "args": [ { @@ -140655,14 +147223,14 @@ ], "type": { "kind": "OBJECT", - "name": "Harvest", + "name": "RemoveDeposit", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "harvests", + "name": "removeDeposits", "description": null, "args": [ { @@ -140694,7 +147262,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Harvest_orderBy", + "name": "RemoveDeposit_orderBy", "ofType": null }, "defaultValue": null, @@ -140746,7 +147314,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Harvest_filter", + "name": "RemoveDeposit_filter", "ofType": null }, "defaultValue": null, @@ -140765,7 +147333,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Harvest", + "name": "RemoveDeposit", "ofType": null } } @@ -140775,23 +147343,7 @@ "deprecationReason": null }, { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "incentive", + "name": "reward", "description": null, "args": [ { @@ -140841,14 +147393,14 @@ ], "type": { "kind": "OBJECT", - "name": "Incentive", + "name": "Reward", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "incentives", + "name": "rewards", "description": null, "args": [ { @@ -140880,7 +147432,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Incentive_orderBy", + "name": "Reward_orderBy", "ofType": null }, "defaultValue": null, @@ -140932,7 +147484,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Incentive_filter", + "name": "Reward_filter", "ofType": null }, "defaultValue": null, @@ -140951,189 +147503,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Incentive", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ipfs", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "marketplaceEvent", - "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "INTERFACE", - "name": "MarketplaceEvent", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "marketplaceEvents", - "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "MarketplaceEvent_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "MarketplaceEvent_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "MarketplaceEvent", + "name": "Reward", "ofType": null } } @@ -141143,7 +147513,7 @@ "deprecationReason": null }, { - "name": "metapoolOracle", + "name": "season", "description": null, "args": [ { @@ -141193,14 +147563,14 @@ ], "type": { "kind": "OBJECT", - "name": "MetapoolOracle", + "name": "Season", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "metapoolOracles", + "name": "seasons", "description": null, "args": [ { @@ -141232,7 +147602,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "MetapoolOracle_orderBy", + "name": "Season_orderBy", "ofType": null }, "defaultValue": null, @@ -141284,7 +147654,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "MetapoolOracle_filter", + "name": "Season_filter", "ofType": null }, "defaultValue": null, @@ -141303,7 +147673,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "MetapoolOracle", + "name": "Season", "ofType": null } } @@ -141313,7 +147683,7 @@ "deprecationReason": null }, { - "name": "plot", + "name": "seedChange", "description": null, "args": [ { @@ -141363,14 +147733,14 @@ ], "type": { "kind": "OBJECT", - "name": "Plot", + "name": "SeedChange", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "plots", + "name": "seedChanges", "description": null, "args": [ { @@ -141402,7 +147772,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Plot_orderBy", + "name": "SeedChange_orderBy", "ofType": null }, "defaultValue": null, @@ -141454,7 +147824,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Plot_filter", + "name": "SeedChange_filter", "ofType": null }, "defaultValue": null, @@ -141473,7 +147843,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Plot", + "name": "SeedChange", "ofType": null } } @@ -141483,7 +147853,7 @@ "deprecationReason": null }, { - "name": "podFill", + "name": "sig", "description": null, "args": [ { @@ -141533,14 +147903,14 @@ ], "type": { "kind": "OBJECT", - "name": "PodFill", + "name": "Sig", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podFills", + "name": "sigs", "description": null, "args": [ { @@ -141572,7 +147942,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodFill_orderBy", + "name": "Sig_orderBy", "ofType": null }, "defaultValue": null, @@ -141624,7 +147994,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodFill_filter", + "name": "Sig_filter", "ofType": null }, "defaultValue": null, @@ -141643,7 +148013,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodFill", + "name": "Sig", "ofType": null } } @@ -141653,7 +148023,7 @@ "deprecationReason": null }, { - "name": "podListing", + "name": "silo", "description": null, "args": [ { @@ -141703,14 +148073,14 @@ ], "type": { "kind": "OBJECT", - "name": "PodListing", + "name": "Silo", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podListingCancelled", + "name": "siloAsset", "description": null, "args": [ { @@ -141760,127 +148130,14 @@ ], "type": { "kind": "OBJECT", - "name": "PodListingCancelled", + "name": "SiloAsset", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podListingCancelleds", - "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "PodListingCancelled_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PodListingCancelled_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PodListingCancelled", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "podListingCreated", + "name": "siloAssetDailySnapshot", "description": null, "args": [ { @@ -141930,14 +148187,14 @@ ], "type": { "kind": "OBJECT", - "name": "PodListingCreated", + "name": "SiloAssetDailySnapshot", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podListingCreateds", + "name": "siloAssetDailySnapshots", "description": null, "args": [ { @@ -141969,7 +148226,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodListingCreated_orderBy", + "name": "SiloAssetDailySnapshot_orderBy", "ofType": null }, "defaultValue": null, @@ -142021,7 +148278,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodListingCreated_filter", + "name": "SiloAssetDailySnapshot_filter", "ofType": null }, "defaultValue": null, @@ -142040,7 +148297,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodListingCreated", + "name": "SiloAssetDailySnapshot", "ofType": null } } @@ -142050,7 +148307,7 @@ "deprecationReason": null }, { - "name": "podListingFilled", + "name": "siloAssetHourlySnapshot", "description": null, "args": [ { @@ -142100,14 +148357,14 @@ ], "type": { "kind": "OBJECT", - "name": "PodListingFilled", + "name": "SiloAssetHourlySnapshot", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podListingFilleds", + "name": "siloAssetHourlySnapshots", "description": null, "args": [ { @@ -142139,7 +148396,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodListingFilled_orderBy", + "name": "SiloAssetHourlySnapshot_orderBy", "ofType": null }, "defaultValue": null, @@ -142191,7 +148448,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodListingFilled_filter", + "name": "SiloAssetHourlySnapshot_filter", "ofType": null }, "defaultValue": null, @@ -142210,7 +148467,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodListingFilled", + "name": "SiloAssetHourlySnapshot", "ofType": null } } @@ -142220,7 +148477,7 @@ "deprecationReason": null }, { - "name": "podListings", + "name": "siloAssets", "description": null, "args": [ { @@ -142252,7 +148509,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodListing_orderBy", + "name": "SiloAsset_orderBy", "ofType": null }, "defaultValue": null, @@ -142304,7 +148561,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodListing_filter", + "name": "SiloAsset_filter", "ofType": null }, "defaultValue": null, @@ -142323,7 +148580,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodListing", + "name": "SiloAsset", "ofType": null } } @@ -142333,64 +148590,7 @@ "deprecationReason": null }, { - "name": "podMarketplace", - "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "PodMarketplace", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "podMarketplaceDailySnapshot", + "name": "siloDailySnapshot", "description": null, "args": [ { @@ -142440,14 +148640,14 @@ ], "type": { "kind": "OBJECT", - "name": "PodMarketplaceDailySnapshot", + "name": "SiloDailySnapshot", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podMarketplaceDailySnapshots", + "name": "siloDailySnapshots", "description": null, "args": [ { @@ -142479,7 +148679,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodMarketplaceDailySnapshot_orderBy", + "name": "SiloDailySnapshot_orderBy", "ofType": null }, "defaultValue": null, @@ -142531,7 +148731,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodMarketplaceDailySnapshot_filter", + "name": "SiloDailySnapshot_filter", "ofType": null }, "defaultValue": null, @@ -142550,7 +148750,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodMarketplaceDailySnapshot", + "name": "SiloDailySnapshot", "ofType": null } } @@ -142560,7 +148760,7 @@ "deprecationReason": null }, { - "name": "podMarketplaceHourlySnapshot", + "name": "siloDeposit", "description": null, "args": [ { @@ -142610,14 +148810,14 @@ ], "type": { "kind": "OBJECT", - "name": "PodMarketplaceHourlySnapshot", + "name": "SiloDeposit", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podMarketplaceHourlySnapshots", + "name": "siloDeposits", "description": null, "args": [ { @@ -142649,7 +148849,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodMarketplaceHourlySnapshot_orderBy", + "name": "SiloDeposit_orderBy", "ofType": null }, "defaultValue": null, @@ -142701,7 +148901,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodMarketplaceHourlySnapshot_filter", + "name": "SiloDeposit_filter", "ofType": null }, "defaultValue": null, @@ -142720,7 +148920,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodMarketplaceHourlySnapshot", + "name": "SiloDeposit", "ofType": null } } @@ -142730,7 +148930,64 @@ "deprecationReason": null }, { - "name": "podMarketplaces", + "name": "siloEvent", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "INTERFACE", + "name": "SiloEvent", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siloEvents", "description": null, "args": [ { @@ -142762,7 +149019,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodMarketplace_orderBy", + "name": "SiloEvent_orderBy", "ofType": null }, "defaultValue": null, @@ -142814,7 +149071,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodMarketplace_filter", + "name": "SiloEvent_filter", "ofType": null }, "defaultValue": null, @@ -142832,8 +149089,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PodMarketplace", + "kind": "INTERFACE", + "name": "SiloEvent", "ofType": null } } @@ -142843,64 +149100,7 @@ "deprecationReason": null }, { - "name": "podOrder", - "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "PodOrder", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "podOrderCancelled", + "name": "siloHourlySnapshot", "description": null, "args": [ { @@ -142950,14 +149150,14 @@ ], "type": { "kind": "OBJECT", - "name": "PodOrderCancelled", + "name": "SiloHourlySnapshot", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podOrderCancelleds", + "name": "siloHourlySnapshots", "description": null, "args": [ { @@ -142989,7 +149189,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodOrderCancelled_orderBy", + "name": "SiloHourlySnapshot_orderBy", "ofType": null }, "defaultValue": null, @@ -143041,7 +149241,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodOrderCancelled_filter", + "name": "SiloHourlySnapshot_filter", "ofType": null }, "defaultValue": null, @@ -143060,7 +149260,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodOrderCancelled", + "name": "SiloHourlySnapshot", "ofType": null } } @@ -143070,7 +149270,7 @@ "deprecationReason": null }, { - "name": "podOrderCreated", + "name": "siloWithdraw", "description": null, "args": [ { @@ -143120,14 +149320,14 @@ ], "type": { "kind": "OBJECT", - "name": "PodOrderCreated", + "name": "SiloWithdraw", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podOrderCreateds", + "name": "siloWithdraws", "description": null, "args": [ { @@ -143159,7 +149359,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodOrderCreated_orderBy", + "name": "SiloWithdraw_orderBy", "ofType": null }, "defaultValue": null, @@ -143211,7 +149411,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodOrderCreated_filter", + "name": "SiloWithdraw_filter", "ofType": null }, "defaultValue": null, @@ -143230,7 +149430,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodOrderCreated", + "name": "SiloWithdraw", "ofType": null } } @@ -143240,7 +149440,7 @@ "deprecationReason": null }, { - "name": "podOrderFilled", + "name": "siloYield", "description": null, "args": [ { @@ -143290,127 +149490,14 @@ ], "type": { "kind": "OBJECT", - "name": "PodOrderFilled", + "name": "SiloYield", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "podOrderFilleds", - "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "PodOrderFilled_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PodOrderFilled_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PodOrderFilled", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "podOrders", + "name": "siloYields", "description": null, "args": [ { @@ -143442,7 +149529,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodOrder_orderBy", + "name": "SiloYield_orderBy", "ofType": null }, "defaultValue": null, @@ -143494,7 +149581,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodOrder_filter", + "name": "SiloYield_filter", "ofType": null }, "defaultValue": null, @@ -143513,7 +149600,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodOrder", + "name": "SiloYield", "ofType": null } } @@ -143523,64 +149610,7 @@ "deprecationReason": null }, { - "name": "podTransfer", - "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "PodTransfer", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "podTransfers", + "name": "silos", "description": null, "args": [ { @@ -143612,7 +149642,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PodTransfer_orderBy", + "name": "Silo_orderBy", "ofType": null }, "defaultValue": null, @@ -143664,7 +149694,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PodTransfer_filter", + "name": "Silo_filter", "ofType": null }, "defaultValue": null, @@ -143683,7 +149713,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PodTransfer", + "name": "Silo", "ofType": null } } @@ -143693,64 +149723,23 @@ "deprecationReason": null }, { - "name": "pool", + "name": "space", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { - "kind": "OBJECT", - "name": "Pool", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Space", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "poolDailySnapshot", + "name": "stalkChange", "description": null, "args": [ { @@ -143800,14 +149789,14 @@ ], "type": { "kind": "OBJECT", - "name": "PoolDailySnapshot", + "name": "StalkChange", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "poolDailySnapshots", + "name": "stalkChanges", "description": null, "args": [ { @@ -143839,7 +149828,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PoolDailySnapshot_orderBy", + "name": "StalkChange_orderBy", "ofType": null }, "defaultValue": null, @@ -143891,7 +149880,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PoolDailySnapshot_filter", + "name": "StalkChange_filter", "ofType": null }, "defaultValue": null, @@ -143910,7 +149899,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PoolDailySnapshot", + "name": "StalkChange", "ofType": null } } @@ -143920,7 +149909,7 @@ "deprecationReason": null }, { - "name": "poolHourlySnapshot", + "name": "token", "description": null, "args": [ { @@ -143970,14 +149959,14 @@ ], "type": { "kind": "OBJECT", - "name": "PoolHourlySnapshot", + "name": "Token", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "poolHourlySnapshots", + "name": "tokens", "description": null, "args": [ { @@ -144009,7 +149998,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "PoolHourlySnapshot_orderBy", + "name": "Token_orderBy", "ofType": null }, "defaultValue": null, @@ -144061,7 +150050,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PoolHourlySnapshot_filter", + "name": "Token_filter", "ofType": null }, "defaultValue": null, @@ -144080,7 +150069,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PoolHourlySnapshot", + "name": "Token", "ofType": null } } @@ -144090,7 +150079,64 @@ "deprecationReason": null }, { - "name": "pools", + "name": "wellOracle", + "description": null, + "args": [ + { + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "WellOracle", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "wellOracles", "description": null, "args": [ { @@ -144122,7 +150168,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "Pool_orderBy", + "name": "WellOracle_orderBy", "ofType": null }, "defaultValue": null, @@ -144174,7 +150220,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Pool_filter", + "name": "WellOracle_filter", "ofType": null }, "defaultValue": null, @@ -144193,7 +150239,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Pool", + "name": "WellOracle", "ofType": null } } @@ -144203,7 +150249,7 @@ "deprecationReason": null }, { - "name": "removeDeposit", + "name": "whitelistToken", "description": null, "args": [ { @@ -144253,14 +150299,14 @@ ], "type": { "kind": "OBJECT", - "name": "RemoveDeposit", + "name": "WhitelistToken", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "removeDeposits", + "name": "whitelistTokens", "description": null, "args": [ { @@ -144292,7 +150338,7 @@ "description": null, "type": { "kind": "ENUM", - "name": "RemoveDeposit_orderBy", + "name": "WhitelistToken_orderBy", "ofType": null }, "defaultValue": null, @@ -144344,7 +150390,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "RemoveDeposit_filter", + "name": "WhitelistToken_filter", "ofType": null }, "defaultValue": null, @@ -144353,2945 +150399,1528 @@ } ], "type": { - "kind": "NON_NULL", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WhitelistToken", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SubscriptionWhere", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "address", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "address_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ipfs", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ipfs_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "space", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "space_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Token", + "description": null, + "fields": [ + { + "name": "decimals", + "description": "Number of decimals", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "Smart contract address of the token", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastPriceUSD", + "description": "Last USD price calculated", + "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": "Token_filter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_change_block", + "description": "Filter for the block changed event.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Token_filter", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "decimals", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "decimals_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "decimals_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "decimals_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "decimals_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "decimals_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastPriceUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastPriceUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastPriceUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastPriceUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastPriceUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastPriceUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastPriceUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastPriceUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Token_filter", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "Token_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "decimals", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastPriceUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Treasury", + "description": null, + "fields": [ + { + "name": "address", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "network", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "User", + "description": null, + "fields": [ + { + "name": "about", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "avatar", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ipfs", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UsersWhere", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "created", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_in", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RemoveDeposit", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "reward", + "name": "created_lt", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "Reward", + "kind": "SCALAR", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "rewards", + "name": "created_lte", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Reward_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Reward_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Reward", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "season", + "name": "ipfs", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "Season", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "seasons", + "name": "ipfs_in", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Season_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Season_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null } - ], + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Validation", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Season", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "seedChange", + "name": "params", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { - "kind": "OBJECT", - "name": "SeedChange", + "kind": "SCALAR", + "name": "Any", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Vote", + "description": null, + "fields": [ + { + "name": "app", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "seedChanges", + "name": "choice", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "SeedChange_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SeedChange_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SeedChange", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Any", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sig", + "name": "created", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { - "kind": "OBJECT", - "name": "Sig", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sigs", + "name": "id", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Sig_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Sig_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Sig", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "silo", + "name": "ipfs", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { - "kind": "OBJECT", - "name": "Silo", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloAsset", + "name": "metadata", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { - "kind": "OBJECT", - "name": "SiloAsset", + "kind": "SCALAR", + "name": "Any", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloAssetDailySnapshot", + "name": "proposal", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "OBJECT", - "name": "SiloAssetDailySnapshot", + "name": "Proposal", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloAssetDailySnapshots", + "name": "reason", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "SiloAssetDailySnapshot_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SiloAssetDailySnapshot_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "space", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Space", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "voter", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SiloAssetDailySnapshot", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloAssetHourlySnapshot", + "name": "vp", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { - "kind": "OBJECT", - "name": "SiloAssetHourlySnapshot", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloAssetHourlySnapshots", + "name": "vp_by_strategy", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "SiloAssetHourlySnapshot_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SiloAssetHourlySnapshot_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SiloAssetHourlySnapshot", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloAssets", + "name": "vp_state", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "SiloAsset_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SiloAsset_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SiloAsset", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "VoteWhere", + "description": null, + "fields": null, + "inputFields": [ { - "name": "siloDailySnapshot", + "name": "app", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "SiloDailySnapshot", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloDailySnapshots", + "name": "app_in", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "SiloDailySnapshot_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SiloDailySnapshot_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SiloDailySnapshot", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloDeposit", + "name": "app_not", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "SiloDeposit", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloDeposits", + "name": "app_not_in", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "SiloDeposit_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SiloDeposit_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SiloDeposit", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloEvent", + "name": "created", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "INTERFACE", - "name": "SiloEvent", + "kind": "SCALAR", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloEvents", + "name": "created_gt", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "SiloEvent_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SiloEvent_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "SiloEvent", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloHourlySnapshot", + "name": "created_gte", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "SiloHourlySnapshot", + "kind": "SCALAR", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloHourlySnapshots", + "name": "created_in", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "SiloHourlySnapshot_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SiloHourlySnapshot_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SiloHourlySnapshot", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloWithdraw", + "name": "created_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "SiloWithdraw", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloWithdraws", + "name": "id_in", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "SiloWithdraw_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SiloWithdraw_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SiloWithdraw", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloYield", + "name": "ipfs", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "SiloYield", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "siloYields", + "name": "ipfs_in", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "SiloYield_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SiloYield_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SiloYield", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "silos", + "name": "proposal", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Silo_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Silo_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Silo", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "space", + "name": "proposal_in", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Space", + "kind": "SCALAR", + "name": "String", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "stalkChange", + "name": "reason", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "StalkChange", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "stalkChanges", + "name": "reason_in", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "StalkChange_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "StalkChange_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StalkChange", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "token", + "name": "reason_not", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "Token", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tokens", + "name": "reason_not_in", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Token_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Token_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Token", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "whitelistToken", + "name": "space", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "WhitelistToken", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "whitelistTokens", + "name": "space_in", "description": null, - "args": [ - { - "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, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "WhitelistToken_orderBy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": 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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WhitelistToken_filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "WhitelistToken", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SubscriptionWhere", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "address", + "name": "voter", "description": null, "type": { "kind": "SCALAR", @@ -147303,7 +151932,7 @@ "deprecationReason": null }, { - "name": "address_in", + "name": "voter_in", "description": null, "type": { "kind": "LIST", @@ -147319,11 +151948,11 @@ "deprecationReason": null }, { - "name": "created", + "name": "vp", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -147331,11 +151960,11 @@ "deprecationReason": null }, { - "name": "created_gt", + "name": "vp_gt", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -147343,11 +151972,11 @@ "deprecationReason": null }, { - "name": "created_gte", + "name": "vp_gte", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -147355,14 +151984,14 @@ "deprecationReason": null }, { - "name": "created_in", + "name": "vp_in", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null } }, @@ -147371,11 +152000,11 @@ "deprecationReason": null }, { - "name": "created_lt", + "name": "vp_lt", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -147383,11 +152012,11 @@ "deprecationReason": null }, { - "name": "created_lte", + "name": "vp_lte", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -147395,109 +152024,200 @@ "deprecationReason": null }, { - "name": "id", + "name": "vp_state", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "vp_state_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Vp", + "description": null, + "fields": [ + { + "name": "vp", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "vp_by_strategy", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "vp_state", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "WellOracle", + "description": null, + "fields": [ + { + "name": "blockNumber", + "description": " Block number of this event ", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_in", - "description": null, + "name": "createdAt", + "description": " Timestamp of this event ", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ipfs", - "description": null, + "name": "cumulativeReserves", + "description": " Time weighted cumulative reserves ", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ipfs_in", - "description": null, + "name": "deltaB", + "description": " DeltaB for season", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "space", - "description": null, + "name": "hash", + "description": " Transaction hash of the transaction that emitted this event ", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "space_in", - "description": null, + "name": "id", + "description": "wellOracle-{ Transaction hash }-{ Log index }", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Token", - "description": null, - "fields": [ + }, { - "name": "decimals", - "description": "Number of decimals", + "name": "logIndex", + "description": " Event log index. For transactions that don't emit event, create arbitrary index starting from 0 ", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", "ofType": null } }, @@ -147505,15 +152225,15 @@ "deprecationReason": null }, { - "name": "id", - "description": "Smart contract address of the token", + "name": "protocol", + "description": " The protocol this transaction belongs to ", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "Beanstalk", "ofType": null } }, @@ -147521,15 +152241,15 @@ "deprecationReason": null }, { - "name": "lastPriceUSD", - "description": "Last USD price calculated", + "name": "season", + "description": " Season of oracle ", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Int", "ofType": null } }, @@ -147538,13 +152258,19 @@ } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "SiloEvent", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "Token_filter", + "name": "WellOracle_filter", "description": null, "fields": null, "inputFields": [ @@ -147568,7 +152294,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "Token_filter", + "name": "WellOracle_filter", "ofType": null } }, @@ -147577,7 +152303,7 @@ "deprecationReason": null }, { - "name": "decimals", + "name": "blockNumber", "description": null, "type": { "kind": "SCALAR", @@ -147589,7 +152315,7 @@ "deprecationReason": null }, { - "name": "decimals_gt", + "name": "blockNumber_gt", "description": null, "type": { "kind": "SCALAR", @@ -147601,7 +152327,7 @@ "deprecationReason": null }, { - "name": "decimals_gte", + "name": "blockNumber_gte", "description": null, "type": { "kind": "SCALAR", @@ -147613,7 +152339,7 @@ "deprecationReason": null }, { - "name": "decimals_in", + "name": "blockNumber_in", "description": null, "type": { "kind": "LIST", @@ -147633,7 +152359,7 @@ "deprecationReason": null }, { - "name": "decimals_lt", + "name": "blockNumber_lt", "description": null, "type": { "kind": "SCALAR", @@ -147645,7 +152371,7 @@ "deprecationReason": null }, { - "name": "decimals_lte", + "name": "blockNumber_lte", "description": null, "type": { "kind": "SCALAR", @@ -147657,7 +152383,7 @@ "deprecationReason": null }, { - "name": "decimals_not", + "name": "blockNumber_not", "description": null, "type": { "kind": "SCALAR", @@ -147669,7 +152395,7 @@ "deprecationReason": null }, { - "name": "decimals_not_in", + "name": "blockNumber_not_in", "description": null, "type": { "kind": "LIST", @@ -147689,11 +152415,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "createdAt", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -147701,11 +152427,11 @@ "deprecationReason": null }, { - "name": "id_gt", + "name": "createdAt_gt", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -147713,11 +152439,11 @@ "deprecationReason": null }, { - "name": "id_gte", + "name": "createdAt_gte", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -147725,7 +152451,7 @@ "deprecationReason": null }, { - "name": "id_in", + "name": "createdAt_in", "description": null, "type": { "kind": "LIST", @@ -147735,7 +152461,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "BigInt", "ofType": null } } @@ -147745,11 +152471,11 @@ "deprecationReason": null }, { - "name": "id_lt", + "name": "createdAt_lt", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -147757,11 +152483,11 @@ "deprecationReason": null }, { - "name": "id_lte", + "name": "createdAt_lte", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -147769,11 +152495,11 @@ "deprecationReason": null }, { - "name": "id_not", + "name": "createdAt_not", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "BigInt", "ofType": null }, "defaultValue": null, @@ -147781,7 +152507,7 @@ "deprecationReason": null }, { - "name": "id_not_in", + "name": "createdAt_not_in", "description": null, "type": { "kind": "LIST", @@ -147791,7 +152517,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "BigInt", "ofType": null } } @@ -147801,11 +152527,11 @@ "deprecationReason": null }, { - "name": "lastPriceUSD", + "name": "cumulativeReserves", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Bytes", "ofType": null }, "defaultValue": null, @@ -147813,11 +152539,11 @@ "deprecationReason": null }, { - "name": "lastPriceUSD_gt", + "name": "cumulativeReserves_contains", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Bytes", "ofType": null }, "defaultValue": null, @@ -147825,11 +152551,11 @@ "deprecationReason": null }, { - "name": "lastPriceUSD_gte", + "name": "cumulativeReserves_gt", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Bytes", "ofType": null }, "defaultValue": null, @@ -147837,7 +152563,19 @@ "deprecationReason": null }, { - "name": "lastPriceUSD_in", + "name": "cumulativeReserves_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cumulativeReserves_in", "description": null, "type": { "kind": "LIST", @@ -147847,7 +152585,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Bytes", "ofType": null } } @@ -147857,11 +152595,11 @@ "deprecationReason": null }, { - "name": "lastPriceUSD_lt", + "name": "cumulativeReserves_lt", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Bytes", "ofType": null }, "defaultValue": null, @@ -147869,11 +152607,11 @@ "deprecationReason": null }, { - "name": "lastPriceUSD_lte", + "name": "cumulativeReserves_lte", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Bytes", "ofType": null }, "defaultValue": null, @@ -147881,11 +152619,11 @@ "deprecationReason": null }, { - "name": "lastPriceUSD_not", + "name": "cumulativeReserves_not", "description": null, "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Bytes", "ofType": null }, "defaultValue": null, @@ -147893,7 +152631,19 @@ "deprecationReason": null }, { - "name": "lastPriceUSD_not_in", + "name": "cumulativeReserves_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cumulativeReserves_not_in", "description": null, "type": { "kind": "LIST", @@ -147903,7 +152653,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Bytes", "ofType": null } } @@ -147913,205 +152663,195 @@ "deprecationReason": null }, { - "name": "or", + "name": "deltaB", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Token_filter", - "ofType": null - } + "kind": "SCALAR", + "name": "BigInt", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "Token_orderBy", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + }, { - "name": "decimals", + "name": "deltaB_gt", "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "deltaB_gte", "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "lastPriceUSD", + "name": "deltaB_in", "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Treasury", - "description": null, - "fields": [ + }, { - "name": "address", + "name": "deltaB_lt", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "deltaB_lte", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "network", + "name": "deltaB_not", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "User", - "description": null, - "fields": [ + }, { - "name": "about", + "name": "deltaB_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hash", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "avatar", + "name": "hash_contains", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created", + "name": "hash_contains_nocase", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "hash_ends_with", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ipfs", + "name": "hash_ends_with_nocase", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "hash_gt", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UsersWhere", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "created", + "name": "hash_gte", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -148119,23 +152859,31 @@ "deprecationReason": null }, { - "name": "created_gt", + "name": "hash_in", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_gte", + "name": "hash_lt", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -148143,27 +152891,23 @@ "deprecationReason": null }, { - "name": "created_in", + "name": "hash_lte", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_lt", + "name": "hash_not", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -148171,11 +152915,11 @@ "deprecationReason": null }, { - "name": "created_lte", + "name": "hash_not_contains", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -148183,7 +152927,7 @@ "deprecationReason": null }, { - "name": "id", + "name": "hash_not_contains_nocase", "description": null, "type": { "kind": "SCALAR", @@ -148195,23 +152939,19 @@ "deprecationReason": null }, { - "name": "id_in", + "name": "hash_not_ends_with", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ipfs", + "name": "hash_not_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", @@ -148223,268 +152963,259 @@ "deprecationReason": null }, { - "name": "ipfs_in", + "name": "hash_not_in", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Validation", - "description": null, - "fields": [ + }, { - "name": "name", + "name": "hash_not_starts_with", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "params", + "name": "hash_not_starts_with_nocase", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Any", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Vote", - "description": null, - "fields": [ + }, { - "name": "app", + "name": "hash_starts_with", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "choice", + "name": "hash_starts_with_nocase", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Any", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created", + "name": "id", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "id_gt", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ipfs", + "name": "id_gte", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "metadata", + "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, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_lt", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Any", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "proposal", + "name": "id_lte", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "Proposal", + "kind": "SCALAR", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "reason", + "name": "id_not", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "space", + "name": "id_not_in", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Space", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "voter", + "name": "logIndex", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "vp", + "name": "logIndex_gt", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "vp_by_strategy", + "name": "logIndex_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "logIndex_in", "description": null, - "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "vp_state", + "name": "logIndex_lt", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "VoteWhere", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "app", + "name": "logIndex_lte", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -148492,42 +153223,46 @@ "deprecationReason": null }, { - "name": "app_in", + "name": "logIndex_not", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_not", + "name": "logIndex_not_in", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_not_in", + "name": "or", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WellOracle_filter", "ofType": null } }, @@ -148536,11 +153271,11 @@ "deprecationReason": null }, { - "name": "created", + "name": "protocol", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -148548,11 +153283,23 @@ "deprecationReason": null }, { - "name": "created_gt", + "name": "protocol_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Beanstalk_filter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol_contains", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -148560,11 +153307,11 @@ "deprecationReason": null }, { - "name": "created_gte", + "name": "protocol_contains_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -148572,27 +153319,23 @@ "deprecationReason": null }, { - "name": "created_in", + "name": "protocol_ends_with", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_lt", + "name": "protocol_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -148600,11 +153343,11 @@ "deprecationReason": null }, { - "name": "created_lte", + "name": "protocol_gt", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -148612,7 +153355,7 @@ "deprecationReason": null }, { - "name": "id", + "name": "protocol_gte", "description": null, "type": { "kind": "SCALAR", @@ -148624,15 +153367,19 @@ "deprecationReason": null }, { - "name": "id_in", + "name": "protocol_in", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null, @@ -148640,7 +153387,7 @@ "deprecationReason": null }, { - "name": "ipfs", + "name": "protocol_lt", "description": null, "type": { "kind": "SCALAR", @@ -148652,23 +153399,19 @@ "deprecationReason": null }, { - "name": "ipfs_in", + "name": "protocol_lte", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "proposal", + "name": "protocol_not", "description": null, "type": { "kind": "SCALAR", @@ -148680,23 +153423,19 @@ "deprecationReason": null }, { - "name": "proposal_in", + "name": "protocol_not_contains", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "reason", + "name": "protocol_not_contains_nocase", "description": null, "type": { "kind": "SCALAR", @@ -148708,23 +153447,19 @@ "deprecationReason": null }, { - "name": "reason_in", + "name": "protocol_not_ends_with", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "reason_not", + "name": "protocol_not_ends_with_nocase", "description": null, "type": { "kind": "SCALAR", @@ -148736,15 +153471,19 @@ "deprecationReason": null }, { - "name": "reason_not_in", + "name": "protocol_not_in", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null, @@ -148752,7 +153491,7 @@ "deprecationReason": null }, { - "name": "space", + "name": "protocol_not_starts_with", "description": null, "type": { "kind": "SCALAR", @@ -148764,23 +153503,19 @@ "deprecationReason": null }, { - "name": "space_in", + "name": "protocol_not_starts_with_nocase", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "voter", + "name": "protocol_starts_with", "description": null, "type": { "kind": "SCALAR", @@ -148792,27 +153527,23 @@ "deprecationReason": null }, { - "name": "voter_in", + "name": "protocol_starts_with_nocase", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "vp", + "name": "season", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -148820,11 +153551,11 @@ "deprecationReason": null }, { - "name": "vp_gt", + "name": "season_gt", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -148832,11 +153563,11 @@ "deprecationReason": null }, { - "name": "vp_gte", + "name": "season_gte", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -148844,15 +153575,19 @@ "deprecationReason": null }, { - "name": "vp_in", + "name": "season_in", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, "defaultValue": null, @@ -148860,11 +153595,11 @@ "deprecationReason": null }, { - "name": "vp_lt", + "name": "season_lt", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -148872,11 +153607,11 @@ "deprecationReason": null }, { - "name": "vp_lte", + "name": "season_lte", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -148884,11 +153619,11 @@ "deprecationReason": null }, { - "name": "vp_state", + "name": "season_not", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -148896,15 +153631,19 @@ "deprecationReason": null }, { - "name": "vp_state_in", + "name": "season_not_in", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, "defaultValue": null, @@ -148917,54 +153656,116 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "Vp", + "kind": "ENUM", + "name": "WellOracle_orderBy", "description": null, - "fields": [ + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "vp", + "name": "blockNumber", "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "vp_by_strategy", + "name": "createdAt", "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "vp_state", + "name": "cumulativeReserves", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deltaB", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hash", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "logIndex", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol__lastSeason", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol__lastUpgrade", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol__methodologyVersion", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol__name", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol__schemaVersion", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol__slug", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "protocol__subgraphVersion", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "season", "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { diff --git a/projects/ui/src/hooks/app/useBanner.tsx b/projects/ui/src/hooks/app/useBanner.tsx index f6c9c1d6a1..2a6120b971 100644 --- a/projects/ui/src/hooks/app/useBanner.tsx +++ b/projects/ui/src/hooks/app/useBanner.tsx @@ -15,6 +15,22 @@ const useBanner = () => { ); return useMemo(() => { + return ( + + BIP-38 Unripe liquidity migration is in process. Quotes will be affected + until the migration is complete. See  + + Discord + +  for more information. + + ); + + // eslint-disable-next-line no-unreachable if (migrationNeeded === true) { return ( diff --git a/projects/ui/src/hooks/beanstalk/useBeanstalkBalancesBreakdown.tsx b/projects/ui/src/hooks/beanstalk/useBeanstalkBalancesBreakdown.tsx index c7ba9f5920..5dc17e90e3 100644 --- a/projects/ui/src/hooks/beanstalk/useBeanstalkBalancesBreakdown.tsx +++ b/projects/ui/src/hooks/beanstalk/useBeanstalkBalancesBreakdown.tsx @@ -33,8 +33,7 @@ export const STATE_CONFIG = { withdrawn: [ 'Claimable', colors.chart.yellowLight, - (name: string) => - `Legacy Claimable ${name} Withdrawals from pre-Silo V3.`, + (name: string) => `Legacy Claimable ${name} Withdrawals from pre-Silo V3.`, ], farmable: [ 'Farm & Circulating', @@ -206,15 +205,16 @@ export default function useBeanstalkSiloBreakdown() { ZERO_BN ); - // Ripe Pooled = BEAN:3crv_RESERVES * (Ripe BEAN:3CRV / BEAN:3CRV Token Supply) - // TODO: can we reduce this duplicate code? - ripePooled = new BigNumber(totalPooled).multipliedBy( - new BigNumber( - unripeTokenState[ripeToUnripe[Bean3CRV.address].address] - ?.underlying || 0 - ).div(new BigNumber(poolState[Bean3CRV.address]?.supply || 0)) - ); - pooled = new BigNumber(totalPooled).minus(ripePooled); + // TODO: need to verify it's correct to comment this out after the BIP38 migration + // // Ripe Pooled = BEAN:3crv_RESERVES * (Ripe BEAN:3CRV / BEAN:3CRV Token Supply) + // // TODO: can we reduce this duplicate code? + // ripePooled = new BigNumber(totalPooled).multipliedBy( + // new BigNumber( + // unripeTokenState[ripeToUnripe[Bean3CRV.address].address] + // ?.underlying || 0 + // ).div(new BigNumber(poolState[Bean3CRV.address]?.supply || 0)) + // ); + // pooled = new BigNumber(totalPooled).minus(ripePooled); farmable = beanSupply .minus(budget) @@ -234,7 +234,8 @@ export default function useBeanstalkSiloBreakdown() { const amountByState = { deposited: siloBalance.deposited?.amount, - withdrawn: TOKEN === BeanETH ? undefined : siloBalance.withdrawn?.amount, + withdrawn: + TOKEN === BeanETH ? undefined : siloBalance.withdrawn?.amount, pooled: pooled, ripePooled: ripePooled, ripe: ripe, @@ -243,7 +244,10 @@ export default function useBeanstalkSiloBreakdown() { }; const usdValueByState = { deposited: getUSD(TOKEN, siloBalance.deposited.amount), - withdrawn: TOKEN === BeanETH ? undefined : getUSD(TOKEN, siloBalance.withdrawn.amount), + withdrawn: + TOKEN === BeanETH + ? undefined + : getUSD(TOKEN, siloBalance.withdrawn.amount), pooled: pooled ? getUSD(TOKEN, pooled) : undefined, ripePooled: ripePooled ? getUSD(TOKEN, ripePooled) : undefined, ripe: ripe ? getUSD(TOKEN, ripe) : undefined, @@ -301,7 +305,6 @@ export default function useBeanstalkSiloBreakdown() { ripeToUnripe, unripeToRipe, Bean, - Bean3CRV, BeanETH, poolState, getUSD, diff --git a/projects/ui/src/hooks/beanstalk/useSiloTokenToFiat.ts b/projects/ui/src/hooks/beanstalk/useSiloTokenToFiat.ts index 658478634f..41a18fdc80 100644 --- a/projects/ui/src/hooks/beanstalk/useSiloTokenToFiat.ts +++ b/projects/ui/src/hooks/beanstalk/useSiloTokenToFiat.ts @@ -6,9 +6,9 @@ import usePrice from '~/hooks/beanstalk/usePrice'; import useGetChainToken from '~/hooks/chain/useGetChainToken'; import { BEAN, - BEAN_CRV3_LP, UNRIPE_BEAN, - UNRIPE_BEAN_CRV3, + BEAN_ETH_WELL_LP, + UNRIPE_BEAN_WETH, } from '~/constants/tokens'; import { ZERO_BN } from '~/constants'; import { AppState } from '~/state'; @@ -21,9 +21,9 @@ const useSiloTokenToFiat = () => { /// const getChainToken = useGetChainToken(); const Bean = getChainToken(BEAN); - const BeanCrv3 = getChainToken(BEAN_CRV3_LP); const urBean = getChainToken(UNRIPE_BEAN); - const urBeanCrv3 = getChainToken(UNRIPE_BEAN_CRV3); + const beanWeth = getChainToken(BEAN_ETH_WELL_LP); + const urBeanWeth = getChainToken(UNRIPE_BEAN_WETH); /// const beanPools = useSelector( @@ -60,25 +60,44 @@ const useSiloTokenToFiat = () => { /// For everything else, use the value of the LP token via the beanPool liquidity/supply ratio. /// FIXME: the price contract provides this directly now to save a calculation on the frontend. - let _poolAddress = _token.address; - let _amountLP = _amount; - /// For Unripe Bean:3CRV, assume we chop to Ripe Bean:3CRV - if (_token === urBeanCrv3) { - _poolAddress = BeanCrv3.address; - _amountLP = _chop - ? _amount.times(unripe[urBeanCrv3.address]?.chopRate || ZERO_BN) - : _amount; + const _poolAddress = _token.address; + const _amountLP = _amount; + + if (_token === urBeanWeth) { + // formula for calculating chopped urBEANETH: + // userUrLP * totalUnderlyingLP / totalSupplyUrLP * recapPaidPercent + const underlyingTotalLP = unripe[urBeanWeth.address]?.underlying; + const totalSupplyUrLP = unripe[urBeanWeth.address]?.supply; + const recapPaidPercent = unripe[urBeanWeth.address]?.recapPaidPercent; + const choppedLP = _amount + .multipliedBy(underlyingTotalLP) + .dividedBy(totalSupplyUrLP) + .multipliedBy(recapPaidPercent); + + // console.log(`underlyingTotalLP`, underlyingTotalLP.toString()); // 285772.366579734565388865 + // console.log(`totalSupplyUrLP`, totalSupplyUrLP.toString()); // 101482689.1786 + // console.log(`recapPaidPercent`, recapPaidPercent.toString()); // 0.006132 + // console.log(`amountLP`, _amount.toString()); // 370168.862647 + // console.log(`choppedLP`, choppedLP.toString()); // 6.39190475675572378624622472 + const lpUsd = beanPools[beanWeth.address]?.lpUsd || ZERO_BN; + const lpBdv = beanPools[beanWeth.address]?.lpBdv || ZERO_BN; + + return _denomination === 'bdv' + ? lpBdv?.multipliedBy(choppedLP) + : lpUsd?.multipliedBy(choppedLP); } - /// Grab pool data + /// Grab pool data. Here we can only have ripe, LP assets (BEAN:3CRV or BEAN:ETH) const pool = beanPools[_poolAddress]; if (!pool || !pool?.liquidity || !pool?.supply) return ZERO_BN; - const usd = _amountLP.div(pool.supply).times(pool.liquidity); // usd value; liquidity - return _denomination === 'bdv' ? usd.div(price) : usd; + const usd = _amountLP?.multipliedBy(pool.lpUsd); + const bdv = _amountLP?.multipliedBy(pool.lpBdv); + + return _denomination === 'bdv' ? bdv : usd; }, - [Bean, BeanCrv3.address, beanPools, price, unripe, urBean, urBeanCrv3] + [Bean, beanPools, beanWeth, price, unripe, urBean, urBeanWeth] ); }; diff --git a/projects/ui/src/hooks/beanstalk/useTVD.ts b/projects/ui/src/hooks/beanstalk/useTVD.ts index 041873169a..8081f75e78 100644 --- a/projects/ui/src/hooks/beanstalk/useTVD.ts +++ b/projects/ui/src/hooks/beanstalk/useTVD.ts @@ -6,6 +6,7 @@ import { AppState } from '~/state'; import useSiloTokenToFiat from './useSiloTokenToFiat'; import useWhitelist from './useWhitelist'; import { ONE_BN, ZERO_BN } from '~/constants'; +import useUnripeUnderlyingMap from './useUnripeUnderlying'; export default function useTVD() { const whitelist = useWhitelist(); @@ -16,6 +17,7 @@ export default function useTVD() { const unripeTokens = useSelector( (state) => state._bean.unripe ); + const unripeUnderlyingTokens = useUnripeUnderlyingMap(); const siloTokenToFiat = useSiloTokenToFiat(); @@ -33,12 +35,22 @@ export default function useTVD() { const { tokenTvdMap, total } = Object.values(whitelist).reduce( (prev, curr) => { - const tvdByToken = siloTokenToFiat( - curr, - getDepositedAmount(curr), - 'usd', - !curr.isUnripe - ); + let tvdByToken; + if (curr.symbol === 'urBEANETH') { + tvdByToken = siloTokenToFiat( + unripeUnderlyingTokens[curr.address], + getDepositedAmount(curr), + 'usd', + false + ); + } else { + tvdByToken = siloTokenToFiat( + curr, + getDepositedAmount(curr), + 'usd', + !curr.isUnripe + ); + } const copy = { ...prev.tokenTvdMap }; copy[curr.address] = tvdByToken; return { @@ -56,5 +68,11 @@ export default function useTVD() { tvdByToken: tokenTvdMap, total, }; - }, [balances, siloTokenToFiat, unripeTokens, whitelist]); + }, [ + balances, + siloTokenToFiat, + unripeTokens, + unripeUnderlyingTokens, + whitelist, + ]); } diff --git a/projects/ui/src/hooks/farmer/useFertilizerSummary.ts b/projects/ui/src/hooks/farmer/useFertilizerSummary.ts index e55dab515c..cb248a7061 100644 --- a/projects/ui/src/hooks/farmer/useFertilizerSummary.ts +++ b/projects/ui/src/hooks/farmer/useFertilizerSummary.ts @@ -1,9 +1,17 @@ +import { TokenValue } from '@beanstalk/sdk'; import BigNumber from 'bignumber.js'; import useSdk, { getNewToOldToken } from '~/hooks/sdk'; import { FormTokenStateNew } from '~/components/Common/Form'; import useHumidity from '~/hooks/beanstalk/useHumidity'; import { Action, ActionType, SwapAction } from '~/util/Actions'; +export type SummaryData = { + actions: Action[]; + weth: BigNumber; + fert: BigNumber; + humidity: BigNumber; +}; + /** * Summarize the Actions that will occur when making a Deposit. * This includes pre-deposit Swaps, the Deposit itself, and resulting @@ -12,18 +20,27 @@ import { Action, ActionType, SwapAction } from '~/util/Actions'; * @param to A whitelisted Silo Token which the Farmer is depositing to. * @param tokens Token form state. */ -export default function useFertilizerSummary(tokens: FormTokenStateNew[]) { +export default function useFertilizerSummary( + tokens: FormTokenStateNew[], + ethPrice: TokenValue +) { const sdk = useSdk(); - const usdc = sdk.tokens.USDC; + + // const usdc = sdk.tokens.USDC; + const wethToken = sdk.tokens.WETH; const eth = sdk.tokens.ETH; const [humidity] = useHumidity(); - const summary = (() => { + const buildSummary = () => { const _data = tokens.reduce( (agg, curr) => { - const amount = usdc.equals(curr.token) ? curr.amount : curr.amountOut; + // const amount = usdc.equals(curr.token) ? curr.amount : curr.amountOut; + const amount = wethToken.equals(curr.token) + ? curr.amount + : curr.amountOut; if (amount) { - agg.usdc = agg.usdc.plus(amount); + // agg.usdc = agg.usdc.plus(amount); + agg.weth = agg.weth.plus(amount); if (curr.amount && curr.amountOut) { const currTokenKey = curr.token.equals(eth) ? 'eth' @@ -39,7 +56,7 @@ export default function useFertilizerSummary(tokens: FormTokenStateNew[]) { agg.actions[currTokenKey] = { type: ActionType.SWAP, tokenIn: getNewToOldToken(curr.token), - tokenOut: getNewToOldToken(usdc), + tokenOut: getNewToOldToken(wethToken), amountIn: curr.amount, amountOut: curr.amountOut, }; @@ -50,7 +67,8 @@ export default function useFertilizerSummary(tokens: FormTokenStateNew[]) { return agg; }, { - usdc: new BigNumber(0), // The amount of USDC to be swapped for FERT. + // usdc: new BigNumber(0), // The amount of USD used to buy FERT. + weth: new BigNumber(0), // The amount of WETH to be swapped for FERT. fert: new BigNumber(0), humidity: humidity, actions: {} as Record, @@ -61,19 +79,23 @@ export default function useFertilizerSummary(tokens: FormTokenStateNew[]) { ..._data, actions: Object.values(_data.actions) as Action[], }; - })(); + }; + + const data = buildSummary(); - summary.fert = summary.usdc.dp(0, BigNumber.ROUND_DOWN); + data.fert = data.weth + .multipliedBy(ethPrice.toHuman()) + .dp(0, BigNumber.ROUND_DOWN); - summary.actions.push({ + data.actions.push({ type: ActionType.BUY_FERTILIZER, - amountIn: summary.fert, + amountIn: data.fert, humidity, }); - summary.actions.push({ + data.actions.push({ type: ActionType.RECEIVE_FERT_REWARDS, - amountOut: humidity.plus(1).times(summary.fert), + amountOut: humidity.plus(1).times(data.fert), }); - return summary; + return data; } diff --git a/projects/ui/src/hooks/ledger/useEthPriceFromBeanstalk.ts b/projects/ui/src/hooks/ledger/useEthPriceFromBeanstalk.ts new file mode 100644 index 0000000000..951a0b24fe --- /dev/null +++ b/projects/ui/src/hooks/ledger/useEthPriceFromBeanstalk.ts @@ -0,0 +1,32 @@ +import { useState } from 'react'; +import { TokenValue } from '@beanstalk/sdk'; +import useSdk from '../sdk'; + +const MIN_CACHE_TIME = 10 * 1000; // 10 seconds + +export const useEthPriceFromBeanstalk = () => { + const sdk = useSdk(); + const [ethPrice, setEthPrice] = useState(); + const [lastFetchTimestamp, setLastFetchTimestamp] = useState(0); + + const fetchEthPrice = async () => { + const fert = await sdk.contracts.beanstalk.getMintFertilizerOut( + TokenValue.fromHuman(1000000, 18).toBlockchain() + ); + + const price = TokenValue.fromBlockchain(fert, 6); + console.log('Fetched eth price from beanstalk: ', price.toHuman()); + setEthPrice(price); + setLastFetchTimestamp(Date.now()); + return price; + }; + + const getEthPrice = async (): Promise => { + if (Date.now() - lastFetchTimestamp > MIN_CACHE_TIME) { + return fetchEthPrice(); + } + return ethPrice!; + }; + + return getEthPrice; +}; diff --git a/projects/ui/src/hooks/sdk/index.ts b/projects/ui/src/hooks/sdk/index.ts index 5eed82a998..54800f1b00 100644 --- a/projects/ui/src/hooks/sdk/index.ts +++ b/projects/ui/src/hooks/sdk/index.ts @@ -6,7 +6,7 @@ import { ETH, BEAN_CRV3_LP, UNRIPE_BEAN, - UNRIPE_BEAN_CRV3, + UNRIPE_BEAN_WETH, WETH, CRV3, DAI, @@ -38,7 +38,7 @@ const oldTokenMap = { [BEAN_CRV3_LP[1].symbol]: BEAN_CRV3_LP[1], [BEAN_ETH_WELL_LP[1].symbol]: BEAN_ETH_WELL_LP[1], [UNRIPE_BEAN[1].symbol]: UNRIPE_BEAN[1], - [UNRIPE_BEAN_CRV3[1].symbol]: UNRIPE_BEAN_CRV3[1], + [UNRIPE_BEAN_WETH[1].symbol]: UNRIPE_BEAN_WETH[1], [WETH[1].symbol]: WETH[1], [CRV3[1].symbol]: CRV3[1], [DAI[1].symbol]: DAI[1], diff --git a/projects/ui/src/img/beanstalk/silo/edu/depositBeanEth.svg b/projects/ui/src/img/beanstalk/silo/edu/depositBeanEth.svg new file mode 100644 index 0000000000..19e30314ea --- /dev/null +++ b/projects/ui/src/img/beanstalk/silo/edu/depositBeanEth.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/projects/ui/src/img/beanstalk/silo/edu/depositUrBean3crvImg.svg b/projects/ui/src/img/beanstalk/silo/edu/depositUrBean3crvImg.svg deleted file mode 100644 index 9102ad7af7..0000000000 --- a/projects/ui/src/img/beanstalk/silo/edu/depositUrBean3crvImg.svg +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/projects/ui/src/img/beanstalk/silo/edu/depositUrBeanEth.svg b/projects/ui/src/img/beanstalk/silo/edu/depositUrBeanEth.svg new file mode 100644 index 0000000000..be13da7dda --- /dev/null +++ b/projects/ui/src/img/beanstalk/silo/edu/depositUrBeanEth.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/projects/ui/src/img/tokens/unrip-beanweth.svg b/projects/ui/src/img/tokens/unrip-beanweth.svg new file mode 100644 index 0000000000..56dd1ca066 --- /dev/null +++ b/projects/ui/src/img/tokens/unrip-beanweth.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/projects/ui/src/img/tokens/unripe-lp-logo-circled.svg b/projects/ui/src/img/tokens/unripe-lp-logo-circled.svg deleted file mode 100644 index 66fe5aa5a3..0000000000 --- a/projects/ui/src/img/tokens/unripe-lp-logo-circled.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/projects/ui/src/lib/Txn/FarmSteps/barn/BuyFarmStep.ts b/projects/ui/src/lib/Txn/FarmSteps/barn/BuyFarmStep.ts index a2df496eb5..459c26a59d 100644 --- a/projects/ui/src/lib/Txn/FarmSteps/barn/BuyFarmStep.ts +++ b/projects/ui/src/lib/Txn/FarmSteps/barn/BuyFarmStep.ts @@ -3,7 +3,6 @@ import { ERC20Token, FarmFromMode, FarmToMode, - FarmWorkflow, NativeToken, StepGenerator, Token, @@ -11,8 +10,8 @@ import { } from '@beanstalk/sdk'; import BigNumber from 'bignumber.js'; import { ClaimAndDoX, FarmStep } from '~/lib/Txn/Interface'; -import { makeLocalOnlyStep } from '../../util'; -import { tokenValueToBN } from '~/util'; +import { SupportedChainId, BEAN_ETH_WELL_ADDRESSES } from '~/constants'; +import { getChainConstant } from '~/util/Chain'; export class BuyFertilizerFarmStep extends FarmStep { private _tokenList: (ERC20Token | NativeToken)[]; @@ -27,13 +26,15 @@ export class BuyFertilizerFarmStep extends FarmStep { tokenIn: Token, amountIn: TokenValue, _fromMode: FarmFromMode, - claimAndDoX: ClaimAndDoX + claimAndDoX: ClaimAndDoX, + ethPrice: TokenValue, + slippage: number ) { this.clear(); const { beanstalk } = this._sdk.contracts; - const { ethIn, usdcIn, beanIn } = BuyFertilizerFarmStep.validateTokenIn( + const { wethIn } = BuyFertilizerFarmStep.validateTokenIn( this._sdk.tokens, this._tokenList, tokenIn @@ -41,92 +42,25 @@ export class BuyFertilizerFarmStep extends FarmStep { let fromMode = _fromMode; - const additionalBean = claimAndDoX.claimedBeansUsed; - /// If the user is not using additional BEANs - if (!claimAndDoX.isUsingClaimed) { - if (!usdcIn) { - this.pushInput({ - ...BuyFertilizerFarmStep.getSwap( - this._sdk, - tokenIn, - this._sdk.tokens.USDC, - this._account, - fromMode - ), - }); - fromMode = FarmFromMode.INTERNAL_TOLERANT; - } - } - /// If the user is using additional BEANs & using either BEAN or ETH - else if (!usdcIn) { - if (ethIn) { - this.pushInput({ - ...BuyFertilizerFarmStep.getSwap( - this._sdk, - tokenIn, - this._sdk.tokens.BEAN, - this._account, - fromMode - ), - }); - fromMode = FarmFromMode.INTERNAL_TOLERANT; - } - this.pushInput( - makeLocalOnlyStep({ - name: 'add-claimable-bean', - amount: { - additionalAmount: additionalBean, - }, - }) - ); - if (beanIn) { - /// FIXME: Edge case here. If the user has enough in their Internal to cover the full amount, - /// & circulating balance is selected, it'll only use BEAN from their internal balance. - if (fromMode === FarmFromMode.EXTERNAL) { - fromMode = FarmFromMode.INTERNAL_EXTERNAL; - } - } - this.pushInput({ - input: this.getBean2Usdc(fromMode), - }); - } - /// If the user is using additional BEANs & using USDC - else if (usdcIn) { - // forerun the buy fert txn w/ bean => USDC swap - this.pushInput( - makeLocalOnlyStep({ - name: 'add-claimable-bean', - amount: { - overrideAmount: additionalBean, - }, - }) - ); - /// Internal Tolerant b/c we are claiming our claimable beans to our Internal balance. + if (!wethIn) { this.pushInput({ - input: this.getBean2Usdc(FarmFromMode.INTERNAL_TOLERANT), + ...BuyFertilizerFarmStep.getSwap( + this._sdk, + tokenIn, + this._sdk.tokens.WETH, + this._account, + fromMode + ), }); - // add the original amount of USDC in 'amountIn' w/ the amount out from claimable beans - this.pushInput( - makeLocalOnlyStep({ - name: 'add-original-USDC-amount', - amount: { - additionalAmount: amountIn, - }, - }) - ); - if (fromMode === FarmFromMode.EXTERNAL) { - fromMode = FarmFromMode.INTERNAL_EXTERNAL; - } + fromMode = FarmFromMode.INTERNAL_TOLERANT; } this.pushInput({ input: async (_amountInStep) => { - const amountUSDC = this._sdk.tokens.USDC.fromBlockchain(_amountInStep); - const roundedUSDCOut = this.roundDownUSDC(amountUSDC); - const minLP = await this.calculateMinLP( - this._sdk.tokens.USDC.fromBlockchain(roundedUSDCOut.blockchainString) - ); + const amountWeth = this._sdk.tokens.WETH.fromBlockchain(_amountInStep); + const amountFert = this.getFertFromWeth(amountWeth, ethPrice); + const minLP = await this.calculateMinLP(amountWeth, ethPrice); return { name: 'mintFertilizer', @@ -134,10 +68,10 @@ export class BuyFertilizerFarmStep extends FarmStep { prepare: () => ({ target: beanstalk.address, callData: beanstalk.interface.encodeFunctionData('mintFertilizer', [ - TokenValue.fromHuman(roundedUSDCOut.toHuman(), 0) - .blockchainString, - FarmWorkflow.slip(minLP, 0.1), - fromMode, + amountWeth.toBlockchain(), // wethAmountIn + amountFert.toBlockchain(), // minFertilizerOut + minLP.subSlippage(slippage).toBlockchain(), // minLPTokensOut (with slippage applied) + fromMode, // fromMode ]), }), decode: (data: string) => @@ -155,37 +89,38 @@ export class BuyFertilizerFarmStep extends FarmStep { return this; } - roundDownUSDC(amount: TokenValue) { - const rounded = tokenValueToBN(amount).dp(0, BigNumber.ROUND_DOWN); - return this._sdk.tokens.USDC.amount(rounded.toString()); + // eslint-disable-next-line class-methods-use-this + getFertFromWeth(amount: TokenValue, ethPrice: TokenValue) { + return amount.mul(ethPrice).reDecimal(0); } // private methods - private async calculateMinLP(roundedUSDCIn: TokenValue) { - return this._sdk.contracts.curve.zap.callStatic.calc_token_amount( - this._sdk.contracts.curve.pools.beanCrv3.address, - [ - // 0.866616 is the ratio to add USDC/Bean at such that post-exploit - // delta B in the Bean:3Crv pool with A=1 equals the pre-export - // total delta B times the haircut. Independent of the haircut %. - roundedUSDCIn.mul(0.866616).blockchainString, // BEAN - 0, // DAI - roundedUSDCIn.blockchainString, // USDC - 0, // USDT - ], - true, // _is_deposit - { gasLimit: 10000000 } - ); - } - private getBean2Usdc(from: FarmFromMode) { - return new this._sdk.farm.actions.ExchangeUnderlying( - this._sdk.contracts.curve.pools.beanCrv3.address, - this._sdk.tokens.BEAN, - this._sdk.tokens.USDC, - from, - FarmToMode.INTERNAL - ); + /** + * The steps for calculating minLP given wethAmountIn are: + * 1. usdAmountIn = wethAmountIn / wethUsdcPrice (or wethAmountIn * usdcWethPrice. Let's make sure to use getMintFertilizerOut(1000000) + * or the function that I will add to make sure it uses the same wethUsdc price as the contract or otherwise the amount out could be off) + * 2. beansMinted = usdAmountIn * 0.866616 (Because Beanstalk mints 0.866616 Beans for each $1 contributed) + * 3. lpAmountOut = beanEthWell.getAddLiquidityOut([beansMinted, wethAmountIn]) + * + * Apply slippage minLPTokensOut = lpAmountOut * (1 - slippage) + */ + // eslint-disable-next-line class-methods-use-this + private async calculateMinLP( + wethAmount: TokenValue, + ethPrice: TokenValue + ): Promise { + const beanWethWellAddress = getChainConstant( + BEAN_ETH_WELL_ADDRESSES, + SupportedChainId.MAINNET + ).toLowerCase(); + const well = await this._sdk.wells.getWell(beanWethWellAddress); + + const usdAmountIn = ethPrice.mul(wethAmount); + const beansToMint = usdAmountIn.mul(0.866616); + const lpEstimate = await well.addLiquidityQuote([beansToMint, wethAmount]); + + return lpEstimate; } private static getSwap( @@ -224,7 +159,7 @@ export class BuyFertilizerFarmStep extends FarmStep { const { swap, input } = BuyFertilizerFarmStep.getSwap( sdk, tokenIn, - sdk.tokens.USDC, + sdk.tokens.WETH, account, _fromMode ); @@ -247,13 +182,13 @@ export class BuyFertilizerFarmStep extends FarmStep { const { BEAN, ETH, WETH, CRV3, DAI, USDC, USDT } = tokens; return [ - { token: BEAN, minimum: new BigNumber(1) }, { token: ETH, minimum: new BigNumber(0.01) }, { token: WETH, minimum: new BigNumber(0.01) }, + { token: BEAN, minimum: new BigNumber(1) }, { token: CRV3, minimum: new BigNumber(1) }, { token: DAI, minimum: new BigNumber(1) }, { token: USDC, minimum: new BigNumber(1) }, - { token: USDT, minimum: new BigNumber(1) }, + { token: USDT, minimum: new BigNumber(1) }, ]; } @@ -262,14 +197,14 @@ export class BuyFertilizerFarmStep extends FarmStep { tokenList: Token[], tokenIn: Token ) { - if (!tokenList.find((token) => tokenIn.equals(token))) { + if (!tokenList.find((token) => tokenIn.symbol === token.symbol)) { throw new Error('Invalid token'); } return { beanIn: sdkTokens.BEAN.equals(tokenIn), ethIn: tokenIn.equals(sdkTokens.ETH), - usdcIn: sdkTokens.USDC.equals(tokenIn), + wethIn: sdkTokens.WETH.equals(tokenIn), }; } } diff --git a/projects/ui/src/lib/Txn/FarmSteps/silo/ConvertFarmStep.ts b/projects/ui/src/lib/Txn/FarmSteps/silo/ConvertFarmStep.ts index 87275669b2..e9334fe974 100644 --- a/projects/ui/src/lib/Txn/FarmSteps/silo/ConvertFarmStep.ts +++ b/projects/ui/src/lib/Txn/FarmSteps/silo/ConvertFarmStep.ts @@ -9,7 +9,7 @@ import { ethers } from 'ethers'; import { FarmStep, PlantAndDoX } from '~/lib/Txn/Interface'; export class ConvertFarmStep extends FarmStep { - constructor( + constructor( _sdk: BeanstalkSDK, private _tokenIn: Token, private _tokenOut: Token, @@ -19,7 +19,6 @@ export class ConvertFarmStep extends FarmStep { super(_sdk); this._sdk = _sdk; this._deposits = _deposits; - } /// this logic exists in the SDK but won't work b/c we need to add plant @@ -146,7 +145,7 @@ export class ConvertFarmStep extends FarmStep { [siloConvert.Bean, siloConvert.BeanCrv3], [siloConvert.Bean, siloConvert.BeanEth], [siloConvert.Bean, siloConvert.BeanCrv3, siloConvert.BeanEth], - [siloConvert.urBean, siloConvert.urBeanCrv3], + [siloConvert.urBean, siloConvert.urBeanWeth], ]; /// b/c siloConvert uses it's own token instances @@ -154,15 +153,17 @@ export class ConvertFarmStep extends FarmStep { [sdk.tokens.BEAN, sdk.tokens.BEAN_CRV3_LP], [sdk.tokens.BEAN, sdk.tokens.BEAN_ETH_WELL_LP], [sdk.tokens.BEAN, sdk.tokens.BEAN_CRV3_LP, sdk.tokens.BEAN_ETH_WELL_LP], - [sdk.tokens.UNRIPE_BEAN, sdk.tokens.UNRIPE_BEAN_CRV3], + [sdk.tokens.UNRIPE_BEAN, sdk.tokens.UNRIPE_BEAN_WETH], ]; - const index = tokenIn === sdk.tokens.BEAN_CRV3_LP ? 0 - : tokenIn === sdk.tokens.BEAN_ETH_WELL_LP ? 1 - : tokenIn === sdk.tokens.BEAN ? 2 - : 3 - ; - + const index = + tokenIn === sdk.tokens.BEAN_CRV3_LP + ? 0 + : tokenIn === sdk.tokens.BEAN_ETH_WELL_LP + ? 1 + : tokenIn === sdk.tokens.BEAN + ? 2 + : 3; const path = pathMatrix[index]; const tokenInIndex = path.findIndex((t) => t.equals(tokenIn)); diff --git a/projects/ui/src/pages/silo/index.tsx b/projects/ui/src/pages/silo/index.tsx index fc17e08262..f0ec45daee 100644 --- a/projects/ui/src/pages/silo/index.tsx +++ b/projects/ui/src/pages/silo/index.tsx @@ -35,7 +35,7 @@ import useToggle from '~/hooks/display/useToggle'; import useRevitalized from '~/hooks/farmer/useRevitalized'; import useSeason from '~/hooks/beanstalk/useSeason'; import { AppState } from '~/state'; -import { UNRIPE_BEAN, UNRIPE_BEAN_CRV3 } from '~/constants/tokens'; +import { UNRIPE_BEAN, UNRIPE_BEAN_WETH } from '~/constants/tokens'; import useGetChainToken from '~/hooks/chain/useGetChainToken'; import GuideButton from '~/components/Common/Guide/GuideButton'; import { CLAIM_SILO_REWARDS, HOW_TO_DEPOSIT_IN_THE_SILO } from '~/util/Guides'; @@ -111,12 +111,12 @@ const RewardsBar: FC<{ /// Calculate Unripe Silo Balance const urBean = getChainToken(UNRIPE_BEAN); - const urBeanCrv3 = getChainToken(UNRIPE_BEAN_CRV3); + const urBeanWeth = getChainToken(UNRIPE_BEAN_WETH); const balances = farmerSilo.balances; const unripeDepositedBalance = balances[ urBean.address - ]?.deposited.amount.plus(balances[urBeanCrv3.address]?.deposited.amount); + ]?.deposited.amount.plus(balances[urBeanWeth.address]?.deposited.amount); const [refetchFarmerSilo] = useFetchFarmerSilo(); const account = useAccount(); @@ -572,7 +572,7 @@ const RewardsBar: FC<{ hideIfZero /> - + */} +
+ Temporarily disabled while BIP-38 migration is in progress +
{isEstimatingGas ? ( diff --git a/projects/ui/src/state/bean/pools/index.ts b/projects/ui/src/state/bean/pools/index.ts index 7dd4023426..4a2f26db24 100644 --- a/projects/ui/src/state/bean/pools/index.ts +++ b/projects/ui/src/state/bean/pools/index.ts @@ -58,6 +58,12 @@ export type BeanPoolState = { * The total supply of the Pool's LP token. */ supply: BigNumber; + + /** + * The price of 1 LP token in usd or bdv + */ + lpUsd: BigNumber; + lpBdv: BigNumber; }; export type BeanPools = { diff --git a/projects/ui/src/state/bean/pools/updater.ts b/projects/ui/src/state/bean/pools/updater.ts index 6162721914..3104034bc3 100644 --- a/projects/ui/src/state/bean/pools/updater.ts +++ b/projects/ui/src/state/bean/pools/updater.ts @@ -87,6 +87,8 @@ export const useFetchPools = () => { ), // USD value of 1 LP token == liquidity / supply totalCrosses: new BigNumber(0), + lpUsd: tokenResult(BEAN)(poolData.lpUsd), + lpBdv: tokenResult(BEAN)(poolData.lpBdv), }, })) .catch((err) => { diff --git a/projects/ui/src/state/bean/unripe/index.ts b/projects/ui/src/state/bean/unripe/index.ts index 03e2a28732..c5cd61e247 100644 --- a/projects/ui/src/state/bean/unripe/index.ts +++ b/projects/ui/src/state/bean/unripe/index.ts @@ -6,6 +6,7 @@ export type UnripeToken = { chopPenalty: BigNumber; underlying: BigNumber; supply: BigNumber; + recapPaidPercent: BigNumber; }; export type Unripe = AddressMap; diff --git a/projects/ui/src/state/bean/unripe/updater.ts b/projects/ui/src/state/bean/unripe/updater.ts index 2879f31d79..f9f8828724 100644 --- a/projects/ui/src/state/bean/unripe/updater.ts +++ b/projects/ui/src/state/bean/unripe/updater.ts @@ -37,6 +37,9 @@ export const useUnripe = () => { unripeTokens[addr] .getTotalSupply() .then(tokenResult(unripeTokens[addr])), + beanstalk + .getRecapPaidPercent() + .then(tokenResult(unripeTokens[addr])), ]) ) ); @@ -49,6 +52,7 @@ export const useUnripe = () => { chopPenalty: ONE_BN.minus(chopRate).times(100), underlying: results[index][1], supply: results[index][2], + recapPaidPercent: results[index][3], }; return prev; }, diff --git a/projects/ui/src/state/farmer/silo/updater.ts b/projects/ui/src/state/farmer/silo/updater.ts index b1aa3fbb8f..7264cd79f1 100644 --- a/projects/ui/src/state/farmer/silo/updater.ts +++ b/projects/ui/src/state/farmer/silo/updater.ts @@ -178,7 +178,7 @@ export const useFetchFarmerSilo = () => { let seedsTV; if (token === sdk.tokens.UNRIPE_BEAN) { seedsTV = sdk.tokens.SEEDS.amount(2).mul(bdvTV); - } else if (token === sdk.tokens.UNRIPE_BEAN_CRV3) { + } else if (token === sdk.tokens.UNRIPE_BEAN_WETH) { seedsTV = sdk.tokens.SEEDS.amount(4).mul(bdvTV); } else { seedsTV = token.getSeeds(bdvTV); diff --git a/protocol/abi/Beanstalk.json b/protocol/abi/Beanstalk.json index 36db529a39..12943063d8 100644 --- a/protocol/abi/Beanstalk.json +++ b/protocol/abi/Beanstalk.json @@ -99,6 +99,25 @@ "name": "Pick", "type": "event" }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "underlyingToken", + "type": "address" + } + ], + "name": "SwitchUnderlyingToken", + "type": "event" + }, { "inputs": [ { @@ -128,6 +147,24 @@ "stateMutability": "view", "type": "function" }, + { + "inputs": [ + { + "internalType": "address", + "name": "unripeToken", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "addMigratedUnderlying", + "outputs": [], + "stateMutability": "payable", + "type": "function" + }, { "inputs": [ { @@ -480,46 +517,41 @@ "type": "function" }, { - "anonymous": false, "inputs": [ { - "indexed": false, - "internalType": "uint128", - "name": "id", - "type": "uint128" + "internalType": "address", + "name": "unripeToken", + "type": "address" }, { - "indexed": false, - "internalType": "uint128", - "name": "bpf", - "type": "uint128" + "internalType": "address", + "name": "newUnderlyingToken", + "type": "address" } ], - "name": "SetFertilizer", - "type": "event" + "name": "switchUnderlyingToken", + "outputs": [], + "stateMutability": "payable", + "type": "function" }, { + "anonymous": false, "inputs": [ { + "indexed": false, "internalType": "uint128", "name": "id", "type": "uint128" }, { + "indexed": false, "internalType": "uint128", - "name": "amount", + "name": "bpf", "type": "uint128" - }, - { - "internalType": "uint256", - "name": "minLP", - "type": "uint256" } ], - "name": "addFertilizerOwner", - "outputs": [], - "stateMutability": "payable", - "type": "function" + "name": "SetFertilizer", + "type": "event" }, { "inputs": [ @@ -800,6 +832,25 @@ "stateMutability": "view", "type": "function" }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "wethAmountIn", + "type": "uint256" + } + ], + "name": "getMintFertilizerOut", + "outputs": [ + { + "internalType": "uint256", + "name": "fertilizerAmountOut", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, { "inputs": [ { @@ -835,13 +886,18 @@ { "inputs": [ { - "internalType": "uint128", - "name": "amount", - "type": "uint128" + "internalType": "uint256", + "name": "wethAmountIn", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "minFertilizerOut", + "type": "uint256" }, { "internalType": "uint256", - "name": "minLP", + "name": "minLPTokensOut", "type": "uint256" }, { @@ -851,7 +907,13 @@ } ], "name": "mintFertilizer", - "outputs": [], + "outputs": [ + { + "internalType": "uint256", + "name": "fertilizerAmountOut", + "type": "uint256" + } + ], "stateMutability": "payable", "type": "function" }, @@ -6872,4 +6934,4 @@ "stateMutability": "view", "type": "function" } -] \ No newline at end of file +]