diff --git a/.env b/.env index e8de092d9..1950df1ca 100644 --- a/.env +++ b/.env @@ -1,5 +1,5 @@ # graphql Subsquid endpoint -VITE_SUBSQUID_URL="https://squid.subsquid.io/origin-squid/graphql" +VITE_SUBSQUID_URL="https://origin.squids.live/origin-squid/v/v29/graphql" # graphql Snapshot endpoint VITE_SNAPSHOT_URL="https://hub.snapshot.org/graphql" # Alchemy rpc url diff --git a/.graphqlconfig b/.graphqlconfig index 838d0dc4f..5142a4b9f 100644 --- a/.graphqlconfig +++ b/.graphqlconfig @@ -1,7 +1,7 @@ { "name": "Subsquid GraphQL Schema", "schemaPath": [ - "https://squid.subsquid.io/origin-squid/graphql", + "https://origin.squids.live/origin-squid/v/v29/graphql", "https://squid.subsquid.io/prime-eth-squid/graphql", "https://hub.snapshot.org/graphql" ] diff --git a/libs/defi/home/src/hooks.ts b/libs/defi/home/src/hooks.ts index 416a57d87..1e5fea649 100644 --- a/libs/defi/home/src/hooks.ts +++ b/libs/defi/home/src/hooks.ts @@ -19,9 +19,9 @@ export const useTokenInfo = (token: Token) => } if (token.symbol === tokens.mainnet.OUSD.symbol) { - info.apy30DayAvg = data?.ousdapies?.at(0)?.apy30DayAvg ?? 0; + info.apy30DayAvg = data?.oTokenApies?.at(0)?.apy30DayAvg ?? 0; info.tvl = +formatUnits( - BigInt(data?.ousds?.at(0)?.totalSupply ?? '0'), + BigInt(data?.oTokens?.at(0)?.totalSupply ?? '0'), tokens.mainnet.OUSD.decimals, ); } diff --git a/libs/defi/home/src/queries.generated.ts b/libs/defi/home/src/queries.generated.ts index f8e14e884..b2fe95a2f 100644 --- a/libs/defi/home/src/queries.generated.ts +++ b/libs/defi/home/src/queries.generated.ts @@ -5,7 +5,7 @@ import { graphqlClient } from '@origin/defi/shared'; export type ProductCardQueryVariables = Types.Exact<{ [key: string]: never; }>; -export type ProductCardQuery = { __typename?: 'Query', oethDailyStats: Array<{ __typename?: 'OETHDailyStat', apy30DayAvg: number, totalSupply: string }>, ousds: Array<{ __typename?: 'OUSD', totalSupply: string }>, ousdapies: Array<{ __typename?: 'OUSDAPY', apy30DayAvg: number }> }; +export type ProductCardQuery = { __typename?: 'Query', oethDailyStats: Array<{ __typename?: 'OETHDailyStat', apy30DayAvg: number, totalSupply: string }>, oTokens: Array<{ __typename?: 'OToken', totalSupply: string }>, oTokenApies: Array<{ __typename?: 'OTokenAPY', apy30DayAvg: number }> }; @@ -15,10 +15,18 @@ export const ProductCardDocument = ` apy30DayAvg totalSupply } - ousds(limit: 1, orderBy: timestamp_DESC) { + oTokens( + limit: 1 + orderBy: timestamp_DESC + where: {chainId_eq: 1, otoken_eq: "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86"} + ) { totalSupply } - ousdapies(limit: 1, orderBy: timestamp_DESC) { + oTokenApies( + limit: 1 + orderBy: timestamp_DESC + where: {chainId_eq: 1, otoken_eq: "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86"} + ) { apy30DayAvg } } diff --git a/libs/defi/home/src/queries.graphql b/libs/defi/home/src/queries.graphql index 106c09edd..75db2991a 100644 --- a/libs/defi/home/src/queries.graphql +++ b/libs/defi/home/src/queries.graphql @@ -3,10 +3,10 @@ query ProductCard { apy30DayAvg totalSupply } - ousds(limit: 1, orderBy: timestamp_DESC) { + oTokens(limit: 1, orderBy: timestamp_DESC, where: {chainId_eq: 1, otoken_eq: "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86"} ) { totalSupply } - ousdapies(limit: 1, orderBy: timestamp_DESC) { + oTokenApies(limit: 1, orderBy: timestamp_DESC, where: {chainId_eq: 1, otoken_eq: "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86"} ) { apy30DayAvg } } diff --git a/libs/defi/oeth/src/portfolio/components/HistoryCard.tsx b/libs/defi/oeth/src/portfolio/components/HistoryCard.tsx index 4136e09b9..d02d02dbd 100644 --- a/libs/defi/oeth/src/portfolio/components/HistoryCard.tsx +++ b/libs/defi/oeth/src/portfolio/components/HistoryCard.tsx @@ -147,11 +147,11 @@ function ExportDataButton() { { enabled: isConnected, select: (data) => { - if (!data?.oethHistories) { + if (!data?.oTokenHistories) { return; } - return data.oethHistories.reduce( + return data.oTokenHistories.reduce( (acc, curr) => [ ...acc, [curr.timestamp, curr.type, curr.value, curr.balance, curr.txHash], diff --git a/libs/defi/oeth/src/portfolio/components/StatCards.tsx b/libs/defi/oeth/src/portfolio/components/StatCards.tsx index d3743645d..75c43970c 100644 --- a/libs/defi/oeth/src/portfolio/components/StatCards.tsx +++ b/libs/defi/oeth/src/portfolio/components/StatCards.tsx @@ -21,7 +21,7 @@ export const StatCards = (props: BoxProps) => { { address: address ?? ZERO_ADDRESS }, { enabled: !!address, - select: (data) => data?.oethAddresses?.at(0), + select: (data) => data?.oTokenAddresses?.at(0), }, ); const { data: pendingYield, isLoading: pendingYieldLoading } = diff --git a/libs/defi/oeth/src/portfolio/hooks.ts b/libs/defi/oeth/src/portfolio/hooks.ts index 8ea002303..c1636bfd2 100644 --- a/libs/defi/oeth/src/portfolio/hooks.ts +++ b/libs/defi/oeth/src/portfolio/hooks.ts @@ -106,9 +106,9 @@ export const useAggregatedHistory = ( refetchOnWindowFocus: false, ...options, enabled: isConnected && !!address, - placeholderData: { oethHistories: [] }, + placeholderData: { oTokenHistories: [] }, select: useCallback((data: OethHistoryTransactionQuery) => { - const history = data?.oethHistories; + const history = data?.oTokenHistories; const grouped = groupBy( (hist) => diff --git a/libs/defi/oeth/src/portfolio/queries.generated.ts b/libs/defi/oeth/src/portfolio/queries.generated.ts index c4b86e7a7..ed53725b6 100644 --- a/libs/defi/oeth/src/portfolio/queries.generated.ts +++ b/libs/defi/oeth/src/portfolio/queries.generated.ts @@ -7,7 +7,7 @@ export type OethHistoryUserStatQueryVariables = Types.Exact<{ }>; -export type OethHistoryUserStatQuery = { __typename?: 'Query', oethAddresses: Array<{ __typename?: 'OETHAddress', balance: string, earned: string, isContract: boolean, rebasingOption: Types.RebasingOption, lastUpdated: string }> }; +export type OethHistoryUserStatQuery = { __typename?: 'Query', oTokenAddresses: Array<{ __typename?: 'OTokenAddress', balance: string, earned: string, isContract: boolean, rebasingOption: Types.RebasingOption, lastUpdated: string }> }; export type OethHistoryTransactionQueryVariables = Types.Exact<{ address: Types.Scalars['String']['input']; @@ -15,7 +15,7 @@ export type OethHistoryTransactionQueryVariables = Types.Exact<{ }>; -export type OethHistoryTransactionQuery = { __typename?: 'Query', oethHistories: Array<{ __typename?: 'OETHHistory', type: Types.HistoryType, value: string, txHash: string, timestamp: string, balance: string }> }; +export type OethHistoryTransactionQuery = { __typename?: 'Query', oTokenHistories: Array<{ __typename?: 'OTokenHistory', type: Types.HistoryType, value: string, txHash: string, timestamp: string, balance: string }> }; export type OethDailyYieldQueryVariables = Types.Exact<{ start: Types.Scalars['DateTime']['input']; @@ -28,7 +28,9 @@ export type OethDailyYieldQuery = { __typename?: 'Query', oethDailyStats: Array< export const OethHistoryUserStatDocument = ` query OethHistoryUserStat($address: String!) { - oethAddresses(where: {id_containsInsensitive: $address}) { + oTokenAddresses( + where: {address_containsInsensitive: $address, chainId_eq: 1, otoken_eq: "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3"} + ) { balance earned isContract @@ -61,11 +63,11 @@ useOethHistoryUserStatQuery.fetcher = (variables: OethHistoryUserStatQueryVariab export const OethHistoryTransactionDocument = ` query OethHistoryTransaction($address: String!, $filters: [HistoryType!]) { - oethHistories( + oTokenHistories( orderBy: timestamp_DESC offset: 0 limit: 2000 - where: {AND: {address: {id_containsInsensitive: $address}, type_in: $filters}} + where: {address: {id_containsInsensitive: $address}, type_in: $filters, chainId_eq: 1, otoken_eq: "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3"} ) { type value diff --git a/libs/defi/oeth/src/portfolio/queries.graphql b/libs/defi/oeth/src/portfolio/queries.graphql index bb13a2cd8..7564253d7 100644 --- a/libs/defi/oeth/src/portfolio/queries.graphql +++ b/libs/defi/oeth/src/portfolio/queries.graphql @@ -1,5 +1,9 @@ query OethHistoryUserStat($address: String!) { - oethAddresses(where: { id_containsInsensitive: $address }) { + oTokenAddresses(where: { + address_containsInsensitive: $address, + chainId_eq: 1, + otoken_eq: "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3" + }) { balance earned isContract @@ -9,12 +13,15 @@ query OethHistoryUserStat($address: String!) { } query OethHistoryTransaction($address: String!, $filters: [HistoryType!]) { - oethHistories( + oTokenHistories( orderBy: timestamp_DESC offset: 0 limit: 2000 where: { - AND: { address: { id_containsInsensitive: $address }, type_in: $filters } + address: { id_containsInsensitive: $address }, + type_in: $filters, + chainId_eq: 1, + otoken_eq: "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3" } ) { type diff --git a/libs/defi/oeth/src/portfolio/types.ts b/libs/defi/oeth/src/portfolio/types.ts index d2e5a2fc1..0ec7b1501 100644 --- a/libs/defi/oeth/src/portfolio/types.ts +++ b/libs/defi/oeth/src/portfolio/types.ts @@ -1,6 +1,6 @@ import type { OethHistoryTransactionQuery } from './queries.generated'; -export type History = OethHistoryTransactionQuery['oethHistories'][number]; +export type History = OethHistoryTransactionQuery['oTokenHistories'][number]; export type DailyHistory = History & { transactions?: History[]; diff --git a/libs/defi/oeth/src/swap/components/OethDetailCard.tsx b/libs/defi/oeth/src/swap/components/OethDetailCard.tsx index fe95563ee..b809679ba 100644 --- a/libs/defi/oeth/src/swap/components/OethDetailCard.tsx +++ b/libs/defi/oeth/src/swap/components/OethDetailCard.tsx @@ -75,7 +75,7 @@ function Apy() { const once = useRef(false); const [trailing, setTrailing] = useState(30); const { data: apy, isLoading: apyLoading } = useOethApyQuery(undefined, { - select: (data) => data.oethapies[0], + select: (data) => data.oTokenApies[0], }); const trailingOptions: Option[] = useMemo( () => [ diff --git a/libs/defi/oeth/src/swap/queries.generated.ts b/libs/defi/oeth/src/swap/queries.generated.ts index ec1dcf1d2..d6c7d1673 100644 --- a/libs/defi/oeth/src/swap/queries.generated.ts +++ b/libs/defi/oeth/src/swap/queries.generated.ts @@ -5,13 +5,17 @@ import { graphqlClient } from '@origin/defi/shared'; export type OethApyQueryVariables = Types.Exact<{ [key: string]: never; }>; -export type OethApyQuery = { __typename?: 'Query', oethapies: Array<{ __typename?: 'OETHAPY', apy7DayAvg: number, apy30DayAvg: number }> }; +export type OethApyQuery = { __typename?: 'Query', oTokenApies: Array<{ __typename?: 'OTokenAPY', apy7DayAvg: number, apy30DayAvg: number }> }; export const OethApyDocument = ` query OethApy { - oethapies(limit: 1, orderBy: timestamp_DESC) { + oTokenApies( + limit: 1 + orderBy: timestamp_DESC + where: {chainId_eq: 1, otoken_eq: "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3"} + ) { apy7DayAvg apy30DayAvg } diff --git a/libs/defi/oeth/src/swap/queries.graphql b/libs/defi/oeth/src/swap/queries.graphql index 2dfba6fea..2ce1695e1 100644 --- a/libs/defi/oeth/src/swap/queries.graphql +++ b/libs/defi/oeth/src/swap/queries.graphql @@ -1,5 +1,8 @@ query OethApy { - oethapies(limit: 1, orderBy: timestamp_DESC) { + oTokenApies(limit: 1, orderBy: timestamp_DESC, where: { + chainId_eq: 1, + otoken_eq: "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3" + }) { apy7DayAvg apy30DayAvg } diff --git a/libs/defi/ousd/src/portfolio/components/HistoryCard.tsx b/libs/defi/ousd/src/portfolio/components/HistoryCard.tsx index 71fa8accf..52092f8b4 100644 --- a/libs/defi/ousd/src/portfolio/components/HistoryCard.tsx +++ b/libs/defi/ousd/src/portfolio/components/HistoryCard.tsx @@ -95,11 +95,11 @@ function ExportData() { { address: address ?? ZERO_ADDRESS }, { select: (data) => { - if (!data?.ousdHistories) { + if (!data?.oTokenHistories) { return; } - return data.ousdHistories.reduce( + return data.oTokenHistories.reduce( (acc, curr) => [ ...acc, [curr.timestamp, curr.type, curr.value, curr.balance, curr.txHash], diff --git a/libs/defi/ousd/src/portfolio/components/StatCards.tsx b/libs/defi/ousd/src/portfolio/components/StatCards.tsx index 8338934b7..19b4e9a69 100644 --- a/libs/defi/ousd/src/portfolio/components/StatCards.tsx +++ b/libs/defi/ousd/src/portfolio/components/StatCards.tsx @@ -21,7 +21,7 @@ export const StatCards = (props: BoxProps) => { { address: address ?? ZERO_ADDRESS }, { enabled: !!address, - select: (data) => data?.ousdAddresses?.at(0), + select: (data) => data?.oTokenAddresses?.at(0), }, ); const { data: pendingYield, isLoading: pendingYieldLoading } = diff --git a/libs/defi/ousd/src/portfolio/hooks.ts b/libs/defi/ousd/src/portfolio/hooks.ts index c87ddde5a..b6462476f 100644 --- a/libs/defi/ousd/src/portfolio/hooks.ts +++ b/libs/defi/ousd/src/portfolio/hooks.ts @@ -110,9 +110,9 @@ export const useAggregatedHistory = ( refetchOnWindowFocus: false, ...options, enabled: isConnected && !isNilOrEmpty(address), - placeholderData: { ousdHistories: [] }, + placeholderData: { oTokenHistories: [] }, select: useCallback((data: OusdHistoryTransactionQuery) => { - const history = data?.ousdHistories; + const history = data?.oTokenHistories; const grouped = groupBy( (hist) => diff --git a/libs/defi/ousd/src/portfolio/queries.generated.ts b/libs/defi/ousd/src/portfolio/queries.generated.ts index 791beec44..74b9b83d3 100644 --- a/libs/defi/ousd/src/portfolio/queries.generated.ts +++ b/libs/defi/ousd/src/portfolio/queries.generated.ts @@ -7,7 +7,7 @@ export type OusdHistoryUserStatQueryVariables = Types.Exact<{ }>; -export type OusdHistoryUserStatQuery = { __typename?: 'Query', ousdAddresses: Array<{ __typename?: 'OUSDAddress', balance: string, earned: string, isContract: boolean, rebasingOption: Types.RebasingOption, lastUpdated: string }> }; +export type OusdHistoryUserStatQuery = { __typename?: 'Query', oTokenAddresses: Array<{ __typename?: 'OTokenAddress', balance: string, earned: string, isContract: boolean, rebasingOption: Types.RebasingOption, lastUpdated: string }> }; export type OusdHistoryTransactionQueryVariables = Types.Exact<{ address: Types.Scalars['String']['input']; @@ -15,7 +15,7 @@ export type OusdHistoryTransactionQueryVariables = Types.Exact<{ }>; -export type OusdHistoryTransactionQuery = { __typename?: 'Query', ousdHistories: Array<{ __typename?: 'OUSDHistory', type: Types.HistoryType, value: string, txHash: string, timestamp: string, balance: string }> }; +export type OusdHistoryTransactionQuery = { __typename?: 'Query', oTokenHistories: Array<{ __typename?: 'OTokenHistory', type: Types.HistoryType, value: string, txHash: string, timestamp: string, balance: string }> }; export type OusdDailyYieldQueryVariables = Types.Exact<{ start: Types.Scalars['DateTime']['input']; @@ -28,7 +28,9 @@ export type OusdDailyYieldQuery = { __typename?: 'Query', ousdDailyStats: Array< export const OusdHistoryUserStatDocument = ` query OusdHistoryUserStat($address: String!) { - ousdAddresses(where: {id_containsInsensitive: $address}) { + oTokenAddresses( + where: {address_containsInsensitive: $address, chainId_eq: 1, otoken_eq: "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86"} + ) { balance earned isContract @@ -61,11 +63,11 @@ useOusdHistoryUserStatQuery.fetcher = (variables: OusdHistoryUserStatQueryVariab export const OusdHistoryTransactionDocument = ` query OusdHistoryTransaction($address: String!, $filters: [HistoryType!]) { - ousdHistories( + oTokenHistories( orderBy: timestamp_DESC offset: 0 limit: 2000 - where: {AND: {address: {id_containsInsensitive: $address}, type_in: $filters}} + where: {address: {id_containsInsensitive: $address}, type_in: $filters, chainId_eq: 1, otoken_eq: "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86"} ) { type value diff --git a/libs/defi/ousd/src/portfolio/queries.graphql b/libs/defi/ousd/src/portfolio/queries.graphql index 45a8abf46..e489561be 100644 --- a/libs/defi/ousd/src/portfolio/queries.graphql +++ b/libs/defi/ousd/src/portfolio/queries.graphql @@ -1,5 +1,5 @@ query OusdHistoryUserStat($address: String!) { - ousdAddresses(where: { id_containsInsensitive: $address }) { + oTokenAddresses(where: { address_containsInsensitive: $address, chainId_eq: 1, otoken_eq: "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86" }) { balance earned isContract @@ -9,12 +9,15 @@ query OusdHistoryUserStat($address: String!) { } query OusdHistoryTransaction($address: String!, $filters: [HistoryType!]) { - ousdHistories( + oTokenHistories( orderBy: timestamp_DESC offset: 0 limit: 2000 where: { - AND: { address: { id_containsInsensitive: $address }, type_in: $filters } + address: { id_containsInsensitive: $address }, + type_in: $filters, + chainId_eq: 1, + otoken_eq: "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86" } ) { type diff --git a/libs/defi/ousd/src/portfolio/types.ts b/libs/defi/ousd/src/portfolio/types.ts index b930526a7..6bbab3504 100644 --- a/libs/defi/ousd/src/portfolio/types.ts +++ b/libs/defi/ousd/src/portfolio/types.ts @@ -1,6 +1,6 @@ import type { OusdHistoryTransactionQuery } from './queries.generated'; -export type History = OusdHistoryTransactionQuery['ousdHistories'][number]; +export type History = OusdHistoryTransactionQuery['oTokenHistories'][number]; export type DailyHistory = History & { transactions?: History[]; diff --git a/libs/defi/ousd/src/swap/components/OusdDetailCard.tsx b/libs/defi/ousd/src/swap/components/OusdDetailCard.tsx index a8756544b..b6520d550 100644 --- a/libs/defi/ousd/src/swap/components/OusdDetailCard.tsx +++ b/libs/defi/ousd/src/swap/components/OusdDetailCard.tsx @@ -73,7 +73,7 @@ function Apy() { const once = useRef(false); const [trailing, setTrailing] = useState(30); const { data: apy, isLoading: apyLoading } = useOusdApyQuery(undefined, { - select: (data) => data.ousdapies[0], + select: (data) => data.oTokenApies[0], }); const trailingOptions: Option[] = useMemo( () => [ diff --git a/libs/defi/ousd/src/swap/queries.generated.ts b/libs/defi/ousd/src/swap/queries.generated.ts index 767537c50..8b2694e84 100644 --- a/libs/defi/ousd/src/swap/queries.generated.ts +++ b/libs/defi/ousd/src/swap/queries.generated.ts @@ -5,13 +5,17 @@ import { graphqlClient } from '@origin/defi/shared'; export type OusdApyQueryVariables = Types.Exact<{ [key: string]: never; }>; -export type OusdApyQuery = { __typename?: 'Query', ousdapies: Array<{ __typename?: 'OUSDAPY', apy7DayAvg: number, apy30DayAvg: number }> }; +export type OusdApyQuery = { __typename?: 'Query', oTokenApies: Array<{ __typename?: 'OTokenAPY', apy7DayAvg: number, apy30DayAvg: number }> }; export const OusdApyDocument = ` query OusdApy { - ousdapies(limit: 1, orderBy: timestamp_DESC) { + oTokenApies( + limit: 1 + orderBy: timestamp_DESC + where: {chainId_eq: 1, otoken_eq: "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86"} + ) { apy7DayAvg apy30DayAvg } diff --git a/libs/defi/ousd/src/swap/queries.graphql b/libs/defi/ousd/src/swap/queries.graphql index c91e7972c..9c40bfa80 100644 --- a/libs/defi/ousd/src/swap/queries.graphql +++ b/libs/defi/ousd/src/swap/queries.graphql @@ -1,5 +1,9 @@ query OusdApy { - ousdapies(limit: 1, orderBy: timestamp_DESC) { + oTokenApies( + limit: 1, + orderBy: timestamp_DESC, + where: { chainId_eq: 1, otoken_eq: "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86" } + ) { apy7DayAvg apy30DayAvg } diff --git a/libs/defi/shared/src/generated/graphql.ts b/libs/defi/shared/src/generated/graphql.ts index 725bbc385..0a4cedd58 100644 --- a/libs/defi/shared/src/generated/graphql.ts +++ b/libs/defi/shared/src/generated/graphql.ts @@ -2988,59 +2988,29 @@ export type NativeBalancesConnection = { totalCount: Scalars['Int']['output']; }; -/** The OETH entity tracks the change in total supply of OETH over time. */ -export type Oeth = { - __typename?: 'OETH'; - blockNumber: Scalars['Int']['output']; - id: Scalars['String']['output']; - nonRebasingSupply: Scalars['BigInt']['output']; - rebasingSupply: Scalars['BigInt']['output']; - timestamp: Scalars['DateTime']['output']; - totalSupply: Scalars['BigInt']['output']; +export type OethBalancerMetaPoolStrategiesConnection = { + __typename?: 'OETHBalancerMetaPoolStrategiesConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; }; -/** The APY entity tracks historical APY values by day. */ -export type Oethapy = { - __typename?: 'OETHAPY'; - apr: Scalars['Float']['output']; - apy: Scalars['Float']['output']; - apy7DayAvg: Scalars['Float']['output']; - apy14DayAvg: Scalars['Float']['output']; - apy30DayAvg: Scalars['Float']['output']; +export type OethBalancerMetaPoolStrategy = { + __typename?: 'OETHBalancerMetaPoolStrategy'; blockNumber: Scalars['Int']['output']; id: Scalars['String']['output']; - rebasingCreditsPerToken: Scalars['BigInt']['output']; + rETH: Scalars['BigInt']['output']; timestamp: Scalars['DateTime']['output']; - txHash: Scalars['String']['output']; + weth: Scalars['BigInt']['output']; }; -export type OethapyEdge = { - __typename?: 'OETHAPYEdge'; +export type OethBalancerMetaPoolStrategyEdge = { + __typename?: 'OETHBalancerMetaPoolStrategyEdge'; cursor: Scalars['String']['output']; - node: Oethapy; + node: OethBalancerMetaPoolStrategy; }; -export enum OethapyOrderByInput { - AprAsc = 'apr_ASC', - AprAscNullsFirst = 'apr_ASC_NULLS_FIRST', - AprDesc = 'apr_DESC', - AprDescNullsLast = 'apr_DESC_NULLS_LAST', - Apy7DayAvgAsc = 'apy7DayAvg_ASC', - Apy7DayAvgAscNullsFirst = 'apy7DayAvg_ASC_NULLS_FIRST', - Apy7DayAvgDesc = 'apy7DayAvg_DESC', - Apy7DayAvgDescNullsLast = 'apy7DayAvg_DESC_NULLS_LAST', - Apy14DayAvgAsc = 'apy14DayAvg_ASC', - Apy14DayAvgAscNullsFirst = 'apy14DayAvg_ASC_NULLS_FIRST', - Apy14DayAvgDesc = 'apy14DayAvg_DESC', - Apy14DayAvgDescNullsLast = 'apy14DayAvg_DESC_NULLS_LAST', - Apy30DayAvgAsc = 'apy30DayAvg_ASC', - Apy30DayAvgAscNullsFirst = 'apy30DayAvg_ASC_NULLS_FIRST', - Apy30DayAvgDesc = 'apy30DayAvg_DESC', - Apy30DayAvgDescNullsLast = 'apy30DayAvg_DESC_NULLS_LAST', - ApyAsc = 'apy_ASC', - ApyAscNullsFirst = 'apy_ASC_NULLS_FIRST', - ApyDesc = 'apy_DESC', - ApyDescNullsLast = 'apy_DESC_NULLS_LAST', +export enum OethBalancerMetaPoolStrategyOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', @@ -3049,68 +3019,23 @@ export enum OethapyOrderByInput { IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - RebasingCreditsPerTokenAsc = 'rebasingCreditsPerToken_ASC', - RebasingCreditsPerTokenAscNullsFirst = 'rebasingCreditsPerToken_ASC_NULLS_FIRST', - RebasingCreditsPerTokenDesc = 'rebasingCreditsPerToken_DESC', - RebasingCreditsPerTokenDescNullsLast = 'rebasingCreditsPerToken_DESC_NULLS_LAST', + REthAsc = 'rETH_ASC', + REthAscNullsFirst = 'rETH_ASC_NULLS_FIRST', + REthDesc = 'rETH_DESC', + REthDescNullsLast = 'rETH_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TxHashAsc = 'txHash_ASC', - TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', - TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST' + WethAsc = 'weth_ASC', + WethAscNullsFirst = 'weth_ASC_NULLS_FIRST', + WethDesc = 'weth_DESC', + WethDescNullsLast = 'weth_DESC_NULLS_LAST' } -export type OethapyWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - apr_eq?: InputMaybe; - apr_gt?: InputMaybe; - apr_gte?: InputMaybe; - apr_in?: InputMaybe>; - apr_isNull?: InputMaybe; - apr_lt?: InputMaybe; - apr_lte?: InputMaybe; - apr_not_eq?: InputMaybe; - apr_not_in?: InputMaybe>; - apy7DayAvg_eq?: InputMaybe; - apy7DayAvg_gt?: InputMaybe; - apy7DayAvg_gte?: InputMaybe; - apy7DayAvg_in?: InputMaybe>; - apy7DayAvg_isNull?: InputMaybe; - apy7DayAvg_lt?: InputMaybe; - apy7DayAvg_lte?: InputMaybe; - apy7DayAvg_not_eq?: InputMaybe; - apy7DayAvg_not_in?: InputMaybe>; - apy14DayAvg_eq?: InputMaybe; - apy14DayAvg_gt?: InputMaybe; - apy14DayAvg_gte?: InputMaybe; - apy14DayAvg_in?: InputMaybe>; - apy14DayAvg_isNull?: InputMaybe; - apy14DayAvg_lt?: InputMaybe; - apy14DayAvg_lte?: InputMaybe; - apy14DayAvg_not_eq?: InputMaybe; - apy14DayAvg_not_in?: InputMaybe>; - apy30DayAvg_eq?: InputMaybe; - apy30DayAvg_gt?: InputMaybe; - apy30DayAvg_gte?: InputMaybe; - apy30DayAvg_in?: InputMaybe>; - apy30DayAvg_isNull?: InputMaybe; - apy30DayAvg_lt?: InputMaybe; - apy30DayAvg_lte?: InputMaybe; - apy30DayAvg_not_eq?: InputMaybe; - apy30DayAvg_not_in?: InputMaybe>; - apy_eq?: InputMaybe; - apy_gt?: InputMaybe; - apy_gte?: InputMaybe; - apy_in?: InputMaybe>; - apy_isNull?: InputMaybe; - apy_lt?: InputMaybe; - apy_lte?: InputMaybe; - apy_not_eq?: InputMaybe; - apy_not_in?: InputMaybe>; +export type OethBalancerMetaPoolStrategyWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -3137,15 +3062,15 @@ export type OethapyWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - rebasingCreditsPerToken_eq?: InputMaybe; - rebasingCreditsPerToken_gt?: InputMaybe; - rebasingCreditsPerToken_gte?: InputMaybe; - rebasingCreditsPerToken_in?: InputMaybe>; - rebasingCreditsPerToken_isNull?: InputMaybe; - rebasingCreditsPerToken_lt?: InputMaybe; - rebasingCreditsPerToken_lte?: InputMaybe; - rebasingCreditsPerToken_not_eq?: InputMaybe; - rebasingCreditsPerToken_not_in?: InputMaybe>; + rETH_eq?: InputMaybe; + rETH_gt?: InputMaybe; + rETH_gte?: InputMaybe; + rETH_in?: InputMaybe>; + rETH_isNull?: InputMaybe; + rETH_lt?: InputMaybe; + rETH_lte?: InputMaybe; + rETH_not_eq?: InputMaybe; + rETH_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -3155,154 +3080,187 @@ export type OethapyWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - txHash_contains?: InputMaybe; - txHash_containsInsensitive?: InputMaybe; - txHash_endsWith?: InputMaybe; - txHash_eq?: InputMaybe; - txHash_gt?: InputMaybe; - txHash_gte?: InputMaybe; - txHash_in?: InputMaybe>; - txHash_isNull?: InputMaybe; - txHash_lt?: InputMaybe; - txHash_lte?: InputMaybe; - txHash_not_contains?: InputMaybe; - txHash_not_containsInsensitive?: InputMaybe; - txHash_not_endsWith?: InputMaybe; - txHash_not_eq?: InputMaybe; - txHash_not_in?: InputMaybe>; - txHash_not_startsWith?: InputMaybe; - txHash_startsWith?: InputMaybe; -}; - -export type OethaPiesConnection = { - __typename?: 'OETHAPiesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OethActivitiesConnection = { - __typename?: 'OETHActivitiesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; + weth_eq?: InputMaybe; + weth_gt?: InputMaybe; + weth_gte?: InputMaybe; + weth_in?: InputMaybe>; + weth_isNull?: InputMaybe; + weth_lt?: InputMaybe; + weth_lte?: InputMaybe; + weth_not_eq?: InputMaybe; + weth_not_in?: InputMaybe>; }; -export type OethActivity = { - __typename?: 'OETHActivity'; - action?: Maybe; - address?: Maybe; - amount?: Maybe; - blockNumber: Scalars['Int']['output']; - callDataLast4Bytes: Scalars['String']['output']; - exchange?: Maybe; - fromSymbol?: Maybe; +export type OethCollateralDailyStat = { + __typename?: 'OETHCollateralDailyStat'; + /** Amount held */ + amount: Scalars['BigInt']['output']; + dailyStatId: OethDailyStat; id: Scalars['String']['output']; - interface?: Maybe; - sighash?: Maybe; - timestamp: Scalars['DateTime']['output']; - toSymbol?: Maybe; - txHash: Scalars['String']['output']; + /** Price in ETH */ + price: Scalars['BigInt']['output']; + /** Token symbol */ + symbol: Scalars['String']['output']; + /** Total ETH value */ + value: Scalars['BigInt']['output']; }; -export type OethActivityEdge = { - __typename?: 'OETHActivityEdge'; +export type OethCollateralDailyStatEdge = { + __typename?: 'OETHCollateralDailyStatEdge'; cursor: Scalars['String']['output']; - node: OethActivity; + node: OethCollateralDailyStat; }; -export enum OethActivityOrderByInput { - ActionAsc = 'action_ASC', - ActionAscNullsFirst = 'action_ASC_NULLS_FIRST', - ActionDesc = 'action_DESC', - ActionDescNullsLast = 'action_DESC_NULLS_LAST', - AddressAsc = 'address_ASC', - AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', - AddressDesc = 'address_DESC', - AddressDescNullsLast = 'address_DESC_NULLS_LAST', +export enum OethCollateralDailyStatOrderByInput { AmountAsc = 'amount_ASC', AmountAscNullsFirst = 'amount_ASC_NULLS_FIRST', AmountDesc = 'amount_DESC', AmountDescNullsLast = 'amount_DESC_NULLS_LAST', - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - CallDataLast4BytesAsc = 'callDataLast4Bytes_ASC', - CallDataLast4BytesAscNullsFirst = 'callDataLast4Bytes_ASC_NULLS_FIRST', - CallDataLast4BytesDesc = 'callDataLast4Bytes_DESC', - CallDataLast4BytesDescNullsLast = 'callDataLast4Bytes_DESC_NULLS_LAST', - ExchangeAsc = 'exchange_ASC', - ExchangeAscNullsFirst = 'exchange_ASC_NULLS_FIRST', - ExchangeDesc = 'exchange_DESC', - ExchangeDescNullsLast = 'exchange_DESC_NULLS_LAST', - FromSymbolAsc = 'fromSymbol_ASC', - FromSymbolAscNullsFirst = 'fromSymbol_ASC_NULLS_FIRST', - FromSymbolDesc = 'fromSymbol_DESC', - FromSymbolDescNullsLast = 'fromSymbol_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - InterfaceAsc = 'interface_ASC', - InterfaceAscNullsFirst = 'interface_ASC_NULLS_FIRST', - InterfaceDesc = 'interface_DESC', - InterfaceDescNullsLast = 'interface_DESC_NULLS_LAST', - SighashAsc = 'sighash_ASC', - SighashAscNullsFirst = 'sighash_ASC_NULLS_FIRST', - SighashDesc = 'sighash_DESC', - SighashDescNullsLast = 'sighash_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - ToSymbolAsc = 'toSymbol_ASC', - ToSymbolAscNullsFirst = 'toSymbol_ASC_NULLS_FIRST', - ToSymbolDesc = 'toSymbol_DESC', - ToSymbolDescNullsLast = 'toSymbol_DESC_NULLS_LAST', - TxHashAsc = 'txHash_ASC', - TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', - TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST' -} - -export type OethActivityWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - action_contains?: InputMaybe; - action_containsInsensitive?: InputMaybe; - action_endsWith?: InputMaybe; - action_eq?: InputMaybe; - action_gt?: InputMaybe; - action_gte?: InputMaybe; - action_in?: InputMaybe>; - action_isNull?: InputMaybe; - action_lt?: InputMaybe; - action_lte?: InputMaybe; - action_not_contains?: InputMaybe; - action_not_containsInsensitive?: InputMaybe; - action_not_endsWith?: InputMaybe; - action_not_eq?: InputMaybe; - action_not_in?: InputMaybe>; - action_not_startsWith?: InputMaybe; - action_startsWith?: InputMaybe; - address_contains?: InputMaybe; - address_containsInsensitive?: InputMaybe; - address_endsWith?: InputMaybe; - address_eq?: InputMaybe; - address_gt?: InputMaybe; - address_gte?: InputMaybe; - address_in?: InputMaybe>; - address_isNull?: InputMaybe; - address_lt?: InputMaybe; - address_lte?: InputMaybe; - address_not_contains?: InputMaybe; - address_not_containsInsensitive?: InputMaybe; - address_not_endsWith?: InputMaybe; - address_not_eq?: InputMaybe; - address_not_in?: InputMaybe>; - address_not_startsWith?: InputMaybe; - address_startsWith?: InputMaybe; + DailyStatIdAmoSupplyAsc = 'dailyStatId_amoSupply_ASC', + DailyStatIdAmoSupplyAscNullsFirst = 'dailyStatId_amoSupply_ASC_NULLS_FIRST', + DailyStatIdAmoSupplyDesc = 'dailyStatId_amoSupply_DESC', + DailyStatIdAmoSupplyDescNullsLast = 'dailyStatId_amoSupply_DESC_NULLS_LAST', + DailyStatIdAprAsc = 'dailyStatId_apr_ASC', + DailyStatIdAprAscNullsFirst = 'dailyStatId_apr_ASC_NULLS_FIRST', + DailyStatIdAprDesc = 'dailyStatId_apr_DESC', + DailyStatIdAprDescNullsLast = 'dailyStatId_apr_DESC_NULLS_LAST', + DailyStatIdApy7DayAvgAsc = 'dailyStatId_apy7DayAvg_ASC', + DailyStatIdApy7DayAvgAscNullsFirst = 'dailyStatId_apy7DayAvg_ASC_NULLS_FIRST', + DailyStatIdApy7DayAvgDesc = 'dailyStatId_apy7DayAvg_DESC', + DailyStatIdApy7DayAvgDescNullsLast = 'dailyStatId_apy7DayAvg_DESC_NULLS_LAST', + DailyStatIdApy14DayAvgAsc = 'dailyStatId_apy14DayAvg_ASC', + DailyStatIdApy14DayAvgAscNullsFirst = 'dailyStatId_apy14DayAvg_ASC_NULLS_FIRST', + DailyStatIdApy14DayAvgDesc = 'dailyStatId_apy14DayAvg_DESC', + DailyStatIdApy14DayAvgDescNullsLast = 'dailyStatId_apy14DayAvg_DESC_NULLS_LAST', + DailyStatIdApy30DayAvgAsc = 'dailyStatId_apy30DayAvg_ASC', + DailyStatIdApy30DayAvgAscNullsFirst = 'dailyStatId_apy30DayAvg_ASC_NULLS_FIRST', + DailyStatIdApy30DayAvgDesc = 'dailyStatId_apy30DayAvg_DESC', + DailyStatIdApy30DayAvgDescNullsLast = 'dailyStatId_apy30DayAvg_DESC_NULLS_LAST', + DailyStatIdApyAsc = 'dailyStatId_apy_ASC', + DailyStatIdApyAscNullsFirst = 'dailyStatId_apy_ASC_NULLS_FIRST', + DailyStatIdApyDesc = 'dailyStatId_apy_DESC', + DailyStatIdApyDescNullsLast = 'dailyStatId_apy_DESC_NULLS_LAST', + DailyStatIdBlockNumberAsc = 'dailyStatId_blockNumber_ASC', + DailyStatIdBlockNumberAscNullsFirst = 'dailyStatId_blockNumber_ASC_NULLS_FIRST', + DailyStatIdBlockNumberDesc = 'dailyStatId_blockNumber_DESC', + DailyStatIdBlockNumberDescNullsLast = 'dailyStatId_blockNumber_DESC_NULLS_LAST', + DailyStatIdDripperWethAsc = 'dailyStatId_dripperWETH_ASC', + DailyStatIdDripperWethAscNullsFirst = 'dailyStatId_dripperWETH_ASC_NULLS_FIRST', + DailyStatIdDripperWethDesc = 'dailyStatId_dripperWETH_DESC', + DailyStatIdDripperWethDescNullsLast = 'dailyStatId_dripperWETH_DESC_NULLS_LAST', + DailyStatIdFeesEth7DayAsc = 'dailyStatId_feesETH7Day_ASC', + DailyStatIdFeesEth7DayAscNullsFirst = 'dailyStatId_feesETH7Day_ASC_NULLS_FIRST', + DailyStatIdFeesEth7DayDesc = 'dailyStatId_feesETH7Day_DESC', + DailyStatIdFeesEth7DayDescNullsLast = 'dailyStatId_feesETH7Day_DESC_NULLS_LAST', + DailyStatIdFeesEthAllTimeAsc = 'dailyStatId_feesETHAllTime_ASC', + DailyStatIdFeesEthAllTimeAscNullsFirst = 'dailyStatId_feesETHAllTime_ASC_NULLS_FIRST', + DailyStatIdFeesEthAllTimeDesc = 'dailyStatId_feesETHAllTime_DESC', + DailyStatIdFeesEthAllTimeDescNullsLast = 'dailyStatId_feesETHAllTime_DESC_NULLS_LAST', + DailyStatIdFeesEthAsc = 'dailyStatId_feesETH_ASC', + DailyStatIdFeesEthAscNullsFirst = 'dailyStatId_feesETH_ASC_NULLS_FIRST', + DailyStatIdFeesEthDesc = 'dailyStatId_feesETH_DESC', + DailyStatIdFeesEthDescNullsLast = 'dailyStatId_feesETH_DESC_NULLS_LAST', + DailyStatIdFeesUsd7DayAsc = 'dailyStatId_feesUSD7Day_ASC', + DailyStatIdFeesUsd7DayAscNullsFirst = 'dailyStatId_feesUSD7Day_ASC_NULLS_FIRST', + DailyStatIdFeesUsd7DayDesc = 'dailyStatId_feesUSD7Day_DESC', + DailyStatIdFeesUsd7DayDescNullsLast = 'dailyStatId_feesUSD7Day_DESC_NULLS_LAST', + DailyStatIdFeesUsdAllTimeAsc = 'dailyStatId_feesUSDAllTime_ASC', + DailyStatIdFeesUsdAllTimeAscNullsFirst = 'dailyStatId_feesUSDAllTime_ASC_NULLS_FIRST', + DailyStatIdFeesUsdAllTimeDesc = 'dailyStatId_feesUSDAllTime_DESC', + DailyStatIdFeesUsdAllTimeDescNullsLast = 'dailyStatId_feesUSDAllTime_DESC_NULLS_LAST', + DailyStatIdFeesUsdAsc = 'dailyStatId_feesUSD_ASC', + DailyStatIdFeesUsdAscNullsFirst = 'dailyStatId_feesUSD_ASC_NULLS_FIRST', + DailyStatIdFeesUsdDesc = 'dailyStatId_feesUSD_DESC', + DailyStatIdFeesUsdDescNullsLast = 'dailyStatId_feesUSD_DESC_NULLS_LAST', + DailyStatIdHoldersOverThresholdAsc = 'dailyStatId_holdersOverThreshold_ASC', + DailyStatIdHoldersOverThresholdAscNullsFirst = 'dailyStatId_holdersOverThreshold_ASC_NULLS_FIRST', + DailyStatIdHoldersOverThresholdDesc = 'dailyStatId_holdersOverThreshold_DESC', + DailyStatIdHoldersOverThresholdDescNullsLast = 'dailyStatId_holdersOverThreshold_DESC_NULLS_LAST', + DailyStatIdIdAsc = 'dailyStatId_id_ASC', + DailyStatIdIdAscNullsFirst = 'dailyStatId_id_ASC_NULLS_FIRST', + DailyStatIdIdDesc = 'dailyStatId_id_DESC', + DailyStatIdIdDescNullsLast = 'dailyStatId_id_DESC_NULLS_LAST', + DailyStatIdMarketCapUsdAsc = 'dailyStatId_marketCapUSD_ASC', + DailyStatIdMarketCapUsdAscNullsFirst = 'dailyStatId_marketCapUSD_ASC_NULLS_FIRST', + DailyStatIdMarketCapUsdDesc = 'dailyStatId_marketCapUSD_DESC', + DailyStatIdMarketCapUsdDescNullsLast = 'dailyStatId_marketCapUSD_DESC_NULLS_LAST', + DailyStatIdNonRebasingSupplyAsc = 'dailyStatId_nonRebasingSupply_ASC', + DailyStatIdNonRebasingSupplyAscNullsFirst = 'dailyStatId_nonRebasingSupply_ASC_NULLS_FIRST', + DailyStatIdNonRebasingSupplyDesc = 'dailyStatId_nonRebasingSupply_DESC', + DailyStatIdNonRebasingSupplyDescNullsLast = 'dailyStatId_nonRebasingSupply_DESC_NULLS_LAST', + DailyStatIdPegPriceAsc = 'dailyStatId_pegPrice_ASC', + DailyStatIdPegPriceAscNullsFirst = 'dailyStatId_pegPrice_ASC_NULLS_FIRST', + DailyStatIdPegPriceDesc = 'dailyStatId_pegPrice_DESC', + DailyStatIdPegPriceDescNullsLast = 'dailyStatId_pegPrice_DESC_NULLS_LAST', + DailyStatIdRebasingSupplyAsc = 'dailyStatId_rebasingSupply_ASC', + DailyStatIdRebasingSupplyAscNullsFirst = 'dailyStatId_rebasingSupply_ASC_NULLS_FIRST', + DailyStatIdRebasingSupplyDesc = 'dailyStatId_rebasingSupply_DESC', + DailyStatIdRebasingSupplyDescNullsLast = 'dailyStatId_rebasingSupply_DESC_NULLS_LAST', + DailyStatIdTimestampAsc = 'dailyStatId_timestamp_ASC', + DailyStatIdTimestampAscNullsFirst = 'dailyStatId_timestamp_ASC_NULLS_FIRST', + DailyStatIdTimestampDesc = 'dailyStatId_timestamp_DESC', + DailyStatIdTimestampDescNullsLast = 'dailyStatId_timestamp_DESC_NULLS_LAST', + DailyStatIdTotalSupplyUsdAsc = 'dailyStatId_totalSupplyUSD_ASC', + DailyStatIdTotalSupplyUsdAscNullsFirst = 'dailyStatId_totalSupplyUSD_ASC_NULLS_FIRST', + DailyStatIdTotalSupplyUsdDesc = 'dailyStatId_totalSupplyUSD_DESC', + DailyStatIdTotalSupplyUsdDescNullsLast = 'dailyStatId_totalSupplyUSD_DESC_NULLS_LAST', + DailyStatIdTotalSupplyAsc = 'dailyStatId_totalSupply_ASC', + DailyStatIdTotalSupplyAscNullsFirst = 'dailyStatId_totalSupply_ASC_NULLS_FIRST', + DailyStatIdTotalSupplyDesc = 'dailyStatId_totalSupply_DESC', + DailyStatIdTotalSupplyDescNullsLast = 'dailyStatId_totalSupply_DESC_NULLS_LAST', + DailyStatIdTradingVolumeUsdAsc = 'dailyStatId_tradingVolumeUSD_ASC', + DailyStatIdTradingVolumeUsdAscNullsFirst = 'dailyStatId_tradingVolumeUSD_ASC_NULLS_FIRST', + DailyStatIdTradingVolumeUsdDesc = 'dailyStatId_tradingVolumeUSD_DESC', + DailyStatIdTradingVolumeUsdDescNullsLast = 'dailyStatId_tradingVolumeUSD_DESC_NULLS_LAST', + DailyStatIdWrappedSupplyAsc = 'dailyStatId_wrappedSupply_ASC', + DailyStatIdWrappedSupplyAscNullsFirst = 'dailyStatId_wrappedSupply_ASC_NULLS_FIRST', + DailyStatIdWrappedSupplyDesc = 'dailyStatId_wrappedSupply_DESC', + DailyStatIdWrappedSupplyDescNullsLast = 'dailyStatId_wrappedSupply_DESC_NULLS_LAST', + DailyStatIdYieldEth7DayAsc = 'dailyStatId_yieldETH7Day_ASC', + DailyStatIdYieldEth7DayAscNullsFirst = 'dailyStatId_yieldETH7Day_ASC_NULLS_FIRST', + DailyStatIdYieldEth7DayDesc = 'dailyStatId_yieldETH7Day_DESC', + DailyStatIdYieldEth7DayDescNullsLast = 'dailyStatId_yieldETH7Day_DESC_NULLS_LAST', + DailyStatIdYieldEthAllTimeAsc = 'dailyStatId_yieldETHAllTime_ASC', + DailyStatIdYieldEthAllTimeAscNullsFirst = 'dailyStatId_yieldETHAllTime_ASC_NULLS_FIRST', + DailyStatIdYieldEthAllTimeDesc = 'dailyStatId_yieldETHAllTime_DESC', + DailyStatIdYieldEthAllTimeDescNullsLast = 'dailyStatId_yieldETHAllTime_DESC_NULLS_LAST', + DailyStatIdYieldEthAsc = 'dailyStatId_yieldETH_ASC', + DailyStatIdYieldEthAscNullsFirst = 'dailyStatId_yieldETH_ASC_NULLS_FIRST', + DailyStatIdYieldEthDesc = 'dailyStatId_yieldETH_DESC', + DailyStatIdYieldEthDescNullsLast = 'dailyStatId_yieldETH_DESC_NULLS_LAST', + DailyStatIdYieldUsd7DayAsc = 'dailyStatId_yieldUSD7Day_ASC', + DailyStatIdYieldUsd7DayAscNullsFirst = 'dailyStatId_yieldUSD7Day_ASC_NULLS_FIRST', + DailyStatIdYieldUsd7DayDesc = 'dailyStatId_yieldUSD7Day_DESC', + DailyStatIdYieldUsd7DayDescNullsLast = 'dailyStatId_yieldUSD7Day_DESC_NULLS_LAST', + DailyStatIdYieldUsdAllTimeAsc = 'dailyStatId_yieldUSDAllTime_ASC', + DailyStatIdYieldUsdAllTimeAscNullsFirst = 'dailyStatId_yieldUSDAllTime_ASC_NULLS_FIRST', + DailyStatIdYieldUsdAllTimeDesc = 'dailyStatId_yieldUSDAllTime_DESC', + DailyStatIdYieldUsdAllTimeDescNullsLast = 'dailyStatId_yieldUSDAllTime_DESC_NULLS_LAST', + DailyStatIdYieldUsdAsc = 'dailyStatId_yieldUSD_ASC', + DailyStatIdYieldUsdAscNullsFirst = 'dailyStatId_yieldUSD_ASC_NULLS_FIRST', + DailyStatIdYieldUsdDesc = 'dailyStatId_yieldUSD_DESC', + DailyStatIdYieldUsdDescNullsLast = 'dailyStatId_yieldUSD_DESC_NULLS_LAST', + IdAsc = 'id_ASC', + IdAscNullsFirst = 'id_ASC_NULLS_FIRST', + IdDesc = 'id_DESC', + IdDescNullsLast = 'id_DESC_NULLS_LAST', + PriceAsc = 'price_ASC', + PriceAscNullsFirst = 'price_ASC_NULLS_FIRST', + PriceDesc = 'price_DESC', + PriceDescNullsLast = 'price_DESC_NULLS_LAST', + SymbolAsc = 'symbol_ASC', + SymbolAscNullsFirst = 'symbol_ASC_NULLS_FIRST', + SymbolDesc = 'symbol_DESC', + SymbolDescNullsLast = 'symbol_DESC_NULLS_LAST', + ValueAsc = 'value_ASC', + ValueAscNullsFirst = 'value_ASC_NULLS_FIRST', + ValueDesc = 'value_DESC', + ValueDescNullsLast = 'value_DESC_NULLS_LAST' +} + +export type OethCollateralDailyStatWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; amount_eq?: InputMaybe; amount_gt?: InputMaybe; amount_gte?: InputMaybe; @@ -3312,66 +3270,8 @@ export type OethActivityWhereInput = { amount_lte?: InputMaybe; amount_not_eq?: InputMaybe; amount_not_in?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - callDataLast4Bytes_contains?: InputMaybe; - callDataLast4Bytes_containsInsensitive?: InputMaybe; - callDataLast4Bytes_endsWith?: InputMaybe; - callDataLast4Bytes_eq?: InputMaybe; - callDataLast4Bytes_gt?: InputMaybe; - callDataLast4Bytes_gte?: InputMaybe; - callDataLast4Bytes_in?: InputMaybe>; - callDataLast4Bytes_isNull?: InputMaybe; - callDataLast4Bytes_lt?: InputMaybe; - callDataLast4Bytes_lte?: InputMaybe; - callDataLast4Bytes_not_contains?: InputMaybe; - callDataLast4Bytes_not_containsInsensitive?: InputMaybe; - callDataLast4Bytes_not_endsWith?: InputMaybe; - callDataLast4Bytes_not_eq?: InputMaybe; - callDataLast4Bytes_not_in?: InputMaybe>; - callDataLast4Bytes_not_startsWith?: InputMaybe; - callDataLast4Bytes_startsWith?: InputMaybe; - exchange_contains?: InputMaybe; - exchange_containsInsensitive?: InputMaybe; - exchange_endsWith?: InputMaybe; - exchange_eq?: InputMaybe; - exchange_gt?: InputMaybe; - exchange_gte?: InputMaybe; - exchange_in?: InputMaybe>; - exchange_isNull?: InputMaybe; - exchange_lt?: InputMaybe; - exchange_lte?: InputMaybe; - exchange_not_contains?: InputMaybe; - exchange_not_containsInsensitive?: InputMaybe; - exchange_not_endsWith?: InputMaybe; - exchange_not_eq?: InputMaybe; - exchange_not_in?: InputMaybe>; - exchange_not_startsWith?: InputMaybe; - exchange_startsWith?: InputMaybe; - fromSymbol_contains?: InputMaybe; - fromSymbol_containsInsensitive?: InputMaybe; - fromSymbol_endsWith?: InputMaybe; - fromSymbol_eq?: InputMaybe; - fromSymbol_gt?: InputMaybe; - fromSymbol_gte?: InputMaybe; - fromSymbol_in?: InputMaybe>; - fromSymbol_isNull?: InputMaybe; - fromSymbol_lt?: InputMaybe; - fromSymbol_lte?: InputMaybe; - fromSymbol_not_contains?: InputMaybe; - fromSymbol_not_containsInsensitive?: InputMaybe; - fromSymbol_not_endsWith?: InputMaybe; - fromSymbol_not_eq?: InputMaybe; - fromSymbol_not_in?: InputMaybe>; - fromSymbol_not_startsWith?: InputMaybe; - fromSymbol_startsWith?: InputMaybe; + dailyStatId?: InputMaybe; + dailyStatId_isNull?: InputMaybe; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -3389,177 +3289,138 @@ export type OethActivityWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - interface_contains?: InputMaybe; - interface_containsInsensitive?: InputMaybe; - interface_endsWith?: InputMaybe; - interface_eq?: InputMaybe; - interface_gt?: InputMaybe; - interface_gte?: InputMaybe; - interface_in?: InputMaybe>; - interface_isNull?: InputMaybe; - interface_lt?: InputMaybe; - interface_lte?: InputMaybe; - interface_not_contains?: InputMaybe; - interface_not_containsInsensitive?: InputMaybe; - interface_not_endsWith?: InputMaybe; - interface_not_eq?: InputMaybe; - interface_not_in?: InputMaybe>; - interface_not_startsWith?: InputMaybe; - interface_startsWith?: InputMaybe; - sighash_contains?: InputMaybe; - sighash_containsInsensitive?: InputMaybe; - sighash_endsWith?: InputMaybe; - sighash_eq?: InputMaybe; - sighash_gt?: InputMaybe; - sighash_gte?: InputMaybe; - sighash_in?: InputMaybe>; - sighash_isNull?: InputMaybe; - sighash_lt?: InputMaybe; - sighash_lte?: InputMaybe; - sighash_not_contains?: InputMaybe; - sighash_not_containsInsensitive?: InputMaybe; - sighash_not_endsWith?: InputMaybe; - sighash_not_eq?: InputMaybe; - sighash_not_in?: InputMaybe>; - sighash_not_startsWith?: InputMaybe; - sighash_startsWith?: InputMaybe; - timestamp_eq?: InputMaybe; - timestamp_gt?: InputMaybe; - timestamp_gte?: InputMaybe; - timestamp_in?: InputMaybe>; - timestamp_isNull?: InputMaybe; - timestamp_lt?: InputMaybe; - timestamp_lte?: InputMaybe; - timestamp_not_eq?: InputMaybe; - timestamp_not_in?: InputMaybe>; - toSymbol_contains?: InputMaybe; - toSymbol_containsInsensitive?: InputMaybe; - toSymbol_endsWith?: InputMaybe; - toSymbol_eq?: InputMaybe; - toSymbol_gt?: InputMaybe; - toSymbol_gte?: InputMaybe; - toSymbol_in?: InputMaybe>; - toSymbol_isNull?: InputMaybe; - toSymbol_lt?: InputMaybe; - toSymbol_lte?: InputMaybe; - toSymbol_not_contains?: InputMaybe; - toSymbol_not_containsInsensitive?: InputMaybe; - toSymbol_not_endsWith?: InputMaybe; - toSymbol_not_eq?: InputMaybe; - toSymbol_not_in?: InputMaybe>; - toSymbol_not_startsWith?: InputMaybe; - toSymbol_startsWith?: InputMaybe; - txHash_contains?: InputMaybe; - txHash_containsInsensitive?: InputMaybe; - txHash_endsWith?: InputMaybe; - txHash_eq?: InputMaybe; - txHash_gt?: InputMaybe; - txHash_gte?: InputMaybe; - txHash_in?: InputMaybe>; - txHash_isNull?: InputMaybe; - txHash_lt?: InputMaybe; - txHash_lte?: InputMaybe; - txHash_not_contains?: InputMaybe; - txHash_not_containsInsensitive?: InputMaybe; - txHash_not_endsWith?: InputMaybe; - txHash_not_eq?: InputMaybe; - txHash_not_in?: InputMaybe>; - txHash_not_startsWith?: InputMaybe; - txHash_startsWith?: InputMaybe; + price_eq?: InputMaybe; + price_gt?: InputMaybe; + price_gte?: InputMaybe; + price_in?: InputMaybe>; + price_isNull?: InputMaybe; + price_lt?: InputMaybe; + price_lte?: InputMaybe; + price_not_eq?: InputMaybe; + price_not_in?: InputMaybe>; + symbol_contains?: InputMaybe; + symbol_containsInsensitive?: InputMaybe; + symbol_endsWith?: InputMaybe; + symbol_eq?: InputMaybe; + symbol_gt?: InputMaybe; + symbol_gte?: InputMaybe; + symbol_in?: InputMaybe>; + symbol_isNull?: InputMaybe; + symbol_lt?: InputMaybe; + symbol_lte?: InputMaybe; + symbol_not_contains?: InputMaybe; + symbol_not_containsInsensitive?: InputMaybe; + symbol_not_endsWith?: InputMaybe; + symbol_not_eq?: InputMaybe; + symbol_not_in?: InputMaybe>; + symbol_not_startsWith?: InputMaybe; + symbol_startsWith?: InputMaybe; + value_eq?: InputMaybe; + value_gt?: InputMaybe; + value_gte?: InputMaybe; + value_in?: InputMaybe>; + value_isNull?: InputMaybe; + value_lt?: InputMaybe; + value_lte?: InputMaybe; + value_not_eq?: InputMaybe; + value_not_in?: InputMaybe>; }; -/** The OETH balance, history and other information for a given address. */ -export type OethAddress = { - __typename?: 'OETHAddress'; - balance: Scalars['BigInt']['output']; - credits: Scalars['BigInt']['output']; - earned: Scalars['BigInt']['output']; - history: Array; - id: Scalars['String']['output']; - isContract: Scalars['Boolean']['output']; - lastUpdated: Scalars['DateTime']['output']; - rebasingOption: RebasingOption; +export type OethCollateralDailyStatsConnection = { + __typename?: 'OETHCollateralDailyStatsConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; }; - -/** The OETH balance, history and other information for a given address. */ -export type OethAddressHistoryArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; +export type OethCurveLp = { + __typename?: 'OETHCurveLP'; + blockNumber: Scalars['Int']['output']; + eth: Scalars['BigInt']['output']; + ethOwned: Scalars['BigInt']['output']; + id: Scalars['String']['output']; + oeth: Scalars['BigInt']['output']; + oethOwned: Scalars['BigInt']['output']; + timestamp: Scalars['DateTime']['output']; + totalSupply: Scalars['BigInt']['output']; + totalSupplyOwned: Scalars['BigInt']['output']; }; -export type OethAddressEdge = { - __typename?: 'OETHAddressEdge'; +export type OethCurveLpEdge = { + __typename?: 'OETHCurveLPEdge'; cursor: Scalars['String']['output']; - node: OethAddress; + node: OethCurveLp; }; -export enum OethAddressOrderByInput { - BalanceAsc = 'balance_ASC', - BalanceAscNullsFirst = 'balance_ASC_NULLS_FIRST', - BalanceDesc = 'balance_DESC', - BalanceDescNullsLast = 'balance_DESC_NULLS_LAST', - CreditsAsc = 'credits_ASC', - CreditsAscNullsFirst = 'credits_ASC_NULLS_FIRST', - CreditsDesc = 'credits_DESC', - CreditsDescNullsLast = 'credits_DESC_NULLS_LAST', - EarnedAsc = 'earned_ASC', - EarnedAscNullsFirst = 'earned_ASC_NULLS_FIRST', - EarnedDesc = 'earned_DESC', - EarnedDescNullsLast = 'earned_DESC_NULLS_LAST', +export enum OethCurveLpOrderByInput { + BlockNumberAsc = 'blockNumber_ASC', + BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', + BlockNumberDesc = 'blockNumber_DESC', + BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + EthOwnedAsc = 'ethOwned_ASC', + EthOwnedAscNullsFirst = 'ethOwned_ASC_NULLS_FIRST', + EthOwnedDesc = 'ethOwned_DESC', + EthOwnedDescNullsLast = 'ethOwned_DESC_NULLS_LAST', + EthAsc = 'eth_ASC', + EthAscNullsFirst = 'eth_ASC_NULLS_FIRST', + EthDesc = 'eth_DESC', + EthDescNullsLast = 'eth_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - IsContractAsc = 'isContract_ASC', - IsContractAscNullsFirst = 'isContract_ASC_NULLS_FIRST', - IsContractDesc = 'isContract_DESC', - IsContractDescNullsLast = 'isContract_DESC_NULLS_LAST', - LastUpdatedAsc = 'lastUpdated_ASC', - LastUpdatedAscNullsFirst = 'lastUpdated_ASC_NULLS_FIRST', - LastUpdatedDesc = 'lastUpdated_DESC', - LastUpdatedDescNullsLast = 'lastUpdated_DESC_NULLS_LAST', - RebasingOptionAsc = 'rebasingOption_ASC', - RebasingOptionAscNullsFirst = 'rebasingOption_ASC_NULLS_FIRST', - RebasingOptionDesc = 'rebasingOption_DESC', - RebasingOptionDescNullsLast = 'rebasingOption_DESC_NULLS_LAST' + OethOwnedAsc = 'oethOwned_ASC', + OethOwnedAscNullsFirst = 'oethOwned_ASC_NULLS_FIRST', + OethOwnedDesc = 'oethOwned_DESC', + OethOwnedDescNullsLast = 'oethOwned_DESC_NULLS_LAST', + OethAsc = 'oeth_ASC', + OethAscNullsFirst = 'oeth_ASC_NULLS_FIRST', + OethDesc = 'oeth_DESC', + OethDescNullsLast = 'oeth_DESC_NULLS_LAST', + TimestampAsc = 'timestamp_ASC', + TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', + TimestampDesc = 'timestamp_DESC', + TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', + TotalSupplyOwnedAsc = 'totalSupplyOwned_ASC', + TotalSupplyOwnedAscNullsFirst = 'totalSupplyOwned_ASC_NULLS_FIRST', + TotalSupplyOwnedDesc = 'totalSupplyOwned_DESC', + TotalSupplyOwnedDescNullsLast = 'totalSupplyOwned_DESC_NULLS_LAST', + TotalSupplyAsc = 'totalSupply_ASC', + TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', + TotalSupplyDesc = 'totalSupply_DESC', + TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST' } -export type OethAddressWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - balance_eq?: InputMaybe; - balance_gt?: InputMaybe; - balance_gte?: InputMaybe; - balance_in?: InputMaybe>; - balance_isNull?: InputMaybe; - balance_lt?: InputMaybe; - balance_lte?: InputMaybe; - balance_not_eq?: InputMaybe; - balance_not_in?: InputMaybe>; - credits_eq?: InputMaybe; - credits_gt?: InputMaybe; - credits_gte?: InputMaybe; - credits_in?: InputMaybe>; - credits_isNull?: InputMaybe; - credits_lt?: InputMaybe; - credits_lte?: InputMaybe; - credits_not_eq?: InputMaybe; - credits_not_in?: InputMaybe>; - earned_eq?: InputMaybe; - earned_gt?: InputMaybe; - earned_gte?: InputMaybe; - earned_in?: InputMaybe>; - earned_isNull?: InputMaybe; - earned_lt?: InputMaybe; - earned_lte?: InputMaybe; - earned_not_eq?: InputMaybe; - earned_not_in?: InputMaybe>; - history_every?: InputMaybe; - history_none?: InputMaybe; - history_some?: InputMaybe; +export type OethCurveLpWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + blockNumber_eq?: InputMaybe; + blockNumber_gt?: InputMaybe; + blockNumber_gte?: InputMaybe; + blockNumber_in?: InputMaybe>; + blockNumber_isNull?: InputMaybe; + blockNumber_lt?: InputMaybe; + blockNumber_lte?: InputMaybe; + blockNumber_not_eq?: InputMaybe; + blockNumber_not_in?: InputMaybe>; + ethOwned_eq?: InputMaybe; + ethOwned_gt?: InputMaybe; + ethOwned_gte?: InputMaybe; + ethOwned_in?: InputMaybe>; + ethOwned_isNull?: InputMaybe; + ethOwned_lt?: InputMaybe; + ethOwned_lte?: InputMaybe; + ethOwned_not_eq?: InputMaybe; + ethOwned_not_in?: InputMaybe>; + eth_eq?: InputMaybe; + eth_gt?: InputMaybe; + eth_gte?: InputMaybe; + eth_in?: InputMaybe>; + eth_isNull?: InputMaybe; + eth_lt?: InputMaybe; + eth_lte?: InputMaybe; + eth_not_eq?: InputMaybe; + eth_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -3577,1013 +3438,24 @@ export type OethAddressWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - isContract_eq?: InputMaybe; - isContract_isNull?: InputMaybe; - isContract_not_eq?: InputMaybe; - lastUpdated_eq?: InputMaybe; - lastUpdated_gt?: InputMaybe; - lastUpdated_gte?: InputMaybe; - lastUpdated_in?: InputMaybe>; - lastUpdated_isNull?: InputMaybe; - lastUpdated_lt?: InputMaybe; - lastUpdated_lte?: InputMaybe; - lastUpdated_not_eq?: InputMaybe; - lastUpdated_not_in?: InputMaybe>; - rebasingOption_eq?: InputMaybe; - rebasingOption_in?: InputMaybe>; - rebasingOption_isNull?: InputMaybe; - rebasingOption_not_eq?: InputMaybe; - rebasingOption_not_in?: InputMaybe>; -}; - -export type OethAddressesConnection = { - __typename?: 'OETHAddressesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OethAsset = { - __typename?: 'OETHAsset'; - address: Scalars['String']['output']; - id: Scalars['String']['output']; - symbol: Scalars['String']['output']; -}; - -export type OethAssetEdge = { - __typename?: 'OETHAssetEdge'; - cursor: Scalars['String']['output']; - node: OethAsset; -}; - -export enum OethAssetOrderByInput { - AddressAsc = 'address_ASC', - AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', - AddressDesc = 'address_DESC', - AddressDescNullsLast = 'address_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - SymbolAsc = 'symbol_ASC', - SymbolAscNullsFirst = 'symbol_ASC_NULLS_FIRST', - SymbolDesc = 'symbol_DESC', - SymbolDescNullsLast = 'symbol_DESC_NULLS_LAST' -} - -export type OethAssetWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - address_contains?: InputMaybe; - address_containsInsensitive?: InputMaybe; - address_endsWith?: InputMaybe; - address_eq?: InputMaybe; - address_gt?: InputMaybe; - address_gte?: InputMaybe; - address_in?: InputMaybe>; - address_isNull?: InputMaybe; - address_lt?: InputMaybe; - address_lte?: InputMaybe; - address_not_contains?: InputMaybe; - address_not_containsInsensitive?: InputMaybe; - address_not_endsWith?: InputMaybe; - address_not_eq?: InputMaybe; - address_not_in?: InputMaybe>; - address_not_startsWith?: InputMaybe; - address_startsWith?: InputMaybe; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - symbol_contains?: InputMaybe; - symbol_containsInsensitive?: InputMaybe; - symbol_endsWith?: InputMaybe; - symbol_eq?: InputMaybe; - symbol_gt?: InputMaybe; - symbol_gte?: InputMaybe; - symbol_in?: InputMaybe>; - symbol_isNull?: InputMaybe; - symbol_lt?: InputMaybe; - symbol_lte?: InputMaybe; - symbol_not_contains?: InputMaybe; - symbol_not_containsInsensitive?: InputMaybe; - symbol_not_endsWith?: InputMaybe; - symbol_not_eq?: InputMaybe; - symbol_not_in?: InputMaybe>; - symbol_not_startsWith?: InputMaybe; - symbol_startsWith?: InputMaybe; -}; - -export type OethAssetsConnection = { - __typename?: 'OETHAssetsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OethBalancerMetaPoolStrategiesConnection = { - __typename?: 'OETHBalancerMetaPoolStrategiesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OethBalancerMetaPoolStrategy = { - __typename?: 'OETHBalancerMetaPoolStrategy'; - blockNumber: Scalars['Int']['output']; - id: Scalars['String']['output']; - rETH: Scalars['BigInt']['output']; - timestamp: Scalars['DateTime']['output']; - weth: Scalars['BigInt']['output']; -}; - -export type OethBalancerMetaPoolStrategyEdge = { - __typename?: 'OETHBalancerMetaPoolStrategyEdge'; - cursor: Scalars['String']['output']; - node: OethBalancerMetaPoolStrategy; -}; - -export enum OethBalancerMetaPoolStrategyOrderByInput { - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - REthAsc = 'rETH_ASC', - REthAscNullsFirst = 'rETH_ASC_NULLS_FIRST', - REthDesc = 'rETH_DESC', - REthDescNullsLast = 'rETH_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - WethAsc = 'weth_ASC', - WethAscNullsFirst = 'weth_ASC_NULLS_FIRST', - WethDesc = 'weth_DESC', - WethDescNullsLast = 'weth_DESC_NULLS_LAST' -} - -export type OethBalancerMetaPoolStrategyWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - rETH_eq?: InputMaybe; - rETH_gt?: InputMaybe; - rETH_gte?: InputMaybe; - rETH_in?: InputMaybe>; - rETH_isNull?: InputMaybe; - rETH_lt?: InputMaybe; - rETH_lte?: InputMaybe; - rETH_not_eq?: InputMaybe; - rETH_not_in?: InputMaybe>; - timestamp_eq?: InputMaybe; - timestamp_gt?: InputMaybe; - timestamp_gte?: InputMaybe; - timestamp_in?: InputMaybe>; - timestamp_isNull?: InputMaybe; - timestamp_lt?: InputMaybe; - timestamp_lte?: InputMaybe; - timestamp_not_eq?: InputMaybe; - timestamp_not_in?: InputMaybe>; - weth_eq?: InputMaybe; - weth_gt?: InputMaybe; - weth_gte?: InputMaybe; - weth_in?: InputMaybe>; - weth_isNull?: InputMaybe; - weth_lt?: InputMaybe; - weth_lte?: InputMaybe; - weth_not_eq?: InputMaybe; - weth_not_in?: InputMaybe>; -}; - -export type OethCollateralDailyStat = { - __typename?: 'OETHCollateralDailyStat'; - /** Amount held */ - amount: Scalars['BigInt']['output']; - dailyStatId: OethDailyStat; - id: Scalars['String']['output']; - /** Price in ETH */ - price: Scalars['BigInt']['output']; - /** Token symbol */ - symbol: Scalars['String']['output']; - /** Total ETH value */ - value: Scalars['BigInt']['output']; -}; - -export type OethCollateralDailyStatEdge = { - __typename?: 'OETHCollateralDailyStatEdge'; - cursor: Scalars['String']['output']; - node: OethCollateralDailyStat; -}; - -export enum OethCollateralDailyStatOrderByInput { - AmountAsc = 'amount_ASC', - AmountAscNullsFirst = 'amount_ASC_NULLS_FIRST', - AmountDesc = 'amount_DESC', - AmountDescNullsLast = 'amount_DESC_NULLS_LAST', - DailyStatIdAmoSupplyAsc = 'dailyStatId_amoSupply_ASC', - DailyStatIdAmoSupplyAscNullsFirst = 'dailyStatId_amoSupply_ASC_NULLS_FIRST', - DailyStatIdAmoSupplyDesc = 'dailyStatId_amoSupply_DESC', - DailyStatIdAmoSupplyDescNullsLast = 'dailyStatId_amoSupply_DESC_NULLS_LAST', - DailyStatIdAprAsc = 'dailyStatId_apr_ASC', - DailyStatIdAprAscNullsFirst = 'dailyStatId_apr_ASC_NULLS_FIRST', - DailyStatIdAprDesc = 'dailyStatId_apr_DESC', - DailyStatIdAprDescNullsLast = 'dailyStatId_apr_DESC_NULLS_LAST', - DailyStatIdApy7DayAvgAsc = 'dailyStatId_apy7DayAvg_ASC', - DailyStatIdApy7DayAvgAscNullsFirst = 'dailyStatId_apy7DayAvg_ASC_NULLS_FIRST', - DailyStatIdApy7DayAvgDesc = 'dailyStatId_apy7DayAvg_DESC', - DailyStatIdApy7DayAvgDescNullsLast = 'dailyStatId_apy7DayAvg_DESC_NULLS_LAST', - DailyStatIdApy14DayAvgAsc = 'dailyStatId_apy14DayAvg_ASC', - DailyStatIdApy14DayAvgAscNullsFirst = 'dailyStatId_apy14DayAvg_ASC_NULLS_FIRST', - DailyStatIdApy14DayAvgDesc = 'dailyStatId_apy14DayAvg_DESC', - DailyStatIdApy14DayAvgDescNullsLast = 'dailyStatId_apy14DayAvg_DESC_NULLS_LAST', - DailyStatIdApy30DayAvgAsc = 'dailyStatId_apy30DayAvg_ASC', - DailyStatIdApy30DayAvgAscNullsFirst = 'dailyStatId_apy30DayAvg_ASC_NULLS_FIRST', - DailyStatIdApy30DayAvgDesc = 'dailyStatId_apy30DayAvg_DESC', - DailyStatIdApy30DayAvgDescNullsLast = 'dailyStatId_apy30DayAvg_DESC_NULLS_LAST', - DailyStatIdApyAsc = 'dailyStatId_apy_ASC', - DailyStatIdApyAscNullsFirst = 'dailyStatId_apy_ASC_NULLS_FIRST', - DailyStatIdApyDesc = 'dailyStatId_apy_DESC', - DailyStatIdApyDescNullsLast = 'dailyStatId_apy_DESC_NULLS_LAST', - DailyStatIdBlockNumberAsc = 'dailyStatId_blockNumber_ASC', - DailyStatIdBlockNumberAscNullsFirst = 'dailyStatId_blockNumber_ASC_NULLS_FIRST', - DailyStatIdBlockNumberDesc = 'dailyStatId_blockNumber_DESC', - DailyStatIdBlockNumberDescNullsLast = 'dailyStatId_blockNumber_DESC_NULLS_LAST', - DailyStatIdDripperWethAsc = 'dailyStatId_dripperWETH_ASC', - DailyStatIdDripperWethAscNullsFirst = 'dailyStatId_dripperWETH_ASC_NULLS_FIRST', - DailyStatIdDripperWethDesc = 'dailyStatId_dripperWETH_DESC', - DailyStatIdDripperWethDescNullsLast = 'dailyStatId_dripperWETH_DESC_NULLS_LAST', - DailyStatIdFeesEth7DayAsc = 'dailyStatId_feesETH7Day_ASC', - DailyStatIdFeesEth7DayAscNullsFirst = 'dailyStatId_feesETH7Day_ASC_NULLS_FIRST', - DailyStatIdFeesEth7DayDesc = 'dailyStatId_feesETH7Day_DESC', - DailyStatIdFeesEth7DayDescNullsLast = 'dailyStatId_feesETH7Day_DESC_NULLS_LAST', - DailyStatIdFeesEthAllTimeAsc = 'dailyStatId_feesETHAllTime_ASC', - DailyStatIdFeesEthAllTimeAscNullsFirst = 'dailyStatId_feesETHAllTime_ASC_NULLS_FIRST', - DailyStatIdFeesEthAllTimeDesc = 'dailyStatId_feesETHAllTime_DESC', - DailyStatIdFeesEthAllTimeDescNullsLast = 'dailyStatId_feesETHAllTime_DESC_NULLS_LAST', - DailyStatIdFeesEthAsc = 'dailyStatId_feesETH_ASC', - DailyStatIdFeesEthAscNullsFirst = 'dailyStatId_feesETH_ASC_NULLS_FIRST', - DailyStatIdFeesEthDesc = 'dailyStatId_feesETH_DESC', - DailyStatIdFeesEthDescNullsLast = 'dailyStatId_feesETH_DESC_NULLS_LAST', - DailyStatIdFeesUsd7DayAsc = 'dailyStatId_feesUSD7Day_ASC', - DailyStatIdFeesUsd7DayAscNullsFirst = 'dailyStatId_feesUSD7Day_ASC_NULLS_FIRST', - DailyStatIdFeesUsd7DayDesc = 'dailyStatId_feesUSD7Day_DESC', - DailyStatIdFeesUsd7DayDescNullsLast = 'dailyStatId_feesUSD7Day_DESC_NULLS_LAST', - DailyStatIdFeesUsdAllTimeAsc = 'dailyStatId_feesUSDAllTime_ASC', - DailyStatIdFeesUsdAllTimeAscNullsFirst = 'dailyStatId_feesUSDAllTime_ASC_NULLS_FIRST', - DailyStatIdFeesUsdAllTimeDesc = 'dailyStatId_feesUSDAllTime_DESC', - DailyStatIdFeesUsdAllTimeDescNullsLast = 'dailyStatId_feesUSDAllTime_DESC_NULLS_LAST', - DailyStatIdFeesUsdAsc = 'dailyStatId_feesUSD_ASC', - DailyStatIdFeesUsdAscNullsFirst = 'dailyStatId_feesUSD_ASC_NULLS_FIRST', - DailyStatIdFeesUsdDesc = 'dailyStatId_feesUSD_DESC', - DailyStatIdFeesUsdDescNullsLast = 'dailyStatId_feesUSD_DESC_NULLS_LAST', - DailyStatIdHoldersOverThresholdAsc = 'dailyStatId_holdersOverThreshold_ASC', - DailyStatIdHoldersOverThresholdAscNullsFirst = 'dailyStatId_holdersOverThreshold_ASC_NULLS_FIRST', - DailyStatIdHoldersOverThresholdDesc = 'dailyStatId_holdersOverThreshold_DESC', - DailyStatIdHoldersOverThresholdDescNullsLast = 'dailyStatId_holdersOverThreshold_DESC_NULLS_LAST', - DailyStatIdIdAsc = 'dailyStatId_id_ASC', - DailyStatIdIdAscNullsFirst = 'dailyStatId_id_ASC_NULLS_FIRST', - DailyStatIdIdDesc = 'dailyStatId_id_DESC', - DailyStatIdIdDescNullsLast = 'dailyStatId_id_DESC_NULLS_LAST', - DailyStatIdMarketCapUsdAsc = 'dailyStatId_marketCapUSD_ASC', - DailyStatIdMarketCapUsdAscNullsFirst = 'dailyStatId_marketCapUSD_ASC_NULLS_FIRST', - DailyStatIdMarketCapUsdDesc = 'dailyStatId_marketCapUSD_DESC', - DailyStatIdMarketCapUsdDescNullsLast = 'dailyStatId_marketCapUSD_DESC_NULLS_LAST', - DailyStatIdNonRebasingSupplyAsc = 'dailyStatId_nonRebasingSupply_ASC', - DailyStatIdNonRebasingSupplyAscNullsFirst = 'dailyStatId_nonRebasingSupply_ASC_NULLS_FIRST', - DailyStatIdNonRebasingSupplyDesc = 'dailyStatId_nonRebasingSupply_DESC', - DailyStatIdNonRebasingSupplyDescNullsLast = 'dailyStatId_nonRebasingSupply_DESC_NULLS_LAST', - DailyStatIdPegPriceAsc = 'dailyStatId_pegPrice_ASC', - DailyStatIdPegPriceAscNullsFirst = 'dailyStatId_pegPrice_ASC_NULLS_FIRST', - DailyStatIdPegPriceDesc = 'dailyStatId_pegPrice_DESC', - DailyStatIdPegPriceDescNullsLast = 'dailyStatId_pegPrice_DESC_NULLS_LAST', - DailyStatIdRebasingSupplyAsc = 'dailyStatId_rebasingSupply_ASC', - DailyStatIdRebasingSupplyAscNullsFirst = 'dailyStatId_rebasingSupply_ASC_NULLS_FIRST', - DailyStatIdRebasingSupplyDesc = 'dailyStatId_rebasingSupply_DESC', - DailyStatIdRebasingSupplyDescNullsLast = 'dailyStatId_rebasingSupply_DESC_NULLS_LAST', - DailyStatIdTimestampAsc = 'dailyStatId_timestamp_ASC', - DailyStatIdTimestampAscNullsFirst = 'dailyStatId_timestamp_ASC_NULLS_FIRST', - DailyStatIdTimestampDesc = 'dailyStatId_timestamp_DESC', - DailyStatIdTimestampDescNullsLast = 'dailyStatId_timestamp_DESC_NULLS_LAST', - DailyStatIdTotalSupplyUsdAsc = 'dailyStatId_totalSupplyUSD_ASC', - DailyStatIdTotalSupplyUsdAscNullsFirst = 'dailyStatId_totalSupplyUSD_ASC_NULLS_FIRST', - DailyStatIdTotalSupplyUsdDesc = 'dailyStatId_totalSupplyUSD_DESC', - DailyStatIdTotalSupplyUsdDescNullsLast = 'dailyStatId_totalSupplyUSD_DESC_NULLS_LAST', - DailyStatIdTotalSupplyAsc = 'dailyStatId_totalSupply_ASC', - DailyStatIdTotalSupplyAscNullsFirst = 'dailyStatId_totalSupply_ASC_NULLS_FIRST', - DailyStatIdTotalSupplyDesc = 'dailyStatId_totalSupply_DESC', - DailyStatIdTotalSupplyDescNullsLast = 'dailyStatId_totalSupply_DESC_NULLS_LAST', - DailyStatIdTradingVolumeUsdAsc = 'dailyStatId_tradingVolumeUSD_ASC', - DailyStatIdTradingVolumeUsdAscNullsFirst = 'dailyStatId_tradingVolumeUSD_ASC_NULLS_FIRST', - DailyStatIdTradingVolumeUsdDesc = 'dailyStatId_tradingVolumeUSD_DESC', - DailyStatIdTradingVolumeUsdDescNullsLast = 'dailyStatId_tradingVolumeUSD_DESC_NULLS_LAST', - DailyStatIdWrappedSupplyAsc = 'dailyStatId_wrappedSupply_ASC', - DailyStatIdWrappedSupplyAscNullsFirst = 'dailyStatId_wrappedSupply_ASC_NULLS_FIRST', - DailyStatIdWrappedSupplyDesc = 'dailyStatId_wrappedSupply_DESC', - DailyStatIdWrappedSupplyDescNullsLast = 'dailyStatId_wrappedSupply_DESC_NULLS_LAST', - DailyStatIdYieldEth7DayAsc = 'dailyStatId_yieldETH7Day_ASC', - DailyStatIdYieldEth7DayAscNullsFirst = 'dailyStatId_yieldETH7Day_ASC_NULLS_FIRST', - DailyStatIdYieldEth7DayDesc = 'dailyStatId_yieldETH7Day_DESC', - DailyStatIdYieldEth7DayDescNullsLast = 'dailyStatId_yieldETH7Day_DESC_NULLS_LAST', - DailyStatIdYieldEthAllTimeAsc = 'dailyStatId_yieldETHAllTime_ASC', - DailyStatIdYieldEthAllTimeAscNullsFirst = 'dailyStatId_yieldETHAllTime_ASC_NULLS_FIRST', - DailyStatIdYieldEthAllTimeDesc = 'dailyStatId_yieldETHAllTime_DESC', - DailyStatIdYieldEthAllTimeDescNullsLast = 'dailyStatId_yieldETHAllTime_DESC_NULLS_LAST', - DailyStatIdYieldEthAsc = 'dailyStatId_yieldETH_ASC', - DailyStatIdYieldEthAscNullsFirst = 'dailyStatId_yieldETH_ASC_NULLS_FIRST', - DailyStatIdYieldEthDesc = 'dailyStatId_yieldETH_DESC', - DailyStatIdYieldEthDescNullsLast = 'dailyStatId_yieldETH_DESC_NULLS_LAST', - DailyStatIdYieldUsd7DayAsc = 'dailyStatId_yieldUSD7Day_ASC', - DailyStatIdYieldUsd7DayAscNullsFirst = 'dailyStatId_yieldUSD7Day_ASC_NULLS_FIRST', - DailyStatIdYieldUsd7DayDesc = 'dailyStatId_yieldUSD7Day_DESC', - DailyStatIdYieldUsd7DayDescNullsLast = 'dailyStatId_yieldUSD7Day_DESC_NULLS_LAST', - DailyStatIdYieldUsdAllTimeAsc = 'dailyStatId_yieldUSDAllTime_ASC', - DailyStatIdYieldUsdAllTimeAscNullsFirst = 'dailyStatId_yieldUSDAllTime_ASC_NULLS_FIRST', - DailyStatIdYieldUsdAllTimeDesc = 'dailyStatId_yieldUSDAllTime_DESC', - DailyStatIdYieldUsdAllTimeDescNullsLast = 'dailyStatId_yieldUSDAllTime_DESC_NULLS_LAST', - DailyStatIdYieldUsdAsc = 'dailyStatId_yieldUSD_ASC', - DailyStatIdYieldUsdAscNullsFirst = 'dailyStatId_yieldUSD_ASC_NULLS_FIRST', - DailyStatIdYieldUsdDesc = 'dailyStatId_yieldUSD_DESC', - DailyStatIdYieldUsdDescNullsLast = 'dailyStatId_yieldUSD_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - PriceAsc = 'price_ASC', - PriceAscNullsFirst = 'price_ASC_NULLS_FIRST', - PriceDesc = 'price_DESC', - PriceDescNullsLast = 'price_DESC_NULLS_LAST', - SymbolAsc = 'symbol_ASC', - SymbolAscNullsFirst = 'symbol_ASC_NULLS_FIRST', - SymbolDesc = 'symbol_DESC', - SymbolDescNullsLast = 'symbol_DESC_NULLS_LAST', - ValueAsc = 'value_ASC', - ValueAscNullsFirst = 'value_ASC_NULLS_FIRST', - ValueDesc = 'value_DESC', - ValueDescNullsLast = 'value_DESC_NULLS_LAST' -} - -export type OethCollateralDailyStatWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - amount_eq?: InputMaybe; - amount_gt?: InputMaybe; - amount_gte?: InputMaybe; - amount_in?: InputMaybe>; - amount_isNull?: InputMaybe; - amount_lt?: InputMaybe; - amount_lte?: InputMaybe; - amount_not_eq?: InputMaybe; - amount_not_in?: InputMaybe>; - dailyStatId?: InputMaybe; - dailyStatId_isNull?: InputMaybe; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - price_eq?: InputMaybe; - price_gt?: InputMaybe; - price_gte?: InputMaybe; - price_in?: InputMaybe>; - price_isNull?: InputMaybe; - price_lt?: InputMaybe; - price_lte?: InputMaybe; - price_not_eq?: InputMaybe; - price_not_in?: InputMaybe>; - symbol_contains?: InputMaybe; - symbol_containsInsensitive?: InputMaybe; - symbol_endsWith?: InputMaybe; - symbol_eq?: InputMaybe; - symbol_gt?: InputMaybe; - symbol_gte?: InputMaybe; - symbol_in?: InputMaybe>; - symbol_isNull?: InputMaybe; - symbol_lt?: InputMaybe; - symbol_lte?: InputMaybe; - symbol_not_contains?: InputMaybe; - symbol_not_containsInsensitive?: InputMaybe; - symbol_not_endsWith?: InputMaybe; - symbol_not_eq?: InputMaybe; - symbol_not_in?: InputMaybe>; - symbol_not_startsWith?: InputMaybe; - symbol_startsWith?: InputMaybe; - value_eq?: InputMaybe; - value_gt?: InputMaybe; - value_gte?: InputMaybe; - value_in?: InputMaybe>; - value_isNull?: InputMaybe; - value_lt?: InputMaybe; - value_lte?: InputMaybe; - value_not_eq?: InputMaybe; - value_not_in?: InputMaybe>; -}; - -export type OethCollateralDailyStatsConnection = { - __typename?: 'OETHCollateralDailyStatsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OethCurveLp = { - __typename?: 'OETHCurveLP'; - blockNumber: Scalars['Int']['output']; - eth: Scalars['BigInt']['output']; - ethOwned: Scalars['BigInt']['output']; - id: Scalars['String']['output']; - oeth: Scalars['BigInt']['output']; - oethOwned: Scalars['BigInt']['output']; - timestamp: Scalars['DateTime']['output']; - totalSupply: Scalars['BigInt']['output']; - totalSupplyOwned: Scalars['BigInt']['output']; -}; - -export type OethCurveLpEdge = { - __typename?: 'OETHCurveLPEdge'; - cursor: Scalars['String']['output']; - node: OethCurveLp; -}; - -export enum OethCurveLpOrderByInput { - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - EthOwnedAsc = 'ethOwned_ASC', - EthOwnedAscNullsFirst = 'ethOwned_ASC_NULLS_FIRST', - EthOwnedDesc = 'ethOwned_DESC', - EthOwnedDescNullsLast = 'ethOwned_DESC_NULLS_LAST', - EthAsc = 'eth_ASC', - EthAscNullsFirst = 'eth_ASC_NULLS_FIRST', - EthDesc = 'eth_DESC', - EthDescNullsLast = 'eth_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - OethOwnedAsc = 'oethOwned_ASC', - OethOwnedAscNullsFirst = 'oethOwned_ASC_NULLS_FIRST', - OethOwnedDesc = 'oethOwned_DESC', - OethOwnedDescNullsLast = 'oethOwned_DESC_NULLS_LAST', - OethAsc = 'oeth_ASC', - OethAscNullsFirst = 'oeth_ASC_NULLS_FIRST', - OethDesc = 'oeth_DESC', - OethDescNullsLast = 'oeth_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TotalSupplyOwnedAsc = 'totalSupplyOwned_ASC', - TotalSupplyOwnedAscNullsFirst = 'totalSupplyOwned_ASC_NULLS_FIRST', - TotalSupplyOwnedDesc = 'totalSupplyOwned_DESC', - TotalSupplyOwnedDescNullsLast = 'totalSupplyOwned_DESC_NULLS_LAST', - TotalSupplyAsc = 'totalSupply_ASC', - TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', - TotalSupplyDesc = 'totalSupply_DESC', - TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST' -} - -export type OethCurveLpWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - ethOwned_eq?: InputMaybe; - ethOwned_gt?: InputMaybe; - ethOwned_gte?: InputMaybe; - ethOwned_in?: InputMaybe>; - ethOwned_isNull?: InputMaybe; - ethOwned_lt?: InputMaybe; - ethOwned_lte?: InputMaybe; - ethOwned_not_eq?: InputMaybe; - ethOwned_not_in?: InputMaybe>; - eth_eq?: InputMaybe; - eth_gt?: InputMaybe; - eth_gte?: InputMaybe; - eth_in?: InputMaybe>; - eth_isNull?: InputMaybe; - eth_lt?: InputMaybe; - eth_lte?: InputMaybe; - eth_not_eq?: InputMaybe; - eth_not_in?: InputMaybe>; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - oethOwned_eq?: InputMaybe; - oethOwned_gt?: InputMaybe; - oethOwned_gte?: InputMaybe; - oethOwned_in?: InputMaybe>; - oethOwned_isNull?: InputMaybe; - oethOwned_lt?: InputMaybe; - oethOwned_lte?: InputMaybe; - oethOwned_not_eq?: InputMaybe; - oethOwned_not_in?: InputMaybe>; - oeth_eq?: InputMaybe; - oeth_gt?: InputMaybe; - oeth_gte?: InputMaybe; - oeth_in?: InputMaybe>; - oeth_isNull?: InputMaybe; - oeth_lt?: InputMaybe; - oeth_lte?: InputMaybe; - oeth_not_eq?: InputMaybe; - oeth_not_in?: InputMaybe>; - timestamp_eq?: InputMaybe; - timestamp_gt?: InputMaybe; - timestamp_gte?: InputMaybe; - timestamp_in?: InputMaybe>; - timestamp_isNull?: InputMaybe; - timestamp_lt?: InputMaybe; - timestamp_lte?: InputMaybe; - timestamp_not_eq?: InputMaybe; - timestamp_not_in?: InputMaybe>; - totalSupplyOwned_eq?: InputMaybe; - totalSupplyOwned_gt?: InputMaybe; - totalSupplyOwned_gte?: InputMaybe; - totalSupplyOwned_in?: InputMaybe>; - totalSupplyOwned_isNull?: InputMaybe; - totalSupplyOwned_lt?: InputMaybe; - totalSupplyOwned_lte?: InputMaybe; - totalSupplyOwned_not_eq?: InputMaybe; - totalSupplyOwned_not_in?: InputMaybe>; - totalSupply_eq?: InputMaybe; - totalSupply_gt?: InputMaybe; - totalSupply_gte?: InputMaybe; - totalSupply_in?: InputMaybe>; - totalSupply_isNull?: InputMaybe; - totalSupply_lt?: InputMaybe; - totalSupply_lte?: InputMaybe; - totalSupply_not_eq?: InputMaybe; - totalSupply_not_in?: InputMaybe>; -}; - -export type OethCurveLPsConnection = { - __typename?: 'OETHCurveLPsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OethDailyStat = { - __typename?: 'OETHDailyStat'; - amoSupply: Scalars['BigInt']['output']; - /** Timestamp of block number stats were updated */ - apr: Scalars['Float']['output']; - apy: Scalars['Float']['output']; - apy7DayAvg: Scalars['Float']['output']; - apy14DayAvg: Scalars['Float']['output']; - apy30DayAvg: Scalars['Float']['output']; - /** Timestamp, eg 2023-10-17 */ - blockNumber: Scalars['Int']['output']; - collateral: Array; - dripperWETH: Scalars['BigInt']['output']; - feesETH: Scalars['BigInt']['output']; - feesETH7Day: Scalars['BigInt']['output']; - feesETHAllTime: Scalars['BigInt']['output']; - feesUSD: Scalars['BigInt']['output']; - feesUSD7Day: Scalars['BigInt']['output']; - feesUSDAllTime: Scalars['BigInt']['output']; - holdersOverThreshold: Scalars['Int']['output']; - id: Scalars['String']['output']; - marketCapUSD: Scalars['Float']['output']; - nonRebasingSupply: Scalars['BigInt']['output']; - pegPrice: Scalars['BigInt']['output']; - rebasingSupply: Scalars['BigInt']['output']; - strategies: Array; - /** Last block number stats were updated */ - timestamp: Scalars['DateTime']['output']; - totalSupply: Scalars['BigInt']['output']; - totalSupplyUSD: Scalars['Float']['output']; - tradingVolumeUSD: Scalars['Float']['output']; - wrappedSupply: Scalars['BigInt']['output']; - yieldETH: Scalars['BigInt']['output']; - yieldETH7Day: Scalars['BigInt']['output']; - yieldETHAllTime: Scalars['BigInt']['output']; - yieldUSD: Scalars['BigInt']['output']; - yieldUSD7Day: Scalars['BigInt']['output']; - yieldUSDAllTime: Scalars['BigInt']['output']; -}; - - -export type OethDailyStatCollateralArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type OethDailyStatStrategiesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - -export type OethDailyStatEdge = { - __typename?: 'OETHDailyStatEdge'; - cursor: Scalars['String']['output']; - node: OethDailyStat; -}; - -export enum OethDailyStatOrderByInput { - AmoSupplyAsc = 'amoSupply_ASC', - AmoSupplyAscNullsFirst = 'amoSupply_ASC_NULLS_FIRST', - AmoSupplyDesc = 'amoSupply_DESC', - AmoSupplyDescNullsLast = 'amoSupply_DESC_NULLS_LAST', - AprAsc = 'apr_ASC', - AprAscNullsFirst = 'apr_ASC_NULLS_FIRST', - AprDesc = 'apr_DESC', - AprDescNullsLast = 'apr_DESC_NULLS_LAST', - Apy7DayAvgAsc = 'apy7DayAvg_ASC', - Apy7DayAvgAscNullsFirst = 'apy7DayAvg_ASC_NULLS_FIRST', - Apy7DayAvgDesc = 'apy7DayAvg_DESC', - Apy7DayAvgDescNullsLast = 'apy7DayAvg_DESC_NULLS_LAST', - Apy14DayAvgAsc = 'apy14DayAvg_ASC', - Apy14DayAvgAscNullsFirst = 'apy14DayAvg_ASC_NULLS_FIRST', - Apy14DayAvgDesc = 'apy14DayAvg_DESC', - Apy14DayAvgDescNullsLast = 'apy14DayAvg_DESC_NULLS_LAST', - Apy30DayAvgAsc = 'apy30DayAvg_ASC', - Apy30DayAvgAscNullsFirst = 'apy30DayAvg_ASC_NULLS_FIRST', - Apy30DayAvgDesc = 'apy30DayAvg_DESC', - Apy30DayAvgDescNullsLast = 'apy30DayAvg_DESC_NULLS_LAST', - ApyAsc = 'apy_ASC', - ApyAscNullsFirst = 'apy_ASC_NULLS_FIRST', - ApyDesc = 'apy_DESC', - ApyDescNullsLast = 'apy_DESC_NULLS_LAST', - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - DripperWethAsc = 'dripperWETH_ASC', - DripperWethAscNullsFirst = 'dripperWETH_ASC_NULLS_FIRST', - DripperWethDesc = 'dripperWETH_DESC', - DripperWethDescNullsLast = 'dripperWETH_DESC_NULLS_LAST', - FeesEth7DayAsc = 'feesETH7Day_ASC', - FeesEth7DayAscNullsFirst = 'feesETH7Day_ASC_NULLS_FIRST', - FeesEth7DayDesc = 'feesETH7Day_DESC', - FeesEth7DayDescNullsLast = 'feesETH7Day_DESC_NULLS_LAST', - FeesEthAllTimeAsc = 'feesETHAllTime_ASC', - FeesEthAllTimeAscNullsFirst = 'feesETHAllTime_ASC_NULLS_FIRST', - FeesEthAllTimeDesc = 'feesETHAllTime_DESC', - FeesEthAllTimeDescNullsLast = 'feesETHAllTime_DESC_NULLS_LAST', - FeesEthAsc = 'feesETH_ASC', - FeesEthAscNullsFirst = 'feesETH_ASC_NULLS_FIRST', - FeesEthDesc = 'feesETH_DESC', - FeesEthDescNullsLast = 'feesETH_DESC_NULLS_LAST', - FeesUsd7DayAsc = 'feesUSD7Day_ASC', - FeesUsd7DayAscNullsFirst = 'feesUSD7Day_ASC_NULLS_FIRST', - FeesUsd7DayDesc = 'feesUSD7Day_DESC', - FeesUsd7DayDescNullsLast = 'feesUSD7Day_DESC_NULLS_LAST', - FeesUsdAllTimeAsc = 'feesUSDAllTime_ASC', - FeesUsdAllTimeAscNullsFirst = 'feesUSDAllTime_ASC_NULLS_FIRST', - FeesUsdAllTimeDesc = 'feesUSDAllTime_DESC', - FeesUsdAllTimeDescNullsLast = 'feesUSDAllTime_DESC_NULLS_LAST', - FeesUsdAsc = 'feesUSD_ASC', - FeesUsdAscNullsFirst = 'feesUSD_ASC_NULLS_FIRST', - FeesUsdDesc = 'feesUSD_DESC', - FeesUsdDescNullsLast = 'feesUSD_DESC_NULLS_LAST', - HoldersOverThresholdAsc = 'holdersOverThreshold_ASC', - HoldersOverThresholdAscNullsFirst = 'holdersOverThreshold_ASC_NULLS_FIRST', - HoldersOverThresholdDesc = 'holdersOverThreshold_DESC', - HoldersOverThresholdDescNullsLast = 'holdersOverThreshold_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - MarketCapUsdAsc = 'marketCapUSD_ASC', - MarketCapUsdAscNullsFirst = 'marketCapUSD_ASC_NULLS_FIRST', - MarketCapUsdDesc = 'marketCapUSD_DESC', - MarketCapUsdDescNullsLast = 'marketCapUSD_DESC_NULLS_LAST', - NonRebasingSupplyAsc = 'nonRebasingSupply_ASC', - NonRebasingSupplyAscNullsFirst = 'nonRebasingSupply_ASC_NULLS_FIRST', - NonRebasingSupplyDesc = 'nonRebasingSupply_DESC', - NonRebasingSupplyDescNullsLast = 'nonRebasingSupply_DESC_NULLS_LAST', - PegPriceAsc = 'pegPrice_ASC', - PegPriceAscNullsFirst = 'pegPrice_ASC_NULLS_FIRST', - PegPriceDesc = 'pegPrice_DESC', - PegPriceDescNullsLast = 'pegPrice_DESC_NULLS_LAST', - RebasingSupplyAsc = 'rebasingSupply_ASC', - RebasingSupplyAscNullsFirst = 'rebasingSupply_ASC_NULLS_FIRST', - RebasingSupplyDesc = 'rebasingSupply_DESC', - RebasingSupplyDescNullsLast = 'rebasingSupply_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TotalSupplyUsdAsc = 'totalSupplyUSD_ASC', - TotalSupplyUsdAscNullsFirst = 'totalSupplyUSD_ASC_NULLS_FIRST', - TotalSupplyUsdDesc = 'totalSupplyUSD_DESC', - TotalSupplyUsdDescNullsLast = 'totalSupplyUSD_DESC_NULLS_LAST', - TotalSupplyAsc = 'totalSupply_ASC', - TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', - TotalSupplyDesc = 'totalSupply_DESC', - TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST', - TradingVolumeUsdAsc = 'tradingVolumeUSD_ASC', - TradingVolumeUsdAscNullsFirst = 'tradingVolumeUSD_ASC_NULLS_FIRST', - TradingVolumeUsdDesc = 'tradingVolumeUSD_DESC', - TradingVolumeUsdDescNullsLast = 'tradingVolumeUSD_DESC_NULLS_LAST', - WrappedSupplyAsc = 'wrappedSupply_ASC', - WrappedSupplyAscNullsFirst = 'wrappedSupply_ASC_NULLS_FIRST', - WrappedSupplyDesc = 'wrappedSupply_DESC', - WrappedSupplyDescNullsLast = 'wrappedSupply_DESC_NULLS_LAST', - YieldEth7DayAsc = 'yieldETH7Day_ASC', - YieldEth7DayAscNullsFirst = 'yieldETH7Day_ASC_NULLS_FIRST', - YieldEth7DayDesc = 'yieldETH7Day_DESC', - YieldEth7DayDescNullsLast = 'yieldETH7Day_DESC_NULLS_LAST', - YieldEthAllTimeAsc = 'yieldETHAllTime_ASC', - YieldEthAllTimeAscNullsFirst = 'yieldETHAllTime_ASC_NULLS_FIRST', - YieldEthAllTimeDesc = 'yieldETHAllTime_DESC', - YieldEthAllTimeDescNullsLast = 'yieldETHAllTime_DESC_NULLS_LAST', - YieldEthAsc = 'yieldETH_ASC', - YieldEthAscNullsFirst = 'yieldETH_ASC_NULLS_FIRST', - YieldEthDesc = 'yieldETH_DESC', - YieldEthDescNullsLast = 'yieldETH_DESC_NULLS_LAST', - YieldUsd7DayAsc = 'yieldUSD7Day_ASC', - YieldUsd7DayAscNullsFirst = 'yieldUSD7Day_ASC_NULLS_FIRST', - YieldUsd7DayDesc = 'yieldUSD7Day_DESC', - YieldUsd7DayDescNullsLast = 'yieldUSD7Day_DESC_NULLS_LAST', - YieldUsdAllTimeAsc = 'yieldUSDAllTime_ASC', - YieldUsdAllTimeAscNullsFirst = 'yieldUSDAllTime_ASC_NULLS_FIRST', - YieldUsdAllTimeDesc = 'yieldUSDAllTime_DESC', - YieldUsdAllTimeDescNullsLast = 'yieldUSDAllTime_DESC_NULLS_LAST', - YieldUsdAsc = 'yieldUSD_ASC', - YieldUsdAscNullsFirst = 'yieldUSD_ASC_NULLS_FIRST', - YieldUsdDesc = 'yieldUSD_DESC', - YieldUsdDescNullsLast = 'yieldUSD_DESC_NULLS_LAST' -} - -export type OethDailyStatWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - amoSupply_eq?: InputMaybe; - amoSupply_gt?: InputMaybe; - amoSupply_gte?: InputMaybe; - amoSupply_in?: InputMaybe>; - amoSupply_isNull?: InputMaybe; - amoSupply_lt?: InputMaybe; - amoSupply_lte?: InputMaybe; - amoSupply_not_eq?: InputMaybe; - amoSupply_not_in?: InputMaybe>; - apr_eq?: InputMaybe; - apr_gt?: InputMaybe; - apr_gte?: InputMaybe; - apr_in?: InputMaybe>; - apr_isNull?: InputMaybe; - apr_lt?: InputMaybe; - apr_lte?: InputMaybe; - apr_not_eq?: InputMaybe; - apr_not_in?: InputMaybe>; - apy7DayAvg_eq?: InputMaybe; - apy7DayAvg_gt?: InputMaybe; - apy7DayAvg_gte?: InputMaybe; - apy7DayAvg_in?: InputMaybe>; - apy7DayAvg_isNull?: InputMaybe; - apy7DayAvg_lt?: InputMaybe; - apy7DayAvg_lte?: InputMaybe; - apy7DayAvg_not_eq?: InputMaybe; - apy7DayAvg_not_in?: InputMaybe>; - apy14DayAvg_eq?: InputMaybe; - apy14DayAvg_gt?: InputMaybe; - apy14DayAvg_gte?: InputMaybe; - apy14DayAvg_in?: InputMaybe>; - apy14DayAvg_isNull?: InputMaybe; - apy14DayAvg_lt?: InputMaybe; - apy14DayAvg_lte?: InputMaybe; - apy14DayAvg_not_eq?: InputMaybe; - apy14DayAvg_not_in?: InputMaybe>; - apy30DayAvg_eq?: InputMaybe; - apy30DayAvg_gt?: InputMaybe; - apy30DayAvg_gte?: InputMaybe; - apy30DayAvg_in?: InputMaybe>; - apy30DayAvg_isNull?: InputMaybe; - apy30DayAvg_lt?: InputMaybe; - apy30DayAvg_lte?: InputMaybe; - apy30DayAvg_not_eq?: InputMaybe; - apy30DayAvg_not_in?: InputMaybe>; - apy_eq?: InputMaybe; - apy_gt?: InputMaybe; - apy_gte?: InputMaybe; - apy_in?: InputMaybe>; - apy_isNull?: InputMaybe; - apy_lt?: InputMaybe; - apy_lte?: InputMaybe; - apy_not_eq?: InputMaybe; - apy_not_in?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - collateral_every?: InputMaybe; - collateral_none?: InputMaybe; - collateral_some?: InputMaybe; - dripperWETH_eq?: InputMaybe; - dripperWETH_gt?: InputMaybe; - dripperWETH_gte?: InputMaybe; - dripperWETH_in?: InputMaybe>; - dripperWETH_isNull?: InputMaybe; - dripperWETH_lt?: InputMaybe; - dripperWETH_lte?: InputMaybe; - dripperWETH_not_eq?: InputMaybe; - dripperWETH_not_in?: InputMaybe>; - feesETH7Day_eq?: InputMaybe; - feesETH7Day_gt?: InputMaybe; - feesETH7Day_gte?: InputMaybe; - feesETH7Day_in?: InputMaybe>; - feesETH7Day_isNull?: InputMaybe; - feesETH7Day_lt?: InputMaybe; - feesETH7Day_lte?: InputMaybe; - feesETH7Day_not_eq?: InputMaybe; - feesETH7Day_not_in?: InputMaybe>; - feesETHAllTime_eq?: InputMaybe; - feesETHAllTime_gt?: InputMaybe; - feesETHAllTime_gte?: InputMaybe; - feesETHAllTime_in?: InputMaybe>; - feesETHAllTime_isNull?: InputMaybe; - feesETHAllTime_lt?: InputMaybe; - feesETHAllTime_lte?: InputMaybe; - feesETHAllTime_not_eq?: InputMaybe; - feesETHAllTime_not_in?: InputMaybe>; - feesETH_eq?: InputMaybe; - feesETH_gt?: InputMaybe; - feesETH_gte?: InputMaybe; - feesETH_in?: InputMaybe>; - feesETH_isNull?: InputMaybe; - feesETH_lt?: InputMaybe; - feesETH_lte?: InputMaybe; - feesETH_not_eq?: InputMaybe; - feesETH_not_in?: InputMaybe>; - feesUSD7Day_eq?: InputMaybe; - feesUSD7Day_gt?: InputMaybe; - feesUSD7Day_gte?: InputMaybe; - feesUSD7Day_in?: InputMaybe>; - feesUSD7Day_isNull?: InputMaybe; - feesUSD7Day_lt?: InputMaybe; - feesUSD7Day_lte?: InputMaybe; - feesUSD7Day_not_eq?: InputMaybe; - feesUSD7Day_not_in?: InputMaybe>; - feesUSDAllTime_eq?: InputMaybe; - feesUSDAllTime_gt?: InputMaybe; - feesUSDAllTime_gte?: InputMaybe; - feesUSDAllTime_in?: InputMaybe>; - feesUSDAllTime_isNull?: InputMaybe; - feesUSDAllTime_lt?: InputMaybe; - feesUSDAllTime_lte?: InputMaybe; - feesUSDAllTime_not_eq?: InputMaybe; - feesUSDAllTime_not_in?: InputMaybe>; - feesUSD_eq?: InputMaybe; - feesUSD_gt?: InputMaybe; - feesUSD_gte?: InputMaybe; - feesUSD_in?: InputMaybe>; - feesUSD_isNull?: InputMaybe; - feesUSD_lt?: InputMaybe; - feesUSD_lte?: InputMaybe; - feesUSD_not_eq?: InputMaybe; - feesUSD_not_in?: InputMaybe>; - holdersOverThreshold_eq?: InputMaybe; - holdersOverThreshold_gt?: InputMaybe; - holdersOverThreshold_gte?: InputMaybe; - holdersOverThreshold_in?: InputMaybe>; - holdersOverThreshold_isNull?: InputMaybe; - holdersOverThreshold_lt?: InputMaybe; - holdersOverThreshold_lte?: InputMaybe; - holdersOverThreshold_not_eq?: InputMaybe; - holdersOverThreshold_not_in?: InputMaybe>; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - marketCapUSD_eq?: InputMaybe; - marketCapUSD_gt?: InputMaybe; - marketCapUSD_gte?: InputMaybe; - marketCapUSD_in?: InputMaybe>; - marketCapUSD_isNull?: InputMaybe; - marketCapUSD_lt?: InputMaybe; - marketCapUSD_lte?: InputMaybe; - marketCapUSD_not_eq?: InputMaybe; - marketCapUSD_not_in?: InputMaybe>; - nonRebasingSupply_eq?: InputMaybe; - nonRebasingSupply_gt?: InputMaybe; - nonRebasingSupply_gte?: InputMaybe; - nonRebasingSupply_in?: InputMaybe>; - nonRebasingSupply_isNull?: InputMaybe; - nonRebasingSupply_lt?: InputMaybe; - nonRebasingSupply_lte?: InputMaybe; - nonRebasingSupply_not_eq?: InputMaybe; - nonRebasingSupply_not_in?: InputMaybe>; - pegPrice_eq?: InputMaybe; - pegPrice_gt?: InputMaybe; - pegPrice_gte?: InputMaybe; - pegPrice_in?: InputMaybe>; - pegPrice_isNull?: InputMaybe; - pegPrice_lt?: InputMaybe; - pegPrice_lte?: InputMaybe; - pegPrice_not_eq?: InputMaybe; - pegPrice_not_in?: InputMaybe>; - rebasingSupply_eq?: InputMaybe; - rebasingSupply_gt?: InputMaybe; - rebasingSupply_gte?: InputMaybe; - rebasingSupply_in?: InputMaybe>; - rebasingSupply_isNull?: InputMaybe; - rebasingSupply_lt?: InputMaybe; - rebasingSupply_lte?: InputMaybe; - rebasingSupply_not_eq?: InputMaybe; - rebasingSupply_not_in?: InputMaybe>; - strategies_every?: InputMaybe; - strategies_none?: InputMaybe; - strategies_some?: InputMaybe; + oethOwned_eq?: InputMaybe; + oethOwned_gt?: InputMaybe; + oethOwned_gte?: InputMaybe; + oethOwned_in?: InputMaybe>; + oethOwned_isNull?: InputMaybe; + oethOwned_lt?: InputMaybe; + oethOwned_lte?: InputMaybe; + oethOwned_not_eq?: InputMaybe; + oethOwned_not_in?: InputMaybe>; + oeth_eq?: InputMaybe; + oeth_gt?: InputMaybe; + oeth_gte?: InputMaybe; + oeth_in?: InputMaybe>; + oeth_isNull?: InputMaybe; + oeth_lt?: InputMaybe; + oeth_lte?: InputMaybe; + oeth_not_eq?: InputMaybe; + oeth_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -4593,15 +3465,15 @@ export type OethDailyStatWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - totalSupplyUSD_eq?: InputMaybe; - totalSupplyUSD_gt?: InputMaybe; - totalSupplyUSD_gte?: InputMaybe; - totalSupplyUSD_in?: InputMaybe>; - totalSupplyUSD_isNull?: InputMaybe; - totalSupplyUSD_lt?: InputMaybe; - totalSupplyUSD_lte?: InputMaybe; - totalSupplyUSD_not_eq?: InputMaybe; - totalSupplyUSD_not_in?: InputMaybe>; + totalSupplyOwned_eq?: InputMaybe; + totalSupplyOwned_gt?: InputMaybe; + totalSupplyOwned_gte?: InputMaybe; + totalSupplyOwned_in?: InputMaybe>; + totalSupplyOwned_isNull?: InputMaybe; + totalSupplyOwned_lt?: InputMaybe; + totalSupplyOwned_lte?: InputMaybe; + totalSupplyOwned_not_eq?: InputMaybe; + totalSupplyOwned_not_in?: InputMaybe>; totalSupply_eq?: InputMaybe; totalSupply_gt?: InputMaybe; totalSupply_gte?: InputMaybe; @@ -4611,264 +3483,261 @@ export type OethDailyStatWhereInput = { totalSupply_lte?: InputMaybe; totalSupply_not_eq?: InputMaybe; totalSupply_not_in?: InputMaybe>; - tradingVolumeUSD_eq?: InputMaybe; - tradingVolumeUSD_gt?: InputMaybe; - tradingVolumeUSD_gte?: InputMaybe; - tradingVolumeUSD_in?: InputMaybe>; - tradingVolumeUSD_isNull?: InputMaybe; - tradingVolumeUSD_lt?: InputMaybe; - tradingVolumeUSD_lte?: InputMaybe; - tradingVolumeUSD_not_eq?: InputMaybe; - tradingVolumeUSD_not_in?: InputMaybe>; - wrappedSupply_eq?: InputMaybe; - wrappedSupply_gt?: InputMaybe; - wrappedSupply_gte?: InputMaybe; - wrappedSupply_in?: InputMaybe>; - wrappedSupply_isNull?: InputMaybe; - wrappedSupply_lt?: InputMaybe; - wrappedSupply_lte?: InputMaybe; - wrappedSupply_not_eq?: InputMaybe; - wrappedSupply_not_in?: InputMaybe>; - yieldETH7Day_eq?: InputMaybe; - yieldETH7Day_gt?: InputMaybe; - yieldETH7Day_gte?: InputMaybe; - yieldETH7Day_in?: InputMaybe>; - yieldETH7Day_isNull?: InputMaybe; - yieldETH7Day_lt?: InputMaybe; - yieldETH7Day_lte?: InputMaybe; - yieldETH7Day_not_eq?: InputMaybe; - yieldETH7Day_not_in?: InputMaybe>; - yieldETHAllTime_eq?: InputMaybe; - yieldETHAllTime_gt?: InputMaybe; - yieldETHAllTime_gte?: InputMaybe; - yieldETHAllTime_in?: InputMaybe>; - yieldETHAllTime_isNull?: InputMaybe; - yieldETHAllTime_lt?: InputMaybe; - yieldETHAllTime_lte?: InputMaybe; - yieldETHAllTime_not_eq?: InputMaybe; - yieldETHAllTime_not_in?: InputMaybe>; - yieldETH_eq?: InputMaybe; - yieldETH_gt?: InputMaybe; - yieldETH_gte?: InputMaybe; - yieldETH_in?: InputMaybe>; - yieldETH_isNull?: InputMaybe; - yieldETH_lt?: InputMaybe; - yieldETH_lte?: InputMaybe; - yieldETH_not_eq?: InputMaybe; - yieldETH_not_in?: InputMaybe>; - yieldUSD7Day_eq?: InputMaybe; - yieldUSD7Day_gt?: InputMaybe; - yieldUSD7Day_gte?: InputMaybe; - yieldUSD7Day_in?: InputMaybe>; - yieldUSD7Day_isNull?: InputMaybe; - yieldUSD7Day_lt?: InputMaybe; - yieldUSD7Day_lte?: InputMaybe; - yieldUSD7Day_not_eq?: InputMaybe; - yieldUSD7Day_not_in?: InputMaybe>; - yieldUSDAllTime_eq?: InputMaybe; - yieldUSDAllTime_gt?: InputMaybe; - yieldUSDAllTime_gte?: InputMaybe; - yieldUSDAllTime_in?: InputMaybe>; - yieldUSDAllTime_isNull?: InputMaybe; - yieldUSDAllTime_lt?: InputMaybe; - yieldUSDAllTime_lte?: InputMaybe; - yieldUSDAllTime_not_eq?: InputMaybe; - yieldUSDAllTime_not_in?: InputMaybe>; - yieldUSD_eq?: InputMaybe; - yieldUSD_gt?: InputMaybe; - yieldUSD_gte?: InputMaybe; - yieldUSD_in?: InputMaybe>; - yieldUSD_isNull?: InputMaybe; - yieldUSD_lt?: InputMaybe; - yieldUSD_lte?: InputMaybe; - yieldUSD_not_eq?: InputMaybe; - yieldUSD_not_in?: InputMaybe>; }; -export type OethDailyStatsConnection = { - __typename?: 'OETHDailyStatsConnection'; - edges: Array; +export type OethCurveLPsConnection = { + __typename?: 'OETHCurveLPsConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export type OethDripper = { - __typename?: 'OETHDripper'; - blockNumber: Scalars['Int']['output']; - dripDuration: Scalars['BigInt']['output']; - dripRatePerBlock: Scalars['BigInt']['output']; - id: Scalars['String']['output']; - lastCollectTimestamp: Scalars['Int']['output']; - timestamp: Scalars['DateTime']['output']; - weth: Scalars['BigInt']['output']; -}; - -export type OethDripperEdge = { - __typename?: 'OETHDripperEdge'; - cursor: Scalars['String']['output']; - node: OethDripper; -}; - -export enum OethDripperOrderByInput { - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - DripDurationAsc = 'dripDuration_ASC', - DripDurationAscNullsFirst = 'dripDuration_ASC_NULLS_FIRST', - DripDurationDesc = 'dripDuration_DESC', - DripDurationDescNullsLast = 'dripDuration_DESC_NULLS_LAST', - DripRatePerBlockAsc = 'dripRatePerBlock_ASC', - DripRatePerBlockAscNullsFirst = 'dripRatePerBlock_ASC_NULLS_FIRST', - DripRatePerBlockDesc = 'dripRatePerBlock_DESC', - DripRatePerBlockDescNullsLast = 'dripRatePerBlock_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - LastCollectTimestampAsc = 'lastCollectTimestamp_ASC', - LastCollectTimestampAscNullsFirst = 'lastCollectTimestamp_ASC_NULLS_FIRST', - LastCollectTimestampDesc = 'lastCollectTimestamp_DESC', - LastCollectTimestampDescNullsLast = 'lastCollectTimestamp_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - WethAsc = 'weth_ASC', - WethAscNullsFirst = 'weth_ASC_NULLS_FIRST', - WethDesc = 'weth_DESC', - WethDescNullsLast = 'weth_DESC_NULLS_LAST' -} - -export type OethDripperWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - dripDuration_eq?: InputMaybe; - dripDuration_gt?: InputMaybe; - dripDuration_gte?: InputMaybe; - dripDuration_in?: InputMaybe>; - dripDuration_isNull?: InputMaybe; - dripDuration_lt?: InputMaybe; - dripDuration_lte?: InputMaybe; - dripDuration_not_eq?: InputMaybe; - dripDuration_not_in?: InputMaybe>; - dripRatePerBlock_eq?: InputMaybe; - dripRatePerBlock_gt?: InputMaybe; - dripRatePerBlock_gte?: InputMaybe; - dripRatePerBlock_in?: InputMaybe>; - dripRatePerBlock_isNull?: InputMaybe; - dripRatePerBlock_lt?: InputMaybe; - dripRatePerBlock_lte?: InputMaybe; - dripRatePerBlock_not_eq?: InputMaybe; - dripRatePerBlock_not_in?: InputMaybe>; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - lastCollectTimestamp_eq?: InputMaybe; - lastCollectTimestamp_gt?: InputMaybe; - lastCollectTimestamp_gte?: InputMaybe; - lastCollectTimestamp_in?: InputMaybe>; - lastCollectTimestamp_isNull?: InputMaybe; - lastCollectTimestamp_lt?: InputMaybe; - lastCollectTimestamp_lte?: InputMaybe; - lastCollectTimestamp_not_eq?: InputMaybe; - lastCollectTimestamp_not_in?: InputMaybe>; - timestamp_eq?: InputMaybe; - timestamp_gt?: InputMaybe; - timestamp_gte?: InputMaybe; - timestamp_in?: InputMaybe>; - timestamp_isNull?: InputMaybe; - timestamp_lt?: InputMaybe; - timestamp_lte?: InputMaybe; - timestamp_not_eq?: InputMaybe; - timestamp_not_in?: InputMaybe>; - weth_eq?: InputMaybe; - weth_gt?: InputMaybe; - weth_gte?: InputMaybe; - weth_in?: InputMaybe>; - weth_isNull?: InputMaybe; - weth_lt?: InputMaybe; - weth_lte?: InputMaybe; - weth_not_eq?: InputMaybe; - weth_not_in?: InputMaybe>; +export type OethDailyStat = { + __typename?: 'OETHDailyStat'; + amoSupply: Scalars['BigInt']['output']; + /** Timestamp of block number stats were updated */ + apr: Scalars['Float']['output']; + apy: Scalars['Float']['output']; + apy7DayAvg: Scalars['Float']['output']; + apy14DayAvg: Scalars['Float']['output']; + apy30DayAvg: Scalars['Float']['output']; + /** Timestamp, eg 2023-10-17 */ + blockNumber: Scalars['Int']['output']; + collateral: Array; + dripperWETH: Scalars['BigInt']['output']; + feesETH: Scalars['BigInt']['output']; + feesETH7Day: Scalars['BigInt']['output']; + feesETHAllTime: Scalars['BigInt']['output']; + feesUSD: Scalars['BigInt']['output']; + feesUSD7Day: Scalars['BigInt']['output']; + feesUSDAllTime: Scalars['BigInt']['output']; + holdersOverThreshold: Scalars['Int']['output']; + id: Scalars['String']['output']; + marketCapUSD: Scalars['Float']['output']; + nonRebasingSupply: Scalars['BigInt']['output']; + pegPrice: Scalars['BigInt']['output']; + rebasingSupply: Scalars['BigInt']['output']; + strategies: Array; + /** Last block number stats were updated */ + timestamp: Scalars['DateTime']['output']; + totalSupply: Scalars['BigInt']['output']; + totalSupplyUSD: Scalars['Float']['output']; + tradingVolumeUSD: Scalars['Float']['output']; + wrappedSupply: Scalars['BigInt']['output']; + yieldETH: Scalars['BigInt']['output']; + yieldETH7Day: Scalars['BigInt']['output']; + yieldETHAllTime: Scalars['BigInt']['output']; + yieldUSD: Scalars['BigInt']['output']; + yieldUSD7Day: Scalars['BigInt']['output']; + yieldUSDAllTime: Scalars['BigInt']['output']; }; -export type OethDrippersConnection = { - __typename?: 'OETHDrippersConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; -export type OethEdge = { - __typename?: 'OETHEdge'; - cursor: Scalars['String']['output']; - node: Oeth; +export type OethDailyStatCollateralArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; }; -export type OethFraxStaking = { - __typename?: 'OETHFraxStaking'; - blockNumber: Scalars['Int']['output']; - id: Scalars['String']['output']; - /** - * - sfrxETH is what's actually stored here, slightly confusing and may want to change. - * - used by balance sheet - */ - sfrxETH: Scalars['BigInt']['output']; - timestamp: Scalars['DateTime']['output']; + +export type OethDailyStatStrategiesArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; }; -export type OethFraxStakingEdge = { - __typename?: 'OETHFraxStakingEdge'; +export type OethDailyStatEdge = { + __typename?: 'OETHDailyStatEdge'; cursor: Scalars['String']['output']; - node: OethFraxStaking; + node: OethDailyStat; }; -export enum OethFraxStakingOrderByInput { +export enum OethDailyStatOrderByInput { + AmoSupplyAsc = 'amoSupply_ASC', + AmoSupplyAscNullsFirst = 'amoSupply_ASC_NULLS_FIRST', + AmoSupplyDesc = 'amoSupply_DESC', + AmoSupplyDescNullsLast = 'amoSupply_DESC_NULLS_LAST', + AprAsc = 'apr_ASC', + AprAscNullsFirst = 'apr_ASC_NULLS_FIRST', + AprDesc = 'apr_DESC', + AprDescNullsLast = 'apr_DESC_NULLS_LAST', + Apy7DayAvgAsc = 'apy7DayAvg_ASC', + Apy7DayAvgAscNullsFirst = 'apy7DayAvg_ASC_NULLS_FIRST', + Apy7DayAvgDesc = 'apy7DayAvg_DESC', + Apy7DayAvgDescNullsLast = 'apy7DayAvg_DESC_NULLS_LAST', + Apy14DayAvgAsc = 'apy14DayAvg_ASC', + Apy14DayAvgAscNullsFirst = 'apy14DayAvg_ASC_NULLS_FIRST', + Apy14DayAvgDesc = 'apy14DayAvg_DESC', + Apy14DayAvgDescNullsLast = 'apy14DayAvg_DESC_NULLS_LAST', + Apy30DayAvgAsc = 'apy30DayAvg_ASC', + Apy30DayAvgAscNullsFirst = 'apy30DayAvg_ASC_NULLS_FIRST', + Apy30DayAvgDesc = 'apy30DayAvg_DESC', + Apy30DayAvgDescNullsLast = 'apy30DayAvg_DESC_NULLS_LAST', + ApyAsc = 'apy_ASC', + ApyAscNullsFirst = 'apy_ASC_NULLS_FIRST', + ApyDesc = 'apy_DESC', + ApyDescNullsLast = 'apy_DESC_NULLS_LAST', BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + DripperWethAsc = 'dripperWETH_ASC', + DripperWethAscNullsFirst = 'dripperWETH_ASC_NULLS_FIRST', + DripperWethDesc = 'dripperWETH_DESC', + DripperWethDescNullsLast = 'dripperWETH_DESC_NULLS_LAST', + FeesEth7DayAsc = 'feesETH7Day_ASC', + FeesEth7DayAscNullsFirst = 'feesETH7Day_ASC_NULLS_FIRST', + FeesEth7DayDesc = 'feesETH7Day_DESC', + FeesEth7DayDescNullsLast = 'feesETH7Day_DESC_NULLS_LAST', + FeesEthAllTimeAsc = 'feesETHAllTime_ASC', + FeesEthAllTimeAscNullsFirst = 'feesETHAllTime_ASC_NULLS_FIRST', + FeesEthAllTimeDesc = 'feesETHAllTime_DESC', + FeesEthAllTimeDescNullsLast = 'feesETHAllTime_DESC_NULLS_LAST', + FeesEthAsc = 'feesETH_ASC', + FeesEthAscNullsFirst = 'feesETH_ASC_NULLS_FIRST', + FeesEthDesc = 'feesETH_DESC', + FeesEthDescNullsLast = 'feesETH_DESC_NULLS_LAST', + FeesUsd7DayAsc = 'feesUSD7Day_ASC', + FeesUsd7DayAscNullsFirst = 'feesUSD7Day_ASC_NULLS_FIRST', + FeesUsd7DayDesc = 'feesUSD7Day_DESC', + FeesUsd7DayDescNullsLast = 'feesUSD7Day_DESC_NULLS_LAST', + FeesUsdAllTimeAsc = 'feesUSDAllTime_ASC', + FeesUsdAllTimeAscNullsFirst = 'feesUSDAllTime_ASC_NULLS_FIRST', + FeesUsdAllTimeDesc = 'feesUSDAllTime_DESC', + FeesUsdAllTimeDescNullsLast = 'feesUSDAllTime_DESC_NULLS_LAST', + FeesUsdAsc = 'feesUSD_ASC', + FeesUsdAscNullsFirst = 'feesUSD_ASC_NULLS_FIRST', + FeesUsdDesc = 'feesUSD_DESC', + FeesUsdDescNullsLast = 'feesUSD_DESC_NULLS_LAST', + HoldersOverThresholdAsc = 'holdersOverThreshold_ASC', + HoldersOverThresholdAscNullsFirst = 'holdersOverThreshold_ASC_NULLS_FIRST', + HoldersOverThresholdDesc = 'holdersOverThreshold_DESC', + HoldersOverThresholdDescNullsLast = 'holdersOverThreshold_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - SfrxEthAsc = 'sfrxETH_ASC', - SfrxEthAscNullsFirst = 'sfrxETH_ASC_NULLS_FIRST', - SfrxEthDesc = 'sfrxETH_DESC', - SfrxEthDescNullsLast = 'sfrxETH_DESC_NULLS_LAST', + MarketCapUsdAsc = 'marketCapUSD_ASC', + MarketCapUsdAscNullsFirst = 'marketCapUSD_ASC_NULLS_FIRST', + MarketCapUsdDesc = 'marketCapUSD_DESC', + MarketCapUsdDescNullsLast = 'marketCapUSD_DESC_NULLS_LAST', + NonRebasingSupplyAsc = 'nonRebasingSupply_ASC', + NonRebasingSupplyAscNullsFirst = 'nonRebasingSupply_ASC_NULLS_FIRST', + NonRebasingSupplyDesc = 'nonRebasingSupply_DESC', + NonRebasingSupplyDescNullsLast = 'nonRebasingSupply_DESC_NULLS_LAST', + PegPriceAsc = 'pegPrice_ASC', + PegPriceAscNullsFirst = 'pegPrice_ASC_NULLS_FIRST', + PegPriceDesc = 'pegPrice_DESC', + PegPriceDescNullsLast = 'pegPrice_DESC_NULLS_LAST', + RebasingSupplyAsc = 'rebasingSupply_ASC', + RebasingSupplyAscNullsFirst = 'rebasingSupply_ASC_NULLS_FIRST', + RebasingSupplyDesc = 'rebasingSupply_DESC', + RebasingSupplyDescNullsLast = 'rebasingSupply_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST' + TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', + TotalSupplyUsdAsc = 'totalSupplyUSD_ASC', + TotalSupplyUsdAscNullsFirst = 'totalSupplyUSD_ASC_NULLS_FIRST', + TotalSupplyUsdDesc = 'totalSupplyUSD_DESC', + TotalSupplyUsdDescNullsLast = 'totalSupplyUSD_DESC_NULLS_LAST', + TotalSupplyAsc = 'totalSupply_ASC', + TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', + TotalSupplyDesc = 'totalSupply_DESC', + TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST', + TradingVolumeUsdAsc = 'tradingVolumeUSD_ASC', + TradingVolumeUsdAscNullsFirst = 'tradingVolumeUSD_ASC_NULLS_FIRST', + TradingVolumeUsdDesc = 'tradingVolumeUSD_DESC', + TradingVolumeUsdDescNullsLast = 'tradingVolumeUSD_DESC_NULLS_LAST', + WrappedSupplyAsc = 'wrappedSupply_ASC', + WrappedSupplyAscNullsFirst = 'wrappedSupply_ASC_NULLS_FIRST', + WrappedSupplyDesc = 'wrappedSupply_DESC', + WrappedSupplyDescNullsLast = 'wrappedSupply_DESC_NULLS_LAST', + YieldEth7DayAsc = 'yieldETH7Day_ASC', + YieldEth7DayAscNullsFirst = 'yieldETH7Day_ASC_NULLS_FIRST', + YieldEth7DayDesc = 'yieldETH7Day_DESC', + YieldEth7DayDescNullsLast = 'yieldETH7Day_DESC_NULLS_LAST', + YieldEthAllTimeAsc = 'yieldETHAllTime_ASC', + YieldEthAllTimeAscNullsFirst = 'yieldETHAllTime_ASC_NULLS_FIRST', + YieldEthAllTimeDesc = 'yieldETHAllTime_DESC', + YieldEthAllTimeDescNullsLast = 'yieldETHAllTime_DESC_NULLS_LAST', + YieldEthAsc = 'yieldETH_ASC', + YieldEthAscNullsFirst = 'yieldETH_ASC_NULLS_FIRST', + YieldEthDesc = 'yieldETH_DESC', + YieldEthDescNullsLast = 'yieldETH_DESC_NULLS_LAST', + YieldUsd7DayAsc = 'yieldUSD7Day_ASC', + YieldUsd7DayAscNullsFirst = 'yieldUSD7Day_ASC_NULLS_FIRST', + YieldUsd7DayDesc = 'yieldUSD7Day_DESC', + YieldUsd7DayDescNullsLast = 'yieldUSD7Day_DESC_NULLS_LAST', + YieldUsdAllTimeAsc = 'yieldUSDAllTime_ASC', + YieldUsdAllTimeAscNullsFirst = 'yieldUSDAllTime_ASC_NULLS_FIRST', + YieldUsdAllTimeDesc = 'yieldUSDAllTime_DESC', + YieldUsdAllTimeDescNullsLast = 'yieldUSDAllTime_DESC_NULLS_LAST', + YieldUsdAsc = 'yieldUSD_ASC', + YieldUsdAscNullsFirst = 'yieldUSD_ASC_NULLS_FIRST', + YieldUsdDesc = 'yieldUSD_DESC', + YieldUsdDescNullsLast = 'yieldUSD_DESC_NULLS_LAST' } -export type OethFraxStakingWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OethDailyStatWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + amoSupply_eq?: InputMaybe; + amoSupply_gt?: InputMaybe; + amoSupply_gte?: InputMaybe; + amoSupply_in?: InputMaybe>; + amoSupply_isNull?: InputMaybe; + amoSupply_lt?: InputMaybe; + amoSupply_lte?: InputMaybe; + amoSupply_not_eq?: InputMaybe; + amoSupply_not_in?: InputMaybe>; + apr_eq?: InputMaybe; + apr_gt?: InputMaybe; + apr_gte?: InputMaybe; + apr_in?: InputMaybe>; + apr_isNull?: InputMaybe; + apr_lt?: InputMaybe; + apr_lte?: InputMaybe; + apr_not_eq?: InputMaybe; + apr_not_in?: InputMaybe>; + apy7DayAvg_eq?: InputMaybe; + apy7DayAvg_gt?: InputMaybe; + apy7DayAvg_gte?: InputMaybe; + apy7DayAvg_in?: InputMaybe>; + apy7DayAvg_isNull?: InputMaybe; + apy7DayAvg_lt?: InputMaybe; + apy7DayAvg_lte?: InputMaybe; + apy7DayAvg_not_eq?: InputMaybe; + apy7DayAvg_not_in?: InputMaybe>; + apy14DayAvg_eq?: InputMaybe; + apy14DayAvg_gt?: InputMaybe; + apy14DayAvg_gte?: InputMaybe; + apy14DayAvg_in?: InputMaybe>; + apy14DayAvg_isNull?: InputMaybe; + apy14DayAvg_lt?: InputMaybe; + apy14DayAvg_lte?: InputMaybe; + apy14DayAvg_not_eq?: InputMaybe; + apy14DayAvg_not_in?: InputMaybe>; + apy30DayAvg_eq?: InputMaybe; + apy30DayAvg_gt?: InputMaybe; + apy30DayAvg_gte?: InputMaybe; + apy30DayAvg_in?: InputMaybe>; + apy30DayAvg_isNull?: InputMaybe; + apy30DayAvg_lt?: InputMaybe; + apy30DayAvg_lte?: InputMaybe; + apy30DayAvg_not_eq?: InputMaybe; + apy30DayAvg_not_in?: InputMaybe>; + apy_eq?: InputMaybe; + apy_gt?: InputMaybe; + apy_gte?: InputMaybe; + apy_in?: InputMaybe>; + apy_isNull?: InputMaybe; + apy_lt?: InputMaybe; + apy_lte?: InputMaybe; + apy_not_eq?: InputMaybe; + apy_not_in?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -4878,6 +3747,81 @@ export type OethFraxStakingWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; + collateral_every?: InputMaybe; + collateral_none?: InputMaybe; + collateral_some?: InputMaybe; + dripperWETH_eq?: InputMaybe; + dripperWETH_gt?: InputMaybe; + dripperWETH_gte?: InputMaybe; + dripperWETH_in?: InputMaybe>; + dripperWETH_isNull?: InputMaybe; + dripperWETH_lt?: InputMaybe; + dripperWETH_lte?: InputMaybe; + dripperWETH_not_eq?: InputMaybe; + dripperWETH_not_in?: InputMaybe>; + feesETH7Day_eq?: InputMaybe; + feesETH7Day_gt?: InputMaybe; + feesETH7Day_gte?: InputMaybe; + feesETH7Day_in?: InputMaybe>; + feesETH7Day_isNull?: InputMaybe; + feesETH7Day_lt?: InputMaybe; + feesETH7Day_lte?: InputMaybe; + feesETH7Day_not_eq?: InputMaybe; + feesETH7Day_not_in?: InputMaybe>; + feesETHAllTime_eq?: InputMaybe; + feesETHAllTime_gt?: InputMaybe; + feesETHAllTime_gte?: InputMaybe; + feesETHAllTime_in?: InputMaybe>; + feesETHAllTime_isNull?: InputMaybe; + feesETHAllTime_lt?: InputMaybe; + feesETHAllTime_lte?: InputMaybe; + feesETHAllTime_not_eq?: InputMaybe; + feesETHAllTime_not_in?: InputMaybe>; + feesETH_eq?: InputMaybe; + feesETH_gt?: InputMaybe; + feesETH_gte?: InputMaybe; + feesETH_in?: InputMaybe>; + feesETH_isNull?: InputMaybe; + feesETH_lt?: InputMaybe; + feesETH_lte?: InputMaybe; + feesETH_not_eq?: InputMaybe; + feesETH_not_in?: InputMaybe>; + feesUSD7Day_eq?: InputMaybe; + feesUSD7Day_gt?: InputMaybe; + feesUSD7Day_gte?: InputMaybe; + feesUSD7Day_in?: InputMaybe>; + feesUSD7Day_isNull?: InputMaybe; + feesUSD7Day_lt?: InputMaybe; + feesUSD7Day_lte?: InputMaybe; + feesUSD7Day_not_eq?: InputMaybe; + feesUSD7Day_not_in?: InputMaybe>; + feesUSDAllTime_eq?: InputMaybe; + feesUSDAllTime_gt?: InputMaybe; + feesUSDAllTime_gte?: InputMaybe; + feesUSDAllTime_in?: InputMaybe>; + feesUSDAllTime_isNull?: InputMaybe; + feesUSDAllTime_lt?: InputMaybe; + feesUSDAllTime_lte?: InputMaybe; + feesUSDAllTime_not_eq?: InputMaybe; + feesUSDAllTime_not_in?: InputMaybe>; + feesUSD_eq?: InputMaybe; + feesUSD_gt?: InputMaybe; + feesUSD_gte?: InputMaybe; + feesUSD_in?: InputMaybe>; + feesUSD_isNull?: InputMaybe; + feesUSD_lt?: InputMaybe; + feesUSD_lte?: InputMaybe; + feesUSD_not_eq?: InputMaybe; + feesUSD_not_in?: InputMaybe>; + holdersOverThreshold_eq?: InputMaybe; + holdersOverThreshold_gt?: InputMaybe; + holdersOverThreshold_gte?: InputMaybe; + holdersOverThreshold_in?: InputMaybe>; + holdersOverThreshold_isNull?: InputMaybe; + holdersOverThreshold_lt?: InputMaybe; + holdersOverThreshold_lte?: InputMaybe; + holdersOverThreshold_not_eq?: InputMaybe; + holdersOverThreshold_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -4895,15 +3839,45 @@ export type OethFraxStakingWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - sfrxETH_eq?: InputMaybe; - sfrxETH_gt?: InputMaybe; - sfrxETH_gte?: InputMaybe; - sfrxETH_in?: InputMaybe>; - sfrxETH_isNull?: InputMaybe; - sfrxETH_lt?: InputMaybe; - sfrxETH_lte?: InputMaybe; - sfrxETH_not_eq?: InputMaybe; - sfrxETH_not_in?: InputMaybe>; + marketCapUSD_eq?: InputMaybe; + marketCapUSD_gt?: InputMaybe; + marketCapUSD_gte?: InputMaybe; + marketCapUSD_in?: InputMaybe>; + marketCapUSD_isNull?: InputMaybe; + marketCapUSD_lt?: InputMaybe; + marketCapUSD_lte?: InputMaybe; + marketCapUSD_not_eq?: InputMaybe; + marketCapUSD_not_in?: InputMaybe>; + nonRebasingSupply_eq?: InputMaybe; + nonRebasingSupply_gt?: InputMaybe; + nonRebasingSupply_gte?: InputMaybe; + nonRebasingSupply_in?: InputMaybe>; + nonRebasingSupply_isNull?: InputMaybe; + nonRebasingSupply_lt?: InputMaybe; + nonRebasingSupply_lte?: InputMaybe; + nonRebasingSupply_not_eq?: InputMaybe; + nonRebasingSupply_not_in?: InputMaybe>; + pegPrice_eq?: InputMaybe; + pegPrice_gt?: InputMaybe; + pegPrice_gte?: InputMaybe; + pegPrice_in?: InputMaybe>; + pegPrice_isNull?: InputMaybe; + pegPrice_lt?: InputMaybe; + pegPrice_lte?: InputMaybe; + pegPrice_not_eq?: InputMaybe; + pegPrice_not_in?: InputMaybe>; + rebasingSupply_eq?: InputMaybe; + rebasingSupply_gt?: InputMaybe; + rebasingSupply_gte?: InputMaybe; + rebasingSupply_in?: InputMaybe>; + rebasingSupply_isNull?: InputMaybe; + rebasingSupply_lt?: InputMaybe; + rebasingSupply_lte?: InputMaybe; + rebasingSupply_not_eq?: InputMaybe; + rebasingSupply_not_in?: InputMaybe>; + strategies_every?: InputMaybe; + strategies_none?: InputMaybe; + strategies_some?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -4913,205 +3887,143 @@ export type OethFraxStakingWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; -}; - -export type OethFraxStakingsConnection = { - __typename?: 'OETHFraxStakingsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OethHistoriesConnection = { - __typename?: 'OETHHistoriesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -/** The History entity tracks events that change the balance of OETH for an address. */ -export type OethHistory = { - __typename?: 'OETHHistory'; - address: OethAddress; - balance: Scalars['BigInt']['output']; - blockNumber: Scalars['Int']['output']; - id: Scalars['String']['output']; - timestamp: Scalars['DateTime']['output']; - txHash: Scalars['String']['output']; - type: HistoryType; - value: Scalars['BigInt']['output']; -}; - -export type OethHistoryEdge = { - __typename?: 'OETHHistoryEdge'; - cursor: Scalars['String']['output']; - node: OethHistory; -}; - -export enum OethHistoryOrderByInput { - AddressBalanceAsc = 'address_balance_ASC', - AddressBalanceAscNullsFirst = 'address_balance_ASC_NULLS_FIRST', - AddressBalanceDesc = 'address_balance_DESC', - AddressBalanceDescNullsLast = 'address_balance_DESC_NULLS_LAST', - AddressCreditsAsc = 'address_credits_ASC', - AddressCreditsAscNullsFirst = 'address_credits_ASC_NULLS_FIRST', - AddressCreditsDesc = 'address_credits_DESC', - AddressCreditsDescNullsLast = 'address_credits_DESC_NULLS_LAST', - AddressEarnedAsc = 'address_earned_ASC', - AddressEarnedAscNullsFirst = 'address_earned_ASC_NULLS_FIRST', - AddressEarnedDesc = 'address_earned_DESC', - AddressEarnedDescNullsLast = 'address_earned_DESC_NULLS_LAST', - AddressIdAsc = 'address_id_ASC', - AddressIdAscNullsFirst = 'address_id_ASC_NULLS_FIRST', - AddressIdDesc = 'address_id_DESC', - AddressIdDescNullsLast = 'address_id_DESC_NULLS_LAST', - AddressIsContractAsc = 'address_isContract_ASC', - AddressIsContractAscNullsFirst = 'address_isContract_ASC_NULLS_FIRST', - AddressIsContractDesc = 'address_isContract_DESC', - AddressIsContractDescNullsLast = 'address_isContract_DESC_NULLS_LAST', - AddressLastUpdatedAsc = 'address_lastUpdated_ASC', - AddressLastUpdatedAscNullsFirst = 'address_lastUpdated_ASC_NULLS_FIRST', - AddressLastUpdatedDesc = 'address_lastUpdated_DESC', - AddressLastUpdatedDescNullsLast = 'address_lastUpdated_DESC_NULLS_LAST', - AddressRebasingOptionAsc = 'address_rebasingOption_ASC', - AddressRebasingOptionAscNullsFirst = 'address_rebasingOption_ASC_NULLS_FIRST', - AddressRebasingOptionDesc = 'address_rebasingOption_DESC', - AddressRebasingOptionDescNullsLast = 'address_rebasingOption_DESC_NULLS_LAST', - BalanceAsc = 'balance_ASC', - BalanceAscNullsFirst = 'balance_ASC_NULLS_FIRST', - BalanceDesc = 'balance_DESC', - BalanceDescNullsLast = 'balance_DESC_NULLS_LAST', - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TxHashAsc = 'txHash_ASC', - TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', - TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST', - TypeAsc = 'type_ASC', - TypeAscNullsFirst = 'type_ASC_NULLS_FIRST', - TypeDesc = 'type_DESC', - TypeDescNullsLast = 'type_DESC_NULLS_LAST', - ValueAsc = 'value_ASC', - ValueAscNullsFirst = 'value_ASC_NULLS_FIRST', - ValueDesc = 'value_DESC', - ValueDescNullsLast = 'value_DESC_NULLS_LAST' -} + totalSupplyUSD_eq?: InputMaybe; + totalSupplyUSD_gt?: InputMaybe; + totalSupplyUSD_gte?: InputMaybe; + totalSupplyUSD_in?: InputMaybe>; + totalSupplyUSD_isNull?: InputMaybe; + totalSupplyUSD_lt?: InputMaybe; + totalSupplyUSD_lte?: InputMaybe; + totalSupplyUSD_not_eq?: InputMaybe; + totalSupplyUSD_not_in?: InputMaybe>; + totalSupply_eq?: InputMaybe; + totalSupply_gt?: InputMaybe; + totalSupply_gte?: InputMaybe; + totalSupply_in?: InputMaybe>; + totalSupply_isNull?: InputMaybe; + totalSupply_lt?: InputMaybe; + totalSupply_lte?: InputMaybe; + totalSupply_not_eq?: InputMaybe; + totalSupply_not_in?: InputMaybe>; + tradingVolumeUSD_eq?: InputMaybe; + tradingVolumeUSD_gt?: InputMaybe; + tradingVolumeUSD_gte?: InputMaybe; + tradingVolumeUSD_in?: InputMaybe>; + tradingVolumeUSD_isNull?: InputMaybe; + tradingVolumeUSD_lt?: InputMaybe; + tradingVolumeUSD_lte?: InputMaybe; + tradingVolumeUSD_not_eq?: InputMaybe; + tradingVolumeUSD_not_in?: InputMaybe>; + wrappedSupply_eq?: InputMaybe; + wrappedSupply_gt?: InputMaybe; + wrappedSupply_gte?: InputMaybe; + wrappedSupply_in?: InputMaybe>; + wrappedSupply_isNull?: InputMaybe; + wrappedSupply_lt?: InputMaybe; + wrappedSupply_lte?: InputMaybe; + wrappedSupply_not_eq?: InputMaybe; + wrappedSupply_not_in?: InputMaybe>; + yieldETH7Day_eq?: InputMaybe; + yieldETH7Day_gt?: InputMaybe; + yieldETH7Day_gte?: InputMaybe; + yieldETH7Day_in?: InputMaybe>; + yieldETH7Day_isNull?: InputMaybe; + yieldETH7Day_lt?: InputMaybe; + yieldETH7Day_lte?: InputMaybe; + yieldETH7Day_not_eq?: InputMaybe; + yieldETH7Day_not_in?: InputMaybe>; + yieldETHAllTime_eq?: InputMaybe; + yieldETHAllTime_gt?: InputMaybe; + yieldETHAllTime_gte?: InputMaybe; + yieldETHAllTime_in?: InputMaybe>; + yieldETHAllTime_isNull?: InputMaybe; + yieldETHAllTime_lt?: InputMaybe; + yieldETHAllTime_lte?: InputMaybe; + yieldETHAllTime_not_eq?: InputMaybe; + yieldETHAllTime_not_in?: InputMaybe>; + yieldETH_eq?: InputMaybe; + yieldETH_gt?: InputMaybe; + yieldETH_gte?: InputMaybe; + yieldETH_in?: InputMaybe>; + yieldETH_isNull?: InputMaybe; + yieldETH_lt?: InputMaybe; + yieldETH_lte?: InputMaybe; + yieldETH_not_eq?: InputMaybe; + yieldETH_not_in?: InputMaybe>; + yieldUSD7Day_eq?: InputMaybe; + yieldUSD7Day_gt?: InputMaybe; + yieldUSD7Day_gte?: InputMaybe; + yieldUSD7Day_in?: InputMaybe>; + yieldUSD7Day_isNull?: InputMaybe; + yieldUSD7Day_lt?: InputMaybe; + yieldUSD7Day_lte?: InputMaybe; + yieldUSD7Day_not_eq?: InputMaybe; + yieldUSD7Day_not_in?: InputMaybe>; + yieldUSDAllTime_eq?: InputMaybe; + yieldUSDAllTime_gt?: InputMaybe; + yieldUSDAllTime_gte?: InputMaybe; + yieldUSDAllTime_in?: InputMaybe>; + yieldUSDAllTime_isNull?: InputMaybe; + yieldUSDAllTime_lt?: InputMaybe; + yieldUSDAllTime_lte?: InputMaybe; + yieldUSDAllTime_not_eq?: InputMaybe; + yieldUSDAllTime_not_in?: InputMaybe>; + yieldUSD_eq?: InputMaybe; + yieldUSD_gt?: InputMaybe; + yieldUSD_gte?: InputMaybe; + yieldUSD_in?: InputMaybe>; + yieldUSD_isNull?: InputMaybe; + yieldUSD_lt?: InputMaybe; + yieldUSD_lte?: InputMaybe; + yieldUSD_not_eq?: InputMaybe; + yieldUSD_not_in?: InputMaybe>; +}; -export type OethHistoryWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - address?: InputMaybe; - address_isNull?: InputMaybe; - balance_eq?: InputMaybe; - balance_gt?: InputMaybe; - balance_gte?: InputMaybe; - balance_in?: InputMaybe>; - balance_isNull?: InputMaybe; - balance_lt?: InputMaybe; - balance_lte?: InputMaybe; - balance_not_eq?: InputMaybe; - balance_not_in?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - timestamp_eq?: InputMaybe; - timestamp_gt?: InputMaybe; - timestamp_gte?: InputMaybe; - timestamp_in?: InputMaybe>; - timestamp_isNull?: InputMaybe; - timestamp_lt?: InputMaybe; - timestamp_lte?: InputMaybe; - timestamp_not_eq?: InputMaybe; - timestamp_not_in?: InputMaybe>; - txHash_contains?: InputMaybe; - txHash_containsInsensitive?: InputMaybe; - txHash_endsWith?: InputMaybe; - txHash_eq?: InputMaybe; - txHash_gt?: InputMaybe; - txHash_gte?: InputMaybe; - txHash_in?: InputMaybe>; - txHash_isNull?: InputMaybe; - txHash_lt?: InputMaybe; - txHash_lte?: InputMaybe; - txHash_not_contains?: InputMaybe; - txHash_not_containsInsensitive?: InputMaybe; - txHash_not_endsWith?: InputMaybe; - txHash_not_eq?: InputMaybe; - txHash_not_in?: InputMaybe>; - txHash_not_startsWith?: InputMaybe; - txHash_startsWith?: InputMaybe; - type_eq?: InputMaybe; - type_in?: InputMaybe>; - type_isNull?: InputMaybe; - type_not_eq?: InputMaybe; - type_not_in?: InputMaybe>; - value_eq?: InputMaybe; - value_gt?: InputMaybe; - value_gte?: InputMaybe; - value_in?: InputMaybe>; - value_isNull?: InputMaybe; - value_lt?: InputMaybe; - value_lte?: InputMaybe; - value_not_eq?: InputMaybe; - value_not_in?: InputMaybe>; +export type OethDailyStatsConnection = { + __typename?: 'OETHDailyStatsConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; }; -export type OethMorphoAave = { - __typename?: 'OETHMorphoAave'; +export type OethDripper = { + __typename?: 'OETHDripper'; blockNumber: Scalars['Int']['output']; + dripDuration: Scalars['BigInt']['output']; + dripRatePerBlock: Scalars['BigInt']['output']; id: Scalars['String']['output']; + lastCollectTimestamp: Scalars['Int']['output']; timestamp: Scalars['DateTime']['output']; weth: Scalars['BigInt']['output']; }; -export type OethMorphoAaveEdge = { - __typename?: 'OETHMorphoAaveEdge'; +export type OethDripperEdge = { + __typename?: 'OETHDripperEdge'; cursor: Scalars['String']['output']; - node: OethMorphoAave; + node: OethDripper; }; -export enum OethMorphoAaveOrderByInput { +export enum OethDripperOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + DripDurationAsc = 'dripDuration_ASC', + DripDurationAscNullsFirst = 'dripDuration_ASC_NULLS_FIRST', + DripDurationDesc = 'dripDuration_DESC', + DripDurationDescNullsLast = 'dripDuration_DESC_NULLS_LAST', + DripRatePerBlockAsc = 'dripRatePerBlock_ASC', + DripRatePerBlockAscNullsFirst = 'dripRatePerBlock_ASC_NULLS_FIRST', + DripRatePerBlockDesc = 'dripRatePerBlock_DESC', + DripRatePerBlockDescNullsLast = 'dripRatePerBlock_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', + LastCollectTimestampAsc = 'lastCollectTimestamp_ASC', + LastCollectTimestampAscNullsFirst = 'lastCollectTimestamp_ASC_NULLS_FIRST', + LastCollectTimestampDesc = 'lastCollectTimestamp_DESC', + LastCollectTimestampDescNullsLast = 'lastCollectTimestamp_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', @@ -5122,9 +4034,9 @@ export enum OethMorphoAaveOrderByInput { WethDescNullsLast = 'weth_DESC_NULLS_LAST' } -export type OethMorphoAaveWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OethDripperWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -5134,6 +4046,24 @@ export type OethMorphoAaveWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; + dripDuration_eq?: InputMaybe; + dripDuration_gt?: InputMaybe; + dripDuration_gte?: InputMaybe; + dripDuration_in?: InputMaybe>; + dripDuration_isNull?: InputMaybe; + dripDuration_lt?: InputMaybe; + dripDuration_lte?: InputMaybe; + dripDuration_not_eq?: InputMaybe; + dripDuration_not_in?: InputMaybe>; + dripRatePerBlock_eq?: InputMaybe; + dripRatePerBlock_gt?: InputMaybe; + dripRatePerBlock_gte?: InputMaybe; + dripRatePerBlock_in?: InputMaybe>; + dripRatePerBlock_isNull?: InputMaybe; + dripRatePerBlock_lt?: InputMaybe; + dripRatePerBlock_lte?: InputMaybe; + dripRatePerBlock_not_eq?: InputMaybe; + dripRatePerBlock_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -5151,6 +4081,15 @@ export type OethMorphoAaveWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; + lastCollectTimestamp_eq?: InputMaybe; + lastCollectTimestamp_gt?: InputMaybe; + lastCollectTimestamp_gte?: InputMaybe; + lastCollectTimestamp_in?: InputMaybe>; + lastCollectTimestamp_isNull?: InputMaybe; + lastCollectTimestamp_lt?: InputMaybe; + lastCollectTimestamp_lte?: InputMaybe; + lastCollectTimestamp_not_eq?: InputMaybe; + lastCollectTimestamp_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -5171,109 +4110,32 @@ export type OethMorphoAaveWhereInput = { weth_not_in?: InputMaybe>; }; -export type OethMorphoAavesConnection = { - __typename?: 'OETHMorphoAavesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export enum OethOrderByInput { - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - NonRebasingSupplyAsc = 'nonRebasingSupply_ASC', - NonRebasingSupplyAscNullsFirst = 'nonRebasingSupply_ASC_NULLS_FIRST', - NonRebasingSupplyDesc = 'nonRebasingSupply_DESC', - NonRebasingSupplyDescNullsLast = 'nonRebasingSupply_DESC_NULLS_LAST', - RebasingSupplyAsc = 'rebasingSupply_ASC', - RebasingSupplyAscNullsFirst = 'rebasingSupply_ASC_NULLS_FIRST', - RebasingSupplyDesc = 'rebasingSupply_DESC', - RebasingSupplyDescNullsLast = 'rebasingSupply_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TotalSupplyAsc = 'totalSupply_ASC', - TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', - TotalSupplyDesc = 'totalSupply_DESC', - TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST' -} - -/** The Rebase entity tracks historical rebase events on the OETH contract. */ -export type OethRebase = { - __typename?: 'OETHRebase'; - apy: Oethapy; - blockNumber: Scalars['Int']['output']; - feeETH: Scalars['BigInt']['output']; - feeUSD: Scalars['BigInt']['output']; - id: Scalars['String']['output']; - rebasingCredits: Scalars['BigInt']['output']; - rebasingCreditsPerToken: Scalars['BigInt']['output']; - timestamp: Scalars['DateTime']['output']; - totalSupply: Scalars['BigInt']['output']; - txHash: Scalars['String']['output']; - yieldETH: Scalars['BigInt']['output']; - yieldUSD: Scalars['BigInt']['output']; -}; - -export type OethRebaseEdge = { - __typename?: 'OETHRebaseEdge'; - cursor: Scalars['String']['output']; - node: OethRebase; -}; - -/** The RebaseOption entity tracks historical rebase option changes by address. */ -export type OethRebaseOption = { - __typename?: 'OETHRebaseOption'; - address: OethAddress; - blockNumber: Scalars['Int']['output']; - id: Scalars['String']['output']; - status: RebasingOption; - timestamp: Scalars['DateTime']['output']; - txHash: Scalars['String']['output']; -}; - -export type OethRebaseOptionEdge = { - __typename?: 'OETHRebaseOptionEdge'; - cursor: Scalars['String']['output']; - node: OethRebaseOption; -}; - -export enum OethRebaseOptionOrderByInput { - AddressBalanceAsc = 'address_balance_ASC', - AddressBalanceAscNullsFirst = 'address_balance_ASC_NULLS_FIRST', - AddressBalanceDesc = 'address_balance_DESC', - AddressBalanceDescNullsLast = 'address_balance_DESC_NULLS_LAST', - AddressCreditsAsc = 'address_credits_ASC', - AddressCreditsAscNullsFirst = 'address_credits_ASC_NULLS_FIRST', - AddressCreditsDesc = 'address_credits_DESC', - AddressCreditsDescNullsLast = 'address_credits_DESC_NULLS_LAST', - AddressEarnedAsc = 'address_earned_ASC', - AddressEarnedAscNullsFirst = 'address_earned_ASC_NULLS_FIRST', - AddressEarnedDesc = 'address_earned_DESC', - AddressEarnedDescNullsLast = 'address_earned_DESC_NULLS_LAST', - AddressIdAsc = 'address_id_ASC', - AddressIdAscNullsFirst = 'address_id_ASC_NULLS_FIRST', - AddressIdDesc = 'address_id_DESC', - AddressIdDescNullsLast = 'address_id_DESC_NULLS_LAST', - AddressIsContractAsc = 'address_isContract_ASC', - AddressIsContractAscNullsFirst = 'address_isContract_ASC_NULLS_FIRST', - AddressIsContractDesc = 'address_isContract_DESC', - AddressIsContractDescNullsLast = 'address_isContract_DESC_NULLS_LAST', - AddressLastUpdatedAsc = 'address_lastUpdated_ASC', - AddressLastUpdatedAscNullsFirst = 'address_lastUpdated_ASC_NULLS_FIRST', - AddressLastUpdatedDesc = 'address_lastUpdated_DESC', - AddressLastUpdatedDescNullsLast = 'address_lastUpdated_DESC_NULLS_LAST', - AddressRebasingOptionAsc = 'address_rebasingOption_ASC', - AddressRebasingOptionAscNullsFirst = 'address_rebasingOption_ASC_NULLS_FIRST', - AddressRebasingOptionDesc = 'address_rebasingOption_DESC', - AddressRebasingOptionDescNullsLast = 'address_rebasingOption_DESC_NULLS_LAST', +export type OethDrippersConnection = { + __typename?: 'OETHDrippersConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; +}; + +export type OethFraxStaking = { + __typename?: 'OETHFraxStaking'; + blockNumber: Scalars['Int']['output']; + id: Scalars['String']['output']; + /** + * - sfrxETH is what's actually stored here, slightly confusing and may want to change. + * - used by balance sheet + */ + sfrxETH: Scalars['BigInt']['output']; + timestamp: Scalars['DateTime']['output']; +}; + +export type OethFraxStakingEdge = { + __typename?: 'OETHFraxStakingEdge'; + cursor: Scalars['String']['output']; + node: OethFraxStaking; +}; + +export enum OethFraxStakingOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', @@ -5282,25 +4144,19 @@ export enum OethRebaseOptionOrderByInput { IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - StatusAsc = 'status_ASC', - StatusAscNullsFirst = 'status_ASC_NULLS_FIRST', - StatusDesc = 'status_DESC', - StatusDescNullsLast = 'status_DESC_NULLS_LAST', + SfrxEthAsc = 'sfrxETH_ASC', + SfrxEthAscNullsFirst = 'sfrxETH_ASC_NULLS_FIRST', + SfrxEthDesc = 'sfrxETH_DESC', + SfrxEthDescNullsLast = 'sfrxETH_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TxHashAsc = 'txHash_ASC', - TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', - TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST' + TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST' } -export type OethRebaseOptionWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - address?: InputMaybe; - address_isNull?: InputMaybe; +export type OethFraxStakingWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -5327,11 +4183,15 @@ export type OethRebaseOptionWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - status_eq?: InputMaybe; - status_in?: InputMaybe>; - status_isNull?: InputMaybe; - status_not_eq?: InputMaybe; - status_not_in?: InputMaybe>; + sfrxETH_eq?: InputMaybe; + sfrxETH_gt?: InputMaybe; + sfrxETH_gte?: InputMaybe; + sfrxETH_in?: InputMaybe>; + sfrxETH_isNull?: InputMaybe; + sfrxETH_lt?: InputMaybe; + sfrxETH_lte?: InputMaybe; + sfrxETH_not_eq?: InputMaybe; + sfrxETH_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -5341,124 +4201,51 @@ export type OethRebaseOptionWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - txHash_contains?: InputMaybe; - txHash_containsInsensitive?: InputMaybe; - txHash_endsWith?: InputMaybe; - txHash_eq?: InputMaybe; - txHash_gt?: InputMaybe; - txHash_gte?: InputMaybe; - txHash_in?: InputMaybe>; - txHash_isNull?: InputMaybe; - txHash_lt?: InputMaybe; - txHash_lte?: InputMaybe; - txHash_not_contains?: InputMaybe; - txHash_not_containsInsensitive?: InputMaybe; - txHash_not_endsWith?: InputMaybe; - txHash_not_eq?: InputMaybe; - txHash_not_in?: InputMaybe>; - txHash_not_startsWith?: InputMaybe; - txHash_startsWith?: InputMaybe; }; -export type OethRebaseOptionsConnection = { - __typename?: 'OETHRebaseOptionsConnection'; - edges: Array; +export type OethFraxStakingsConnection = { + __typename?: 'OETHFraxStakingsConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export enum OethRebaseOrderByInput { - ApyAprAsc = 'apy_apr_ASC', - ApyAprAscNullsFirst = 'apy_apr_ASC_NULLS_FIRST', - ApyAprDesc = 'apy_apr_DESC', - ApyAprDescNullsLast = 'apy_apr_DESC_NULLS_LAST', - ApyApy7DayAvgAsc = 'apy_apy7DayAvg_ASC', - ApyApy7DayAvgAscNullsFirst = 'apy_apy7DayAvg_ASC_NULLS_FIRST', - ApyApy7DayAvgDesc = 'apy_apy7DayAvg_DESC', - ApyApy7DayAvgDescNullsLast = 'apy_apy7DayAvg_DESC_NULLS_LAST', - ApyApy14DayAvgAsc = 'apy_apy14DayAvg_ASC', - ApyApy14DayAvgAscNullsFirst = 'apy_apy14DayAvg_ASC_NULLS_FIRST', - ApyApy14DayAvgDesc = 'apy_apy14DayAvg_DESC', - ApyApy14DayAvgDescNullsLast = 'apy_apy14DayAvg_DESC_NULLS_LAST', - ApyApy30DayAvgAsc = 'apy_apy30DayAvg_ASC', - ApyApy30DayAvgAscNullsFirst = 'apy_apy30DayAvg_ASC_NULLS_FIRST', - ApyApy30DayAvgDesc = 'apy_apy30DayAvg_DESC', - ApyApy30DayAvgDescNullsLast = 'apy_apy30DayAvg_DESC_NULLS_LAST', - ApyApyAsc = 'apy_apy_ASC', - ApyApyAscNullsFirst = 'apy_apy_ASC_NULLS_FIRST', - ApyApyDesc = 'apy_apy_DESC', - ApyApyDescNullsLast = 'apy_apy_DESC_NULLS_LAST', - ApyBlockNumberAsc = 'apy_blockNumber_ASC', - ApyBlockNumberAscNullsFirst = 'apy_blockNumber_ASC_NULLS_FIRST', - ApyBlockNumberDesc = 'apy_blockNumber_DESC', - ApyBlockNumberDescNullsLast = 'apy_blockNumber_DESC_NULLS_LAST', - ApyIdAsc = 'apy_id_ASC', - ApyIdAscNullsFirst = 'apy_id_ASC_NULLS_FIRST', - ApyIdDesc = 'apy_id_DESC', - ApyIdDescNullsLast = 'apy_id_DESC_NULLS_LAST', - ApyRebasingCreditsPerTokenAsc = 'apy_rebasingCreditsPerToken_ASC', - ApyRebasingCreditsPerTokenAscNullsFirst = 'apy_rebasingCreditsPerToken_ASC_NULLS_FIRST', - ApyRebasingCreditsPerTokenDesc = 'apy_rebasingCreditsPerToken_DESC', - ApyRebasingCreditsPerTokenDescNullsLast = 'apy_rebasingCreditsPerToken_DESC_NULLS_LAST', - ApyTimestampAsc = 'apy_timestamp_ASC', - ApyTimestampAscNullsFirst = 'apy_timestamp_ASC_NULLS_FIRST', - ApyTimestampDesc = 'apy_timestamp_DESC', - ApyTimestampDescNullsLast = 'apy_timestamp_DESC_NULLS_LAST', - ApyTxHashAsc = 'apy_txHash_ASC', - ApyTxHashAscNullsFirst = 'apy_txHash_ASC_NULLS_FIRST', - ApyTxHashDesc = 'apy_txHash_DESC', - ApyTxHashDescNullsLast = 'apy_txHash_DESC_NULLS_LAST', +export type OethMorphoAave = { + __typename?: 'OETHMorphoAave'; + blockNumber: Scalars['Int']['output']; + id: Scalars['String']['output']; + timestamp: Scalars['DateTime']['output']; + weth: Scalars['BigInt']['output']; +}; + +export type OethMorphoAaveEdge = { + __typename?: 'OETHMorphoAaveEdge'; + cursor: Scalars['String']['output']; + node: OethMorphoAave; +}; + +export enum OethMorphoAaveOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - FeeEthAsc = 'feeETH_ASC', - FeeEthAscNullsFirst = 'feeETH_ASC_NULLS_FIRST', - FeeEthDesc = 'feeETH_DESC', - FeeEthDescNullsLast = 'feeETH_DESC_NULLS_LAST', - FeeUsdAsc = 'feeUSD_ASC', - FeeUsdAscNullsFirst = 'feeUSD_ASC_NULLS_FIRST', - FeeUsdDesc = 'feeUSD_DESC', - FeeUsdDescNullsLast = 'feeUSD_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - RebasingCreditsPerTokenAsc = 'rebasingCreditsPerToken_ASC', - RebasingCreditsPerTokenAscNullsFirst = 'rebasingCreditsPerToken_ASC_NULLS_FIRST', - RebasingCreditsPerTokenDesc = 'rebasingCreditsPerToken_DESC', - RebasingCreditsPerTokenDescNullsLast = 'rebasingCreditsPerToken_DESC_NULLS_LAST', - RebasingCreditsAsc = 'rebasingCredits_ASC', - RebasingCreditsAscNullsFirst = 'rebasingCredits_ASC_NULLS_FIRST', - RebasingCreditsDesc = 'rebasingCredits_DESC', - RebasingCreditsDescNullsLast = 'rebasingCredits_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TotalSupplyAsc = 'totalSupply_ASC', - TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', - TotalSupplyDesc = 'totalSupply_DESC', - TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST', - TxHashAsc = 'txHash_ASC', - TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', - TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST', - YieldEthAsc = 'yieldETH_ASC', - YieldEthAscNullsFirst = 'yieldETH_ASC_NULLS_FIRST', - YieldEthDesc = 'yieldETH_DESC', - YieldEthDescNullsLast = 'yieldETH_DESC_NULLS_LAST', - YieldUsdAsc = 'yieldUSD_ASC', - YieldUsdAscNullsFirst = 'yieldUSD_ASC_NULLS_FIRST', - YieldUsdDesc = 'yieldUSD_DESC', - YieldUsdDescNullsLast = 'yieldUSD_DESC_NULLS_LAST' + WethAsc = 'weth_ASC', + WethAscNullsFirst = 'weth_ASC_NULLS_FIRST', + WethDesc = 'weth_DESC', + WethDescNullsLast = 'weth_DESC_NULLS_LAST' } -export type OethRebaseWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - apy?: InputMaybe; - apy_isNull?: InputMaybe; +export type OethMorphoAaveWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -5468,24 +4255,6 @@ export type OethRebaseWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; - feeETH_eq?: InputMaybe; - feeETH_gt?: InputMaybe; - feeETH_gte?: InputMaybe; - feeETH_in?: InputMaybe>; - feeETH_isNull?: InputMaybe; - feeETH_lt?: InputMaybe; - feeETH_lte?: InputMaybe; - feeETH_not_eq?: InputMaybe; - feeETH_not_in?: InputMaybe>; - feeUSD_eq?: InputMaybe; - feeUSD_gt?: InputMaybe; - feeUSD_gte?: InputMaybe; - feeUSD_in?: InputMaybe>; - feeUSD_isNull?: InputMaybe; - feeUSD_lt?: InputMaybe; - feeUSD_lte?: InputMaybe; - feeUSD_not_eq?: InputMaybe; - feeUSD_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -5503,24 +4272,6 @@ export type OethRebaseWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - rebasingCreditsPerToken_eq?: InputMaybe; - rebasingCreditsPerToken_gt?: InputMaybe; - rebasingCreditsPerToken_gte?: InputMaybe; - rebasingCreditsPerToken_in?: InputMaybe>; - rebasingCreditsPerToken_isNull?: InputMaybe; - rebasingCreditsPerToken_lt?: InputMaybe; - rebasingCreditsPerToken_lte?: InputMaybe; - rebasingCreditsPerToken_not_eq?: InputMaybe; - rebasingCreditsPerToken_not_in?: InputMaybe>; - rebasingCredits_eq?: InputMaybe; - rebasingCredits_gt?: InputMaybe; - rebasingCredits_gte?: InputMaybe; - rebasingCredits_in?: InputMaybe>; - rebasingCredits_isNull?: InputMaybe; - rebasingCredits_lt?: InputMaybe; - rebasingCredits_lte?: InputMaybe; - rebasingCredits_not_eq?: InputMaybe; - rebasingCredits_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -5530,55 +4281,20 @@ export type OethRebaseWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - totalSupply_eq?: InputMaybe; - totalSupply_gt?: InputMaybe; - totalSupply_gte?: InputMaybe; - totalSupply_in?: InputMaybe>; - totalSupply_isNull?: InputMaybe; - totalSupply_lt?: InputMaybe; - totalSupply_lte?: InputMaybe; - totalSupply_not_eq?: InputMaybe; - totalSupply_not_in?: InputMaybe>; - txHash_contains?: InputMaybe; - txHash_containsInsensitive?: InputMaybe; - txHash_endsWith?: InputMaybe; - txHash_eq?: InputMaybe; - txHash_gt?: InputMaybe; - txHash_gte?: InputMaybe; - txHash_in?: InputMaybe>; - txHash_isNull?: InputMaybe; - txHash_lt?: InputMaybe; - txHash_lte?: InputMaybe; - txHash_not_contains?: InputMaybe; - txHash_not_containsInsensitive?: InputMaybe; - txHash_not_endsWith?: InputMaybe; - txHash_not_eq?: InputMaybe; - txHash_not_in?: InputMaybe>; - txHash_not_startsWith?: InputMaybe; - txHash_startsWith?: InputMaybe; - yieldETH_eq?: InputMaybe; - yieldETH_gt?: InputMaybe; - yieldETH_gte?: InputMaybe; - yieldETH_in?: InputMaybe>; - yieldETH_isNull?: InputMaybe; - yieldETH_lt?: InputMaybe; - yieldETH_lte?: InputMaybe; - yieldETH_not_eq?: InputMaybe; - yieldETH_not_in?: InputMaybe>; - yieldUSD_eq?: InputMaybe; - yieldUSD_gt?: InputMaybe; - yieldUSD_gte?: InputMaybe; - yieldUSD_in?: InputMaybe>; - yieldUSD_isNull?: InputMaybe; - yieldUSD_lt?: InputMaybe; - yieldUSD_lte?: InputMaybe; - yieldUSD_not_eq?: InputMaybe; - yieldUSD_not_in?: InputMaybe>; + weth_eq?: InputMaybe; + weth_gt?: InputMaybe; + weth_gte?: InputMaybe; + weth_in?: InputMaybe>; + weth_isNull?: InputMaybe; + weth_lt?: InputMaybe; + weth_lte?: InputMaybe; + weth_not_eq?: InputMaybe; + weth_not_in?: InputMaybe>; }; -export type OethRebasesConnection = { - __typename?: 'OETHRebasesConnection'; - edges: Array; +export type OethMorphoAavesConnection = { + __typename?: 'OETHMorphoAavesConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; @@ -6227,80 +4943,6 @@ export type OethVaultsConnection = { totalCount: Scalars['Int']['output']; }; -export type OethWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - nonRebasingSupply_eq?: InputMaybe; - nonRebasingSupply_gt?: InputMaybe; - nonRebasingSupply_gte?: InputMaybe; - nonRebasingSupply_in?: InputMaybe>; - nonRebasingSupply_isNull?: InputMaybe; - nonRebasingSupply_lt?: InputMaybe; - nonRebasingSupply_lte?: InputMaybe; - nonRebasingSupply_not_eq?: InputMaybe; - nonRebasingSupply_not_in?: InputMaybe>; - rebasingSupply_eq?: InputMaybe; - rebasingSupply_gt?: InputMaybe; - rebasingSupply_gte?: InputMaybe; - rebasingSupply_in?: InputMaybe>; - rebasingSupply_isNull?: InputMaybe; - rebasingSupply_lt?: InputMaybe; - rebasingSupply_lte?: InputMaybe; - rebasingSupply_not_eq?: InputMaybe; - rebasingSupply_not_in?: InputMaybe>; - timestamp_eq?: InputMaybe; - timestamp_gt?: InputMaybe; - timestamp_gte?: InputMaybe; - timestamp_in?: InputMaybe>; - timestamp_isNull?: InputMaybe; - timestamp_lt?: InputMaybe; - timestamp_lte?: InputMaybe; - timestamp_not_eq?: InputMaybe; - timestamp_not_in?: InputMaybe>; - totalSupply_eq?: InputMaybe; - totalSupply_gt?: InputMaybe; - totalSupply_gte?: InputMaybe; - totalSupply_in?: InputMaybe>; - totalSupply_isNull?: InputMaybe; - totalSupply_lt?: InputMaybe; - totalSupply_lte?: InputMaybe; - totalSupply_not_eq?: InputMaybe; - totalSupply_not_in?: InputMaybe>; -}; - -export type OetHsConnection = { - __typename?: 'OETHsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - export type OgnStatsResult = { __typename?: 'OGNStatsResult'; circulatingSupply: Scalars['Float']['output']; @@ -7579,27 +6221,62 @@ export type OgVsConnection = { totalCount: Scalars['Int']['output']; }; -export type OTokenVault = { - __typename?: 'OTokenVault'; - address: Scalars['String']['output']; +export type OToken = { + __typename?: 'OToken'; blockNumber: Scalars['Int']['output']; chainId: Scalars['Int']['output']; id: Scalars['String']['output']; + nonRebasingSupply: Scalars['BigInt']['output']; + otoken: Scalars['String']['output']; + rebasingSupply: Scalars['BigInt']['output']; timestamp: Scalars['DateTime']['output']; - totalValue: Scalars['BigInt']['output']; + totalSupply: Scalars['BigInt']['output']; }; -export type OTokenVaultEdge = { - __typename?: 'OTokenVaultEdge'; +export type OTokenApy = { + __typename?: 'OTokenAPY'; + apr: Scalars['Float']['output']; + apy: Scalars['Float']['output']; + apy7DayAvg: Scalars['Float']['output']; + apy14DayAvg: Scalars['Float']['output']; + apy30DayAvg: Scalars['Float']['output']; + blockNumber: Scalars['Int']['output']; + chainId: Scalars['Int']['output']; + date: Scalars['String']['output']; + id: Scalars['String']['output']; + otoken: Scalars['String']['output']; + rebasingCreditsPerToken: Scalars['BigInt']['output']; + timestamp: Scalars['DateTime']['output']; + txHash: Scalars['String']['output']; +}; + +export type OTokenApyEdge = { + __typename?: 'OTokenAPYEdge'; cursor: Scalars['String']['output']; - node: OTokenVault; + node: OTokenApy; }; -export enum OTokenVaultOrderByInput { - AddressAsc = 'address_ASC', - AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', - AddressDesc = 'address_DESC', - AddressDescNullsLast = 'address_DESC_NULLS_LAST', +export enum OTokenApyOrderByInput { + AprAsc = 'apr_ASC', + AprAscNullsFirst = 'apr_ASC_NULLS_FIRST', + AprDesc = 'apr_DESC', + AprDescNullsLast = 'apr_DESC_NULLS_LAST', + Apy7DayAvgAsc = 'apy7DayAvg_ASC', + Apy7DayAvgAscNullsFirst = 'apy7DayAvg_ASC_NULLS_FIRST', + Apy7DayAvgDesc = 'apy7DayAvg_DESC', + Apy7DayAvgDescNullsLast = 'apy7DayAvg_DESC_NULLS_LAST', + Apy14DayAvgAsc = 'apy14DayAvg_ASC', + Apy14DayAvgAscNullsFirst = 'apy14DayAvg_ASC_NULLS_FIRST', + Apy14DayAvgDesc = 'apy14DayAvg_DESC', + Apy14DayAvgDescNullsLast = 'apy14DayAvg_DESC_NULLS_LAST', + Apy30DayAvgAsc = 'apy30DayAvg_ASC', + Apy30DayAvgAscNullsFirst = 'apy30DayAvg_ASC_NULLS_FIRST', + Apy30DayAvgDesc = 'apy30DayAvg_DESC', + Apy30DayAvgDescNullsLast = 'apy30DayAvg_DESC_NULLS_LAST', + ApyAsc = 'apy_ASC', + ApyAscNullsFirst = 'apy_ASC_NULLS_FIRST', + ApyDesc = 'apy_DESC', + ApyDescNullsLast = 'apy_DESC_NULLS_LAST', BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', @@ -7608,40 +6285,80 @@ export enum OTokenVaultOrderByInput { ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', ChainIdDesc = 'chainId_DESC', ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', + DateAsc = 'date_ASC', + DateAscNullsFirst = 'date_ASC_NULLS_FIRST', + DateDesc = 'date_DESC', + DateDescNullsLast = 'date_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', + RebasingCreditsPerTokenAsc = 'rebasingCreditsPerToken_ASC', + RebasingCreditsPerTokenAscNullsFirst = 'rebasingCreditsPerToken_ASC_NULLS_FIRST', + RebasingCreditsPerTokenDesc = 'rebasingCreditsPerToken_DESC', + RebasingCreditsPerTokenDescNullsLast = 'rebasingCreditsPerToken_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TotalValueAsc = 'totalValue_ASC', - TotalValueAscNullsFirst = 'totalValue_ASC_NULLS_FIRST', - TotalValueDesc = 'totalValue_DESC', - TotalValueDescNullsLast = 'totalValue_DESC_NULLS_LAST' + TxHashAsc = 'txHash_ASC', + TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', + TxHashDesc = 'txHash_DESC', + TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST' } -export type OTokenVaultWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - address_contains?: InputMaybe; - address_containsInsensitive?: InputMaybe; - address_endsWith?: InputMaybe; - address_eq?: InputMaybe; - address_gt?: InputMaybe; - address_gte?: InputMaybe; - address_in?: InputMaybe>; - address_isNull?: InputMaybe; - address_lt?: InputMaybe; - address_lte?: InputMaybe; - address_not_contains?: InputMaybe; - address_not_containsInsensitive?: InputMaybe; - address_not_endsWith?: InputMaybe; - address_not_eq?: InputMaybe; - address_not_in?: InputMaybe>; - address_not_startsWith?: InputMaybe; - address_startsWith?: InputMaybe; +export type OTokenApyWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + apr_eq?: InputMaybe; + apr_gt?: InputMaybe; + apr_gte?: InputMaybe; + apr_in?: InputMaybe>; + apr_isNull?: InputMaybe; + apr_lt?: InputMaybe; + apr_lte?: InputMaybe; + apr_not_eq?: InputMaybe; + apr_not_in?: InputMaybe>; + apy7DayAvg_eq?: InputMaybe; + apy7DayAvg_gt?: InputMaybe; + apy7DayAvg_gte?: InputMaybe; + apy7DayAvg_in?: InputMaybe>; + apy7DayAvg_isNull?: InputMaybe; + apy7DayAvg_lt?: InputMaybe; + apy7DayAvg_lte?: InputMaybe; + apy7DayAvg_not_eq?: InputMaybe; + apy7DayAvg_not_in?: InputMaybe>; + apy14DayAvg_eq?: InputMaybe; + apy14DayAvg_gt?: InputMaybe; + apy14DayAvg_gte?: InputMaybe; + apy14DayAvg_in?: InputMaybe>; + apy14DayAvg_isNull?: InputMaybe; + apy14DayAvg_lt?: InputMaybe; + apy14DayAvg_lte?: InputMaybe; + apy14DayAvg_not_eq?: InputMaybe; + apy14DayAvg_not_in?: InputMaybe>; + apy30DayAvg_eq?: InputMaybe; + apy30DayAvg_gt?: InputMaybe; + apy30DayAvg_gte?: InputMaybe; + apy30DayAvg_in?: InputMaybe>; + apy30DayAvg_isNull?: InputMaybe; + apy30DayAvg_lt?: InputMaybe; + apy30DayAvg_lte?: InputMaybe; + apy30DayAvg_not_eq?: InputMaybe; + apy30DayAvg_not_in?: InputMaybe>; + apy_eq?: InputMaybe; + apy_gt?: InputMaybe; + apy_gte?: InputMaybe; + apy_in?: InputMaybe>; + apy_isNull?: InputMaybe; + apy_lt?: InputMaybe; + apy_lte?: InputMaybe; + apy_not_eq?: InputMaybe; + apy_not_in?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -7660,6 +6377,23 @@ export type OTokenVaultWhereInput = { chainId_lte?: InputMaybe; chainId_not_eq?: InputMaybe; chainId_not_in?: InputMaybe>; + date_contains?: InputMaybe; + date_containsInsensitive?: InputMaybe; + date_endsWith?: InputMaybe; + date_eq?: InputMaybe; + date_gt?: InputMaybe; + date_gte?: InputMaybe; + date_in?: InputMaybe>; + date_isNull?: InputMaybe; + date_lt?: InputMaybe; + date_lte?: InputMaybe; + date_not_contains?: InputMaybe; + date_not_containsInsensitive?: InputMaybe; + date_not_endsWith?: InputMaybe; + date_not_eq?: InputMaybe; + date_not_in?: InputMaybe>; + date_not_startsWith?: InputMaybe; + date_startsWith?: InputMaybe; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -7677,6 +6411,32 @@ export type OTokenVaultWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; + rebasingCreditsPerToken_eq?: InputMaybe; + rebasingCreditsPerToken_gt?: InputMaybe; + rebasingCreditsPerToken_gte?: InputMaybe; + rebasingCreditsPerToken_in?: InputMaybe>; + rebasingCreditsPerToken_isNull?: InputMaybe; + rebasingCreditsPerToken_lt?: InputMaybe; + rebasingCreditsPerToken_lte?: InputMaybe; + rebasingCreditsPerToken_not_eq?: InputMaybe; + rebasingCreditsPerToken_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -7686,147 +6446,173 @@ export type OTokenVaultWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - totalValue_eq?: InputMaybe; - totalValue_gt?: InputMaybe; - totalValue_gte?: InputMaybe; - totalValue_in?: InputMaybe>; - totalValue_isNull?: InputMaybe; - totalValue_lt?: InputMaybe; - totalValue_lte?: InputMaybe; - totalValue_not_eq?: InputMaybe; - totalValue_not_in?: InputMaybe>; + txHash_contains?: InputMaybe; + txHash_containsInsensitive?: InputMaybe; + txHash_endsWith?: InputMaybe; + txHash_eq?: InputMaybe; + txHash_gt?: InputMaybe; + txHash_gte?: InputMaybe; + txHash_in?: InputMaybe>; + txHash_isNull?: InputMaybe; + txHash_lt?: InputMaybe; + txHash_lte?: InputMaybe; + txHash_not_contains?: InputMaybe; + txHash_not_containsInsensitive?: InputMaybe; + txHash_not_endsWith?: InputMaybe; + txHash_not_eq?: InputMaybe; + txHash_not_in?: InputMaybe>; + txHash_not_startsWith?: InputMaybe; + txHash_startsWith?: InputMaybe; }; -export type OTokenVaultsConnection = { - __typename?: 'OTokenVaultsConnection'; - edges: Array; +export type OTokenAPiesConnection = { + __typename?: 'OTokenAPiesConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -/** The OUSD entity tracks the change in total supply of OUSD over time. */ -export type Ousd = { - __typename?: 'OUSD'; - blockNumber: Scalars['Int']['output']; - id: Scalars['String']['output']; - nonRebasingSupply: Scalars['BigInt']['output']; - rebasingSupply: Scalars['BigInt']['output']; - timestamp: Scalars['DateTime']['output']; - totalSupply: Scalars['BigInt']['output']; +export type OTokenActivitiesConnection = { + __typename?: 'OTokenActivitiesConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; }; -/** The APY entity tracks historical APY values by day. */ -export type Ousdapy = { - __typename?: 'OUSDAPY'; - apr: Scalars['Float']['output']; - apy: Scalars['Float']['output']; - apy7DayAvg: Scalars['Float']['output']; - apy14DayAvg: Scalars['Float']['output']; - apy30DayAvg: Scalars['Float']['output']; +export type OTokenActivity = { + __typename?: 'OTokenActivity'; + action?: Maybe; + address?: Maybe; + amount?: Maybe; blockNumber: Scalars['Int']['output']; + callDataLast4Bytes: Scalars['String']['output']; + chainId: Scalars['Int']['output']; + exchange?: Maybe; + fromSymbol?: Maybe; id: Scalars['String']['output']; - rebasingCreditsPerToken: Scalars['BigInt']['output']; + interface?: Maybe; + otoken: Scalars['String']['output']; + sighash?: Maybe; timestamp: Scalars['DateTime']['output']; + toSymbol?: Maybe; txHash: Scalars['String']['output']; }; -export type OusdapyEdge = { - __typename?: 'OUSDAPYEdge'; +export type OTokenActivityEdge = { + __typename?: 'OTokenActivityEdge'; cursor: Scalars['String']['output']; - node: Ousdapy; + node: OTokenActivity; }; -export enum OusdapyOrderByInput { - AprAsc = 'apr_ASC', - AprAscNullsFirst = 'apr_ASC_NULLS_FIRST', - AprDesc = 'apr_DESC', - AprDescNullsLast = 'apr_DESC_NULLS_LAST', - Apy7DayAvgAsc = 'apy7DayAvg_ASC', - Apy7DayAvgAscNullsFirst = 'apy7DayAvg_ASC_NULLS_FIRST', - Apy7DayAvgDesc = 'apy7DayAvg_DESC', - Apy7DayAvgDescNullsLast = 'apy7DayAvg_DESC_NULLS_LAST', - Apy14DayAvgAsc = 'apy14DayAvg_ASC', - Apy14DayAvgAscNullsFirst = 'apy14DayAvg_ASC_NULLS_FIRST', - Apy14DayAvgDesc = 'apy14DayAvg_DESC', - Apy14DayAvgDescNullsLast = 'apy14DayAvg_DESC_NULLS_LAST', - Apy30DayAvgAsc = 'apy30DayAvg_ASC', - Apy30DayAvgAscNullsFirst = 'apy30DayAvg_ASC_NULLS_FIRST', - Apy30DayAvgDesc = 'apy30DayAvg_DESC', - Apy30DayAvgDescNullsLast = 'apy30DayAvg_DESC_NULLS_LAST', - ApyAsc = 'apy_ASC', - ApyAscNullsFirst = 'apy_ASC_NULLS_FIRST', - ApyDesc = 'apy_DESC', - ApyDescNullsLast = 'apy_DESC_NULLS_LAST', +export enum OTokenActivityOrderByInput { + ActionAsc = 'action_ASC', + ActionAscNullsFirst = 'action_ASC_NULLS_FIRST', + ActionDesc = 'action_DESC', + ActionDescNullsLast = 'action_DESC_NULLS_LAST', + AddressAsc = 'address_ASC', + AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', + AddressDesc = 'address_DESC', + AddressDescNullsLast = 'address_DESC_NULLS_LAST', + AmountAsc = 'amount_ASC', + AmountAscNullsFirst = 'amount_ASC_NULLS_FIRST', + AmountDesc = 'amount_DESC', + AmountDescNullsLast = 'amount_DESC_NULLS_LAST', BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + CallDataLast4BytesAsc = 'callDataLast4Bytes_ASC', + CallDataLast4BytesAscNullsFirst = 'callDataLast4Bytes_ASC_NULLS_FIRST', + CallDataLast4BytesDesc = 'callDataLast4Bytes_DESC', + CallDataLast4BytesDescNullsLast = 'callDataLast4Bytes_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', + ExchangeAsc = 'exchange_ASC', + ExchangeAscNullsFirst = 'exchange_ASC_NULLS_FIRST', + ExchangeDesc = 'exchange_DESC', + ExchangeDescNullsLast = 'exchange_DESC_NULLS_LAST', + FromSymbolAsc = 'fromSymbol_ASC', + FromSymbolAscNullsFirst = 'fromSymbol_ASC_NULLS_FIRST', + FromSymbolDesc = 'fromSymbol_DESC', + FromSymbolDescNullsLast = 'fromSymbol_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - RebasingCreditsPerTokenAsc = 'rebasingCreditsPerToken_ASC', - RebasingCreditsPerTokenAscNullsFirst = 'rebasingCreditsPerToken_ASC_NULLS_FIRST', - RebasingCreditsPerTokenDesc = 'rebasingCreditsPerToken_DESC', - RebasingCreditsPerTokenDescNullsLast = 'rebasingCreditsPerToken_DESC_NULLS_LAST', + InterfaceAsc = 'interface_ASC', + InterfaceAscNullsFirst = 'interface_ASC_NULLS_FIRST', + InterfaceDesc = 'interface_DESC', + InterfaceDescNullsLast = 'interface_DESC_NULLS_LAST', + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', + SighashAsc = 'sighash_ASC', + SighashAscNullsFirst = 'sighash_ASC_NULLS_FIRST', + SighashDesc = 'sighash_DESC', + SighashDescNullsLast = 'sighash_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', + ToSymbolAsc = 'toSymbol_ASC', + ToSymbolAscNullsFirst = 'toSymbol_ASC_NULLS_FIRST', + ToSymbolDesc = 'toSymbol_DESC', + ToSymbolDescNullsLast = 'toSymbol_DESC_NULLS_LAST', TxHashAsc = 'txHash_ASC', TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', TxHashDesc = 'txHash_DESC', TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST' } -export type OusdapyWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - apr_eq?: InputMaybe; - apr_gt?: InputMaybe; - apr_gte?: InputMaybe; - apr_in?: InputMaybe>; - apr_isNull?: InputMaybe; - apr_lt?: InputMaybe; - apr_lte?: InputMaybe; - apr_not_eq?: InputMaybe; - apr_not_in?: InputMaybe>; - apy7DayAvg_eq?: InputMaybe; - apy7DayAvg_gt?: InputMaybe; - apy7DayAvg_gte?: InputMaybe; - apy7DayAvg_in?: InputMaybe>; - apy7DayAvg_isNull?: InputMaybe; - apy7DayAvg_lt?: InputMaybe; - apy7DayAvg_lte?: InputMaybe; - apy7DayAvg_not_eq?: InputMaybe; - apy7DayAvg_not_in?: InputMaybe>; - apy14DayAvg_eq?: InputMaybe; - apy14DayAvg_gt?: InputMaybe; - apy14DayAvg_gte?: InputMaybe; - apy14DayAvg_in?: InputMaybe>; - apy14DayAvg_isNull?: InputMaybe; - apy14DayAvg_lt?: InputMaybe; - apy14DayAvg_lte?: InputMaybe; - apy14DayAvg_not_eq?: InputMaybe; - apy14DayAvg_not_in?: InputMaybe>; - apy30DayAvg_eq?: InputMaybe; - apy30DayAvg_gt?: InputMaybe; - apy30DayAvg_gte?: InputMaybe; - apy30DayAvg_in?: InputMaybe>; - apy30DayAvg_isNull?: InputMaybe; - apy30DayAvg_lt?: InputMaybe; - apy30DayAvg_lte?: InputMaybe; - apy30DayAvg_not_eq?: InputMaybe; - apy30DayAvg_not_in?: InputMaybe>; - apy_eq?: InputMaybe; - apy_gt?: InputMaybe; - apy_gte?: InputMaybe; - apy_in?: InputMaybe>; - apy_isNull?: InputMaybe; - apy_lt?: InputMaybe; - apy_lte?: InputMaybe; - apy_not_eq?: InputMaybe; - apy_not_in?: InputMaybe>; +export type OTokenActivityWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + action_contains?: InputMaybe; + action_containsInsensitive?: InputMaybe; + action_endsWith?: InputMaybe; + action_eq?: InputMaybe; + action_gt?: InputMaybe; + action_gte?: InputMaybe; + action_in?: InputMaybe>; + action_isNull?: InputMaybe; + action_lt?: InputMaybe; + action_lte?: InputMaybe; + action_not_contains?: InputMaybe; + action_not_containsInsensitive?: InputMaybe; + action_not_endsWith?: InputMaybe; + action_not_eq?: InputMaybe; + action_not_in?: InputMaybe>; + action_not_startsWith?: InputMaybe; + action_startsWith?: InputMaybe; + address_contains?: InputMaybe; + address_containsInsensitive?: InputMaybe; + address_endsWith?: InputMaybe; + address_eq?: InputMaybe; + address_gt?: InputMaybe; + address_gte?: InputMaybe; + address_in?: InputMaybe>; + address_isNull?: InputMaybe; + address_lt?: InputMaybe; + address_lte?: InputMaybe; + address_not_contains?: InputMaybe; + address_not_containsInsensitive?: InputMaybe; + address_not_endsWith?: InputMaybe; + address_not_eq?: InputMaybe; + address_not_in?: InputMaybe>; + address_not_startsWith?: InputMaybe; + address_startsWith?: InputMaybe; + amount_eq?: InputMaybe; + amount_gt?: InputMaybe; + amount_gte?: InputMaybe; + amount_in?: InputMaybe>; + amount_isNull?: InputMaybe; + amount_lt?: InputMaybe; + amount_lte?: InputMaybe; + amount_not_eq?: InputMaybe; + amount_not_in?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -7836,6 +6622,66 @@ export type OusdapyWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; + callDataLast4Bytes_contains?: InputMaybe; + callDataLast4Bytes_containsInsensitive?: InputMaybe; + callDataLast4Bytes_endsWith?: InputMaybe; + callDataLast4Bytes_eq?: InputMaybe; + callDataLast4Bytes_gt?: InputMaybe; + callDataLast4Bytes_gte?: InputMaybe; + callDataLast4Bytes_in?: InputMaybe>; + callDataLast4Bytes_isNull?: InputMaybe; + callDataLast4Bytes_lt?: InputMaybe; + callDataLast4Bytes_lte?: InputMaybe; + callDataLast4Bytes_not_contains?: InputMaybe; + callDataLast4Bytes_not_containsInsensitive?: InputMaybe; + callDataLast4Bytes_not_endsWith?: InputMaybe; + callDataLast4Bytes_not_eq?: InputMaybe; + callDataLast4Bytes_not_in?: InputMaybe>; + callDataLast4Bytes_not_startsWith?: InputMaybe; + callDataLast4Bytes_startsWith?: InputMaybe; + chainId_eq?: InputMaybe; + chainId_gt?: InputMaybe; + chainId_gte?: InputMaybe; + chainId_in?: InputMaybe>; + chainId_isNull?: InputMaybe; + chainId_lt?: InputMaybe; + chainId_lte?: InputMaybe; + chainId_not_eq?: InputMaybe; + chainId_not_in?: InputMaybe>; + exchange_contains?: InputMaybe; + exchange_containsInsensitive?: InputMaybe; + exchange_endsWith?: InputMaybe; + exchange_eq?: InputMaybe; + exchange_gt?: InputMaybe; + exchange_gte?: InputMaybe; + exchange_in?: InputMaybe>; + exchange_isNull?: InputMaybe; + exchange_lt?: InputMaybe; + exchange_lte?: InputMaybe; + exchange_not_contains?: InputMaybe; + exchange_not_containsInsensitive?: InputMaybe; + exchange_not_endsWith?: InputMaybe; + exchange_not_eq?: InputMaybe; + exchange_not_in?: InputMaybe>; + exchange_not_startsWith?: InputMaybe; + exchange_startsWith?: InputMaybe; + fromSymbol_contains?: InputMaybe; + fromSymbol_containsInsensitive?: InputMaybe; + fromSymbol_endsWith?: InputMaybe; + fromSymbol_eq?: InputMaybe; + fromSymbol_gt?: InputMaybe; + fromSymbol_gte?: InputMaybe; + fromSymbol_in?: InputMaybe>; + fromSymbol_isNull?: InputMaybe; + fromSymbol_lt?: InputMaybe; + fromSymbol_lte?: InputMaybe; + fromSymbol_not_contains?: InputMaybe; + fromSymbol_not_containsInsensitive?: InputMaybe; + fromSymbol_not_endsWith?: InputMaybe; + fromSymbol_not_eq?: InputMaybe; + fromSymbol_not_in?: InputMaybe>; + fromSymbol_not_startsWith?: InputMaybe; + fromSymbol_startsWith?: InputMaybe; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -7853,15 +6699,57 @@ export type OusdapyWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - rebasingCreditsPerToken_eq?: InputMaybe; - rebasingCreditsPerToken_gt?: InputMaybe; - rebasingCreditsPerToken_gte?: InputMaybe; - rebasingCreditsPerToken_in?: InputMaybe>; - rebasingCreditsPerToken_isNull?: InputMaybe; - rebasingCreditsPerToken_lt?: InputMaybe; - rebasingCreditsPerToken_lte?: InputMaybe; - rebasingCreditsPerToken_not_eq?: InputMaybe; - rebasingCreditsPerToken_not_in?: InputMaybe>; + interface_contains?: InputMaybe; + interface_containsInsensitive?: InputMaybe; + interface_endsWith?: InputMaybe; + interface_eq?: InputMaybe; + interface_gt?: InputMaybe; + interface_gte?: InputMaybe; + interface_in?: InputMaybe>; + interface_isNull?: InputMaybe; + interface_lt?: InputMaybe; + interface_lte?: InputMaybe; + interface_not_contains?: InputMaybe; + interface_not_containsInsensitive?: InputMaybe; + interface_not_endsWith?: InputMaybe; + interface_not_eq?: InputMaybe; + interface_not_in?: InputMaybe>; + interface_not_startsWith?: InputMaybe; + interface_startsWith?: InputMaybe; + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; + sighash_contains?: InputMaybe; + sighash_containsInsensitive?: InputMaybe; + sighash_endsWith?: InputMaybe; + sighash_eq?: InputMaybe; + sighash_gt?: InputMaybe; + sighash_gte?: InputMaybe; + sighash_in?: InputMaybe>; + sighash_isNull?: InputMaybe; + sighash_lt?: InputMaybe; + sighash_lte?: InputMaybe; + sighash_not_contains?: InputMaybe; + sighash_not_containsInsensitive?: InputMaybe; + sighash_not_endsWith?: InputMaybe; + sighash_not_eq?: InputMaybe; + sighash_not_in?: InputMaybe>; + sighash_not_startsWith?: InputMaybe; + sighash_startsWith?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -7871,6 +6759,23 @@ export type OusdapyWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; + toSymbol_contains?: InputMaybe; + toSymbol_containsInsensitive?: InputMaybe; + toSymbol_endsWith?: InputMaybe; + toSymbol_eq?: InputMaybe; + toSymbol_gt?: InputMaybe; + toSymbol_gte?: InputMaybe; + toSymbol_in?: InputMaybe>; + toSymbol_isNull?: InputMaybe; + toSymbol_lt?: InputMaybe; + toSymbol_lte?: InputMaybe; + toSymbol_not_contains?: InputMaybe; + toSymbol_not_containsInsensitive?: InputMaybe; + toSymbol_not_endsWith?: InputMaybe; + toSymbol_not_eq?: InputMaybe; + toSymbol_not_in?: InputMaybe>; + toSymbol_not_startsWith?: InputMaybe; + toSymbol_startsWith?: InputMaybe; txHash_contains?: InputMaybe; txHash_containsInsensitive?: InputMaybe; txHash_endsWith?: InputMaybe; @@ -7890,84 +6795,264 @@ export type OusdapyWhereInput = { txHash_startsWith?: InputMaybe; }; -export type OusdaPiesConnection = { - __typename?: 'OUSDAPiesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; +export type OTokenAddress = { + __typename?: 'OTokenAddress'; + address: Scalars['String']['output']; + balance: Scalars['BigInt']['output']; + chainId: Scalars['Int']['output']; + credits: Scalars['BigInt']['output']; + earned: Scalars['BigInt']['output']; + history: Array; + id: Scalars['String']['output']; + isContract: Scalars['Boolean']['output']; + lastUpdated: Scalars['DateTime']['output']; + otoken: Scalars['String']['output']; + rebasingOption: RebasingOption; }; -export type OusdAaveStrategiesConnection = { - __typename?: 'OUSDAaveStrategiesConnection'; - edges: Array; + +export type OTokenAddressHistoryArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + +export type OTokenAddressEdge = { + __typename?: 'OTokenAddressEdge'; + cursor: Scalars['String']['output']; + node: OTokenAddress; +}; + +export enum OTokenAddressOrderByInput { + AddressAsc = 'address_ASC', + AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', + AddressDesc = 'address_DESC', + AddressDescNullsLast = 'address_DESC_NULLS_LAST', + BalanceAsc = 'balance_ASC', + BalanceAscNullsFirst = 'balance_ASC_NULLS_FIRST', + BalanceDesc = 'balance_DESC', + BalanceDescNullsLast = 'balance_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', + CreditsAsc = 'credits_ASC', + CreditsAscNullsFirst = 'credits_ASC_NULLS_FIRST', + CreditsDesc = 'credits_DESC', + CreditsDescNullsLast = 'credits_DESC_NULLS_LAST', + EarnedAsc = 'earned_ASC', + EarnedAscNullsFirst = 'earned_ASC_NULLS_FIRST', + EarnedDesc = 'earned_DESC', + EarnedDescNullsLast = 'earned_DESC_NULLS_LAST', + IdAsc = 'id_ASC', + IdAscNullsFirst = 'id_ASC_NULLS_FIRST', + IdDesc = 'id_DESC', + IdDescNullsLast = 'id_DESC_NULLS_LAST', + IsContractAsc = 'isContract_ASC', + IsContractAscNullsFirst = 'isContract_ASC_NULLS_FIRST', + IsContractDesc = 'isContract_DESC', + IsContractDescNullsLast = 'isContract_DESC_NULLS_LAST', + LastUpdatedAsc = 'lastUpdated_ASC', + LastUpdatedAscNullsFirst = 'lastUpdated_ASC_NULLS_FIRST', + LastUpdatedDesc = 'lastUpdated_DESC', + LastUpdatedDescNullsLast = 'lastUpdated_DESC_NULLS_LAST', + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', + RebasingOptionAsc = 'rebasingOption_ASC', + RebasingOptionAscNullsFirst = 'rebasingOption_ASC_NULLS_FIRST', + RebasingOptionDesc = 'rebasingOption_DESC', + RebasingOptionDescNullsLast = 'rebasingOption_DESC_NULLS_LAST' +} + +export type OTokenAddressWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + address_contains?: InputMaybe; + address_containsInsensitive?: InputMaybe; + address_endsWith?: InputMaybe; + address_eq?: InputMaybe; + address_gt?: InputMaybe; + address_gte?: InputMaybe; + address_in?: InputMaybe>; + address_isNull?: InputMaybe; + address_lt?: InputMaybe; + address_lte?: InputMaybe; + address_not_contains?: InputMaybe; + address_not_containsInsensitive?: InputMaybe; + address_not_endsWith?: InputMaybe; + address_not_eq?: InputMaybe; + address_not_in?: InputMaybe>; + address_not_startsWith?: InputMaybe; + address_startsWith?: InputMaybe; + balance_eq?: InputMaybe; + balance_gt?: InputMaybe; + balance_gte?: InputMaybe; + balance_in?: InputMaybe>; + balance_isNull?: InputMaybe; + balance_lt?: InputMaybe; + balance_lte?: InputMaybe; + balance_not_eq?: InputMaybe; + balance_not_in?: InputMaybe>; + chainId_eq?: InputMaybe; + chainId_gt?: InputMaybe; + chainId_gte?: InputMaybe; + chainId_in?: InputMaybe>; + chainId_isNull?: InputMaybe; + chainId_lt?: InputMaybe; + chainId_lte?: InputMaybe; + chainId_not_eq?: InputMaybe; + chainId_not_in?: InputMaybe>; + credits_eq?: InputMaybe; + credits_gt?: InputMaybe; + credits_gte?: InputMaybe; + credits_in?: InputMaybe>; + credits_isNull?: InputMaybe; + credits_lt?: InputMaybe; + credits_lte?: InputMaybe; + credits_not_eq?: InputMaybe; + credits_not_in?: InputMaybe>; + earned_eq?: InputMaybe; + earned_gt?: InputMaybe; + earned_gte?: InputMaybe; + earned_in?: InputMaybe>; + earned_isNull?: InputMaybe; + earned_lt?: InputMaybe; + earned_lte?: InputMaybe; + earned_not_eq?: InputMaybe; + earned_not_in?: InputMaybe>; + history_every?: InputMaybe; + history_none?: InputMaybe; + history_some?: InputMaybe; + id_contains?: InputMaybe; + id_containsInsensitive?: InputMaybe; + id_endsWith?: InputMaybe; + id_eq?: InputMaybe; + id_gt?: InputMaybe; + id_gte?: InputMaybe; + id_in?: InputMaybe>; + id_isNull?: InputMaybe; + id_lt?: InputMaybe; + id_lte?: InputMaybe; + id_not_contains?: InputMaybe; + id_not_containsInsensitive?: InputMaybe; + id_not_endsWith?: InputMaybe; + id_not_eq?: InputMaybe; + id_not_in?: InputMaybe>; + id_not_startsWith?: InputMaybe; + id_startsWith?: InputMaybe; + isContract_eq?: InputMaybe; + isContract_isNull?: InputMaybe; + isContract_not_eq?: InputMaybe; + lastUpdated_eq?: InputMaybe; + lastUpdated_gt?: InputMaybe; + lastUpdated_gte?: InputMaybe; + lastUpdated_in?: InputMaybe>; + lastUpdated_isNull?: InputMaybe; + lastUpdated_lt?: InputMaybe; + lastUpdated_lte?: InputMaybe; + lastUpdated_not_eq?: InputMaybe; + lastUpdated_not_in?: InputMaybe>; + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; + rebasingOption_eq?: InputMaybe; + rebasingOption_in?: InputMaybe>; + rebasingOption_isNull?: InputMaybe; + rebasingOption_not_eq?: InputMaybe; + rebasingOption_not_in?: InputMaybe>; +}; + +export type OTokenAddressesConnection = { + __typename?: 'OTokenAddressesConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export type OusdAaveStrategy = { - __typename?: 'OUSDAaveStrategy'; - blockNumber: Scalars['Int']['output']; - dai: Scalars['BigInt']['output']; +export type OTokenAsset = { + __typename?: 'OTokenAsset'; + address: Scalars['String']['output']; + chainId: Scalars['Int']['output']; id: Scalars['String']['output']; - timestamp: Scalars['DateTime']['output']; - usdc: Scalars['BigInt']['output']; - usdt: Scalars['BigInt']['output']; + otoken: Scalars['String']['output']; + symbol: Scalars['String']['output']; }; -export type OusdAaveStrategyEdge = { - __typename?: 'OUSDAaveStrategyEdge'; +export type OTokenAssetEdge = { + __typename?: 'OTokenAssetEdge'; cursor: Scalars['String']['output']; - node: OusdAaveStrategy; + node: OTokenAsset; }; -export enum OusdAaveStrategyOrderByInput { - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - DaiAsc = 'dai_ASC', - DaiAscNullsFirst = 'dai_ASC_NULLS_FIRST', - DaiDesc = 'dai_DESC', - DaiDescNullsLast = 'dai_DESC_NULLS_LAST', +export enum OTokenAssetOrderByInput { + AddressAsc = 'address_ASC', + AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', + AddressDesc = 'address_DESC', + AddressDescNullsLast = 'address_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - UsdcAsc = 'usdc_ASC', - UsdcAscNullsFirst = 'usdc_ASC_NULLS_FIRST', - UsdcDesc = 'usdc_DESC', - UsdcDescNullsLast = 'usdc_DESC_NULLS_LAST', - UsdtAsc = 'usdt_ASC', - UsdtAscNullsFirst = 'usdt_ASC_NULLS_FIRST', - UsdtDesc = 'usdt_DESC', - UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', + SymbolAsc = 'symbol_ASC', + SymbolAscNullsFirst = 'symbol_ASC_NULLS_FIRST', + SymbolDesc = 'symbol_DESC', + SymbolDescNullsLast = 'symbol_DESC_NULLS_LAST' } -export type OusdAaveStrategyWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - dai_eq?: InputMaybe; - dai_gt?: InputMaybe; - dai_gte?: InputMaybe; - dai_in?: InputMaybe>; - dai_isNull?: InputMaybe; - dai_lt?: InputMaybe; - dai_lte?: InputMaybe; - dai_not_eq?: InputMaybe; - dai_not_in?: InputMaybe>; +export type OTokenAssetWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + address_contains?: InputMaybe; + address_containsInsensitive?: InputMaybe; + address_endsWith?: InputMaybe; + address_eq?: InputMaybe; + address_gt?: InputMaybe; + address_gte?: InputMaybe; + address_in?: InputMaybe>; + address_isNull?: InputMaybe; + address_lt?: InputMaybe; + address_lte?: InputMaybe; + address_not_contains?: InputMaybe; + address_not_containsInsensitive?: InputMaybe; + address_not_endsWith?: InputMaybe; + address_not_eq?: InputMaybe; + address_not_in?: InputMaybe>; + address_not_startsWith?: InputMaybe; + address_startsWith?: InputMaybe; + chainId_eq?: InputMaybe; + chainId_gt?: InputMaybe; + chainId_gte?: InputMaybe; + chainId_in?: InputMaybe>; + chainId_isNull?: InputMaybe; + chainId_lt?: InputMaybe; + chainId_lte?: InputMaybe; + chainId_not_eq?: InputMaybe; + chainId_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -7985,226 +7070,193 @@ export type OusdAaveStrategyWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - timestamp_eq?: InputMaybe; - timestamp_gt?: InputMaybe; - timestamp_gte?: InputMaybe; - timestamp_in?: InputMaybe>; - timestamp_isNull?: InputMaybe; - timestamp_lt?: InputMaybe; - timestamp_lte?: InputMaybe; - timestamp_not_eq?: InputMaybe; - timestamp_not_in?: InputMaybe>; - usdc_eq?: InputMaybe; - usdc_gt?: InputMaybe; - usdc_gte?: InputMaybe; - usdc_in?: InputMaybe>; - usdc_isNull?: InputMaybe; - usdc_lt?: InputMaybe; - usdc_lte?: InputMaybe; - usdc_not_eq?: InputMaybe; - usdc_not_in?: InputMaybe>; - usdt_eq?: InputMaybe; - usdt_gt?: InputMaybe; - usdt_gte?: InputMaybe; - usdt_in?: InputMaybe>; - usdt_isNull?: InputMaybe; - usdt_lt?: InputMaybe; - usdt_lte?: InputMaybe; - usdt_not_eq?: InputMaybe; - usdt_not_in?: InputMaybe>; + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; + symbol_contains?: InputMaybe; + symbol_containsInsensitive?: InputMaybe; + symbol_endsWith?: InputMaybe; + symbol_eq?: InputMaybe; + symbol_gt?: InputMaybe; + symbol_gte?: InputMaybe; + symbol_in?: InputMaybe>; + symbol_isNull?: InputMaybe; + symbol_lt?: InputMaybe; + symbol_lte?: InputMaybe; + symbol_not_contains?: InputMaybe; + symbol_not_containsInsensitive?: InputMaybe; + symbol_not_endsWith?: InputMaybe; + symbol_not_eq?: InputMaybe; + symbol_not_in?: InputMaybe>; + symbol_not_startsWith?: InputMaybe; + symbol_startsWith?: InputMaybe; }; -export type OusdActivitiesConnection = { - __typename?: 'OUSDActivitiesConnection'; - edges: Array; +export type OTokenAssetsConnection = { + __typename?: 'OTokenAssetsConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export type OusdActivity = { - __typename?: 'OUSDActivity'; - action?: Maybe; - address?: Maybe; - amount?: Maybe; +export type OTokenEdge = { + __typename?: 'OTokenEdge'; + cursor: Scalars['String']['output']; + node: OToken; +}; + +export type OTokenHistoriesConnection = { + __typename?: 'OTokenHistoriesConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; +}; + +export type OTokenHistory = { + __typename?: 'OTokenHistory'; + address: OTokenAddress; + balance: Scalars['BigInt']['output']; blockNumber: Scalars['Int']['output']; - callDataLast4Bytes: Scalars['String']['output']; - exchange?: Maybe; - fromSymbol?: Maybe; + chainId: Scalars['Int']['output']; id: Scalars['String']['output']; - interface?: Maybe; - sighash?: Maybe; + otoken: Scalars['String']['output']; timestamp: Scalars['DateTime']['output']; - toSymbol?: Maybe; txHash: Scalars['String']['output']; + type: HistoryType; + value: Scalars['BigInt']['output']; }; -export type OusdActivityEdge = { - __typename?: 'OUSDActivityEdge'; +export type OTokenHistoryEdge = { + __typename?: 'OTokenHistoryEdge'; cursor: Scalars['String']['output']; - node: OusdActivity; + node: OTokenHistory; }; -export enum OusdActivityOrderByInput { - ActionAsc = 'action_ASC', - ActionAscNullsFirst = 'action_ASC_NULLS_FIRST', - ActionDesc = 'action_DESC', - ActionDescNullsLast = 'action_DESC_NULLS_LAST', - AddressAsc = 'address_ASC', - AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', - AddressDesc = 'address_DESC', - AddressDescNullsLast = 'address_DESC_NULLS_LAST', - AmountAsc = 'amount_ASC', - AmountAscNullsFirst = 'amount_ASC_NULLS_FIRST', - AmountDesc = 'amount_DESC', - AmountDescNullsLast = 'amount_DESC_NULLS_LAST', +export enum OTokenHistoryOrderByInput { + AddressAddressAsc = 'address_address_ASC', + AddressAddressAscNullsFirst = 'address_address_ASC_NULLS_FIRST', + AddressAddressDesc = 'address_address_DESC', + AddressAddressDescNullsLast = 'address_address_DESC_NULLS_LAST', + AddressBalanceAsc = 'address_balance_ASC', + AddressBalanceAscNullsFirst = 'address_balance_ASC_NULLS_FIRST', + AddressBalanceDesc = 'address_balance_DESC', + AddressBalanceDescNullsLast = 'address_balance_DESC_NULLS_LAST', + AddressChainIdAsc = 'address_chainId_ASC', + AddressChainIdAscNullsFirst = 'address_chainId_ASC_NULLS_FIRST', + AddressChainIdDesc = 'address_chainId_DESC', + AddressChainIdDescNullsLast = 'address_chainId_DESC_NULLS_LAST', + AddressCreditsAsc = 'address_credits_ASC', + AddressCreditsAscNullsFirst = 'address_credits_ASC_NULLS_FIRST', + AddressCreditsDesc = 'address_credits_DESC', + AddressCreditsDescNullsLast = 'address_credits_DESC_NULLS_LAST', + AddressEarnedAsc = 'address_earned_ASC', + AddressEarnedAscNullsFirst = 'address_earned_ASC_NULLS_FIRST', + AddressEarnedDesc = 'address_earned_DESC', + AddressEarnedDescNullsLast = 'address_earned_DESC_NULLS_LAST', + AddressIdAsc = 'address_id_ASC', + AddressIdAscNullsFirst = 'address_id_ASC_NULLS_FIRST', + AddressIdDesc = 'address_id_DESC', + AddressIdDescNullsLast = 'address_id_DESC_NULLS_LAST', + AddressIsContractAsc = 'address_isContract_ASC', + AddressIsContractAscNullsFirst = 'address_isContract_ASC_NULLS_FIRST', + AddressIsContractDesc = 'address_isContract_DESC', + AddressIsContractDescNullsLast = 'address_isContract_DESC_NULLS_LAST', + AddressLastUpdatedAsc = 'address_lastUpdated_ASC', + AddressLastUpdatedAscNullsFirst = 'address_lastUpdated_ASC_NULLS_FIRST', + AddressLastUpdatedDesc = 'address_lastUpdated_DESC', + AddressLastUpdatedDescNullsLast = 'address_lastUpdated_DESC_NULLS_LAST', + AddressOtokenAsc = 'address_otoken_ASC', + AddressOtokenAscNullsFirst = 'address_otoken_ASC_NULLS_FIRST', + AddressOtokenDesc = 'address_otoken_DESC', + AddressOtokenDescNullsLast = 'address_otoken_DESC_NULLS_LAST', + AddressRebasingOptionAsc = 'address_rebasingOption_ASC', + AddressRebasingOptionAscNullsFirst = 'address_rebasingOption_ASC_NULLS_FIRST', + AddressRebasingOptionDesc = 'address_rebasingOption_DESC', + AddressRebasingOptionDescNullsLast = 'address_rebasingOption_DESC_NULLS_LAST', + BalanceAsc = 'balance_ASC', + BalanceAscNullsFirst = 'balance_ASC_NULLS_FIRST', + BalanceDesc = 'balance_DESC', + BalanceDescNullsLast = 'balance_DESC_NULLS_LAST', BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - CallDataLast4BytesAsc = 'callDataLast4Bytes_ASC', - CallDataLast4BytesAscNullsFirst = 'callDataLast4Bytes_ASC_NULLS_FIRST', - CallDataLast4BytesDesc = 'callDataLast4Bytes_DESC', - CallDataLast4BytesDescNullsLast = 'callDataLast4Bytes_DESC_NULLS_LAST', - ExchangeAsc = 'exchange_ASC', - ExchangeAscNullsFirst = 'exchange_ASC_NULLS_FIRST', - ExchangeDesc = 'exchange_DESC', - ExchangeDescNullsLast = 'exchange_DESC_NULLS_LAST', - FromSymbolAsc = 'fromSymbol_ASC', - FromSymbolAscNullsFirst = 'fromSymbol_ASC_NULLS_FIRST', - FromSymbolDesc = 'fromSymbol_DESC', - FromSymbolDescNullsLast = 'fromSymbol_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - InterfaceAsc = 'interface_ASC', - InterfaceAscNullsFirst = 'interface_ASC_NULLS_FIRST', - InterfaceDesc = 'interface_DESC', - InterfaceDescNullsLast = 'interface_DESC_NULLS_LAST', - SighashAsc = 'sighash_ASC', - SighashAscNullsFirst = 'sighash_ASC_NULLS_FIRST', - SighashDesc = 'sighash_DESC', - SighashDescNullsLast = 'sighash_DESC_NULLS_LAST', + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - ToSymbolAsc = 'toSymbol_ASC', - ToSymbolAscNullsFirst = 'toSymbol_ASC_NULLS_FIRST', - ToSymbolDesc = 'toSymbol_DESC', - ToSymbolDescNullsLast = 'toSymbol_DESC_NULLS_LAST', TxHashAsc = 'txHash_ASC', TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST' -} - -export type OusdActivityWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - action_contains?: InputMaybe; - action_containsInsensitive?: InputMaybe; - action_endsWith?: InputMaybe; - action_eq?: InputMaybe; - action_gt?: InputMaybe; - action_gte?: InputMaybe; - action_in?: InputMaybe>; - action_isNull?: InputMaybe; - action_lt?: InputMaybe; - action_lte?: InputMaybe; - action_not_contains?: InputMaybe; - action_not_containsInsensitive?: InputMaybe; - action_not_endsWith?: InputMaybe; - action_not_eq?: InputMaybe; - action_not_in?: InputMaybe>; - action_not_startsWith?: InputMaybe; - action_startsWith?: InputMaybe; - address_contains?: InputMaybe; - address_containsInsensitive?: InputMaybe; - address_endsWith?: InputMaybe; - address_eq?: InputMaybe; - address_gt?: InputMaybe; - address_gte?: InputMaybe; - address_in?: InputMaybe>; - address_isNull?: InputMaybe; - address_lt?: InputMaybe; - address_lte?: InputMaybe; - address_not_contains?: InputMaybe; - address_not_containsInsensitive?: InputMaybe; - address_not_endsWith?: InputMaybe; - address_not_eq?: InputMaybe; - address_not_in?: InputMaybe>; - address_not_startsWith?: InputMaybe; - address_startsWith?: InputMaybe; - amount_eq?: InputMaybe; - amount_gt?: InputMaybe; - amount_gte?: InputMaybe; - amount_in?: InputMaybe>; - amount_isNull?: InputMaybe; - amount_lt?: InputMaybe; - amount_lte?: InputMaybe; - amount_not_eq?: InputMaybe; - amount_not_in?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - callDataLast4Bytes_contains?: InputMaybe; - callDataLast4Bytes_containsInsensitive?: InputMaybe; - callDataLast4Bytes_endsWith?: InputMaybe; - callDataLast4Bytes_eq?: InputMaybe; - callDataLast4Bytes_gt?: InputMaybe; - callDataLast4Bytes_gte?: InputMaybe; - callDataLast4Bytes_in?: InputMaybe>; - callDataLast4Bytes_isNull?: InputMaybe; - callDataLast4Bytes_lt?: InputMaybe; - callDataLast4Bytes_lte?: InputMaybe; - callDataLast4Bytes_not_contains?: InputMaybe; - callDataLast4Bytes_not_containsInsensitive?: InputMaybe; - callDataLast4Bytes_not_endsWith?: InputMaybe; - callDataLast4Bytes_not_eq?: InputMaybe; - callDataLast4Bytes_not_in?: InputMaybe>; - callDataLast4Bytes_not_startsWith?: InputMaybe; - callDataLast4Bytes_startsWith?: InputMaybe; - exchange_contains?: InputMaybe; - exchange_containsInsensitive?: InputMaybe; - exchange_endsWith?: InputMaybe; - exchange_eq?: InputMaybe; - exchange_gt?: InputMaybe; - exchange_gte?: InputMaybe; - exchange_in?: InputMaybe>; - exchange_isNull?: InputMaybe; - exchange_lt?: InputMaybe; - exchange_lte?: InputMaybe; - exchange_not_contains?: InputMaybe; - exchange_not_containsInsensitive?: InputMaybe; - exchange_not_endsWith?: InputMaybe; - exchange_not_eq?: InputMaybe; - exchange_not_in?: InputMaybe>; - exchange_not_startsWith?: InputMaybe; - exchange_startsWith?: InputMaybe; - fromSymbol_contains?: InputMaybe; - fromSymbol_containsInsensitive?: InputMaybe; - fromSymbol_endsWith?: InputMaybe; - fromSymbol_eq?: InputMaybe; - fromSymbol_gt?: InputMaybe; - fromSymbol_gte?: InputMaybe; - fromSymbol_in?: InputMaybe>; - fromSymbol_isNull?: InputMaybe; - fromSymbol_lt?: InputMaybe; - fromSymbol_lte?: InputMaybe; - fromSymbol_not_contains?: InputMaybe; - fromSymbol_not_containsInsensitive?: InputMaybe; - fromSymbol_not_endsWith?: InputMaybe; - fromSymbol_not_eq?: InputMaybe; - fromSymbol_not_in?: InputMaybe>; - fromSymbol_not_startsWith?: InputMaybe; - fromSymbol_startsWith?: InputMaybe; + TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST', + TypeAsc = 'type_ASC', + TypeAscNullsFirst = 'type_ASC_NULLS_FIRST', + TypeDesc = 'type_DESC', + TypeDescNullsLast = 'type_DESC_NULLS_LAST', + ValueAsc = 'value_ASC', + ValueAscNullsFirst = 'value_ASC_NULLS_FIRST', + ValueDesc = 'value_DESC', + ValueDescNullsLast = 'value_DESC_NULLS_LAST' +} + +export type OTokenHistoryWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + address?: InputMaybe; + address_isNull?: InputMaybe; + balance_eq?: InputMaybe; + balance_gt?: InputMaybe; + balance_gte?: InputMaybe; + balance_in?: InputMaybe>; + balance_isNull?: InputMaybe; + balance_lt?: InputMaybe; + balance_lte?: InputMaybe; + balance_not_eq?: InputMaybe; + balance_not_in?: InputMaybe>; + blockNumber_eq?: InputMaybe; + blockNumber_gt?: InputMaybe; + blockNumber_gte?: InputMaybe; + blockNumber_in?: InputMaybe>; + blockNumber_isNull?: InputMaybe; + blockNumber_lt?: InputMaybe; + blockNumber_lte?: InputMaybe; + blockNumber_not_eq?: InputMaybe; + blockNumber_not_in?: InputMaybe>; + chainId_eq?: InputMaybe; + chainId_gt?: InputMaybe; + chainId_gte?: InputMaybe; + chainId_in?: InputMaybe>; + chainId_isNull?: InputMaybe; + chainId_lt?: InputMaybe; + chainId_lte?: InputMaybe; + chainId_not_eq?: InputMaybe; + chainId_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -8222,40 +7274,23 @@ export type OusdActivityWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - interface_contains?: InputMaybe; - interface_containsInsensitive?: InputMaybe; - interface_endsWith?: InputMaybe; - interface_eq?: InputMaybe; - interface_gt?: InputMaybe; - interface_gte?: InputMaybe; - interface_in?: InputMaybe>; - interface_isNull?: InputMaybe; - interface_lt?: InputMaybe; - interface_lte?: InputMaybe; - interface_not_contains?: InputMaybe; - interface_not_containsInsensitive?: InputMaybe; - interface_not_endsWith?: InputMaybe; - interface_not_eq?: InputMaybe; - interface_not_in?: InputMaybe>; - interface_not_startsWith?: InputMaybe; - interface_startsWith?: InputMaybe; - sighash_contains?: InputMaybe; - sighash_containsInsensitive?: InputMaybe; - sighash_endsWith?: InputMaybe; - sighash_eq?: InputMaybe; - sighash_gt?: InputMaybe; - sighash_gte?: InputMaybe; - sighash_in?: InputMaybe>; - sighash_isNull?: InputMaybe; - sighash_lt?: InputMaybe; - sighash_lte?: InputMaybe; - sighash_not_contains?: InputMaybe; - sighash_not_containsInsensitive?: InputMaybe; - sighash_not_endsWith?: InputMaybe; - sighash_not_eq?: InputMaybe; - sighash_not_in?: InputMaybe>; - sighash_not_startsWith?: InputMaybe; - sighash_startsWith?: InputMaybe; + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -8265,23 +7300,6 @@ export type OusdActivityWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - toSymbol_contains?: InputMaybe; - toSymbol_containsInsensitive?: InputMaybe; - toSymbol_endsWith?: InputMaybe; - toSymbol_eq?: InputMaybe; - toSymbol_gt?: InputMaybe; - toSymbol_gte?: InputMaybe; - toSymbol_in?: InputMaybe>; - toSymbol_isNull?: InputMaybe; - toSymbol_lt?: InputMaybe; - toSymbol_lte?: InputMaybe; - toSymbol_not_contains?: InputMaybe; - toSymbol_not_containsInsensitive?: InputMaybe; - toSymbol_not_endsWith?: InputMaybe; - toSymbol_not_eq?: InputMaybe; - toSymbol_not_in?: InputMaybe>; - toSymbol_not_startsWith?: InputMaybe; - toSymbol_startsWith?: InputMaybe; txHash_contains?: InputMaybe; txHash_containsInsensitive?: InputMaybe; txHash_endsWith?: InputMaybe; @@ -8299,191 +7317,193 @@ export type OusdActivityWhereInput = { txHash_not_in?: InputMaybe>; txHash_not_startsWith?: InputMaybe; txHash_startsWith?: InputMaybe; + type_eq?: InputMaybe; + type_in?: InputMaybe>; + type_isNull?: InputMaybe; + type_not_eq?: InputMaybe; + type_not_in?: InputMaybe>; + value_eq?: InputMaybe; + value_gt?: InputMaybe; + value_gte?: InputMaybe; + value_in?: InputMaybe>; + value_isNull?: InputMaybe; + value_lt?: InputMaybe; + value_lte?: InputMaybe; + value_not_eq?: InputMaybe; + value_not_in?: InputMaybe>; }; -/** The OUSD balance, history and other information for a given address. */ -export type OusdAddress = { - __typename?: 'OUSDAddress'; - balance: Scalars['BigInt']['output']; - credits: Scalars['BigInt']['output']; - earned: Scalars['BigInt']['output']; - history: Array; - id: Scalars['String']['output']; - isContract: Scalars['Boolean']['output']; - lastUpdated: Scalars['DateTime']['output']; - rebasingOption: RebasingOption; -}; - - -/** The OUSD balance, history and other information for a given address. */ -export type OusdAddressHistoryArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - -export type OusdAddressEdge = { - __typename?: 'OUSDAddressEdge'; - cursor: Scalars['String']['output']; - node: OusdAddress; -}; - -export enum OusdAddressOrderByInput { - BalanceAsc = 'balance_ASC', - BalanceAscNullsFirst = 'balance_ASC_NULLS_FIRST', - BalanceDesc = 'balance_DESC', - BalanceDescNullsLast = 'balance_DESC_NULLS_LAST', - CreditsAsc = 'credits_ASC', - CreditsAscNullsFirst = 'credits_ASC_NULLS_FIRST', - CreditsDesc = 'credits_DESC', - CreditsDescNullsLast = 'credits_DESC_NULLS_LAST', - EarnedAsc = 'earned_ASC', - EarnedAscNullsFirst = 'earned_ASC_NULLS_FIRST', - EarnedDesc = 'earned_DESC', - EarnedDescNullsLast = 'earned_DESC_NULLS_LAST', +export enum OTokenOrderByInput { + BlockNumberAsc = 'blockNumber_ASC', + BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', + BlockNumberDesc = 'blockNumber_DESC', + BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - IsContractAsc = 'isContract_ASC', - IsContractAscNullsFirst = 'isContract_ASC_NULLS_FIRST', - IsContractDesc = 'isContract_DESC', - IsContractDescNullsLast = 'isContract_DESC_NULLS_LAST', - LastUpdatedAsc = 'lastUpdated_ASC', - LastUpdatedAscNullsFirst = 'lastUpdated_ASC_NULLS_FIRST', - LastUpdatedDesc = 'lastUpdated_DESC', - LastUpdatedDescNullsLast = 'lastUpdated_DESC_NULLS_LAST', - RebasingOptionAsc = 'rebasingOption_ASC', - RebasingOptionAscNullsFirst = 'rebasingOption_ASC_NULLS_FIRST', - RebasingOptionDesc = 'rebasingOption_DESC', - RebasingOptionDescNullsLast = 'rebasingOption_DESC_NULLS_LAST' + NonRebasingSupplyAsc = 'nonRebasingSupply_ASC', + NonRebasingSupplyAscNullsFirst = 'nonRebasingSupply_ASC_NULLS_FIRST', + NonRebasingSupplyDesc = 'nonRebasingSupply_DESC', + NonRebasingSupplyDescNullsLast = 'nonRebasingSupply_DESC_NULLS_LAST', + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', + RebasingSupplyAsc = 'rebasingSupply_ASC', + RebasingSupplyAscNullsFirst = 'rebasingSupply_ASC_NULLS_FIRST', + RebasingSupplyDesc = 'rebasingSupply_DESC', + RebasingSupplyDescNullsLast = 'rebasingSupply_DESC_NULLS_LAST', + TimestampAsc = 'timestamp_ASC', + TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', + TimestampDesc = 'timestamp_DESC', + TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', + TotalSupplyAsc = 'totalSupply_ASC', + TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', + TotalSupplyDesc = 'totalSupply_DESC', + TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST' } -export type OusdAddressWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - balance_eq?: InputMaybe; - balance_gt?: InputMaybe; - balance_gte?: InputMaybe; - balance_in?: InputMaybe>; - balance_isNull?: InputMaybe; - balance_lt?: InputMaybe; - balance_lte?: InputMaybe; - balance_not_eq?: InputMaybe; - balance_not_in?: InputMaybe>; - credits_eq?: InputMaybe; - credits_gt?: InputMaybe; - credits_gte?: InputMaybe; - credits_in?: InputMaybe>; - credits_isNull?: InputMaybe; - credits_lt?: InputMaybe; - credits_lte?: InputMaybe; - credits_not_eq?: InputMaybe; - credits_not_in?: InputMaybe>; - earned_eq?: InputMaybe; - earned_gt?: InputMaybe; - earned_gte?: InputMaybe; - earned_in?: InputMaybe>; - earned_isNull?: InputMaybe; - earned_lt?: InputMaybe; - earned_lte?: InputMaybe; - earned_not_eq?: InputMaybe; - earned_not_in?: InputMaybe>; - history_every?: InputMaybe; - history_none?: InputMaybe; - history_some?: InputMaybe; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - isContract_eq?: InputMaybe; - isContract_isNull?: InputMaybe; - isContract_not_eq?: InputMaybe; - lastUpdated_eq?: InputMaybe; - lastUpdated_gt?: InputMaybe; - lastUpdated_gte?: InputMaybe; - lastUpdated_in?: InputMaybe>; - lastUpdated_isNull?: InputMaybe; - lastUpdated_lt?: InputMaybe; - lastUpdated_lte?: InputMaybe; - lastUpdated_not_eq?: InputMaybe; - lastUpdated_not_in?: InputMaybe>; - rebasingOption_eq?: InputMaybe; - rebasingOption_in?: InputMaybe>; - rebasingOption_isNull?: InputMaybe; - rebasingOption_not_eq?: InputMaybe; - rebasingOption_not_in?: InputMaybe>; +export type OTokenRebase = { + __typename?: 'OTokenRebase'; + apy: OTokenApy; + blockNumber: Scalars['Int']['output']; + chainId: Scalars['Int']['output']; + feeETH: Scalars['BigInt']['output']; + feeUSD: Scalars['BigInt']['output']; + id: Scalars['String']['output']; + otoken: Scalars['String']['output']; + rebasingCredits: Scalars['BigInt']['output']; + rebasingCreditsPerToken: Scalars['BigInt']['output']; + timestamp: Scalars['DateTime']['output']; + totalSupply: Scalars['BigInt']['output']; + txHash: Scalars['String']['output']; + yieldETH: Scalars['BigInt']['output']; + yieldUSD: Scalars['BigInt']['output']; }; -export type OusdAddressesConnection = { - __typename?: 'OUSDAddressesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; +export type OTokenRebaseEdge = { + __typename?: 'OTokenRebaseEdge'; + cursor: Scalars['String']['output']; + node: OTokenRebase; }; -export type OusdAsset = { - __typename?: 'OUSDAsset'; - address: Scalars['String']['output']; +export type OTokenRebaseOption = { + __typename?: 'OTokenRebaseOption'; + address: OTokenAddress; + blockNumber: Scalars['Int']['output']; + chainId: Scalars['Int']['output']; id: Scalars['String']['output']; - symbol: Scalars['String']['output']; + otoken: Scalars['String']['output']; + status: RebasingOption; + timestamp: Scalars['DateTime']['output']; + txHash: Scalars['String']['output']; }; -export type OusdAssetEdge = { - __typename?: 'OUSDAssetEdge'; +export type OTokenRebaseOptionEdge = { + __typename?: 'OTokenRebaseOptionEdge'; cursor: Scalars['String']['output']; - node: OusdAsset; + node: OTokenRebaseOption; }; -export enum OusdAssetOrderByInput { - AddressAsc = 'address_ASC', - AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', - AddressDesc = 'address_DESC', - AddressDescNullsLast = 'address_DESC_NULLS_LAST', +export enum OTokenRebaseOptionOrderByInput { + AddressAddressAsc = 'address_address_ASC', + AddressAddressAscNullsFirst = 'address_address_ASC_NULLS_FIRST', + AddressAddressDesc = 'address_address_DESC', + AddressAddressDescNullsLast = 'address_address_DESC_NULLS_LAST', + AddressBalanceAsc = 'address_balance_ASC', + AddressBalanceAscNullsFirst = 'address_balance_ASC_NULLS_FIRST', + AddressBalanceDesc = 'address_balance_DESC', + AddressBalanceDescNullsLast = 'address_balance_DESC_NULLS_LAST', + AddressChainIdAsc = 'address_chainId_ASC', + AddressChainIdAscNullsFirst = 'address_chainId_ASC_NULLS_FIRST', + AddressChainIdDesc = 'address_chainId_DESC', + AddressChainIdDescNullsLast = 'address_chainId_DESC_NULLS_LAST', + AddressCreditsAsc = 'address_credits_ASC', + AddressCreditsAscNullsFirst = 'address_credits_ASC_NULLS_FIRST', + AddressCreditsDesc = 'address_credits_DESC', + AddressCreditsDescNullsLast = 'address_credits_DESC_NULLS_LAST', + AddressEarnedAsc = 'address_earned_ASC', + AddressEarnedAscNullsFirst = 'address_earned_ASC_NULLS_FIRST', + AddressEarnedDesc = 'address_earned_DESC', + AddressEarnedDescNullsLast = 'address_earned_DESC_NULLS_LAST', + AddressIdAsc = 'address_id_ASC', + AddressIdAscNullsFirst = 'address_id_ASC_NULLS_FIRST', + AddressIdDesc = 'address_id_DESC', + AddressIdDescNullsLast = 'address_id_DESC_NULLS_LAST', + AddressIsContractAsc = 'address_isContract_ASC', + AddressIsContractAscNullsFirst = 'address_isContract_ASC_NULLS_FIRST', + AddressIsContractDesc = 'address_isContract_DESC', + AddressIsContractDescNullsLast = 'address_isContract_DESC_NULLS_LAST', + AddressLastUpdatedAsc = 'address_lastUpdated_ASC', + AddressLastUpdatedAscNullsFirst = 'address_lastUpdated_ASC_NULLS_FIRST', + AddressLastUpdatedDesc = 'address_lastUpdated_DESC', + AddressLastUpdatedDescNullsLast = 'address_lastUpdated_DESC_NULLS_LAST', + AddressOtokenAsc = 'address_otoken_ASC', + AddressOtokenAscNullsFirst = 'address_otoken_ASC_NULLS_FIRST', + AddressOtokenDesc = 'address_otoken_DESC', + AddressOtokenDescNullsLast = 'address_otoken_DESC_NULLS_LAST', + AddressRebasingOptionAsc = 'address_rebasingOption_ASC', + AddressRebasingOptionAscNullsFirst = 'address_rebasingOption_ASC_NULLS_FIRST', + AddressRebasingOptionDesc = 'address_rebasingOption_DESC', + AddressRebasingOptionDescNullsLast = 'address_rebasingOption_DESC_NULLS_LAST', + BlockNumberAsc = 'blockNumber_ASC', + BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', + BlockNumberDesc = 'blockNumber_DESC', + BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - SymbolAsc = 'symbol_ASC', - SymbolAscNullsFirst = 'symbol_ASC_NULLS_FIRST', - SymbolDesc = 'symbol_DESC', - SymbolDescNullsLast = 'symbol_DESC_NULLS_LAST' + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', + StatusAsc = 'status_ASC', + StatusAscNullsFirst = 'status_ASC_NULLS_FIRST', + StatusDesc = 'status_DESC', + StatusDescNullsLast = 'status_DESC_NULLS_LAST', + TimestampAsc = 'timestamp_ASC', + TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', + TimestampDesc = 'timestamp_DESC', + TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', + TxHashAsc = 'txHash_ASC', + TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', + TxHashDesc = 'txHash_DESC', + TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST' } -export type OusdAssetWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - address_contains?: InputMaybe; - address_containsInsensitive?: InputMaybe; - address_endsWith?: InputMaybe; - address_eq?: InputMaybe; - address_gt?: InputMaybe; - address_gte?: InputMaybe; - address_in?: InputMaybe>; +export type OTokenRebaseOptionWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + address?: InputMaybe; address_isNull?: InputMaybe; - address_lt?: InputMaybe; - address_lte?: InputMaybe; - address_not_contains?: InputMaybe; - address_not_containsInsensitive?: InputMaybe; - address_not_endsWith?: InputMaybe; - address_not_eq?: InputMaybe; - address_not_in?: InputMaybe>; - address_not_startsWith?: InputMaybe; - address_startsWith?: InputMaybe; + blockNumber_eq?: InputMaybe; + blockNumber_gt?: InputMaybe; + blockNumber_gte?: InputMaybe; + blockNumber_in?: InputMaybe>; + blockNumber_isNull?: InputMaybe; + blockNumber_lt?: InputMaybe; + blockNumber_lte?: InputMaybe; + blockNumber_not_eq?: InputMaybe; + blockNumber_not_in?: InputMaybe>; + chainId_eq?: InputMaybe; + chainId_gt?: InputMaybe; + chainId_gte?: InputMaybe; + chainId_in?: InputMaybe>; + chainId_isNull?: InputMaybe; + chainId_lt?: InputMaybe; + chainId_lte?: InputMaybe; + chainId_not_eq?: InputMaybe; + chainId_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -8501,209 +7521,211 @@ export type OusdAssetWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - symbol_contains?: InputMaybe; - symbol_containsInsensitive?: InputMaybe; - symbol_endsWith?: InputMaybe; - symbol_eq?: InputMaybe; - symbol_gt?: InputMaybe; - symbol_gte?: InputMaybe; - symbol_in?: InputMaybe>; - symbol_isNull?: InputMaybe; - symbol_lt?: InputMaybe; - symbol_lte?: InputMaybe; - symbol_not_contains?: InputMaybe; - symbol_not_containsInsensitive?: InputMaybe; - symbol_not_endsWith?: InputMaybe; - symbol_not_eq?: InputMaybe; - symbol_not_in?: InputMaybe>; - symbol_not_startsWith?: InputMaybe; - symbol_startsWith?: InputMaybe; -}; - -export type OusdAssetsConnection = { - __typename?: 'OUSDAssetsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OusdCollateralDailyStat = { - __typename?: 'OUSDCollateralDailyStat'; - amount: Scalars['BigInt']['output']; - dailyStatId: OusdDailyStat; - id: Scalars['String']['output']; - price: Scalars['BigInt']['output']; - symbol: Scalars['String']['output']; - value: Scalars['BigInt']['output']; -}; - -export type OusdCollateralDailyStatEdge = { - __typename?: 'OUSDCollateralDailyStatEdge'; - cursor: Scalars['String']['output']; - node: OusdCollateralDailyStat; -}; - -export enum OusdCollateralDailyStatOrderByInput { - AmountAsc = 'amount_ASC', - AmountAscNullsFirst = 'amount_ASC_NULLS_FIRST', - AmountDesc = 'amount_DESC', - AmountDescNullsLast = 'amount_DESC_NULLS_LAST', - DailyStatIdAmoSupplyAsc = 'dailyStatId_amoSupply_ASC', - DailyStatIdAmoSupplyAscNullsFirst = 'dailyStatId_amoSupply_ASC_NULLS_FIRST', - DailyStatIdAmoSupplyDesc = 'dailyStatId_amoSupply_DESC', - DailyStatIdAmoSupplyDescNullsLast = 'dailyStatId_amoSupply_DESC_NULLS_LAST', - DailyStatIdAprAsc = 'dailyStatId_apr_ASC', - DailyStatIdAprAscNullsFirst = 'dailyStatId_apr_ASC_NULLS_FIRST', - DailyStatIdAprDesc = 'dailyStatId_apr_DESC', - DailyStatIdAprDescNullsLast = 'dailyStatId_apr_DESC_NULLS_LAST', - DailyStatIdApy7DayAvgAsc = 'dailyStatId_apy7DayAvg_ASC', - DailyStatIdApy7DayAvgAscNullsFirst = 'dailyStatId_apy7DayAvg_ASC_NULLS_FIRST', - DailyStatIdApy7DayAvgDesc = 'dailyStatId_apy7DayAvg_DESC', - DailyStatIdApy7DayAvgDescNullsLast = 'dailyStatId_apy7DayAvg_DESC_NULLS_LAST', - DailyStatIdApy14DayAvgAsc = 'dailyStatId_apy14DayAvg_ASC', - DailyStatIdApy14DayAvgAscNullsFirst = 'dailyStatId_apy14DayAvg_ASC_NULLS_FIRST', - DailyStatIdApy14DayAvgDesc = 'dailyStatId_apy14DayAvg_DESC', - DailyStatIdApy14DayAvgDescNullsLast = 'dailyStatId_apy14DayAvg_DESC_NULLS_LAST', - DailyStatIdApy30DayAvgAsc = 'dailyStatId_apy30DayAvg_ASC', - DailyStatIdApy30DayAvgAscNullsFirst = 'dailyStatId_apy30DayAvg_ASC_NULLS_FIRST', - DailyStatIdApy30DayAvgDesc = 'dailyStatId_apy30DayAvg_DESC', - DailyStatIdApy30DayAvgDescNullsLast = 'dailyStatId_apy30DayAvg_DESC_NULLS_LAST', - DailyStatIdApyAsc = 'dailyStatId_apy_ASC', - DailyStatIdApyAscNullsFirst = 'dailyStatId_apy_ASC_NULLS_FIRST', - DailyStatIdApyDesc = 'dailyStatId_apy_DESC', - DailyStatIdApyDescNullsLast = 'dailyStatId_apy_DESC_NULLS_LAST', - DailyStatIdBlockNumberAsc = 'dailyStatId_blockNumber_ASC', - DailyStatIdBlockNumberAscNullsFirst = 'dailyStatId_blockNumber_ASC_NULLS_FIRST', - DailyStatIdBlockNumberDesc = 'dailyStatId_blockNumber_DESC', - DailyStatIdBlockNumberDescNullsLast = 'dailyStatId_blockNumber_DESC_NULLS_LAST', - DailyStatIdDripperWethAsc = 'dailyStatId_dripperWETH_ASC', - DailyStatIdDripperWethAscNullsFirst = 'dailyStatId_dripperWETH_ASC_NULLS_FIRST', - DailyStatIdDripperWethDesc = 'dailyStatId_dripperWETH_DESC', - DailyStatIdDripperWethDescNullsLast = 'dailyStatId_dripperWETH_DESC_NULLS_LAST', - DailyStatIdFeesEth7DayAsc = 'dailyStatId_feesETH7Day_ASC', - DailyStatIdFeesEth7DayAscNullsFirst = 'dailyStatId_feesETH7Day_ASC_NULLS_FIRST', - DailyStatIdFeesEth7DayDesc = 'dailyStatId_feesETH7Day_DESC', - DailyStatIdFeesEth7DayDescNullsLast = 'dailyStatId_feesETH7Day_DESC_NULLS_LAST', - DailyStatIdFeesEthAllTimeAsc = 'dailyStatId_feesETHAllTime_ASC', - DailyStatIdFeesEthAllTimeAscNullsFirst = 'dailyStatId_feesETHAllTime_ASC_NULLS_FIRST', - DailyStatIdFeesEthAllTimeDesc = 'dailyStatId_feesETHAllTime_DESC', - DailyStatIdFeesEthAllTimeDescNullsLast = 'dailyStatId_feesETHAllTime_DESC_NULLS_LAST', - DailyStatIdFeesEthAsc = 'dailyStatId_feesETH_ASC', - DailyStatIdFeesEthAscNullsFirst = 'dailyStatId_feesETH_ASC_NULLS_FIRST', - DailyStatIdFeesEthDesc = 'dailyStatId_feesETH_DESC', - DailyStatIdFeesEthDescNullsLast = 'dailyStatId_feesETH_DESC_NULLS_LAST', - DailyStatIdFeesUsd7DayAsc = 'dailyStatId_feesUSD7Day_ASC', - DailyStatIdFeesUsd7DayAscNullsFirst = 'dailyStatId_feesUSD7Day_ASC_NULLS_FIRST', - DailyStatIdFeesUsd7DayDesc = 'dailyStatId_feesUSD7Day_DESC', - DailyStatIdFeesUsd7DayDescNullsLast = 'dailyStatId_feesUSD7Day_DESC_NULLS_LAST', - DailyStatIdFeesUsdAllTimeAsc = 'dailyStatId_feesUSDAllTime_ASC', - DailyStatIdFeesUsdAllTimeAscNullsFirst = 'dailyStatId_feesUSDAllTime_ASC_NULLS_FIRST', - DailyStatIdFeesUsdAllTimeDesc = 'dailyStatId_feesUSDAllTime_DESC', - DailyStatIdFeesUsdAllTimeDescNullsLast = 'dailyStatId_feesUSDAllTime_DESC_NULLS_LAST', - DailyStatIdFeesUsdAsc = 'dailyStatId_feesUSD_ASC', - DailyStatIdFeesUsdAscNullsFirst = 'dailyStatId_feesUSD_ASC_NULLS_FIRST', - DailyStatIdFeesUsdDesc = 'dailyStatId_feesUSD_DESC', - DailyStatIdFeesUsdDescNullsLast = 'dailyStatId_feesUSD_DESC_NULLS_LAST', - DailyStatIdHoldersOverThresholdAsc = 'dailyStatId_holdersOverThreshold_ASC', - DailyStatIdHoldersOverThresholdAscNullsFirst = 'dailyStatId_holdersOverThreshold_ASC_NULLS_FIRST', - DailyStatIdHoldersOverThresholdDesc = 'dailyStatId_holdersOverThreshold_DESC', - DailyStatIdHoldersOverThresholdDescNullsLast = 'dailyStatId_holdersOverThreshold_DESC_NULLS_LAST', - DailyStatIdIdAsc = 'dailyStatId_id_ASC', - DailyStatIdIdAscNullsFirst = 'dailyStatId_id_ASC_NULLS_FIRST', - DailyStatIdIdDesc = 'dailyStatId_id_DESC', - DailyStatIdIdDescNullsLast = 'dailyStatId_id_DESC_NULLS_LAST', - DailyStatIdMarketCapUsdAsc = 'dailyStatId_marketCapUSD_ASC', - DailyStatIdMarketCapUsdAscNullsFirst = 'dailyStatId_marketCapUSD_ASC_NULLS_FIRST', - DailyStatIdMarketCapUsdDesc = 'dailyStatId_marketCapUSD_DESC', - DailyStatIdMarketCapUsdDescNullsLast = 'dailyStatId_marketCapUSD_DESC_NULLS_LAST', - DailyStatIdNonRebasingSupplyAsc = 'dailyStatId_nonRebasingSupply_ASC', - DailyStatIdNonRebasingSupplyAscNullsFirst = 'dailyStatId_nonRebasingSupply_ASC_NULLS_FIRST', - DailyStatIdNonRebasingSupplyDesc = 'dailyStatId_nonRebasingSupply_DESC', - DailyStatIdNonRebasingSupplyDescNullsLast = 'dailyStatId_nonRebasingSupply_DESC_NULLS_LAST', - DailyStatIdPegPriceAsc = 'dailyStatId_pegPrice_ASC', - DailyStatIdPegPriceAscNullsFirst = 'dailyStatId_pegPrice_ASC_NULLS_FIRST', - DailyStatIdPegPriceDesc = 'dailyStatId_pegPrice_DESC', - DailyStatIdPegPriceDescNullsLast = 'dailyStatId_pegPrice_DESC_NULLS_LAST', - DailyStatIdRebasingSupplyAsc = 'dailyStatId_rebasingSupply_ASC', - DailyStatIdRebasingSupplyAscNullsFirst = 'dailyStatId_rebasingSupply_ASC_NULLS_FIRST', - DailyStatIdRebasingSupplyDesc = 'dailyStatId_rebasingSupply_DESC', - DailyStatIdRebasingSupplyDescNullsLast = 'dailyStatId_rebasingSupply_DESC_NULLS_LAST', - DailyStatIdTimestampAsc = 'dailyStatId_timestamp_ASC', - DailyStatIdTimestampAscNullsFirst = 'dailyStatId_timestamp_ASC_NULLS_FIRST', - DailyStatIdTimestampDesc = 'dailyStatId_timestamp_DESC', - DailyStatIdTimestampDescNullsLast = 'dailyStatId_timestamp_DESC_NULLS_LAST', - DailyStatIdTotalSupplyUsdAsc = 'dailyStatId_totalSupplyUSD_ASC', - DailyStatIdTotalSupplyUsdAscNullsFirst = 'dailyStatId_totalSupplyUSD_ASC_NULLS_FIRST', - DailyStatIdTotalSupplyUsdDesc = 'dailyStatId_totalSupplyUSD_DESC', - DailyStatIdTotalSupplyUsdDescNullsLast = 'dailyStatId_totalSupplyUSD_DESC_NULLS_LAST', - DailyStatIdTotalSupplyAsc = 'dailyStatId_totalSupply_ASC', - DailyStatIdTotalSupplyAscNullsFirst = 'dailyStatId_totalSupply_ASC_NULLS_FIRST', - DailyStatIdTotalSupplyDesc = 'dailyStatId_totalSupply_DESC', - DailyStatIdTotalSupplyDescNullsLast = 'dailyStatId_totalSupply_DESC_NULLS_LAST', - DailyStatIdTradingVolumeUsdAsc = 'dailyStatId_tradingVolumeUSD_ASC', - DailyStatIdTradingVolumeUsdAscNullsFirst = 'dailyStatId_tradingVolumeUSD_ASC_NULLS_FIRST', - DailyStatIdTradingVolumeUsdDesc = 'dailyStatId_tradingVolumeUSD_DESC', - DailyStatIdTradingVolumeUsdDescNullsLast = 'dailyStatId_tradingVolumeUSD_DESC_NULLS_LAST', - DailyStatIdWrappedSupplyAsc = 'dailyStatId_wrappedSupply_ASC', - DailyStatIdWrappedSupplyAscNullsFirst = 'dailyStatId_wrappedSupply_ASC_NULLS_FIRST', - DailyStatIdWrappedSupplyDesc = 'dailyStatId_wrappedSupply_DESC', - DailyStatIdWrappedSupplyDescNullsLast = 'dailyStatId_wrappedSupply_DESC_NULLS_LAST', - DailyStatIdYieldEth7DayAsc = 'dailyStatId_yieldETH7Day_ASC', - DailyStatIdYieldEth7DayAscNullsFirst = 'dailyStatId_yieldETH7Day_ASC_NULLS_FIRST', - DailyStatIdYieldEth7DayDesc = 'dailyStatId_yieldETH7Day_DESC', - DailyStatIdYieldEth7DayDescNullsLast = 'dailyStatId_yieldETH7Day_DESC_NULLS_LAST', - DailyStatIdYieldEthAllTimeAsc = 'dailyStatId_yieldETHAllTime_ASC', - DailyStatIdYieldEthAllTimeAscNullsFirst = 'dailyStatId_yieldETHAllTime_ASC_NULLS_FIRST', - DailyStatIdYieldEthAllTimeDesc = 'dailyStatId_yieldETHAllTime_DESC', - DailyStatIdYieldEthAllTimeDescNullsLast = 'dailyStatId_yieldETHAllTime_DESC_NULLS_LAST', - DailyStatIdYieldEthAsc = 'dailyStatId_yieldETH_ASC', - DailyStatIdYieldEthAscNullsFirst = 'dailyStatId_yieldETH_ASC_NULLS_FIRST', - DailyStatIdYieldEthDesc = 'dailyStatId_yieldETH_DESC', - DailyStatIdYieldEthDescNullsLast = 'dailyStatId_yieldETH_DESC_NULLS_LAST', - DailyStatIdYieldUsd7DayAsc = 'dailyStatId_yieldUSD7Day_ASC', - DailyStatIdYieldUsd7DayAscNullsFirst = 'dailyStatId_yieldUSD7Day_ASC_NULLS_FIRST', - DailyStatIdYieldUsd7DayDesc = 'dailyStatId_yieldUSD7Day_DESC', - DailyStatIdYieldUsd7DayDescNullsLast = 'dailyStatId_yieldUSD7Day_DESC_NULLS_LAST', - DailyStatIdYieldUsdAllTimeAsc = 'dailyStatId_yieldUSDAllTime_ASC', - DailyStatIdYieldUsdAllTimeAscNullsFirst = 'dailyStatId_yieldUSDAllTime_ASC_NULLS_FIRST', - DailyStatIdYieldUsdAllTimeDesc = 'dailyStatId_yieldUSDAllTime_DESC', - DailyStatIdYieldUsdAllTimeDescNullsLast = 'dailyStatId_yieldUSDAllTime_DESC_NULLS_LAST', - DailyStatIdYieldUsdAsc = 'dailyStatId_yieldUSD_ASC', - DailyStatIdYieldUsdAscNullsFirst = 'dailyStatId_yieldUSD_ASC_NULLS_FIRST', - DailyStatIdYieldUsdDesc = 'dailyStatId_yieldUSD_DESC', - DailyStatIdYieldUsdDescNullsLast = 'dailyStatId_yieldUSD_DESC_NULLS_LAST', + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; + status_eq?: InputMaybe; + status_in?: InputMaybe>; + status_isNull?: InputMaybe; + status_not_eq?: InputMaybe; + status_not_in?: InputMaybe>; + timestamp_eq?: InputMaybe; + timestamp_gt?: InputMaybe; + timestamp_gte?: InputMaybe; + timestamp_in?: InputMaybe>; + timestamp_isNull?: InputMaybe; + timestamp_lt?: InputMaybe; + timestamp_lte?: InputMaybe; + timestamp_not_eq?: InputMaybe; + timestamp_not_in?: InputMaybe>; + txHash_contains?: InputMaybe; + txHash_containsInsensitive?: InputMaybe; + txHash_endsWith?: InputMaybe; + txHash_eq?: InputMaybe; + txHash_gt?: InputMaybe; + txHash_gte?: InputMaybe; + txHash_in?: InputMaybe>; + txHash_isNull?: InputMaybe; + txHash_lt?: InputMaybe; + txHash_lte?: InputMaybe; + txHash_not_contains?: InputMaybe; + txHash_not_containsInsensitive?: InputMaybe; + txHash_not_endsWith?: InputMaybe; + txHash_not_eq?: InputMaybe; + txHash_not_in?: InputMaybe>; + txHash_not_startsWith?: InputMaybe; + txHash_startsWith?: InputMaybe; +}; + +export type OTokenRebaseOptionsConnection = { + __typename?: 'OTokenRebaseOptionsConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; +}; + +export enum OTokenRebaseOrderByInput { + ApyAprAsc = 'apy_apr_ASC', + ApyAprAscNullsFirst = 'apy_apr_ASC_NULLS_FIRST', + ApyAprDesc = 'apy_apr_DESC', + ApyAprDescNullsLast = 'apy_apr_DESC_NULLS_LAST', + ApyApy7DayAvgAsc = 'apy_apy7DayAvg_ASC', + ApyApy7DayAvgAscNullsFirst = 'apy_apy7DayAvg_ASC_NULLS_FIRST', + ApyApy7DayAvgDesc = 'apy_apy7DayAvg_DESC', + ApyApy7DayAvgDescNullsLast = 'apy_apy7DayAvg_DESC_NULLS_LAST', + ApyApy14DayAvgAsc = 'apy_apy14DayAvg_ASC', + ApyApy14DayAvgAscNullsFirst = 'apy_apy14DayAvg_ASC_NULLS_FIRST', + ApyApy14DayAvgDesc = 'apy_apy14DayAvg_DESC', + ApyApy14DayAvgDescNullsLast = 'apy_apy14DayAvg_DESC_NULLS_LAST', + ApyApy30DayAvgAsc = 'apy_apy30DayAvg_ASC', + ApyApy30DayAvgAscNullsFirst = 'apy_apy30DayAvg_ASC_NULLS_FIRST', + ApyApy30DayAvgDesc = 'apy_apy30DayAvg_DESC', + ApyApy30DayAvgDescNullsLast = 'apy_apy30DayAvg_DESC_NULLS_LAST', + ApyApyAsc = 'apy_apy_ASC', + ApyApyAscNullsFirst = 'apy_apy_ASC_NULLS_FIRST', + ApyApyDesc = 'apy_apy_DESC', + ApyApyDescNullsLast = 'apy_apy_DESC_NULLS_LAST', + ApyBlockNumberAsc = 'apy_blockNumber_ASC', + ApyBlockNumberAscNullsFirst = 'apy_blockNumber_ASC_NULLS_FIRST', + ApyBlockNumberDesc = 'apy_blockNumber_DESC', + ApyBlockNumberDescNullsLast = 'apy_blockNumber_DESC_NULLS_LAST', + ApyChainIdAsc = 'apy_chainId_ASC', + ApyChainIdAscNullsFirst = 'apy_chainId_ASC_NULLS_FIRST', + ApyChainIdDesc = 'apy_chainId_DESC', + ApyChainIdDescNullsLast = 'apy_chainId_DESC_NULLS_LAST', + ApyDateAsc = 'apy_date_ASC', + ApyDateAscNullsFirst = 'apy_date_ASC_NULLS_FIRST', + ApyDateDesc = 'apy_date_DESC', + ApyDateDescNullsLast = 'apy_date_DESC_NULLS_LAST', + ApyIdAsc = 'apy_id_ASC', + ApyIdAscNullsFirst = 'apy_id_ASC_NULLS_FIRST', + ApyIdDesc = 'apy_id_DESC', + ApyIdDescNullsLast = 'apy_id_DESC_NULLS_LAST', + ApyOtokenAsc = 'apy_otoken_ASC', + ApyOtokenAscNullsFirst = 'apy_otoken_ASC_NULLS_FIRST', + ApyOtokenDesc = 'apy_otoken_DESC', + ApyOtokenDescNullsLast = 'apy_otoken_DESC_NULLS_LAST', + ApyRebasingCreditsPerTokenAsc = 'apy_rebasingCreditsPerToken_ASC', + ApyRebasingCreditsPerTokenAscNullsFirst = 'apy_rebasingCreditsPerToken_ASC_NULLS_FIRST', + ApyRebasingCreditsPerTokenDesc = 'apy_rebasingCreditsPerToken_DESC', + ApyRebasingCreditsPerTokenDescNullsLast = 'apy_rebasingCreditsPerToken_DESC_NULLS_LAST', + ApyTimestampAsc = 'apy_timestamp_ASC', + ApyTimestampAscNullsFirst = 'apy_timestamp_ASC_NULLS_FIRST', + ApyTimestampDesc = 'apy_timestamp_DESC', + ApyTimestampDescNullsLast = 'apy_timestamp_DESC_NULLS_LAST', + ApyTxHashAsc = 'apy_txHash_ASC', + ApyTxHashAscNullsFirst = 'apy_txHash_ASC_NULLS_FIRST', + ApyTxHashDesc = 'apy_txHash_DESC', + ApyTxHashDescNullsLast = 'apy_txHash_DESC_NULLS_LAST', + BlockNumberAsc = 'blockNumber_ASC', + BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', + BlockNumberDesc = 'blockNumber_DESC', + BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', + FeeEthAsc = 'feeETH_ASC', + FeeEthAscNullsFirst = 'feeETH_ASC_NULLS_FIRST', + FeeEthDesc = 'feeETH_DESC', + FeeEthDescNullsLast = 'feeETH_DESC_NULLS_LAST', + FeeUsdAsc = 'feeUSD_ASC', + FeeUsdAscNullsFirst = 'feeUSD_ASC_NULLS_FIRST', + FeeUsdDesc = 'feeUSD_DESC', + FeeUsdDescNullsLast = 'feeUSD_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - PriceAsc = 'price_ASC', - PriceAscNullsFirst = 'price_ASC_NULLS_FIRST', - PriceDesc = 'price_DESC', - PriceDescNullsLast = 'price_DESC_NULLS_LAST', - SymbolAsc = 'symbol_ASC', - SymbolAscNullsFirst = 'symbol_ASC_NULLS_FIRST', - SymbolDesc = 'symbol_DESC', - SymbolDescNullsLast = 'symbol_DESC_NULLS_LAST', - ValueAsc = 'value_ASC', - ValueAscNullsFirst = 'value_ASC_NULLS_FIRST', - ValueDesc = 'value_DESC', - ValueDescNullsLast = 'value_DESC_NULLS_LAST' + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', + RebasingCreditsPerTokenAsc = 'rebasingCreditsPerToken_ASC', + RebasingCreditsPerTokenAscNullsFirst = 'rebasingCreditsPerToken_ASC_NULLS_FIRST', + RebasingCreditsPerTokenDesc = 'rebasingCreditsPerToken_DESC', + RebasingCreditsPerTokenDescNullsLast = 'rebasingCreditsPerToken_DESC_NULLS_LAST', + RebasingCreditsAsc = 'rebasingCredits_ASC', + RebasingCreditsAscNullsFirst = 'rebasingCredits_ASC_NULLS_FIRST', + RebasingCreditsDesc = 'rebasingCredits_DESC', + RebasingCreditsDescNullsLast = 'rebasingCredits_DESC_NULLS_LAST', + TimestampAsc = 'timestamp_ASC', + TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', + TimestampDesc = 'timestamp_DESC', + TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', + TotalSupplyAsc = 'totalSupply_ASC', + TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', + TotalSupplyDesc = 'totalSupply_DESC', + TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST', + TxHashAsc = 'txHash_ASC', + TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', + TxHashDesc = 'txHash_DESC', + TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST', + YieldEthAsc = 'yieldETH_ASC', + YieldEthAscNullsFirst = 'yieldETH_ASC_NULLS_FIRST', + YieldEthDesc = 'yieldETH_DESC', + YieldEthDescNullsLast = 'yieldETH_DESC_NULLS_LAST', + YieldUsdAsc = 'yieldUSD_ASC', + YieldUsdAscNullsFirst = 'yieldUSD_ASC_NULLS_FIRST', + YieldUsdDesc = 'yieldUSD_DESC', + YieldUsdDescNullsLast = 'yieldUSD_DESC_NULLS_LAST' } -export type OusdCollateralDailyStatWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - amount_eq?: InputMaybe; - amount_gt?: InputMaybe; - amount_gte?: InputMaybe; - amount_in?: InputMaybe>; - amount_isNull?: InputMaybe; - amount_lt?: InputMaybe; - amount_lte?: InputMaybe; - amount_not_eq?: InputMaybe; - amount_not_in?: InputMaybe>; - dailyStatId?: InputMaybe; - dailyStatId_isNull?: InputMaybe; +export type OTokenRebaseWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + apy?: InputMaybe; + apy_isNull?: InputMaybe; + blockNumber_eq?: InputMaybe; + blockNumber_gt?: InputMaybe; + blockNumber_gte?: InputMaybe; + blockNumber_in?: InputMaybe>; + blockNumber_isNull?: InputMaybe; + blockNumber_lt?: InputMaybe; + blockNumber_lte?: InputMaybe; + blockNumber_not_eq?: InputMaybe; + blockNumber_not_in?: InputMaybe>; + chainId_eq?: InputMaybe; + chainId_gt?: InputMaybe; + chainId_gte?: InputMaybe; + chainId_in?: InputMaybe>; + chainId_isNull?: InputMaybe; + chainId_lt?: InputMaybe; + chainId_lte?: InputMaybe; + chainId_not_eq?: InputMaybe; + chainId_not_in?: InputMaybe>; + feeETH_eq?: InputMaybe; + feeETH_gt?: InputMaybe; + feeETH_gte?: InputMaybe; + feeETH_in?: InputMaybe>; + feeETH_isNull?: InputMaybe; + feeETH_lt?: InputMaybe; + feeETH_lte?: InputMaybe; + feeETH_not_eq?: InputMaybe; + feeETH_not_in?: InputMaybe>; + feeUSD_eq?: InputMaybe; + feeUSD_gt?: InputMaybe; + feeUSD_gte?: InputMaybe; + feeUSD_in?: InputMaybe>; + feeUSD_isNull?: InputMaybe; + feeUSD_lt?: InputMaybe; + feeUSD_lte?: InputMaybe; + feeUSD_not_eq?: InputMaybe; + feeUSD_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -8721,103 +7743,171 @@ export type OusdCollateralDailyStatWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - price_eq?: InputMaybe; - price_gt?: InputMaybe; - price_gte?: InputMaybe; - price_in?: InputMaybe>; - price_isNull?: InputMaybe; - price_lt?: InputMaybe; - price_lte?: InputMaybe; - price_not_eq?: InputMaybe; - price_not_in?: InputMaybe>; - symbol_contains?: InputMaybe; - symbol_containsInsensitive?: InputMaybe; - symbol_endsWith?: InputMaybe; - symbol_eq?: InputMaybe; - symbol_gt?: InputMaybe; - symbol_gte?: InputMaybe; - symbol_in?: InputMaybe>; - symbol_isNull?: InputMaybe; - symbol_lt?: InputMaybe; - symbol_lte?: InputMaybe; - symbol_not_contains?: InputMaybe; - symbol_not_containsInsensitive?: InputMaybe; - symbol_not_endsWith?: InputMaybe; - symbol_not_eq?: InputMaybe; - symbol_not_in?: InputMaybe>; - symbol_not_startsWith?: InputMaybe; - symbol_startsWith?: InputMaybe; - value_eq?: InputMaybe; - value_gt?: InputMaybe; - value_gte?: InputMaybe; - value_in?: InputMaybe>; - value_isNull?: InputMaybe; - value_lt?: InputMaybe; - value_lte?: InputMaybe; - value_not_eq?: InputMaybe; - value_not_in?: InputMaybe>; -}; - -export type OusdCollateralDailyStatsConnection = { - __typename?: 'OUSDCollateralDailyStatsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; + rebasingCreditsPerToken_eq?: InputMaybe; + rebasingCreditsPerToken_gt?: InputMaybe; + rebasingCreditsPerToken_gte?: InputMaybe; + rebasingCreditsPerToken_in?: InputMaybe>; + rebasingCreditsPerToken_isNull?: InputMaybe; + rebasingCreditsPerToken_lt?: InputMaybe; + rebasingCreditsPerToken_lte?: InputMaybe; + rebasingCreditsPerToken_not_eq?: InputMaybe; + rebasingCreditsPerToken_not_in?: InputMaybe>; + rebasingCredits_eq?: InputMaybe; + rebasingCredits_gt?: InputMaybe; + rebasingCredits_gte?: InputMaybe; + rebasingCredits_in?: InputMaybe>; + rebasingCredits_isNull?: InputMaybe; + rebasingCredits_lt?: InputMaybe; + rebasingCredits_lte?: InputMaybe; + rebasingCredits_not_eq?: InputMaybe; + rebasingCredits_not_in?: InputMaybe>; + timestamp_eq?: InputMaybe; + timestamp_gt?: InputMaybe; + timestamp_gte?: InputMaybe; + timestamp_in?: InputMaybe>; + timestamp_isNull?: InputMaybe; + timestamp_lt?: InputMaybe; + timestamp_lte?: InputMaybe; + timestamp_not_eq?: InputMaybe; + timestamp_not_in?: InputMaybe>; + totalSupply_eq?: InputMaybe; + totalSupply_gt?: InputMaybe; + totalSupply_gte?: InputMaybe; + totalSupply_in?: InputMaybe>; + totalSupply_isNull?: InputMaybe; + totalSupply_lt?: InputMaybe; + totalSupply_lte?: InputMaybe; + totalSupply_not_eq?: InputMaybe; + totalSupply_not_in?: InputMaybe>; + txHash_contains?: InputMaybe; + txHash_containsInsensitive?: InputMaybe; + txHash_endsWith?: InputMaybe; + txHash_eq?: InputMaybe; + txHash_gt?: InputMaybe; + txHash_gte?: InputMaybe; + txHash_in?: InputMaybe>; + txHash_isNull?: InputMaybe; + txHash_lt?: InputMaybe; + txHash_lte?: InputMaybe; + txHash_not_contains?: InputMaybe; + txHash_not_containsInsensitive?: InputMaybe; + txHash_not_endsWith?: InputMaybe; + txHash_not_eq?: InputMaybe; + txHash_not_in?: InputMaybe>; + txHash_not_startsWith?: InputMaybe; + txHash_startsWith?: InputMaybe; + yieldETH_eq?: InputMaybe; + yieldETH_gt?: InputMaybe; + yieldETH_gte?: InputMaybe; + yieldETH_in?: InputMaybe>; + yieldETH_isNull?: InputMaybe; + yieldETH_lt?: InputMaybe; + yieldETH_lte?: InputMaybe; + yieldETH_not_eq?: InputMaybe; + yieldETH_not_in?: InputMaybe>; + yieldUSD_eq?: InputMaybe; + yieldUSD_gt?: InputMaybe; + yieldUSD_gte?: InputMaybe; + yieldUSD_in?: InputMaybe>; + yieldUSD_isNull?: InputMaybe; + yieldUSD_lt?: InputMaybe; + yieldUSD_lte?: InputMaybe; + yieldUSD_not_eq?: InputMaybe; + yieldUSD_not_in?: InputMaybe>; }; -export type OusdCompoundStrategiesConnection = { - __typename?: 'OUSDCompoundStrategiesConnection'; - edges: Array; +export type OTokenRebasesConnection = { + __typename?: 'OTokenRebasesConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export type OusdCompoundStrategy = { - __typename?: 'OUSDCompoundStrategy'; +export type OTokenVault = { + __typename?: 'OTokenVault'; + address: Scalars['String']['output']; blockNumber: Scalars['Int']['output']; - dai: Scalars['BigInt']['output']; + chainId: Scalars['Int']['output']; id: Scalars['String']['output']; + otoken: Scalars['String']['output']; timestamp: Scalars['DateTime']['output']; - usdc: Scalars['BigInt']['output']; - usdt: Scalars['BigInt']['output']; + totalValue: Scalars['BigInt']['output']; }; -export type OusdCompoundStrategyEdge = { - __typename?: 'OUSDCompoundStrategyEdge'; +export type OTokenVaultEdge = { + __typename?: 'OTokenVaultEdge'; cursor: Scalars['String']['output']; - node: OusdCompoundStrategy; + node: OTokenVault; }; -export enum OusdCompoundStrategyOrderByInput { +export enum OTokenVaultOrderByInput { + AddressAsc = 'address_ASC', + AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', + AddressDesc = 'address_DESC', + AddressDescNullsLast = 'address_DESC_NULLS_LAST', BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - DaiAsc = 'dai_ASC', - DaiAscNullsFirst = 'dai_ASC_NULLS_FIRST', - DaiDesc = 'dai_DESC', - DaiDescNullsLast = 'dai_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - UsdcAsc = 'usdc_ASC', - UsdcAscNullsFirst = 'usdc_ASC_NULLS_FIRST', - UsdcDesc = 'usdc_DESC', - UsdcDescNullsLast = 'usdc_DESC_NULLS_LAST', - UsdtAsc = 'usdt_ASC', - UsdtAscNullsFirst = 'usdt_ASC_NULLS_FIRST', - UsdtDesc = 'usdt_DESC', - UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' + TotalValueAsc = 'totalValue_ASC', + TotalValueAscNullsFirst = 'totalValue_ASC_NULLS_FIRST', + TotalValueDesc = 'totalValue_DESC', + TotalValueDescNullsLast = 'totalValue_DESC_NULLS_LAST' } -export type OusdCompoundStrategyWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OTokenVaultWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + address_contains?: InputMaybe; + address_containsInsensitive?: InputMaybe; + address_endsWith?: InputMaybe; + address_eq?: InputMaybe; + address_gt?: InputMaybe; + address_gte?: InputMaybe; + address_in?: InputMaybe>; + address_isNull?: InputMaybe; + address_lt?: InputMaybe; + address_lte?: InputMaybe; + address_not_contains?: InputMaybe; + address_not_containsInsensitive?: InputMaybe; + address_not_endsWith?: InputMaybe; + address_not_eq?: InputMaybe; + address_not_in?: InputMaybe>; + address_not_startsWith?: InputMaybe; + address_startsWith?: InputMaybe; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -8827,15 +7917,15 @@ export type OusdCompoundStrategyWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; - dai_eq?: InputMaybe; - dai_gt?: InputMaybe; - dai_gte?: InputMaybe; - dai_in?: InputMaybe>; - dai_isNull?: InputMaybe; - dai_lt?: InputMaybe; - dai_lte?: InputMaybe; - dai_not_eq?: InputMaybe; - dai_not_in?: InputMaybe>; + chainId_eq?: InputMaybe; + chainId_gt?: InputMaybe; + chainId_gte?: InputMaybe; + chainId_in?: InputMaybe>; + chainId_isNull?: InputMaybe; + chainId_lt?: InputMaybe; + chainId_lte?: InputMaybe; + chainId_not_eq?: InputMaybe; + chainId_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -8853,6 +7943,23 @@ export type OusdCompoundStrategyWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -8862,72 +7969,27 @@ export type OusdCompoundStrategyWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - usdc_eq?: InputMaybe; - usdc_gt?: InputMaybe; - usdc_gte?: InputMaybe; - usdc_in?: InputMaybe>; - usdc_isNull?: InputMaybe; - usdc_lt?: InputMaybe; - usdc_lte?: InputMaybe; - usdc_not_eq?: InputMaybe; - usdc_not_in?: InputMaybe>; - usdt_eq?: InputMaybe; - usdt_gt?: InputMaybe; - usdt_gte?: InputMaybe; - usdt_in?: InputMaybe>; - usdt_isNull?: InputMaybe; - usdt_lt?: InputMaybe; - usdt_lte?: InputMaybe; - usdt_not_eq?: InputMaybe; - usdt_not_in?: InputMaybe>; -}; - -export type OusdConvexLusdPlus3Crv = { - __typename?: 'OUSDConvexLUSDPlus3Crv'; - blockNumber: Scalars['Int']['output']; - dai: Scalars['BigInt']['output']; - id: Scalars['String']['output']; - timestamp: Scalars['DateTime']['output']; - usdc: Scalars['BigInt']['output']; - usdt: Scalars['BigInt']['output']; + totalValue_eq?: InputMaybe; + totalValue_gt?: InputMaybe; + totalValue_gte?: InputMaybe; + totalValue_in?: InputMaybe>; + totalValue_isNull?: InputMaybe; + totalValue_lt?: InputMaybe; + totalValue_lte?: InputMaybe; + totalValue_not_eq?: InputMaybe; + totalValue_not_in?: InputMaybe>; }; -export type OusdConvexLusdPlus3CrvEdge = { - __typename?: 'OUSDConvexLUSDPlus3CrvEdge'; - cursor: Scalars['String']['output']; - node: OusdConvexLusdPlus3Crv; +export type OTokenVaultsConnection = { + __typename?: 'OTokenVaultsConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; }; -export enum OusdConvexLusdPlus3CrvOrderByInput { - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - DaiAsc = 'dai_ASC', - DaiAscNullsFirst = 'dai_ASC_NULLS_FIRST', - DaiDesc = 'dai_DESC', - DaiDescNullsLast = 'dai_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - UsdcAsc = 'usdc_ASC', - UsdcAscNullsFirst = 'usdc_ASC_NULLS_FIRST', - UsdcDesc = 'usdc_DESC', - UsdcDescNullsLast = 'usdc_DESC_NULLS_LAST', - UsdtAsc = 'usdt_ASC', - UsdtAscNullsFirst = 'usdt_ASC_NULLS_FIRST', - UsdtDesc = 'usdt_DESC', - UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' -} - -export type OusdConvexLusdPlus3CrvWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OTokenWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -8937,15 +7999,15 @@ export type OusdConvexLusdPlus3CrvWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; - dai_eq?: InputMaybe; - dai_gt?: InputMaybe; - dai_gte?: InputMaybe; - dai_in?: InputMaybe>; - dai_isNull?: InputMaybe; - dai_lt?: InputMaybe; - dai_lte?: InputMaybe; - dai_not_eq?: InputMaybe; - dai_not_in?: InputMaybe>; + chainId_eq?: InputMaybe; + chainId_gt?: InputMaybe; + chainId_gte?: InputMaybe; + chainId_in?: InputMaybe>; + chainId_isNull?: InputMaybe; + chainId_lt?: InputMaybe; + chainId_lte?: InputMaybe; + chainId_not_eq?: InputMaybe; + chainId_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -8963,6 +8025,41 @@ export type OusdConvexLusdPlus3CrvWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; + nonRebasingSupply_eq?: InputMaybe; + nonRebasingSupply_gt?: InputMaybe; + nonRebasingSupply_gte?: InputMaybe; + nonRebasingSupply_in?: InputMaybe>; + nonRebasingSupply_isNull?: InputMaybe; + nonRebasingSupply_lt?: InputMaybe; + nonRebasingSupply_lte?: InputMaybe; + nonRebasingSupply_not_eq?: InputMaybe; + nonRebasingSupply_not_in?: InputMaybe>; + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; + rebasingSupply_eq?: InputMaybe; + rebasingSupply_gt?: InputMaybe; + rebasingSupply_gte?: InputMaybe; + rebasingSupply_in?: InputMaybe>; + rebasingSupply_isNull?: InputMaybe; + rebasingSupply_lt?: InputMaybe; + rebasingSupply_lte?: InputMaybe; + rebasingSupply_not_eq?: InputMaybe; + rebasingSupply_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -8972,42 +8069,33 @@ export type OusdConvexLusdPlus3CrvWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - usdc_eq?: InputMaybe; - usdc_gt?: InputMaybe; - usdc_gte?: InputMaybe; - usdc_in?: InputMaybe>; - usdc_isNull?: InputMaybe; - usdc_lt?: InputMaybe; - usdc_lte?: InputMaybe; - usdc_not_eq?: InputMaybe; - usdc_not_in?: InputMaybe>; - usdt_eq?: InputMaybe; - usdt_gt?: InputMaybe; - usdt_gte?: InputMaybe; - usdt_in?: InputMaybe>; - usdt_isNull?: InputMaybe; - usdt_lt?: InputMaybe; - usdt_lte?: InputMaybe; - usdt_not_eq?: InputMaybe; - usdt_not_in?: InputMaybe>; + totalSupply_eq?: InputMaybe; + totalSupply_gt?: InputMaybe; + totalSupply_gte?: InputMaybe; + totalSupply_in?: InputMaybe>; + totalSupply_isNull?: InputMaybe; + totalSupply_lt?: InputMaybe; + totalSupply_lte?: InputMaybe; + totalSupply_not_eq?: InputMaybe; + totalSupply_not_in?: InputMaybe>; }; -export type OusdConvexLusdPlus3CrvsConnection = { - __typename?: 'OUSDConvexLUSDPlus3CrvsConnection'; - edges: Array; +export type OTokensConnection = { + __typename?: 'OTokensConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export type OusdConvexStrategiesConnection = { - __typename?: 'OUSDConvexStrategiesConnection'; - edges: Array; +export type OusdAaveStrategiesConnection = { + __typename?: 'OUSDAaveStrategiesConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export type OusdConvexStrategy = { - __typename?: 'OUSDConvexStrategy'; +export type OusdAaveStrategy = { + __typename?: 'OUSDAaveStrategy'; blockNumber: Scalars['Int']['output']; dai: Scalars['BigInt']['output']; id: Scalars['String']['output']; @@ -9016,13 +8104,13 @@ export type OusdConvexStrategy = { usdt: Scalars['BigInt']['output']; }; -export type OusdConvexStrategyEdge = { - __typename?: 'OUSDConvexStrategyEdge'; +export type OusdAaveStrategyEdge = { + __typename?: 'OUSDAaveStrategyEdge'; cursor: Scalars['String']['output']; - node: OusdConvexStrategy; + node: OusdAaveStrategy; }; -export enum OusdConvexStrategyOrderByInput { +export enum OusdAaveStrategyOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', @@ -9049,9 +8137,9 @@ export enum OusdConvexStrategyOrderByInput { UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' } -export type OusdConvexStrategyWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OusdAaveStrategyWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -9116,249 +8204,297 @@ export type OusdConvexStrategyWhereInput = { usdt_not_in?: InputMaybe>; }; -export type OusdDailyStat = { - __typename?: 'OUSDDailyStat'; - amoSupply: Scalars['BigInt']['output']; - apr: Scalars['Float']['output']; - apy: Scalars['Float']['output']; - apy7DayAvg: Scalars['Float']['output']; - apy14DayAvg: Scalars['Float']['output']; - apy30DayAvg: Scalars['Float']['output']; - blockNumber: Scalars['Int']['output']; - collateral: Array; - dripperWETH: Scalars['BigInt']['output']; - feesETH: Scalars['BigInt']['output']; - feesETH7Day: Scalars['BigInt']['output']; - feesETHAllTime: Scalars['BigInt']['output']; - feesUSD: Scalars['BigInt']['output']; - feesUSD7Day: Scalars['BigInt']['output']; - feesUSDAllTime: Scalars['BigInt']['output']; - holdersOverThreshold: Scalars['Int']['output']; - id: Scalars['String']['output']; - marketCapUSD: Scalars['Float']['output']; - nonRebasingSupply: Scalars['BigInt']['output']; - pegPrice: Scalars['BigInt']['output']; - rebasingSupply: Scalars['BigInt']['output']; - strategies: Array; - timestamp: Scalars['DateTime']['output']; - totalSupply: Scalars['BigInt']['output']; - totalSupplyUSD: Scalars['Float']['output']; - tradingVolumeUSD: Scalars['Float']['output']; - wrappedSupply: Scalars['BigInt']['output']; - yieldETH: Scalars['BigInt']['output']; - yieldETH7Day: Scalars['BigInt']['output']; - yieldETHAllTime: Scalars['BigInt']['output']; - yieldUSD: Scalars['BigInt']['output']; - yieldUSD7Day: Scalars['BigInt']['output']; - yieldUSDAllTime: Scalars['BigInt']['output']; +export type OusdCollateralDailyStat = { + __typename?: 'OUSDCollateralDailyStat'; + amount: Scalars['BigInt']['output']; + dailyStatId: OusdDailyStat; + id: Scalars['String']['output']; + price: Scalars['BigInt']['output']; + symbol: Scalars['String']['output']; + value: Scalars['BigInt']['output']; +}; + +export type OusdCollateralDailyStatEdge = { + __typename?: 'OUSDCollateralDailyStatEdge'; + cursor: Scalars['String']['output']; + node: OusdCollateralDailyStat; +}; + +export enum OusdCollateralDailyStatOrderByInput { + AmountAsc = 'amount_ASC', + AmountAscNullsFirst = 'amount_ASC_NULLS_FIRST', + AmountDesc = 'amount_DESC', + AmountDescNullsLast = 'amount_DESC_NULLS_LAST', + DailyStatIdAmoSupplyAsc = 'dailyStatId_amoSupply_ASC', + DailyStatIdAmoSupplyAscNullsFirst = 'dailyStatId_amoSupply_ASC_NULLS_FIRST', + DailyStatIdAmoSupplyDesc = 'dailyStatId_amoSupply_DESC', + DailyStatIdAmoSupplyDescNullsLast = 'dailyStatId_amoSupply_DESC_NULLS_LAST', + DailyStatIdAprAsc = 'dailyStatId_apr_ASC', + DailyStatIdAprAscNullsFirst = 'dailyStatId_apr_ASC_NULLS_FIRST', + DailyStatIdAprDesc = 'dailyStatId_apr_DESC', + DailyStatIdAprDescNullsLast = 'dailyStatId_apr_DESC_NULLS_LAST', + DailyStatIdApy7DayAvgAsc = 'dailyStatId_apy7DayAvg_ASC', + DailyStatIdApy7DayAvgAscNullsFirst = 'dailyStatId_apy7DayAvg_ASC_NULLS_FIRST', + DailyStatIdApy7DayAvgDesc = 'dailyStatId_apy7DayAvg_DESC', + DailyStatIdApy7DayAvgDescNullsLast = 'dailyStatId_apy7DayAvg_DESC_NULLS_LAST', + DailyStatIdApy14DayAvgAsc = 'dailyStatId_apy14DayAvg_ASC', + DailyStatIdApy14DayAvgAscNullsFirst = 'dailyStatId_apy14DayAvg_ASC_NULLS_FIRST', + DailyStatIdApy14DayAvgDesc = 'dailyStatId_apy14DayAvg_DESC', + DailyStatIdApy14DayAvgDescNullsLast = 'dailyStatId_apy14DayAvg_DESC_NULLS_LAST', + DailyStatIdApy30DayAvgAsc = 'dailyStatId_apy30DayAvg_ASC', + DailyStatIdApy30DayAvgAscNullsFirst = 'dailyStatId_apy30DayAvg_ASC_NULLS_FIRST', + DailyStatIdApy30DayAvgDesc = 'dailyStatId_apy30DayAvg_DESC', + DailyStatIdApy30DayAvgDescNullsLast = 'dailyStatId_apy30DayAvg_DESC_NULLS_LAST', + DailyStatIdApyAsc = 'dailyStatId_apy_ASC', + DailyStatIdApyAscNullsFirst = 'dailyStatId_apy_ASC_NULLS_FIRST', + DailyStatIdApyDesc = 'dailyStatId_apy_DESC', + DailyStatIdApyDescNullsLast = 'dailyStatId_apy_DESC_NULLS_LAST', + DailyStatIdBlockNumberAsc = 'dailyStatId_blockNumber_ASC', + DailyStatIdBlockNumberAscNullsFirst = 'dailyStatId_blockNumber_ASC_NULLS_FIRST', + DailyStatIdBlockNumberDesc = 'dailyStatId_blockNumber_DESC', + DailyStatIdBlockNumberDescNullsLast = 'dailyStatId_blockNumber_DESC_NULLS_LAST', + DailyStatIdDripperWethAsc = 'dailyStatId_dripperWETH_ASC', + DailyStatIdDripperWethAscNullsFirst = 'dailyStatId_dripperWETH_ASC_NULLS_FIRST', + DailyStatIdDripperWethDesc = 'dailyStatId_dripperWETH_DESC', + DailyStatIdDripperWethDescNullsLast = 'dailyStatId_dripperWETH_DESC_NULLS_LAST', + DailyStatIdFeesEth7DayAsc = 'dailyStatId_feesETH7Day_ASC', + DailyStatIdFeesEth7DayAscNullsFirst = 'dailyStatId_feesETH7Day_ASC_NULLS_FIRST', + DailyStatIdFeesEth7DayDesc = 'dailyStatId_feesETH7Day_DESC', + DailyStatIdFeesEth7DayDescNullsLast = 'dailyStatId_feesETH7Day_DESC_NULLS_LAST', + DailyStatIdFeesEthAllTimeAsc = 'dailyStatId_feesETHAllTime_ASC', + DailyStatIdFeesEthAllTimeAscNullsFirst = 'dailyStatId_feesETHAllTime_ASC_NULLS_FIRST', + DailyStatIdFeesEthAllTimeDesc = 'dailyStatId_feesETHAllTime_DESC', + DailyStatIdFeesEthAllTimeDescNullsLast = 'dailyStatId_feesETHAllTime_DESC_NULLS_LAST', + DailyStatIdFeesEthAsc = 'dailyStatId_feesETH_ASC', + DailyStatIdFeesEthAscNullsFirst = 'dailyStatId_feesETH_ASC_NULLS_FIRST', + DailyStatIdFeesEthDesc = 'dailyStatId_feesETH_DESC', + DailyStatIdFeesEthDescNullsLast = 'dailyStatId_feesETH_DESC_NULLS_LAST', + DailyStatIdFeesUsd7DayAsc = 'dailyStatId_feesUSD7Day_ASC', + DailyStatIdFeesUsd7DayAscNullsFirst = 'dailyStatId_feesUSD7Day_ASC_NULLS_FIRST', + DailyStatIdFeesUsd7DayDesc = 'dailyStatId_feesUSD7Day_DESC', + DailyStatIdFeesUsd7DayDescNullsLast = 'dailyStatId_feesUSD7Day_DESC_NULLS_LAST', + DailyStatIdFeesUsdAllTimeAsc = 'dailyStatId_feesUSDAllTime_ASC', + DailyStatIdFeesUsdAllTimeAscNullsFirst = 'dailyStatId_feesUSDAllTime_ASC_NULLS_FIRST', + DailyStatIdFeesUsdAllTimeDesc = 'dailyStatId_feesUSDAllTime_DESC', + DailyStatIdFeesUsdAllTimeDescNullsLast = 'dailyStatId_feesUSDAllTime_DESC_NULLS_LAST', + DailyStatIdFeesUsdAsc = 'dailyStatId_feesUSD_ASC', + DailyStatIdFeesUsdAscNullsFirst = 'dailyStatId_feesUSD_ASC_NULLS_FIRST', + DailyStatIdFeesUsdDesc = 'dailyStatId_feesUSD_DESC', + DailyStatIdFeesUsdDescNullsLast = 'dailyStatId_feesUSD_DESC_NULLS_LAST', + DailyStatIdHoldersOverThresholdAsc = 'dailyStatId_holdersOverThreshold_ASC', + DailyStatIdHoldersOverThresholdAscNullsFirst = 'dailyStatId_holdersOverThreshold_ASC_NULLS_FIRST', + DailyStatIdHoldersOverThresholdDesc = 'dailyStatId_holdersOverThreshold_DESC', + DailyStatIdHoldersOverThresholdDescNullsLast = 'dailyStatId_holdersOverThreshold_DESC_NULLS_LAST', + DailyStatIdIdAsc = 'dailyStatId_id_ASC', + DailyStatIdIdAscNullsFirst = 'dailyStatId_id_ASC_NULLS_FIRST', + DailyStatIdIdDesc = 'dailyStatId_id_DESC', + DailyStatIdIdDescNullsLast = 'dailyStatId_id_DESC_NULLS_LAST', + DailyStatIdMarketCapUsdAsc = 'dailyStatId_marketCapUSD_ASC', + DailyStatIdMarketCapUsdAscNullsFirst = 'dailyStatId_marketCapUSD_ASC_NULLS_FIRST', + DailyStatIdMarketCapUsdDesc = 'dailyStatId_marketCapUSD_DESC', + DailyStatIdMarketCapUsdDescNullsLast = 'dailyStatId_marketCapUSD_DESC_NULLS_LAST', + DailyStatIdNonRebasingSupplyAsc = 'dailyStatId_nonRebasingSupply_ASC', + DailyStatIdNonRebasingSupplyAscNullsFirst = 'dailyStatId_nonRebasingSupply_ASC_NULLS_FIRST', + DailyStatIdNonRebasingSupplyDesc = 'dailyStatId_nonRebasingSupply_DESC', + DailyStatIdNonRebasingSupplyDescNullsLast = 'dailyStatId_nonRebasingSupply_DESC_NULLS_LAST', + DailyStatIdPegPriceAsc = 'dailyStatId_pegPrice_ASC', + DailyStatIdPegPriceAscNullsFirst = 'dailyStatId_pegPrice_ASC_NULLS_FIRST', + DailyStatIdPegPriceDesc = 'dailyStatId_pegPrice_DESC', + DailyStatIdPegPriceDescNullsLast = 'dailyStatId_pegPrice_DESC_NULLS_LAST', + DailyStatIdRebasingSupplyAsc = 'dailyStatId_rebasingSupply_ASC', + DailyStatIdRebasingSupplyAscNullsFirst = 'dailyStatId_rebasingSupply_ASC_NULLS_FIRST', + DailyStatIdRebasingSupplyDesc = 'dailyStatId_rebasingSupply_DESC', + DailyStatIdRebasingSupplyDescNullsLast = 'dailyStatId_rebasingSupply_DESC_NULLS_LAST', + DailyStatIdTimestampAsc = 'dailyStatId_timestamp_ASC', + DailyStatIdTimestampAscNullsFirst = 'dailyStatId_timestamp_ASC_NULLS_FIRST', + DailyStatIdTimestampDesc = 'dailyStatId_timestamp_DESC', + DailyStatIdTimestampDescNullsLast = 'dailyStatId_timestamp_DESC_NULLS_LAST', + DailyStatIdTotalSupplyUsdAsc = 'dailyStatId_totalSupplyUSD_ASC', + DailyStatIdTotalSupplyUsdAscNullsFirst = 'dailyStatId_totalSupplyUSD_ASC_NULLS_FIRST', + DailyStatIdTotalSupplyUsdDesc = 'dailyStatId_totalSupplyUSD_DESC', + DailyStatIdTotalSupplyUsdDescNullsLast = 'dailyStatId_totalSupplyUSD_DESC_NULLS_LAST', + DailyStatIdTotalSupplyAsc = 'dailyStatId_totalSupply_ASC', + DailyStatIdTotalSupplyAscNullsFirst = 'dailyStatId_totalSupply_ASC_NULLS_FIRST', + DailyStatIdTotalSupplyDesc = 'dailyStatId_totalSupply_DESC', + DailyStatIdTotalSupplyDescNullsLast = 'dailyStatId_totalSupply_DESC_NULLS_LAST', + DailyStatIdTradingVolumeUsdAsc = 'dailyStatId_tradingVolumeUSD_ASC', + DailyStatIdTradingVolumeUsdAscNullsFirst = 'dailyStatId_tradingVolumeUSD_ASC_NULLS_FIRST', + DailyStatIdTradingVolumeUsdDesc = 'dailyStatId_tradingVolumeUSD_DESC', + DailyStatIdTradingVolumeUsdDescNullsLast = 'dailyStatId_tradingVolumeUSD_DESC_NULLS_LAST', + DailyStatIdWrappedSupplyAsc = 'dailyStatId_wrappedSupply_ASC', + DailyStatIdWrappedSupplyAscNullsFirst = 'dailyStatId_wrappedSupply_ASC_NULLS_FIRST', + DailyStatIdWrappedSupplyDesc = 'dailyStatId_wrappedSupply_DESC', + DailyStatIdWrappedSupplyDescNullsLast = 'dailyStatId_wrappedSupply_DESC_NULLS_LAST', + DailyStatIdYieldEth7DayAsc = 'dailyStatId_yieldETH7Day_ASC', + DailyStatIdYieldEth7DayAscNullsFirst = 'dailyStatId_yieldETH7Day_ASC_NULLS_FIRST', + DailyStatIdYieldEth7DayDesc = 'dailyStatId_yieldETH7Day_DESC', + DailyStatIdYieldEth7DayDescNullsLast = 'dailyStatId_yieldETH7Day_DESC_NULLS_LAST', + DailyStatIdYieldEthAllTimeAsc = 'dailyStatId_yieldETHAllTime_ASC', + DailyStatIdYieldEthAllTimeAscNullsFirst = 'dailyStatId_yieldETHAllTime_ASC_NULLS_FIRST', + DailyStatIdYieldEthAllTimeDesc = 'dailyStatId_yieldETHAllTime_DESC', + DailyStatIdYieldEthAllTimeDescNullsLast = 'dailyStatId_yieldETHAllTime_DESC_NULLS_LAST', + DailyStatIdYieldEthAsc = 'dailyStatId_yieldETH_ASC', + DailyStatIdYieldEthAscNullsFirst = 'dailyStatId_yieldETH_ASC_NULLS_FIRST', + DailyStatIdYieldEthDesc = 'dailyStatId_yieldETH_DESC', + DailyStatIdYieldEthDescNullsLast = 'dailyStatId_yieldETH_DESC_NULLS_LAST', + DailyStatIdYieldUsd7DayAsc = 'dailyStatId_yieldUSD7Day_ASC', + DailyStatIdYieldUsd7DayAscNullsFirst = 'dailyStatId_yieldUSD7Day_ASC_NULLS_FIRST', + DailyStatIdYieldUsd7DayDesc = 'dailyStatId_yieldUSD7Day_DESC', + DailyStatIdYieldUsd7DayDescNullsLast = 'dailyStatId_yieldUSD7Day_DESC_NULLS_LAST', + DailyStatIdYieldUsdAllTimeAsc = 'dailyStatId_yieldUSDAllTime_ASC', + DailyStatIdYieldUsdAllTimeAscNullsFirst = 'dailyStatId_yieldUSDAllTime_ASC_NULLS_FIRST', + DailyStatIdYieldUsdAllTimeDesc = 'dailyStatId_yieldUSDAllTime_DESC', + DailyStatIdYieldUsdAllTimeDescNullsLast = 'dailyStatId_yieldUSDAllTime_DESC_NULLS_LAST', + DailyStatIdYieldUsdAsc = 'dailyStatId_yieldUSD_ASC', + DailyStatIdYieldUsdAscNullsFirst = 'dailyStatId_yieldUSD_ASC_NULLS_FIRST', + DailyStatIdYieldUsdDesc = 'dailyStatId_yieldUSD_DESC', + DailyStatIdYieldUsdDescNullsLast = 'dailyStatId_yieldUSD_DESC_NULLS_LAST', + IdAsc = 'id_ASC', + IdAscNullsFirst = 'id_ASC_NULLS_FIRST', + IdDesc = 'id_DESC', + IdDescNullsLast = 'id_DESC_NULLS_LAST', + PriceAsc = 'price_ASC', + PriceAscNullsFirst = 'price_ASC_NULLS_FIRST', + PriceDesc = 'price_DESC', + PriceDescNullsLast = 'price_DESC_NULLS_LAST', + SymbolAsc = 'symbol_ASC', + SymbolAscNullsFirst = 'symbol_ASC_NULLS_FIRST', + SymbolDesc = 'symbol_DESC', + SymbolDescNullsLast = 'symbol_DESC_NULLS_LAST', + ValueAsc = 'value_ASC', + ValueAscNullsFirst = 'value_ASC_NULLS_FIRST', + ValueDesc = 'value_DESC', + ValueDescNullsLast = 'value_DESC_NULLS_LAST' +} + +export type OusdCollateralDailyStatWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + amount_eq?: InputMaybe; + amount_gt?: InputMaybe; + amount_gte?: InputMaybe; + amount_in?: InputMaybe>; + amount_isNull?: InputMaybe; + amount_lt?: InputMaybe; + amount_lte?: InputMaybe; + amount_not_eq?: InputMaybe; + amount_not_in?: InputMaybe>; + dailyStatId?: InputMaybe; + dailyStatId_isNull?: InputMaybe; + id_contains?: InputMaybe; + id_containsInsensitive?: InputMaybe; + id_endsWith?: InputMaybe; + id_eq?: InputMaybe; + id_gt?: InputMaybe; + id_gte?: InputMaybe; + id_in?: InputMaybe>; + id_isNull?: InputMaybe; + id_lt?: InputMaybe; + id_lte?: InputMaybe; + id_not_contains?: InputMaybe; + id_not_containsInsensitive?: InputMaybe; + id_not_endsWith?: InputMaybe; + id_not_eq?: InputMaybe; + id_not_in?: InputMaybe>; + id_not_startsWith?: InputMaybe; + id_startsWith?: InputMaybe; + price_eq?: InputMaybe; + price_gt?: InputMaybe; + price_gte?: InputMaybe; + price_in?: InputMaybe>; + price_isNull?: InputMaybe; + price_lt?: InputMaybe; + price_lte?: InputMaybe; + price_not_eq?: InputMaybe; + price_not_in?: InputMaybe>; + symbol_contains?: InputMaybe; + symbol_containsInsensitive?: InputMaybe; + symbol_endsWith?: InputMaybe; + symbol_eq?: InputMaybe; + symbol_gt?: InputMaybe; + symbol_gte?: InputMaybe; + symbol_in?: InputMaybe>; + symbol_isNull?: InputMaybe; + symbol_lt?: InputMaybe; + symbol_lte?: InputMaybe; + symbol_not_contains?: InputMaybe; + symbol_not_containsInsensitive?: InputMaybe; + symbol_not_endsWith?: InputMaybe; + symbol_not_eq?: InputMaybe; + symbol_not_in?: InputMaybe>; + symbol_not_startsWith?: InputMaybe; + symbol_startsWith?: InputMaybe; + value_eq?: InputMaybe; + value_gt?: InputMaybe; + value_gte?: InputMaybe; + value_in?: InputMaybe>; + value_isNull?: InputMaybe; + value_lt?: InputMaybe; + value_lte?: InputMaybe; + value_not_eq?: InputMaybe; + value_not_in?: InputMaybe>; +}; + +export type OusdCollateralDailyStatsConnection = { + __typename?: 'OUSDCollateralDailyStatsConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; }; - -export type OusdDailyStatCollateralArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; +export type OusdCompoundStrategiesConnection = { + __typename?: 'OUSDCompoundStrategiesConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; }; - -export type OusdDailyStatStrategiesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; +export type OusdCompoundStrategy = { + __typename?: 'OUSDCompoundStrategy'; + blockNumber: Scalars['Int']['output']; + dai: Scalars['BigInt']['output']; + id: Scalars['String']['output']; + timestamp: Scalars['DateTime']['output']; + usdc: Scalars['BigInt']['output']; + usdt: Scalars['BigInt']['output']; }; -export type OusdDailyStatEdge = { - __typename?: 'OUSDDailyStatEdge'; +export type OusdCompoundStrategyEdge = { + __typename?: 'OUSDCompoundStrategyEdge'; cursor: Scalars['String']['output']; - node: OusdDailyStat; + node: OusdCompoundStrategy; }; -export enum OusdDailyStatOrderByInput { - AmoSupplyAsc = 'amoSupply_ASC', - AmoSupplyAscNullsFirst = 'amoSupply_ASC_NULLS_FIRST', - AmoSupplyDesc = 'amoSupply_DESC', - AmoSupplyDescNullsLast = 'amoSupply_DESC_NULLS_LAST', - AprAsc = 'apr_ASC', - AprAscNullsFirst = 'apr_ASC_NULLS_FIRST', - AprDesc = 'apr_DESC', - AprDescNullsLast = 'apr_DESC_NULLS_LAST', - Apy7DayAvgAsc = 'apy7DayAvg_ASC', - Apy7DayAvgAscNullsFirst = 'apy7DayAvg_ASC_NULLS_FIRST', - Apy7DayAvgDesc = 'apy7DayAvg_DESC', - Apy7DayAvgDescNullsLast = 'apy7DayAvg_DESC_NULLS_LAST', - Apy14DayAvgAsc = 'apy14DayAvg_ASC', - Apy14DayAvgAscNullsFirst = 'apy14DayAvg_ASC_NULLS_FIRST', - Apy14DayAvgDesc = 'apy14DayAvg_DESC', - Apy14DayAvgDescNullsLast = 'apy14DayAvg_DESC_NULLS_LAST', - Apy30DayAvgAsc = 'apy30DayAvg_ASC', - Apy30DayAvgAscNullsFirst = 'apy30DayAvg_ASC_NULLS_FIRST', - Apy30DayAvgDesc = 'apy30DayAvg_DESC', - Apy30DayAvgDescNullsLast = 'apy30DayAvg_DESC_NULLS_LAST', - ApyAsc = 'apy_ASC', - ApyAscNullsFirst = 'apy_ASC_NULLS_FIRST', - ApyDesc = 'apy_DESC', - ApyDescNullsLast = 'apy_DESC_NULLS_LAST', +export enum OusdCompoundStrategyOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - DripperWethAsc = 'dripperWETH_ASC', - DripperWethAscNullsFirst = 'dripperWETH_ASC_NULLS_FIRST', - DripperWethDesc = 'dripperWETH_DESC', - DripperWethDescNullsLast = 'dripperWETH_DESC_NULLS_LAST', - FeesEth7DayAsc = 'feesETH7Day_ASC', - FeesEth7DayAscNullsFirst = 'feesETH7Day_ASC_NULLS_FIRST', - FeesEth7DayDesc = 'feesETH7Day_DESC', - FeesEth7DayDescNullsLast = 'feesETH7Day_DESC_NULLS_LAST', - FeesEthAllTimeAsc = 'feesETHAllTime_ASC', - FeesEthAllTimeAscNullsFirst = 'feesETHAllTime_ASC_NULLS_FIRST', - FeesEthAllTimeDesc = 'feesETHAllTime_DESC', - FeesEthAllTimeDescNullsLast = 'feesETHAllTime_DESC_NULLS_LAST', - FeesEthAsc = 'feesETH_ASC', - FeesEthAscNullsFirst = 'feesETH_ASC_NULLS_FIRST', - FeesEthDesc = 'feesETH_DESC', - FeesEthDescNullsLast = 'feesETH_DESC_NULLS_LAST', - FeesUsd7DayAsc = 'feesUSD7Day_ASC', - FeesUsd7DayAscNullsFirst = 'feesUSD7Day_ASC_NULLS_FIRST', - FeesUsd7DayDesc = 'feesUSD7Day_DESC', - FeesUsd7DayDescNullsLast = 'feesUSD7Day_DESC_NULLS_LAST', - FeesUsdAllTimeAsc = 'feesUSDAllTime_ASC', - FeesUsdAllTimeAscNullsFirst = 'feesUSDAllTime_ASC_NULLS_FIRST', - FeesUsdAllTimeDesc = 'feesUSDAllTime_DESC', - FeesUsdAllTimeDescNullsLast = 'feesUSDAllTime_DESC_NULLS_LAST', - FeesUsdAsc = 'feesUSD_ASC', - FeesUsdAscNullsFirst = 'feesUSD_ASC_NULLS_FIRST', - FeesUsdDesc = 'feesUSD_DESC', - FeesUsdDescNullsLast = 'feesUSD_DESC_NULLS_LAST', - HoldersOverThresholdAsc = 'holdersOverThreshold_ASC', - HoldersOverThresholdAscNullsFirst = 'holdersOverThreshold_ASC_NULLS_FIRST', - HoldersOverThresholdDesc = 'holdersOverThreshold_DESC', - HoldersOverThresholdDescNullsLast = 'holdersOverThreshold_DESC_NULLS_LAST', + DaiAsc = 'dai_ASC', + DaiAscNullsFirst = 'dai_ASC_NULLS_FIRST', + DaiDesc = 'dai_DESC', + DaiDescNullsLast = 'dai_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - MarketCapUsdAsc = 'marketCapUSD_ASC', - MarketCapUsdAscNullsFirst = 'marketCapUSD_ASC_NULLS_FIRST', - MarketCapUsdDesc = 'marketCapUSD_DESC', - MarketCapUsdDescNullsLast = 'marketCapUSD_DESC_NULLS_LAST', - NonRebasingSupplyAsc = 'nonRebasingSupply_ASC', - NonRebasingSupplyAscNullsFirst = 'nonRebasingSupply_ASC_NULLS_FIRST', - NonRebasingSupplyDesc = 'nonRebasingSupply_DESC', - NonRebasingSupplyDescNullsLast = 'nonRebasingSupply_DESC_NULLS_LAST', - PegPriceAsc = 'pegPrice_ASC', - PegPriceAscNullsFirst = 'pegPrice_ASC_NULLS_FIRST', - PegPriceDesc = 'pegPrice_DESC', - PegPriceDescNullsLast = 'pegPrice_DESC_NULLS_LAST', - RebasingSupplyAsc = 'rebasingSupply_ASC', - RebasingSupplyAscNullsFirst = 'rebasingSupply_ASC_NULLS_FIRST', - RebasingSupplyDesc = 'rebasingSupply_DESC', - RebasingSupplyDescNullsLast = 'rebasingSupply_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TotalSupplyUsdAsc = 'totalSupplyUSD_ASC', - TotalSupplyUsdAscNullsFirst = 'totalSupplyUSD_ASC_NULLS_FIRST', - TotalSupplyUsdDesc = 'totalSupplyUSD_DESC', - TotalSupplyUsdDescNullsLast = 'totalSupplyUSD_DESC_NULLS_LAST', - TotalSupplyAsc = 'totalSupply_ASC', - TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', - TotalSupplyDesc = 'totalSupply_DESC', - TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST', - TradingVolumeUsdAsc = 'tradingVolumeUSD_ASC', - TradingVolumeUsdAscNullsFirst = 'tradingVolumeUSD_ASC_NULLS_FIRST', - TradingVolumeUsdDesc = 'tradingVolumeUSD_DESC', - TradingVolumeUsdDescNullsLast = 'tradingVolumeUSD_DESC_NULLS_LAST', - WrappedSupplyAsc = 'wrappedSupply_ASC', - WrappedSupplyAscNullsFirst = 'wrappedSupply_ASC_NULLS_FIRST', - WrappedSupplyDesc = 'wrappedSupply_DESC', - WrappedSupplyDescNullsLast = 'wrappedSupply_DESC_NULLS_LAST', - YieldEth7DayAsc = 'yieldETH7Day_ASC', - YieldEth7DayAscNullsFirst = 'yieldETH7Day_ASC_NULLS_FIRST', - YieldEth7DayDesc = 'yieldETH7Day_DESC', - YieldEth7DayDescNullsLast = 'yieldETH7Day_DESC_NULLS_LAST', - YieldEthAllTimeAsc = 'yieldETHAllTime_ASC', - YieldEthAllTimeAscNullsFirst = 'yieldETHAllTime_ASC_NULLS_FIRST', - YieldEthAllTimeDesc = 'yieldETHAllTime_DESC', - YieldEthAllTimeDescNullsLast = 'yieldETHAllTime_DESC_NULLS_LAST', - YieldEthAsc = 'yieldETH_ASC', - YieldEthAscNullsFirst = 'yieldETH_ASC_NULLS_FIRST', - YieldEthDesc = 'yieldETH_DESC', - YieldEthDescNullsLast = 'yieldETH_DESC_NULLS_LAST', - YieldUsd7DayAsc = 'yieldUSD7Day_ASC', - YieldUsd7DayAscNullsFirst = 'yieldUSD7Day_ASC_NULLS_FIRST', - YieldUsd7DayDesc = 'yieldUSD7Day_DESC', - YieldUsd7DayDescNullsLast = 'yieldUSD7Day_DESC_NULLS_LAST', - YieldUsdAllTimeAsc = 'yieldUSDAllTime_ASC', - YieldUsdAllTimeAscNullsFirst = 'yieldUSDAllTime_ASC_NULLS_FIRST', - YieldUsdAllTimeDesc = 'yieldUSDAllTime_DESC', - YieldUsdAllTimeDescNullsLast = 'yieldUSDAllTime_DESC_NULLS_LAST', - YieldUsdAsc = 'yieldUSD_ASC', - YieldUsdAscNullsFirst = 'yieldUSD_ASC_NULLS_FIRST', - YieldUsdDesc = 'yieldUSD_DESC', - YieldUsdDescNullsLast = 'yieldUSD_DESC_NULLS_LAST' -} - -export type OusdDailyStatWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - amoSupply_eq?: InputMaybe; - amoSupply_gt?: InputMaybe; - amoSupply_gte?: InputMaybe; - amoSupply_in?: InputMaybe>; - amoSupply_isNull?: InputMaybe; - amoSupply_lt?: InputMaybe; - amoSupply_lte?: InputMaybe; - amoSupply_not_eq?: InputMaybe; - amoSupply_not_in?: InputMaybe>; - apr_eq?: InputMaybe; - apr_gt?: InputMaybe; - apr_gte?: InputMaybe; - apr_in?: InputMaybe>; - apr_isNull?: InputMaybe; - apr_lt?: InputMaybe; - apr_lte?: InputMaybe; - apr_not_eq?: InputMaybe; - apr_not_in?: InputMaybe>; - apy7DayAvg_eq?: InputMaybe; - apy7DayAvg_gt?: InputMaybe; - apy7DayAvg_gte?: InputMaybe; - apy7DayAvg_in?: InputMaybe>; - apy7DayAvg_isNull?: InputMaybe; - apy7DayAvg_lt?: InputMaybe; - apy7DayAvg_lte?: InputMaybe; - apy7DayAvg_not_eq?: InputMaybe; - apy7DayAvg_not_in?: InputMaybe>; - apy14DayAvg_eq?: InputMaybe; - apy14DayAvg_gt?: InputMaybe; - apy14DayAvg_gte?: InputMaybe; - apy14DayAvg_in?: InputMaybe>; - apy14DayAvg_isNull?: InputMaybe; - apy14DayAvg_lt?: InputMaybe; - apy14DayAvg_lte?: InputMaybe; - apy14DayAvg_not_eq?: InputMaybe; - apy14DayAvg_not_in?: InputMaybe>; - apy30DayAvg_eq?: InputMaybe; - apy30DayAvg_gt?: InputMaybe; - apy30DayAvg_gte?: InputMaybe; - apy30DayAvg_in?: InputMaybe>; - apy30DayAvg_isNull?: InputMaybe; - apy30DayAvg_lt?: InputMaybe; - apy30DayAvg_lte?: InputMaybe; - apy30DayAvg_not_eq?: InputMaybe; - apy30DayAvg_not_in?: InputMaybe>; - apy_eq?: InputMaybe; - apy_gt?: InputMaybe; - apy_gte?: InputMaybe; - apy_in?: InputMaybe>; - apy_isNull?: InputMaybe; - apy_lt?: InputMaybe; - apy_lte?: InputMaybe; - apy_not_eq?: InputMaybe; - apy_not_in?: InputMaybe>; + UsdcAsc = 'usdc_ASC', + UsdcAscNullsFirst = 'usdc_ASC_NULLS_FIRST', + UsdcDesc = 'usdc_DESC', + UsdcDescNullsLast = 'usdc_DESC_NULLS_LAST', + UsdtAsc = 'usdt_ASC', + UsdtAscNullsFirst = 'usdt_ASC_NULLS_FIRST', + UsdtDesc = 'usdt_DESC', + UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' +} + +export type OusdCompoundStrategyWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -9368,81 +8504,15 @@ export type OusdDailyStatWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; - collateral_every?: InputMaybe; - collateral_none?: InputMaybe; - collateral_some?: InputMaybe; - dripperWETH_eq?: InputMaybe; - dripperWETH_gt?: InputMaybe; - dripperWETH_gte?: InputMaybe; - dripperWETH_in?: InputMaybe>; - dripperWETH_isNull?: InputMaybe; - dripperWETH_lt?: InputMaybe; - dripperWETH_lte?: InputMaybe; - dripperWETH_not_eq?: InputMaybe; - dripperWETH_not_in?: InputMaybe>; - feesETH7Day_eq?: InputMaybe; - feesETH7Day_gt?: InputMaybe; - feesETH7Day_gte?: InputMaybe; - feesETH7Day_in?: InputMaybe>; - feesETH7Day_isNull?: InputMaybe; - feesETH7Day_lt?: InputMaybe; - feesETH7Day_lte?: InputMaybe; - feesETH7Day_not_eq?: InputMaybe; - feesETH7Day_not_in?: InputMaybe>; - feesETHAllTime_eq?: InputMaybe; - feesETHAllTime_gt?: InputMaybe; - feesETHAllTime_gte?: InputMaybe; - feesETHAllTime_in?: InputMaybe>; - feesETHAllTime_isNull?: InputMaybe; - feesETHAllTime_lt?: InputMaybe; - feesETHAllTime_lte?: InputMaybe; - feesETHAllTime_not_eq?: InputMaybe; - feesETHAllTime_not_in?: InputMaybe>; - feesETH_eq?: InputMaybe; - feesETH_gt?: InputMaybe; - feesETH_gte?: InputMaybe; - feesETH_in?: InputMaybe>; - feesETH_isNull?: InputMaybe; - feesETH_lt?: InputMaybe; - feesETH_lte?: InputMaybe; - feesETH_not_eq?: InputMaybe; - feesETH_not_in?: InputMaybe>; - feesUSD7Day_eq?: InputMaybe; - feesUSD7Day_gt?: InputMaybe; - feesUSD7Day_gte?: InputMaybe; - feesUSD7Day_in?: InputMaybe>; - feesUSD7Day_isNull?: InputMaybe; - feesUSD7Day_lt?: InputMaybe; - feesUSD7Day_lte?: InputMaybe; - feesUSD7Day_not_eq?: InputMaybe; - feesUSD7Day_not_in?: InputMaybe>; - feesUSDAllTime_eq?: InputMaybe; - feesUSDAllTime_gt?: InputMaybe; - feesUSDAllTime_gte?: InputMaybe; - feesUSDAllTime_in?: InputMaybe>; - feesUSDAllTime_isNull?: InputMaybe; - feesUSDAllTime_lt?: InputMaybe; - feesUSDAllTime_lte?: InputMaybe; - feesUSDAllTime_not_eq?: InputMaybe; - feesUSDAllTime_not_in?: InputMaybe>; - feesUSD_eq?: InputMaybe; - feesUSD_gt?: InputMaybe; - feesUSD_gte?: InputMaybe; - feesUSD_in?: InputMaybe>; - feesUSD_isNull?: InputMaybe; - feesUSD_lt?: InputMaybe; - feesUSD_lte?: InputMaybe; - feesUSD_not_eq?: InputMaybe; - feesUSD_not_in?: InputMaybe>; - holdersOverThreshold_eq?: InputMaybe; - holdersOverThreshold_gt?: InputMaybe; - holdersOverThreshold_gte?: InputMaybe; - holdersOverThreshold_in?: InputMaybe>; - holdersOverThreshold_isNull?: InputMaybe; - holdersOverThreshold_lt?: InputMaybe; - holdersOverThreshold_lte?: InputMaybe; - holdersOverThreshold_not_eq?: InputMaybe; - holdersOverThreshold_not_in?: InputMaybe>; + dai_eq?: InputMaybe; + dai_gt?: InputMaybe; + dai_gte?: InputMaybe; + dai_in?: InputMaybe>; + dai_isNull?: InputMaybe; + dai_lt?: InputMaybe; + dai_lte?: InputMaybe; + dai_not_eq?: InputMaybe; + dai_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -9460,45 +8530,6 @@ export type OusdDailyStatWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - marketCapUSD_eq?: InputMaybe; - marketCapUSD_gt?: InputMaybe; - marketCapUSD_gte?: InputMaybe; - marketCapUSD_in?: InputMaybe>; - marketCapUSD_isNull?: InputMaybe; - marketCapUSD_lt?: InputMaybe; - marketCapUSD_lte?: InputMaybe; - marketCapUSD_not_eq?: InputMaybe; - marketCapUSD_not_in?: InputMaybe>; - nonRebasingSupply_eq?: InputMaybe; - nonRebasingSupply_gt?: InputMaybe; - nonRebasingSupply_gte?: InputMaybe; - nonRebasingSupply_in?: InputMaybe>; - nonRebasingSupply_isNull?: InputMaybe; - nonRebasingSupply_lt?: InputMaybe; - nonRebasingSupply_lte?: InputMaybe; - nonRebasingSupply_not_eq?: InputMaybe; - nonRebasingSupply_not_in?: InputMaybe>; - pegPrice_eq?: InputMaybe; - pegPrice_gt?: InputMaybe; - pegPrice_gte?: InputMaybe; - pegPrice_in?: InputMaybe>; - pegPrice_isNull?: InputMaybe; - pegPrice_lt?: InputMaybe; - pegPrice_lte?: InputMaybe; - pegPrice_not_eq?: InputMaybe; - pegPrice_not_in?: InputMaybe>; - rebasingSupply_eq?: InputMaybe; - rebasingSupply_gt?: InputMaybe; - rebasingSupply_gte?: InputMaybe; - rebasingSupply_in?: InputMaybe>; - rebasingSupply_isNull?: InputMaybe; - rebasingSupply_lt?: InputMaybe; - rebasingSupply_lte?: InputMaybe; - rebasingSupply_not_eq?: InputMaybe; - rebasingSupply_not_in?: InputMaybe>; - strategies_every?: InputMaybe; - strategies_none?: InputMaybe; - strategies_some?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -9508,120 +8539,28 @@ export type OusdDailyStatWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - totalSupplyUSD_eq?: InputMaybe; - totalSupplyUSD_gt?: InputMaybe; - totalSupplyUSD_gte?: InputMaybe; - totalSupplyUSD_in?: InputMaybe>; - totalSupplyUSD_isNull?: InputMaybe; - totalSupplyUSD_lt?: InputMaybe; - totalSupplyUSD_lte?: InputMaybe; - totalSupplyUSD_not_eq?: InputMaybe; - totalSupplyUSD_not_in?: InputMaybe>; - totalSupply_eq?: InputMaybe; - totalSupply_gt?: InputMaybe; - totalSupply_gte?: InputMaybe; - totalSupply_in?: InputMaybe>; - totalSupply_isNull?: InputMaybe; - totalSupply_lt?: InputMaybe; - totalSupply_lte?: InputMaybe; - totalSupply_not_eq?: InputMaybe; - totalSupply_not_in?: InputMaybe>; - tradingVolumeUSD_eq?: InputMaybe; - tradingVolumeUSD_gt?: InputMaybe; - tradingVolumeUSD_gte?: InputMaybe; - tradingVolumeUSD_in?: InputMaybe>; - tradingVolumeUSD_isNull?: InputMaybe; - tradingVolumeUSD_lt?: InputMaybe; - tradingVolumeUSD_lte?: InputMaybe; - tradingVolumeUSD_not_eq?: InputMaybe; - tradingVolumeUSD_not_in?: InputMaybe>; - wrappedSupply_eq?: InputMaybe; - wrappedSupply_gt?: InputMaybe; - wrappedSupply_gte?: InputMaybe; - wrappedSupply_in?: InputMaybe>; - wrappedSupply_isNull?: InputMaybe; - wrappedSupply_lt?: InputMaybe; - wrappedSupply_lte?: InputMaybe; - wrappedSupply_not_eq?: InputMaybe; - wrappedSupply_not_in?: InputMaybe>; - yieldETH7Day_eq?: InputMaybe; - yieldETH7Day_gt?: InputMaybe; - yieldETH7Day_gte?: InputMaybe; - yieldETH7Day_in?: InputMaybe>; - yieldETH7Day_isNull?: InputMaybe; - yieldETH7Day_lt?: InputMaybe; - yieldETH7Day_lte?: InputMaybe; - yieldETH7Day_not_eq?: InputMaybe; - yieldETH7Day_not_in?: InputMaybe>; - yieldETHAllTime_eq?: InputMaybe; - yieldETHAllTime_gt?: InputMaybe; - yieldETHAllTime_gte?: InputMaybe; - yieldETHAllTime_in?: InputMaybe>; - yieldETHAllTime_isNull?: InputMaybe; - yieldETHAllTime_lt?: InputMaybe; - yieldETHAllTime_lte?: InputMaybe; - yieldETHAllTime_not_eq?: InputMaybe; - yieldETHAllTime_not_in?: InputMaybe>; - yieldETH_eq?: InputMaybe; - yieldETH_gt?: InputMaybe; - yieldETH_gte?: InputMaybe; - yieldETH_in?: InputMaybe>; - yieldETH_isNull?: InputMaybe; - yieldETH_lt?: InputMaybe; - yieldETH_lte?: InputMaybe; - yieldETH_not_eq?: InputMaybe; - yieldETH_not_in?: InputMaybe>; - yieldUSD7Day_eq?: InputMaybe; - yieldUSD7Day_gt?: InputMaybe; - yieldUSD7Day_gte?: InputMaybe; - yieldUSD7Day_in?: InputMaybe>; - yieldUSD7Day_isNull?: InputMaybe; - yieldUSD7Day_lt?: InputMaybe; - yieldUSD7Day_lte?: InputMaybe; - yieldUSD7Day_not_eq?: InputMaybe; - yieldUSD7Day_not_in?: InputMaybe>; - yieldUSDAllTime_eq?: InputMaybe; - yieldUSDAllTime_gt?: InputMaybe; - yieldUSDAllTime_gte?: InputMaybe; - yieldUSDAllTime_in?: InputMaybe>; - yieldUSDAllTime_isNull?: InputMaybe; - yieldUSDAllTime_lt?: InputMaybe; - yieldUSDAllTime_lte?: InputMaybe; - yieldUSDAllTime_not_eq?: InputMaybe; - yieldUSDAllTime_not_in?: InputMaybe>; - yieldUSD_eq?: InputMaybe; - yieldUSD_gt?: InputMaybe; - yieldUSD_gte?: InputMaybe; - yieldUSD_in?: InputMaybe>; - yieldUSD_isNull?: InputMaybe; - yieldUSD_lt?: InputMaybe; - yieldUSD_lte?: InputMaybe; - yieldUSD_not_eq?: InputMaybe; - yieldUSD_not_in?: InputMaybe>; -}; - -export type OusdDailyStatsConnection = { - __typename?: 'OUSDDailyStatsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OusdEdge = { - __typename?: 'OUSDEdge'; - cursor: Scalars['String']['output']; - node: Ousd; -}; - -export type OusdFluxStrategiesConnection = { - __typename?: 'OUSDFluxStrategiesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; + usdc_eq?: InputMaybe; + usdc_gt?: InputMaybe; + usdc_gte?: InputMaybe; + usdc_in?: InputMaybe>; + usdc_isNull?: InputMaybe; + usdc_lt?: InputMaybe; + usdc_lte?: InputMaybe; + usdc_not_eq?: InputMaybe; + usdc_not_in?: InputMaybe>; + usdt_eq?: InputMaybe; + usdt_gt?: InputMaybe; + usdt_gte?: InputMaybe; + usdt_in?: InputMaybe>; + usdt_isNull?: InputMaybe; + usdt_lt?: InputMaybe; + usdt_lte?: InputMaybe; + usdt_not_eq?: InputMaybe; + usdt_not_in?: InputMaybe>; }; -export type OusdFluxStrategy = { - __typename?: 'OUSDFluxStrategy'; +export type OusdConvexLusdPlus3Crv = { + __typename?: 'OUSDConvexLUSDPlus3Crv'; blockNumber: Scalars['Int']['output']; dai: Scalars['BigInt']['output']; id: Scalars['String']['output']; @@ -9630,13 +8569,13 @@ export type OusdFluxStrategy = { usdt: Scalars['BigInt']['output']; }; -export type OusdFluxStrategyEdge = { - __typename?: 'OUSDFluxStrategyEdge'; +export type OusdConvexLusdPlus3CrvEdge = { + __typename?: 'OUSDConvexLUSDPlus3CrvEdge'; cursor: Scalars['String']['output']; - node: OusdFluxStrategy; + node: OusdConvexLusdPlus3Crv; }; -export enum OusdFluxStrategyOrderByInput { +export enum OusdConvexLusdPlus3CrvOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', @@ -9663,9 +8602,9 @@ export enum OusdFluxStrategyOrderByInput { UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' } -export type OusdFluxStrategyWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OusdConvexLusdPlus3CrvWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -9730,69 +8669,45 @@ export type OusdFluxStrategyWhereInput = { usdt_not_in?: InputMaybe>; }; -export type OusdHistoriesConnection = { - __typename?: 'OUSDHistoriesConnection'; - edges: Array; +export type OusdConvexLusdPlus3CrvsConnection = { + __typename?: 'OUSDConvexLUSDPlus3CrvsConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -/** The History entity tracks events that change the balance of OUSD for an address. */ -export type OusdHistory = { - __typename?: 'OUSDHistory'; - address: OusdAddress; - balance: Scalars['BigInt']['output']; +export type OusdConvexStrategiesConnection = { + __typename?: 'OUSDConvexStrategiesConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; +}; + +export type OusdConvexStrategy = { + __typename?: 'OUSDConvexStrategy'; blockNumber: Scalars['Int']['output']; + dai: Scalars['BigInt']['output']; id: Scalars['String']['output']; timestamp: Scalars['DateTime']['output']; - txHash: Scalars['String']['output']; - type: HistoryType; - value: Scalars['BigInt']['output']; + usdc: Scalars['BigInt']['output']; + usdt: Scalars['BigInt']['output']; }; -export type OusdHistoryEdge = { - __typename?: 'OUSDHistoryEdge'; +export type OusdConvexStrategyEdge = { + __typename?: 'OUSDConvexStrategyEdge'; cursor: Scalars['String']['output']; - node: OusdHistory; + node: OusdConvexStrategy; }; -export enum OusdHistoryOrderByInput { - AddressBalanceAsc = 'address_balance_ASC', - AddressBalanceAscNullsFirst = 'address_balance_ASC_NULLS_FIRST', - AddressBalanceDesc = 'address_balance_DESC', - AddressBalanceDescNullsLast = 'address_balance_DESC_NULLS_LAST', - AddressCreditsAsc = 'address_credits_ASC', - AddressCreditsAscNullsFirst = 'address_credits_ASC_NULLS_FIRST', - AddressCreditsDesc = 'address_credits_DESC', - AddressCreditsDescNullsLast = 'address_credits_DESC_NULLS_LAST', - AddressEarnedAsc = 'address_earned_ASC', - AddressEarnedAscNullsFirst = 'address_earned_ASC_NULLS_FIRST', - AddressEarnedDesc = 'address_earned_DESC', - AddressEarnedDescNullsLast = 'address_earned_DESC_NULLS_LAST', - AddressIdAsc = 'address_id_ASC', - AddressIdAscNullsFirst = 'address_id_ASC_NULLS_FIRST', - AddressIdDesc = 'address_id_DESC', - AddressIdDescNullsLast = 'address_id_DESC_NULLS_LAST', - AddressIsContractAsc = 'address_isContract_ASC', - AddressIsContractAscNullsFirst = 'address_isContract_ASC_NULLS_FIRST', - AddressIsContractDesc = 'address_isContract_DESC', - AddressIsContractDescNullsLast = 'address_isContract_DESC_NULLS_LAST', - AddressLastUpdatedAsc = 'address_lastUpdated_ASC', - AddressLastUpdatedAscNullsFirst = 'address_lastUpdated_ASC_NULLS_FIRST', - AddressLastUpdatedDesc = 'address_lastUpdated_DESC', - AddressLastUpdatedDescNullsLast = 'address_lastUpdated_DESC_NULLS_LAST', - AddressRebasingOptionAsc = 'address_rebasingOption_ASC', - AddressRebasingOptionAscNullsFirst = 'address_rebasingOption_ASC_NULLS_FIRST', - AddressRebasingOptionDesc = 'address_rebasingOption_DESC', - AddressRebasingOptionDescNullsLast = 'address_rebasingOption_DESC_NULLS_LAST', - BalanceAsc = 'balance_ASC', - BalanceAscNullsFirst = 'balance_ASC_NULLS_FIRST', - BalanceDesc = 'balance_DESC', - BalanceDescNullsLast = 'balance_DESC_NULLS_LAST', +export enum OusdConvexStrategyOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + DaiAsc = 'dai_ASC', + DaiAscNullsFirst = 'dai_ASC_NULLS_FIRST', + DaiDesc = 'dai_DESC', + DaiDescNullsLast = 'dai_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', @@ -9801,34 +8716,19 @@ export enum OusdHistoryOrderByInput { TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TxHashAsc = 'txHash_ASC', - TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', - TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST', - TypeAsc = 'type_ASC', - TypeAscNullsFirst = 'type_ASC_NULLS_FIRST', - TypeDesc = 'type_DESC', - TypeDescNullsLast = 'type_DESC_NULLS_LAST', - ValueAsc = 'value_ASC', - ValueAscNullsFirst = 'value_ASC_NULLS_FIRST', - ValueDesc = 'value_DESC', - ValueDescNullsLast = 'value_DESC_NULLS_LAST' + UsdcAsc = 'usdc_ASC', + UsdcAscNullsFirst = 'usdc_ASC_NULLS_FIRST', + UsdcDesc = 'usdc_DESC', + UsdcDescNullsLast = 'usdc_DESC_NULLS_LAST', + UsdtAsc = 'usdt_ASC', + UsdtAscNullsFirst = 'usdt_ASC_NULLS_FIRST', + UsdtDesc = 'usdt_DESC', + UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' } -export type OusdHistoryWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - address?: InputMaybe; - address_isNull?: InputMaybe; - balance_eq?: InputMaybe; - balance_gt?: InputMaybe; - balance_gte?: InputMaybe; - balance_in?: InputMaybe>; - balance_isNull?: InputMaybe; - balance_lt?: InputMaybe; - balance_lte?: InputMaybe; - balance_not_eq?: InputMaybe; - balance_not_in?: InputMaybe>; +export type OusdConvexStrategyWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -9838,6 +8738,15 @@ export type OusdHistoryWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; + dai_eq?: InputMaybe; + dai_gt?: InputMaybe; + dai_gte?: InputMaybe; + dai_in?: InputMaybe>; + dai_isNull?: InputMaybe; + dai_lt?: InputMaybe; + dai_lte?: InputMaybe; + dai_not_eq?: InputMaybe; + dai_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -9864,92 +8773,269 @@ export type OusdHistoryWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - txHash_contains?: InputMaybe; - txHash_containsInsensitive?: InputMaybe; - txHash_endsWith?: InputMaybe; - txHash_eq?: InputMaybe; - txHash_gt?: InputMaybe; - txHash_gte?: InputMaybe; - txHash_in?: InputMaybe>; - txHash_isNull?: InputMaybe; - txHash_lt?: InputMaybe; - txHash_lte?: InputMaybe; - txHash_not_contains?: InputMaybe; - txHash_not_containsInsensitive?: InputMaybe; - txHash_not_endsWith?: InputMaybe; - txHash_not_eq?: InputMaybe; - txHash_not_in?: InputMaybe>; - txHash_not_startsWith?: InputMaybe; - txHash_startsWith?: InputMaybe; - type_eq?: InputMaybe; - type_in?: InputMaybe>; - type_isNull?: InputMaybe; - type_not_eq?: InputMaybe; - type_not_in?: InputMaybe>; - value_eq?: InputMaybe; - value_gt?: InputMaybe; - value_gte?: InputMaybe; - value_in?: InputMaybe>; - value_isNull?: InputMaybe; - value_lt?: InputMaybe; - value_lte?: InputMaybe; - value_not_eq?: InputMaybe; - value_not_in?: InputMaybe>; -}; - -export type OusdMetaStrategiesConnection = { - __typename?: 'OUSDMetaStrategiesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; + usdc_eq?: InputMaybe; + usdc_gt?: InputMaybe; + usdc_gte?: InputMaybe; + usdc_in?: InputMaybe>; + usdc_isNull?: InputMaybe; + usdc_lt?: InputMaybe; + usdc_lte?: InputMaybe; + usdc_not_eq?: InputMaybe; + usdc_not_in?: InputMaybe>; + usdt_eq?: InputMaybe; + usdt_gt?: InputMaybe; + usdt_gte?: InputMaybe; + usdt_in?: InputMaybe>; + usdt_isNull?: InputMaybe; + usdt_lt?: InputMaybe; + usdt_lte?: InputMaybe; + usdt_not_eq?: InputMaybe; + usdt_not_in?: InputMaybe>; }; -export type OusdMetaStrategy = { - __typename?: 'OUSDMetaStrategy'; +export type OusdDailyStat = { + __typename?: 'OUSDDailyStat'; + amoSupply: Scalars['BigInt']['output']; + apr: Scalars['Float']['output']; + apy: Scalars['Float']['output']; + apy7DayAvg: Scalars['Float']['output']; + apy14DayAvg: Scalars['Float']['output']; + apy30DayAvg: Scalars['Float']['output']; blockNumber: Scalars['Int']['output']; - dai: Scalars['BigInt']['output']; + collateral: Array; + dripperWETH: Scalars['BigInt']['output']; + feesETH: Scalars['BigInt']['output']; + feesETH7Day: Scalars['BigInt']['output']; + feesETHAllTime: Scalars['BigInt']['output']; + feesUSD: Scalars['BigInt']['output']; + feesUSD7Day: Scalars['BigInt']['output']; + feesUSDAllTime: Scalars['BigInt']['output']; + holdersOverThreshold: Scalars['Int']['output']; id: Scalars['String']['output']; + marketCapUSD: Scalars['Float']['output']; + nonRebasingSupply: Scalars['BigInt']['output']; + pegPrice: Scalars['BigInt']['output']; + rebasingSupply: Scalars['BigInt']['output']; + strategies: Array; timestamp: Scalars['DateTime']['output']; - usdc: Scalars['BigInt']['output']; - usdt: Scalars['BigInt']['output']; + totalSupply: Scalars['BigInt']['output']; + totalSupplyUSD: Scalars['Float']['output']; + tradingVolumeUSD: Scalars['Float']['output']; + wrappedSupply: Scalars['BigInt']['output']; + yieldETH: Scalars['BigInt']['output']; + yieldETH7Day: Scalars['BigInt']['output']; + yieldETHAllTime: Scalars['BigInt']['output']; + yieldUSD: Scalars['BigInt']['output']; + yieldUSD7Day: Scalars['BigInt']['output']; + yieldUSDAllTime: Scalars['BigInt']['output']; }; -export type OusdMetaStrategyEdge = { - __typename?: 'OUSDMetaStrategyEdge'; + +export type OusdDailyStatCollateralArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + + +export type OusdDailyStatStrategiesArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + +export type OusdDailyStatEdge = { + __typename?: 'OUSDDailyStatEdge'; cursor: Scalars['String']['output']; - node: OusdMetaStrategy; + node: OusdDailyStat; }; -export enum OusdMetaStrategyOrderByInput { +export enum OusdDailyStatOrderByInput { + AmoSupplyAsc = 'amoSupply_ASC', + AmoSupplyAscNullsFirst = 'amoSupply_ASC_NULLS_FIRST', + AmoSupplyDesc = 'amoSupply_DESC', + AmoSupplyDescNullsLast = 'amoSupply_DESC_NULLS_LAST', + AprAsc = 'apr_ASC', + AprAscNullsFirst = 'apr_ASC_NULLS_FIRST', + AprDesc = 'apr_DESC', + AprDescNullsLast = 'apr_DESC_NULLS_LAST', + Apy7DayAvgAsc = 'apy7DayAvg_ASC', + Apy7DayAvgAscNullsFirst = 'apy7DayAvg_ASC_NULLS_FIRST', + Apy7DayAvgDesc = 'apy7DayAvg_DESC', + Apy7DayAvgDescNullsLast = 'apy7DayAvg_DESC_NULLS_LAST', + Apy14DayAvgAsc = 'apy14DayAvg_ASC', + Apy14DayAvgAscNullsFirst = 'apy14DayAvg_ASC_NULLS_FIRST', + Apy14DayAvgDesc = 'apy14DayAvg_DESC', + Apy14DayAvgDescNullsLast = 'apy14DayAvg_DESC_NULLS_LAST', + Apy30DayAvgAsc = 'apy30DayAvg_ASC', + Apy30DayAvgAscNullsFirst = 'apy30DayAvg_ASC_NULLS_FIRST', + Apy30DayAvgDesc = 'apy30DayAvg_DESC', + Apy30DayAvgDescNullsLast = 'apy30DayAvg_DESC_NULLS_LAST', + ApyAsc = 'apy_ASC', + ApyAscNullsFirst = 'apy_ASC_NULLS_FIRST', + ApyDesc = 'apy_DESC', + ApyDescNullsLast = 'apy_DESC_NULLS_LAST', BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - DaiAsc = 'dai_ASC', - DaiAscNullsFirst = 'dai_ASC_NULLS_FIRST', - DaiDesc = 'dai_DESC', - DaiDescNullsLast = 'dai_DESC_NULLS_LAST', + DripperWethAsc = 'dripperWETH_ASC', + DripperWethAscNullsFirst = 'dripperWETH_ASC_NULLS_FIRST', + DripperWethDesc = 'dripperWETH_DESC', + DripperWethDescNullsLast = 'dripperWETH_DESC_NULLS_LAST', + FeesEth7DayAsc = 'feesETH7Day_ASC', + FeesEth7DayAscNullsFirst = 'feesETH7Day_ASC_NULLS_FIRST', + FeesEth7DayDesc = 'feesETH7Day_DESC', + FeesEth7DayDescNullsLast = 'feesETH7Day_DESC_NULLS_LAST', + FeesEthAllTimeAsc = 'feesETHAllTime_ASC', + FeesEthAllTimeAscNullsFirst = 'feesETHAllTime_ASC_NULLS_FIRST', + FeesEthAllTimeDesc = 'feesETHAllTime_DESC', + FeesEthAllTimeDescNullsLast = 'feesETHAllTime_DESC_NULLS_LAST', + FeesEthAsc = 'feesETH_ASC', + FeesEthAscNullsFirst = 'feesETH_ASC_NULLS_FIRST', + FeesEthDesc = 'feesETH_DESC', + FeesEthDescNullsLast = 'feesETH_DESC_NULLS_LAST', + FeesUsd7DayAsc = 'feesUSD7Day_ASC', + FeesUsd7DayAscNullsFirst = 'feesUSD7Day_ASC_NULLS_FIRST', + FeesUsd7DayDesc = 'feesUSD7Day_DESC', + FeesUsd7DayDescNullsLast = 'feesUSD7Day_DESC_NULLS_LAST', + FeesUsdAllTimeAsc = 'feesUSDAllTime_ASC', + FeesUsdAllTimeAscNullsFirst = 'feesUSDAllTime_ASC_NULLS_FIRST', + FeesUsdAllTimeDesc = 'feesUSDAllTime_DESC', + FeesUsdAllTimeDescNullsLast = 'feesUSDAllTime_DESC_NULLS_LAST', + FeesUsdAsc = 'feesUSD_ASC', + FeesUsdAscNullsFirst = 'feesUSD_ASC_NULLS_FIRST', + FeesUsdDesc = 'feesUSD_DESC', + FeesUsdDescNullsLast = 'feesUSD_DESC_NULLS_LAST', + HoldersOverThresholdAsc = 'holdersOverThreshold_ASC', + HoldersOverThresholdAscNullsFirst = 'holdersOverThreshold_ASC_NULLS_FIRST', + HoldersOverThresholdDesc = 'holdersOverThreshold_DESC', + HoldersOverThresholdDescNullsLast = 'holdersOverThreshold_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', + MarketCapUsdAsc = 'marketCapUSD_ASC', + MarketCapUsdAscNullsFirst = 'marketCapUSD_ASC_NULLS_FIRST', + MarketCapUsdDesc = 'marketCapUSD_DESC', + MarketCapUsdDescNullsLast = 'marketCapUSD_DESC_NULLS_LAST', + NonRebasingSupplyAsc = 'nonRebasingSupply_ASC', + NonRebasingSupplyAscNullsFirst = 'nonRebasingSupply_ASC_NULLS_FIRST', + NonRebasingSupplyDesc = 'nonRebasingSupply_DESC', + NonRebasingSupplyDescNullsLast = 'nonRebasingSupply_DESC_NULLS_LAST', + PegPriceAsc = 'pegPrice_ASC', + PegPriceAscNullsFirst = 'pegPrice_ASC_NULLS_FIRST', + PegPriceDesc = 'pegPrice_DESC', + PegPriceDescNullsLast = 'pegPrice_DESC_NULLS_LAST', + RebasingSupplyAsc = 'rebasingSupply_ASC', + RebasingSupplyAscNullsFirst = 'rebasingSupply_ASC_NULLS_FIRST', + RebasingSupplyDesc = 'rebasingSupply_DESC', + RebasingSupplyDescNullsLast = 'rebasingSupply_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - UsdcAsc = 'usdc_ASC', - UsdcAscNullsFirst = 'usdc_ASC_NULLS_FIRST', - UsdcDesc = 'usdc_DESC', - UsdcDescNullsLast = 'usdc_DESC_NULLS_LAST', - UsdtAsc = 'usdt_ASC', - UsdtAscNullsFirst = 'usdt_ASC_NULLS_FIRST', - UsdtDesc = 'usdt_DESC', - UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' + TotalSupplyUsdAsc = 'totalSupplyUSD_ASC', + TotalSupplyUsdAscNullsFirst = 'totalSupplyUSD_ASC_NULLS_FIRST', + TotalSupplyUsdDesc = 'totalSupplyUSD_DESC', + TotalSupplyUsdDescNullsLast = 'totalSupplyUSD_DESC_NULLS_LAST', + TotalSupplyAsc = 'totalSupply_ASC', + TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', + TotalSupplyDesc = 'totalSupply_DESC', + TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST', + TradingVolumeUsdAsc = 'tradingVolumeUSD_ASC', + TradingVolumeUsdAscNullsFirst = 'tradingVolumeUSD_ASC_NULLS_FIRST', + TradingVolumeUsdDesc = 'tradingVolumeUSD_DESC', + TradingVolumeUsdDescNullsLast = 'tradingVolumeUSD_DESC_NULLS_LAST', + WrappedSupplyAsc = 'wrappedSupply_ASC', + WrappedSupplyAscNullsFirst = 'wrappedSupply_ASC_NULLS_FIRST', + WrappedSupplyDesc = 'wrappedSupply_DESC', + WrappedSupplyDescNullsLast = 'wrappedSupply_DESC_NULLS_LAST', + YieldEth7DayAsc = 'yieldETH7Day_ASC', + YieldEth7DayAscNullsFirst = 'yieldETH7Day_ASC_NULLS_FIRST', + YieldEth7DayDesc = 'yieldETH7Day_DESC', + YieldEth7DayDescNullsLast = 'yieldETH7Day_DESC_NULLS_LAST', + YieldEthAllTimeAsc = 'yieldETHAllTime_ASC', + YieldEthAllTimeAscNullsFirst = 'yieldETHAllTime_ASC_NULLS_FIRST', + YieldEthAllTimeDesc = 'yieldETHAllTime_DESC', + YieldEthAllTimeDescNullsLast = 'yieldETHAllTime_DESC_NULLS_LAST', + YieldEthAsc = 'yieldETH_ASC', + YieldEthAscNullsFirst = 'yieldETH_ASC_NULLS_FIRST', + YieldEthDesc = 'yieldETH_DESC', + YieldEthDescNullsLast = 'yieldETH_DESC_NULLS_LAST', + YieldUsd7DayAsc = 'yieldUSD7Day_ASC', + YieldUsd7DayAscNullsFirst = 'yieldUSD7Day_ASC_NULLS_FIRST', + YieldUsd7DayDesc = 'yieldUSD7Day_DESC', + YieldUsd7DayDescNullsLast = 'yieldUSD7Day_DESC_NULLS_LAST', + YieldUsdAllTimeAsc = 'yieldUSDAllTime_ASC', + YieldUsdAllTimeAscNullsFirst = 'yieldUSDAllTime_ASC_NULLS_FIRST', + YieldUsdAllTimeDesc = 'yieldUSDAllTime_DESC', + YieldUsdAllTimeDescNullsLast = 'yieldUSDAllTime_DESC_NULLS_LAST', + YieldUsdAsc = 'yieldUSD_ASC', + YieldUsdAscNullsFirst = 'yieldUSD_ASC_NULLS_FIRST', + YieldUsdDesc = 'yieldUSD_DESC', + YieldUsdDescNullsLast = 'yieldUSD_DESC_NULLS_LAST' } -export type OusdMetaStrategyWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OusdDailyStatWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + amoSupply_eq?: InputMaybe; + amoSupply_gt?: InputMaybe; + amoSupply_gte?: InputMaybe; + amoSupply_in?: InputMaybe>; + amoSupply_isNull?: InputMaybe; + amoSupply_lt?: InputMaybe; + amoSupply_lte?: InputMaybe; + amoSupply_not_eq?: InputMaybe; + amoSupply_not_in?: InputMaybe>; + apr_eq?: InputMaybe; + apr_gt?: InputMaybe; + apr_gte?: InputMaybe; + apr_in?: InputMaybe>; + apr_isNull?: InputMaybe; + apr_lt?: InputMaybe; + apr_lte?: InputMaybe; + apr_not_eq?: InputMaybe; + apr_not_in?: InputMaybe>; + apy7DayAvg_eq?: InputMaybe; + apy7DayAvg_gt?: InputMaybe; + apy7DayAvg_gte?: InputMaybe; + apy7DayAvg_in?: InputMaybe>; + apy7DayAvg_isNull?: InputMaybe; + apy7DayAvg_lt?: InputMaybe; + apy7DayAvg_lte?: InputMaybe; + apy7DayAvg_not_eq?: InputMaybe; + apy7DayAvg_not_in?: InputMaybe>; + apy14DayAvg_eq?: InputMaybe; + apy14DayAvg_gt?: InputMaybe; + apy14DayAvg_gte?: InputMaybe; + apy14DayAvg_in?: InputMaybe>; + apy14DayAvg_isNull?: InputMaybe; + apy14DayAvg_lt?: InputMaybe; + apy14DayAvg_lte?: InputMaybe; + apy14DayAvg_not_eq?: InputMaybe; + apy14DayAvg_not_in?: InputMaybe>; + apy30DayAvg_eq?: InputMaybe; + apy30DayAvg_gt?: InputMaybe; + apy30DayAvg_gte?: InputMaybe; + apy30DayAvg_in?: InputMaybe>; + apy30DayAvg_isNull?: InputMaybe; + apy30DayAvg_lt?: InputMaybe; + apy30DayAvg_lte?: InputMaybe; + apy30DayAvg_not_eq?: InputMaybe; + apy30DayAvg_not_in?: InputMaybe>; + apy_eq?: InputMaybe; + apy_gt?: InputMaybe; + apy_gte?: InputMaybe; + apy_in?: InputMaybe>; + apy_isNull?: InputMaybe; + apy_lt?: InputMaybe; + apy_lte?: InputMaybe; + apy_not_eq?: InputMaybe; + apy_not_in?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -9959,15 +9045,81 @@ export type OusdMetaStrategyWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; - dai_eq?: InputMaybe; - dai_gt?: InputMaybe; - dai_gte?: InputMaybe; - dai_in?: InputMaybe>; - dai_isNull?: InputMaybe; - dai_lt?: InputMaybe; - dai_lte?: InputMaybe; - dai_not_eq?: InputMaybe; - dai_not_in?: InputMaybe>; + collateral_every?: InputMaybe; + collateral_none?: InputMaybe; + collateral_some?: InputMaybe; + dripperWETH_eq?: InputMaybe; + dripperWETH_gt?: InputMaybe; + dripperWETH_gte?: InputMaybe; + dripperWETH_in?: InputMaybe>; + dripperWETH_isNull?: InputMaybe; + dripperWETH_lt?: InputMaybe; + dripperWETH_lte?: InputMaybe; + dripperWETH_not_eq?: InputMaybe; + dripperWETH_not_in?: InputMaybe>; + feesETH7Day_eq?: InputMaybe; + feesETH7Day_gt?: InputMaybe; + feesETH7Day_gte?: InputMaybe; + feesETH7Day_in?: InputMaybe>; + feesETH7Day_isNull?: InputMaybe; + feesETH7Day_lt?: InputMaybe; + feesETH7Day_lte?: InputMaybe; + feesETH7Day_not_eq?: InputMaybe; + feesETH7Day_not_in?: InputMaybe>; + feesETHAllTime_eq?: InputMaybe; + feesETHAllTime_gt?: InputMaybe; + feesETHAllTime_gte?: InputMaybe; + feesETHAllTime_in?: InputMaybe>; + feesETHAllTime_isNull?: InputMaybe; + feesETHAllTime_lt?: InputMaybe; + feesETHAllTime_lte?: InputMaybe; + feesETHAllTime_not_eq?: InputMaybe; + feesETHAllTime_not_in?: InputMaybe>; + feesETH_eq?: InputMaybe; + feesETH_gt?: InputMaybe; + feesETH_gte?: InputMaybe; + feesETH_in?: InputMaybe>; + feesETH_isNull?: InputMaybe; + feesETH_lt?: InputMaybe; + feesETH_lte?: InputMaybe; + feesETH_not_eq?: InputMaybe; + feesETH_not_in?: InputMaybe>; + feesUSD7Day_eq?: InputMaybe; + feesUSD7Day_gt?: InputMaybe; + feesUSD7Day_gte?: InputMaybe; + feesUSD7Day_in?: InputMaybe>; + feesUSD7Day_isNull?: InputMaybe; + feesUSD7Day_lt?: InputMaybe; + feesUSD7Day_lte?: InputMaybe; + feesUSD7Day_not_eq?: InputMaybe; + feesUSD7Day_not_in?: InputMaybe>; + feesUSDAllTime_eq?: InputMaybe; + feesUSDAllTime_gt?: InputMaybe; + feesUSDAllTime_gte?: InputMaybe; + feesUSDAllTime_in?: InputMaybe>; + feesUSDAllTime_isNull?: InputMaybe; + feesUSDAllTime_lt?: InputMaybe; + feesUSDAllTime_lte?: InputMaybe; + feesUSDAllTime_not_eq?: InputMaybe; + feesUSDAllTime_not_in?: InputMaybe>; + feesUSD_eq?: InputMaybe; + feesUSD_gt?: InputMaybe; + feesUSD_gte?: InputMaybe; + feesUSD_in?: InputMaybe>; + feesUSD_isNull?: InputMaybe; + feesUSD_lt?: InputMaybe; + feesUSD_lte?: InputMaybe; + feesUSD_not_eq?: InputMaybe; + feesUSD_not_in?: InputMaybe>; + holdersOverThreshold_eq?: InputMaybe; + holdersOverThreshold_gt?: InputMaybe; + holdersOverThreshold_gte?: InputMaybe; + holdersOverThreshold_in?: InputMaybe>; + holdersOverThreshold_isNull?: InputMaybe; + holdersOverThreshold_lt?: InputMaybe; + holdersOverThreshold_lte?: InputMaybe; + holdersOverThreshold_not_eq?: InputMaybe; + holdersOverThreshold_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -9985,6 +9137,45 @@ export type OusdMetaStrategyWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; + marketCapUSD_eq?: InputMaybe; + marketCapUSD_gt?: InputMaybe; + marketCapUSD_gte?: InputMaybe; + marketCapUSD_in?: InputMaybe>; + marketCapUSD_isNull?: InputMaybe; + marketCapUSD_lt?: InputMaybe; + marketCapUSD_lte?: InputMaybe; + marketCapUSD_not_eq?: InputMaybe; + marketCapUSD_not_in?: InputMaybe>; + nonRebasingSupply_eq?: InputMaybe; + nonRebasingSupply_gt?: InputMaybe; + nonRebasingSupply_gte?: InputMaybe; + nonRebasingSupply_in?: InputMaybe>; + nonRebasingSupply_isNull?: InputMaybe; + nonRebasingSupply_lt?: InputMaybe; + nonRebasingSupply_lte?: InputMaybe; + nonRebasingSupply_not_eq?: InputMaybe; + nonRebasingSupply_not_in?: InputMaybe>; + pegPrice_eq?: InputMaybe; + pegPrice_gt?: InputMaybe; + pegPrice_gte?: InputMaybe; + pegPrice_in?: InputMaybe>; + pegPrice_isNull?: InputMaybe; + pegPrice_lt?: InputMaybe; + pegPrice_lte?: InputMaybe; + pegPrice_not_eq?: InputMaybe; + pegPrice_not_in?: InputMaybe>; + rebasingSupply_eq?: InputMaybe; + rebasingSupply_gt?: InputMaybe; + rebasingSupply_gte?: InputMaybe; + rebasingSupply_in?: InputMaybe>; + rebasingSupply_isNull?: InputMaybe; + rebasingSupply_lt?: InputMaybe; + rebasingSupply_lte?: InputMaybe; + rebasingSupply_not_eq?: InputMaybe; + rebasingSupply_not_in?: InputMaybe>; + strategies_every?: InputMaybe; + strategies_none?: InputMaybe; + strategies_some?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -9994,28 +9185,114 @@ export type OusdMetaStrategyWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - usdc_eq?: InputMaybe; - usdc_gt?: InputMaybe; - usdc_gte?: InputMaybe; - usdc_in?: InputMaybe>; - usdc_isNull?: InputMaybe; - usdc_lt?: InputMaybe; - usdc_lte?: InputMaybe; - usdc_not_eq?: InputMaybe; - usdc_not_in?: InputMaybe>; - usdt_eq?: InputMaybe; - usdt_gt?: InputMaybe; - usdt_gte?: InputMaybe; - usdt_in?: InputMaybe>; - usdt_isNull?: InputMaybe; - usdt_lt?: InputMaybe; - usdt_lte?: InputMaybe; - usdt_not_eq?: InputMaybe; - usdt_not_in?: InputMaybe>; + totalSupplyUSD_eq?: InputMaybe; + totalSupplyUSD_gt?: InputMaybe; + totalSupplyUSD_gte?: InputMaybe; + totalSupplyUSD_in?: InputMaybe>; + totalSupplyUSD_isNull?: InputMaybe; + totalSupplyUSD_lt?: InputMaybe; + totalSupplyUSD_lte?: InputMaybe; + totalSupplyUSD_not_eq?: InputMaybe; + totalSupplyUSD_not_in?: InputMaybe>; + totalSupply_eq?: InputMaybe; + totalSupply_gt?: InputMaybe; + totalSupply_gte?: InputMaybe; + totalSupply_in?: InputMaybe>; + totalSupply_isNull?: InputMaybe; + totalSupply_lt?: InputMaybe; + totalSupply_lte?: InputMaybe; + totalSupply_not_eq?: InputMaybe; + totalSupply_not_in?: InputMaybe>; + tradingVolumeUSD_eq?: InputMaybe; + tradingVolumeUSD_gt?: InputMaybe; + tradingVolumeUSD_gte?: InputMaybe; + tradingVolumeUSD_in?: InputMaybe>; + tradingVolumeUSD_isNull?: InputMaybe; + tradingVolumeUSD_lt?: InputMaybe; + tradingVolumeUSD_lte?: InputMaybe; + tradingVolumeUSD_not_eq?: InputMaybe; + tradingVolumeUSD_not_in?: InputMaybe>; + wrappedSupply_eq?: InputMaybe; + wrappedSupply_gt?: InputMaybe; + wrappedSupply_gte?: InputMaybe; + wrappedSupply_in?: InputMaybe>; + wrappedSupply_isNull?: InputMaybe; + wrappedSupply_lt?: InputMaybe; + wrappedSupply_lte?: InputMaybe; + wrappedSupply_not_eq?: InputMaybe; + wrappedSupply_not_in?: InputMaybe>; + yieldETH7Day_eq?: InputMaybe; + yieldETH7Day_gt?: InputMaybe; + yieldETH7Day_gte?: InputMaybe; + yieldETH7Day_in?: InputMaybe>; + yieldETH7Day_isNull?: InputMaybe; + yieldETH7Day_lt?: InputMaybe; + yieldETH7Day_lte?: InputMaybe; + yieldETH7Day_not_eq?: InputMaybe; + yieldETH7Day_not_in?: InputMaybe>; + yieldETHAllTime_eq?: InputMaybe; + yieldETHAllTime_gt?: InputMaybe; + yieldETHAllTime_gte?: InputMaybe; + yieldETHAllTime_in?: InputMaybe>; + yieldETHAllTime_isNull?: InputMaybe; + yieldETHAllTime_lt?: InputMaybe; + yieldETHAllTime_lte?: InputMaybe; + yieldETHAllTime_not_eq?: InputMaybe; + yieldETHAllTime_not_in?: InputMaybe>; + yieldETH_eq?: InputMaybe; + yieldETH_gt?: InputMaybe; + yieldETH_gte?: InputMaybe; + yieldETH_in?: InputMaybe>; + yieldETH_isNull?: InputMaybe; + yieldETH_lt?: InputMaybe; + yieldETH_lte?: InputMaybe; + yieldETH_not_eq?: InputMaybe; + yieldETH_not_in?: InputMaybe>; + yieldUSD7Day_eq?: InputMaybe; + yieldUSD7Day_gt?: InputMaybe; + yieldUSD7Day_gte?: InputMaybe; + yieldUSD7Day_in?: InputMaybe>; + yieldUSD7Day_isNull?: InputMaybe; + yieldUSD7Day_lt?: InputMaybe; + yieldUSD7Day_lte?: InputMaybe; + yieldUSD7Day_not_eq?: InputMaybe; + yieldUSD7Day_not_in?: InputMaybe>; + yieldUSDAllTime_eq?: InputMaybe; + yieldUSDAllTime_gt?: InputMaybe; + yieldUSDAllTime_gte?: InputMaybe; + yieldUSDAllTime_in?: InputMaybe>; + yieldUSDAllTime_isNull?: InputMaybe; + yieldUSDAllTime_lt?: InputMaybe; + yieldUSDAllTime_lte?: InputMaybe; + yieldUSDAllTime_not_eq?: InputMaybe; + yieldUSDAllTime_not_in?: InputMaybe>; + yieldUSD_eq?: InputMaybe; + yieldUSD_gt?: InputMaybe; + yieldUSD_gte?: InputMaybe; + yieldUSD_in?: InputMaybe>; + yieldUSD_isNull?: InputMaybe; + yieldUSD_lt?: InputMaybe; + yieldUSD_lte?: InputMaybe; + yieldUSD_not_eq?: InputMaybe; + yieldUSD_not_in?: InputMaybe>; }; -export type OusdMorphoAave = { - __typename?: 'OUSDMorphoAave'; +export type OusdDailyStatsConnection = { + __typename?: 'OUSDDailyStatsConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; +}; + +export type OusdFluxStrategiesConnection = { + __typename?: 'OUSDFluxStrategiesConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; +}; + +export type OusdFluxStrategy = { + __typename?: 'OUSDFluxStrategy'; blockNumber: Scalars['Int']['output']; dai: Scalars['BigInt']['output']; id: Scalars['String']['output']; @@ -10024,13 +9301,13 @@ export type OusdMorphoAave = { usdt: Scalars['BigInt']['output']; }; -export type OusdMorphoAaveEdge = { - __typename?: 'OUSDMorphoAaveEdge'; +export type OusdFluxStrategyEdge = { + __typename?: 'OUSDFluxStrategyEdge'; cursor: Scalars['String']['output']; - node: OusdMorphoAave; + node: OusdFluxStrategy; }; -export enum OusdMorphoAaveOrderByInput { +export enum OusdFluxStrategyOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', @@ -10057,9 +9334,9 @@ export enum OusdMorphoAaveOrderByInput { UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' } -export type OusdMorphoAaveWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OusdFluxStrategyWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -10124,15 +9401,15 @@ export type OusdMorphoAaveWhereInput = { usdt_not_in?: InputMaybe>; }; -export type OusdMorphoAavesConnection = { - __typename?: 'OUSDMorphoAavesConnection'; - edges: Array; +export type OusdMetaStrategiesConnection = { + __typename?: 'OUSDMetaStrategiesConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export type OusdMorphoCompound = { - __typename?: 'OUSDMorphoCompound'; +export type OusdMetaStrategy = { + __typename?: 'OUSDMetaStrategy'; blockNumber: Scalars['Int']['output']; dai: Scalars['BigInt']['output']; id: Scalars['String']['output']; @@ -10141,13 +9418,13 @@ export type OusdMorphoCompound = { usdt: Scalars['BigInt']['output']; }; -export type OusdMorphoCompoundEdge = { - __typename?: 'OUSDMorphoCompoundEdge'; +export type OusdMetaStrategyEdge = { + __typename?: 'OUSDMetaStrategyEdge'; cursor: Scalars['String']['output']; - node: OusdMorphoCompound; + node: OusdMetaStrategy; }; -export enum OusdMorphoCompoundOrderByInput { +export enum OusdMetaStrategyOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', @@ -10174,9 +9451,9 @@ export enum OusdMorphoCompoundOrderByInput { UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' } -export type OusdMorphoCompoundWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OusdMetaStrategyWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -10229,148 +9506,64 @@ export type OusdMorphoCompoundWhereInput = { usdc_lt?: InputMaybe; usdc_lte?: InputMaybe; usdc_not_eq?: InputMaybe; - usdc_not_in?: InputMaybe>; - usdt_eq?: InputMaybe; - usdt_gt?: InputMaybe; - usdt_gte?: InputMaybe; - usdt_in?: InputMaybe>; - usdt_isNull?: InputMaybe; - usdt_lt?: InputMaybe; - usdt_lte?: InputMaybe; - usdt_not_eq?: InputMaybe; - usdt_not_in?: InputMaybe>; -}; - -export type OusdMorphoCompoundsConnection = { - __typename?: 'OUSDMorphoCompoundsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export enum OusdOrderByInput { - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - NonRebasingSupplyAsc = 'nonRebasingSupply_ASC', - NonRebasingSupplyAscNullsFirst = 'nonRebasingSupply_ASC_NULLS_FIRST', - NonRebasingSupplyDesc = 'nonRebasingSupply_DESC', - NonRebasingSupplyDescNullsLast = 'nonRebasingSupply_DESC_NULLS_LAST', - RebasingSupplyAsc = 'rebasingSupply_ASC', - RebasingSupplyAscNullsFirst = 'rebasingSupply_ASC_NULLS_FIRST', - RebasingSupplyDesc = 'rebasingSupply_DESC', - RebasingSupplyDescNullsLast = 'rebasingSupply_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TotalSupplyAsc = 'totalSupply_ASC', - TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', - TotalSupplyDesc = 'totalSupply_DESC', - TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST' -} - -/** The Rebase entity tracks historical rebase events on the OUSD contract. */ -export type OusdRebase = { - __typename?: 'OUSDRebase'; - apy: Ousdapy; - blockNumber: Scalars['Int']['output']; - feeETH: Scalars['BigInt']['output']; - feeUSD: Scalars['BigInt']['output']; - id: Scalars['String']['output']; - rebasingCredits: Scalars['BigInt']['output']; - rebasingCreditsPerToken: Scalars['BigInt']['output']; - timestamp: Scalars['DateTime']['output']; - totalSupply: Scalars['BigInt']['output']; - txHash: Scalars['String']['output']; - yieldETH: Scalars['BigInt']['output']; - yieldUSD: Scalars['BigInt']['output']; -}; - -export type OusdRebaseEdge = { - __typename?: 'OUSDRebaseEdge'; - cursor: Scalars['String']['output']; - node: OusdRebase; + usdc_not_in?: InputMaybe>; + usdt_eq?: InputMaybe; + usdt_gt?: InputMaybe; + usdt_gte?: InputMaybe; + usdt_in?: InputMaybe>; + usdt_isNull?: InputMaybe; + usdt_lt?: InputMaybe; + usdt_lte?: InputMaybe; + usdt_not_eq?: InputMaybe; + usdt_not_in?: InputMaybe>; }; -/** The RebaseOption entity tracks historical rebase option changes by address. */ -export type OusdRebaseOption = { - __typename?: 'OUSDRebaseOption'; - address: OusdAddress; +export type OusdMorphoAave = { + __typename?: 'OUSDMorphoAave'; blockNumber: Scalars['Int']['output']; + dai: Scalars['BigInt']['output']; id: Scalars['String']['output']; - status: RebasingOption; timestamp: Scalars['DateTime']['output']; - txHash: Scalars['String']['output']; + usdc: Scalars['BigInt']['output']; + usdt: Scalars['BigInt']['output']; }; -export type OusdRebaseOptionEdge = { - __typename?: 'OUSDRebaseOptionEdge'; +export type OusdMorphoAaveEdge = { + __typename?: 'OUSDMorphoAaveEdge'; cursor: Scalars['String']['output']; - node: OusdRebaseOption; + node: OusdMorphoAave; }; -export enum OusdRebaseOptionOrderByInput { - AddressBalanceAsc = 'address_balance_ASC', - AddressBalanceAscNullsFirst = 'address_balance_ASC_NULLS_FIRST', - AddressBalanceDesc = 'address_balance_DESC', - AddressBalanceDescNullsLast = 'address_balance_DESC_NULLS_LAST', - AddressCreditsAsc = 'address_credits_ASC', - AddressCreditsAscNullsFirst = 'address_credits_ASC_NULLS_FIRST', - AddressCreditsDesc = 'address_credits_DESC', - AddressCreditsDescNullsLast = 'address_credits_DESC_NULLS_LAST', - AddressEarnedAsc = 'address_earned_ASC', - AddressEarnedAscNullsFirst = 'address_earned_ASC_NULLS_FIRST', - AddressEarnedDesc = 'address_earned_DESC', - AddressEarnedDescNullsLast = 'address_earned_DESC_NULLS_LAST', - AddressIdAsc = 'address_id_ASC', - AddressIdAscNullsFirst = 'address_id_ASC_NULLS_FIRST', - AddressIdDesc = 'address_id_DESC', - AddressIdDescNullsLast = 'address_id_DESC_NULLS_LAST', - AddressIsContractAsc = 'address_isContract_ASC', - AddressIsContractAscNullsFirst = 'address_isContract_ASC_NULLS_FIRST', - AddressIsContractDesc = 'address_isContract_DESC', - AddressIsContractDescNullsLast = 'address_isContract_DESC_NULLS_LAST', - AddressLastUpdatedAsc = 'address_lastUpdated_ASC', - AddressLastUpdatedAscNullsFirst = 'address_lastUpdated_ASC_NULLS_FIRST', - AddressLastUpdatedDesc = 'address_lastUpdated_DESC', - AddressLastUpdatedDescNullsLast = 'address_lastUpdated_DESC_NULLS_LAST', - AddressRebasingOptionAsc = 'address_rebasingOption_ASC', - AddressRebasingOptionAscNullsFirst = 'address_rebasingOption_ASC_NULLS_FIRST', - AddressRebasingOptionDesc = 'address_rebasingOption_DESC', - AddressRebasingOptionDescNullsLast = 'address_rebasingOption_DESC_NULLS_LAST', +export enum OusdMorphoAaveOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + DaiAsc = 'dai_ASC', + DaiAscNullsFirst = 'dai_ASC_NULLS_FIRST', + DaiDesc = 'dai_DESC', + DaiDescNullsLast = 'dai_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - StatusAsc = 'status_ASC', - StatusAscNullsFirst = 'status_ASC_NULLS_FIRST', - StatusDesc = 'status_DESC', - StatusDescNullsLast = 'status_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TxHashAsc = 'txHash_ASC', - TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', - TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST' + UsdcAsc = 'usdc_ASC', + UsdcAscNullsFirst = 'usdc_ASC_NULLS_FIRST', + UsdcDesc = 'usdc_DESC', + UsdcDescNullsLast = 'usdc_DESC_NULLS_LAST', + UsdtAsc = 'usdt_ASC', + UsdtAscNullsFirst = 'usdt_ASC_NULLS_FIRST', + UsdtDesc = 'usdt_DESC', + UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' } -export type OusdRebaseOptionWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - address?: InputMaybe; - address_isNull?: InputMaybe; +export type OusdMorphoAaveWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -10380,6 +9573,15 @@ export type OusdRebaseOptionWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; + dai_eq?: InputMaybe; + dai_gt?: InputMaybe; + dai_gte?: InputMaybe; + dai_in?: InputMaybe>; + dai_isNull?: InputMaybe; + dai_lt?: InputMaybe; + dai_lte?: InputMaybe; + dai_not_eq?: InputMaybe; + dai_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -10397,11 +9599,6 @@ export type OusdRebaseOptionWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - status_eq?: InputMaybe; - status_in?: InputMaybe>; - status_isNull?: InputMaybe; - status_not_eq?: InputMaybe; - status_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -10411,124 +9608,79 @@ export type OusdRebaseOptionWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - txHash_contains?: InputMaybe; - txHash_containsInsensitive?: InputMaybe; - txHash_endsWith?: InputMaybe; - txHash_eq?: InputMaybe; - txHash_gt?: InputMaybe; - txHash_gte?: InputMaybe; - txHash_in?: InputMaybe>; - txHash_isNull?: InputMaybe; - txHash_lt?: InputMaybe; - txHash_lte?: InputMaybe; - txHash_not_contains?: InputMaybe; - txHash_not_containsInsensitive?: InputMaybe; - txHash_not_endsWith?: InputMaybe; - txHash_not_eq?: InputMaybe; - txHash_not_in?: InputMaybe>; - txHash_not_startsWith?: InputMaybe; - txHash_startsWith?: InputMaybe; + usdc_eq?: InputMaybe; + usdc_gt?: InputMaybe; + usdc_gte?: InputMaybe; + usdc_in?: InputMaybe>; + usdc_isNull?: InputMaybe; + usdc_lt?: InputMaybe; + usdc_lte?: InputMaybe; + usdc_not_eq?: InputMaybe; + usdc_not_in?: InputMaybe>; + usdt_eq?: InputMaybe; + usdt_gt?: InputMaybe; + usdt_gte?: InputMaybe; + usdt_in?: InputMaybe>; + usdt_isNull?: InputMaybe; + usdt_lt?: InputMaybe; + usdt_lte?: InputMaybe; + usdt_not_eq?: InputMaybe; + usdt_not_in?: InputMaybe>; }; -export type OusdRebaseOptionsConnection = { - __typename?: 'OUSDRebaseOptionsConnection'; - edges: Array; +export type OusdMorphoAavesConnection = { + __typename?: 'OUSDMorphoAavesConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export enum OusdRebaseOrderByInput { - ApyAprAsc = 'apy_apr_ASC', - ApyAprAscNullsFirst = 'apy_apr_ASC_NULLS_FIRST', - ApyAprDesc = 'apy_apr_DESC', - ApyAprDescNullsLast = 'apy_apr_DESC_NULLS_LAST', - ApyApy7DayAvgAsc = 'apy_apy7DayAvg_ASC', - ApyApy7DayAvgAscNullsFirst = 'apy_apy7DayAvg_ASC_NULLS_FIRST', - ApyApy7DayAvgDesc = 'apy_apy7DayAvg_DESC', - ApyApy7DayAvgDescNullsLast = 'apy_apy7DayAvg_DESC_NULLS_LAST', - ApyApy14DayAvgAsc = 'apy_apy14DayAvg_ASC', - ApyApy14DayAvgAscNullsFirst = 'apy_apy14DayAvg_ASC_NULLS_FIRST', - ApyApy14DayAvgDesc = 'apy_apy14DayAvg_DESC', - ApyApy14DayAvgDescNullsLast = 'apy_apy14DayAvg_DESC_NULLS_LAST', - ApyApy30DayAvgAsc = 'apy_apy30DayAvg_ASC', - ApyApy30DayAvgAscNullsFirst = 'apy_apy30DayAvg_ASC_NULLS_FIRST', - ApyApy30DayAvgDesc = 'apy_apy30DayAvg_DESC', - ApyApy30DayAvgDescNullsLast = 'apy_apy30DayAvg_DESC_NULLS_LAST', - ApyApyAsc = 'apy_apy_ASC', - ApyApyAscNullsFirst = 'apy_apy_ASC_NULLS_FIRST', - ApyApyDesc = 'apy_apy_DESC', - ApyApyDescNullsLast = 'apy_apy_DESC_NULLS_LAST', - ApyBlockNumberAsc = 'apy_blockNumber_ASC', - ApyBlockNumberAscNullsFirst = 'apy_blockNumber_ASC_NULLS_FIRST', - ApyBlockNumberDesc = 'apy_blockNumber_DESC', - ApyBlockNumberDescNullsLast = 'apy_blockNumber_DESC_NULLS_LAST', - ApyIdAsc = 'apy_id_ASC', - ApyIdAscNullsFirst = 'apy_id_ASC_NULLS_FIRST', - ApyIdDesc = 'apy_id_DESC', - ApyIdDescNullsLast = 'apy_id_DESC_NULLS_LAST', - ApyRebasingCreditsPerTokenAsc = 'apy_rebasingCreditsPerToken_ASC', - ApyRebasingCreditsPerTokenAscNullsFirst = 'apy_rebasingCreditsPerToken_ASC_NULLS_FIRST', - ApyRebasingCreditsPerTokenDesc = 'apy_rebasingCreditsPerToken_DESC', - ApyRebasingCreditsPerTokenDescNullsLast = 'apy_rebasingCreditsPerToken_DESC_NULLS_LAST', - ApyTimestampAsc = 'apy_timestamp_ASC', - ApyTimestampAscNullsFirst = 'apy_timestamp_ASC_NULLS_FIRST', - ApyTimestampDesc = 'apy_timestamp_DESC', - ApyTimestampDescNullsLast = 'apy_timestamp_DESC_NULLS_LAST', - ApyTxHashAsc = 'apy_txHash_ASC', - ApyTxHashAscNullsFirst = 'apy_txHash_ASC_NULLS_FIRST', - ApyTxHashDesc = 'apy_txHash_DESC', - ApyTxHashDescNullsLast = 'apy_txHash_DESC_NULLS_LAST', +export type OusdMorphoCompound = { + __typename?: 'OUSDMorphoCompound'; + blockNumber: Scalars['Int']['output']; + dai: Scalars['BigInt']['output']; + id: Scalars['String']['output']; + timestamp: Scalars['DateTime']['output']; + usdc: Scalars['BigInt']['output']; + usdt: Scalars['BigInt']['output']; +}; + +export type OusdMorphoCompoundEdge = { + __typename?: 'OUSDMorphoCompoundEdge'; + cursor: Scalars['String']['output']; + node: OusdMorphoCompound; +}; + +export enum OusdMorphoCompoundOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - FeeEthAsc = 'feeETH_ASC', - FeeEthAscNullsFirst = 'feeETH_ASC_NULLS_FIRST', - FeeEthDesc = 'feeETH_DESC', - FeeEthDescNullsLast = 'feeETH_DESC_NULLS_LAST', - FeeUsdAsc = 'feeUSD_ASC', - FeeUsdAscNullsFirst = 'feeUSD_ASC_NULLS_FIRST', - FeeUsdDesc = 'feeUSD_DESC', - FeeUsdDescNullsLast = 'feeUSD_DESC_NULLS_LAST', + DaiAsc = 'dai_ASC', + DaiAscNullsFirst = 'dai_ASC_NULLS_FIRST', + DaiDesc = 'dai_DESC', + DaiDescNullsLast = 'dai_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - RebasingCreditsPerTokenAsc = 'rebasingCreditsPerToken_ASC', - RebasingCreditsPerTokenAscNullsFirst = 'rebasingCreditsPerToken_ASC_NULLS_FIRST', - RebasingCreditsPerTokenDesc = 'rebasingCreditsPerToken_DESC', - RebasingCreditsPerTokenDescNullsLast = 'rebasingCreditsPerToken_DESC_NULLS_LAST', - RebasingCreditsAsc = 'rebasingCredits_ASC', - RebasingCreditsAscNullsFirst = 'rebasingCredits_ASC_NULLS_FIRST', - RebasingCreditsDesc = 'rebasingCredits_DESC', - RebasingCreditsDescNullsLast = 'rebasingCredits_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TotalSupplyAsc = 'totalSupply_ASC', - TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', - TotalSupplyDesc = 'totalSupply_DESC', - TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST', - TxHashAsc = 'txHash_ASC', - TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', - TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST', - YieldEthAsc = 'yieldETH_ASC', - YieldEthAscNullsFirst = 'yieldETH_ASC_NULLS_FIRST', - YieldEthDesc = 'yieldETH_DESC', - YieldEthDescNullsLast = 'yieldETH_DESC_NULLS_LAST', - YieldUsdAsc = 'yieldUSD_ASC', - YieldUsdAscNullsFirst = 'yieldUSD_ASC_NULLS_FIRST', - YieldUsdDesc = 'yieldUSD_DESC', - YieldUsdDescNullsLast = 'yieldUSD_DESC_NULLS_LAST' + UsdcAsc = 'usdc_ASC', + UsdcAscNullsFirst = 'usdc_ASC_NULLS_FIRST', + UsdcDesc = 'usdc_DESC', + UsdcDescNullsLast = 'usdc_DESC_NULLS_LAST', + UsdtAsc = 'usdt_ASC', + UsdtAscNullsFirst = 'usdt_ASC_NULLS_FIRST', + UsdtDesc = 'usdt_DESC', + UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' } -export type OusdRebaseWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - apy?: InputMaybe; - apy_isNull?: InputMaybe; +export type OusdMorphoCompoundWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -10538,24 +9690,15 @@ export type OusdRebaseWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; - feeETH_eq?: InputMaybe; - feeETH_gt?: InputMaybe; - feeETH_gte?: InputMaybe; - feeETH_in?: InputMaybe>; - feeETH_isNull?: InputMaybe; - feeETH_lt?: InputMaybe; - feeETH_lte?: InputMaybe; - feeETH_not_eq?: InputMaybe; - feeETH_not_in?: InputMaybe>; - feeUSD_eq?: InputMaybe; - feeUSD_gt?: InputMaybe; - feeUSD_gte?: InputMaybe; - feeUSD_in?: InputMaybe>; - feeUSD_isNull?: InputMaybe; - feeUSD_lt?: InputMaybe; - feeUSD_lte?: InputMaybe; - feeUSD_not_eq?: InputMaybe; - feeUSD_not_in?: InputMaybe>; + dai_eq?: InputMaybe; + dai_gt?: InputMaybe; + dai_gte?: InputMaybe; + dai_in?: InputMaybe>; + dai_isNull?: InputMaybe; + dai_lt?: InputMaybe; + dai_lte?: InputMaybe; + dai_not_eq?: InputMaybe; + dai_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -10573,24 +9716,6 @@ export type OusdRebaseWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - rebasingCreditsPerToken_eq?: InputMaybe; - rebasingCreditsPerToken_gt?: InputMaybe; - rebasingCreditsPerToken_gte?: InputMaybe; - rebasingCreditsPerToken_in?: InputMaybe>; - rebasingCreditsPerToken_isNull?: InputMaybe; - rebasingCreditsPerToken_lt?: InputMaybe; - rebasingCreditsPerToken_lte?: InputMaybe; - rebasingCreditsPerToken_not_eq?: InputMaybe; - rebasingCreditsPerToken_not_in?: InputMaybe>; - rebasingCredits_eq?: InputMaybe; - rebasingCredits_gt?: InputMaybe; - rebasingCredits_gte?: InputMaybe; - rebasingCredits_in?: InputMaybe>; - rebasingCredits_isNull?: InputMaybe; - rebasingCredits_lt?: InputMaybe; - rebasingCredits_lte?: InputMaybe; - rebasingCredits_not_eq?: InputMaybe; - rebasingCredits_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -10600,55 +9725,29 @@ export type OusdRebaseWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - totalSupply_eq?: InputMaybe; - totalSupply_gt?: InputMaybe; - totalSupply_gte?: InputMaybe; - totalSupply_in?: InputMaybe>; - totalSupply_isNull?: InputMaybe; - totalSupply_lt?: InputMaybe; - totalSupply_lte?: InputMaybe; - totalSupply_not_eq?: InputMaybe; - totalSupply_not_in?: InputMaybe>; - txHash_contains?: InputMaybe; - txHash_containsInsensitive?: InputMaybe; - txHash_endsWith?: InputMaybe; - txHash_eq?: InputMaybe; - txHash_gt?: InputMaybe; - txHash_gte?: InputMaybe; - txHash_in?: InputMaybe>; - txHash_isNull?: InputMaybe; - txHash_lt?: InputMaybe; - txHash_lte?: InputMaybe; - txHash_not_contains?: InputMaybe; - txHash_not_containsInsensitive?: InputMaybe; - txHash_not_endsWith?: InputMaybe; - txHash_not_eq?: InputMaybe; - txHash_not_in?: InputMaybe>; - txHash_not_startsWith?: InputMaybe; - txHash_startsWith?: InputMaybe; - yieldETH_eq?: InputMaybe; - yieldETH_gt?: InputMaybe; - yieldETH_gte?: InputMaybe; - yieldETH_in?: InputMaybe>; - yieldETH_isNull?: InputMaybe; - yieldETH_lt?: InputMaybe; - yieldETH_lte?: InputMaybe; - yieldETH_not_eq?: InputMaybe; - yieldETH_not_in?: InputMaybe>; - yieldUSD_eq?: InputMaybe; - yieldUSD_gt?: InputMaybe; - yieldUSD_gte?: InputMaybe; - yieldUSD_in?: InputMaybe>; - yieldUSD_isNull?: InputMaybe; - yieldUSD_lt?: InputMaybe; - yieldUSD_lte?: InputMaybe; - yieldUSD_not_eq?: InputMaybe; - yieldUSD_not_in?: InputMaybe>; + usdc_eq?: InputMaybe; + usdc_gt?: InputMaybe; + usdc_gte?: InputMaybe; + usdc_in?: InputMaybe>; + usdc_isNull?: InputMaybe; + usdc_lt?: InputMaybe; + usdc_lte?: InputMaybe; + usdc_not_eq?: InputMaybe; + usdc_not_in?: InputMaybe>; + usdt_eq?: InputMaybe; + usdt_gt?: InputMaybe; + usdt_gte?: InputMaybe; + usdt_in?: InputMaybe>; + usdt_isNull?: InputMaybe; + usdt_lt?: InputMaybe; + usdt_lte?: InputMaybe; + usdt_not_eq?: InputMaybe; + usdt_not_in?: InputMaybe>; }; -export type OusdRebasesConnection = { - __typename?: 'OUSDRebasesConnection'; - edges: Array; +export type OusdMorphoCompoundsConnection = { + __typename?: 'OUSDMorphoCompoundsConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; @@ -11123,80 +10222,6 @@ export type OusdVaultsConnection = { totalCount: Scalars['Int']['output']; }; -export type OusdWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - nonRebasingSupply_eq?: InputMaybe; - nonRebasingSupply_gt?: InputMaybe; - nonRebasingSupply_gte?: InputMaybe; - nonRebasingSupply_in?: InputMaybe>; - nonRebasingSupply_isNull?: InputMaybe; - nonRebasingSupply_lt?: InputMaybe; - nonRebasingSupply_lte?: InputMaybe; - nonRebasingSupply_not_eq?: InputMaybe; - nonRebasingSupply_not_in?: InputMaybe>; - rebasingSupply_eq?: InputMaybe; - rebasingSupply_gt?: InputMaybe; - rebasingSupply_gte?: InputMaybe; - rebasingSupply_in?: InputMaybe>; - rebasingSupply_isNull?: InputMaybe; - rebasingSupply_lt?: InputMaybe; - rebasingSupply_lte?: InputMaybe; - rebasingSupply_not_eq?: InputMaybe; - rebasingSupply_not_in?: InputMaybe>; - timestamp_eq?: InputMaybe; - timestamp_gt?: InputMaybe; - timestamp_gte?: InputMaybe; - timestamp_in?: InputMaybe>; - timestamp_isNull?: InputMaybe; - timestamp_lt?: InputMaybe; - timestamp_lte?: InputMaybe; - timestamp_not_eq?: InputMaybe; - timestamp_not_in?: InputMaybe>; - totalSupply_eq?: InputMaybe; - totalSupply_gt?: InputMaybe; - totalSupply_gte?: InputMaybe; - totalSupply_in?: InputMaybe>; - totalSupply_isNull?: InputMaybe; - totalSupply_lt?: InputMaybe; - totalSupply_lte?: InputMaybe; - totalSupply_not_eq?: InputMaybe; - totalSupply_not_in?: InputMaybe>; -}; - -export type OusDsConnection = { - __typename?: 'OUSDsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - export type PageInfo = { __typename?: 'PageInfo'; endCursor: Scalars['String']['output']; @@ -11382,34 +10407,56 @@ export type Query = { nativeBalanceByUniqueInput?: Maybe; nativeBalances: Array; nativeBalancesConnection: NativeBalancesConnection; + oTokenActivities: Array; + oTokenActivitiesConnection: OTokenActivitiesConnection; + oTokenActivityById?: Maybe; + /** @deprecated Use oTokenActivityById */ + oTokenActivityByUniqueInput?: Maybe; + oTokenAddressById?: Maybe; + /** @deprecated Use oTokenAddressById */ + oTokenAddressByUniqueInput?: Maybe; + oTokenAddresses: Array; + oTokenAddressesConnection: OTokenAddressesConnection; + oTokenApies: Array; + oTokenApiesConnection: OTokenAPiesConnection; + oTokenApyById?: Maybe; + /** @deprecated Use oTokenApyById */ + oTokenApyByUniqueInput?: Maybe; + oTokenAssetById?: Maybe; + /** @deprecated Use oTokenAssetById */ + oTokenAssetByUniqueInput?: Maybe; + oTokenAssets: Array; + oTokenAssetsConnection: OTokenAssetsConnection; + oTokenById?: Maybe; + /** @deprecated Use oTokenById */ + oTokenByUniqueInput?: Maybe; + oTokenHistories: Array; + oTokenHistoriesConnection: OTokenHistoriesConnection; + oTokenHistoryById?: Maybe; + /** @deprecated Use oTokenHistoryById */ + oTokenHistoryByUniqueInput?: Maybe; + oTokenRebaseById?: Maybe; + /** @deprecated Use oTokenRebaseById */ + oTokenRebaseByUniqueInput?: Maybe; + oTokenRebaseOptionById?: Maybe; + /** @deprecated Use oTokenRebaseOptionById */ + oTokenRebaseOptionByUniqueInput?: Maybe; + oTokenRebaseOptions: Array; + oTokenRebaseOptionsConnection: OTokenRebaseOptionsConnection; + oTokenRebases: Array; + oTokenRebasesConnection: OTokenRebasesConnection; oTokenVaultById?: Maybe; /** @deprecated Use oTokenVaultById */ oTokenVaultByUniqueInput?: Maybe; oTokenVaults: Array; oTokenVaultsConnection: OTokenVaultsConnection; - oethActivities: Array; - oethActivitiesConnection: OethActivitiesConnection; - oethActivityById?: Maybe; - /** @deprecated Use oethActivityById */ - oethActivityByUniqueInput?: Maybe; - oethAddressById?: Maybe; - /** @deprecated Use oethAddressById */ - oethAddressByUniqueInput?: Maybe; - oethAddresses: Array; - oethAddressesConnection: OethAddressesConnection; - oethAssetById?: Maybe; - /** @deprecated Use oethAssetById */ - oethAssetByUniqueInput?: Maybe; - oethAssets: Array; - oethAssetsConnection: OethAssetsConnection; + oTokens: Array; + oTokensConnection: OTokensConnection; oethBalancerMetaPoolStrategies: Array; oethBalancerMetaPoolStrategiesConnection: OethBalancerMetaPoolStrategiesConnection; oethBalancerMetaPoolStrategyById?: Maybe; /** @deprecated Use oethBalancerMetaPoolStrategyById */ oethBalancerMetaPoolStrategyByUniqueInput?: Maybe; - oethById?: Maybe; - /** @deprecated Use oethById */ - oethByUniqueInput?: Maybe; oethCollateralDailyStatById?: Maybe; /** @deprecated Use oethCollateralDailyStatById */ oethCollateralDailyStatByUniqueInput?: Maybe; @@ -11435,26 +10482,11 @@ export type Query = { oethFraxStakingByUniqueInput?: Maybe; oethFraxStakings: Array; oethFraxStakingsConnection: OethFraxStakingsConnection; - oethHistories: Array; - oethHistoriesConnection: OethHistoriesConnection; - oethHistoryById?: Maybe; - /** @deprecated Use oethHistoryById */ - oethHistoryByUniqueInput?: Maybe; oethMorphoAaveById?: Maybe; /** @deprecated Use oethMorphoAaveById */ oethMorphoAaveByUniqueInput?: Maybe; oethMorphoAaves: Array; oethMorphoAavesConnection: OethMorphoAavesConnection; - oethRebaseById?: Maybe; - /** @deprecated Use oethRebaseById */ - oethRebaseByUniqueInput?: Maybe; - oethRebaseOptionById?: Maybe; - /** @deprecated Use oethRebaseOptionById */ - oethRebaseOptionByUniqueInput?: Maybe; - oethRebaseOptions: Array; - oethRebaseOptionsConnection: OethRebaseOptionsConnection; - oethRebases: Array; - oethRebasesConnection: OethRebasesConnection; oethRewardTokenCollectedById?: Maybe; /** @deprecated Use oethRewardTokenCollectedById */ oethRewardTokenCollectedByUniqueInput?: Maybe; @@ -11475,13 +10507,6 @@ export type Query = { oethVaultByUniqueInput?: Maybe; oethVaults: Array; oethVaultsConnection: OethVaultsConnection; - oethapies: Array; - oethapiesConnection: OethaPiesConnection; - oethapyById?: Maybe; - /** @deprecated Use oethapyById */ - oethapyByUniqueInput?: Maybe; - oeths: Array; - oethsConnection: OetHsConnection; ognStats: OgnStatsResult; ogvAddressById?: Maybe; /** @deprecated Use ogvAddressById */ @@ -11528,24 +10553,6 @@ export type Query = { ousdAaveStrategyById?: Maybe; /** @deprecated Use ousdAaveStrategyById */ ousdAaveStrategyByUniqueInput?: Maybe; - ousdActivities: Array; - ousdActivitiesConnection: OusdActivitiesConnection; - ousdActivityById?: Maybe; - /** @deprecated Use ousdActivityById */ - ousdActivityByUniqueInput?: Maybe; - ousdAddressById?: Maybe; - /** @deprecated Use ousdAddressById */ - ousdAddressByUniqueInput?: Maybe; - ousdAddresses: Array; - ousdAddressesConnection: OusdAddressesConnection; - ousdAssetById?: Maybe; - /** @deprecated Use ousdAssetById */ - ousdAssetByUniqueInput?: Maybe; - ousdAssets: Array; - ousdAssetsConnection: OusdAssetsConnection; - ousdById?: Maybe; - /** @deprecated Use ousdById */ - ousdByUniqueInput?: Maybe; ousdCollateralDailyStatById?: Maybe; /** @deprecated Use ousdCollateralDailyStatById */ ousdCollateralDailyStatByUniqueInput?: Maybe; @@ -11576,11 +10583,6 @@ export type Query = { ousdFluxStrategyById?: Maybe; /** @deprecated Use ousdFluxStrategyById */ ousdFluxStrategyByUniqueInput?: Maybe; - ousdHistories: Array; - ousdHistoriesConnection: OusdHistoriesConnection; - ousdHistoryById?: Maybe; - /** @deprecated Use ousdHistoryById */ - ousdHistoryByUniqueInput?: Maybe; ousdMetaStrategies: Array; ousdMetaStrategiesConnection: OusdMetaStrategiesConnection; ousdMetaStrategyById?: Maybe; @@ -11596,16 +10598,6 @@ export type Query = { ousdMorphoCompoundByUniqueInput?: Maybe; ousdMorphoCompounds: Array; ousdMorphoCompoundsConnection: OusdMorphoCompoundsConnection; - ousdRebaseById?: Maybe; - /** @deprecated Use ousdRebaseById */ - ousdRebaseByUniqueInput?: Maybe; - ousdRebaseOptionById?: Maybe; - /** @deprecated Use ousdRebaseOptionById */ - ousdRebaseOptionByUniqueInput?: Maybe; - ousdRebaseOptions: Array; - ousdRebaseOptionsConnection: OusdRebaseOptionsConnection; - ousdRebases: Array; - ousdRebasesConnection: OusdRebasesConnection; ousdStrategyDailyStatById?: Maybe; /** @deprecated Use ousdStrategyDailyStatById */ ousdStrategyDailyStatByUniqueInput?: Maybe; @@ -11621,13 +10613,6 @@ export type Query = { ousdVaultByUniqueInput?: Maybe; ousdVaults: Array; ousdVaultsConnection: OusdVaultsConnection; - ousdapies: Array; - ousdapiesConnection: OusdaPiesConnection; - ousdapyById?: Maybe; - /** @deprecated Use ousdapyById */ - ousdapyByUniqueInput?: Maybe; - ousds: Array; - ousdsConnection: OusDsConnection; processingStatusById?: Maybe; /** @deprecated Use processingStatusById */ processingStatusByUniqueInput?: Maybe; @@ -12172,107 +11157,237 @@ export type QueryNativeBalancesConnectionArgs = { }; -export type QueryOTokenVaultByIdArgs = { +export type QueryOTokenActivitiesArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + + +export type QueryOTokenActivitiesConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + orderBy: Array; + where?: InputMaybe; +}; + + +export type QueryOTokenActivityByIdArgs = { id: Scalars['String']['input']; }; -export type QueryOTokenVaultByUniqueInputArgs = { +export type QueryOTokenActivityByUniqueInputArgs = { where: WhereIdInput; }; -export type QueryOTokenVaultsArgs = { +export type QueryOTokenAddressByIdArgs = { + id: Scalars['String']['input']; +}; + + +export type QueryOTokenAddressByUniqueInputArgs = { + where: WhereIdInput; +}; + + +export type QueryOTokenAddressesArgs = { limit?: InputMaybe; offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; }; -export type QueryOTokenVaultsConnectionArgs = { +export type QueryOTokenAddressesConnectionArgs = { after?: InputMaybe; first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; + orderBy: Array; + where?: InputMaybe; +}; + + +export type QueryOTokenApiesArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + + +export type QueryOTokenApiesConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + orderBy: Array; + where?: InputMaybe; +}; + + +export type QueryOTokenApyByIdArgs = { + id: Scalars['String']['input']; +}; + + +export type QueryOTokenApyByUniqueInputArgs = { + where: WhereIdInput; +}; + + +export type QueryOTokenAssetByIdArgs = { + id: Scalars['String']['input']; +}; + + +export type QueryOTokenAssetByUniqueInputArgs = { + where: WhereIdInput; +}; + + +export type QueryOTokenAssetsArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + + +export type QueryOTokenAssetsConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + orderBy: Array; + where?: InputMaybe; +}; + + +export type QueryOTokenByIdArgs = { + id: Scalars['String']['input']; +}; + + +export type QueryOTokenByUniqueInputArgs = { + where: WhereIdInput; +}; + + +export type QueryOTokenHistoriesArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + + +export type QueryOTokenHistoriesConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + orderBy: Array; + where?: InputMaybe; +}; + + +export type QueryOTokenHistoryByIdArgs = { + id: Scalars['String']['input']; +}; + + +export type QueryOTokenHistoryByUniqueInputArgs = { + where: WhereIdInput; +}; + + +export type QueryOTokenRebaseByIdArgs = { + id: Scalars['String']['input']; +}; + + +export type QueryOTokenRebaseByUniqueInputArgs = { + where: WhereIdInput; +}; + + +export type QueryOTokenRebaseOptionByIdArgs = { + id: Scalars['String']['input']; +}; + + +export type QueryOTokenRebaseOptionByUniqueInputArgs = { + where: WhereIdInput; }; -export type QueryOethActivitiesArgs = { +export type QueryOTokenRebaseOptionsArgs = { limit?: InputMaybe; offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; }; -export type QueryOethActivitiesConnectionArgs = { +export type QueryOTokenRebaseOptionsConnectionArgs = { after?: InputMaybe; first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; + orderBy: Array; + where?: InputMaybe; }; -export type QueryOethActivityByIdArgs = { - id: Scalars['String']['input']; +export type QueryOTokenRebasesArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; }; -export type QueryOethActivityByUniqueInputArgs = { - where: WhereIdInput; +export type QueryOTokenRebasesConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + orderBy: Array; + where?: InputMaybe; }; -export type QueryOethAddressByIdArgs = { +export type QueryOTokenVaultByIdArgs = { id: Scalars['String']['input']; }; -export type QueryOethAddressByUniqueInputArgs = { +export type QueryOTokenVaultByUniqueInputArgs = { where: WhereIdInput; }; -export type QueryOethAddressesArgs = { +export type QueryOTokenVaultsArgs = { limit?: InputMaybe; offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; }; -export type QueryOethAddressesConnectionArgs = { +export type QueryOTokenVaultsConnectionArgs = { after?: InputMaybe; first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOethAssetByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOethAssetByUniqueInputArgs = { - where: WhereIdInput; + orderBy: Array; + where?: InputMaybe; }; -export type QueryOethAssetsArgs = { +export type QueryOTokensArgs = { limit?: InputMaybe; offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; }; -export type QueryOethAssetsConnectionArgs = { +export type QueryOTokensConnectionArgs = { after?: InputMaybe; first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; + orderBy: Array; + where?: InputMaybe; }; @@ -12302,16 +11417,6 @@ export type QueryOethBalancerMetaPoolStrategyByUniqueInputArgs = { }; -export type QueryOethByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOethByUniqueInputArgs = { - where: WhereIdInput; -}; - - export type QueryOethCollateralDailyStatByIdArgs = { id: Scalars['String']['input']; }; @@ -12442,32 +11547,6 @@ export type QueryOethFraxStakingsConnectionArgs = { }; -export type QueryOethHistoriesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOethHistoriesConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOethHistoryByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOethHistoryByUniqueInputArgs = { - where: WhereIdInput; -}; - - export type QueryOethMorphoAaveByIdArgs = { id: Scalars['String']['input']; }; @@ -12494,58 +11573,6 @@ export type QueryOethMorphoAavesConnectionArgs = { }; -export type QueryOethRebaseByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOethRebaseByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOethRebaseOptionByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOethRebaseOptionByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOethRebaseOptionsArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOethRebaseOptionsConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOethRebasesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOethRebasesConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - export type QueryOethRewardTokenCollectedByIdArgs = { id: Scalars['String']['input']; }; @@ -12650,48 +11677,6 @@ export type QueryOethVaultsConnectionArgs = { }; -export type QueryOethapiesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOethapiesConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOethapyByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOethapyByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOethsArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOethsConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - export type QueryOgvAddressByIdArgs = { id: Scalars['String']['input']; }; @@ -12926,94 +11911,6 @@ export type QueryOusdAaveStrategyByUniqueInputArgs = { }; -export type QueryOusdActivitiesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOusdActivitiesConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOusdActivityByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOusdActivityByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOusdAddressByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOusdAddressByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOusdAddressesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOusdAddressesConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOusdAssetByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOusdAssetByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOusdAssetsArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOusdAssetsConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOusdByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOusdByUniqueInputArgs = { - where: WhereIdInput; -}; - - export type QueryOusdCollateralDailyStatByIdArgs = { id: Scalars['String']['input']; }; @@ -13170,32 +12067,6 @@ export type QueryOusdFluxStrategyByUniqueInputArgs = { }; -export type QueryOusdHistoriesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOusdHistoriesConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOusdHistoryByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOusdHistoryByUniqueInputArgs = { - where: WhereIdInput; -}; - - export type QueryOusdMetaStrategiesArgs = { limit?: InputMaybe; offset?: InputMaybe; @@ -13274,58 +12145,6 @@ export type QueryOusdMorphoCompoundsConnectionArgs = { }; -export type QueryOusdRebaseByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOusdRebaseByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOusdRebaseOptionByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOusdRebaseOptionByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOusdRebaseOptionsArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOusdRebaseOptionsConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOusdRebasesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOusdRebasesConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - export type QueryOusdStrategyDailyStatByIdArgs = { id: Scalars['String']['input']; }; @@ -13404,48 +12223,6 @@ export type QueryOusdVaultsConnectionArgs = { }; -export type QueryOusdapiesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOusdapiesConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOusdapyByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOusdapyByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOusdsArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOusdsConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - export type QueryProcessingStatusByIdArgs = { id: Scalars['String']['input']; }; diff --git a/libs/governance/shared/src/generated/graphql.ts b/libs/governance/shared/src/generated/graphql.ts index 725bbc385..0a4cedd58 100644 --- a/libs/governance/shared/src/generated/graphql.ts +++ b/libs/governance/shared/src/generated/graphql.ts @@ -2988,59 +2988,29 @@ export type NativeBalancesConnection = { totalCount: Scalars['Int']['output']; }; -/** The OETH entity tracks the change in total supply of OETH over time. */ -export type Oeth = { - __typename?: 'OETH'; - blockNumber: Scalars['Int']['output']; - id: Scalars['String']['output']; - nonRebasingSupply: Scalars['BigInt']['output']; - rebasingSupply: Scalars['BigInt']['output']; - timestamp: Scalars['DateTime']['output']; - totalSupply: Scalars['BigInt']['output']; +export type OethBalancerMetaPoolStrategiesConnection = { + __typename?: 'OETHBalancerMetaPoolStrategiesConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; }; -/** The APY entity tracks historical APY values by day. */ -export type Oethapy = { - __typename?: 'OETHAPY'; - apr: Scalars['Float']['output']; - apy: Scalars['Float']['output']; - apy7DayAvg: Scalars['Float']['output']; - apy14DayAvg: Scalars['Float']['output']; - apy30DayAvg: Scalars['Float']['output']; +export type OethBalancerMetaPoolStrategy = { + __typename?: 'OETHBalancerMetaPoolStrategy'; blockNumber: Scalars['Int']['output']; id: Scalars['String']['output']; - rebasingCreditsPerToken: Scalars['BigInt']['output']; + rETH: Scalars['BigInt']['output']; timestamp: Scalars['DateTime']['output']; - txHash: Scalars['String']['output']; + weth: Scalars['BigInt']['output']; }; -export type OethapyEdge = { - __typename?: 'OETHAPYEdge'; +export type OethBalancerMetaPoolStrategyEdge = { + __typename?: 'OETHBalancerMetaPoolStrategyEdge'; cursor: Scalars['String']['output']; - node: Oethapy; + node: OethBalancerMetaPoolStrategy; }; -export enum OethapyOrderByInput { - AprAsc = 'apr_ASC', - AprAscNullsFirst = 'apr_ASC_NULLS_FIRST', - AprDesc = 'apr_DESC', - AprDescNullsLast = 'apr_DESC_NULLS_LAST', - Apy7DayAvgAsc = 'apy7DayAvg_ASC', - Apy7DayAvgAscNullsFirst = 'apy7DayAvg_ASC_NULLS_FIRST', - Apy7DayAvgDesc = 'apy7DayAvg_DESC', - Apy7DayAvgDescNullsLast = 'apy7DayAvg_DESC_NULLS_LAST', - Apy14DayAvgAsc = 'apy14DayAvg_ASC', - Apy14DayAvgAscNullsFirst = 'apy14DayAvg_ASC_NULLS_FIRST', - Apy14DayAvgDesc = 'apy14DayAvg_DESC', - Apy14DayAvgDescNullsLast = 'apy14DayAvg_DESC_NULLS_LAST', - Apy30DayAvgAsc = 'apy30DayAvg_ASC', - Apy30DayAvgAscNullsFirst = 'apy30DayAvg_ASC_NULLS_FIRST', - Apy30DayAvgDesc = 'apy30DayAvg_DESC', - Apy30DayAvgDescNullsLast = 'apy30DayAvg_DESC_NULLS_LAST', - ApyAsc = 'apy_ASC', - ApyAscNullsFirst = 'apy_ASC_NULLS_FIRST', - ApyDesc = 'apy_DESC', - ApyDescNullsLast = 'apy_DESC_NULLS_LAST', +export enum OethBalancerMetaPoolStrategyOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', @@ -3049,68 +3019,23 @@ export enum OethapyOrderByInput { IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - RebasingCreditsPerTokenAsc = 'rebasingCreditsPerToken_ASC', - RebasingCreditsPerTokenAscNullsFirst = 'rebasingCreditsPerToken_ASC_NULLS_FIRST', - RebasingCreditsPerTokenDesc = 'rebasingCreditsPerToken_DESC', - RebasingCreditsPerTokenDescNullsLast = 'rebasingCreditsPerToken_DESC_NULLS_LAST', + REthAsc = 'rETH_ASC', + REthAscNullsFirst = 'rETH_ASC_NULLS_FIRST', + REthDesc = 'rETH_DESC', + REthDescNullsLast = 'rETH_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TxHashAsc = 'txHash_ASC', - TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', - TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST' + WethAsc = 'weth_ASC', + WethAscNullsFirst = 'weth_ASC_NULLS_FIRST', + WethDesc = 'weth_DESC', + WethDescNullsLast = 'weth_DESC_NULLS_LAST' } -export type OethapyWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - apr_eq?: InputMaybe; - apr_gt?: InputMaybe; - apr_gte?: InputMaybe; - apr_in?: InputMaybe>; - apr_isNull?: InputMaybe; - apr_lt?: InputMaybe; - apr_lte?: InputMaybe; - apr_not_eq?: InputMaybe; - apr_not_in?: InputMaybe>; - apy7DayAvg_eq?: InputMaybe; - apy7DayAvg_gt?: InputMaybe; - apy7DayAvg_gte?: InputMaybe; - apy7DayAvg_in?: InputMaybe>; - apy7DayAvg_isNull?: InputMaybe; - apy7DayAvg_lt?: InputMaybe; - apy7DayAvg_lte?: InputMaybe; - apy7DayAvg_not_eq?: InputMaybe; - apy7DayAvg_not_in?: InputMaybe>; - apy14DayAvg_eq?: InputMaybe; - apy14DayAvg_gt?: InputMaybe; - apy14DayAvg_gte?: InputMaybe; - apy14DayAvg_in?: InputMaybe>; - apy14DayAvg_isNull?: InputMaybe; - apy14DayAvg_lt?: InputMaybe; - apy14DayAvg_lte?: InputMaybe; - apy14DayAvg_not_eq?: InputMaybe; - apy14DayAvg_not_in?: InputMaybe>; - apy30DayAvg_eq?: InputMaybe; - apy30DayAvg_gt?: InputMaybe; - apy30DayAvg_gte?: InputMaybe; - apy30DayAvg_in?: InputMaybe>; - apy30DayAvg_isNull?: InputMaybe; - apy30DayAvg_lt?: InputMaybe; - apy30DayAvg_lte?: InputMaybe; - apy30DayAvg_not_eq?: InputMaybe; - apy30DayAvg_not_in?: InputMaybe>; - apy_eq?: InputMaybe; - apy_gt?: InputMaybe; - apy_gte?: InputMaybe; - apy_in?: InputMaybe>; - apy_isNull?: InputMaybe; - apy_lt?: InputMaybe; - apy_lte?: InputMaybe; - apy_not_eq?: InputMaybe; - apy_not_in?: InputMaybe>; +export type OethBalancerMetaPoolStrategyWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -3137,15 +3062,15 @@ export type OethapyWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - rebasingCreditsPerToken_eq?: InputMaybe; - rebasingCreditsPerToken_gt?: InputMaybe; - rebasingCreditsPerToken_gte?: InputMaybe; - rebasingCreditsPerToken_in?: InputMaybe>; - rebasingCreditsPerToken_isNull?: InputMaybe; - rebasingCreditsPerToken_lt?: InputMaybe; - rebasingCreditsPerToken_lte?: InputMaybe; - rebasingCreditsPerToken_not_eq?: InputMaybe; - rebasingCreditsPerToken_not_in?: InputMaybe>; + rETH_eq?: InputMaybe; + rETH_gt?: InputMaybe; + rETH_gte?: InputMaybe; + rETH_in?: InputMaybe>; + rETH_isNull?: InputMaybe; + rETH_lt?: InputMaybe; + rETH_lte?: InputMaybe; + rETH_not_eq?: InputMaybe; + rETH_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -3155,154 +3080,187 @@ export type OethapyWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - txHash_contains?: InputMaybe; - txHash_containsInsensitive?: InputMaybe; - txHash_endsWith?: InputMaybe; - txHash_eq?: InputMaybe; - txHash_gt?: InputMaybe; - txHash_gte?: InputMaybe; - txHash_in?: InputMaybe>; - txHash_isNull?: InputMaybe; - txHash_lt?: InputMaybe; - txHash_lte?: InputMaybe; - txHash_not_contains?: InputMaybe; - txHash_not_containsInsensitive?: InputMaybe; - txHash_not_endsWith?: InputMaybe; - txHash_not_eq?: InputMaybe; - txHash_not_in?: InputMaybe>; - txHash_not_startsWith?: InputMaybe; - txHash_startsWith?: InputMaybe; -}; - -export type OethaPiesConnection = { - __typename?: 'OETHAPiesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OethActivitiesConnection = { - __typename?: 'OETHActivitiesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; + weth_eq?: InputMaybe; + weth_gt?: InputMaybe; + weth_gte?: InputMaybe; + weth_in?: InputMaybe>; + weth_isNull?: InputMaybe; + weth_lt?: InputMaybe; + weth_lte?: InputMaybe; + weth_not_eq?: InputMaybe; + weth_not_in?: InputMaybe>; }; -export type OethActivity = { - __typename?: 'OETHActivity'; - action?: Maybe; - address?: Maybe; - amount?: Maybe; - blockNumber: Scalars['Int']['output']; - callDataLast4Bytes: Scalars['String']['output']; - exchange?: Maybe; - fromSymbol?: Maybe; +export type OethCollateralDailyStat = { + __typename?: 'OETHCollateralDailyStat'; + /** Amount held */ + amount: Scalars['BigInt']['output']; + dailyStatId: OethDailyStat; id: Scalars['String']['output']; - interface?: Maybe; - sighash?: Maybe; - timestamp: Scalars['DateTime']['output']; - toSymbol?: Maybe; - txHash: Scalars['String']['output']; + /** Price in ETH */ + price: Scalars['BigInt']['output']; + /** Token symbol */ + symbol: Scalars['String']['output']; + /** Total ETH value */ + value: Scalars['BigInt']['output']; }; -export type OethActivityEdge = { - __typename?: 'OETHActivityEdge'; +export type OethCollateralDailyStatEdge = { + __typename?: 'OETHCollateralDailyStatEdge'; cursor: Scalars['String']['output']; - node: OethActivity; + node: OethCollateralDailyStat; }; -export enum OethActivityOrderByInput { - ActionAsc = 'action_ASC', - ActionAscNullsFirst = 'action_ASC_NULLS_FIRST', - ActionDesc = 'action_DESC', - ActionDescNullsLast = 'action_DESC_NULLS_LAST', - AddressAsc = 'address_ASC', - AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', - AddressDesc = 'address_DESC', - AddressDescNullsLast = 'address_DESC_NULLS_LAST', +export enum OethCollateralDailyStatOrderByInput { AmountAsc = 'amount_ASC', AmountAscNullsFirst = 'amount_ASC_NULLS_FIRST', AmountDesc = 'amount_DESC', AmountDescNullsLast = 'amount_DESC_NULLS_LAST', - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - CallDataLast4BytesAsc = 'callDataLast4Bytes_ASC', - CallDataLast4BytesAscNullsFirst = 'callDataLast4Bytes_ASC_NULLS_FIRST', - CallDataLast4BytesDesc = 'callDataLast4Bytes_DESC', - CallDataLast4BytesDescNullsLast = 'callDataLast4Bytes_DESC_NULLS_LAST', - ExchangeAsc = 'exchange_ASC', - ExchangeAscNullsFirst = 'exchange_ASC_NULLS_FIRST', - ExchangeDesc = 'exchange_DESC', - ExchangeDescNullsLast = 'exchange_DESC_NULLS_LAST', - FromSymbolAsc = 'fromSymbol_ASC', - FromSymbolAscNullsFirst = 'fromSymbol_ASC_NULLS_FIRST', - FromSymbolDesc = 'fromSymbol_DESC', - FromSymbolDescNullsLast = 'fromSymbol_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - InterfaceAsc = 'interface_ASC', - InterfaceAscNullsFirst = 'interface_ASC_NULLS_FIRST', - InterfaceDesc = 'interface_DESC', - InterfaceDescNullsLast = 'interface_DESC_NULLS_LAST', - SighashAsc = 'sighash_ASC', - SighashAscNullsFirst = 'sighash_ASC_NULLS_FIRST', - SighashDesc = 'sighash_DESC', - SighashDescNullsLast = 'sighash_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - ToSymbolAsc = 'toSymbol_ASC', - ToSymbolAscNullsFirst = 'toSymbol_ASC_NULLS_FIRST', - ToSymbolDesc = 'toSymbol_DESC', - ToSymbolDescNullsLast = 'toSymbol_DESC_NULLS_LAST', - TxHashAsc = 'txHash_ASC', - TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', - TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST' -} - -export type OethActivityWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - action_contains?: InputMaybe; - action_containsInsensitive?: InputMaybe; - action_endsWith?: InputMaybe; - action_eq?: InputMaybe; - action_gt?: InputMaybe; - action_gte?: InputMaybe; - action_in?: InputMaybe>; - action_isNull?: InputMaybe; - action_lt?: InputMaybe; - action_lte?: InputMaybe; - action_not_contains?: InputMaybe; - action_not_containsInsensitive?: InputMaybe; - action_not_endsWith?: InputMaybe; - action_not_eq?: InputMaybe; - action_not_in?: InputMaybe>; - action_not_startsWith?: InputMaybe; - action_startsWith?: InputMaybe; - address_contains?: InputMaybe; - address_containsInsensitive?: InputMaybe; - address_endsWith?: InputMaybe; - address_eq?: InputMaybe; - address_gt?: InputMaybe; - address_gte?: InputMaybe; - address_in?: InputMaybe>; - address_isNull?: InputMaybe; - address_lt?: InputMaybe; - address_lte?: InputMaybe; - address_not_contains?: InputMaybe; - address_not_containsInsensitive?: InputMaybe; - address_not_endsWith?: InputMaybe; - address_not_eq?: InputMaybe; - address_not_in?: InputMaybe>; - address_not_startsWith?: InputMaybe; - address_startsWith?: InputMaybe; + DailyStatIdAmoSupplyAsc = 'dailyStatId_amoSupply_ASC', + DailyStatIdAmoSupplyAscNullsFirst = 'dailyStatId_amoSupply_ASC_NULLS_FIRST', + DailyStatIdAmoSupplyDesc = 'dailyStatId_amoSupply_DESC', + DailyStatIdAmoSupplyDescNullsLast = 'dailyStatId_amoSupply_DESC_NULLS_LAST', + DailyStatIdAprAsc = 'dailyStatId_apr_ASC', + DailyStatIdAprAscNullsFirst = 'dailyStatId_apr_ASC_NULLS_FIRST', + DailyStatIdAprDesc = 'dailyStatId_apr_DESC', + DailyStatIdAprDescNullsLast = 'dailyStatId_apr_DESC_NULLS_LAST', + DailyStatIdApy7DayAvgAsc = 'dailyStatId_apy7DayAvg_ASC', + DailyStatIdApy7DayAvgAscNullsFirst = 'dailyStatId_apy7DayAvg_ASC_NULLS_FIRST', + DailyStatIdApy7DayAvgDesc = 'dailyStatId_apy7DayAvg_DESC', + DailyStatIdApy7DayAvgDescNullsLast = 'dailyStatId_apy7DayAvg_DESC_NULLS_LAST', + DailyStatIdApy14DayAvgAsc = 'dailyStatId_apy14DayAvg_ASC', + DailyStatIdApy14DayAvgAscNullsFirst = 'dailyStatId_apy14DayAvg_ASC_NULLS_FIRST', + DailyStatIdApy14DayAvgDesc = 'dailyStatId_apy14DayAvg_DESC', + DailyStatIdApy14DayAvgDescNullsLast = 'dailyStatId_apy14DayAvg_DESC_NULLS_LAST', + DailyStatIdApy30DayAvgAsc = 'dailyStatId_apy30DayAvg_ASC', + DailyStatIdApy30DayAvgAscNullsFirst = 'dailyStatId_apy30DayAvg_ASC_NULLS_FIRST', + DailyStatIdApy30DayAvgDesc = 'dailyStatId_apy30DayAvg_DESC', + DailyStatIdApy30DayAvgDescNullsLast = 'dailyStatId_apy30DayAvg_DESC_NULLS_LAST', + DailyStatIdApyAsc = 'dailyStatId_apy_ASC', + DailyStatIdApyAscNullsFirst = 'dailyStatId_apy_ASC_NULLS_FIRST', + DailyStatIdApyDesc = 'dailyStatId_apy_DESC', + DailyStatIdApyDescNullsLast = 'dailyStatId_apy_DESC_NULLS_LAST', + DailyStatIdBlockNumberAsc = 'dailyStatId_blockNumber_ASC', + DailyStatIdBlockNumberAscNullsFirst = 'dailyStatId_blockNumber_ASC_NULLS_FIRST', + DailyStatIdBlockNumberDesc = 'dailyStatId_blockNumber_DESC', + DailyStatIdBlockNumberDescNullsLast = 'dailyStatId_blockNumber_DESC_NULLS_LAST', + DailyStatIdDripperWethAsc = 'dailyStatId_dripperWETH_ASC', + DailyStatIdDripperWethAscNullsFirst = 'dailyStatId_dripperWETH_ASC_NULLS_FIRST', + DailyStatIdDripperWethDesc = 'dailyStatId_dripperWETH_DESC', + DailyStatIdDripperWethDescNullsLast = 'dailyStatId_dripperWETH_DESC_NULLS_LAST', + DailyStatIdFeesEth7DayAsc = 'dailyStatId_feesETH7Day_ASC', + DailyStatIdFeesEth7DayAscNullsFirst = 'dailyStatId_feesETH7Day_ASC_NULLS_FIRST', + DailyStatIdFeesEth7DayDesc = 'dailyStatId_feesETH7Day_DESC', + DailyStatIdFeesEth7DayDescNullsLast = 'dailyStatId_feesETH7Day_DESC_NULLS_LAST', + DailyStatIdFeesEthAllTimeAsc = 'dailyStatId_feesETHAllTime_ASC', + DailyStatIdFeesEthAllTimeAscNullsFirst = 'dailyStatId_feesETHAllTime_ASC_NULLS_FIRST', + DailyStatIdFeesEthAllTimeDesc = 'dailyStatId_feesETHAllTime_DESC', + DailyStatIdFeesEthAllTimeDescNullsLast = 'dailyStatId_feesETHAllTime_DESC_NULLS_LAST', + DailyStatIdFeesEthAsc = 'dailyStatId_feesETH_ASC', + DailyStatIdFeesEthAscNullsFirst = 'dailyStatId_feesETH_ASC_NULLS_FIRST', + DailyStatIdFeesEthDesc = 'dailyStatId_feesETH_DESC', + DailyStatIdFeesEthDescNullsLast = 'dailyStatId_feesETH_DESC_NULLS_LAST', + DailyStatIdFeesUsd7DayAsc = 'dailyStatId_feesUSD7Day_ASC', + DailyStatIdFeesUsd7DayAscNullsFirst = 'dailyStatId_feesUSD7Day_ASC_NULLS_FIRST', + DailyStatIdFeesUsd7DayDesc = 'dailyStatId_feesUSD7Day_DESC', + DailyStatIdFeesUsd7DayDescNullsLast = 'dailyStatId_feesUSD7Day_DESC_NULLS_LAST', + DailyStatIdFeesUsdAllTimeAsc = 'dailyStatId_feesUSDAllTime_ASC', + DailyStatIdFeesUsdAllTimeAscNullsFirst = 'dailyStatId_feesUSDAllTime_ASC_NULLS_FIRST', + DailyStatIdFeesUsdAllTimeDesc = 'dailyStatId_feesUSDAllTime_DESC', + DailyStatIdFeesUsdAllTimeDescNullsLast = 'dailyStatId_feesUSDAllTime_DESC_NULLS_LAST', + DailyStatIdFeesUsdAsc = 'dailyStatId_feesUSD_ASC', + DailyStatIdFeesUsdAscNullsFirst = 'dailyStatId_feesUSD_ASC_NULLS_FIRST', + DailyStatIdFeesUsdDesc = 'dailyStatId_feesUSD_DESC', + DailyStatIdFeesUsdDescNullsLast = 'dailyStatId_feesUSD_DESC_NULLS_LAST', + DailyStatIdHoldersOverThresholdAsc = 'dailyStatId_holdersOverThreshold_ASC', + DailyStatIdHoldersOverThresholdAscNullsFirst = 'dailyStatId_holdersOverThreshold_ASC_NULLS_FIRST', + DailyStatIdHoldersOverThresholdDesc = 'dailyStatId_holdersOverThreshold_DESC', + DailyStatIdHoldersOverThresholdDescNullsLast = 'dailyStatId_holdersOverThreshold_DESC_NULLS_LAST', + DailyStatIdIdAsc = 'dailyStatId_id_ASC', + DailyStatIdIdAscNullsFirst = 'dailyStatId_id_ASC_NULLS_FIRST', + DailyStatIdIdDesc = 'dailyStatId_id_DESC', + DailyStatIdIdDescNullsLast = 'dailyStatId_id_DESC_NULLS_LAST', + DailyStatIdMarketCapUsdAsc = 'dailyStatId_marketCapUSD_ASC', + DailyStatIdMarketCapUsdAscNullsFirst = 'dailyStatId_marketCapUSD_ASC_NULLS_FIRST', + DailyStatIdMarketCapUsdDesc = 'dailyStatId_marketCapUSD_DESC', + DailyStatIdMarketCapUsdDescNullsLast = 'dailyStatId_marketCapUSD_DESC_NULLS_LAST', + DailyStatIdNonRebasingSupplyAsc = 'dailyStatId_nonRebasingSupply_ASC', + DailyStatIdNonRebasingSupplyAscNullsFirst = 'dailyStatId_nonRebasingSupply_ASC_NULLS_FIRST', + DailyStatIdNonRebasingSupplyDesc = 'dailyStatId_nonRebasingSupply_DESC', + DailyStatIdNonRebasingSupplyDescNullsLast = 'dailyStatId_nonRebasingSupply_DESC_NULLS_LAST', + DailyStatIdPegPriceAsc = 'dailyStatId_pegPrice_ASC', + DailyStatIdPegPriceAscNullsFirst = 'dailyStatId_pegPrice_ASC_NULLS_FIRST', + DailyStatIdPegPriceDesc = 'dailyStatId_pegPrice_DESC', + DailyStatIdPegPriceDescNullsLast = 'dailyStatId_pegPrice_DESC_NULLS_LAST', + DailyStatIdRebasingSupplyAsc = 'dailyStatId_rebasingSupply_ASC', + DailyStatIdRebasingSupplyAscNullsFirst = 'dailyStatId_rebasingSupply_ASC_NULLS_FIRST', + DailyStatIdRebasingSupplyDesc = 'dailyStatId_rebasingSupply_DESC', + DailyStatIdRebasingSupplyDescNullsLast = 'dailyStatId_rebasingSupply_DESC_NULLS_LAST', + DailyStatIdTimestampAsc = 'dailyStatId_timestamp_ASC', + DailyStatIdTimestampAscNullsFirst = 'dailyStatId_timestamp_ASC_NULLS_FIRST', + DailyStatIdTimestampDesc = 'dailyStatId_timestamp_DESC', + DailyStatIdTimestampDescNullsLast = 'dailyStatId_timestamp_DESC_NULLS_LAST', + DailyStatIdTotalSupplyUsdAsc = 'dailyStatId_totalSupplyUSD_ASC', + DailyStatIdTotalSupplyUsdAscNullsFirst = 'dailyStatId_totalSupplyUSD_ASC_NULLS_FIRST', + DailyStatIdTotalSupplyUsdDesc = 'dailyStatId_totalSupplyUSD_DESC', + DailyStatIdTotalSupplyUsdDescNullsLast = 'dailyStatId_totalSupplyUSD_DESC_NULLS_LAST', + DailyStatIdTotalSupplyAsc = 'dailyStatId_totalSupply_ASC', + DailyStatIdTotalSupplyAscNullsFirst = 'dailyStatId_totalSupply_ASC_NULLS_FIRST', + DailyStatIdTotalSupplyDesc = 'dailyStatId_totalSupply_DESC', + DailyStatIdTotalSupplyDescNullsLast = 'dailyStatId_totalSupply_DESC_NULLS_LAST', + DailyStatIdTradingVolumeUsdAsc = 'dailyStatId_tradingVolumeUSD_ASC', + DailyStatIdTradingVolumeUsdAscNullsFirst = 'dailyStatId_tradingVolumeUSD_ASC_NULLS_FIRST', + DailyStatIdTradingVolumeUsdDesc = 'dailyStatId_tradingVolumeUSD_DESC', + DailyStatIdTradingVolumeUsdDescNullsLast = 'dailyStatId_tradingVolumeUSD_DESC_NULLS_LAST', + DailyStatIdWrappedSupplyAsc = 'dailyStatId_wrappedSupply_ASC', + DailyStatIdWrappedSupplyAscNullsFirst = 'dailyStatId_wrappedSupply_ASC_NULLS_FIRST', + DailyStatIdWrappedSupplyDesc = 'dailyStatId_wrappedSupply_DESC', + DailyStatIdWrappedSupplyDescNullsLast = 'dailyStatId_wrappedSupply_DESC_NULLS_LAST', + DailyStatIdYieldEth7DayAsc = 'dailyStatId_yieldETH7Day_ASC', + DailyStatIdYieldEth7DayAscNullsFirst = 'dailyStatId_yieldETH7Day_ASC_NULLS_FIRST', + DailyStatIdYieldEth7DayDesc = 'dailyStatId_yieldETH7Day_DESC', + DailyStatIdYieldEth7DayDescNullsLast = 'dailyStatId_yieldETH7Day_DESC_NULLS_LAST', + DailyStatIdYieldEthAllTimeAsc = 'dailyStatId_yieldETHAllTime_ASC', + DailyStatIdYieldEthAllTimeAscNullsFirst = 'dailyStatId_yieldETHAllTime_ASC_NULLS_FIRST', + DailyStatIdYieldEthAllTimeDesc = 'dailyStatId_yieldETHAllTime_DESC', + DailyStatIdYieldEthAllTimeDescNullsLast = 'dailyStatId_yieldETHAllTime_DESC_NULLS_LAST', + DailyStatIdYieldEthAsc = 'dailyStatId_yieldETH_ASC', + DailyStatIdYieldEthAscNullsFirst = 'dailyStatId_yieldETH_ASC_NULLS_FIRST', + DailyStatIdYieldEthDesc = 'dailyStatId_yieldETH_DESC', + DailyStatIdYieldEthDescNullsLast = 'dailyStatId_yieldETH_DESC_NULLS_LAST', + DailyStatIdYieldUsd7DayAsc = 'dailyStatId_yieldUSD7Day_ASC', + DailyStatIdYieldUsd7DayAscNullsFirst = 'dailyStatId_yieldUSD7Day_ASC_NULLS_FIRST', + DailyStatIdYieldUsd7DayDesc = 'dailyStatId_yieldUSD7Day_DESC', + DailyStatIdYieldUsd7DayDescNullsLast = 'dailyStatId_yieldUSD7Day_DESC_NULLS_LAST', + DailyStatIdYieldUsdAllTimeAsc = 'dailyStatId_yieldUSDAllTime_ASC', + DailyStatIdYieldUsdAllTimeAscNullsFirst = 'dailyStatId_yieldUSDAllTime_ASC_NULLS_FIRST', + DailyStatIdYieldUsdAllTimeDesc = 'dailyStatId_yieldUSDAllTime_DESC', + DailyStatIdYieldUsdAllTimeDescNullsLast = 'dailyStatId_yieldUSDAllTime_DESC_NULLS_LAST', + DailyStatIdYieldUsdAsc = 'dailyStatId_yieldUSD_ASC', + DailyStatIdYieldUsdAscNullsFirst = 'dailyStatId_yieldUSD_ASC_NULLS_FIRST', + DailyStatIdYieldUsdDesc = 'dailyStatId_yieldUSD_DESC', + DailyStatIdYieldUsdDescNullsLast = 'dailyStatId_yieldUSD_DESC_NULLS_LAST', + IdAsc = 'id_ASC', + IdAscNullsFirst = 'id_ASC_NULLS_FIRST', + IdDesc = 'id_DESC', + IdDescNullsLast = 'id_DESC_NULLS_LAST', + PriceAsc = 'price_ASC', + PriceAscNullsFirst = 'price_ASC_NULLS_FIRST', + PriceDesc = 'price_DESC', + PriceDescNullsLast = 'price_DESC_NULLS_LAST', + SymbolAsc = 'symbol_ASC', + SymbolAscNullsFirst = 'symbol_ASC_NULLS_FIRST', + SymbolDesc = 'symbol_DESC', + SymbolDescNullsLast = 'symbol_DESC_NULLS_LAST', + ValueAsc = 'value_ASC', + ValueAscNullsFirst = 'value_ASC_NULLS_FIRST', + ValueDesc = 'value_DESC', + ValueDescNullsLast = 'value_DESC_NULLS_LAST' +} + +export type OethCollateralDailyStatWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; amount_eq?: InputMaybe; amount_gt?: InputMaybe; amount_gte?: InputMaybe; @@ -3312,66 +3270,8 @@ export type OethActivityWhereInput = { amount_lte?: InputMaybe; amount_not_eq?: InputMaybe; amount_not_in?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - callDataLast4Bytes_contains?: InputMaybe; - callDataLast4Bytes_containsInsensitive?: InputMaybe; - callDataLast4Bytes_endsWith?: InputMaybe; - callDataLast4Bytes_eq?: InputMaybe; - callDataLast4Bytes_gt?: InputMaybe; - callDataLast4Bytes_gte?: InputMaybe; - callDataLast4Bytes_in?: InputMaybe>; - callDataLast4Bytes_isNull?: InputMaybe; - callDataLast4Bytes_lt?: InputMaybe; - callDataLast4Bytes_lte?: InputMaybe; - callDataLast4Bytes_not_contains?: InputMaybe; - callDataLast4Bytes_not_containsInsensitive?: InputMaybe; - callDataLast4Bytes_not_endsWith?: InputMaybe; - callDataLast4Bytes_not_eq?: InputMaybe; - callDataLast4Bytes_not_in?: InputMaybe>; - callDataLast4Bytes_not_startsWith?: InputMaybe; - callDataLast4Bytes_startsWith?: InputMaybe; - exchange_contains?: InputMaybe; - exchange_containsInsensitive?: InputMaybe; - exchange_endsWith?: InputMaybe; - exchange_eq?: InputMaybe; - exchange_gt?: InputMaybe; - exchange_gte?: InputMaybe; - exchange_in?: InputMaybe>; - exchange_isNull?: InputMaybe; - exchange_lt?: InputMaybe; - exchange_lte?: InputMaybe; - exchange_not_contains?: InputMaybe; - exchange_not_containsInsensitive?: InputMaybe; - exchange_not_endsWith?: InputMaybe; - exchange_not_eq?: InputMaybe; - exchange_not_in?: InputMaybe>; - exchange_not_startsWith?: InputMaybe; - exchange_startsWith?: InputMaybe; - fromSymbol_contains?: InputMaybe; - fromSymbol_containsInsensitive?: InputMaybe; - fromSymbol_endsWith?: InputMaybe; - fromSymbol_eq?: InputMaybe; - fromSymbol_gt?: InputMaybe; - fromSymbol_gte?: InputMaybe; - fromSymbol_in?: InputMaybe>; - fromSymbol_isNull?: InputMaybe; - fromSymbol_lt?: InputMaybe; - fromSymbol_lte?: InputMaybe; - fromSymbol_not_contains?: InputMaybe; - fromSymbol_not_containsInsensitive?: InputMaybe; - fromSymbol_not_endsWith?: InputMaybe; - fromSymbol_not_eq?: InputMaybe; - fromSymbol_not_in?: InputMaybe>; - fromSymbol_not_startsWith?: InputMaybe; - fromSymbol_startsWith?: InputMaybe; + dailyStatId?: InputMaybe; + dailyStatId_isNull?: InputMaybe; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -3389,177 +3289,138 @@ export type OethActivityWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - interface_contains?: InputMaybe; - interface_containsInsensitive?: InputMaybe; - interface_endsWith?: InputMaybe; - interface_eq?: InputMaybe; - interface_gt?: InputMaybe; - interface_gte?: InputMaybe; - interface_in?: InputMaybe>; - interface_isNull?: InputMaybe; - interface_lt?: InputMaybe; - interface_lte?: InputMaybe; - interface_not_contains?: InputMaybe; - interface_not_containsInsensitive?: InputMaybe; - interface_not_endsWith?: InputMaybe; - interface_not_eq?: InputMaybe; - interface_not_in?: InputMaybe>; - interface_not_startsWith?: InputMaybe; - interface_startsWith?: InputMaybe; - sighash_contains?: InputMaybe; - sighash_containsInsensitive?: InputMaybe; - sighash_endsWith?: InputMaybe; - sighash_eq?: InputMaybe; - sighash_gt?: InputMaybe; - sighash_gte?: InputMaybe; - sighash_in?: InputMaybe>; - sighash_isNull?: InputMaybe; - sighash_lt?: InputMaybe; - sighash_lte?: InputMaybe; - sighash_not_contains?: InputMaybe; - sighash_not_containsInsensitive?: InputMaybe; - sighash_not_endsWith?: InputMaybe; - sighash_not_eq?: InputMaybe; - sighash_not_in?: InputMaybe>; - sighash_not_startsWith?: InputMaybe; - sighash_startsWith?: InputMaybe; - timestamp_eq?: InputMaybe; - timestamp_gt?: InputMaybe; - timestamp_gte?: InputMaybe; - timestamp_in?: InputMaybe>; - timestamp_isNull?: InputMaybe; - timestamp_lt?: InputMaybe; - timestamp_lte?: InputMaybe; - timestamp_not_eq?: InputMaybe; - timestamp_not_in?: InputMaybe>; - toSymbol_contains?: InputMaybe; - toSymbol_containsInsensitive?: InputMaybe; - toSymbol_endsWith?: InputMaybe; - toSymbol_eq?: InputMaybe; - toSymbol_gt?: InputMaybe; - toSymbol_gte?: InputMaybe; - toSymbol_in?: InputMaybe>; - toSymbol_isNull?: InputMaybe; - toSymbol_lt?: InputMaybe; - toSymbol_lte?: InputMaybe; - toSymbol_not_contains?: InputMaybe; - toSymbol_not_containsInsensitive?: InputMaybe; - toSymbol_not_endsWith?: InputMaybe; - toSymbol_not_eq?: InputMaybe; - toSymbol_not_in?: InputMaybe>; - toSymbol_not_startsWith?: InputMaybe; - toSymbol_startsWith?: InputMaybe; - txHash_contains?: InputMaybe; - txHash_containsInsensitive?: InputMaybe; - txHash_endsWith?: InputMaybe; - txHash_eq?: InputMaybe; - txHash_gt?: InputMaybe; - txHash_gte?: InputMaybe; - txHash_in?: InputMaybe>; - txHash_isNull?: InputMaybe; - txHash_lt?: InputMaybe; - txHash_lte?: InputMaybe; - txHash_not_contains?: InputMaybe; - txHash_not_containsInsensitive?: InputMaybe; - txHash_not_endsWith?: InputMaybe; - txHash_not_eq?: InputMaybe; - txHash_not_in?: InputMaybe>; - txHash_not_startsWith?: InputMaybe; - txHash_startsWith?: InputMaybe; + price_eq?: InputMaybe; + price_gt?: InputMaybe; + price_gte?: InputMaybe; + price_in?: InputMaybe>; + price_isNull?: InputMaybe; + price_lt?: InputMaybe; + price_lte?: InputMaybe; + price_not_eq?: InputMaybe; + price_not_in?: InputMaybe>; + symbol_contains?: InputMaybe; + symbol_containsInsensitive?: InputMaybe; + symbol_endsWith?: InputMaybe; + symbol_eq?: InputMaybe; + symbol_gt?: InputMaybe; + symbol_gte?: InputMaybe; + symbol_in?: InputMaybe>; + symbol_isNull?: InputMaybe; + symbol_lt?: InputMaybe; + symbol_lte?: InputMaybe; + symbol_not_contains?: InputMaybe; + symbol_not_containsInsensitive?: InputMaybe; + symbol_not_endsWith?: InputMaybe; + symbol_not_eq?: InputMaybe; + symbol_not_in?: InputMaybe>; + symbol_not_startsWith?: InputMaybe; + symbol_startsWith?: InputMaybe; + value_eq?: InputMaybe; + value_gt?: InputMaybe; + value_gte?: InputMaybe; + value_in?: InputMaybe>; + value_isNull?: InputMaybe; + value_lt?: InputMaybe; + value_lte?: InputMaybe; + value_not_eq?: InputMaybe; + value_not_in?: InputMaybe>; }; -/** The OETH balance, history and other information for a given address. */ -export type OethAddress = { - __typename?: 'OETHAddress'; - balance: Scalars['BigInt']['output']; - credits: Scalars['BigInt']['output']; - earned: Scalars['BigInt']['output']; - history: Array; - id: Scalars['String']['output']; - isContract: Scalars['Boolean']['output']; - lastUpdated: Scalars['DateTime']['output']; - rebasingOption: RebasingOption; +export type OethCollateralDailyStatsConnection = { + __typename?: 'OETHCollateralDailyStatsConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; }; - -/** The OETH balance, history and other information for a given address. */ -export type OethAddressHistoryArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; +export type OethCurveLp = { + __typename?: 'OETHCurveLP'; + blockNumber: Scalars['Int']['output']; + eth: Scalars['BigInt']['output']; + ethOwned: Scalars['BigInt']['output']; + id: Scalars['String']['output']; + oeth: Scalars['BigInt']['output']; + oethOwned: Scalars['BigInt']['output']; + timestamp: Scalars['DateTime']['output']; + totalSupply: Scalars['BigInt']['output']; + totalSupplyOwned: Scalars['BigInt']['output']; }; -export type OethAddressEdge = { - __typename?: 'OETHAddressEdge'; +export type OethCurveLpEdge = { + __typename?: 'OETHCurveLPEdge'; cursor: Scalars['String']['output']; - node: OethAddress; + node: OethCurveLp; }; -export enum OethAddressOrderByInput { - BalanceAsc = 'balance_ASC', - BalanceAscNullsFirst = 'balance_ASC_NULLS_FIRST', - BalanceDesc = 'balance_DESC', - BalanceDescNullsLast = 'balance_DESC_NULLS_LAST', - CreditsAsc = 'credits_ASC', - CreditsAscNullsFirst = 'credits_ASC_NULLS_FIRST', - CreditsDesc = 'credits_DESC', - CreditsDescNullsLast = 'credits_DESC_NULLS_LAST', - EarnedAsc = 'earned_ASC', - EarnedAscNullsFirst = 'earned_ASC_NULLS_FIRST', - EarnedDesc = 'earned_DESC', - EarnedDescNullsLast = 'earned_DESC_NULLS_LAST', +export enum OethCurveLpOrderByInput { + BlockNumberAsc = 'blockNumber_ASC', + BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', + BlockNumberDesc = 'blockNumber_DESC', + BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + EthOwnedAsc = 'ethOwned_ASC', + EthOwnedAscNullsFirst = 'ethOwned_ASC_NULLS_FIRST', + EthOwnedDesc = 'ethOwned_DESC', + EthOwnedDescNullsLast = 'ethOwned_DESC_NULLS_LAST', + EthAsc = 'eth_ASC', + EthAscNullsFirst = 'eth_ASC_NULLS_FIRST', + EthDesc = 'eth_DESC', + EthDescNullsLast = 'eth_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - IsContractAsc = 'isContract_ASC', - IsContractAscNullsFirst = 'isContract_ASC_NULLS_FIRST', - IsContractDesc = 'isContract_DESC', - IsContractDescNullsLast = 'isContract_DESC_NULLS_LAST', - LastUpdatedAsc = 'lastUpdated_ASC', - LastUpdatedAscNullsFirst = 'lastUpdated_ASC_NULLS_FIRST', - LastUpdatedDesc = 'lastUpdated_DESC', - LastUpdatedDescNullsLast = 'lastUpdated_DESC_NULLS_LAST', - RebasingOptionAsc = 'rebasingOption_ASC', - RebasingOptionAscNullsFirst = 'rebasingOption_ASC_NULLS_FIRST', - RebasingOptionDesc = 'rebasingOption_DESC', - RebasingOptionDescNullsLast = 'rebasingOption_DESC_NULLS_LAST' + OethOwnedAsc = 'oethOwned_ASC', + OethOwnedAscNullsFirst = 'oethOwned_ASC_NULLS_FIRST', + OethOwnedDesc = 'oethOwned_DESC', + OethOwnedDescNullsLast = 'oethOwned_DESC_NULLS_LAST', + OethAsc = 'oeth_ASC', + OethAscNullsFirst = 'oeth_ASC_NULLS_FIRST', + OethDesc = 'oeth_DESC', + OethDescNullsLast = 'oeth_DESC_NULLS_LAST', + TimestampAsc = 'timestamp_ASC', + TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', + TimestampDesc = 'timestamp_DESC', + TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', + TotalSupplyOwnedAsc = 'totalSupplyOwned_ASC', + TotalSupplyOwnedAscNullsFirst = 'totalSupplyOwned_ASC_NULLS_FIRST', + TotalSupplyOwnedDesc = 'totalSupplyOwned_DESC', + TotalSupplyOwnedDescNullsLast = 'totalSupplyOwned_DESC_NULLS_LAST', + TotalSupplyAsc = 'totalSupply_ASC', + TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', + TotalSupplyDesc = 'totalSupply_DESC', + TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST' } -export type OethAddressWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - balance_eq?: InputMaybe; - balance_gt?: InputMaybe; - balance_gte?: InputMaybe; - balance_in?: InputMaybe>; - balance_isNull?: InputMaybe; - balance_lt?: InputMaybe; - balance_lte?: InputMaybe; - balance_not_eq?: InputMaybe; - balance_not_in?: InputMaybe>; - credits_eq?: InputMaybe; - credits_gt?: InputMaybe; - credits_gte?: InputMaybe; - credits_in?: InputMaybe>; - credits_isNull?: InputMaybe; - credits_lt?: InputMaybe; - credits_lte?: InputMaybe; - credits_not_eq?: InputMaybe; - credits_not_in?: InputMaybe>; - earned_eq?: InputMaybe; - earned_gt?: InputMaybe; - earned_gte?: InputMaybe; - earned_in?: InputMaybe>; - earned_isNull?: InputMaybe; - earned_lt?: InputMaybe; - earned_lte?: InputMaybe; - earned_not_eq?: InputMaybe; - earned_not_in?: InputMaybe>; - history_every?: InputMaybe; - history_none?: InputMaybe; - history_some?: InputMaybe; +export type OethCurveLpWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + blockNumber_eq?: InputMaybe; + blockNumber_gt?: InputMaybe; + blockNumber_gte?: InputMaybe; + blockNumber_in?: InputMaybe>; + blockNumber_isNull?: InputMaybe; + blockNumber_lt?: InputMaybe; + blockNumber_lte?: InputMaybe; + blockNumber_not_eq?: InputMaybe; + blockNumber_not_in?: InputMaybe>; + ethOwned_eq?: InputMaybe; + ethOwned_gt?: InputMaybe; + ethOwned_gte?: InputMaybe; + ethOwned_in?: InputMaybe>; + ethOwned_isNull?: InputMaybe; + ethOwned_lt?: InputMaybe; + ethOwned_lte?: InputMaybe; + ethOwned_not_eq?: InputMaybe; + ethOwned_not_in?: InputMaybe>; + eth_eq?: InputMaybe; + eth_gt?: InputMaybe; + eth_gte?: InputMaybe; + eth_in?: InputMaybe>; + eth_isNull?: InputMaybe; + eth_lt?: InputMaybe; + eth_lte?: InputMaybe; + eth_not_eq?: InputMaybe; + eth_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -3577,1013 +3438,24 @@ export type OethAddressWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - isContract_eq?: InputMaybe; - isContract_isNull?: InputMaybe; - isContract_not_eq?: InputMaybe; - lastUpdated_eq?: InputMaybe; - lastUpdated_gt?: InputMaybe; - lastUpdated_gte?: InputMaybe; - lastUpdated_in?: InputMaybe>; - lastUpdated_isNull?: InputMaybe; - lastUpdated_lt?: InputMaybe; - lastUpdated_lte?: InputMaybe; - lastUpdated_not_eq?: InputMaybe; - lastUpdated_not_in?: InputMaybe>; - rebasingOption_eq?: InputMaybe; - rebasingOption_in?: InputMaybe>; - rebasingOption_isNull?: InputMaybe; - rebasingOption_not_eq?: InputMaybe; - rebasingOption_not_in?: InputMaybe>; -}; - -export type OethAddressesConnection = { - __typename?: 'OETHAddressesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OethAsset = { - __typename?: 'OETHAsset'; - address: Scalars['String']['output']; - id: Scalars['String']['output']; - symbol: Scalars['String']['output']; -}; - -export type OethAssetEdge = { - __typename?: 'OETHAssetEdge'; - cursor: Scalars['String']['output']; - node: OethAsset; -}; - -export enum OethAssetOrderByInput { - AddressAsc = 'address_ASC', - AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', - AddressDesc = 'address_DESC', - AddressDescNullsLast = 'address_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - SymbolAsc = 'symbol_ASC', - SymbolAscNullsFirst = 'symbol_ASC_NULLS_FIRST', - SymbolDesc = 'symbol_DESC', - SymbolDescNullsLast = 'symbol_DESC_NULLS_LAST' -} - -export type OethAssetWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - address_contains?: InputMaybe; - address_containsInsensitive?: InputMaybe; - address_endsWith?: InputMaybe; - address_eq?: InputMaybe; - address_gt?: InputMaybe; - address_gte?: InputMaybe; - address_in?: InputMaybe>; - address_isNull?: InputMaybe; - address_lt?: InputMaybe; - address_lte?: InputMaybe; - address_not_contains?: InputMaybe; - address_not_containsInsensitive?: InputMaybe; - address_not_endsWith?: InputMaybe; - address_not_eq?: InputMaybe; - address_not_in?: InputMaybe>; - address_not_startsWith?: InputMaybe; - address_startsWith?: InputMaybe; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - symbol_contains?: InputMaybe; - symbol_containsInsensitive?: InputMaybe; - symbol_endsWith?: InputMaybe; - symbol_eq?: InputMaybe; - symbol_gt?: InputMaybe; - symbol_gte?: InputMaybe; - symbol_in?: InputMaybe>; - symbol_isNull?: InputMaybe; - symbol_lt?: InputMaybe; - symbol_lte?: InputMaybe; - symbol_not_contains?: InputMaybe; - symbol_not_containsInsensitive?: InputMaybe; - symbol_not_endsWith?: InputMaybe; - symbol_not_eq?: InputMaybe; - symbol_not_in?: InputMaybe>; - symbol_not_startsWith?: InputMaybe; - symbol_startsWith?: InputMaybe; -}; - -export type OethAssetsConnection = { - __typename?: 'OETHAssetsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OethBalancerMetaPoolStrategiesConnection = { - __typename?: 'OETHBalancerMetaPoolStrategiesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OethBalancerMetaPoolStrategy = { - __typename?: 'OETHBalancerMetaPoolStrategy'; - blockNumber: Scalars['Int']['output']; - id: Scalars['String']['output']; - rETH: Scalars['BigInt']['output']; - timestamp: Scalars['DateTime']['output']; - weth: Scalars['BigInt']['output']; -}; - -export type OethBalancerMetaPoolStrategyEdge = { - __typename?: 'OETHBalancerMetaPoolStrategyEdge'; - cursor: Scalars['String']['output']; - node: OethBalancerMetaPoolStrategy; -}; - -export enum OethBalancerMetaPoolStrategyOrderByInput { - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - REthAsc = 'rETH_ASC', - REthAscNullsFirst = 'rETH_ASC_NULLS_FIRST', - REthDesc = 'rETH_DESC', - REthDescNullsLast = 'rETH_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - WethAsc = 'weth_ASC', - WethAscNullsFirst = 'weth_ASC_NULLS_FIRST', - WethDesc = 'weth_DESC', - WethDescNullsLast = 'weth_DESC_NULLS_LAST' -} - -export type OethBalancerMetaPoolStrategyWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - rETH_eq?: InputMaybe; - rETH_gt?: InputMaybe; - rETH_gte?: InputMaybe; - rETH_in?: InputMaybe>; - rETH_isNull?: InputMaybe; - rETH_lt?: InputMaybe; - rETH_lte?: InputMaybe; - rETH_not_eq?: InputMaybe; - rETH_not_in?: InputMaybe>; - timestamp_eq?: InputMaybe; - timestamp_gt?: InputMaybe; - timestamp_gte?: InputMaybe; - timestamp_in?: InputMaybe>; - timestamp_isNull?: InputMaybe; - timestamp_lt?: InputMaybe; - timestamp_lte?: InputMaybe; - timestamp_not_eq?: InputMaybe; - timestamp_not_in?: InputMaybe>; - weth_eq?: InputMaybe; - weth_gt?: InputMaybe; - weth_gte?: InputMaybe; - weth_in?: InputMaybe>; - weth_isNull?: InputMaybe; - weth_lt?: InputMaybe; - weth_lte?: InputMaybe; - weth_not_eq?: InputMaybe; - weth_not_in?: InputMaybe>; -}; - -export type OethCollateralDailyStat = { - __typename?: 'OETHCollateralDailyStat'; - /** Amount held */ - amount: Scalars['BigInt']['output']; - dailyStatId: OethDailyStat; - id: Scalars['String']['output']; - /** Price in ETH */ - price: Scalars['BigInt']['output']; - /** Token symbol */ - symbol: Scalars['String']['output']; - /** Total ETH value */ - value: Scalars['BigInt']['output']; -}; - -export type OethCollateralDailyStatEdge = { - __typename?: 'OETHCollateralDailyStatEdge'; - cursor: Scalars['String']['output']; - node: OethCollateralDailyStat; -}; - -export enum OethCollateralDailyStatOrderByInput { - AmountAsc = 'amount_ASC', - AmountAscNullsFirst = 'amount_ASC_NULLS_FIRST', - AmountDesc = 'amount_DESC', - AmountDescNullsLast = 'amount_DESC_NULLS_LAST', - DailyStatIdAmoSupplyAsc = 'dailyStatId_amoSupply_ASC', - DailyStatIdAmoSupplyAscNullsFirst = 'dailyStatId_amoSupply_ASC_NULLS_FIRST', - DailyStatIdAmoSupplyDesc = 'dailyStatId_amoSupply_DESC', - DailyStatIdAmoSupplyDescNullsLast = 'dailyStatId_amoSupply_DESC_NULLS_LAST', - DailyStatIdAprAsc = 'dailyStatId_apr_ASC', - DailyStatIdAprAscNullsFirst = 'dailyStatId_apr_ASC_NULLS_FIRST', - DailyStatIdAprDesc = 'dailyStatId_apr_DESC', - DailyStatIdAprDescNullsLast = 'dailyStatId_apr_DESC_NULLS_LAST', - DailyStatIdApy7DayAvgAsc = 'dailyStatId_apy7DayAvg_ASC', - DailyStatIdApy7DayAvgAscNullsFirst = 'dailyStatId_apy7DayAvg_ASC_NULLS_FIRST', - DailyStatIdApy7DayAvgDesc = 'dailyStatId_apy7DayAvg_DESC', - DailyStatIdApy7DayAvgDescNullsLast = 'dailyStatId_apy7DayAvg_DESC_NULLS_LAST', - DailyStatIdApy14DayAvgAsc = 'dailyStatId_apy14DayAvg_ASC', - DailyStatIdApy14DayAvgAscNullsFirst = 'dailyStatId_apy14DayAvg_ASC_NULLS_FIRST', - DailyStatIdApy14DayAvgDesc = 'dailyStatId_apy14DayAvg_DESC', - DailyStatIdApy14DayAvgDescNullsLast = 'dailyStatId_apy14DayAvg_DESC_NULLS_LAST', - DailyStatIdApy30DayAvgAsc = 'dailyStatId_apy30DayAvg_ASC', - DailyStatIdApy30DayAvgAscNullsFirst = 'dailyStatId_apy30DayAvg_ASC_NULLS_FIRST', - DailyStatIdApy30DayAvgDesc = 'dailyStatId_apy30DayAvg_DESC', - DailyStatIdApy30DayAvgDescNullsLast = 'dailyStatId_apy30DayAvg_DESC_NULLS_LAST', - DailyStatIdApyAsc = 'dailyStatId_apy_ASC', - DailyStatIdApyAscNullsFirst = 'dailyStatId_apy_ASC_NULLS_FIRST', - DailyStatIdApyDesc = 'dailyStatId_apy_DESC', - DailyStatIdApyDescNullsLast = 'dailyStatId_apy_DESC_NULLS_LAST', - DailyStatIdBlockNumberAsc = 'dailyStatId_blockNumber_ASC', - DailyStatIdBlockNumberAscNullsFirst = 'dailyStatId_blockNumber_ASC_NULLS_FIRST', - DailyStatIdBlockNumberDesc = 'dailyStatId_blockNumber_DESC', - DailyStatIdBlockNumberDescNullsLast = 'dailyStatId_blockNumber_DESC_NULLS_LAST', - DailyStatIdDripperWethAsc = 'dailyStatId_dripperWETH_ASC', - DailyStatIdDripperWethAscNullsFirst = 'dailyStatId_dripperWETH_ASC_NULLS_FIRST', - DailyStatIdDripperWethDesc = 'dailyStatId_dripperWETH_DESC', - DailyStatIdDripperWethDescNullsLast = 'dailyStatId_dripperWETH_DESC_NULLS_LAST', - DailyStatIdFeesEth7DayAsc = 'dailyStatId_feesETH7Day_ASC', - DailyStatIdFeesEth7DayAscNullsFirst = 'dailyStatId_feesETH7Day_ASC_NULLS_FIRST', - DailyStatIdFeesEth7DayDesc = 'dailyStatId_feesETH7Day_DESC', - DailyStatIdFeesEth7DayDescNullsLast = 'dailyStatId_feesETH7Day_DESC_NULLS_LAST', - DailyStatIdFeesEthAllTimeAsc = 'dailyStatId_feesETHAllTime_ASC', - DailyStatIdFeesEthAllTimeAscNullsFirst = 'dailyStatId_feesETHAllTime_ASC_NULLS_FIRST', - DailyStatIdFeesEthAllTimeDesc = 'dailyStatId_feesETHAllTime_DESC', - DailyStatIdFeesEthAllTimeDescNullsLast = 'dailyStatId_feesETHAllTime_DESC_NULLS_LAST', - DailyStatIdFeesEthAsc = 'dailyStatId_feesETH_ASC', - DailyStatIdFeesEthAscNullsFirst = 'dailyStatId_feesETH_ASC_NULLS_FIRST', - DailyStatIdFeesEthDesc = 'dailyStatId_feesETH_DESC', - DailyStatIdFeesEthDescNullsLast = 'dailyStatId_feesETH_DESC_NULLS_LAST', - DailyStatIdFeesUsd7DayAsc = 'dailyStatId_feesUSD7Day_ASC', - DailyStatIdFeesUsd7DayAscNullsFirst = 'dailyStatId_feesUSD7Day_ASC_NULLS_FIRST', - DailyStatIdFeesUsd7DayDesc = 'dailyStatId_feesUSD7Day_DESC', - DailyStatIdFeesUsd7DayDescNullsLast = 'dailyStatId_feesUSD7Day_DESC_NULLS_LAST', - DailyStatIdFeesUsdAllTimeAsc = 'dailyStatId_feesUSDAllTime_ASC', - DailyStatIdFeesUsdAllTimeAscNullsFirst = 'dailyStatId_feesUSDAllTime_ASC_NULLS_FIRST', - DailyStatIdFeesUsdAllTimeDesc = 'dailyStatId_feesUSDAllTime_DESC', - DailyStatIdFeesUsdAllTimeDescNullsLast = 'dailyStatId_feesUSDAllTime_DESC_NULLS_LAST', - DailyStatIdFeesUsdAsc = 'dailyStatId_feesUSD_ASC', - DailyStatIdFeesUsdAscNullsFirst = 'dailyStatId_feesUSD_ASC_NULLS_FIRST', - DailyStatIdFeesUsdDesc = 'dailyStatId_feesUSD_DESC', - DailyStatIdFeesUsdDescNullsLast = 'dailyStatId_feesUSD_DESC_NULLS_LAST', - DailyStatIdHoldersOverThresholdAsc = 'dailyStatId_holdersOverThreshold_ASC', - DailyStatIdHoldersOverThresholdAscNullsFirst = 'dailyStatId_holdersOverThreshold_ASC_NULLS_FIRST', - DailyStatIdHoldersOverThresholdDesc = 'dailyStatId_holdersOverThreshold_DESC', - DailyStatIdHoldersOverThresholdDescNullsLast = 'dailyStatId_holdersOverThreshold_DESC_NULLS_LAST', - DailyStatIdIdAsc = 'dailyStatId_id_ASC', - DailyStatIdIdAscNullsFirst = 'dailyStatId_id_ASC_NULLS_FIRST', - DailyStatIdIdDesc = 'dailyStatId_id_DESC', - DailyStatIdIdDescNullsLast = 'dailyStatId_id_DESC_NULLS_LAST', - DailyStatIdMarketCapUsdAsc = 'dailyStatId_marketCapUSD_ASC', - DailyStatIdMarketCapUsdAscNullsFirst = 'dailyStatId_marketCapUSD_ASC_NULLS_FIRST', - DailyStatIdMarketCapUsdDesc = 'dailyStatId_marketCapUSD_DESC', - DailyStatIdMarketCapUsdDescNullsLast = 'dailyStatId_marketCapUSD_DESC_NULLS_LAST', - DailyStatIdNonRebasingSupplyAsc = 'dailyStatId_nonRebasingSupply_ASC', - DailyStatIdNonRebasingSupplyAscNullsFirst = 'dailyStatId_nonRebasingSupply_ASC_NULLS_FIRST', - DailyStatIdNonRebasingSupplyDesc = 'dailyStatId_nonRebasingSupply_DESC', - DailyStatIdNonRebasingSupplyDescNullsLast = 'dailyStatId_nonRebasingSupply_DESC_NULLS_LAST', - DailyStatIdPegPriceAsc = 'dailyStatId_pegPrice_ASC', - DailyStatIdPegPriceAscNullsFirst = 'dailyStatId_pegPrice_ASC_NULLS_FIRST', - DailyStatIdPegPriceDesc = 'dailyStatId_pegPrice_DESC', - DailyStatIdPegPriceDescNullsLast = 'dailyStatId_pegPrice_DESC_NULLS_LAST', - DailyStatIdRebasingSupplyAsc = 'dailyStatId_rebasingSupply_ASC', - DailyStatIdRebasingSupplyAscNullsFirst = 'dailyStatId_rebasingSupply_ASC_NULLS_FIRST', - DailyStatIdRebasingSupplyDesc = 'dailyStatId_rebasingSupply_DESC', - DailyStatIdRebasingSupplyDescNullsLast = 'dailyStatId_rebasingSupply_DESC_NULLS_LAST', - DailyStatIdTimestampAsc = 'dailyStatId_timestamp_ASC', - DailyStatIdTimestampAscNullsFirst = 'dailyStatId_timestamp_ASC_NULLS_FIRST', - DailyStatIdTimestampDesc = 'dailyStatId_timestamp_DESC', - DailyStatIdTimestampDescNullsLast = 'dailyStatId_timestamp_DESC_NULLS_LAST', - DailyStatIdTotalSupplyUsdAsc = 'dailyStatId_totalSupplyUSD_ASC', - DailyStatIdTotalSupplyUsdAscNullsFirst = 'dailyStatId_totalSupplyUSD_ASC_NULLS_FIRST', - DailyStatIdTotalSupplyUsdDesc = 'dailyStatId_totalSupplyUSD_DESC', - DailyStatIdTotalSupplyUsdDescNullsLast = 'dailyStatId_totalSupplyUSD_DESC_NULLS_LAST', - DailyStatIdTotalSupplyAsc = 'dailyStatId_totalSupply_ASC', - DailyStatIdTotalSupplyAscNullsFirst = 'dailyStatId_totalSupply_ASC_NULLS_FIRST', - DailyStatIdTotalSupplyDesc = 'dailyStatId_totalSupply_DESC', - DailyStatIdTotalSupplyDescNullsLast = 'dailyStatId_totalSupply_DESC_NULLS_LAST', - DailyStatIdTradingVolumeUsdAsc = 'dailyStatId_tradingVolumeUSD_ASC', - DailyStatIdTradingVolumeUsdAscNullsFirst = 'dailyStatId_tradingVolumeUSD_ASC_NULLS_FIRST', - DailyStatIdTradingVolumeUsdDesc = 'dailyStatId_tradingVolumeUSD_DESC', - DailyStatIdTradingVolumeUsdDescNullsLast = 'dailyStatId_tradingVolumeUSD_DESC_NULLS_LAST', - DailyStatIdWrappedSupplyAsc = 'dailyStatId_wrappedSupply_ASC', - DailyStatIdWrappedSupplyAscNullsFirst = 'dailyStatId_wrappedSupply_ASC_NULLS_FIRST', - DailyStatIdWrappedSupplyDesc = 'dailyStatId_wrappedSupply_DESC', - DailyStatIdWrappedSupplyDescNullsLast = 'dailyStatId_wrappedSupply_DESC_NULLS_LAST', - DailyStatIdYieldEth7DayAsc = 'dailyStatId_yieldETH7Day_ASC', - DailyStatIdYieldEth7DayAscNullsFirst = 'dailyStatId_yieldETH7Day_ASC_NULLS_FIRST', - DailyStatIdYieldEth7DayDesc = 'dailyStatId_yieldETH7Day_DESC', - DailyStatIdYieldEth7DayDescNullsLast = 'dailyStatId_yieldETH7Day_DESC_NULLS_LAST', - DailyStatIdYieldEthAllTimeAsc = 'dailyStatId_yieldETHAllTime_ASC', - DailyStatIdYieldEthAllTimeAscNullsFirst = 'dailyStatId_yieldETHAllTime_ASC_NULLS_FIRST', - DailyStatIdYieldEthAllTimeDesc = 'dailyStatId_yieldETHAllTime_DESC', - DailyStatIdYieldEthAllTimeDescNullsLast = 'dailyStatId_yieldETHAllTime_DESC_NULLS_LAST', - DailyStatIdYieldEthAsc = 'dailyStatId_yieldETH_ASC', - DailyStatIdYieldEthAscNullsFirst = 'dailyStatId_yieldETH_ASC_NULLS_FIRST', - DailyStatIdYieldEthDesc = 'dailyStatId_yieldETH_DESC', - DailyStatIdYieldEthDescNullsLast = 'dailyStatId_yieldETH_DESC_NULLS_LAST', - DailyStatIdYieldUsd7DayAsc = 'dailyStatId_yieldUSD7Day_ASC', - DailyStatIdYieldUsd7DayAscNullsFirst = 'dailyStatId_yieldUSD7Day_ASC_NULLS_FIRST', - DailyStatIdYieldUsd7DayDesc = 'dailyStatId_yieldUSD7Day_DESC', - DailyStatIdYieldUsd7DayDescNullsLast = 'dailyStatId_yieldUSD7Day_DESC_NULLS_LAST', - DailyStatIdYieldUsdAllTimeAsc = 'dailyStatId_yieldUSDAllTime_ASC', - DailyStatIdYieldUsdAllTimeAscNullsFirst = 'dailyStatId_yieldUSDAllTime_ASC_NULLS_FIRST', - DailyStatIdYieldUsdAllTimeDesc = 'dailyStatId_yieldUSDAllTime_DESC', - DailyStatIdYieldUsdAllTimeDescNullsLast = 'dailyStatId_yieldUSDAllTime_DESC_NULLS_LAST', - DailyStatIdYieldUsdAsc = 'dailyStatId_yieldUSD_ASC', - DailyStatIdYieldUsdAscNullsFirst = 'dailyStatId_yieldUSD_ASC_NULLS_FIRST', - DailyStatIdYieldUsdDesc = 'dailyStatId_yieldUSD_DESC', - DailyStatIdYieldUsdDescNullsLast = 'dailyStatId_yieldUSD_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - PriceAsc = 'price_ASC', - PriceAscNullsFirst = 'price_ASC_NULLS_FIRST', - PriceDesc = 'price_DESC', - PriceDescNullsLast = 'price_DESC_NULLS_LAST', - SymbolAsc = 'symbol_ASC', - SymbolAscNullsFirst = 'symbol_ASC_NULLS_FIRST', - SymbolDesc = 'symbol_DESC', - SymbolDescNullsLast = 'symbol_DESC_NULLS_LAST', - ValueAsc = 'value_ASC', - ValueAscNullsFirst = 'value_ASC_NULLS_FIRST', - ValueDesc = 'value_DESC', - ValueDescNullsLast = 'value_DESC_NULLS_LAST' -} - -export type OethCollateralDailyStatWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - amount_eq?: InputMaybe; - amount_gt?: InputMaybe; - amount_gte?: InputMaybe; - amount_in?: InputMaybe>; - amount_isNull?: InputMaybe; - amount_lt?: InputMaybe; - amount_lte?: InputMaybe; - amount_not_eq?: InputMaybe; - amount_not_in?: InputMaybe>; - dailyStatId?: InputMaybe; - dailyStatId_isNull?: InputMaybe; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - price_eq?: InputMaybe; - price_gt?: InputMaybe; - price_gte?: InputMaybe; - price_in?: InputMaybe>; - price_isNull?: InputMaybe; - price_lt?: InputMaybe; - price_lte?: InputMaybe; - price_not_eq?: InputMaybe; - price_not_in?: InputMaybe>; - symbol_contains?: InputMaybe; - symbol_containsInsensitive?: InputMaybe; - symbol_endsWith?: InputMaybe; - symbol_eq?: InputMaybe; - symbol_gt?: InputMaybe; - symbol_gte?: InputMaybe; - symbol_in?: InputMaybe>; - symbol_isNull?: InputMaybe; - symbol_lt?: InputMaybe; - symbol_lte?: InputMaybe; - symbol_not_contains?: InputMaybe; - symbol_not_containsInsensitive?: InputMaybe; - symbol_not_endsWith?: InputMaybe; - symbol_not_eq?: InputMaybe; - symbol_not_in?: InputMaybe>; - symbol_not_startsWith?: InputMaybe; - symbol_startsWith?: InputMaybe; - value_eq?: InputMaybe; - value_gt?: InputMaybe; - value_gte?: InputMaybe; - value_in?: InputMaybe>; - value_isNull?: InputMaybe; - value_lt?: InputMaybe; - value_lte?: InputMaybe; - value_not_eq?: InputMaybe; - value_not_in?: InputMaybe>; -}; - -export type OethCollateralDailyStatsConnection = { - __typename?: 'OETHCollateralDailyStatsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OethCurveLp = { - __typename?: 'OETHCurveLP'; - blockNumber: Scalars['Int']['output']; - eth: Scalars['BigInt']['output']; - ethOwned: Scalars['BigInt']['output']; - id: Scalars['String']['output']; - oeth: Scalars['BigInt']['output']; - oethOwned: Scalars['BigInt']['output']; - timestamp: Scalars['DateTime']['output']; - totalSupply: Scalars['BigInt']['output']; - totalSupplyOwned: Scalars['BigInt']['output']; -}; - -export type OethCurveLpEdge = { - __typename?: 'OETHCurveLPEdge'; - cursor: Scalars['String']['output']; - node: OethCurveLp; -}; - -export enum OethCurveLpOrderByInput { - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - EthOwnedAsc = 'ethOwned_ASC', - EthOwnedAscNullsFirst = 'ethOwned_ASC_NULLS_FIRST', - EthOwnedDesc = 'ethOwned_DESC', - EthOwnedDescNullsLast = 'ethOwned_DESC_NULLS_LAST', - EthAsc = 'eth_ASC', - EthAscNullsFirst = 'eth_ASC_NULLS_FIRST', - EthDesc = 'eth_DESC', - EthDescNullsLast = 'eth_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - OethOwnedAsc = 'oethOwned_ASC', - OethOwnedAscNullsFirst = 'oethOwned_ASC_NULLS_FIRST', - OethOwnedDesc = 'oethOwned_DESC', - OethOwnedDescNullsLast = 'oethOwned_DESC_NULLS_LAST', - OethAsc = 'oeth_ASC', - OethAscNullsFirst = 'oeth_ASC_NULLS_FIRST', - OethDesc = 'oeth_DESC', - OethDescNullsLast = 'oeth_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TotalSupplyOwnedAsc = 'totalSupplyOwned_ASC', - TotalSupplyOwnedAscNullsFirst = 'totalSupplyOwned_ASC_NULLS_FIRST', - TotalSupplyOwnedDesc = 'totalSupplyOwned_DESC', - TotalSupplyOwnedDescNullsLast = 'totalSupplyOwned_DESC_NULLS_LAST', - TotalSupplyAsc = 'totalSupply_ASC', - TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', - TotalSupplyDesc = 'totalSupply_DESC', - TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST' -} - -export type OethCurveLpWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - ethOwned_eq?: InputMaybe; - ethOwned_gt?: InputMaybe; - ethOwned_gte?: InputMaybe; - ethOwned_in?: InputMaybe>; - ethOwned_isNull?: InputMaybe; - ethOwned_lt?: InputMaybe; - ethOwned_lte?: InputMaybe; - ethOwned_not_eq?: InputMaybe; - ethOwned_not_in?: InputMaybe>; - eth_eq?: InputMaybe; - eth_gt?: InputMaybe; - eth_gte?: InputMaybe; - eth_in?: InputMaybe>; - eth_isNull?: InputMaybe; - eth_lt?: InputMaybe; - eth_lte?: InputMaybe; - eth_not_eq?: InputMaybe; - eth_not_in?: InputMaybe>; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - oethOwned_eq?: InputMaybe; - oethOwned_gt?: InputMaybe; - oethOwned_gte?: InputMaybe; - oethOwned_in?: InputMaybe>; - oethOwned_isNull?: InputMaybe; - oethOwned_lt?: InputMaybe; - oethOwned_lte?: InputMaybe; - oethOwned_not_eq?: InputMaybe; - oethOwned_not_in?: InputMaybe>; - oeth_eq?: InputMaybe; - oeth_gt?: InputMaybe; - oeth_gte?: InputMaybe; - oeth_in?: InputMaybe>; - oeth_isNull?: InputMaybe; - oeth_lt?: InputMaybe; - oeth_lte?: InputMaybe; - oeth_not_eq?: InputMaybe; - oeth_not_in?: InputMaybe>; - timestamp_eq?: InputMaybe; - timestamp_gt?: InputMaybe; - timestamp_gte?: InputMaybe; - timestamp_in?: InputMaybe>; - timestamp_isNull?: InputMaybe; - timestamp_lt?: InputMaybe; - timestamp_lte?: InputMaybe; - timestamp_not_eq?: InputMaybe; - timestamp_not_in?: InputMaybe>; - totalSupplyOwned_eq?: InputMaybe; - totalSupplyOwned_gt?: InputMaybe; - totalSupplyOwned_gte?: InputMaybe; - totalSupplyOwned_in?: InputMaybe>; - totalSupplyOwned_isNull?: InputMaybe; - totalSupplyOwned_lt?: InputMaybe; - totalSupplyOwned_lte?: InputMaybe; - totalSupplyOwned_not_eq?: InputMaybe; - totalSupplyOwned_not_in?: InputMaybe>; - totalSupply_eq?: InputMaybe; - totalSupply_gt?: InputMaybe; - totalSupply_gte?: InputMaybe; - totalSupply_in?: InputMaybe>; - totalSupply_isNull?: InputMaybe; - totalSupply_lt?: InputMaybe; - totalSupply_lte?: InputMaybe; - totalSupply_not_eq?: InputMaybe; - totalSupply_not_in?: InputMaybe>; -}; - -export type OethCurveLPsConnection = { - __typename?: 'OETHCurveLPsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OethDailyStat = { - __typename?: 'OETHDailyStat'; - amoSupply: Scalars['BigInt']['output']; - /** Timestamp of block number stats were updated */ - apr: Scalars['Float']['output']; - apy: Scalars['Float']['output']; - apy7DayAvg: Scalars['Float']['output']; - apy14DayAvg: Scalars['Float']['output']; - apy30DayAvg: Scalars['Float']['output']; - /** Timestamp, eg 2023-10-17 */ - blockNumber: Scalars['Int']['output']; - collateral: Array; - dripperWETH: Scalars['BigInt']['output']; - feesETH: Scalars['BigInt']['output']; - feesETH7Day: Scalars['BigInt']['output']; - feesETHAllTime: Scalars['BigInt']['output']; - feesUSD: Scalars['BigInt']['output']; - feesUSD7Day: Scalars['BigInt']['output']; - feesUSDAllTime: Scalars['BigInt']['output']; - holdersOverThreshold: Scalars['Int']['output']; - id: Scalars['String']['output']; - marketCapUSD: Scalars['Float']['output']; - nonRebasingSupply: Scalars['BigInt']['output']; - pegPrice: Scalars['BigInt']['output']; - rebasingSupply: Scalars['BigInt']['output']; - strategies: Array; - /** Last block number stats were updated */ - timestamp: Scalars['DateTime']['output']; - totalSupply: Scalars['BigInt']['output']; - totalSupplyUSD: Scalars['Float']['output']; - tradingVolumeUSD: Scalars['Float']['output']; - wrappedSupply: Scalars['BigInt']['output']; - yieldETH: Scalars['BigInt']['output']; - yieldETH7Day: Scalars['BigInt']['output']; - yieldETHAllTime: Scalars['BigInt']['output']; - yieldUSD: Scalars['BigInt']['output']; - yieldUSD7Day: Scalars['BigInt']['output']; - yieldUSDAllTime: Scalars['BigInt']['output']; -}; - - -export type OethDailyStatCollateralArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type OethDailyStatStrategiesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - -export type OethDailyStatEdge = { - __typename?: 'OETHDailyStatEdge'; - cursor: Scalars['String']['output']; - node: OethDailyStat; -}; - -export enum OethDailyStatOrderByInput { - AmoSupplyAsc = 'amoSupply_ASC', - AmoSupplyAscNullsFirst = 'amoSupply_ASC_NULLS_FIRST', - AmoSupplyDesc = 'amoSupply_DESC', - AmoSupplyDescNullsLast = 'amoSupply_DESC_NULLS_LAST', - AprAsc = 'apr_ASC', - AprAscNullsFirst = 'apr_ASC_NULLS_FIRST', - AprDesc = 'apr_DESC', - AprDescNullsLast = 'apr_DESC_NULLS_LAST', - Apy7DayAvgAsc = 'apy7DayAvg_ASC', - Apy7DayAvgAscNullsFirst = 'apy7DayAvg_ASC_NULLS_FIRST', - Apy7DayAvgDesc = 'apy7DayAvg_DESC', - Apy7DayAvgDescNullsLast = 'apy7DayAvg_DESC_NULLS_LAST', - Apy14DayAvgAsc = 'apy14DayAvg_ASC', - Apy14DayAvgAscNullsFirst = 'apy14DayAvg_ASC_NULLS_FIRST', - Apy14DayAvgDesc = 'apy14DayAvg_DESC', - Apy14DayAvgDescNullsLast = 'apy14DayAvg_DESC_NULLS_LAST', - Apy30DayAvgAsc = 'apy30DayAvg_ASC', - Apy30DayAvgAscNullsFirst = 'apy30DayAvg_ASC_NULLS_FIRST', - Apy30DayAvgDesc = 'apy30DayAvg_DESC', - Apy30DayAvgDescNullsLast = 'apy30DayAvg_DESC_NULLS_LAST', - ApyAsc = 'apy_ASC', - ApyAscNullsFirst = 'apy_ASC_NULLS_FIRST', - ApyDesc = 'apy_DESC', - ApyDescNullsLast = 'apy_DESC_NULLS_LAST', - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - DripperWethAsc = 'dripperWETH_ASC', - DripperWethAscNullsFirst = 'dripperWETH_ASC_NULLS_FIRST', - DripperWethDesc = 'dripperWETH_DESC', - DripperWethDescNullsLast = 'dripperWETH_DESC_NULLS_LAST', - FeesEth7DayAsc = 'feesETH7Day_ASC', - FeesEth7DayAscNullsFirst = 'feesETH7Day_ASC_NULLS_FIRST', - FeesEth7DayDesc = 'feesETH7Day_DESC', - FeesEth7DayDescNullsLast = 'feesETH7Day_DESC_NULLS_LAST', - FeesEthAllTimeAsc = 'feesETHAllTime_ASC', - FeesEthAllTimeAscNullsFirst = 'feesETHAllTime_ASC_NULLS_FIRST', - FeesEthAllTimeDesc = 'feesETHAllTime_DESC', - FeesEthAllTimeDescNullsLast = 'feesETHAllTime_DESC_NULLS_LAST', - FeesEthAsc = 'feesETH_ASC', - FeesEthAscNullsFirst = 'feesETH_ASC_NULLS_FIRST', - FeesEthDesc = 'feesETH_DESC', - FeesEthDescNullsLast = 'feesETH_DESC_NULLS_LAST', - FeesUsd7DayAsc = 'feesUSD7Day_ASC', - FeesUsd7DayAscNullsFirst = 'feesUSD7Day_ASC_NULLS_FIRST', - FeesUsd7DayDesc = 'feesUSD7Day_DESC', - FeesUsd7DayDescNullsLast = 'feesUSD7Day_DESC_NULLS_LAST', - FeesUsdAllTimeAsc = 'feesUSDAllTime_ASC', - FeesUsdAllTimeAscNullsFirst = 'feesUSDAllTime_ASC_NULLS_FIRST', - FeesUsdAllTimeDesc = 'feesUSDAllTime_DESC', - FeesUsdAllTimeDescNullsLast = 'feesUSDAllTime_DESC_NULLS_LAST', - FeesUsdAsc = 'feesUSD_ASC', - FeesUsdAscNullsFirst = 'feesUSD_ASC_NULLS_FIRST', - FeesUsdDesc = 'feesUSD_DESC', - FeesUsdDescNullsLast = 'feesUSD_DESC_NULLS_LAST', - HoldersOverThresholdAsc = 'holdersOverThreshold_ASC', - HoldersOverThresholdAscNullsFirst = 'holdersOverThreshold_ASC_NULLS_FIRST', - HoldersOverThresholdDesc = 'holdersOverThreshold_DESC', - HoldersOverThresholdDescNullsLast = 'holdersOverThreshold_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - MarketCapUsdAsc = 'marketCapUSD_ASC', - MarketCapUsdAscNullsFirst = 'marketCapUSD_ASC_NULLS_FIRST', - MarketCapUsdDesc = 'marketCapUSD_DESC', - MarketCapUsdDescNullsLast = 'marketCapUSD_DESC_NULLS_LAST', - NonRebasingSupplyAsc = 'nonRebasingSupply_ASC', - NonRebasingSupplyAscNullsFirst = 'nonRebasingSupply_ASC_NULLS_FIRST', - NonRebasingSupplyDesc = 'nonRebasingSupply_DESC', - NonRebasingSupplyDescNullsLast = 'nonRebasingSupply_DESC_NULLS_LAST', - PegPriceAsc = 'pegPrice_ASC', - PegPriceAscNullsFirst = 'pegPrice_ASC_NULLS_FIRST', - PegPriceDesc = 'pegPrice_DESC', - PegPriceDescNullsLast = 'pegPrice_DESC_NULLS_LAST', - RebasingSupplyAsc = 'rebasingSupply_ASC', - RebasingSupplyAscNullsFirst = 'rebasingSupply_ASC_NULLS_FIRST', - RebasingSupplyDesc = 'rebasingSupply_DESC', - RebasingSupplyDescNullsLast = 'rebasingSupply_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TotalSupplyUsdAsc = 'totalSupplyUSD_ASC', - TotalSupplyUsdAscNullsFirst = 'totalSupplyUSD_ASC_NULLS_FIRST', - TotalSupplyUsdDesc = 'totalSupplyUSD_DESC', - TotalSupplyUsdDescNullsLast = 'totalSupplyUSD_DESC_NULLS_LAST', - TotalSupplyAsc = 'totalSupply_ASC', - TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', - TotalSupplyDesc = 'totalSupply_DESC', - TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST', - TradingVolumeUsdAsc = 'tradingVolumeUSD_ASC', - TradingVolumeUsdAscNullsFirst = 'tradingVolumeUSD_ASC_NULLS_FIRST', - TradingVolumeUsdDesc = 'tradingVolumeUSD_DESC', - TradingVolumeUsdDescNullsLast = 'tradingVolumeUSD_DESC_NULLS_LAST', - WrappedSupplyAsc = 'wrappedSupply_ASC', - WrappedSupplyAscNullsFirst = 'wrappedSupply_ASC_NULLS_FIRST', - WrappedSupplyDesc = 'wrappedSupply_DESC', - WrappedSupplyDescNullsLast = 'wrappedSupply_DESC_NULLS_LAST', - YieldEth7DayAsc = 'yieldETH7Day_ASC', - YieldEth7DayAscNullsFirst = 'yieldETH7Day_ASC_NULLS_FIRST', - YieldEth7DayDesc = 'yieldETH7Day_DESC', - YieldEth7DayDescNullsLast = 'yieldETH7Day_DESC_NULLS_LAST', - YieldEthAllTimeAsc = 'yieldETHAllTime_ASC', - YieldEthAllTimeAscNullsFirst = 'yieldETHAllTime_ASC_NULLS_FIRST', - YieldEthAllTimeDesc = 'yieldETHAllTime_DESC', - YieldEthAllTimeDescNullsLast = 'yieldETHAllTime_DESC_NULLS_LAST', - YieldEthAsc = 'yieldETH_ASC', - YieldEthAscNullsFirst = 'yieldETH_ASC_NULLS_FIRST', - YieldEthDesc = 'yieldETH_DESC', - YieldEthDescNullsLast = 'yieldETH_DESC_NULLS_LAST', - YieldUsd7DayAsc = 'yieldUSD7Day_ASC', - YieldUsd7DayAscNullsFirst = 'yieldUSD7Day_ASC_NULLS_FIRST', - YieldUsd7DayDesc = 'yieldUSD7Day_DESC', - YieldUsd7DayDescNullsLast = 'yieldUSD7Day_DESC_NULLS_LAST', - YieldUsdAllTimeAsc = 'yieldUSDAllTime_ASC', - YieldUsdAllTimeAscNullsFirst = 'yieldUSDAllTime_ASC_NULLS_FIRST', - YieldUsdAllTimeDesc = 'yieldUSDAllTime_DESC', - YieldUsdAllTimeDescNullsLast = 'yieldUSDAllTime_DESC_NULLS_LAST', - YieldUsdAsc = 'yieldUSD_ASC', - YieldUsdAscNullsFirst = 'yieldUSD_ASC_NULLS_FIRST', - YieldUsdDesc = 'yieldUSD_DESC', - YieldUsdDescNullsLast = 'yieldUSD_DESC_NULLS_LAST' -} - -export type OethDailyStatWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - amoSupply_eq?: InputMaybe; - amoSupply_gt?: InputMaybe; - amoSupply_gte?: InputMaybe; - amoSupply_in?: InputMaybe>; - amoSupply_isNull?: InputMaybe; - amoSupply_lt?: InputMaybe; - amoSupply_lte?: InputMaybe; - amoSupply_not_eq?: InputMaybe; - amoSupply_not_in?: InputMaybe>; - apr_eq?: InputMaybe; - apr_gt?: InputMaybe; - apr_gte?: InputMaybe; - apr_in?: InputMaybe>; - apr_isNull?: InputMaybe; - apr_lt?: InputMaybe; - apr_lte?: InputMaybe; - apr_not_eq?: InputMaybe; - apr_not_in?: InputMaybe>; - apy7DayAvg_eq?: InputMaybe; - apy7DayAvg_gt?: InputMaybe; - apy7DayAvg_gte?: InputMaybe; - apy7DayAvg_in?: InputMaybe>; - apy7DayAvg_isNull?: InputMaybe; - apy7DayAvg_lt?: InputMaybe; - apy7DayAvg_lte?: InputMaybe; - apy7DayAvg_not_eq?: InputMaybe; - apy7DayAvg_not_in?: InputMaybe>; - apy14DayAvg_eq?: InputMaybe; - apy14DayAvg_gt?: InputMaybe; - apy14DayAvg_gte?: InputMaybe; - apy14DayAvg_in?: InputMaybe>; - apy14DayAvg_isNull?: InputMaybe; - apy14DayAvg_lt?: InputMaybe; - apy14DayAvg_lte?: InputMaybe; - apy14DayAvg_not_eq?: InputMaybe; - apy14DayAvg_not_in?: InputMaybe>; - apy30DayAvg_eq?: InputMaybe; - apy30DayAvg_gt?: InputMaybe; - apy30DayAvg_gte?: InputMaybe; - apy30DayAvg_in?: InputMaybe>; - apy30DayAvg_isNull?: InputMaybe; - apy30DayAvg_lt?: InputMaybe; - apy30DayAvg_lte?: InputMaybe; - apy30DayAvg_not_eq?: InputMaybe; - apy30DayAvg_not_in?: InputMaybe>; - apy_eq?: InputMaybe; - apy_gt?: InputMaybe; - apy_gte?: InputMaybe; - apy_in?: InputMaybe>; - apy_isNull?: InputMaybe; - apy_lt?: InputMaybe; - apy_lte?: InputMaybe; - apy_not_eq?: InputMaybe; - apy_not_in?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - collateral_every?: InputMaybe; - collateral_none?: InputMaybe; - collateral_some?: InputMaybe; - dripperWETH_eq?: InputMaybe; - dripperWETH_gt?: InputMaybe; - dripperWETH_gte?: InputMaybe; - dripperWETH_in?: InputMaybe>; - dripperWETH_isNull?: InputMaybe; - dripperWETH_lt?: InputMaybe; - dripperWETH_lte?: InputMaybe; - dripperWETH_not_eq?: InputMaybe; - dripperWETH_not_in?: InputMaybe>; - feesETH7Day_eq?: InputMaybe; - feesETH7Day_gt?: InputMaybe; - feesETH7Day_gte?: InputMaybe; - feesETH7Day_in?: InputMaybe>; - feesETH7Day_isNull?: InputMaybe; - feesETH7Day_lt?: InputMaybe; - feesETH7Day_lte?: InputMaybe; - feesETH7Day_not_eq?: InputMaybe; - feesETH7Day_not_in?: InputMaybe>; - feesETHAllTime_eq?: InputMaybe; - feesETHAllTime_gt?: InputMaybe; - feesETHAllTime_gte?: InputMaybe; - feesETHAllTime_in?: InputMaybe>; - feesETHAllTime_isNull?: InputMaybe; - feesETHAllTime_lt?: InputMaybe; - feesETHAllTime_lte?: InputMaybe; - feesETHAllTime_not_eq?: InputMaybe; - feesETHAllTime_not_in?: InputMaybe>; - feesETH_eq?: InputMaybe; - feesETH_gt?: InputMaybe; - feesETH_gte?: InputMaybe; - feesETH_in?: InputMaybe>; - feesETH_isNull?: InputMaybe; - feesETH_lt?: InputMaybe; - feesETH_lte?: InputMaybe; - feesETH_not_eq?: InputMaybe; - feesETH_not_in?: InputMaybe>; - feesUSD7Day_eq?: InputMaybe; - feesUSD7Day_gt?: InputMaybe; - feesUSD7Day_gte?: InputMaybe; - feesUSD7Day_in?: InputMaybe>; - feesUSD7Day_isNull?: InputMaybe; - feesUSD7Day_lt?: InputMaybe; - feesUSD7Day_lte?: InputMaybe; - feesUSD7Day_not_eq?: InputMaybe; - feesUSD7Day_not_in?: InputMaybe>; - feesUSDAllTime_eq?: InputMaybe; - feesUSDAllTime_gt?: InputMaybe; - feesUSDAllTime_gte?: InputMaybe; - feesUSDAllTime_in?: InputMaybe>; - feesUSDAllTime_isNull?: InputMaybe; - feesUSDAllTime_lt?: InputMaybe; - feesUSDAllTime_lte?: InputMaybe; - feesUSDAllTime_not_eq?: InputMaybe; - feesUSDAllTime_not_in?: InputMaybe>; - feesUSD_eq?: InputMaybe; - feesUSD_gt?: InputMaybe; - feesUSD_gte?: InputMaybe; - feesUSD_in?: InputMaybe>; - feesUSD_isNull?: InputMaybe; - feesUSD_lt?: InputMaybe; - feesUSD_lte?: InputMaybe; - feesUSD_not_eq?: InputMaybe; - feesUSD_not_in?: InputMaybe>; - holdersOverThreshold_eq?: InputMaybe; - holdersOverThreshold_gt?: InputMaybe; - holdersOverThreshold_gte?: InputMaybe; - holdersOverThreshold_in?: InputMaybe>; - holdersOverThreshold_isNull?: InputMaybe; - holdersOverThreshold_lt?: InputMaybe; - holdersOverThreshold_lte?: InputMaybe; - holdersOverThreshold_not_eq?: InputMaybe; - holdersOverThreshold_not_in?: InputMaybe>; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - marketCapUSD_eq?: InputMaybe; - marketCapUSD_gt?: InputMaybe; - marketCapUSD_gte?: InputMaybe; - marketCapUSD_in?: InputMaybe>; - marketCapUSD_isNull?: InputMaybe; - marketCapUSD_lt?: InputMaybe; - marketCapUSD_lte?: InputMaybe; - marketCapUSD_not_eq?: InputMaybe; - marketCapUSD_not_in?: InputMaybe>; - nonRebasingSupply_eq?: InputMaybe; - nonRebasingSupply_gt?: InputMaybe; - nonRebasingSupply_gte?: InputMaybe; - nonRebasingSupply_in?: InputMaybe>; - nonRebasingSupply_isNull?: InputMaybe; - nonRebasingSupply_lt?: InputMaybe; - nonRebasingSupply_lte?: InputMaybe; - nonRebasingSupply_not_eq?: InputMaybe; - nonRebasingSupply_not_in?: InputMaybe>; - pegPrice_eq?: InputMaybe; - pegPrice_gt?: InputMaybe; - pegPrice_gte?: InputMaybe; - pegPrice_in?: InputMaybe>; - pegPrice_isNull?: InputMaybe; - pegPrice_lt?: InputMaybe; - pegPrice_lte?: InputMaybe; - pegPrice_not_eq?: InputMaybe; - pegPrice_not_in?: InputMaybe>; - rebasingSupply_eq?: InputMaybe; - rebasingSupply_gt?: InputMaybe; - rebasingSupply_gte?: InputMaybe; - rebasingSupply_in?: InputMaybe>; - rebasingSupply_isNull?: InputMaybe; - rebasingSupply_lt?: InputMaybe; - rebasingSupply_lte?: InputMaybe; - rebasingSupply_not_eq?: InputMaybe; - rebasingSupply_not_in?: InputMaybe>; - strategies_every?: InputMaybe; - strategies_none?: InputMaybe; - strategies_some?: InputMaybe; + oethOwned_eq?: InputMaybe; + oethOwned_gt?: InputMaybe; + oethOwned_gte?: InputMaybe; + oethOwned_in?: InputMaybe>; + oethOwned_isNull?: InputMaybe; + oethOwned_lt?: InputMaybe; + oethOwned_lte?: InputMaybe; + oethOwned_not_eq?: InputMaybe; + oethOwned_not_in?: InputMaybe>; + oeth_eq?: InputMaybe; + oeth_gt?: InputMaybe; + oeth_gte?: InputMaybe; + oeth_in?: InputMaybe>; + oeth_isNull?: InputMaybe; + oeth_lt?: InputMaybe; + oeth_lte?: InputMaybe; + oeth_not_eq?: InputMaybe; + oeth_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -4593,15 +3465,15 @@ export type OethDailyStatWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - totalSupplyUSD_eq?: InputMaybe; - totalSupplyUSD_gt?: InputMaybe; - totalSupplyUSD_gte?: InputMaybe; - totalSupplyUSD_in?: InputMaybe>; - totalSupplyUSD_isNull?: InputMaybe; - totalSupplyUSD_lt?: InputMaybe; - totalSupplyUSD_lte?: InputMaybe; - totalSupplyUSD_not_eq?: InputMaybe; - totalSupplyUSD_not_in?: InputMaybe>; + totalSupplyOwned_eq?: InputMaybe; + totalSupplyOwned_gt?: InputMaybe; + totalSupplyOwned_gte?: InputMaybe; + totalSupplyOwned_in?: InputMaybe>; + totalSupplyOwned_isNull?: InputMaybe; + totalSupplyOwned_lt?: InputMaybe; + totalSupplyOwned_lte?: InputMaybe; + totalSupplyOwned_not_eq?: InputMaybe; + totalSupplyOwned_not_in?: InputMaybe>; totalSupply_eq?: InputMaybe; totalSupply_gt?: InputMaybe; totalSupply_gte?: InputMaybe; @@ -4611,264 +3483,261 @@ export type OethDailyStatWhereInput = { totalSupply_lte?: InputMaybe; totalSupply_not_eq?: InputMaybe; totalSupply_not_in?: InputMaybe>; - tradingVolumeUSD_eq?: InputMaybe; - tradingVolumeUSD_gt?: InputMaybe; - tradingVolumeUSD_gte?: InputMaybe; - tradingVolumeUSD_in?: InputMaybe>; - tradingVolumeUSD_isNull?: InputMaybe; - tradingVolumeUSD_lt?: InputMaybe; - tradingVolumeUSD_lte?: InputMaybe; - tradingVolumeUSD_not_eq?: InputMaybe; - tradingVolumeUSD_not_in?: InputMaybe>; - wrappedSupply_eq?: InputMaybe; - wrappedSupply_gt?: InputMaybe; - wrappedSupply_gte?: InputMaybe; - wrappedSupply_in?: InputMaybe>; - wrappedSupply_isNull?: InputMaybe; - wrappedSupply_lt?: InputMaybe; - wrappedSupply_lte?: InputMaybe; - wrappedSupply_not_eq?: InputMaybe; - wrappedSupply_not_in?: InputMaybe>; - yieldETH7Day_eq?: InputMaybe; - yieldETH7Day_gt?: InputMaybe; - yieldETH7Day_gte?: InputMaybe; - yieldETH7Day_in?: InputMaybe>; - yieldETH7Day_isNull?: InputMaybe; - yieldETH7Day_lt?: InputMaybe; - yieldETH7Day_lte?: InputMaybe; - yieldETH7Day_not_eq?: InputMaybe; - yieldETH7Day_not_in?: InputMaybe>; - yieldETHAllTime_eq?: InputMaybe; - yieldETHAllTime_gt?: InputMaybe; - yieldETHAllTime_gte?: InputMaybe; - yieldETHAllTime_in?: InputMaybe>; - yieldETHAllTime_isNull?: InputMaybe; - yieldETHAllTime_lt?: InputMaybe; - yieldETHAllTime_lte?: InputMaybe; - yieldETHAllTime_not_eq?: InputMaybe; - yieldETHAllTime_not_in?: InputMaybe>; - yieldETH_eq?: InputMaybe; - yieldETH_gt?: InputMaybe; - yieldETH_gte?: InputMaybe; - yieldETH_in?: InputMaybe>; - yieldETH_isNull?: InputMaybe; - yieldETH_lt?: InputMaybe; - yieldETH_lte?: InputMaybe; - yieldETH_not_eq?: InputMaybe; - yieldETH_not_in?: InputMaybe>; - yieldUSD7Day_eq?: InputMaybe; - yieldUSD7Day_gt?: InputMaybe; - yieldUSD7Day_gte?: InputMaybe; - yieldUSD7Day_in?: InputMaybe>; - yieldUSD7Day_isNull?: InputMaybe; - yieldUSD7Day_lt?: InputMaybe; - yieldUSD7Day_lte?: InputMaybe; - yieldUSD7Day_not_eq?: InputMaybe; - yieldUSD7Day_not_in?: InputMaybe>; - yieldUSDAllTime_eq?: InputMaybe; - yieldUSDAllTime_gt?: InputMaybe; - yieldUSDAllTime_gte?: InputMaybe; - yieldUSDAllTime_in?: InputMaybe>; - yieldUSDAllTime_isNull?: InputMaybe; - yieldUSDAllTime_lt?: InputMaybe; - yieldUSDAllTime_lte?: InputMaybe; - yieldUSDAllTime_not_eq?: InputMaybe; - yieldUSDAllTime_not_in?: InputMaybe>; - yieldUSD_eq?: InputMaybe; - yieldUSD_gt?: InputMaybe; - yieldUSD_gte?: InputMaybe; - yieldUSD_in?: InputMaybe>; - yieldUSD_isNull?: InputMaybe; - yieldUSD_lt?: InputMaybe; - yieldUSD_lte?: InputMaybe; - yieldUSD_not_eq?: InputMaybe; - yieldUSD_not_in?: InputMaybe>; }; -export type OethDailyStatsConnection = { - __typename?: 'OETHDailyStatsConnection'; - edges: Array; +export type OethCurveLPsConnection = { + __typename?: 'OETHCurveLPsConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export type OethDripper = { - __typename?: 'OETHDripper'; - blockNumber: Scalars['Int']['output']; - dripDuration: Scalars['BigInt']['output']; - dripRatePerBlock: Scalars['BigInt']['output']; - id: Scalars['String']['output']; - lastCollectTimestamp: Scalars['Int']['output']; - timestamp: Scalars['DateTime']['output']; - weth: Scalars['BigInt']['output']; -}; - -export type OethDripperEdge = { - __typename?: 'OETHDripperEdge'; - cursor: Scalars['String']['output']; - node: OethDripper; -}; - -export enum OethDripperOrderByInput { - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - DripDurationAsc = 'dripDuration_ASC', - DripDurationAscNullsFirst = 'dripDuration_ASC_NULLS_FIRST', - DripDurationDesc = 'dripDuration_DESC', - DripDurationDescNullsLast = 'dripDuration_DESC_NULLS_LAST', - DripRatePerBlockAsc = 'dripRatePerBlock_ASC', - DripRatePerBlockAscNullsFirst = 'dripRatePerBlock_ASC_NULLS_FIRST', - DripRatePerBlockDesc = 'dripRatePerBlock_DESC', - DripRatePerBlockDescNullsLast = 'dripRatePerBlock_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - LastCollectTimestampAsc = 'lastCollectTimestamp_ASC', - LastCollectTimestampAscNullsFirst = 'lastCollectTimestamp_ASC_NULLS_FIRST', - LastCollectTimestampDesc = 'lastCollectTimestamp_DESC', - LastCollectTimestampDescNullsLast = 'lastCollectTimestamp_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - WethAsc = 'weth_ASC', - WethAscNullsFirst = 'weth_ASC_NULLS_FIRST', - WethDesc = 'weth_DESC', - WethDescNullsLast = 'weth_DESC_NULLS_LAST' -} - -export type OethDripperWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - dripDuration_eq?: InputMaybe; - dripDuration_gt?: InputMaybe; - dripDuration_gte?: InputMaybe; - dripDuration_in?: InputMaybe>; - dripDuration_isNull?: InputMaybe; - dripDuration_lt?: InputMaybe; - dripDuration_lte?: InputMaybe; - dripDuration_not_eq?: InputMaybe; - dripDuration_not_in?: InputMaybe>; - dripRatePerBlock_eq?: InputMaybe; - dripRatePerBlock_gt?: InputMaybe; - dripRatePerBlock_gte?: InputMaybe; - dripRatePerBlock_in?: InputMaybe>; - dripRatePerBlock_isNull?: InputMaybe; - dripRatePerBlock_lt?: InputMaybe; - dripRatePerBlock_lte?: InputMaybe; - dripRatePerBlock_not_eq?: InputMaybe; - dripRatePerBlock_not_in?: InputMaybe>; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - lastCollectTimestamp_eq?: InputMaybe; - lastCollectTimestamp_gt?: InputMaybe; - lastCollectTimestamp_gte?: InputMaybe; - lastCollectTimestamp_in?: InputMaybe>; - lastCollectTimestamp_isNull?: InputMaybe; - lastCollectTimestamp_lt?: InputMaybe; - lastCollectTimestamp_lte?: InputMaybe; - lastCollectTimestamp_not_eq?: InputMaybe; - lastCollectTimestamp_not_in?: InputMaybe>; - timestamp_eq?: InputMaybe; - timestamp_gt?: InputMaybe; - timestamp_gte?: InputMaybe; - timestamp_in?: InputMaybe>; - timestamp_isNull?: InputMaybe; - timestamp_lt?: InputMaybe; - timestamp_lte?: InputMaybe; - timestamp_not_eq?: InputMaybe; - timestamp_not_in?: InputMaybe>; - weth_eq?: InputMaybe; - weth_gt?: InputMaybe; - weth_gte?: InputMaybe; - weth_in?: InputMaybe>; - weth_isNull?: InputMaybe; - weth_lt?: InputMaybe; - weth_lte?: InputMaybe; - weth_not_eq?: InputMaybe; - weth_not_in?: InputMaybe>; +export type OethDailyStat = { + __typename?: 'OETHDailyStat'; + amoSupply: Scalars['BigInt']['output']; + /** Timestamp of block number stats were updated */ + apr: Scalars['Float']['output']; + apy: Scalars['Float']['output']; + apy7DayAvg: Scalars['Float']['output']; + apy14DayAvg: Scalars['Float']['output']; + apy30DayAvg: Scalars['Float']['output']; + /** Timestamp, eg 2023-10-17 */ + blockNumber: Scalars['Int']['output']; + collateral: Array; + dripperWETH: Scalars['BigInt']['output']; + feesETH: Scalars['BigInt']['output']; + feesETH7Day: Scalars['BigInt']['output']; + feesETHAllTime: Scalars['BigInt']['output']; + feesUSD: Scalars['BigInt']['output']; + feesUSD7Day: Scalars['BigInt']['output']; + feesUSDAllTime: Scalars['BigInt']['output']; + holdersOverThreshold: Scalars['Int']['output']; + id: Scalars['String']['output']; + marketCapUSD: Scalars['Float']['output']; + nonRebasingSupply: Scalars['BigInt']['output']; + pegPrice: Scalars['BigInt']['output']; + rebasingSupply: Scalars['BigInt']['output']; + strategies: Array; + /** Last block number stats were updated */ + timestamp: Scalars['DateTime']['output']; + totalSupply: Scalars['BigInt']['output']; + totalSupplyUSD: Scalars['Float']['output']; + tradingVolumeUSD: Scalars['Float']['output']; + wrappedSupply: Scalars['BigInt']['output']; + yieldETH: Scalars['BigInt']['output']; + yieldETH7Day: Scalars['BigInt']['output']; + yieldETHAllTime: Scalars['BigInt']['output']; + yieldUSD: Scalars['BigInt']['output']; + yieldUSD7Day: Scalars['BigInt']['output']; + yieldUSDAllTime: Scalars['BigInt']['output']; }; -export type OethDrippersConnection = { - __typename?: 'OETHDrippersConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; -export type OethEdge = { - __typename?: 'OETHEdge'; - cursor: Scalars['String']['output']; - node: Oeth; +export type OethDailyStatCollateralArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; }; -export type OethFraxStaking = { - __typename?: 'OETHFraxStaking'; - blockNumber: Scalars['Int']['output']; - id: Scalars['String']['output']; - /** - * - sfrxETH is what's actually stored here, slightly confusing and may want to change. - * - used by balance sheet - */ - sfrxETH: Scalars['BigInt']['output']; - timestamp: Scalars['DateTime']['output']; + +export type OethDailyStatStrategiesArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; }; -export type OethFraxStakingEdge = { - __typename?: 'OETHFraxStakingEdge'; +export type OethDailyStatEdge = { + __typename?: 'OETHDailyStatEdge'; cursor: Scalars['String']['output']; - node: OethFraxStaking; + node: OethDailyStat; }; -export enum OethFraxStakingOrderByInput { +export enum OethDailyStatOrderByInput { + AmoSupplyAsc = 'amoSupply_ASC', + AmoSupplyAscNullsFirst = 'amoSupply_ASC_NULLS_FIRST', + AmoSupplyDesc = 'amoSupply_DESC', + AmoSupplyDescNullsLast = 'amoSupply_DESC_NULLS_LAST', + AprAsc = 'apr_ASC', + AprAscNullsFirst = 'apr_ASC_NULLS_FIRST', + AprDesc = 'apr_DESC', + AprDescNullsLast = 'apr_DESC_NULLS_LAST', + Apy7DayAvgAsc = 'apy7DayAvg_ASC', + Apy7DayAvgAscNullsFirst = 'apy7DayAvg_ASC_NULLS_FIRST', + Apy7DayAvgDesc = 'apy7DayAvg_DESC', + Apy7DayAvgDescNullsLast = 'apy7DayAvg_DESC_NULLS_LAST', + Apy14DayAvgAsc = 'apy14DayAvg_ASC', + Apy14DayAvgAscNullsFirst = 'apy14DayAvg_ASC_NULLS_FIRST', + Apy14DayAvgDesc = 'apy14DayAvg_DESC', + Apy14DayAvgDescNullsLast = 'apy14DayAvg_DESC_NULLS_LAST', + Apy30DayAvgAsc = 'apy30DayAvg_ASC', + Apy30DayAvgAscNullsFirst = 'apy30DayAvg_ASC_NULLS_FIRST', + Apy30DayAvgDesc = 'apy30DayAvg_DESC', + Apy30DayAvgDescNullsLast = 'apy30DayAvg_DESC_NULLS_LAST', + ApyAsc = 'apy_ASC', + ApyAscNullsFirst = 'apy_ASC_NULLS_FIRST', + ApyDesc = 'apy_DESC', + ApyDescNullsLast = 'apy_DESC_NULLS_LAST', BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + DripperWethAsc = 'dripperWETH_ASC', + DripperWethAscNullsFirst = 'dripperWETH_ASC_NULLS_FIRST', + DripperWethDesc = 'dripperWETH_DESC', + DripperWethDescNullsLast = 'dripperWETH_DESC_NULLS_LAST', + FeesEth7DayAsc = 'feesETH7Day_ASC', + FeesEth7DayAscNullsFirst = 'feesETH7Day_ASC_NULLS_FIRST', + FeesEth7DayDesc = 'feesETH7Day_DESC', + FeesEth7DayDescNullsLast = 'feesETH7Day_DESC_NULLS_LAST', + FeesEthAllTimeAsc = 'feesETHAllTime_ASC', + FeesEthAllTimeAscNullsFirst = 'feesETHAllTime_ASC_NULLS_FIRST', + FeesEthAllTimeDesc = 'feesETHAllTime_DESC', + FeesEthAllTimeDescNullsLast = 'feesETHAllTime_DESC_NULLS_LAST', + FeesEthAsc = 'feesETH_ASC', + FeesEthAscNullsFirst = 'feesETH_ASC_NULLS_FIRST', + FeesEthDesc = 'feesETH_DESC', + FeesEthDescNullsLast = 'feesETH_DESC_NULLS_LAST', + FeesUsd7DayAsc = 'feesUSD7Day_ASC', + FeesUsd7DayAscNullsFirst = 'feesUSD7Day_ASC_NULLS_FIRST', + FeesUsd7DayDesc = 'feesUSD7Day_DESC', + FeesUsd7DayDescNullsLast = 'feesUSD7Day_DESC_NULLS_LAST', + FeesUsdAllTimeAsc = 'feesUSDAllTime_ASC', + FeesUsdAllTimeAscNullsFirst = 'feesUSDAllTime_ASC_NULLS_FIRST', + FeesUsdAllTimeDesc = 'feesUSDAllTime_DESC', + FeesUsdAllTimeDescNullsLast = 'feesUSDAllTime_DESC_NULLS_LAST', + FeesUsdAsc = 'feesUSD_ASC', + FeesUsdAscNullsFirst = 'feesUSD_ASC_NULLS_FIRST', + FeesUsdDesc = 'feesUSD_DESC', + FeesUsdDescNullsLast = 'feesUSD_DESC_NULLS_LAST', + HoldersOverThresholdAsc = 'holdersOverThreshold_ASC', + HoldersOverThresholdAscNullsFirst = 'holdersOverThreshold_ASC_NULLS_FIRST', + HoldersOverThresholdDesc = 'holdersOverThreshold_DESC', + HoldersOverThresholdDescNullsLast = 'holdersOverThreshold_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - SfrxEthAsc = 'sfrxETH_ASC', - SfrxEthAscNullsFirst = 'sfrxETH_ASC_NULLS_FIRST', - SfrxEthDesc = 'sfrxETH_DESC', - SfrxEthDescNullsLast = 'sfrxETH_DESC_NULLS_LAST', + MarketCapUsdAsc = 'marketCapUSD_ASC', + MarketCapUsdAscNullsFirst = 'marketCapUSD_ASC_NULLS_FIRST', + MarketCapUsdDesc = 'marketCapUSD_DESC', + MarketCapUsdDescNullsLast = 'marketCapUSD_DESC_NULLS_LAST', + NonRebasingSupplyAsc = 'nonRebasingSupply_ASC', + NonRebasingSupplyAscNullsFirst = 'nonRebasingSupply_ASC_NULLS_FIRST', + NonRebasingSupplyDesc = 'nonRebasingSupply_DESC', + NonRebasingSupplyDescNullsLast = 'nonRebasingSupply_DESC_NULLS_LAST', + PegPriceAsc = 'pegPrice_ASC', + PegPriceAscNullsFirst = 'pegPrice_ASC_NULLS_FIRST', + PegPriceDesc = 'pegPrice_DESC', + PegPriceDescNullsLast = 'pegPrice_DESC_NULLS_LAST', + RebasingSupplyAsc = 'rebasingSupply_ASC', + RebasingSupplyAscNullsFirst = 'rebasingSupply_ASC_NULLS_FIRST', + RebasingSupplyDesc = 'rebasingSupply_DESC', + RebasingSupplyDescNullsLast = 'rebasingSupply_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST' + TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', + TotalSupplyUsdAsc = 'totalSupplyUSD_ASC', + TotalSupplyUsdAscNullsFirst = 'totalSupplyUSD_ASC_NULLS_FIRST', + TotalSupplyUsdDesc = 'totalSupplyUSD_DESC', + TotalSupplyUsdDescNullsLast = 'totalSupplyUSD_DESC_NULLS_LAST', + TotalSupplyAsc = 'totalSupply_ASC', + TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', + TotalSupplyDesc = 'totalSupply_DESC', + TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST', + TradingVolumeUsdAsc = 'tradingVolumeUSD_ASC', + TradingVolumeUsdAscNullsFirst = 'tradingVolumeUSD_ASC_NULLS_FIRST', + TradingVolumeUsdDesc = 'tradingVolumeUSD_DESC', + TradingVolumeUsdDescNullsLast = 'tradingVolumeUSD_DESC_NULLS_LAST', + WrappedSupplyAsc = 'wrappedSupply_ASC', + WrappedSupplyAscNullsFirst = 'wrappedSupply_ASC_NULLS_FIRST', + WrappedSupplyDesc = 'wrappedSupply_DESC', + WrappedSupplyDescNullsLast = 'wrappedSupply_DESC_NULLS_LAST', + YieldEth7DayAsc = 'yieldETH7Day_ASC', + YieldEth7DayAscNullsFirst = 'yieldETH7Day_ASC_NULLS_FIRST', + YieldEth7DayDesc = 'yieldETH7Day_DESC', + YieldEth7DayDescNullsLast = 'yieldETH7Day_DESC_NULLS_LAST', + YieldEthAllTimeAsc = 'yieldETHAllTime_ASC', + YieldEthAllTimeAscNullsFirst = 'yieldETHAllTime_ASC_NULLS_FIRST', + YieldEthAllTimeDesc = 'yieldETHAllTime_DESC', + YieldEthAllTimeDescNullsLast = 'yieldETHAllTime_DESC_NULLS_LAST', + YieldEthAsc = 'yieldETH_ASC', + YieldEthAscNullsFirst = 'yieldETH_ASC_NULLS_FIRST', + YieldEthDesc = 'yieldETH_DESC', + YieldEthDescNullsLast = 'yieldETH_DESC_NULLS_LAST', + YieldUsd7DayAsc = 'yieldUSD7Day_ASC', + YieldUsd7DayAscNullsFirst = 'yieldUSD7Day_ASC_NULLS_FIRST', + YieldUsd7DayDesc = 'yieldUSD7Day_DESC', + YieldUsd7DayDescNullsLast = 'yieldUSD7Day_DESC_NULLS_LAST', + YieldUsdAllTimeAsc = 'yieldUSDAllTime_ASC', + YieldUsdAllTimeAscNullsFirst = 'yieldUSDAllTime_ASC_NULLS_FIRST', + YieldUsdAllTimeDesc = 'yieldUSDAllTime_DESC', + YieldUsdAllTimeDescNullsLast = 'yieldUSDAllTime_DESC_NULLS_LAST', + YieldUsdAsc = 'yieldUSD_ASC', + YieldUsdAscNullsFirst = 'yieldUSD_ASC_NULLS_FIRST', + YieldUsdDesc = 'yieldUSD_DESC', + YieldUsdDescNullsLast = 'yieldUSD_DESC_NULLS_LAST' } -export type OethFraxStakingWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OethDailyStatWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + amoSupply_eq?: InputMaybe; + amoSupply_gt?: InputMaybe; + amoSupply_gte?: InputMaybe; + amoSupply_in?: InputMaybe>; + amoSupply_isNull?: InputMaybe; + amoSupply_lt?: InputMaybe; + amoSupply_lte?: InputMaybe; + amoSupply_not_eq?: InputMaybe; + amoSupply_not_in?: InputMaybe>; + apr_eq?: InputMaybe; + apr_gt?: InputMaybe; + apr_gte?: InputMaybe; + apr_in?: InputMaybe>; + apr_isNull?: InputMaybe; + apr_lt?: InputMaybe; + apr_lte?: InputMaybe; + apr_not_eq?: InputMaybe; + apr_not_in?: InputMaybe>; + apy7DayAvg_eq?: InputMaybe; + apy7DayAvg_gt?: InputMaybe; + apy7DayAvg_gte?: InputMaybe; + apy7DayAvg_in?: InputMaybe>; + apy7DayAvg_isNull?: InputMaybe; + apy7DayAvg_lt?: InputMaybe; + apy7DayAvg_lte?: InputMaybe; + apy7DayAvg_not_eq?: InputMaybe; + apy7DayAvg_not_in?: InputMaybe>; + apy14DayAvg_eq?: InputMaybe; + apy14DayAvg_gt?: InputMaybe; + apy14DayAvg_gte?: InputMaybe; + apy14DayAvg_in?: InputMaybe>; + apy14DayAvg_isNull?: InputMaybe; + apy14DayAvg_lt?: InputMaybe; + apy14DayAvg_lte?: InputMaybe; + apy14DayAvg_not_eq?: InputMaybe; + apy14DayAvg_not_in?: InputMaybe>; + apy30DayAvg_eq?: InputMaybe; + apy30DayAvg_gt?: InputMaybe; + apy30DayAvg_gte?: InputMaybe; + apy30DayAvg_in?: InputMaybe>; + apy30DayAvg_isNull?: InputMaybe; + apy30DayAvg_lt?: InputMaybe; + apy30DayAvg_lte?: InputMaybe; + apy30DayAvg_not_eq?: InputMaybe; + apy30DayAvg_not_in?: InputMaybe>; + apy_eq?: InputMaybe; + apy_gt?: InputMaybe; + apy_gte?: InputMaybe; + apy_in?: InputMaybe>; + apy_isNull?: InputMaybe; + apy_lt?: InputMaybe; + apy_lte?: InputMaybe; + apy_not_eq?: InputMaybe; + apy_not_in?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -4878,6 +3747,81 @@ export type OethFraxStakingWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; + collateral_every?: InputMaybe; + collateral_none?: InputMaybe; + collateral_some?: InputMaybe; + dripperWETH_eq?: InputMaybe; + dripperWETH_gt?: InputMaybe; + dripperWETH_gte?: InputMaybe; + dripperWETH_in?: InputMaybe>; + dripperWETH_isNull?: InputMaybe; + dripperWETH_lt?: InputMaybe; + dripperWETH_lte?: InputMaybe; + dripperWETH_not_eq?: InputMaybe; + dripperWETH_not_in?: InputMaybe>; + feesETH7Day_eq?: InputMaybe; + feesETH7Day_gt?: InputMaybe; + feesETH7Day_gte?: InputMaybe; + feesETH7Day_in?: InputMaybe>; + feesETH7Day_isNull?: InputMaybe; + feesETH7Day_lt?: InputMaybe; + feesETH7Day_lte?: InputMaybe; + feesETH7Day_not_eq?: InputMaybe; + feesETH7Day_not_in?: InputMaybe>; + feesETHAllTime_eq?: InputMaybe; + feesETHAllTime_gt?: InputMaybe; + feesETHAllTime_gte?: InputMaybe; + feesETHAllTime_in?: InputMaybe>; + feesETHAllTime_isNull?: InputMaybe; + feesETHAllTime_lt?: InputMaybe; + feesETHAllTime_lte?: InputMaybe; + feesETHAllTime_not_eq?: InputMaybe; + feesETHAllTime_not_in?: InputMaybe>; + feesETH_eq?: InputMaybe; + feesETH_gt?: InputMaybe; + feesETH_gte?: InputMaybe; + feesETH_in?: InputMaybe>; + feesETH_isNull?: InputMaybe; + feesETH_lt?: InputMaybe; + feesETH_lte?: InputMaybe; + feesETH_not_eq?: InputMaybe; + feesETH_not_in?: InputMaybe>; + feesUSD7Day_eq?: InputMaybe; + feesUSD7Day_gt?: InputMaybe; + feesUSD7Day_gte?: InputMaybe; + feesUSD7Day_in?: InputMaybe>; + feesUSD7Day_isNull?: InputMaybe; + feesUSD7Day_lt?: InputMaybe; + feesUSD7Day_lte?: InputMaybe; + feesUSD7Day_not_eq?: InputMaybe; + feesUSD7Day_not_in?: InputMaybe>; + feesUSDAllTime_eq?: InputMaybe; + feesUSDAllTime_gt?: InputMaybe; + feesUSDAllTime_gte?: InputMaybe; + feesUSDAllTime_in?: InputMaybe>; + feesUSDAllTime_isNull?: InputMaybe; + feesUSDAllTime_lt?: InputMaybe; + feesUSDAllTime_lte?: InputMaybe; + feesUSDAllTime_not_eq?: InputMaybe; + feesUSDAllTime_not_in?: InputMaybe>; + feesUSD_eq?: InputMaybe; + feesUSD_gt?: InputMaybe; + feesUSD_gte?: InputMaybe; + feesUSD_in?: InputMaybe>; + feesUSD_isNull?: InputMaybe; + feesUSD_lt?: InputMaybe; + feesUSD_lte?: InputMaybe; + feesUSD_not_eq?: InputMaybe; + feesUSD_not_in?: InputMaybe>; + holdersOverThreshold_eq?: InputMaybe; + holdersOverThreshold_gt?: InputMaybe; + holdersOverThreshold_gte?: InputMaybe; + holdersOverThreshold_in?: InputMaybe>; + holdersOverThreshold_isNull?: InputMaybe; + holdersOverThreshold_lt?: InputMaybe; + holdersOverThreshold_lte?: InputMaybe; + holdersOverThreshold_not_eq?: InputMaybe; + holdersOverThreshold_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -4895,15 +3839,45 @@ export type OethFraxStakingWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - sfrxETH_eq?: InputMaybe; - sfrxETH_gt?: InputMaybe; - sfrxETH_gte?: InputMaybe; - sfrxETH_in?: InputMaybe>; - sfrxETH_isNull?: InputMaybe; - sfrxETH_lt?: InputMaybe; - sfrxETH_lte?: InputMaybe; - sfrxETH_not_eq?: InputMaybe; - sfrxETH_not_in?: InputMaybe>; + marketCapUSD_eq?: InputMaybe; + marketCapUSD_gt?: InputMaybe; + marketCapUSD_gte?: InputMaybe; + marketCapUSD_in?: InputMaybe>; + marketCapUSD_isNull?: InputMaybe; + marketCapUSD_lt?: InputMaybe; + marketCapUSD_lte?: InputMaybe; + marketCapUSD_not_eq?: InputMaybe; + marketCapUSD_not_in?: InputMaybe>; + nonRebasingSupply_eq?: InputMaybe; + nonRebasingSupply_gt?: InputMaybe; + nonRebasingSupply_gte?: InputMaybe; + nonRebasingSupply_in?: InputMaybe>; + nonRebasingSupply_isNull?: InputMaybe; + nonRebasingSupply_lt?: InputMaybe; + nonRebasingSupply_lte?: InputMaybe; + nonRebasingSupply_not_eq?: InputMaybe; + nonRebasingSupply_not_in?: InputMaybe>; + pegPrice_eq?: InputMaybe; + pegPrice_gt?: InputMaybe; + pegPrice_gte?: InputMaybe; + pegPrice_in?: InputMaybe>; + pegPrice_isNull?: InputMaybe; + pegPrice_lt?: InputMaybe; + pegPrice_lte?: InputMaybe; + pegPrice_not_eq?: InputMaybe; + pegPrice_not_in?: InputMaybe>; + rebasingSupply_eq?: InputMaybe; + rebasingSupply_gt?: InputMaybe; + rebasingSupply_gte?: InputMaybe; + rebasingSupply_in?: InputMaybe>; + rebasingSupply_isNull?: InputMaybe; + rebasingSupply_lt?: InputMaybe; + rebasingSupply_lte?: InputMaybe; + rebasingSupply_not_eq?: InputMaybe; + rebasingSupply_not_in?: InputMaybe>; + strategies_every?: InputMaybe; + strategies_none?: InputMaybe; + strategies_some?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -4913,205 +3887,143 @@ export type OethFraxStakingWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; -}; - -export type OethFraxStakingsConnection = { - __typename?: 'OETHFraxStakingsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OethHistoriesConnection = { - __typename?: 'OETHHistoriesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -/** The History entity tracks events that change the balance of OETH for an address. */ -export type OethHistory = { - __typename?: 'OETHHistory'; - address: OethAddress; - balance: Scalars['BigInt']['output']; - blockNumber: Scalars['Int']['output']; - id: Scalars['String']['output']; - timestamp: Scalars['DateTime']['output']; - txHash: Scalars['String']['output']; - type: HistoryType; - value: Scalars['BigInt']['output']; -}; - -export type OethHistoryEdge = { - __typename?: 'OETHHistoryEdge'; - cursor: Scalars['String']['output']; - node: OethHistory; -}; - -export enum OethHistoryOrderByInput { - AddressBalanceAsc = 'address_balance_ASC', - AddressBalanceAscNullsFirst = 'address_balance_ASC_NULLS_FIRST', - AddressBalanceDesc = 'address_balance_DESC', - AddressBalanceDescNullsLast = 'address_balance_DESC_NULLS_LAST', - AddressCreditsAsc = 'address_credits_ASC', - AddressCreditsAscNullsFirst = 'address_credits_ASC_NULLS_FIRST', - AddressCreditsDesc = 'address_credits_DESC', - AddressCreditsDescNullsLast = 'address_credits_DESC_NULLS_LAST', - AddressEarnedAsc = 'address_earned_ASC', - AddressEarnedAscNullsFirst = 'address_earned_ASC_NULLS_FIRST', - AddressEarnedDesc = 'address_earned_DESC', - AddressEarnedDescNullsLast = 'address_earned_DESC_NULLS_LAST', - AddressIdAsc = 'address_id_ASC', - AddressIdAscNullsFirst = 'address_id_ASC_NULLS_FIRST', - AddressIdDesc = 'address_id_DESC', - AddressIdDescNullsLast = 'address_id_DESC_NULLS_LAST', - AddressIsContractAsc = 'address_isContract_ASC', - AddressIsContractAscNullsFirst = 'address_isContract_ASC_NULLS_FIRST', - AddressIsContractDesc = 'address_isContract_DESC', - AddressIsContractDescNullsLast = 'address_isContract_DESC_NULLS_LAST', - AddressLastUpdatedAsc = 'address_lastUpdated_ASC', - AddressLastUpdatedAscNullsFirst = 'address_lastUpdated_ASC_NULLS_FIRST', - AddressLastUpdatedDesc = 'address_lastUpdated_DESC', - AddressLastUpdatedDescNullsLast = 'address_lastUpdated_DESC_NULLS_LAST', - AddressRebasingOptionAsc = 'address_rebasingOption_ASC', - AddressRebasingOptionAscNullsFirst = 'address_rebasingOption_ASC_NULLS_FIRST', - AddressRebasingOptionDesc = 'address_rebasingOption_DESC', - AddressRebasingOptionDescNullsLast = 'address_rebasingOption_DESC_NULLS_LAST', - BalanceAsc = 'balance_ASC', - BalanceAscNullsFirst = 'balance_ASC_NULLS_FIRST', - BalanceDesc = 'balance_DESC', - BalanceDescNullsLast = 'balance_DESC_NULLS_LAST', - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TxHashAsc = 'txHash_ASC', - TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', - TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST', - TypeAsc = 'type_ASC', - TypeAscNullsFirst = 'type_ASC_NULLS_FIRST', - TypeDesc = 'type_DESC', - TypeDescNullsLast = 'type_DESC_NULLS_LAST', - ValueAsc = 'value_ASC', - ValueAscNullsFirst = 'value_ASC_NULLS_FIRST', - ValueDesc = 'value_DESC', - ValueDescNullsLast = 'value_DESC_NULLS_LAST' -} + totalSupplyUSD_eq?: InputMaybe; + totalSupplyUSD_gt?: InputMaybe; + totalSupplyUSD_gte?: InputMaybe; + totalSupplyUSD_in?: InputMaybe>; + totalSupplyUSD_isNull?: InputMaybe; + totalSupplyUSD_lt?: InputMaybe; + totalSupplyUSD_lte?: InputMaybe; + totalSupplyUSD_not_eq?: InputMaybe; + totalSupplyUSD_not_in?: InputMaybe>; + totalSupply_eq?: InputMaybe; + totalSupply_gt?: InputMaybe; + totalSupply_gte?: InputMaybe; + totalSupply_in?: InputMaybe>; + totalSupply_isNull?: InputMaybe; + totalSupply_lt?: InputMaybe; + totalSupply_lte?: InputMaybe; + totalSupply_not_eq?: InputMaybe; + totalSupply_not_in?: InputMaybe>; + tradingVolumeUSD_eq?: InputMaybe; + tradingVolumeUSD_gt?: InputMaybe; + tradingVolumeUSD_gte?: InputMaybe; + tradingVolumeUSD_in?: InputMaybe>; + tradingVolumeUSD_isNull?: InputMaybe; + tradingVolumeUSD_lt?: InputMaybe; + tradingVolumeUSD_lte?: InputMaybe; + tradingVolumeUSD_not_eq?: InputMaybe; + tradingVolumeUSD_not_in?: InputMaybe>; + wrappedSupply_eq?: InputMaybe; + wrappedSupply_gt?: InputMaybe; + wrappedSupply_gte?: InputMaybe; + wrappedSupply_in?: InputMaybe>; + wrappedSupply_isNull?: InputMaybe; + wrappedSupply_lt?: InputMaybe; + wrappedSupply_lte?: InputMaybe; + wrappedSupply_not_eq?: InputMaybe; + wrappedSupply_not_in?: InputMaybe>; + yieldETH7Day_eq?: InputMaybe; + yieldETH7Day_gt?: InputMaybe; + yieldETH7Day_gte?: InputMaybe; + yieldETH7Day_in?: InputMaybe>; + yieldETH7Day_isNull?: InputMaybe; + yieldETH7Day_lt?: InputMaybe; + yieldETH7Day_lte?: InputMaybe; + yieldETH7Day_not_eq?: InputMaybe; + yieldETH7Day_not_in?: InputMaybe>; + yieldETHAllTime_eq?: InputMaybe; + yieldETHAllTime_gt?: InputMaybe; + yieldETHAllTime_gte?: InputMaybe; + yieldETHAllTime_in?: InputMaybe>; + yieldETHAllTime_isNull?: InputMaybe; + yieldETHAllTime_lt?: InputMaybe; + yieldETHAllTime_lte?: InputMaybe; + yieldETHAllTime_not_eq?: InputMaybe; + yieldETHAllTime_not_in?: InputMaybe>; + yieldETH_eq?: InputMaybe; + yieldETH_gt?: InputMaybe; + yieldETH_gte?: InputMaybe; + yieldETH_in?: InputMaybe>; + yieldETH_isNull?: InputMaybe; + yieldETH_lt?: InputMaybe; + yieldETH_lte?: InputMaybe; + yieldETH_not_eq?: InputMaybe; + yieldETH_not_in?: InputMaybe>; + yieldUSD7Day_eq?: InputMaybe; + yieldUSD7Day_gt?: InputMaybe; + yieldUSD7Day_gte?: InputMaybe; + yieldUSD7Day_in?: InputMaybe>; + yieldUSD7Day_isNull?: InputMaybe; + yieldUSD7Day_lt?: InputMaybe; + yieldUSD7Day_lte?: InputMaybe; + yieldUSD7Day_not_eq?: InputMaybe; + yieldUSD7Day_not_in?: InputMaybe>; + yieldUSDAllTime_eq?: InputMaybe; + yieldUSDAllTime_gt?: InputMaybe; + yieldUSDAllTime_gte?: InputMaybe; + yieldUSDAllTime_in?: InputMaybe>; + yieldUSDAllTime_isNull?: InputMaybe; + yieldUSDAllTime_lt?: InputMaybe; + yieldUSDAllTime_lte?: InputMaybe; + yieldUSDAllTime_not_eq?: InputMaybe; + yieldUSDAllTime_not_in?: InputMaybe>; + yieldUSD_eq?: InputMaybe; + yieldUSD_gt?: InputMaybe; + yieldUSD_gte?: InputMaybe; + yieldUSD_in?: InputMaybe>; + yieldUSD_isNull?: InputMaybe; + yieldUSD_lt?: InputMaybe; + yieldUSD_lte?: InputMaybe; + yieldUSD_not_eq?: InputMaybe; + yieldUSD_not_in?: InputMaybe>; +}; -export type OethHistoryWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - address?: InputMaybe; - address_isNull?: InputMaybe; - balance_eq?: InputMaybe; - balance_gt?: InputMaybe; - balance_gte?: InputMaybe; - balance_in?: InputMaybe>; - balance_isNull?: InputMaybe; - balance_lt?: InputMaybe; - balance_lte?: InputMaybe; - balance_not_eq?: InputMaybe; - balance_not_in?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - timestamp_eq?: InputMaybe; - timestamp_gt?: InputMaybe; - timestamp_gte?: InputMaybe; - timestamp_in?: InputMaybe>; - timestamp_isNull?: InputMaybe; - timestamp_lt?: InputMaybe; - timestamp_lte?: InputMaybe; - timestamp_not_eq?: InputMaybe; - timestamp_not_in?: InputMaybe>; - txHash_contains?: InputMaybe; - txHash_containsInsensitive?: InputMaybe; - txHash_endsWith?: InputMaybe; - txHash_eq?: InputMaybe; - txHash_gt?: InputMaybe; - txHash_gte?: InputMaybe; - txHash_in?: InputMaybe>; - txHash_isNull?: InputMaybe; - txHash_lt?: InputMaybe; - txHash_lte?: InputMaybe; - txHash_not_contains?: InputMaybe; - txHash_not_containsInsensitive?: InputMaybe; - txHash_not_endsWith?: InputMaybe; - txHash_not_eq?: InputMaybe; - txHash_not_in?: InputMaybe>; - txHash_not_startsWith?: InputMaybe; - txHash_startsWith?: InputMaybe; - type_eq?: InputMaybe; - type_in?: InputMaybe>; - type_isNull?: InputMaybe; - type_not_eq?: InputMaybe; - type_not_in?: InputMaybe>; - value_eq?: InputMaybe; - value_gt?: InputMaybe; - value_gte?: InputMaybe; - value_in?: InputMaybe>; - value_isNull?: InputMaybe; - value_lt?: InputMaybe; - value_lte?: InputMaybe; - value_not_eq?: InputMaybe; - value_not_in?: InputMaybe>; +export type OethDailyStatsConnection = { + __typename?: 'OETHDailyStatsConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; }; -export type OethMorphoAave = { - __typename?: 'OETHMorphoAave'; +export type OethDripper = { + __typename?: 'OETHDripper'; blockNumber: Scalars['Int']['output']; + dripDuration: Scalars['BigInt']['output']; + dripRatePerBlock: Scalars['BigInt']['output']; id: Scalars['String']['output']; + lastCollectTimestamp: Scalars['Int']['output']; timestamp: Scalars['DateTime']['output']; weth: Scalars['BigInt']['output']; }; -export type OethMorphoAaveEdge = { - __typename?: 'OETHMorphoAaveEdge'; +export type OethDripperEdge = { + __typename?: 'OETHDripperEdge'; cursor: Scalars['String']['output']; - node: OethMorphoAave; + node: OethDripper; }; -export enum OethMorphoAaveOrderByInput { +export enum OethDripperOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + DripDurationAsc = 'dripDuration_ASC', + DripDurationAscNullsFirst = 'dripDuration_ASC_NULLS_FIRST', + DripDurationDesc = 'dripDuration_DESC', + DripDurationDescNullsLast = 'dripDuration_DESC_NULLS_LAST', + DripRatePerBlockAsc = 'dripRatePerBlock_ASC', + DripRatePerBlockAscNullsFirst = 'dripRatePerBlock_ASC_NULLS_FIRST', + DripRatePerBlockDesc = 'dripRatePerBlock_DESC', + DripRatePerBlockDescNullsLast = 'dripRatePerBlock_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', + LastCollectTimestampAsc = 'lastCollectTimestamp_ASC', + LastCollectTimestampAscNullsFirst = 'lastCollectTimestamp_ASC_NULLS_FIRST', + LastCollectTimestampDesc = 'lastCollectTimestamp_DESC', + LastCollectTimestampDescNullsLast = 'lastCollectTimestamp_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', @@ -5122,9 +4034,9 @@ export enum OethMorphoAaveOrderByInput { WethDescNullsLast = 'weth_DESC_NULLS_LAST' } -export type OethMorphoAaveWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OethDripperWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -5134,6 +4046,24 @@ export type OethMorphoAaveWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; + dripDuration_eq?: InputMaybe; + dripDuration_gt?: InputMaybe; + dripDuration_gte?: InputMaybe; + dripDuration_in?: InputMaybe>; + dripDuration_isNull?: InputMaybe; + dripDuration_lt?: InputMaybe; + dripDuration_lte?: InputMaybe; + dripDuration_not_eq?: InputMaybe; + dripDuration_not_in?: InputMaybe>; + dripRatePerBlock_eq?: InputMaybe; + dripRatePerBlock_gt?: InputMaybe; + dripRatePerBlock_gte?: InputMaybe; + dripRatePerBlock_in?: InputMaybe>; + dripRatePerBlock_isNull?: InputMaybe; + dripRatePerBlock_lt?: InputMaybe; + dripRatePerBlock_lte?: InputMaybe; + dripRatePerBlock_not_eq?: InputMaybe; + dripRatePerBlock_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -5151,6 +4081,15 @@ export type OethMorphoAaveWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; + lastCollectTimestamp_eq?: InputMaybe; + lastCollectTimestamp_gt?: InputMaybe; + lastCollectTimestamp_gte?: InputMaybe; + lastCollectTimestamp_in?: InputMaybe>; + lastCollectTimestamp_isNull?: InputMaybe; + lastCollectTimestamp_lt?: InputMaybe; + lastCollectTimestamp_lte?: InputMaybe; + lastCollectTimestamp_not_eq?: InputMaybe; + lastCollectTimestamp_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -5171,109 +4110,32 @@ export type OethMorphoAaveWhereInput = { weth_not_in?: InputMaybe>; }; -export type OethMorphoAavesConnection = { - __typename?: 'OETHMorphoAavesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export enum OethOrderByInput { - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - NonRebasingSupplyAsc = 'nonRebasingSupply_ASC', - NonRebasingSupplyAscNullsFirst = 'nonRebasingSupply_ASC_NULLS_FIRST', - NonRebasingSupplyDesc = 'nonRebasingSupply_DESC', - NonRebasingSupplyDescNullsLast = 'nonRebasingSupply_DESC_NULLS_LAST', - RebasingSupplyAsc = 'rebasingSupply_ASC', - RebasingSupplyAscNullsFirst = 'rebasingSupply_ASC_NULLS_FIRST', - RebasingSupplyDesc = 'rebasingSupply_DESC', - RebasingSupplyDescNullsLast = 'rebasingSupply_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TotalSupplyAsc = 'totalSupply_ASC', - TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', - TotalSupplyDesc = 'totalSupply_DESC', - TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST' -} - -/** The Rebase entity tracks historical rebase events on the OETH contract. */ -export type OethRebase = { - __typename?: 'OETHRebase'; - apy: Oethapy; - blockNumber: Scalars['Int']['output']; - feeETH: Scalars['BigInt']['output']; - feeUSD: Scalars['BigInt']['output']; - id: Scalars['String']['output']; - rebasingCredits: Scalars['BigInt']['output']; - rebasingCreditsPerToken: Scalars['BigInt']['output']; - timestamp: Scalars['DateTime']['output']; - totalSupply: Scalars['BigInt']['output']; - txHash: Scalars['String']['output']; - yieldETH: Scalars['BigInt']['output']; - yieldUSD: Scalars['BigInt']['output']; -}; - -export type OethRebaseEdge = { - __typename?: 'OETHRebaseEdge'; - cursor: Scalars['String']['output']; - node: OethRebase; -}; - -/** The RebaseOption entity tracks historical rebase option changes by address. */ -export type OethRebaseOption = { - __typename?: 'OETHRebaseOption'; - address: OethAddress; - blockNumber: Scalars['Int']['output']; - id: Scalars['String']['output']; - status: RebasingOption; - timestamp: Scalars['DateTime']['output']; - txHash: Scalars['String']['output']; -}; - -export type OethRebaseOptionEdge = { - __typename?: 'OETHRebaseOptionEdge'; - cursor: Scalars['String']['output']; - node: OethRebaseOption; -}; - -export enum OethRebaseOptionOrderByInput { - AddressBalanceAsc = 'address_balance_ASC', - AddressBalanceAscNullsFirst = 'address_balance_ASC_NULLS_FIRST', - AddressBalanceDesc = 'address_balance_DESC', - AddressBalanceDescNullsLast = 'address_balance_DESC_NULLS_LAST', - AddressCreditsAsc = 'address_credits_ASC', - AddressCreditsAscNullsFirst = 'address_credits_ASC_NULLS_FIRST', - AddressCreditsDesc = 'address_credits_DESC', - AddressCreditsDescNullsLast = 'address_credits_DESC_NULLS_LAST', - AddressEarnedAsc = 'address_earned_ASC', - AddressEarnedAscNullsFirst = 'address_earned_ASC_NULLS_FIRST', - AddressEarnedDesc = 'address_earned_DESC', - AddressEarnedDescNullsLast = 'address_earned_DESC_NULLS_LAST', - AddressIdAsc = 'address_id_ASC', - AddressIdAscNullsFirst = 'address_id_ASC_NULLS_FIRST', - AddressIdDesc = 'address_id_DESC', - AddressIdDescNullsLast = 'address_id_DESC_NULLS_LAST', - AddressIsContractAsc = 'address_isContract_ASC', - AddressIsContractAscNullsFirst = 'address_isContract_ASC_NULLS_FIRST', - AddressIsContractDesc = 'address_isContract_DESC', - AddressIsContractDescNullsLast = 'address_isContract_DESC_NULLS_LAST', - AddressLastUpdatedAsc = 'address_lastUpdated_ASC', - AddressLastUpdatedAscNullsFirst = 'address_lastUpdated_ASC_NULLS_FIRST', - AddressLastUpdatedDesc = 'address_lastUpdated_DESC', - AddressLastUpdatedDescNullsLast = 'address_lastUpdated_DESC_NULLS_LAST', - AddressRebasingOptionAsc = 'address_rebasingOption_ASC', - AddressRebasingOptionAscNullsFirst = 'address_rebasingOption_ASC_NULLS_FIRST', - AddressRebasingOptionDesc = 'address_rebasingOption_DESC', - AddressRebasingOptionDescNullsLast = 'address_rebasingOption_DESC_NULLS_LAST', +export type OethDrippersConnection = { + __typename?: 'OETHDrippersConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; +}; + +export type OethFraxStaking = { + __typename?: 'OETHFraxStaking'; + blockNumber: Scalars['Int']['output']; + id: Scalars['String']['output']; + /** + * - sfrxETH is what's actually stored here, slightly confusing and may want to change. + * - used by balance sheet + */ + sfrxETH: Scalars['BigInt']['output']; + timestamp: Scalars['DateTime']['output']; +}; + +export type OethFraxStakingEdge = { + __typename?: 'OETHFraxStakingEdge'; + cursor: Scalars['String']['output']; + node: OethFraxStaking; +}; + +export enum OethFraxStakingOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', @@ -5282,25 +4144,19 @@ export enum OethRebaseOptionOrderByInput { IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - StatusAsc = 'status_ASC', - StatusAscNullsFirst = 'status_ASC_NULLS_FIRST', - StatusDesc = 'status_DESC', - StatusDescNullsLast = 'status_DESC_NULLS_LAST', + SfrxEthAsc = 'sfrxETH_ASC', + SfrxEthAscNullsFirst = 'sfrxETH_ASC_NULLS_FIRST', + SfrxEthDesc = 'sfrxETH_DESC', + SfrxEthDescNullsLast = 'sfrxETH_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TxHashAsc = 'txHash_ASC', - TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', - TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST' + TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST' } -export type OethRebaseOptionWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - address?: InputMaybe; - address_isNull?: InputMaybe; +export type OethFraxStakingWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -5327,11 +4183,15 @@ export type OethRebaseOptionWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - status_eq?: InputMaybe; - status_in?: InputMaybe>; - status_isNull?: InputMaybe; - status_not_eq?: InputMaybe; - status_not_in?: InputMaybe>; + sfrxETH_eq?: InputMaybe; + sfrxETH_gt?: InputMaybe; + sfrxETH_gte?: InputMaybe; + sfrxETH_in?: InputMaybe>; + sfrxETH_isNull?: InputMaybe; + sfrxETH_lt?: InputMaybe; + sfrxETH_lte?: InputMaybe; + sfrxETH_not_eq?: InputMaybe; + sfrxETH_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -5341,124 +4201,51 @@ export type OethRebaseOptionWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - txHash_contains?: InputMaybe; - txHash_containsInsensitive?: InputMaybe; - txHash_endsWith?: InputMaybe; - txHash_eq?: InputMaybe; - txHash_gt?: InputMaybe; - txHash_gte?: InputMaybe; - txHash_in?: InputMaybe>; - txHash_isNull?: InputMaybe; - txHash_lt?: InputMaybe; - txHash_lte?: InputMaybe; - txHash_not_contains?: InputMaybe; - txHash_not_containsInsensitive?: InputMaybe; - txHash_not_endsWith?: InputMaybe; - txHash_not_eq?: InputMaybe; - txHash_not_in?: InputMaybe>; - txHash_not_startsWith?: InputMaybe; - txHash_startsWith?: InputMaybe; }; -export type OethRebaseOptionsConnection = { - __typename?: 'OETHRebaseOptionsConnection'; - edges: Array; +export type OethFraxStakingsConnection = { + __typename?: 'OETHFraxStakingsConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export enum OethRebaseOrderByInput { - ApyAprAsc = 'apy_apr_ASC', - ApyAprAscNullsFirst = 'apy_apr_ASC_NULLS_FIRST', - ApyAprDesc = 'apy_apr_DESC', - ApyAprDescNullsLast = 'apy_apr_DESC_NULLS_LAST', - ApyApy7DayAvgAsc = 'apy_apy7DayAvg_ASC', - ApyApy7DayAvgAscNullsFirst = 'apy_apy7DayAvg_ASC_NULLS_FIRST', - ApyApy7DayAvgDesc = 'apy_apy7DayAvg_DESC', - ApyApy7DayAvgDescNullsLast = 'apy_apy7DayAvg_DESC_NULLS_LAST', - ApyApy14DayAvgAsc = 'apy_apy14DayAvg_ASC', - ApyApy14DayAvgAscNullsFirst = 'apy_apy14DayAvg_ASC_NULLS_FIRST', - ApyApy14DayAvgDesc = 'apy_apy14DayAvg_DESC', - ApyApy14DayAvgDescNullsLast = 'apy_apy14DayAvg_DESC_NULLS_LAST', - ApyApy30DayAvgAsc = 'apy_apy30DayAvg_ASC', - ApyApy30DayAvgAscNullsFirst = 'apy_apy30DayAvg_ASC_NULLS_FIRST', - ApyApy30DayAvgDesc = 'apy_apy30DayAvg_DESC', - ApyApy30DayAvgDescNullsLast = 'apy_apy30DayAvg_DESC_NULLS_LAST', - ApyApyAsc = 'apy_apy_ASC', - ApyApyAscNullsFirst = 'apy_apy_ASC_NULLS_FIRST', - ApyApyDesc = 'apy_apy_DESC', - ApyApyDescNullsLast = 'apy_apy_DESC_NULLS_LAST', - ApyBlockNumberAsc = 'apy_blockNumber_ASC', - ApyBlockNumberAscNullsFirst = 'apy_blockNumber_ASC_NULLS_FIRST', - ApyBlockNumberDesc = 'apy_blockNumber_DESC', - ApyBlockNumberDescNullsLast = 'apy_blockNumber_DESC_NULLS_LAST', - ApyIdAsc = 'apy_id_ASC', - ApyIdAscNullsFirst = 'apy_id_ASC_NULLS_FIRST', - ApyIdDesc = 'apy_id_DESC', - ApyIdDescNullsLast = 'apy_id_DESC_NULLS_LAST', - ApyRebasingCreditsPerTokenAsc = 'apy_rebasingCreditsPerToken_ASC', - ApyRebasingCreditsPerTokenAscNullsFirst = 'apy_rebasingCreditsPerToken_ASC_NULLS_FIRST', - ApyRebasingCreditsPerTokenDesc = 'apy_rebasingCreditsPerToken_DESC', - ApyRebasingCreditsPerTokenDescNullsLast = 'apy_rebasingCreditsPerToken_DESC_NULLS_LAST', - ApyTimestampAsc = 'apy_timestamp_ASC', - ApyTimestampAscNullsFirst = 'apy_timestamp_ASC_NULLS_FIRST', - ApyTimestampDesc = 'apy_timestamp_DESC', - ApyTimestampDescNullsLast = 'apy_timestamp_DESC_NULLS_LAST', - ApyTxHashAsc = 'apy_txHash_ASC', - ApyTxHashAscNullsFirst = 'apy_txHash_ASC_NULLS_FIRST', - ApyTxHashDesc = 'apy_txHash_DESC', - ApyTxHashDescNullsLast = 'apy_txHash_DESC_NULLS_LAST', +export type OethMorphoAave = { + __typename?: 'OETHMorphoAave'; + blockNumber: Scalars['Int']['output']; + id: Scalars['String']['output']; + timestamp: Scalars['DateTime']['output']; + weth: Scalars['BigInt']['output']; +}; + +export type OethMorphoAaveEdge = { + __typename?: 'OETHMorphoAaveEdge'; + cursor: Scalars['String']['output']; + node: OethMorphoAave; +}; + +export enum OethMorphoAaveOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - FeeEthAsc = 'feeETH_ASC', - FeeEthAscNullsFirst = 'feeETH_ASC_NULLS_FIRST', - FeeEthDesc = 'feeETH_DESC', - FeeEthDescNullsLast = 'feeETH_DESC_NULLS_LAST', - FeeUsdAsc = 'feeUSD_ASC', - FeeUsdAscNullsFirst = 'feeUSD_ASC_NULLS_FIRST', - FeeUsdDesc = 'feeUSD_DESC', - FeeUsdDescNullsLast = 'feeUSD_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - RebasingCreditsPerTokenAsc = 'rebasingCreditsPerToken_ASC', - RebasingCreditsPerTokenAscNullsFirst = 'rebasingCreditsPerToken_ASC_NULLS_FIRST', - RebasingCreditsPerTokenDesc = 'rebasingCreditsPerToken_DESC', - RebasingCreditsPerTokenDescNullsLast = 'rebasingCreditsPerToken_DESC_NULLS_LAST', - RebasingCreditsAsc = 'rebasingCredits_ASC', - RebasingCreditsAscNullsFirst = 'rebasingCredits_ASC_NULLS_FIRST', - RebasingCreditsDesc = 'rebasingCredits_DESC', - RebasingCreditsDescNullsLast = 'rebasingCredits_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TotalSupplyAsc = 'totalSupply_ASC', - TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', - TotalSupplyDesc = 'totalSupply_DESC', - TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST', - TxHashAsc = 'txHash_ASC', - TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', - TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST', - YieldEthAsc = 'yieldETH_ASC', - YieldEthAscNullsFirst = 'yieldETH_ASC_NULLS_FIRST', - YieldEthDesc = 'yieldETH_DESC', - YieldEthDescNullsLast = 'yieldETH_DESC_NULLS_LAST', - YieldUsdAsc = 'yieldUSD_ASC', - YieldUsdAscNullsFirst = 'yieldUSD_ASC_NULLS_FIRST', - YieldUsdDesc = 'yieldUSD_DESC', - YieldUsdDescNullsLast = 'yieldUSD_DESC_NULLS_LAST' + WethAsc = 'weth_ASC', + WethAscNullsFirst = 'weth_ASC_NULLS_FIRST', + WethDesc = 'weth_DESC', + WethDescNullsLast = 'weth_DESC_NULLS_LAST' } -export type OethRebaseWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - apy?: InputMaybe; - apy_isNull?: InputMaybe; +export type OethMorphoAaveWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -5468,24 +4255,6 @@ export type OethRebaseWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; - feeETH_eq?: InputMaybe; - feeETH_gt?: InputMaybe; - feeETH_gte?: InputMaybe; - feeETH_in?: InputMaybe>; - feeETH_isNull?: InputMaybe; - feeETH_lt?: InputMaybe; - feeETH_lte?: InputMaybe; - feeETH_not_eq?: InputMaybe; - feeETH_not_in?: InputMaybe>; - feeUSD_eq?: InputMaybe; - feeUSD_gt?: InputMaybe; - feeUSD_gte?: InputMaybe; - feeUSD_in?: InputMaybe>; - feeUSD_isNull?: InputMaybe; - feeUSD_lt?: InputMaybe; - feeUSD_lte?: InputMaybe; - feeUSD_not_eq?: InputMaybe; - feeUSD_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -5503,24 +4272,6 @@ export type OethRebaseWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - rebasingCreditsPerToken_eq?: InputMaybe; - rebasingCreditsPerToken_gt?: InputMaybe; - rebasingCreditsPerToken_gte?: InputMaybe; - rebasingCreditsPerToken_in?: InputMaybe>; - rebasingCreditsPerToken_isNull?: InputMaybe; - rebasingCreditsPerToken_lt?: InputMaybe; - rebasingCreditsPerToken_lte?: InputMaybe; - rebasingCreditsPerToken_not_eq?: InputMaybe; - rebasingCreditsPerToken_not_in?: InputMaybe>; - rebasingCredits_eq?: InputMaybe; - rebasingCredits_gt?: InputMaybe; - rebasingCredits_gte?: InputMaybe; - rebasingCredits_in?: InputMaybe>; - rebasingCredits_isNull?: InputMaybe; - rebasingCredits_lt?: InputMaybe; - rebasingCredits_lte?: InputMaybe; - rebasingCredits_not_eq?: InputMaybe; - rebasingCredits_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -5530,55 +4281,20 @@ export type OethRebaseWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - totalSupply_eq?: InputMaybe; - totalSupply_gt?: InputMaybe; - totalSupply_gte?: InputMaybe; - totalSupply_in?: InputMaybe>; - totalSupply_isNull?: InputMaybe; - totalSupply_lt?: InputMaybe; - totalSupply_lte?: InputMaybe; - totalSupply_not_eq?: InputMaybe; - totalSupply_not_in?: InputMaybe>; - txHash_contains?: InputMaybe; - txHash_containsInsensitive?: InputMaybe; - txHash_endsWith?: InputMaybe; - txHash_eq?: InputMaybe; - txHash_gt?: InputMaybe; - txHash_gte?: InputMaybe; - txHash_in?: InputMaybe>; - txHash_isNull?: InputMaybe; - txHash_lt?: InputMaybe; - txHash_lte?: InputMaybe; - txHash_not_contains?: InputMaybe; - txHash_not_containsInsensitive?: InputMaybe; - txHash_not_endsWith?: InputMaybe; - txHash_not_eq?: InputMaybe; - txHash_not_in?: InputMaybe>; - txHash_not_startsWith?: InputMaybe; - txHash_startsWith?: InputMaybe; - yieldETH_eq?: InputMaybe; - yieldETH_gt?: InputMaybe; - yieldETH_gte?: InputMaybe; - yieldETH_in?: InputMaybe>; - yieldETH_isNull?: InputMaybe; - yieldETH_lt?: InputMaybe; - yieldETH_lte?: InputMaybe; - yieldETH_not_eq?: InputMaybe; - yieldETH_not_in?: InputMaybe>; - yieldUSD_eq?: InputMaybe; - yieldUSD_gt?: InputMaybe; - yieldUSD_gte?: InputMaybe; - yieldUSD_in?: InputMaybe>; - yieldUSD_isNull?: InputMaybe; - yieldUSD_lt?: InputMaybe; - yieldUSD_lte?: InputMaybe; - yieldUSD_not_eq?: InputMaybe; - yieldUSD_not_in?: InputMaybe>; + weth_eq?: InputMaybe; + weth_gt?: InputMaybe; + weth_gte?: InputMaybe; + weth_in?: InputMaybe>; + weth_isNull?: InputMaybe; + weth_lt?: InputMaybe; + weth_lte?: InputMaybe; + weth_not_eq?: InputMaybe; + weth_not_in?: InputMaybe>; }; -export type OethRebasesConnection = { - __typename?: 'OETHRebasesConnection'; - edges: Array; +export type OethMorphoAavesConnection = { + __typename?: 'OETHMorphoAavesConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; @@ -6227,80 +4943,6 @@ export type OethVaultsConnection = { totalCount: Scalars['Int']['output']; }; -export type OethWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - nonRebasingSupply_eq?: InputMaybe; - nonRebasingSupply_gt?: InputMaybe; - nonRebasingSupply_gte?: InputMaybe; - nonRebasingSupply_in?: InputMaybe>; - nonRebasingSupply_isNull?: InputMaybe; - nonRebasingSupply_lt?: InputMaybe; - nonRebasingSupply_lte?: InputMaybe; - nonRebasingSupply_not_eq?: InputMaybe; - nonRebasingSupply_not_in?: InputMaybe>; - rebasingSupply_eq?: InputMaybe; - rebasingSupply_gt?: InputMaybe; - rebasingSupply_gte?: InputMaybe; - rebasingSupply_in?: InputMaybe>; - rebasingSupply_isNull?: InputMaybe; - rebasingSupply_lt?: InputMaybe; - rebasingSupply_lte?: InputMaybe; - rebasingSupply_not_eq?: InputMaybe; - rebasingSupply_not_in?: InputMaybe>; - timestamp_eq?: InputMaybe; - timestamp_gt?: InputMaybe; - timestamp_gte?: InputMaybe; - timestamp_in?: InputMaybe>; - timestamp_isNull?: InputMaybe; - timestamp_lt?: InputMaybe; - timestamp_lte?: InputMaybe; - timestamp_not_eq?: InputMaybe; - timestamp_not_in?: InputMaybe>; - totalSupply_eq?: InputMaybe; - totalSupply_gt?: InputMaybe; - totalSupply_gte?: InputMaybe; - totalSupply_in?: InputMaybe>; - totalSupply_isNull?: InputMaybe; - totalSupply_lt?: InputMaybe; - totalSupply_lte?: InputMaybe; - totalSupply_not_eq?: InputMaybe; - totalSupply_not_in?: InputMaybe>; -}; - -export type OetHsConnection = { - __typename?: 'OETHsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - export type OgnStatsResult = { __typename?: 'OGNStatsResult'; circulatingSupply: Scalars['Float']['output']; @@ -7579,27 +6221,62 @@ export type OgVsConnection = { totalCount: Scalars['Int']['output']; }; -export type OTokenVault = { - __typename?: 'OTokenVault'; - address: Scalars['String']['output']; +export type OToken = { + __typename?: 'OToken'; blockNumber: Scalars['Int']['output']; chainId: Scalars['Int']['output']; id: Scalars['String']['output']; + nonRebasingSupply: Scalars['BigInt']['output']; + otoken: Scalars['String']['output']; + rebasingSupply: Scalars['BigInt']['output']; timestamp: Scalars['DateTime']['output']; - totalValue: Scalars['BigInt']['output']; + totalSupply: Scalars['BigInt']['output']; }; -export type OTokenVaultEdge = { - __typename?: 'OTokenVaultEdge'; +export type OTokenApy = { + __typename?: 'OTokenAPY'; + apr: Scalars['Float']['output']; + apy: Scalars['Float']['output']; + apy7DayAvg: Scalars['Float']['output']; + apy14DayAvg: Scalars['Float']['output']; + apy30DayAvg: Scalars['Float']['output']; + blockNumber: Scalars['Int']['output']; + chainId: Scalars['Int']['output']; + date: Scalars['String']['output']; + id: Scalars['String']['output']; + otoken: Scalars['String']['output']; + rebasingCreditsPerToken: Scalars['BigInt']['output']; + timestamp: Scalars['DateTime']['output']; + txHash: Scalars['String']['output']; +}; + +export type OTokenApyEdge = { + __typename?: 'OTokenAPYEdge'; cursor: Scalars['String']['output']; - node: OTokenVault; + node: OTokenApy; }; -export enum OTokenVaultOrderByInput { - AddressAsc = 'address_ASC', - AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', - AddressDesc = 'address_DESC', - AddressDescNullsLast = 'address_DESC_NULLS_LAST', +export enum OTokenApyOrderByInput { + AprAsc = 'apr_ASC', + AprAscNullsFirst = 'apr_ASC_NULLS_FIRST', + AprDesc = 'apr_DESC', + AprDescNullsLast = 'apr_DESC_NULLS_LAST', + Apy7DayAvgAsc = 'apy7DayAvg_ASC', + Apy7DayAvgAscNullsFirst = 'apy7DayAvg_ASC_NULLS_FIRST', + Apy7DayAvgDesc = 'apy7DayAvg_DESC', + Apy7DayAvgDescNullsLast = 'apy7DayAvg_DESC_NULLS_LAST', + Apy14DayAvgAsc = 'apy14DayAvg_ASC', + Apy14DayAvgAscNullsFirst = 'apy14DayAvg_ASC_NULLS_FIRST', + Apy14DayAvgDesc = 'apy14DayAvg_DESC', + Apy14DayAvgDescNullsLast = 'apy14DayAvg_DESC_NULLS_LAST', + Apy30DayAvgAsc = 'apy30DayAvg_ASC', + Apy30DayAvgAscNullsFirst = 'apy30DayAvg_ASC_NULLS_FIRST', + Apy30DayAvgDesc = 'apy30DayAvg_DESC', + Apy30DayAvgDescNullsLast = 'apy30DayAvg_DESC_NULLS_LAST', + ApyAsc = 'apy_ASC', + ApyAscNullsFirst = 'apy_ASC_NULLS_FIRST', + ApyDesc = 'apy_DESC', + ApyDescNullsLast = 'apy_DESC_NULLS_LAST', BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', @@ -7608,40 +6285,80 @@ export enum OTokenVaultOrderByInput { ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', ChainIdDesc = 'chainId_DESC', ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', + DateAsc = 'date_ASC', + DateAscNullsFirst = 'date_ASC_NULLS_FIRST', + DateDesc = 'date_DESC', + DateDescNullsLast = 'date_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', + RebasingCreditsPerTokenAsc = 'rebasingCreditsPerToken_ASC', + RebasingCreditsPerTokenAscNullsFirst = 'rebasingCreditsPerToken_ASC_NULLS_FIRST', + RebasingCreditsPerTokenDesc = 'rebasingCreditsPerToken_DESC', + RebasingCreditsPerTokenDescNullsLast = 'rebasingCreditsPerToken_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TotalValueAsc = 'totalValue_ASC', - TotalValueAscNullsFirst = 'totalValue_ASC_NULLS_FIRST', - TotalValueDesc = 'totalValue_DESC', - TotalValueDescNullsLast = 'totalValue_DESC_NULLS_LAST' + TxHashAsc = 'txHash_ASC', + TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', + TxHashDesc = 'txHash_DESC', + TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST' } -export type OTokenVaultWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - address_contains?: InputMaybe; - address_containsInsensitive?: InputMaybe; - address_endsWith?: InputMaybe; - address_eq?: InputMaybe; - address_gt?: InputMaybe; - address_gte?: InputMaybe; - address_in?: InputMaybe>; - address_isNull?: InputMaybe; - address_lt?: InputMaybe; - address_lte?: InputMaybe; - address_not_contains?: InputMaybe; - address_not_containsInsensitive?: InputMaybe; - address_not_endsWith?: InputMaybe; - address_not_eq?: InputMaybe; - address_not_in?: InputMaybe>; - address_not_startsWith?: InputMaybe; - address_startsWith?: InputMaybe; +export type OTokenApyWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + apr_eq?: InputMaybe; + apr_gt?: InputMaybe; + apr_gte?: InputMaybe; + apr_in?: InputMaybe>; + apr_isNull?: InputMaybe; + apr_lt?: InputMaybe; + apr_lte?: InputMaybe; + apr_not_eq?: InputMaybe; + apr_not_in?: InputMaybe>; + apy7DayAvg_eq?: InputMaybe; + apy7DayAvg_gt?: InputMaybe; + apy7DayAvg_gte?: InputMaybe; + apy7DayAvg_in?: InputMaybe>; + apy7DayAvg_isNull?: InputMaybe; + apy7DayAvg_lt?: InputMaybe; + apy7DayAvg_lte?: InputMaybe; + apy7DayAvg_not_eq?: InputMaybe; + apy7DayAvg_not_in?: InputMaybe>; + apy14DayAvg_eq?: InputMaybe; + apy14DayAvg_gt?: InputMaybe; + apy14DayAvg_gte?: InputMaybe; + apy14DayAvg_in?: InputMaybe>; + apy14DayAvg_isNull?: InputMaybe; + apy14DayAvg_lt?: InputMaybe; + apy14DayAvg_lte?: InputMaybe; + apy14DayAvg_not_eq?: InputMaybe; + apy14DayAvg_not_in?: InputMaybe>; + apy30DayAvg_eq?: InputMaybe; + apy30DayAvg_gt?: InputMaybe; + apy30DayAvg_gte?: InputMaybe; + apy30DayAvg_in?: InputMaybe>; + apy30DayAvg_isNull?: InputMaybe; + apy30DayAvg_lt?: InputMaybe; + apy30DayAvg_lte?: InputMaybe; + apy30DayAvg_not_eq?: InputMaybe; + apy30DayAvg_not_in?: InputMaybe>; + apy_eq?: InputMaybe; + apy_gt?: InputMaybe; + apy_gte?: InputMaybe; + apy_in?: InputMaybe>; + apy_isNull?: InputMaybe; + apy_lt?: InputMaybe; + apy_lte?: InputMaybe; + apy_not_eq?: InputMaybe; + apy_not_in?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -7660,6 +6377,23 @@ export type OTokenVaultWhereInput = { chainId_lte?: InputMaybe; chainId_not_eq?: InputMaybe; chainId_not_in?: InputMaybe>; + date_contains?: InputMaybe; + date_containsInsensitive?: InputMaybe; + date_endsWith?: InputMaybe; + date_eq?: InputMaybe; + date_gt?: InputMaybe; + date_gte?: InputMaybe; + date_in?: InputMaybe>; + date_isNull?: InputMaybe; + date_lt?: InputMaybe; + date_lte?: InputMaybe; + date_not_contains?: InputMaybe; + date_not_containsInsensitive?: InputMaybe; + date_not_endsWith?: InputMaybe; + date_not_eq?: InputMaybe; + date_not_in?: InputMaybe>; + date_not_startsWith?: InputMaybe; + date_startsWith?: InputMaybe; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -7677,6 +6411,32 @@ export type OTokenVaultWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; + rebasingCreditsPerToken_eq?: InputMaybe; + rebasingCreditsPerToken_gt?: InputMaybe; + rebasingCreditsPerToken_gte?: InputMaybe; + rebasingCreditsPerToken_in?: InputMaybe>; + rebasingCreditsPerToken_isNull?: InputMaybe; + rebasingCreditsPerToken_lt?: InputMaybe; + rebasingCreditsPerToken_lte?: InputMaybe; + rebasingCreditsPerToken_not_eq?: InputMaybe; + rebasingCreditsPerToken_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -7686,147 +6446,173 @@ export type OTokenVaultWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - totalValue_eq?: InputMaybe; - totalValue_gt?: InputMaybe; - totalValue_gte?: InputMaybe; - totalValue_in?: InputMaybe>; - totalValue_isNull?: InputMaybe; - totalValue_lt?: InputMaybe; - totalValue_lte?: InputMaybe; - totalValue_not_eq?: InputMaybe; - totalValue_not_in?: InputMaybe>; + txHash_contains?: InputMaybe; + txHash_containsInsensitive?: InputMaybe; + txHash_endsWith?: InputMaybe; + txHash_eq?: InputMaybe; + txHash_gt?: InputMaybe; + txHash_gte?: InputMaybe; + txHash_in?: InputMaybe>; + txHash_isNull?: InputMaybe; + txHash_lt?: InputMaybe; + txHash_lte?: InputMaybe; + txHash_not_contains?: InputMaybe; + txHash_not_containsInsensitive?: InputMaybe; + txHash_not_endsWith?: InputMaybe; + txHash_not_eq?: InputMaybe; + txHash_not_in?: InputMaybe>; + txHash_not_startsWith?: InputMaybe; + txHash_startsWith?: InputMaybe; }; -export type OTokenVaultsConnection = { - __typename?: 'OTokenVaultsConnection'; - edges: Array; +export type OTokenAPiesConnection = { + __typename?: 'OTokenAPiesConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -/** The OUSD entity tracks the change in total supply of OUSD over time. */ -export type Ousd = { - __typename?: 'OUSD'; - blockNumber: Scalars['Int']['output']; - id: Scalars['String']['output']; - nonRebasingSupply: Scalars['BigInt']['output']; - rebasingSupply: Scalars['BigInt']['output']; - timestamp: Scalars['DateTime']['output']; - totalSupply: Scalars['BigInt']['output']; +export type OTokenActivitiesConnection = { + __typename?: 'OTokenActivitiesConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; }; -/** The APY entity tracks historical APY values by day. */ -export type Ousdapy = { - __typename?: 'OUSDAPY'; - apr: Scalars['Float']['output']; - apy: Scalars['Float']['output']; - apy7DayAvg: Scalars['Float']['output']; - apy14DayAvg: Scalars['Float']['output']; - apy30DayAvg: Scalars['Float']['output']; +export type OTokenActivity = { + __typename?: 'OTokenActivity'; + action?: Maybe; + address?: Maybe; + amount?: Maybe; blockNumber: Scalars['Int']['output']; + callDataLast4Bytes: Scalars['String']['output']; + chainId: Scalars['Int']['output']; + exchange?: Maybe; + fromSymbol?: Maybe; id: Scalars['String']['output']; - rebasingCreditsPerToken: Scalars['BigInt']['output']; + interface?: Maybe; + otoken: Scalars['String']['output']; + sighash?: Maybe; timestamp: Scalars['DateTime']['output']; + toSymbol?: Maybe; txHash: Scalars['String']['output']; }; -export type OusdapyEdge = { - __typename?: 'OUSDAPYEdge'; +export type OTokenActivityEdge = { + __typename?: 'OTokenActivityEdge'; cursor: Scalars['String']['output']; - node: Ousdapy; + node: OTokenActivity; }; -export enum OusdapyOrderByInput { - AprAsc = 'apr_ASC', - AprAscNullsFirst = 'apr_ASC_NULLS_FIRST', - AprDesc = 'apr_DESC', - AprDescNullsLast = 'apr_DESC_NULLS_LAST', - Apy7DayAvgAsc = 'apy7DayAvg_ASC', - Apy7DayAvgAscNullsFirst = 'apy7DayAvg_ASC_NULLS_FIRST', - Apy7DayAvgDesc = 'apy7DayAvg_DESC', - Apy7DayAvgDescNullsLast = 'apy7DayAvg_DESC_NULLS_LAST', - Apy14DayAvgAsc = 'apy14DayAvg_ASC', - Apy14DayAvgAscNullsFirst = 'apy14DayAvg_ASC_NULLS_FIRST', - Apy14DayAvgDesc = 'apy14DayAvg_DESC', - Apy14DayAvgDescNullsLast = 'apy14DayAvg_DESC_NULLS_LAST', - Apy30DayAvgAsc = 'apy30DayAvg_ASC', - Apy30DayAvgAscNullsFirst = 'apy30DayAvg_ASC_NULLS_FIRST', - Apy30DayAvgDesc = 'apy30DayAvg_DESC', - Apy30DayAvgDescNullsLast = 'apy30DayAvg_DESC_NULLS_LAST', - ApyAsc = 'apy_ASC', - ApyAscNullsFirst = 'apy_ASC_NULLS_FIRST', - ApyDesc = 'apy_DESC', - ApyDescNullsLast = 'apy_DESC_NULLS_LAST', +export enum OTokenActivityOrderByInput { + ActionAsc = 'action_ASC', + ActionAscNullsFirst = 'action_ASC_NULLS_FIRST', + ActionDesc = 'action_DESC', + ActionDescNullsLast = 'action_DESC_NULLS_LAST', + AddressAsc = 'address_ASC', + AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', + AddressDesc = 'address_DESC', + AddressDescNullsLast = 'address_DESC_NULLS_LAST', + AmountAsc = 'amount_ASC', + AmountAscNullsFirst = 'amount_ASC_NULLS_FIRST', + AmountDesc = 'amount_DESC', + AmountDescNullsLast = 'amount_DESC_NULLS_LAST', BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + CallDataLast4BytesAsc = 'callDataLast4Bytes_ASC', + CallDataLast4BytesAscNullsFirst = 'callDataLast4Bytes_ASC_NULLS_FIRST', + CallDataLast4BytesDesc = 'callDataLast4Bytes_DESC', + CallDataLast4BytesDescNullsLast = 'callDataLast4Bytes_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', + ExchangeAsc = 'exchange_ASC', + ExchangeAscNullsFirst = 'exchange_ASC_NULLS_FIRST', + ExchangeDesc = 'exchange_DESC', + ExchangeDescNullsLast = 'exchange_DESC_NULLS_LAST', + FromSymbolAsc = 'fromSymbol_ASC', + FromSymbolAscNullsFirst = 'fromSymbol_ASC_NULLS_FIRST', + FromSymbolDesc = 'fromSymbol_DESC', + FromSymbolDescNullsLast = 'fromSymbol_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - RebasingCreditsPerTokenAsc = 'rebasingCreditsPerToken_ASC', - RebasingCreditsPerTokenAscNullsFirst = 'rebasingCreditsPerToken_ASC_NULLS_FIRST', - RebasingCreditsPerTokenDesc = 'rebasingCreditsPerToken_DESC', - RebasingCreditsPerTokenDescNullsLast = 'rebasingCreditsPerToken_DESC_NULLS_LAST', + InterfaceAsc = 'interface_ASC', + InterfaceAscNullsFirst = 'interface_ASC_NULLS_FIRST', + InterfaceDesc = 'interface_DESC', + InterfaceDescNullsLast = 'interface_DESC_NULLS_LAST', + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', + SighashAsc = 'sighash_ASC', + SighashAscNullsFirst = 'sighash_ASC_NULLS_FIRST', + SighashDesc = 'sighash_DESC', + SighashDescNullsLast = 'sighash_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', + ToSymbolAsc = 'toSymbol_ASC', + ToSymbolAscNullsFirst = 'toSymbol_ASC_NULLS_FIRST', + ToSymbolDesc = 'toSymbol_DESC', + ToSymbolDescNullsLast = 'toSymbol_DESC_NULLS_LAST', TxHashAsc = 'txHash_ASC', TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', TxHashDesc = 'txHash_DESC', TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST' } -export type OusdapyWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - apr_eq?: InputMaybe; - apr_gt?: InputMaybe; - apr_gte?: InputMaybe; - apr_in?: InputMaybe>; - apr_isNull?: InputMaybe; - apr_lt?: InputMaybe; - apr_lte?: InputMaybe; - apr_not_eq?: InputMaybe; - apr_not_in?: InputMaybe>; - apy7DayAvg_eq?: InputMaybe; - apy7DayAvg_gt?: InputMaybe; - apy7DayAvg_gte?: InputMaybe; - apy7DayAvg_in?: InputMaybe>; - apy7DayAvg_isNull?: InputMaybe; - apy7DayAvg_lt?: InputMaybe; - apy7DayAvg_lte?: InputMaybe; - apy7DayAvg_not_eq?: InputMaybe; - apy7DayAvg_not_in?: InputMaybe>; - apy14DayAvg_eq?: InputMaybe; - apy14DayAvg_gt?: InputMaybe; - apy14DayAvg_gte?: InputMaybe; - apy14DayAvg_in?: InputMaybe>; - apy14DayAvg_isNull?: InputMaybe; - apy14DayAvg_lt?: InputMaybe; - apy14DayAvg_lte?: InputMaybe; - apy14DayAvg_not_eq?: InputMaybe; - apy14DayAvg_not_in?: InputMaybe>; - apy30DayAvg_eq?: InputMaybe; - apy30DayAvg_gt?: InputMaybe; - apy30DayAvg_gte?: InputMaybe; - apy30DayAvg_in?: InputMaybe>; - apy30DayAvg_isNull?: InputMaybe; - apy30DayAvg_lt?: InputMaybe; - apy30DayAvg_lte?: InputMaybe; - apy30DayAvg_not_eq?: InputMaybe; - apy30DayAvg_not_in?: InputMaybe>; - apy_eq?: InputMaybe; - apy_gt?: InputMaybe; - apy_gte?: InputMaybe; - apy_in?: InputMaybe>; - apy_isNull?: InputMaybe; - apy_lt?: InputMaybe; - apy_lte?: InputMaybe; - apy_not_eq?: InputMaybe; - apy_not_in?: InputMaybe>; +export type OTokenActivityWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + action_contains?: InputMaybe; + action_containsInsensitive?: InputMaybe; + action_endsWith?: InputMaybe; + action_eq?: InputMaybe; + action_gt?: InputMaybe; + action_gte?: InputMaybe; + action_in?: InputMaybe>; + action_isNull?: InputMaybe; + action_lt?: InputMaybe; + action_lte?: InputMaybe; + action_not_contains?: InputMaybe; + action_not_containsInsensitive?: InputMaybe; + action_not_endsWith?: InputMaybe; + action_not_eq?: InputMaybe; + action_not_in?: InputMaybe>; + action_not_startsWith?: InputMaybe; + action_startsWith?: InputMaybe; + address_contains?: InputMaybe; + address_containsInsensitive?: InputMaybe; + address_endsWith?: InputMaybe; + address_eq?: InputMaybe; + address_gt?: InputMaybe; + address_gte?: InputMaybe; + address_in?: InputMaybe>; + address_isNull?: InputMaybe; + address_lt?: InputMaybe; + address_lte?: InputMaybe; + address_not_contains?: InputMaybe; + address_not_containsInsensitive?: InputMaybe; + address_not_endsWith?: InputMaybe; + address_not_eq?: InputMaybe; + address_not_in?: InputMaybe>; + address_not_startsWith?: InputMaybe; + address_startsWith?: InputMaybe; + amount_eq?: InputMaybe; + amount_gt?: InputMaybe; + amount_gte?: InputMaybe; + amount_in?: InputMaybe>; + amount_isNull?: InputMaybe; + amount_lt?: InputMaybe; + amount_lte?: InputMaybe; + amount_not_eq?: InputMaybe; + amount_not_in?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -7836,6 +6622,66 @@ export type OusdapyWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; + callDataLast4Bytes_contains?: InputMaybe; + callDataLast4Bytes_containsInsensitive?: InputMaybe; + callDataLast4Bytes_endsWith?: InputMaybe; + callDataLast4Bytes_eq?: InputMaybe; + callDataLast4Bytes_gt?: InputMaybe; + callDataLast4Bytes_gte?: InputMaybe; + callDataLast4Bytes_in?: InputMaybe>; + callDataLast4Bytes_isNull?: InputMaybe; + callDataLast4Bytes_lt?: InputMaybe; + callDataLast4Bytes_lte?: InputMaybe; + callDataLast4Bytes_not_contains?: InputMaybe; + callDataLast4Bytes_not_containsInsensitive?: InputMaybe; + callDataLast4Bytes_not_endsWith?: InputMaybe; + callDataLast4Bytes_not_eq?: InputMaybe; + callDataLast4Bytes_not_in?: InputMaybe>; + callDataLast4Bytes_not_startsWith?: InputMaybe; + callDataLast4Bytes_startsWith?: InputMaybe; + chainId_eq?: InputMaybe; + chainId_gt?: InputMaybe; + chainId_gte?: InputMaybe; + chainId_in?: InputMaybe>; + chainId_isNull?: InputMaybe; + chainId_lt?: InputMaybe; + chainId_lte?: InputMaybe; + chainId_not_eq?: InputMaybe; + chainId_not_in?: InputMaybe>; + exchange_contains?: InputMaybe; + exchange_containsInsensitive?: InputMaybe; + exchange_endsWith?: InputMaybe; + exchange_eq?: InputMaybe; + exchange_gt?: InputMaybe; + exchange_gte?: InputMaybe; + exchange_in?: InputMaybe>; + exchange_isNull?: InputMaybe; + exchange_lt?: InputMaybe; + exchange_lte?: InputMaybe; + exchange_not_contains?: InputMaybe; + exchange_not_containsInsensitive?: InputMaybe; + exchange_not_endsWith?: InputMaybe; + exchange_not_eq?: InputMaybe; + exchange_not_in?: InputMaybe>; + exchange_not_startsWith?: InputMaybe; + exchange_startsWith?: InputMaybe; + fromSymbol_contains?: InputMaybe; + fromSymbol_containsInsensitive?: InputMaybe; + fromSymbol_endsWith?: InputMaybe; + fromSymbol_eq?: InputMaybe; + fromSymbol_gt?: InputMaybe; + fromSymbol_gte?: InputMaybe; + fromSymbol_in?: InputMaybe>; + fromSymbol_isNull?: InputMaybe; + fromSymbol_lt?: InputMaybe; + fromSymbol_lte?: InputMaybe; + fromSymbol_not_contains?: InputMaybe; + fromSymbol_not_containsInsensitive?: InputMaybe; + fromSymbol_not_endsWith?: InputMaybe; + fromSymbol_not_eq?: InputMaybe; + fromSymbol_not_in?: InputMaybe>; + fromSymbol_not_startsWith?: InputMaybe; + fromSymbol_startsWith?: InputMaybe; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -7853,15 +6699,57 @@ export type OusdapyWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - rebasingCreditsPerToken_eq?: InputMaybe; - rebasingCreditsPerToken_gt?: InputMaybe; - rebasingCreditsPerToken_gte?: InputMaybe; - rebasingCreditsPerToken_in?: InputMaybe>; - rebasingCreditsPerToken_isNull?: InputMaybe; - rebasingCreditsPerToken_lt?: InputMaybe; - rebasingCreditsPerToken_lte?: InputMaybe; - rebasingCreditsPerToken_not_eq?: InputMaybe; - rebasingCreditsPerToken_not_in?: InputMaybe>; + interface_contains?: InputMaybe; + interface_containsInsensitive?: InputMaybe; + interface_endsWith?: InputMaybe; + interface_eq?: InputMaybe; + interface_gt?: InputMaybe; + interface_gte?: InputMaybe; + interface_in?: InputMaybe>; + interface_isNull?: InputMaybe; + interface_lt?: InputMaybe; + interface_lte?: InputMaybe; + interface_not_contains?: InputMaybe; + interface_not_containsInsensitive?: InputMaybe; + interface_not_endsWith?: InputMaybe; + interface_not_eq?: InputMaybe; + interface_not_in?: InputMaybe>; + interface_not_startsWith?: InputMaybe; + interface_startsWith?: InputMaybe; + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; + sighash_contains?: InputMaybe; + sighash_containsInsensitive?: InputMaybe; + sighash_endsWith?: InputMaybe; + sighash_eq?: InputMaybe; + sighash_gt?: InputMaybe; + sighash_gte?: InputMaybe; + sighash_in?: InputMaybe>; + sighash_isNull?: InputMaybe; + sighash_lt?: InputMaybe; + sighash_lte?: InputMaybe; + sighash_not_contains?: InputMaybe; + sighash_not_containsInsensitive?: InputMaybe; + sighash_not_endsWith?: InputMaybe; + sighash_not_eq?: InputMaybe; + sighash_not_in?: InputMaybe>; + sighash_not_startsWith?: InputMaybe; + sighash_startsWith?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -7871,6 +6759,23 @@ export type OusdapyWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; + toSymbol_contains?: InputMaybe; + toSymbol_containsInsensitive?: InputMaybe; + toSymbol_endsWith?: InputMaybe; + toSymbol_eq?: InputMaybe; + toSymbol_gt?: InputMaybe; + toSymbol_gte?: InputMaybe; + toSymbol_in?: InputMaybe>; + toSymbol_isNull?: InputMaybe; + toSymbol_lt?: InputMaybe; + toSymbol_lte?: InputMaybe; + toSymbol_not_contains?: InputMaybe; + toSymbol_not_containsInsensitive?: InputMaybe; + toSymbol_not_endsWith?: InputMaybe; + toSymbol_not_eq?: InputMaybe; + toSymbol_not_in?: InputMaybe>; + toSymbol_not_startsWith?: InputMaybe; + toSymbol_startsWith?: InputMaybe; txHash_contains?: InputMaybe; txHash_containsInsensitive?: InputMaybe; txHash_endsWith?: InputMaybe; @@ -7890,84 +6795,264 @@ export type OusdapyWhereInput = { txHash_startsWith?: InputMaybe; }; -export type OusdaPiesConnection = { - __typename?: 'OUSDAPiesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; +export type OTokenAddress = { + __typename?: 'OTokenAddress'; + address: Scalars['String']['output']; + balance: Scalars['BigInt']['output']; + chainId: Scalars['Int']['output']; + credits: Scalars['BigInt']['output']; + earned: Scalars['BigInt']['output']; + history: Array; + id: Scalars['String']['output']; + isContract: Scalars['Boolean']['output']; + lastUpdated: Scalars['DateTime']['output']; + otoken: Scalars['String']['output']; + rebasingOption: RebasingOption; }; -export type OusdAaveStrategiesConnection = { - __typename?: 'OUSDAaveStrategiesConnection'; - edges: Array; + +export type OTokenAddressHistoryArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + +export type OTokenAddressEdge = { + __typename?: 'OTokenAddressEdge'; + cursor: Scalars['String']['output']; + node: OTokenAddress; +}; + +export enum OTokenAddressOrderByInput { + AddressAsc = 'address_ASC', + AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', + AddressDesc = 'address_DESC', + AddressDescNullsLast = 'address_DESC_NULLS_LAST', + BalanceAsc = 'balance_ASC', + BalanceAscNullsFirst = 'balance_ASC_NULLS_FIRST', + BalanceDesc = 'balance_DESC', + BalanceDescNullsLast = 'balance_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', + CreditsAsc = 'credits_ASC', + CreditsAscNullsFirst = 'credits_ASC_NULLS_FIRST', + CreditsDesc = 'credits_DESC', + CreditsDescNullsLast = 'credits_DESC_NULLS_LAST', + EarnedAsc = 'earned_ASC', + EarnedAscNullsFirst = 'earned_ASC_NULLS_FIRST', + EarnedDesc = 'earned_DESC', + EarnedDescNullsLast = 'earned_DESC_NULLS_LAST', + IdAsc = 'id_ASC', + IdAscNullsFirst = 'id_ASC_NULLS_FIRST', + IdDesc = 'id_DESC', + IdDescNullsLast = 'id_DESC_NULLS_LAST', + IsContractAsc = 'isContract_ASC', + IsContractAscNullsFirst = 'isContract_ASC_NULLS_FIRST', + IsContractDesc = 'isContract_DESC', + IsContractDescNullsLast = 'isContract_DESC_NULLS_LAST', + LastUpdatedAsc = 'lastUpdated_ASC', + LastUpdatedAscNullsFirst = 'lastUpdated_ASC_NULLS_FIRST', + LastUpdatedDesc = 'lastUpdated_DESC', + LastUpdatedDescNullsLast = 'lastUpdated_DESC_NULLS_LAST', + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', + RebasingOptionAsc = 'rebasingOption_ASC', + RebasingOptionAscNullsFirst = 'rebasingOption_ASC_NULLS_FIRST', + RebasingOptionDesc = 'rebasingOption_DESC', + RebasingOptionDescNullsLast = 'rebasingOption_DESC_NULLS_LAST' +} + +export type OTokenAddressWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + address_contains?: InputMaybe; + address_containsInsensitive?: InputMaybe; + address_endsWith?: InputMaybe; + address_eq?: InputMaybe; + address_gt?: InputMaybe; + address_gte?: InputMaybe; + address_in?: InputMaybe>; + address_isNull?: InputMaybe; + address_lt?: InputMaybe; + address_lte?: InputMaybe; + address_not_contains?: InputMaybe; + address_not_containsInsensitive?: InputMaybe; + address_not_endsWith?: InputMaybe; + address_not_eq?: InputMaybe; + address_not_in?: InputMaybe>; + address_not_startsWith?: InputMaybe; + address_startsWith?: InputMaybe; + balance_eq?: InputMaybe; + balance_gt?: InputMaybe; + balance_gte?: InputMaybe; + balance_in?: InputMaybe>; + balance_isNull?: InputMaybe; + balance_lt?: InputMaybe; + balance_lte?: InputMaybe; + balance_not_eq?: InputMaybe; + balance_not_in?: InputMaybe>; + chainId_eq?: InputMaybe; + chainId_gt?: InputMaybe; + chainId_gte?: InputMaybe; + chainId_in?: InputMaybe>; + chainId_isNull?: InputMaybe; + chainId_lt?: InputMaybe; + chainId_lte?: InputMaybe; + chainId_not_eq?: InputMaybe; + chainId_not_in?: InputMaybe>; + credits_eq?: InputMaybe; + credits_gt?: InputMaybe; + credits_gte?: InputMaybe; + credits_in?: InputMaybe>; + credits_isNull?: InputMaybe; + credits_lt?: InputMaybe; + credits_lte?: InputMaybe; + credits_not_eq?: InputMaybe; + credits_not_in?: InputMaybe>; + earned_eq?: InputMaybe; + earned_gt?: InputMaybe; + earned_gte?: InputMaybe; + earned_in?: InputMaybe>; + earned_isNull?: InputMaybe; + earned_lt?: InputMaybe; + earned_lte?: InputMaybe; + earned_not_eq?: InputMaybe; + earned_not_in?: InputMaybe>; + history_every?: InputMaybe; + history_none?: InputMaybe; + history_some?: InputMaybe; + id_contains?: InputMaybe; + id_containsInsensitive?: InputMaybe; + id_endsWith?: InputMaybe; + id_eq?: InputMaybe; + id_gt?: InputMaybe; + id_gte?: InputMaybe; + id_in?: InputMaybe>; + id_isNull?: InputMaybe; + id_lt?: InputMaybe; + id_lte?: InputMaybe; + id_not_contains?: InputMaybe; + id_not_containsInsensitive?: InputMaybe; + id_not_endsWith?: InputMaybe; + id_not_eq?: InputMaybe; + id_not_in?: InputMaybe>; + id_not_startsWith?: InputMaybe; + id_startsWith?: InputMaybe; + isContract_eq?: InputMaybe; + isContract_isNull?: InputMaybe; + isContract_not_eq?: InputMaybe; + lastUpdated_eq?: InputMaybe; + lastUpdated_gt?: InputMaybe; + lastUpdated_gte?: InputMaybe; + lastUpdated_in?: InputMaybe>; + lastUpdated_isNull?: InputMaybe; + lastUpdated_lt?: InputMaybe; + lastUpdated_lte?: InputMaybe; + lastUpdated_not_eq?: InputMaybe; + lastUpdated_not_in?: InputMaybe>; + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; + rebasingOption_eq?: InputMaybe; + rebasingOption_in?: InputMaybe>; + rebasingOption_isNull?: InputMaybe; + rebasingOption_not_eq?: InputMaybe; + rebasingOption_not_in?: InputMaybe>; +}; + +export type OTokenAddressesConnection = { + __typename?: 'OTokenAddressesConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export type OusdAaveStrategy = { - __typename?: 'OUSDAaveStrategy'; - blockNumber: Scalars['Int']['output']; - dai: Scalars['BigInt']['output']; +export type OTokenAsset = { + __typename?: 'OTokenAsset'; + address: Scalars['String']['output']; + chainId: Scalars['Int']['output']; id: Scalars['String']['output']; - timestamp: Scalars['DateTime']['output']; - usdc: Scalars['BigInt']['output']; - usdt: Scalars['BigInt']['output']; + otoken: Scalars['String']['output']; + symbol: Scalars['String']['output']; }; -export type OusdAaveStrategyEdge = { - __typename?: 'OUSDAaveStrategyEdge'; +export type OTokenAssetEdge = { + __typename?: 'OTokenAssetEdge'; cursor: Scalars['String']['output']; - node: OusdAaveStrategy; + node: OTokenAsset; }; -export enum OusdAaveStrategyOrderByInput { - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - DaiAsc = 'dai_ASC', - DaiAscNullsFirst = 'dai_ASC_NULLS_FIRST', - DaiDesc = 'dai_DESC', - DaiDescNullsLast = 'dai_DESC_NULLS_LAST', +export enum OTokenAssetOrderByInput { + AddressAsc = 'address_ASC', + AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', + AddressDesc = 'address_DESC', + AddressDescNullsLast = 'address_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - UsdcAsc = 'usdc_ASC', - UsdcAscNullsFirst = 'usdc_ASC_NULLS_FIRST', - UsdcDesc = 'usdc_DESC', - UsdcDescNullsLast = 'usdc_DESC_NULLS_LAST', - UsdtAsc = 'usdt_ASC', - UsdtAscNullsFirst = 'usdt_ASC_NULLS_FIRST', - UsdtDesc = 'usdt_DESC', - UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', + SymbolAsc = 'symbol_ASC', + SymbolAscNullsFirst = 'symbol_ASC_NULLS_FIRST', + SymbolDesc = 'symbol_DESC', + SymbolDescNullsLast = 'symbol_DESC_NULLS_LAST' } -export type OusdAaveStrategyWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - dai_eq?: InputMaybe; - dai_gt?: InputMaybe; - dai_gte?: InputMaybe; - dai_in?: InputMaybe>; - dai_isNull?: InputMaybe; - dai_lt?: InputMaybe; - dai_lte?: InputMaybe; - dai_not_eq?: InputMaybe; - dai_not_in?: InputMaybe>; +export type OTokenAssetWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + address_contains?: InputMaybe; + address_containsInsensitive?: InputMaybe; + address_endsWith?: InputMaybe; + address_eq?: InputMaybe; + address_gt?: InputMaybe; + address_gte?: InputMaybe; + address_in?: InputMaybe>; + address_isNull?: InputMaybe; + address_lt?: InputMaybe; + address_lte?: InputMaybe; + address_not_contains?: InputMaybe; + address_not_containsInsensitive?: InputMaybe; + address_not_endsWith?: InputMaybe; + address_not_eq?: InputMaybe; + address_not_in?: InputMaybe>; + address_not_startsWith?: InputMaybe; + address_startsWith?: InputMaybe; + chainId_eq?: InputMaybe; + chainId_gt?: InputMaybe; + chainId_gte?: InputMaybe; + chainId_in?: InputMaybe>; + chainId_isNull?: InputMaybe; + chainId_lt?: InputMaybe; + chainId_lte?: InputMaybe; + chainId_not_eq?: InputMaybe; + chainId_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -7985,226 +7070,193 @@ export type OusdAaveStrategyWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - timestamp_eq?: InputMaybe; - timestamp_gt?: InputMaybe; - timestamp_gte?: InputMaybe; - timestamp_in?: InputMaybe>; - timestamp_isNull?: InputMaybe; - timestamp_lt?: InputMaybe; - timestamp_lte?: InputMaybe; - timestamp_not_eq?: InputMaybe; - timestamp_not_in?: InputMaybe>; - usdc_eq?: InputMaybe; - usdc_gt?: InputMaybe; - usdc_gte?: InputMaybe; - usdc_in?: InputMaybe>; - usdc_isNull?: InputMaybe; - usdc_lt?: InputMaybe; - usdc_lte?: InputMaybe; - usdc_not_eq?: InputMaybe; - usdc_not_in?: InputMaybe>; - usdt_eq?: InputMaybe; - usdt_gt?: InputMaybe; - usdt_gte?: InputMaybe; - usdt_in?: InputMaybe>; - usdt_isNull?: InputMaybe; - usdt_lt?: InputMaybe; - usdt_lte?: InputMaybe; - usdt_not_eq?: InputMaybe; - usdt_not_in?: InputMaybe>; + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; + symbol_contains?: InputMaybe; + symbol_containsInsensitive?: InputMaybe; + symbol_endsWith?: InputMaybe; + symbol_eq?: InputMaybe; + symbol_gt?: InputMaybe; + symbol_gte?: InputMaybe; + symbol_in?: InputMaybe>; + symbol_isNull?: InputMaybe; + symbol_lt?: InputMaybe; + symbol_lte?: InputMaybe; + symbol_not_contains?: InputMaybe; + symbol_not_containsInsensitive?: InputMaybe; + symbol_not_endsWith?: InputMaybe; + symbol_not_eq?: InputMaybe; + symbol_not_in?: InputMaybe>; + symbol_not_startsWith?: InputMaybe; + symbol_startsWith?: InputMaybe; }; -export type OusdActivitiesConnection = { - __typename?: 'OUSDActivitiesConnection'; - edges: Array; +export type OTokenAssetsConnection = { + __typename?: 'OTokenAssetsConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export type OusdActivity = { - __typename?: 'OUSDActivity'; - action?: Maybe; - address?: Maybe; - amount?: Maybe; +export type OTokenEdge = { + __typename?: 'OTokenEdge'; + cursor: Scalars['String']['output']; + node: OToken; +}; + +export type OTokenHistoriesConnection = { + __typename?: 'OTokenHistoriesConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; +}; + +export type OTokenHistory = { + __typename?: 'OTokenHistory'; + address: OTokenAddress; + balance: Scalars['BigInt']['output']; blockNumber: Scalars['Int']['output']; - callDataLast4Bytes: Scalars['String']['output']; - exchange?: Maybe; - fromSymbol?: Maybe; + chainId: Scalars['Int']['output']; id: Scalars['String']['output']; - interface?: Maybe; - sighash?: Maybe; + otoken: Scalars['String']['output']; timestamp: Scalars['DateTime']['output']; - toSymbol?: Maybe; txHash: Scalars['String']['output']; + type: HistoryType; + value: Scalars['BigInt']['output']; }; -export type OusdActivityEdge = { - __typename?: 'OUSDActivityEdge'; +export type OTokenHistoryEdge = { + __typename?: 'OTokenHistoryEdge'; cursor: Scalars['String']['output']; - node: OusdActivity; + node: OTokenHistory; }; -export enum OusdActivityOrderByInput { - ActionAsc = 'action_ASC', - ActionAscNullsFirst = 'action_ASC_NULLS_FIRST', - ActionDesc = 'action_DESC', - ActionDescNullsLast = 'action_DESC_NULLS_LAST', - AddressAsc = 'address_ASC', - AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', - AddressDesc = 'address_DESC', - AddressDescNullsLast = 'address_DESC_NULLS_LAST', - AmountAsc = 'amount_ASC', - AmountAscNullsFirst = 'amount_ASC_NULLS_FIRST', - AmountDesc = 'amount_DESC', - AmountDescNullsLast = 'amount_DESC_NULLS_LAST', +export enum OTokenHistoryOrderByInput { + AddressAddressAsc = 'address_address_ASC', + AddressAddressAscNullsFirst = 'address_address_ASC_NULLS_FIRST', + AddressAddressDesc = 'address_address_DESC', + AddressAddressDescNullsLast = 'address_address_DESC_NULLS_LAST', + AddressBalanceAsc = 'address_balance_ASC', + AddressBalanceAscNullsFirst = 'address_balance_ASC_NULLS_FIRST', + AddressBalanceDesc = 'address_balance_DESC', + AddressBalanceDescNullsLast = 'address_balance_DESC_NULLS_LAST', + AddressChainIdAsc = 'address_chainId_ASC', + AddressChainIdAscNullsFirst = 'address_chainId_ASC_NULLS_FIRST', + AddressChainIdDesc = 'address_chainId_DESC', + AddressChainIdDescNullsLast = 'address_chainId_DESC_NULLS_LAST', + AddressCreditsAsc = 'address_credits_ASC', + AddressCreditsAscNullsFirst = 'address_credits_ASC_NULLS_FIRST', + AddressCreditsDesc = 'address_credits_DESC', + AddressCreditsDescNullsLast = 'address_credits_DESC_NULLS_LAST', + AddressEarnedAsc = 'address_earned_ASC', + AddressEarnedAscNullsFirst = 'address_earned_ASC_NULLS_FIRST', + AddressEarnedDesc = 'address_earned_DESC', + AddressEarnedDescNullsLast = 'address_earned_DESC_NULLS_LAST', + AddressIdAsc = 'address_id_ASC', + AddressIdAscNullsFirst = 'address_id_ASC_NULLS_FIRST', + AddressIdDesc = 'address_id_DESC', + AddressIdDescNullsLast = 'address_id_DESC_NULLS_LAST', + AddressIsContractAsc = 'address_isContract_ASC', + AddressIsContractAscNullsFirst = 'address_isContract_ASC_NULLS_FIRST', + AddressIsContractDesc = 'address_isContract_DESC', + AddressIsContractDescNullsLast = 'address_isContract_DESC_NULLS_LAST', + AddressLastUpdatedAsc = 'address_lastUpdated_ASC', + AddressLastUpdatedAscNullsFirst = 'address_lastUpdated_ASC_NULLS_FIRST', + AddressLastUpdatedDesc = 'address_lastUpdated_DESC', + AddressLastUpdatedDescNullsLast = 'address_lastUpdated_DESC_NULLS_LAST', + AddressOtokenAsc = 'address_otoken_ASC', + AddressOtokenAscNullsFirst = 'address_otoken_ASC_NULLS_FIRST', + AddressOtokenDesc = 'address_otoken_DESC', + AddressOtokenDescNullsLast = 'address_otoken_DESC_NULLS_LAST', + AddressRebasingOptionAsc = 'address_rebasingOption_ASC', + AddressRebasingOptionAscNullsFirst = 'address_rebasingOption_ASC_NULLS_FIRST', + AddressRebasingOptionDesc = 'address_rebasingOption_DESC', + AddressRebasingOptionDescNullsLast = 'address_rebasingOption_DESC_NULLS_LAST', + BalanceAsc = 'balance_ASC', + BalanceAscNullsFirst = 'balance_ASC_NULLS_FIRST', + BalanceDesc = 'balance_DESC', + BalanceDescNullsLast = 'balance_DESC_NULLS_LAST', BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - CallDataLast4BytesAsc = 'callDataLast4Bytes_ASC', - CallDataLast4BytesAscNullsFirst = 'callDataLast4Bytes_ASC_NULLS_FIRST', - CallDataLast4BytesDesc = 'callDataLast4Bytes_DESC', - CallDataLast4BytesDescNullsLast = 'callDataLast4Bytes_DESC_NULLS_LAST', - ExchangeAsc = 'exchange_ASC', - ExchangeAscNullsFirst = 'exchange_ASC_NULLS_FIRST', - ExchangeDesc = 'exchange_DESC', - ExchangeDescNullsLast = 'exchange_DESC_NULLS_LAST', - FromSymbolAsc = 'fromSymbol_ASC', - FromSymbolAscNullsFirst = 'fromSymbol_ASC_NULLS_FIRST', - FromSymbolDesc = 'fromSymbol_DESC', - FromSymbolDescNullsLast = 'fromSymbol_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - InterfaceAsc = 'interface_ASC', - InterfaceAscNullsFirst = 'interface_ASC_NULLS_FIRST', - InterfaceDesc = 'interface_DESC', - InterfaceDescNullsLast = 'interface_DESC_NULLS_LAST', - SighashAsc = 'sighash_ASC', - SighashAscNullsFirst = 'sighash_ASC_NULLS_FIRST', - SighashDesc = 'sighash_DESC', - SighashDescNullsLast = 'sighash_DESC_NULLS_LAST', + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - ToSymbolAsc = 'toSymbol_ASC', - ToSymbolAscNullsFirst = 'toSymbol_ASC_NULLS_FIRST', - ToSymbolDesc = 'toSymbol_DESC', - ToSymbolDescNullsLast = 'toSymbol_DESC_NULLS_LAST', TxHashAsc = 'txHash_ASC', TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST' -} - -export type OusdActivityWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - action_contains?: InputMaybe; - action_containsInsensitive?: InputMaybe; - action_endsWith?: InputMaybe; - action_eq?: InputMaybe; - action_gt?: InputMaybe; - action_gte?: InputMaybe; - action_in?: InputMaybe>; - action_isNull?: InputMaybe; - action_lt?: InputMaybe; - action_lte?: InputMaybe; - action_not_contains?: InputMaybe; - action_not_containsInsensitive?: InputMaybe; - action_not_endsWith?: InputMaybe; - action_not_eq?: InputMaybe; - action_not_in?: InputMaybe>; - action_not_startsWith?: InputMaybe; - action_startsWith?: InputMaybe; - address_contains?: InputMaybe; - address_containsInsensitive?: InputMaybe; - address_endsWith?: InputMaybe; - address_eq?: InputMaybe; - address_gt?: InputMaybe; - address_gte?: InputMaybe; - address_in?: InputMaybe>; - address_isNull?: InputMaybe; - address_lt?: InputMaybe; - address_lte?: InputMaybe; - address_not_contains?: InputMaybe; - address_not_containsInsensitive?: InputMaybe; - address_not_endsWith?: InputMaybe; - address_not_eq?: InputMaybe; - address_not_in?: InputMaybe>; - address_not_startsWith?: InputMaybe; - address_startsWith?: InputMaybe; - amount_eq?: InputMaybe; - amount_gt?: InputMaybe; - amount_gte?: InputMaybe; - amount_in?: InputMaybe>; - amount_isNull?: InputMaybe; - amount_lt?: InputMaybe; - amount_lte?: InputMaybe; - amount_not_eq?: InputMaybe; - amount_not_in?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - callDataLast4Bytes_contains?: InputMaybe; - callDataLast4Bytes_containsInsensitive?: InputMaybe; - callDataLast4Bytes_endsWith?: InputMaybe; - callDataLast4Bytes_eq?: InputMaybe; - callDataLast4Bytes_gt?: InputMaybe; - callDataLast4Bytes_gte?: InputMaybe; - callDataLast4Bytes_in?: InputMaybe>; - callDataLast4Bytes_isNull?: InputMaybe; - callDataLast4Bytes_lt?: InputMaybe; - callDataLast4Bytes_lte?: InputMaybe; - callDataLast4Bytes_not_contains?: InputMaybe; - callDataLast4Bytes_not_containsInsensitive?: InputMaybe; - callDataLast4Bytes_not_endsWith?: InputMaybe; - callDataLast4Bytes_not_eq?: InputMaybe; - callDataLast4Bytes_not_in?: InputMaybe>; - callDataLast4Bytes_not_startsWith?: InputMaybe; - callDataLast4Bytes_startsWith?: InputMaybe; - exchange_contains?: InputMaybe; - exchange_containsInsensitive?: InputMaybe; - exchange_endsWith?: InputMaybe; - exchange_eq?: InputMaybe; - exchange_gt?: InputMaybe; - exchange_gte?: InputMaybe; - exchange_in?: InputMaybe>; - exchange_isNull?: InputMaybe; - exchange_lt?: InputMaybe; - exchange_lte?: InputMaybe; - exchange_not_contains?: InputMaybe; - exchange_not_containsInsensitive?: InputMaybe; - exchange_not_endsWith?: InputMaybe; - exchange_not_eq?: InputMaybe; - exchange_not_in?: InputMaybe>; - exchange_not_startsWith?: InputMaybe; - exchange_startsWith?: InputMaybe; - fromSymbol_contains?: InputMaybe; - fromSymbol_containsInsensitive?: InputMaybe; - fromSymbol_endsWith?: InputMaybe; - fromSymbol_eq?: InputMaybe; - fromSymbol_gt?: InputMaybe; - fromSymbol_gte?: InputMaybe; - fromSymbol_in?: InputMaybe>; - fromSymbol_isNull?: InputMaybe; - fromSymbol_lt?: InputMaybe; - fromSymbol_lte?: InputMaybe; - fromSymbol_not_contains?: InputMaybe; - fromSymbol_not_containsInsensitive?: InputMaybe; - fromSymbol_not_endsWith?: InputMaybe; - fromSymbol_not_eq?: InputMaybe; - fromSymbol_not_in?: InputMaybe>; - fromSymbol_not_startsWith?: InputMaybe; - fromSymbol_startsWith?: InputMaybe; + TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST', + TypeAsc = 'type_ASC', + TypeAscNullsFirst = 'type_ASC_NULLS_FIRST', + TypeDesc = 'type_DESC', + TypeDescNullsLast = 'type_DESC_NULLS_LAST', + ValueAsc = 'value_ASC', + ValueAscNullsFirst = 'value_ASC_NULLS_FIRST', + ValueDesc = 'value_DESC', + ValueDescNullsLast = 'value_DESC_NULLS_LAST' +} + +export type OTokenHistoryWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + address?: InputMaybe; + address_isNull?: InputMaybe; + balance_eq?: InputMaybe; + balance_gt?: InputMaybe; + balance_gte?: InputMaybe; + balance_in?: InputMaybe>; + balance_isNull?: InputMaybe; + balance_lt?: InputMaybe; + balance_lte?: InputMaybe; + balance_not_eq?: InputMaybe; + balance_not_in?: InputMaybe>; + blockNumber_eq?: InputMaybe; + blockNumber_gt?: InputMaybe; + blockNumber_gte?: InputMaybe; + blockNumber_in?: InputMaybe>; + blockNumber_isNull?: InputMaybe; + blockNumber_lt?: InputMaybe; + blockNumber_lte?: InputMaybe; + blockNumber_not_eq?: InputMaybe; + blockNumber_not_in?: InputMaybe>; + chainId_eq?: InputMaybe; + chainId_gt?: InputMaybe; + chainId_gte?: InputMaybe; + chainId_in?: InputMaybe>; + chainId_isNull?: InputMaybe; + chainId_lt?: InputMaybe; + chainId_lte?: InputMaybe; + chainId_not_eq?: InputMaybe; + chainId_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -8222,40 +7274,23 @@ export type OusdActivityWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - interface_contains?: InputMaybe; - interface_containsInsensitive?: InputMaybe; - interface_endsWith?: InputMaybe; - interface_eq?: InputMaybe; - interface_gt?: InputMaybe; - interface_gte?: InputMaybe; - interface_in?: InputMaybe>; - interface_isNull?: InputMaybe; - interface_lt?: InputMaybe; - interface_lte?: InputMaybe; - interface_not_contains?: InputMaybe; - interface_not_containsInsensitive?: InputMaybe; - interface_not_endsWith?: InputMaybe; - interface_not_eq?: InputMaybe; - interface_not_in?: InputMaybe>; - interface_not_startsWith?: InputMaybe; - interface_startsWith?: InputMaybe; - sighash_contains?: InputMaybe; - sighash_containsInsensitive?: InputMaybe; - sighash_endsWith?: InputMaybe; - sighash_eq?: InputMaybe; - sighash_gt?: InputMaybe; - sighash_gte?: InputMaybe; - sighash_in?: InputMaybe>; - sighash_isNull?: InputMaybe; - sighash_lt?: InputMaybe; - sighash_lte?: InputMaybe; - sighash_not_contains?: InputMaybe; - sighash_not_containsInsensitive?: InputMaybe; - sighash_not_endsWith?: InputMaybe; - sighash_not_eq?: InputMaybe; - sighash_not_in?: InputMaybe>; - sighash_not_startsWith?: InputMaybe; - sighash_startsWith?: InputMaybe; + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -8265,23 +7300,6 @@ export type OusdActivityWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - toSymbol_contains?: InputMaybe; - toSymbol_containsInsensitive?: InputMaybe; - toSymbol_endsWith?: InputMaybe; - toSymbol_eq?: InputMaybe; - toSymbol_gt?: InputMaybe; - toSymbol_gte?: InputMaybe; - toSymbol_in?: InputMaybe>; - toSymbol_isNull?: InputMaybe; - toSymbol_lt?: InputMaybe; - toSymbol_lte?: InputMaybe; - toSymbol_not_contains?: InputMaybe; - toSymbol_not_containsInsensitive?: InputMaybe; - toSymbol_not_endsWith?: InputMaybe; - toSymbol_not_eq?: InputMaybe; - toSymbol_not_in?: InputMaybe>; - toSymbol_not_startsWith?: InputMaybe; - toSymbol_startsWith?: InputMaybe; txHash_contains?: InputMaybe; txHash_containsInsensitive?: InputMaybe; txHash_endsWith?: InputMaybe; @@ -8299,191 +7317,193 @@ export type OusdActivityWhereInput = { txHash_not_in?: InputMaybe>; txHash_not_startsWith?: InputMaybe; txHash_startsWith?: InputMaybe; + type_eq?: InputMaybe; + type_in?: InputMaybe>; + type_isNull?: InputMaybe; + type_not_eq?: InputMaybe; + type_not_in?: InputMaybe>; + value_eq?: InputMaybe; + value_gt?: InputMaybe; + value_gte?: InputMaybe; + value_in?: InputMaybe>; + value_isNull?: InputMaybe; + value_lt?: InputMaybe; + value_lte?: InputMaybe; + value_not_eq?: InputMaybe; + value_not_in?: InputMaybe>; }; -/** The OUSD balance, history and other information for a given address. */ -export type OusdAddress = { - __typename?: 'OUSDAddress'; - balance: Scalars['BigInt']['output']; - credits: Scalars['BigInt']['output']; - earned: Scalars['BigInt']['output']; - history: Array; - id: Scalars['String']['output']; - isContract: Scalars['Boolean']['output']; - lastUpdated: Scalars['DateTime']['output']; - rebasingOption: RebasingOption; -}; - - -/** The OUSD balance, history and other information for a given address. */ -export type OusdAddressHistoryArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - -export type OusdAddressEdge = { - __typename?: 'OUSDAddressEdge'; - cursor: Scalars['String']['output']; - node: OusdAddress; -}; - -export enum OusdAddressOrderByInput { - BalanceAsc = 'balance_ASC', - BalanceAscNullsFirst = 'balance_ASC_NULLS_FIRST', - BalanceDesc = 'balance_DESC', - BalanceDescNullsLast = 'balance_DESC_NULLS_LAST', - CreditsAsc = 'credits_ASC', - CreditsAscNullsFirst = 'credits_ASC_NULLS_FIRST', - CreditsDesc = 'credits_DESC', - CreditsDescNullsLast = 'credits_DESC_NULLS_LAST', - EarnedAsc = 'earned_ASC', - EarnedAscNullsFirst = 'earned_ASC_NULLS_FIRST', - EarnedDesc = 'earned_DESC', - EarnedDescNullsLast = 'earned_DESC_NULLS_LAST', +export enum OTokenOrderByInput { + BlockNumberAsc = 'blockNumber_ASC', + BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', + BlockNumberDesc = 'blockNumber_DESC', + BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - IsContractAsc = 'isContract_ASC', - IsContractAscNullsFirst = 'isContract_ASC_NULLS_FIRST', - IsContractDesc = 'isContract_DESC', - IsContractDescNullsLast = 'isContract_DESC_NULLS_LAST', - LastUpdatedAsc = 'lastUpdated_ASC', - LastUpdatedAscNullsFirst = 'lastUpdated_ASC_NULLS_FIRST', - LastUpdatedDesc = 'lastUpdated_DESC', - LastUpdatedDescNullsLast = 'lastUpdated_DESC_NULLS_LAST', - RebasingOptionAsc = 'rebasingOption_ASC', - RebasingOptionAscNullsFirst = 'rebasingOption_ASC_NULLS_FIRST', - RebasingOptionDesc = 'rebasingOption_DESC', - RebasingOptionDescNullsLast = 'rebasingOption_DESC_NULLS_LAST' + NonRebasingSupplyAsc = 'nonRebasingSupply_ASC', + NonRebasingSupplyAscNullsFirst = 'nonRebasingSupply_ASC_NULLS_FIRST', + NonRebasingSupplyDesc = 'nonRebasingSupply_DESC', + NonRebasingSupplyDescNullsLast = 'nonRebasingSupply_DESC_NULLS_LAST', + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', + RebasingSupplyAsc = 'rebasingSupply_ASC', + RebasingSupplyAscNullsFirst = 'rebasingSupply_ASC_NULLS_FIRST', + RebasingSupplyDesc = 'rebasingSupply_DESC', + RebasingSupplyDescNullsLast = 'rebasingSupply_DESC_NULLS_LAST', + TimestampAsc = 'timestamp_ASC', + TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', + TimestampDesc = 'timestamp_DESC', + TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', + TotalSupplyAsc = 'totalSupply_ASC', + TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', + TotalSupplyDesc = 'totalSupply_DESC', + TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST' } -export type OusdAddressWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - balance_eq?: InputMaybe; - balance_gt?: InputMaybe; - balance_gte?: InputMaybe; - balance_in?: InputMaybe>; - balance_isNull?: InputMaybe; - balance_lt?: InputMaybe; - balance_lte?: InputMaybe; - balance_not_eq?: InputMaybe; - balance_not_in?: InputMaybe>; - credits_eq?: InputMaybe; - credits_gt?: InputMaybe; - credits_gte?: InputMaybe; - credits_in?: InputMaybe>; - credits_isNull?: InputMaybe; - credits_lt?: InputMaybe; - credits_lte?: InputMaybe; - credits_not_eq?: InputMaybe; - credits_not_in?: InputMaybe>; - earned_eq?: InputMaybe; - earned_gt?: InputMaybe; - earned_gte?: InputMaybe; - earned_in?: InputMaybe>; - earned_isNull?: InputMaybe; - earned_lt?: InputMaybe; - earned_lte?: InputMaybe; - earned_not_eq?: InputMaybe; - earned_not_in?: InputMaybe>; - history_every?: InputMaybe; - history_none?: InputMaybe; - history_some?: InputMaybe; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - isContract_eq?: InputMaybe; - isContract_isNull?: InputMaybe; - isContract_not_eq?: InputMaybe; - lastUpdated_eq?: InputMaybe; - lastUpdated_gt?: InputMaybe; - lastUpdated_gte?: InputMaybe; - lastUpdated_in?: InputMaybe>; - lastUpdated_isNull?: InputMaybe; - lastUpdated_lt?: InputMaybe; - lastUpdated_lte?: InputMaybe; - lastUpdated_not_eq?: InputMaybe; - lastUpdated_not_in?: InputMaybe>; - rebasingOption_eq?: InputMaybe; - rebasingOption_in?: InputMaybe>; - rebasingOption_isNull?: InputMaybe; - rebasingOption_not_eq?: InputMaybe; - rebasingOption_not_in?: InputMaybe>; +export type OTokenRebase = { + __typename?: 'OTokenRebase'; + apy: OTokenApy; + blockNumber: Scalars['Int']['output']; + chainId: Scalars['Int']['output']; + feeETH: Scalars['BigInt']['output']; + feeUSD: Scalars['BigInt']['output']; + id: Scalars['String']['output']; + otoken: Scalars['String']['output']; + rebasingCredits: Scalars['BigInt']['output']; + rebasingCreditsPerToken: Scalars['BigInt']['output']; + timestamp: Scalars['DateTime']['output']; + totalSupply: Scalars['BigInt']['output']; + txHash: Scalars['String']['output']; + yieldETH: Scalars['BigInt']['output']; + yieldUSD: Scalars['BigInt']['output']; }; -export type OusdAddressesConnection = { - __typename?: 'OUSDAddressesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; +export type OTokenRebaseEdge = { + __typename?: 'OTokenRebaseEdge'; + cursor: Scalars['String']['output']; + node: OTokenRebase; }; -export type OusdAsset = { - __typename?: 'OUSDAsset'; - address: Scalars['String']['output']; +export type OTokenRebaseOption = { + __typename?: 'OTokenRebaseOption'; + address: OTokenAddress; + blockNumber: Scalars['Int']['output']; + chainId: Scalars['Int']['output']; id: Scalars['String']['output']; - symbol: Scalars['String']['output']; + otoken: Scalars['String']['output']; + status: RebasingOption; + timestamp: Scalars['DateTime']['output']; + txHash: Scalars['String']['output']; }; -export type OusdAssetEdge = { - __typename?: 'OUSDAssetEdge'; +export type OTokenRebaseOptionEdge = { + __typename?: 'OTokenRebaseOptionEdge'; cursor: Scalars['String']['output']; - node: OusdAsset; + node: OTokenRebaseOption; }; -export enum OusdAssetOrderByInput { - AddressAsc = 'address_ASC', - AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', - AddressDesc = 'address_DESC', - AddressDescNullsLast = 'address_DESC_NULLS_LAST', +export enum OTokenRebaseOptionOrderByInput { + AddressAddressAsc = 'address_address_ASC', + AddressAddressAscNullsFirst = 'address_address_ASC_NULLS_FIRST', + AddressAddressDesc = 'address_address_DESC', + AddressAddressDescNullsLast = 'address_address_DESC_NULLS_LAST', + AddressBalanceAsc = 'address_balance_ASC', + AddressBalanceAscNullsFirst = 'address_balance_ASC_NULLS_FIRST', + AddressBalanceDesc = 'address_balance_DESC', + AddressBalanceDescNullsLast = 'address_balance_DESC_NULLS_LAST', + AddressChainIdAsc = 'address_chainId_ASC', + AddressChainIdAscNullsFirst = 'address_chainId_ASC_NULLS_FIRST', + AddressChainIdDesc = 'address_chainId_DESC', + AddressChainIdDescNullsLast = 'address_chainId_DESC_NULLS_LAST', + AddressCreditsAsc = 'address_credits_ASC', + AddressCreditsAscNullsFirst = 'address_credits_ASC_NULLS_FIRST', + AddressCreditsDesc = 'address_credits_DESC', + AddressCreditsDescNullsLast = 'address_credits_DESC_NULLS_LAST', + AddressEarnedAsc = 'address_earned_ASC', + AddressEarnedAscNullsFirst = 'address_earned_ASC_NULLS_FIRST', + AddressEarnedDesc = 'address_earned_DESC', + AddressEarnedDescNullsLast = 'address_earned_DESC_NULLS_LAST', + AddressIdAsc = 'address_id_ASC', + AddressIdAscNullsFirst = 'address_id_ASC_NULLS_FIRST', + AddressIdDesc = 'address_id_DESC', + AddressIdDescNullsLast = 'address_id_DESC_NULLS_LAST', + AddressIsContractAsc = 'address_isContract_ASC', + AddressIsContractAscNullsFirst = 'address_isContract_ASC_NULLS_FIRST', + AddressIsContractDesc = 'address_isContract_DESC', + AddressIsContractDescNullsLast = 'address_isContract_DESC_NULLS_LAST', + AddressLastUpdatedAsc = 'address_lastUpdated_ASC', + AddressLastUpdatedAscNullsFirst = 'address_lastUpdated_ASC_NULLS_FIRST', + AddressLastUpdatedDesc = 'address_lastUpdated_DESC', + AddressLastUpdatedDescNullsLast = 'address_lastUpdated_DESC_NULLS_LAST', + AddressOtokenAsc = 'address_otoken_ASC', + AddressOtokenAscNullsFirst = 'address_otoken_ASC_NULLS_FIRST', + AddressOtokenDesc = 'address_otoken_DESC', + AddressOtokenDescNullsLast = 'address_otoken_DESC_NULLS_LAST', + AddressRebasingOptionAsc = 'address_rebasingOption_ASC', + AddressRebasingOptionAscNullsFirst = 'address_rebasingOption_ASC_NULLS_FIRST', + AddressRebasingOptionDesc = 'address_rebasingOption_DESC', + AddressRebasingOptionDescNullsLast = 'address_rebasingOption_DESC_NULLS_LAST', + BlockNumberAsc = 'blockNumber_ASC', + BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', + BlockNumberDesc = 'blockNumber_DESC', + BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - SymbolAsc = 'symbol_ASC', - SymbolAscNullsFirst = 'symbol_ASC_NULLS_FIRST', - SymbolDesc = 'symbol_DESC', - SymbolDescNullsLast = 'symbol_DESC_NULLS_LAST' + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', + StatusAsc = 'status_ASC', + StatusAscNullsFirst = 'status_ASC_NULLS_FIRST', + StatusDesc = 'status_DESC', + StatusDescNullsLast = 'status_DESC_NULLS_LAST', + TimestampAsc = 'timestamp_ASC', + TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', + TimestampDesc = 'timestamp_DESC', + TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', + TxHashAsc = 'txHash_ASC', + TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', + TxHashDesc = 'txHash_DESC', + TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST' } -export type OusdAssetWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - address_contains?: InputMaybe; - address_containsInsensitive?: InputMaybe; - address_endsWith?: InputMaybe; - address_eq?: InputMaybe; - address_gt?: InputMaybe; - address_gte?: InputMaybe; - address_in?: InputMaybe>; +export type OTokenRebaseOptionWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + address?: InputMaybe; address_isNull?: InputMaybe; - address_lt?: InputMaybe; - address_lte?: InputMaybe; - address_not_contains?: InputMaybe; - address_not_containsInsensitive?: InputMaybe; - address_not_endsWith?: InputMaybe; - address_not_eq?: InputMaybe; - address_not_in?: InputMaybe>; - address_not_startsWith?: InputMaybe; - address_startsWith?: InputMaybe; + blockNumber_eq?: InputMaybe; + blockNumber_gt?: InputMaybe; + blockNumber_gte?: InputMaybe; + blockNumber_in?: InputMaybe>; + blockNumber_isNull?: InputMaybe; + blockNumber_lt?: InputMaybe; + blockNumber_lte?: InputMaybe; + blockNumber_not_eq?: InputMaybe; + blockNumber_not_in?: InputMaybe>; + chainId_eq?: InputMaybe; + chainId_gt?: InputMaybe; + chainId_gte?: InputMaybe; + chainId_in?: InputMaybe>; + chainId_isNull?: InputMaybe; + chainId_lt?: InputMaybe; + chainId_lte?: InputMaybe; + chainId_not_eq?: InputMaybe; + chainId_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -8501,209 +7521,211 @@ export type OusdAssetWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - symbol_contains?: InputMaybe; - symbol_containsInsensitive?: InputMaybe; - symbol_endsWith?: InputMaybe; - symbol_eq?: InputMaybe; - symbol_gt?: InputMaybe; - symbol_gte?: InputMaybe; - symbol_in?: InputMaybe>; - symbol_isNull?: InputMaybe; - symbol_lt?: InputMaybe; - symbol_lte?: InputMaybe; - symbol_not_contains?: InputMaybe; - symbol_not_containsInsensitive?: InputMaybe; - symbol_not_endsWith?: InputMaybe; - symbol_not_eq?: InputMaybe; - symbol_not_in?: InputMaybe>; - symbol_not_startsWith?: InputMaybe; - symbol_startsWith?: InputMaybe; -}; - -export type OusdAssetsConnection = { - __typename?: 'OUSDAssetsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OusdCollateralDailyStat = { - __typename?: 'OUSDCollateralDailyStat'; - amount: Scalars['BigInt']['output']; - dailyStatId: OusdDailyStat; - id: Scalars['String']['output']; - price: Scalars['BigInt']['output']; - symbol: Scalars['String']['output']; - value: Scalars['BigInt']['output']; -}; - -export type OusdCollateralDailyStatEdge = { - __typename?: 'OUSDCollateralDailyStatEdge'; - cursor: Scalars['String']['output']; - node: OusdCollateralDailyStat; -}; - -export enum OusdCollateralDailyStatOrderByInput { - AmountAsc = 'amount_ASC', - AmountAscNullsFirst = 'amount_ASC_NULLS_FIRST', - AmountDesc = 'amount_DESC', - AmountDescNullsLast = 'amount_DESC_NULLS_LAST', - DailyStatIdAmoSupplyAsc = 'dailyStatId_amoSupply_ASC', - DailyStatIdAmoSupplyAscNullsFirst = 'dailyStatId_amoSupply_ASC_NULLS_FIRST', - DailyStatIdAmoSupplyDesc = 'dailyStatId_amoSupply_DESC', - DailyStatIdAmoSupplyDescNullsLast = 'dailyStatId_amoSupply_DESC_NULLS_LAST', - DailyStatIdAprAsc = 'dailyStatId_apr_ASC', - DailyStatIdAprAscNullsFirst = 'dailyStatId_apr_ASC_NULLS_FIRST', - DailyStatIdAprDesc = 'dailyStatId_apr_DESC', - DailyStatIdAprDescNullsLast = 'dailyStatId_apr_DESC_NULLS_LAST', - DailyStatIdApy7DayAvgAsc = 'dailyStatId_apy7DayAvg_ASC', - DailyStatIdApy7DayAvgAscNullsFirst = 'dailyStatId_apy7DayAvg_ASC_NULLS_FIRST', - DailyStatIdApy7DayAvgDesc = 'dailyStatId_apy7DayAvg_DESC', - DailyStatIdApy7DayAvgDescNullsLast = 'dailyStatId_apy7DayAvg_DESC_NULLS_LAST', - DailyStatIdApy14DayAvgAsc = 'dailyStatId_apy14DayAvg_ASC', - DailyStatIdApy14DayAvgAscNullsFirst = 'dailyStatId_apy14DayAvg_ASC_NULLS_FIRST', - DailyStatIdApy14DayAvgDesc = 'dailyStatId_apy14DayAvg_DESC', - DailyStatIdApy14DayAvgDescNullsLast = 'dailyStatId_apy14DayAvg_DESC_NULLS_LAST', - DailyStatIdApy30DayAvgAsc = 'dailyStatId_apy30DayAvg_ASC', - DailyStatIdApy30DayAvgAscNullsFirst = 'dailyStatId_apy30DayAvg_ASC_NULLS_FIRST', - DailyStatIdApy30DayAvgDesc = 'dailyStatId_apy30DayAvg_DESC', - DailyStatIdApy30DayAvgDescNullsLast = 'dailyStatId_apy30DayAvg_DESC_NULLS_LAST', - DailyStatIdApyAsc = 'dailyStatId_apy_ASC', - DailyStatIdApyAscNullsFirst = 'dailyStatId_apy_ASC_NULLS_FIRST', - DailyStatIdApyDesc = 'dailyStatId_apy_DESC', - DailyStatIdApyDescNullsLast = 'dailyStatId_apy_DESC_NULLS_LAST', - DailyStatIdBlockNumberAsc = 'dailyStatId_blockNumber_ASC', - DailyStatIdBlockNumberAscNullsFirst = 'dailyStatId_blockNumber_ASC_NULLS_FIRST', - DailyStatIdBlockNumberDesc = 'dailyStatId_blockNumber_DESC', - DailyStatIdBlockNumberDescNullsLast = 'dailyStatId_blockNumber_DESC_NULLS_LAST', - DailyStatIdDripperWethAsc = 'dailyStatId_dripperWETH_ASC', - DailyStatIdDripperWethAscNullsFirst = 'dailyStatId_dripperWETH_ASC_NULLS_FIRST', - DailyStatIdDripperWethDesc = 'dailyStatId_dripperWETH_DESC', - DailyStatIdDripperWethDescNullsLast = 'dailyStatId_dripperWETH_DESC_NULLS_LAST', - DailyStatIdFeesEth7DayAsc = 'dailyStatId_feesETH7Day_ASC', - DailyStatIdFeesEth7DayAscNullsFirst = 'dailyStatId_feesETH7Day_ASC_NULLS_FIRST', - DailyStatIdFeesEth7DayDesc = 'dailyStatId_feesETH7Day_DESC', - DailyStatIdFeesEth7DayDescNullsLast = 'dailyStatId_feesETH7Day_DESC_NULLS_LAST', - DailyStatIdFeesEthAllTimeAsc = 'dailyStatId_feesETHAllTime_ASC', - DailyStatIdFeesEthAllTimeAscNullsFirst = 'dailyStatId_feesETHAllTime_ASC_NULLS_FIRST', - DailyStatIdFeesEthAllTimeDesc = 'dailyStatId_feesETHAllTime_DESC', - DailyStatIdFeesEthAllTimeDescNullsLast = 'dailyStatId_feesETHAllTime_DESC_NULLS_LAST', - DailyStatIdFeesEthAsc = 'dailyStatId_feesETH_ASC', - DailyStatIdFeesEthAscNullsFirst = 'dailyStatId_feesETH_ASC_NULLS_FIRST', - DailyStatIdFeesEthDesc = 'dailyStatId_feesETH_DESC', - DailyStatIdFeesEthDescNullsLast = 'dailyStatId_feesETH_DESC_NULLS_LAST', - DailyStatIdFeesUsd7DayAsc = 'dailyStatId_feesUSD7Day_ASC', - DailyStatIdFeesUsd7DayAscNullsFirst = 'dailyStatId_feesUSD7Day_ASC_NULLS_FIRST', - DailyStatIdFeesUsd7DayDesc = 'dailyStatId_feesUSD7Day_DESC', - DailyStatIdFeesUsd7DayDescNullsLast = 'dailyStatId_feesUSD7Day_DESC_NULLS_LAST', - DailyStatIdFeesUsdAllTimeAsc = 'dailyStatId_feesUSDAllTime_ASC', - DailyStatIdFeesUsdAllTimeAscNullsFirst = 'dailyStatId_feesUSDAllTime_ASC_NULLS_FIRST', - DailyStatIdFeesUsdAllTimeDesc = 'dailyStatId_feesUSDAllTime_DESC', - DailyStatIdFeesUsdAllTimeDescNullsLast = 'dailyStatId_feesUSDAllTime_DESC_NULLS_LAST', - DailyStatIdFeesUsdAsc = 'dailyStatId_feesUSD_ASC', - DailyStatIdFeesUsdAscNullsFirst = 'dailyStatId_feesUSD_ASC_NULLS_FIRST', - DailyStatIdFeesUsdDesc = 'dailyStatId_feesUSD_DESC', - DailyStatIdFeesUsdDescNullsLast = 'dailyStatId_feesUSD_DESC_NULLS_LAST', - DailyStatIdHoldersOverThresholdAsc = 'dailyStatId_holdersOverThreshold_ASC', - DailyStatIdHoldersOverThresholdAscNullsFirst = 'dailyStatId_holdersOverThreshold_ASC_NULLS_FIRST', - DailyStatIdHoldersOverThresholdDesc = 'dailyStatId_holdersOverThreshold_DESC', - DailyStatIdHoldersOverThresholdDescNullsLast = 'dailyStatId_holdersOverThreshold_DESC_NULLS_LAST', - DailyStatIdIdAsc = 'dailyStatId_id_ASC', - DailyStatIdIdAscNullsFirst = 'dailyStatId_id_ASC_NULLS_FIRST', - DailyStatIdIdDesc = 'dailyStatId_id_DESC', - DailyStatIdIdDescNullsLast = 'dailyStatId_id_DESC_NULLS_LAST', - DailyStatIdMarketCapUsdAsc = 'dailyStatId_marketCapUSD_ASC', - DailyStatIdMarketCapUsdAscNullsFirst = 'dailyStatId_marketCapUSD_ASC_NULLS_FIRST', - DailyStatIdMarketCapUsdDesc = 'dailyStatId_marketCapUSD_DESC', - DailyStatIdMarketCapUsdDescNullsLast = 'dailyStatId_marketCapUSD_DESC_NULLS_LAST', - DailyStatIdNonRebasingSupplyAsc = 'dailyStatId_nonRebasingSupply_ASC', - DailyStatIdNonRebasingSupplyAscNullsFirst = 'dailyStatId_nonRebasingSupply_ASC_NULLS_FIRST', - DailyStatIdNonRebasingSupplyDesc = 'dailyStatId_nonRebasingSupply_DESC', - DailyStatIdNonRebasingSupplyDescNullsLast = 'dailyStatId_nonRebasingSupply_DESC_NULLS_LAST', - DailyStatIdPegPriceAsc = 'dailyStatId_pegPrice_ASC', - DailyStatIdPegPriceAscNullsFirst = 'dailyStatId_pegPrice_ASC_NULLS_FIRST', - DailyStatIdPegPriceDesc = 'dailyStatId_pegPrice_DESC', - DailyStatIdPegPriceDescNullsLast = 'dailyStatId_pegPrice_DESC_NULLS_LAST', - DailyStatIdRebasingSupplyAsc = 'dailyStatId_rebasingSupply_ASC', - DailyStatIdRebasingSupplyAscNullsFirst = 'dailyStatId_rebasingSupply_ASC_NULLS_FIRST', - DailyStatIdRebasingSupplyDesc = 'dailyStatId_rebasingSupply_DESC', - DailyStatIdRebasingSupplyDescNullsLast = 'dailyStatId_rebasingSupply_DESC_NULLS_LAST', - DailyStatIdTimestampAsc = 'dailyStatId_timestamp_ASC', - DailyStatIdTimestampAscNullsFirst = 'dailyStatId_timestamp_ASC_NULLS_FIRST', - DailyStatIdTimestampDesc = 'dailyStatId_timestamp_DESC', - DailyStatIdTimestampDescNullsLast = 'dailyStatId_timestamp_DESC_NULLS_LAST', - DailyStatIdTotalSupplyUsdAsc = 'dailyStatId_totalSupplyUSD_ASC', - DailyStatIdTotalSupplyUsdAscNullsFirst = 'dailyStatId_totalSupplyUSD_ASC_NULLS_FIRST', - DailyStatIdTotalSupplyUsdDesc = 'dailyStatId_totalSupplyUSD_DESC', - DailyStatIdTotalSupplyUsdDescNullsLast = 'dailyStatId_totalSupplyUSD_DESC_NULLS_LAST', - DailyStatIdTotalSupplyAsc = 'dailyStatId_totalSupply_ASC', - DailyStatIdTotalSupplyAscNullsFirst = 'dailyStatId_totalSupply_ASC_NULLS_FIRST', - DailyStatIdTotalSupplyDesc = 'dailyStatId_totalSupply_DESC', - DailyStatIdTotalSupplyDescNullsLast = 'dailyStatId_totalSupply_DESC_NULLS_LAST', - DailyStatIdTradingVolumeUsdAsc = 'dailyStatId_tradingVolumeUSD_ASC', - DailyStatIdTradingVolumeUsdAscNullsFirst = 'dailyStatId_tradingVolumeUSD_ASC_NULLS_FIRST', - DailyStatIdTradingVolumeUsdDesc = 'dailyStatId_tradingVolumeUSD_DESC', - DailyStatIdTradingVolumeUsdDescNullsLast = 'dailyStatId_tradingVolumeUSD_DESC_NULLS_LAST', - DailyStatIdWrappedSupplyAsc = 'dailyStatId_wrappedSupply_ASC', - DailyStatIdWrappedSupplyAscNullsFirst = 'dailyStatId_wrappedSupply_ASC_NULLS_FIRST', - DailyStatIdWrappedSupplyDesc = 'dailyStatId_wrappedSupply_DESC', - DailyStatIdWrappedSupplyDescNullsLast = 'dailyStatId_wrappedSupply_DESC_NULLS_LAST', - DailyStatIdYieldEth7DayAsc = 'dailyStatId_yieldETH7Day_ASC', - DailyStatIdYieldEth7DayAscNullsFirst = 'dailyStatId_yieldETH7Day_ASC_NULLS_FIRST', - DailyStatIdYieldEth7DayDesc = 'dailyStatId_yieldETH7Day_DESC', - DailyStatIdYieldEth7DayDescNullsLast = 'dailyStatId_yieldETH7Day_DESC_NULLS_LAST', - DailyStatIdYieldEthAllTimeAsc = 'dailyStatId_yieldETHAllTime_ASC', - DailyStatIdYieldEthAllTimeAscNullsFirst = 'dailyStatId_yieldETHAllTime_ASC_NULLS_FIRST', - DailyStatIdYieldEthAllTimeDesc = 'dailyStatId_yieldETHAllTime_DESC', - DailyStatIdYieldEthAllTimeDescNullsLast = 'dailyStatId_yieldETHAllTime_DESC_NULLS_LAST', - DailyStatIdYieldEthAsc = 'dailyStatId_yieldETH_ASC', - DailyStatIdYieldEthAscNullsFirst = 'dailyStatId_yieldETH_ASC_NULLS_FIRST', - DailyStatIdYieldEthDesc = 'dailyStatId_yieldETH_DESC', - DailyStatIdYieldEthDescNullsLast = 'dailyStatId_yieldETH_DESC_NULLS_LAST', - DailyStatIdYieldUsd7DayAsc = 'dailyStatId_yieldUSD7Day_ASC', - DailyStatIdYieldUsd7DayAscNullsFirst = 'dailyStatId_yieldUSD7Day_ASC_NULLS_FIRST', - DailyStatIdYieldUsd7DayDesc = 'dailyStatId_yieldUSD7Day_DESC', - DailyStatIdYieldUsd7DayDescNullsLast = 'dailyStatId_yieldUSD7Day_DESC_NULLS_LAST', - DailyStatIdYieldUsdAllTimeAsc = 'dailyStatId_yieldUSDAllTime_ASC', - DailyStatIdYieldUsdAllTimeAscNullsFirst = 'dailyStatId_yieldUSDAllTime_ASC_NULLS_FIRST', - DailyStatIdYieldUsdAllTimeDesc = 'dailyStatId_yieldUSDAllTime_DESC', - DailyStatIdYieldUsdAllTimeDescNullsLast = 'dailyStatId_yieldUSDAllTime_DESC_NULLS_LAST', - DailyStatIdYieldUsdAsc = 'dailyStatId_yieldUSD_ASC', - DailyStatIdYieldUsdAscNullsFirst = 'dailyStatId_yieldUSD_ASC_NULLS_FIRST', - DailyStatIdYieldUsdDesc = 'dailyStatId_yieldUSD_DESC', - DailyStatIdYieldUsdDescNullsLast = 'dailyStatId_yieldUSD_DESC_NULLS_LAST', + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; + status_eq?: InputMaybe; + status_in?: InputMaybe>; + status_isNull?: InputMaybe; + status_not_eq?: InputMaybe; + status_not_in?: InputMaybe>; + timestamp_eq?: InputMaybe; + timestamp_gt?: InputMaybe; + timestamp_gte?: InputMaybe; + timestamp_in?: InputMaybe>; + timestamp_isNull?: InputMaybe; + timestamp_lt?: InputMaybe; + timestamp_lte?: InputMaybe; + timestamp_not_eq?: InputMaybe; + timestamp_not_in?: InputMaybe>; + txHash_contains?: InputMaybe; + txHash_containsInsensitive?: InputMaybe; + txHash_endsWith?: InputMaybe; + txHash_eq?: InputMaybe; + txHash_gt?: InputMaybe; + txHash_gte?: InputMaybe; + txHash_in?: InputMaybe>; + txHash_isNull?: InputMaybe; + txHash_lt?: InputMaybe; + txHash_lte?: InputMaybe; + txHash_not_contains?: InputMaybe; + txHash_not_containsInsensitive?: InputMaybe; + txHash_not_endsWith?: InputMaybe; + txHash_not_eq?: InputMaybe; + txHash_not_in?: InputMaybe>; + txHash_not_startsWith?: InputMaybe; + txHash_startsWith?: InputMaybe; +}; + +export type OTokenRebaseOptionsConnection = { + __typename?: 'OTokenRebaseOptionsConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; +}; + +export enum OTokenRebaseOrderByInput { + ApyAprAsc = 'apy_apr_ASC', + ApyAprAscNullsFirst = 'apy_apr_ASC_NULLS_FIRST', + ApyAprDesc = 'apy_apr_DESC', + ApyAprDescNullsLast = 'apy_apr_DESC_NULLS_LAST', + ApyApy7DayAvgAsc = 'apy_apy7DayAvg_ASC', + ApyApy7DayAvgAscNullsFirst = 'apy_apy7DayAvg_ASC_NULLS_FIRST', + ApyApy7DayAvgDesc = 'apy_apy7DayAvg_DESC', + ApyApy7DayAvgDescNullsLast = 'apy_apy7DayAvg_DESC_NULLS_LAST', + ApyApy14DayAvgAsc = 'apy_apy14DayAvg_ASC', + ApyApy14DayAvgAscNullsFirst = 'apy_apy14DayAvg_ASC_NULLS_FIRST', + ApyApy14DayAvgDesc = 'apy_apy14DayAvg_DESC', + ApyApy14DayAvgDescNullsLast = 'apy_apy14DayAvg_DESC_NULLS_LAST', + ApyApy30DayAvgAsc = 'apy_apy30DayAvg_ASC', + ApyApy30DayAvgAscNullsFirst = 'apy_apy30DayAvg_ASC_NULLS_FIRST', + ApyApy30DayAvgDesc = 'apy_apy30DayAvg_DESC', + ApyApy30DayAvgDescNullsLast = 'apy_apy30DayAvg_DESC_NULLS_LAST', + ApyApyAsc = 'apy_apy_ASC', + ApyApyAscNullsFirst = 'apy_apy_ASC_NULLS_FIRST', + ApyApyDesc = 'apy_apy_DESC', + ApyApyDescNullsLast = 'apy_apy_DESC_NULLS_LAST', + ApyBlockNumberAsc = 'apy_blockNumber_ASC', + ApyBlockNumberAscNullsFirst = 'apy_blockNumber_ASC_NULLS_FIRST', + ApyBlockNumberDesc = 'apy_blockNumber_DESC', + ApyBlockNumberDescNullsLast = 'apy_blockNumber_DESC_NULLS_LAST', + ApyChainIdAsc = 'apy_chainId_ASC', + ApyChainIdAscNullsFirst = 'apy_chainId_ASC_NULLS_FIRST', + ApyChainIdDesc = 'apy_chainId_DESC', + ApyChainIdDescNullsLast = 'apy_chainId_DESC_NULLS_LAST', + ApyDateAsc = 'apy_date_ASC', + ApyDateAscNullsFirst = 'apy_date_ASC_NULLS_FIRST', + ApyDateDesc = 'apy_date_DESC', + ApyDateDescNullsLast = 'apy_date_DESC_NULLS_LAST', + ApyIdAsc = 'apy_id_ASC', + ApyIdAscNullsFirst = 'apy_id_ASC_NULLS_FIRST', + ApyIdDesc = 'apy_id_DESC', + ApyIdDescNullsLast = 'apy_id_DESC_NULLS_LAST', + ApyOtokenAsc = 'apy_otoken_ASC', + ApyOtokenAscNullsFirst = 'apy_otoken_ASC_NULLS_FIRST', + ApyOtokenDesc = 'apy_otoken_DESC', + ApyOtokenDescNullsLast = 'apy_otoken_DESC_NULLS_LAST', + ApyRebasingCreditsPerTokenAsc = 'apy_rebasingCreditsPerToken_ASC', + ApyRebasingCreditsPerTokenAscNullsFirst = 'apy_rebasingCreditsPerToken_ASC_NULLS_FIRST', + ApyRebasingCreditsPerTokenDesc = 'apy_rebasingCreditsPerToken_DESC', + ApyRebasingCreditsPerTokenDescNullsLast = 'apy_rebasingCreditsPerToken_DESC_NULLS_LAST', + ApyTimestampAsc = 'apy_timestamp_ASC', + ApyTimestampAscNullsFirst = 'apy_timestamp_ASC_NULLS_FIRST', + ApyTimestampDesc = 'apy_timestamp_DESC', + ApyTimestampDescNullsLast = 'apy_timestamp_DESC_NULLS_LAST', + ApyTxHashAsc = 'apy_txHash_ASC', + ApyTxHashAscNullsFirst = 'apy_txHash_ASC_NULLS_FIRST', + ApyTxHashDesc = 'apy_txHash_DESC', + ApyTxHashDescNullsLast = 'apy_txHash_DESC_NULLS_LAST', + BlockNumberAsc = 'blockNumber_ASC', + BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', + BlockNumberDesc = 'blockNumber_DESC', + BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', + FeeEthAsc = 'feeETH_ASC', + FeeEthAscNullsFirst = 'feeETH_ASC_NULLS_FIRST', + FeeEthDesc = 'feeETH_DESC', + FeeEthDescNullsLast = 'feeETH_DESC_NULLS_LAST', + FeeUsdAsc = 'feeUSD_ASC', + FeeUsdAscNullsFirst = 'feeUSD_ASC_NULLS_FIRST', + FeeUsdDesc = 'feeUSD_DESC', + FeeUsdDescNullsLast = 'feeUSD_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - PriceAsc = 'price_ASC', - PriceAscNullsFirst = 'price_ASC_NULLS_FIRST', - PriceDesc = 'price_DESC', - PriceDescNullsLast = 'price_DESC_NULLS_LAST', - SymbolAsc = 'symbol_ASC', - SymbolAscNullsFirst = 'symbol_ASC_NULLS_FIRST', - SymbolDesc = 'symbol_DESC', - SymbolDescNullsLast = 'symbol_DESC_NULLS_LAST', - ValueAsc = 'value_ASC', - ValueAscNullsFirst = 'value_ASC_NULLS_FIRST', - ValueDesc = 'value_DESC', - ValueDescNullsLast = 'value_DESC_NULLS_LAST' + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', + RebasingCreditsPerTokenAsc = 'rebasingCreditsPerToken_ASC', + RebasingCreditsPerTokenAscNullsFirst = 'rebasingCreditsPerToken_ASC_NULLS_FIRST', + RebasingCreditsPerTokenDesc = 'rebasingCreditsPerToken_DESC', + RebasingCreditsPerTokenDescNullsLast = 'rebasingCreditsPerToken_DESC_NULLS_LAST', + RebasingCreditsAsc = 'rebasingCredits_ASC', + RebasingCreditsAscNullsFirst = 'rebasingCredits_ASC_NULLS_FIRST', + RebasingCreditsDesc = 'rebasingCredits_DESC', + RebasingCreditsDescNullsLast = 'rebasingCredits_DESC_NULLS_LAST', + TimestampAsc = 'timestamp_ASC', + TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', + TimestampDesc = 'timestamp_DESC', + TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', + TotalSupplyAsc = 'totalSupply_ASC', + TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', + TotalSupplyDesc = 'totalSupply_DESC', + TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST', + TxHashAsc = 'txHash_ASC', + TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', + TxHashDesc = 'txHash_DESC', + TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST', + YieldEthAsc = 'yieldETH_ASC', + YieldEthAscNullsFirst = 'yieldETH_ASC_NULLS_FIRST', + YieldEthDesc = 'yieldETH_DESC', + YieldEthDescNullsLast = 'yieldETH_DESC_NULLS_LAST', + YieldUsdAsc = 'yieldUSD_ASC', + YieldUsdAscNullsFirst = 'yieldUSD_ASC_NULLS_FIRST', + YieldUsdDesc = 'yieldUSD_DESC', + YieldUsdDescNullsLast = 'yieldUSD_DESC_NULLS_LAST' } -export type OusdCollateralDailyStatWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - amount_eq?: InputMaybe; - amount_gt?: InputMaybe; - amount_gte?: InputMaybe; - amount_in?: InputMaybe>; - amount_isNull?: InputMaybe; - amount_lt?: InputMaybe; - amount_lte?: InputMaybe; - amount_not_eq?: InputMaybe; - amount_not_in?: InputMaybe>; - dailyStatId?: InputMaybe; - dailyStatId_isNull?: InputMaybe; +export type OTokenRebaseWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + apy?: InputMaybe; + apy_isNull?: InputMaybe; + blockNumber_eq?: InputMaybe; + blockNumber_gt?: InputMaybe; + blockNumber_gte?: InputMaybe; + blockNumber_in?: InputMaybe>; + blockNumber_isNull?: InputMaybe; + blockNumber_lt?: InputMaybe; + blockNumber_lte?: InputMaybe; + blockNumber_not_eq?: InputMaybe; + blockNumber_not_in?: InputMaybe>; + chainId_eq?: InputMaybe; + chainId_gt?: InputMaybe; + chainId_gte?: InputMaybe; + chainId_in?: InputMaybe>; + chainId_isNull?: InputMaybe; + chainId_lt?: InputMaybe; + chainId_lte?: InputMaybe; + chainId_not_eq?: InputMaybe; + chainId_not_in?: InputMaybe>; + feeETH_eq?: InputMaybe; + feeETH_gt?: InputMaybe; + feeETH_gte?: InputMaybe; + feeETH_in?: InputMaybe>; + feeETH_isNull?: InputMaybe; + feeETH_lt?: InputMaybe; + feeETH_lte?: InputMaybe; + feeETH_not_eq?: InputMaybe; + feeETH_not_in?: InputMaybe>; + feeUSD_eq?: InputMaybe; + feeUSD_gt?: InputMaybe; + feeUSD_gte?: InputMaybe; + feeUSD_in?: InputMaybe>; + feeUSD_isNull?: InputMaybe; + feeUSD_lt?: InputMaybe; + feeUSD_lte?: InputMaybe; + feeUSD_not_eq?: InputMaybe; + feeUSD_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -8721,103 +7743,171 @@ export type OusdCollateralDailyStatWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - price_eq?: InputMaybe; - price_gt?: InputMaybe; - price_gte?: InputMaybe; - price_in?: InputMaybe>; - price_isNull?: InputMaybe; - price_lt?: InputMaybe; - price_lte?: InputMaybe; - price_not_eq?: InputMaybe; - price_not_in?: InputMaybe>; - symbol_contains?: InputMaybe; - symbol_containsInsensitive?: InputMaybe; - symbol_endsWith?: InputMaybe; - symbol_eq?: InputMaybe; - symbol_gt?: InputMaybe; - symbol_gte?: InputMaybe; - symbol_in?: InputMaybe>; - symbol_isNull?: InputMaybe; - symbol_lt?: InputMaybe; - symbol_lte?: InputMaybe; - symbol_not_contains?: InputMaybe; - symbol_not_containsInsensitive?: InputMaybe; - symbol_not_endsWith?: InputMaybe; - symbol_not_eq?: InputMaybe; - symbol_not_in?: InputMaybe>; - symbol_not_startsWith?: InputMaybe; - symbol_startsWith?: InputMaybe; - value_eq?: InputMaybe; - value_gt?: InputMaybe; - value_gte?: InputMaybe; - value_in?: InputMaybe>; - value_isNull?: InputMaybe; - value_lt?: InputMaybe; - value_lte?: InputMaybe; - value_not_eq?: InputMaybe; - value_not_in?: InputMaybe>; -}; - -export type OusdCollateralDailyStatsConnection = { - __typename?: 'OUSDCollateralDailyStatsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; + rebasingCreditsPerToken_eq?: InputMaybe; + rebasingCreditsPerToken_gt?: InputMaybe; + rebasingCreditsPerToken_gte?: InputMaybe; + rebasingCreditsPerToken_in?: InputMaybe>; + rebasingCreditsPerToken_isNull?: InputMaybe; + rebasingCreditsPerToken_lt?: InputMaybe; + rebasingCreditsPerToken_lte?: InputMaybe; + rebasingCreditsPerToken_not_eq?: InputMaybe; + rebasingCreditsPerToken_not_in?: InputMaybe>; + rebasingCredits_eq?: InputMaybe; + rebasingCredits_gt?: InputMaybe; + rebasingCredits_gte?: InputMaybe; + rebasingCredits_in?: InputMaybe>; + rebasingCredits_isNull?: InputMaybe; + rebasingCredits_lt?: InputMaybe; + rebasingCredits_lte?: InputMaybe; + rebasingCredits_not_eq?: InputMaybe; + rebasingCredits_not_in?: InputMaybe>; + timestamp_eq?: InputMaybe; + timestamp_gt?: InputMaybe; + timestamp_gte?: InputMaybe; + timestamp_in?: InputMaybe>; + timestamp_isNull?: InputMaybe; + timestamp_lt?: InputMaybe; + timestamp_lte?: InputMaybe; + timestamp_not_eq?: InputMaybe; + timestamp_not_in?: InputMaybe>; + totalSupply_eq?: InputMaybe; + totalSupply_gt?: InputMaybe; + totalSupply_gte?: InputMaybe; + totalSupply_in?: InputMaybe>; + totalSupply_isNull?: InputMaybe; + totalSupply_lt?: InputMaybe; + totalSupply_lte?: InputMaybe; + totalSupply_not_eq?: InputMaybe; + totalSupply_not_in?: InputMaybe>; + txHash_contains?: InputMaybe; + txHash_containsInsensitive?: InputMaybe; + txHash_endsWith?: InputMaybe; + txHash_eq?: InputMaybe; + txHash_gt?: InputMaybe; + txHash_gte?: InputMaybe; + txHash_in?: InputMaybe>; + txHash_isNull?: InputMaybe; + txHash_lt?: InputMaybe; + txHash_lte?: InputMaybe; + txHash_not_contains?: InputMaybe; + txHash_not_containsInsensitive?: InputMaybe; + txHash_not_endsWith?: InputMaybe; + txHash_not_eq?: InputMaybe; + txHash_not_in?: InputMaybe>; + txHash_not_startsWith?: InputMaybe; + txHash_startsWith?: InputMaybe; + yieldETH_eq?: InputMaybe; + yieldETH_gt?: InputMaybe; + yieldETH_gte?: InputMaybe; + yieldETH_in?: InputMaybe>; + yieldETH_isNull?: InputMaybe; + yieldETH_lt?: InputMaybe; + yieldETH_lte?: InputMaybe; + yieldETH_not_eq?: InputMaybe; + yieldETH_not_in?: InputMaybe>; + yieldUSD_eq?: InputMaybe; + yieldUSD_gt?: InputMaybe; + yieldUSD_gte?: InputMaybe; + yieldUSD_in?: InputMaybe>; + yieldUSD_isNull?: InputMaybe; + yieldUSD_lt?: InputMaybe; + yieldUSD_lte?: InputMaybe; + yieldUSD_not_eq?: InputMaybe; + yieldUSD_not_in?: InputMaybe>; }; -export type OusdCompoundStrategiesConnection = { - __typename?: 'OUSDCompoundStrategiesConnection'; - edges: Array; +export type OTokenRebasesConnection = { + __typename?: 'OTokenRebasesConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export type OusdCompoundStrategy = { - __typename?: 'OUSDCompoundStrategy'; +export type OTokenVault = { + __typename?: 'OTokenVault'; + address: Scalars['String']['output']; blockNumber: Scalars['Int']['output']; - dai: Scalars['BigInt']['output']; + chainId: Scalars['Int']['output']; id: Scalars['String']['output']; + otoken: Scalars['String']['output']; timestamp: Scalars['DateTime']['output']; - usdc: Scalars['BigInt']['output']; - usdt: Scalars['BigInt']['output']; + totalValue: Scalars['BigInt']['output']; }; -export type OusdCompoundStrategyEdge = { - __typename?: 'OUSDCompoundStrategyEdge'; +export type OTokenVaultEdge = { + __typename?: 'OTokenVaultEdge'; cursor: Scalars['String']['output']; - node: OusdCompoundStrategy; + node: OTokenVault; }; -export enum OusdCompoundStrategyOrderByInput { +export enum OTokenVaultOrderByInput { + AddressAsc = 'address_ASC', + AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', + AddressDesc = 'address_DESC', + AddressDescNullsLast = 'address_DESC_NULLS_LAST', BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - DaiAsc = 'dai_ASC', - DaiAscNullsFirst = 'dai_ASC_NULLS_FIRST', - DaiDesc = 'dai_DESC', - DaiDescNullsLast = 'dai_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - UsdcAsc = 'usdc_ASC', - UsdcAscNullsFirst = 'usdc_ASC_NULLS_FIRST', - UsdcDesc = 'usdc_DESC', - UsdcDescNullsLast = 'usdc_DESC_NULLS_LAST', - UsdtAsc = 'usdt_ASC', - UsdtAscNullsFirst = 'usdt_ASC_NULLS_FIRST', - UsdtDesc = 'usdt_DESC', - UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' + TotalValueAsc = 'totalValue_ASC', + TotalValueAscNullsFirst = 'totalValue_ASC_NULLS_FIRST', + TotalValueDesc = 'totalValue_DESC', + TotalValueDescNullsLast = 'totalValue_DESC_NULLS_LAST' } -export type OusdCompoundStrategyWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OTokenVaultWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + address_contains?: InputMaybe; + address_containsInsensitive?: InputMaybe; + address_endsWith?: InputMaybe; + address_eq?: InputMaybe; + address_gt?: InputMaybe; + address_gte?: InputMaybe; + address_in?: InputMaybe>; + address_isNull?: InputMaybe; + address_lt?: InputMaybe; + address_lte?: InputMaybe; + address_not_contains?: InputMaybe; + address_not_containsInsensitive?: InputMaybe; + address_not_endsWith?: InputMaybe; + address_not_eq?: InputMaybe; + address_not_in?: InputMaybe>; + address_not_startsWith?: InputMaybe; + address_startsWith?: InputMaybe; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -8827,15 +7917,15 @@ export type OusdCompoundStrategyWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; - dai_eq?: InputMaybe; - dai_gt?: InputMaybe; - dai_gte?: InputMaybe; - dai_in?: InputMaybe>; - dai_isNull?: InputMaybe; - dai_lt?: InputMaybe; - dai_lte?: InputMaybe; - dai_not_eq?: InputMaybe; - dai_not_in?: InputMaybe>; + chainId_eq?: InputMaybe; + chainId_gt?: InputMaybe; + chainId_gte?: InputMaybe; + chainId_in?: InputMaybe>; + chainId_isNull?: InputMaybe; + chainId_lt?: InputMaybe; + chainId_lte?: InputMaybe; + chainId_not_eq?: InputMaybe; + chainId_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -8853,6 +7943,23 @@ export type OusdCompoundStrategyWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -8862,72 +7969,27 @@ export type OusdCompoundStrategyWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - usdc_eq?: InputMaybe; - usdc_gt?: InputMaybe; - usdc_gte?: InputMaybe; - usdc_in?: InputMaybe>; - usdc_isNull?: InputMaybe; - usdc_lt?: InputMaybe; - usdc_lte?: InputMaybe; - usdc_not_eq?: InputMaybe; - usdc_not_in?: InputMaybe>; - usdt_eq?: InputMaybe; - usdt_gt?: InputMaybe; - usdt_gte?: InputMaybe; - usdt_in?: InputMaybe>; - usdt_isNull?: InputMaybe; - usdt_lt?: InputMaybe; - usdt_lte?: InputMaybe; - usdt_not_eq?: InputMaybe; - usdt_not_in?: InputMaybe>; -}; - -export type OusdConvexLusdPlus3Crv = { - __typename?: 'OUSDConvexLUSDPlus3Crv'; - blockNumber: Scalars['Int']['output']; - dai: Scalars['BigInt']['output']; - id: Scalars['String']['output']; - timestamp: Scalars['DateTime']['output']; - usdc: Scalars['BigInt']['output']; - usdt: Scalars['BigInt']['output']; + totalValue_eq?: InputMaybe; + totalValue_gt?: InputMaybe; + totalValue_gte?: InputMaybe; + totalValue_in?: InputMaybe>; + totalValue_isNull?: InputMaybe; + totalValue_lt?: InputMaybe; + totalValue_lte?: InputMaybe; + totalValue_not_eq?: InputMaybe; + totalValue_not_in?: InputMaybe>; }; -export type OusdConvexLusdPlus3CrvEdge = { - __typename?: 'OUSDConvexLUSDPlus3CrvEdge'; - cursor: Scalars['String']['output']; - node: OusdConvexLusdPlus3Crv; +export type OTokenVaultsConnection = { + __typename?: 'OTokenVaultsConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; }; -export enum OusdConvexLusdPlus3CrvOrderByInput { - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - DaiAsc = 'dai_ASC', - DaiAscNullsFirst = 'dai_ASC_NULLS_FIRST', - DaiDesc = 'dai_DESC', - DaiDescNullsLast = 'dai_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - UsdcAsc = 'usdc_ASC', - UsdcAscNullsFirst = 'usdc_ASC_NULLS_FIRST', - UsdcDesc = 'usdc_DESC', - UsdcDescNullsLast = 'usdc_DESC_NULLS_LAST', - UsdtAsc = 'usdt_ASC', - UsdtAscNullsFirst = 'usdt_ASC_NULLS_FIRST', - UsdtDesc = 'usdt_DESC', - UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' -} - -export type OusdConvexLusdPlus3CrvWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OTokenWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -8937,15 +7999,15 @@ export type OusdConvexLusdPlus3CrvWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; - dai_eq?: InputMaybe; - dai_gt?: InputMaybe; - dai_gte?: InputMaybe; - dai_in?: InputMaybe>; - dai_isNull?: InputMaybe; - dai_lt?: InputMaybe; - dai_lte?: InputMaybe; - dai_not_eq?: InputMaybe; - dai_not_in?: InputMaybe>; + chainId_eq?: InputMaybe; + chainId_gt?: InputMaybe; + chainId_gte?: InputMaybe; + chainId_in?: InputMaybe>; + chainId_isNull?: InputMaybe; + chainId_lt?: InputMaybe; + chainId_lte?: InputMaybe; + chainId_not_eq?: InputMaybe; + chainId_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -8963,6 +8025,41 @@ export type OusdConvexLusdPlus3CrvWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; + nonRebasingSupply_eq?: InputMaybe; + nonRebasingSupply_gt?: InputMaybe; + nonRebasingSupply_gte?: InputMaybe; + nonRebasingSupply_in?: InputMaybe>; + nonRebasingSupply_isNull?: InputMaybe; + nonRebasingSupply_lt?: InputMaybe; + nonRebasingSupply_lte?: InputMaybe; + nonRebasingSupply_not_eq?: InputMaybe; + nonRebasingSupply_not_in?: InputMaybe>; + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; + rebasingSupply_eq?: InputMaybe; + rebasingSupply_gt?: InputMaybe; + rebasingSupply_gte?: InputMaybe; + rebasingSupply_in?: InputMaybe>; + rebasingSupply_isNull?: InputMaybe; + rebasingSupply_lt?: InputMaybe; + rebasingSupply_lte?: InputMaybe; + rebasingSupply_not_eq?: InputMaybe; + rebasingSupply_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -8972,42 +8069,33 @@ export type OusdConvexLusdPlus3CrvWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - usdc_eq?: InputMaybe; - usdc_gt?: InputMaybe; - usdc_gte?: InputMaybe; - usdc_in?: InputMaybe>; - usdc_isNull?: InputMaybe; - usdc_lt?: InputMaybe; - usdc_lte?: InputMaybe; - usdc_not_eq?: InputMaybe; - usdc_not_in?: InputMaybe>; - usdt_eq?: InputMaybe; - usdt_gt?: InputMaybe; - usdt_gte?: InputMaybe; - usdt_in?: InputMaybe>; - usdt_isNull?: InputMaybe; - usdt_lt?: InputMaybe; - usdt_lte?: InputMaybe; - usdt_not_eq?: InputMaybe; - usdt_not_in?: InputMaybe>; + totalSupply_eq?: InputMaybe; + totalSupply_gt?: InputMaybe; + totalSupply_gte?: InputMaybe; + totalSupply_in?: InputMaybe>; + totalSupply_isNull?: InputMaybe; + totalSupply_lt?: InputMaybe; + totalSupply_lte?: InputMaybe; + totalSupply_not_eq?: InputMaybe; + totalSupply_not_in?: InputMaybe>; }; -export type OusdConvexLusdPlus3CrvsConnection = { - __typename?: 'OUSDConvexLUSDPlus3CrvsConnection'; - edges: Array; +export type OTokensConnection = { + __typename?: 'OTokensConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export type OusdConvexStrategiesConnection = { - __typename?: 'OUSDConvexStrategiesConnection'; - edges: Array; +export type OusdAaveStrategiesConnection = { + __typename?: 'OUSDAaveStrategiesConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export type OusdConvexStrategy = { - __typename?: 'OUSDConvexStrategy'; +export type OusdAaveStrategy = { + __typename?: 'OUSDAaveStrategy'; blockNumber: Scalars['Int']['output']; dai: Scalars['BigInt']['output']; id: Scalars['String']['output']; @@ -9016,13 +8104,13 @@ export type OusdConvexStrategy = { usdt: Scalars['BigInt']['output']; }; -export type OusdConvexStrategyEdge = { - __typename?: 'OUSDConvexStrategyEdge'; +export type OusdAaveStrategyEdge = { + __typename?: 'OUSDAaveStrategyEdge'; cursor: Scalars['String']['output']; - node: OusdConvexStrategy; + node: OusdAaveStrategy; }; -export enum OusdConvexStrategyOrderByInput { +export enum OusdAaveStrategyOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', @@ -9049,9 +8137,9 @@ export enum OusdConvexStrategyOrderByInput { UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' } -export type OusdConvexStrategyWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OusdAaveStrategyWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -9116,249 +8204,297 @@ export type OusdConvexStrategyWhereInput = { usdt_not_in?: InputMaybe>; }; -export type OusdDailyStat = { - __typename?: 'OUSDDailyStat'; - amoSupply: Scalars['BigInt']['output']; - apr: Scalars['Float']['output']; - apy: Scalars['Float']['output']; - apy7DayAvg: Scalars['Float']['output']; - apy14DayAvg: Scalars['Float']['output']; - apy30DayAvg: Scalars['Float']['output']; - blockNumber: Scalars['Int']['output']; - collateral: Array; - dripperWETH: Scalars['BigInt']['output']; - feesETH: Scalars['BigInt']['output']; - feesETH7Day: Scalars['BigInt']['output']; - feesETHAllTime: Scalars['BigInt']['output']; - feesUSD: Scalars['BigInt']['output']; - feesUSD7Day: Scalars['BigInt']['output']; - feesUSDAllTime: Scalars['BigInt']['output']; - holdersOverThreshold: Scalars['Int']['output']; - id: Scalars['String']['output']; - marketCapUSD: Scalars['Float']['output']; - nonRebasingSupply: Scalars['BigInt']['output']; - pegPrice: Scalars['BigInt']['output']; - rebasingSupply: Scalars['BigInt']['output']; - strategies: Array; - timestamp: Scalars['DateTime']['output']; - totalSupply: Scalars['BigInt']['output']; - totalSupplyUSD: Scalars['Float']['output']; - tradingVolumeUSD: Scalars['Float']['output']; - wrappedSupply: Scalars['BigInt']['output']; - yieldETH: Scalars['BigInt']['output']; - yieldETH7Day: Scalars['BigInt']['output']; - yieldETHAllTime: Scalars['BigInt']['output']; - yieldUSD: Scalars['BigInt']['output']; - yieldUSD7Day: Scalars['BigInt']['output']; - yieldUSDAllTime: Scalars['BigInt']['output']; +export type OusdCollateralDailyStat = { + __typename?: 'OUSDCollateralDailyStat'; + amount: Scalars['BigInt']['output']; + dailyStatId: OusdDailyStat; + id: Scalars['String']['output']; + price: Scalars['BigInt']['output']; + symbol: Scalars['String']['output']; + value: Scalars['BigInt']['output']; +}; + +export type OusdCollateralDailyStatEdge = { + __typename?: 'OUSDCollateralDailyStatEdge'; + cursor: Scalars['String']['output']; + node: OusdCollateralDailyStat; +}; + +export enum OusdCollateralDailyStatOrderByInput { + AmountAsc = 'amount_ASC', + AmountAscNullsFirst = 'amount_ASC_NULLS_FIRST', + AmountDesc = 'amount_DESC', + AmountDescNullsLast = 'amount_DESC_NULLS_LAST', + DailyStatIdAmoSupplyAsc = 'dailyStatId_amoSupply_ASC', + DailyStatIdAmoSupplyAscNullsFirst = 'dailyStatId_amoSupply_ASC_NULLS_FIRST', + DailyStatIdAmoSupplyDesc = 'dailyStatId_amoSupply_DESC', + DailyStatIdAmoSupplyDescNullsLast = 'dailyStatId_amoSupply_DESC_NULLS_LAST', + DailyStatIdAprAsc = 'dailyStatId_apr_ASC', + DailyStatIdAprAscNullsFirst = 'dailyStatId_apr_ASC_NULLS_FIRST', + DailyStatIdAprDesc = 'dailyStatId_apr_DESC', + DailyStatIdAprDescNullsLast = 'dailyStatId_apr_DESC_NULLS_LAST', + DailyStatIdApy7DayAvgAsc = 'dailyStatId_apy7DayAvg_ASC', + DailyStatIdApy7DayAvgAscNullsFirst = 'dailyStatId_apy7DayAvg_ASC_NULLS_FIRST', + DailyStatIdApy7DayAvgDesc = 'dailyStatId_apy7DayAvg_DESC', + DailyStatIdApy7DayAvgDescNullsLast = 'dailyStatId_apy7DayAvg_DESC_NULLS_LAST', + DailyStatIdApy14DayAvgAsc = 'dailyStatId_apy14DayAvg_ASC', + DailyStatIdApy14DayAvgAscNullsFirst = 'dailyStatId_apy14DayAvg_ASC_NULLS_FIRST', + DailyStatIdApy14DayAvgDesc = 'dailyStatId_apy14DayAvg_DESC', + DailyStatIdApy14DayAvgDescNullsLast = 'dailyStatId_apy14DayAvg_DESC_NULLS_LAST', + DailyStatIdApy30DayAvgAsc = 'dailyStatId_apy30DayAvg_ASC', + DailyStatIdApy30DayAvgAscNullsFirst = 'dailyStatId_apy30DayAvg_ASC_NULLS_FIRST', + DailyStatIdApy30DayAvgDesc = 'dailyStatId_apy30DayAvg_DESC', + DailyStatIdApy30DayAvgDescNullsLast = 'dailyStatId_apy30DayAvg_DESC_NULLS_LAST', + DailyStatIdApyAsc = 'dailyStatId_apy_ASC', + DailyStatIdApyAscNullsFirst = 'dailyStatId_apy_ASC_NULLS_FIRST', + DailyStatIdApyDesc = 'dailyStatId_apy_DESC', + DailyStatIdApyDescNullsLast = 'dailyStatId_apy_DESC_NULLS_LAST', + DailyStatIdBlockNumberAsc = 'dailyStatId_blockNumber_ASC', + DailyStatIdBlockNumberAscNullsFirst = 'dailyStatId_blockNumber_ASC_NULLS_FIRST', + DailyStatIdBlockNumberDesc = 'dailyStatId_blockNumber_DESC', + DailyStatIdBlockNumberDescNullsLast = 'dailyStatId_blockNumber_DESC_NULLS_LAST', + DailyStatIdDripperWethAsc = 'dailyStatId_dripperWETH_ASC', + DailyStatIdDripperWethAscNullsFirst = 'dailyStatId_dripperWETH_ASC_NULLS_FIRST', + DailyStatIdDripperWethDesc = 'dailyStatId_dripperWETH_DESC', + DailyStatIdDripperWethDescNullsLast = 'dailyStatId_dripperWETH_DESC_NULLS_LAST', + DailyStatIdFeesEth7DayAsc = 'dailyStatId_feesETH7Day_ASC', + DailyStatIdFeesEth7DayAscNullsFirst = 'dailyStatId_feesETH7Day_ASC_NULLS_FIRST', + DailyStatIdFeesEth7DayDesc = 'dailyStatId_feesETH7Day_DESC', + DailyStatIdFeesEth7DayDescNullsLast = 'dailyStatId_feesETH7Day_DESC_NULLS_LAST', + DailyStatIdFeesEthAllTimeAsc = 'dailyStatId_feesETHAllTime_ASC', + DailyStatIdFeesEthAllTimeAscNullsFirst = 'dailyStatId_feesETHAllTime_ASC_NULLS_FIRST', + DailyStatIdFeesEthAllTimeDesc = 'dailyStatId_feesETHAllTime_DESC', + DailyStatIdFeesEthAllTimeDescNullsLast = 'dailyStatId_feesETHAllTime_DESC_NULLS_LAST', + DailyStatIdFeesEthAsc = 'dailyStatId_feesETH_ASC', + DailyStatIdFeesEthAscNullsFirst = 'dailyStatId_feesETH_ASC_NULLS_FIRST', + DailyStatIdFeesEthDesc = 'dailyStatId_feesETH_DESC', + DailyStatIdFeesEthDescNullsLast = 'dailyStatId_feesETH_DESC_NULLS_LAST', + DailyStatIdFeesUsd7DayAsc = 'dailyStatId_feesUSD7Day_ASC', + DailyStatIdFeesUsd7DayAscNullsFirst = 'dailyStatId_feesUSD7Day_ASC_NULLS_FIRST', + DailyStatIdFeesUsd7DayDesc = 'dailyStatId_feesUSD7Day_DESC', + DailyStatIdFeesUsd7DayDescNullsLast = 'dailyStatId_feesUSD7Day_DESC_NULLS_LAST', + DailyStatIdFeesUsdAllTimeAsc = 'dailyStatId_feesUSDAllTime_ASC', + DailyStatIdFeesUsdAllTimeAscNullsFirst = 'dailyStatId_feesUSDAllTime_ASC_NULLS_FIRST', + DailyStatIdFeesUsdAllTimeDesc = 'dailyStatId_feesUSDAllTime_DESC', + DailyStatIdFeesUsdAllTimeDescNullsLast = 'dailyStatId_feesUSDAllTime_DESC_NULLS_LAST', + DailyStatIdFeesUsdAsc = 'dailyStatId_feesUSD_ASC', + DailyStatIdFeesUsdAscNullsFirst = 'dailyStatId_feesUSD_ASC_NULLS_FIRST', + DailyStatIdFeesUsdDesc = 'dailyStatId_feesUSD_DESC', + DailyStatIdFeesUsdDescNullsLast = 'dailyStatId_feesUSD_DESC_NULLS_LAST', + DailyStatIdHoldersOverThresholdAsc = 'dailyStatId_holdersOverThreshold_ASC', + DailyStatIdHoldersOverThresholdAscNullsFirst = 'dailyStatId_holdersOverThreshold_ASC_NULLS_FIRST', + DailyStatIdHoldersOverThresholdDesc = 'dailyStatId_holdersOverThreshold_DESC', + DailyStatIdHoldersOverThresholdDescNullsLast = 'dailyStatId_holdersOverThreshold_DESC_NULLS_LAST', + DailyStatIdIdAsc = 'dailyStatId_id_ASC', + DailyStatIdIdAscNullsFirst = 'dailyStatId_id_ASC_NULLS_FIRST', + DailyStatIdIdDesc = 'dailyStatId_id_DESC', + DailyStatIdIdDescNullsLast = 'dailyStatId_id_DESC_NULLS_LAST', + DailyStatIdMarketCapUsdAsc = 'dailyStatId_marketCapUSD_ASC', + DailyStatIdMarketCapUsdAscNullsFirst = 'dailyStatId_marketCapUSD_ASC_NULLS_FIRST', + DailyStatIdMarketCapUsdDesc = 'dailyStatId_marketCapUSD_DESC', + DailyStatIdMarketCapUsdDescNullsLast = 'dailyStatId_marketCapUSD_DESC_NULLS_LAST', + DailyStatIdNonRebasingSupplyAsc = 'dailyStatId_nonRebasingSupply_ASC', + DailyStatIdNonRebasingSupplyAscNullsFirst = 'dailyStatId_nonRebasingSupply_ASC_NULLS_FIRST', + DailyStatIdNonRebasingSupplyDesc = 'dailyStatId_nonRebasingSupply_DESC', + DailyStatIdNonRebasingSupplyDescNullsLast = 'dailyStatId_nonRebasingSupply_DESC_NULLS_LAST', + DailyStatIdPegPriceAsc = 'dailyStatId_pegPrice_ASC', + DailyStatIdPegPriceAscNullsFirst = 'dailyStatId_pegPrice_ASC_NULLS_FIRST', + DailyStatIdPegPriceDesc = 'dailyStatId_pegPrice_DESC', + DailyStatIdPegPriceDescNullsLast = 'dailyStatId_pegPrice_DESC_NULLS_LAST', + DailyStatIdRebasingSupplyAsc = 'dailyStatId_rebasingSupply_ASC', + DailyStatIdRebasingSupplyAscNullsFirst = 'dailyStatId_rebasingSupply_ASC_NULLS_FIRST', + DailyStatIdRebasingSupplyDesc = 'dailyStatId_rebasingSupply_DESC', + DailyStatIdRebasingSupplyDescNullsLast = 'dailyStatId_rebasingSupply_DESC_NULLS_LAST', + DailyStatIdTimestampAsc = 'dailyStatId_timestamp_ASC', + DailyStatIdTimestampAscNullsFirst = 'dailyStatId_timestamp_ASC_NULLS_FIRST', + DailyStatIdTimestampDesc = 'dailyStatId_timestamp_DESC', + DailyStatIdTimestampDescNullsLast = 'dailyStatId_timestamp_DESC_NULLS_LAST', + DailyStatIdTotalSupplyUsdAsc = 'dailyStatId_totalSupplyUSD_ASC', + DailyStatIdTotalSupplyUsdAscNullsFirst = 'dailyStatId_totalSupplyUSD_ASC_NULLS_FIRST', + DailyStatIdTotalSupplyUsdDesc = 'dailyStatId_totalSupplyUSD_DESC', + DailyStatIdTotalSupplyUsdDescNullsLast = 'dailyStatId_totalSupplyUSD_DESC_NULLS_LAST', + DailyStatIdTotalSupplyAsc = 'dailyStatId_totalSupply_ASC', + DailyStatIdTotalSupplyAscNullsFirst = 'dailyStatId_totalSupply_ASC_NULLS_FIRST', + DailyStatIdTotalSupplyDesc = 'dailyStatId_totalSupply_DESC', + DailyStatIdTotalSupplyDescNullsLast = 'dailyStatId_totalSupply_DESC_NULLS_LAST', + DailyStatIdTradingVolumeUsdAsc = 'dailyStatId_tradingVolumeUSD_ASC', + DailyStatIdTradingVolumeUsdAscNullsFirst = 'dailyStatId_tradingVolumeUSD_ASC_NULLS_FIRST', + DailyStatIdTradingVolumeUsdDesc = 'dailyStatId_tradingVolumeUSD_DESC', + DailyStatIdTradingVolumeUsdDescNullsLast = 'dailyStatId_tradingVolumeUSD_DESC_NULLS_LAST', + DailyStatIdWrappedSupplyAsc = 'dailyStatId_wrappedSupply_ASC', + DailyStatIdWrappedSupplyAscNullsFirst = 'dailyStatId_wrappedSupply_ASC_NULLS_FIRST', + DailyStatIdWrappedSupplyDesc = 'dailyStatId_wrappedSupply_DESC', + DailyStatIdWrappedSupplyDescNullsLast = 'dailyStatId_wrappedSupply_DESC_NULLS_LAST', + DailyStatIdYieldEth7DayAsc = 'dailyStatId_yieldETH7Day_ASC', + DailyStatIdYieldEth7DayAscNullsFirst = 'dailyStatId_yieldETH7Day_ASC_NULLS_FIRST', + DailyStatIdYieldEth7DayDesc = 'dailyStatId_yieldETH7Day_DESC', + DailyStatIdYieldEth7DayDescNullsLast = 'dailyStatId_yieldETH7Day_DESC_NULLS_LAST', + DailyStatIdYieldEthAllTimeAsc = 'dailyStatId_yieldETHAllTime_ASC', + DailyStatIdYieldEthAllTimeAscNullsFirst = 'dailyStatId_yieldETHAllTime_ASC_NULLS_FIRST', + DailyStatIdYieldEthAllTimeDesc = 'dailyStatId_yieldETHAllTime_DESC', + DailyStatIdYieldEthAllTimeDescNullsLast = 'dailyStatId_yieldETHAllTime_DESC_NULLS_LAST', + DailyStatIdYieldEthAsc = 'dailyStatId_yieldETH_ASC', + DailyStatIdYieldEthAscNullsFirst = 'dailyStatId_yieldETH_ASC_NULLS_FIRST', + DailyStatIdYieldEthDesc = 'dailyStatId_yieldETH_DESC', + DailyStatIdYieldEthDescNullsLast = 'dailyStatId_yieldETH_DESC_NULLS_LAST', + DailyStatIdYieldUsd7DayAsc = 'dailyStatId_yieldUSD7Day_ASC', + DailyStatIdYieldUsd7DayAscNullsFirst = 'dailyStatId_yieldUSD7Day_ASC_NULLS_FIRST', + DailyStatIdYieldUsd7DayDesc = 'dailyStatId_yieldUSD7Day_DESC', + DailyStatIdYieldUsd7DayDescNullsLast = 'dailyStatId_yieldUSD7Day_DESC_NULLS_LAST', + DailyStatIdYieldUsdAllTimeAsc = 'dailyStatId_yieldUSDAllTime_ASC', + DailyStatIdYieldUsdAllTimeAscNullsFirst = 'dailyStatId_yieldUSDAllTime_ASC_NULLS_FIRST', + DailyStatIdYieldUsdAllTimeDesc = 'dailyStatId_yieldUSDAllTime_DESC', + DailyStatIdYieldUsdAllTimeDescNullsLast = 'dailyStatId_yieldUSDAllTime_DESC_NULLS_LAST', + DailyStatIdYieldUsdAsc = 'dailyStatId_yieldUSD_ASC', + DailyStatIdYieldUsdAscNullsFirst = 'dailyStatId_yieldUSD_ASC_NULLS_FIRST', + DailyStatIdYieldUsdDesc = 'dailyStatId_yieldUSD_DESC', + DailyStatIdYieldUsdDescNullsLast = 'dailyStatId_yieldUSD_DESC_NULLS_LAST', + IdAsc = 'id_ASC', + IdAscNullsFirst = 'id_ASC_NULLS_FIRST', + IdDesc = 'id_DESC', + IdDescNullsLast = 'id_DESC_NULLS_LAST', + PriceAsc = 'price_ASC', + PriceAscNullsFirst = 'price_ASC_NULLS_FIRST', + PriceDesc = 'price_DESC', + PriceDescNullsLast = 'price_DESC_NULLS_LAST', + SymbolAsc = 'symbol_ASC', + SymbolAscNullsFirst = 'symbol_ASC_NULLS_FIRST', + SymbolDesc = 'symbol_DESC', + SymbolDescNullsLast = 'symbol_DESC_NULLS_LAST', + ValueAsc = 'value_ASC', + ValueAscNullsFirst = 'value_ASC_NULLS_FIRST', + ValueDesc = 'value_DESC', + ValueDescNullsLast = 'value_DESC_NULLS_LAST' +} + +export type OusdCollateralDailyStatWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + amount_eq?: InputMaybe; + amount_gt?: InputMaybe; + amount_gte?: InputMaybe; + amount_in?: InputMaybe>; + amount_isNull?: InputMaybe; + amount_lt?: InputMaybe; + amount_lte?: InputMaybe; + amount_not_eq?: InputMaybe; + amount_not_in?: InputMaybe>; + dailyStatId?: InputMaybe; + dailyStatId_isNull?: InputMaybe; + id_contains?: InputMaybe; + id_containsInsensitive?: InputMaybe; + id_endsWith?: InputMaybe; + id_eq?: InputMaybe; + id_gt?: InputMaybe; + id_gte?: InputMaybe; + id_in?: InputMaybe>; + id_isNull?: InputMaybe; + id_lt?: InputMaybe; + id_lte?: InputMaybe; + id_not_contains?: InputMaybe; + id_not_containsInsensitive?: InputMaybe; + id_not_endsWith?: InputMaybe; + id_not_eq?: InputMaybe; + id_not_in?: InputMaybe>; + id_not_startsWith?: InputMaybe; + id_startsWith?: InputMaybe; + price_eq?: InputMaybe; + price_gt?: InputMaybe; + price_gte?: InputMaybe; + price_in?: InputMaybe>; + price_isNull?: InputMaybe; + price_lt?: InputMaybe; + price_lte?: InputMaybe; + price_not_eq?: InputMaybe; + price_not_in?: InputMaybe>; + symbol_contains?: InputMaybe; + symbol_containsInsensitive?: InputMaybe; + symbol_endsWith?: InputMaybe; + symbol_eq?: InputMaybe; + symbol_gt?: InputMaybe; + symbol_gte?: InputMaybe; + symbol_in?: InputMaybe>; + symbol_isNull?: InputMaybe; + symbol_lt?: InputMaybe; + symbol_lte?: InputMaybe; + symbol_not_contains?: InputMaybe; + symbol_not_containsInsensitive?: InputMaybe; + symbol_not_endsWith?: InputMaybe; + symbol_not_eq?: InputMaybe; + symbol_not_in?: InputMaybe>; + symbol_not_startsWith?: InputMaybe; + symbol_startsWith?: InputMaybe; + value_eq?: InputMaybe; + value_gt?: InputMaybe; + value_gte?: InputMaybe; + value_in?: InputMaybe>; + value_isNull?: InputMaybe; + value_lt?: InputMaybe; + value_lte?: InputMaybe; + value_not_eq?: InputMaybe; + value_not_in?: InputMaybe>; +}; + +export type OusdCollateralDailyStatsConnection = { + __typename?: 'OUSDCollateralDailyStatsConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; }; - -export type OusdDailyStatCollateralArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; +export type OusdCompoundStrategiesConnection = { + __typename?: 'OUSDCompoundStrategiesConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; }; - -export type OusdDailyStatStrategiesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; +export type OusdCompoundStrategy = { + __typename?: 'OUSDCompoundStrategy'; + blockNumber: Scalars['Int']['output']; + dai: Scalars['BigInt']['output']; + id: Scalars['String']['output']; + timestamp: Scalars['DateTime']['output']; + usdc: Scalars['BigInt']['output']; + usdt: Scalars['BigInt']['output']; }; -export type OusdDailyStatEdge = { - __typename?: 'OUSDDailyStatEdge'; +export type OusdCompoundStrategyEdge = { + __typename?: 'OUSDCompoundStrategyEdge'; cursor: Scalars['String']['output']; - node: OusdDailyStat; + node: OusdCompoundStrategy; }; -export enum OusdDailyStatOrderByInput { - AmoSupplyAsc = 'amoSupply_ASC', - AmoSupplyAscNullsFirst = 'amoSupply_ASC_NULLS_FIRST', - AmoSupplyDesc = 'amoSupply_DESC', - AmoSupplyDescNullsLast = 'amoSupply_DESC_NULLS_LAST', - AprAsc = 'apr_ASC', - AprAscNullsFirst = 'apr_ASC_NULLS_FIRST', - AprDesc = 'apr_DESC', - AprDescNullsLast = 'apr_DESC_NULLS_LAST', - Apy7DayAvgAsc = 'apy7DayAvg_ASC', - Apy7DayAvgAscNullsFirst = 'apy7DayAvg_ASC_NULLS_FIRST', - Apy7DayAvgDesc = 'apy7DayAvg_DESC', - Apy7DayAvgDescNullsLast = 'apy7DayAvg_DESC_NULLS_LAST', - Apy14DayAvgAsc = 'apy14DayAvg_ASC', - Apy14DayAvgAscNullsFirst = 'apy14DayAvg_ASC_NULLS_FIRST', - Apy14DayAvgDesc = 'apy14DayAvg_DESC', - Apy14DayAvgDescNullsLast = 'apy14DayAvg_DESC_NULLS_LAST', - Apy30DayAvgAsc = 'apy30DayAvg_ASC', - Apy30DayAvgAscNullsFirst = 'apy30DayAvg_ASC_NULLS_FIRST', - Apy30DayAvgDesc = 'apy30DayAvg_DESC', - Apy30DayAvgDescNullsLast = 'apy30DayAvg_DESC_NULLS_LAST', - ApyAsc = 'apy_ASC', - ApyAscNullsFirst = 'apy_ASC_NULLS_FIRST', - ApyDesc = 'apy_DESC', - ApyDescNullsLast = 'apy_DESC_NULLS_LAST', +export enum OusdCompoundStrategyOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - DripperWethAsc = 'dripperWETH_ASC', - DripperWethAscNullsFirst = 'dripperWETH_ASC_NULLS_FIRST', - DripperWethDesc = 'dripperWETH_DESC', - DripperWethDescNullsLast = 'dripperWETH_DESC_NULLS_LAST', - FeesEth7DayAsc = 'feesETH7Day_ASC', - FeesEth7DayAscNullsFirst = 'feesETH7Day_ASC_NULLS_FIRST', - FeesEth7DayDesc = 'feesETH7Day_DESC', - FeesEth7DayDescNullsLast = 'feesETH7Day_DESC_NULLS_LAST', - FeesEthAllTimeAsc = 'feesETHAllTime_ASC', - FeesEthAllTimeAscNullsFirst = 'feesETHAllTime_ASC_NULLS_FIRST', - FeesEthAllTimeDesc = 'feesETHAllTime_DESC', - FeesEthAllTimeDescNullsLast = 'feesETHAllTime_DESC_NULLS_LAST', - FeesEthAsc = 'feesETH_ASC', - FeesEthAscNullsFirst = 'feesETH_ASC_NULLS_FIRST', - FeesEthDesc = 'feesETH_DESC', - FeesEthDescNullsLast = 'feesETH_DESC_NULLS_LAST', - FeesUsd7DayAsc = 'feesUSD7Day_ASC', - FeesUsd7DayAscNullsFirst = 'feesUSD7Day_ASC_NULLS_FIRST', - FeesUsd7DayDesc = 'feesUSD7Day_DESC', - FeesUsd7DayDescNullsLast = 'feesUSD7Day_DESC_NULLS_LAST', - FeesUsdAllTimeAsc = 'feesUSDAllTime_ASC', - FeesUsdAllTimeAscNullsFirst = 'feesUSDAllTime_ASC_NULLS_FIRST', - FeesUsdAllTimeDesc = 'feesUSDAllTime_DESC', - FeesUsdAllTimeDescNullsLast = 'feesUSDAllTime_DESC_NULLS_LAST', - FeesUsdAsc = 'feesUSD_ASC', - FeesUsdAscNullsFirst = 'feesUSD_ASC_NULLS_FIRST', - FeesUsdDesc = 'feesUSD_DESC', - FeesUsdDescNullsLast = 'feesUSD_DESC_NULLS_LAST', - HoldersOverThresholdAsc = 'holdersOverThreshold_ASC', - HoldersOverThresholdAscNullsFirst = 'holdersOverThreshold_ASC_NULLS_FIRST', - HoldersOverThresholdDesc = 'holdersOverThreshold_DESC', - HoldersOverThresholdDescNullsLast = 'holdersOverThreshold_DESC_NULLS_LAST', + DaiAsc = 'dai_ASC', + DaiAscNullsFirst = 'dai_ASC_NULLS_FIRST', + DaiDesc = 'dai_DESC', + DaiDescNullsLast = 'dai_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - MarketCapUsdAsc = 'marketCapUSD_ASC', - MarketCapUsdAscNullsFirst = 'marketCapUSD_ASC_NULLS_FIRST', - MarketCapUsdDesc = 'marketCapUSD_DESC', - MarketCapUsdDescNullsLast = 'marketCapUSD_DESC_NULLS_LAST', - NonRebasingSupplyAsc = 'nonRebasingSupply_ASC', - NonRebasingSupplyAscNullsFirst = 'nonRebasingSupply_ASC_NULLS_FIRST', - NonRebasingSupplyDesc = 'nonRebasingSupply_DESC', - NonRebasingSupplyDescNullsLast = 'nonRebasingSupply_DESC_NULLS_LAST', - PegPriceAsc = 'pegPrice_ASC', - PegPriceAscNullsFirst = 'pegPrice_ASC_NULLS_FIRST', - PegPriceDesc = 'pegPrice_DESC', - PegPriceDescNullsLast = 'pegPrice_DESC_NULLS_LAST', - RebasingSupplyAsc = 'rebasingSupply_ASC', - RebasingSupplyAscNullsFirst = 'rebasingSupply_ASC_NULLS_FIRST', - RebasingSupplyDesc = 'rebasingSupply_DESC', - RebasingSupplyDescNullsLast = 'rebasingSupply_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TotalSupplyUsdAsc = 'totalSupplyUSD_ASC', - TotalSupplyUsdAscNullsFirst = 'totalSupplyUSD_ASC_NULLS_FIRST', - TotalSupplyUsdDesc = 'totalSupplyUSD_DESC', - TotalSupplyUsdDescNullsLast = 'totalSupplyUSD_DESC_NULLS_LAST', - TotalSupplyAsc = 'totalSupply_ASC', - TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', - TotalSupplyDesc = 'totalSupply_DESC', - TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST', - TradingVolumeUsdAsc = 'tradingVolumeUSD_ASC', - TradingVolumeUsdAscNullsFirst = 'tradingVolumeUSD_ASC_NULLS_FIRST', - TradingVolumeUsdDesc = 'tradingVolumeUSD_DESC', - TradingVolumeUsdDescNullsLast = 'tradingVolumeUSD_DESC_NULLS_LAST', - WrappedSupplyAsc = 'wrappedSupply_ASC', - WrappedSupplyAscNullsFirst = 'wrappedSupply_ASC_NULLS_FIRST', - WrappedSupplyDesc = 'wrappedSupply_DESC', - WrappedSupplyDescNullsLast = 'wrappedSupply_DESC_NULLS_LAST', - YieldEth7DayAsc = 'yieldETH7Day_ASC', - YieldEth7DayAscNullsFirst = 'yieldETH7Day_ASC_NULLS_FIRST', - YieldEth7DayDesc = 'yieldETH7Day_DESC', - YieldEth7DayDescNullsLast = 'yieldETH7Day_DESC_NULLS_LAST', - YieldEthAllTimeAsc = 'yieldETHAllTime_ASC', - YieldEthAllTimeAscNullsFirst = 'yieldETHAllTime_ASC_NULLS_FIRST', - YieldEthAllTimeDesc = 'yieldETHAllTime_DESC', - YieldEthAllTimeDescNullsLast = 'yieldETHAllTime_DESC_NULLS_LAST', - YieldEthAsc = 'yieldETH_ASC', - YieldEthAscNullsFirst = 'yieldETH_ASC_NULLS_FIRST', - YieldEthDesc = 'yieldETH_DESC', - YieldEthDescNullsLast = 'yieldETH_DESC_NULLS_LAST', - YieldUsd7DayAsc = 'yieldUSD7Day_ASC', - YieldUsd7DayAscNullsFirst = 'yieldUSD7Day_ASC_NULLS_FIRST', - YieldUsd7DayDesc = 'yieldUSD7Day_DESC', - YieldUsd7DayDescNullsLast = 'yieldUSD7Day_DESC_NULLS_LAST', - YieldUsdAllTimeAsc = 'yieldUSDAllTime_ASC', - YieldUsdAllTimeAscNullsFirst = 'yieldUSDAllTime_ASC_NULLS_FIRST', - YieldUsdAllTimeDesc = 'yieldUSDAllTime_DESC', - YieldUsdAllTimeDescNullsLast = 'yieldUSDAllTime_DESC_NULLS_LAST', - YieldUsdAsc = 'yieldUSD_ASC', - YieldUsdAscNullsFirst = 'yieldUSD_ASC_NULLS_FIRST', - YieldUsdDesc = 'yieldUSD_DESC', - YieldUsdDescNullsLast = 'yieldUSD_DESC_NULLS_LAST' -} - -export type OusdDailyStatWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - amoSupply_eq?: InputMaybe; - amoSupply_gt?: InputMaybe; - amoSupply_gte?: InputMaybe; - amoSupply_in?: InputMaybe>; - amoSupply_isNull?: InputMaybe; - amoSupply_lt?: InputMaybe; - amoSupply_lte?: InputMaybe; - amoSupply_not_eq?: InputMaybe; - amoSupply_not_in?: InputMaybe>; - apr_eq?: InputMaybe; - apr_gt?: InputMaybe; - apr_gte?: InputMaybe; - apr_in?: InputMaybe>; - apr_isNull?: InputMaybe; - apr_lt?: InputMaybe; - apr_lte?: InputMaybe; - apr_not_eq?: InputMaybe; - apr_not_in?: InputMaybe>; - apy7DayAvg_eq?: InputMaybe; - apy7DayAvg_gt?: InputMaybe; - apy7DayAvg_gte?: InputMaybe; - apy7DayAvg_in?: InputMaybe>; - apy7DayAvg_isNull?: InputMaybe; - apy7DayAvg_lt?: InputMaybe; - apy7DayAvg_lte?: InputMaybe; - apy7DayAvg_not_eq?: InputMaybe; - apy7DayAvg_not_in?: InputMaybe>; - apy14DayAvg_eq?: InputMaybe; - apy14DayAvg_gt?: InputMaybe; - apy14DayAvg_gte?: InputMaybe; - apy14DayAvg_in?: InputMaybe>; - apy14DayAvg_isNull?: InputMaybe; - apy14DayAvg_lt?: InputMaybe; - apy14DayAvg_lte?: InputMaybe; - apy14DayAvg_not_eq?: InputMaybe; - apy14DayAvg_not_in?: InputMaybe>; - apy30DayAvg_eq?: InputMaybe; - apy30DayAvg_gt?: InputMaybe; - apy30DayAvg_gte?: InputMaybe; - apy30DayAvg_in?: InputMaybe>; - apy30DayAvg_isNull?: InputMaybe; - apy30DayAvg_lt?: InputMaybe; - apy30DayAvg_lte?: InputMaybe; - apy30DayAvg_not_eq?: InputMaybe; - apy30DayAvg_not_in?: InputMaybe>; - apy_eq?: InputMaybe; - apy_gt?: InputMaybe; - apy_gte?: InputMaybe; - apy_in?: InputMaybe>; - apy_isNull?: InputMaybe; - apy_lt?: InputMaybe; - apy_lte?: InputMaybe; - apy_not_eq?: InputMaybe; - apy_not_in?: InputMaybe>; + UsdcAsc = 'usdc_ASC', + UsdcAscNullsFirst = 'usdc_ASC_NULLS_FIRST', + UsdcDesc = 'usdc_DESC', + UsdcDescNullsLast = 'usdc_DESC_NULLS_LAST', + UsdtAsc = 'usdt_ASC', + UsdtAscNullsFirst = 'usdt_ASC_NULLS_FIRST', + UsdtDesc = 'usdt_DESC', + UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' +} + +export type OusdCompoundStrategyWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -9368,81 +8504,15 @@ export type OusdDailyStatWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; - collateral_every?: InputMaybe; - collateral_none?: InputMaybe; - collateral_some?: InputMaybe; - dripperWETH_eq?: InputMaybe; - dripperWETH_gt?: InputMaybe; - dripperWETH_gte?: InputMaybe; - dripperWETH_in?: InputMaybe>; - dripperWETH_isNull?: InputMaybe; - dripperWETH_lt?: InputMaybe; - dripperWETH_lte?: InputMaybe; - dripperWETH_not_eq?: InputMaybe; - dripperWETH_not_in?: InputMaybe>; - feesETH7Day_eq?: InputMaybe; - feesETH7Day_gt?: InputMaybe; - feesETH7Day_gte?: InputMaybe; - feesETH7Day_in?: InputMaybe>; - feesETH7Day_isNull?: InputMaybe; - feesETH7Day_lt?: InputMaybe; - feesETH7Day_lte?: InputMaybe; - feesETH7Day_not_eq?: InputMaybe; - feesETH7Day_not_in?: InputMaybe>; - feesETHAllTime_eq?: InputMaybe; - feesETHAllTime_gt?: InputMaybe; - feesETHAllTime_gte?: InputMaybe; - feesETHAllTime_in?: InputMaybe>; - feesETHAllTime_isNull?: InputMaybe; - feesETHAllTime_lt?: InputMaybe; - feesETHAllTime_lte?: InputMaybe; - feesETHAllTime_not_eq?: InputMaybe; - feesETHAllTime_not_in?: InputMaybe>; - feesETH_eq?: InputMaybe; - feesETH_gt?: InputMaybe; - feesETH_gte?: InputMaybe; - feesETH_in?: InputMaybe>; - feesETH_isNull?: InputMaybe; - feesETH_lt?: InputMaybe; - feesETH_lte?: InputMaybe; - feesETH_not_eq?: InputMaybe; - feesETH_not_in?: InputMaybe>; - feesUSD7Day_eq?: InputMaybe; - feesUSD7Day_gt?: InputMaybe; - feesUSD7Day_gte?: InputMaybe; - feesUSD7Day_in?: InputMaybe>; - feesUSD7Day_isNull?: InputMaybe; - feesUSD7Day_lt?: InputMaybe; - feesUSD7Day_lte?: InputMaybe; - feesUSD7Day_not_eq?: InputMaybe; - feesUSD7Day_not_in?: InputMaybe>; - feesUSDAllTime_eq?: InputMaybe; - feesUSDAllTime_gt?: InputMaybe; - feesUSDAllTime_gte?: InputMaybe; - feesUSDAllTime_in?: InputMaybe>; - feesUSDAllTime_isNull?: InputMaybe; - feesUSDAllTime_lt?: InputMaybe; - feesUSDAllTime_lte?: InputMaybe; - feesUSDAllTime_not_eq?: InputMaybe; - feesUSDAllTime_not_in?: InputMaybe>; - feesUSD_eq?: InputMaybe; - feesUSD_gt?: InputMaybe; - feesUSD_gte?: InputMaybe; - feesUSD_in?: InputMaybe>; - feesUSD_isNull?: InputMaybe; - feesUSD_lt?: InputMaybe; - feesUSD_lte?: InputMaybe; - feesUSD_not_eq?: InputMaybe; - feesUSD_not_in?: InputMaybe>; - holdersOverThreshold_eq?: InputMaybe; - holdersOverThreshold_gt?: InputMaybe; - holdersOverThreshold_gte?: InputMaybe; - holdersOverThreshold_in?: InputMaybe>; - holdersOverThreshold_isNull?: InputMaybe; - holdersOverThreshold_lt?: InputMaybe; - holdersOverThreshold_lte?: InputMaybe; - holdersOverThreshold_not_eq?: InputMaybe; - holdersOverThreshold_not_in?: InputMaybe>; + dai_eq?: InputMaybe; + dai_gt?: InputMaybe; + dai_gte?: InputMaybe; + dai_in?: InputMaybe>; + dai_isNull?: InputMaybe; + dai_lt?: InputMaybe; + dai_lte?: InputMaybe; + dai_not_eq?: InputMaybe; + dai_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -9460,45 +8530,6 @@ export type OusdDailyStatWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - marketCapUSD_eq?: InputMaybe; - marketCapUSD_gt?: InputMaybe; - marketCapUSD_gte?: InputMaybe; - marketCapUSD_in?: InputMaybe>; - marketCapUSD_isNull?: InputMaybe; - marketCapUSD_lt?: InputMaybe; - marketCapUSD_lte?: InputMaybe; - marketCapUSD_not_eq?: InputMaybe; - marketCapUSD_not_in?: InputMaybe>; - nonRebasingSupply_eq?: InputMaybe; - nonRebasingSupply_gt?: InputMaybe; - nonRebasingSupply_gte?: InputMaybe; - nonRebasingSupply_in?: InputMaybe>; - nonRebasingSupply_isNull?: InputMaybe; - nonRebasingSupply_lt?: InputMaybe; - nonRebasingSupply_lte?: InputMaybe; - nonRebasingSupply_not_eq?: InputMaybe; - nonRebasingSupply_not_in?: InputMaybe>; - pegPrice_eq?: InputMaybe; - pegPrice_gt?: InputMaybe; - pegPrice_gte?: InputMaybe; - pegPrice_in?: InputMaybe>; - pegPrice_isNull?: InputMaybe; - pegPrice_lt?: InputMaybe; - pegPrice_lte?: InputMaybe; - pegPrice_not_eq?: InputMaybe; - pegPrice_not_in?: InputMaybe>; - rebasingSupply_eq?: InputMaybe; - rebasingSupply_gt?: InputMaybe; - rebasingSupply_gte?: InputMaybe; - rebasingSupply_in?: InputMaybe>; - rebasingSupply_isNull?: InputMaybe; - rebasingSupply_lt?: InputMaybe; - rebasingSupply_lte?: InputMaybe; - rebasingSupply_not_eq?: InputMaybe; - rebasingSupply_not_in?: InputMaybe>; - strategies_every?: InputMaybe; - strategies_none?: InputMaybe; - strategies_some?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -9508,120 +8539,28 @@ export type OusdDailyStatWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - totalSupplyUSD_eq?: InputMaybe; - totalSupplyUSD_gt?: InputMaybe; - totalSupplyUSD_gte?: InputMaybe; - totalSupplyUSD_in?: InputMaybe>; - totalSupplyUSD_isNull?: InputMaybe; - totalSupplyUSD_lt?: InputMaybe; - totalSupplyUSD_lte?: InputMaybe; - totalSupplyUSD_not_eq?: InputMaybe; - totalSupplyUSD_not_in?: InputMaybe>; - totalSupply_eq?: InputMaybe; - totalSupply_gt?: InputMaybe; - totalSupply_gte?: InputMaybe; - totalSupply_in?: InputMaybe>; - totalSupply_isNull?: InputMaybe; - totalSupply_lt?: InputMaybe; - totalSupply_lte?: InputMaybe; - totalSupply_not_eq?: InputMaybe; - totalSupply_not_in?: InputMaybe>; - tradingVolumeUSD_eq?: InputMaybe; - tradingVolumeUSD_gt?: InputMaybe; - tradingVolumeUSD_gte?: InputMaybe; - tradingVolumeUSD_in?: InputMaybe>; - tradingVolumeUSD_isNull?: InputMaybe; - tradingVolumeUSD_lt?: InputMaybe; - tradingVolumeUSD_lte?: InputMaybe; - tradingVolumeUSD_not_eq?: InputMaybe; - tradingVolumeUSD_not_in?: InputMaybe>; - wrappedSupply_eq?: InputMaybe; - wrappedSupply_gt?: InputMaybe; - wrappedSupply_gte?: InputMaybe; - wrappedSupply_in?: InputMaybe>; - wrappedSupply_isNull?: InputMaybe; - wrappedSupply_lt?: InputMaybe; - wrappedSupply_lte?: InputMaybe; - wrappedSupply_not_eq?: InputMaybe; - wrappedSupply_not_in?: InputMaybe>; - yieldETH7Day_eq?: InputMaybe; - yieldETH7Day_gt?: InputMaybe; - yieldETH7Day_gte?: InputMaybe; - yieldETH7Day_in?: InputMaybe>; - yieldETH7Day_isNull?: InputMaybe; - yieldETH7Day_lt?: InputMaybe; - yieldETH7Day_lte?: InputMaybe; - yieldETH7Day_not_eq?: InputMaybe; - yieldETH7Day_not_in?: InputMaybe>; - yieldETHAllTime_eq?: InputMaybe; - yieldETHAllTime_gt?: InputMaybe; - yieldETHAllTime_gte?: InputMaybe; - yieldETHAllTime_in?: InputMaybe>; - yieldETHAllTime_isNull?: InputMaybe; - yieldETHAllTime_lt?: InputMaybe; - yieldETHAllTime_lte?: InputMaybe; - yieldETHAllTime_not_eq?: InputMaybe; - yieldETHAllTime_not_in?: InputMaybe>; - yieldETH_eq?: InputMaybe; - yieldETH_gt?: InputMaybe; - yieldETH_gte?: InputMaybe; - yieldETH_in?: InputMaybe>; - yieldETH_isNull?: InputMaybe; - yieldETH_lt?: InputMaybe; - yieldETH_lte?: InputMaybe; - yieldETH_not_eq?: InputMaybe; - yieldETH_not_in?: InputMaybe>; - yieldUSD7Day_eq?: InputMaybe; - yieldUSD7Day_gt?: InputMaybe; - yieldUSD7Day_gte?: InputMaybe; - yieldUSD7Day_in?: InputMaybe>; - yieldUSD7Day_isNull?: InputMaybe; - yieldUSD7Day_lt?: InputMaybe; - yieldUSD7Day_lte?: InputMaybe; - yieldUSD7Day_not_eq?: InputMaybe; - yieldUSD7Day_not_in?: InputMaybe>; - yieldUSDAllTime_eq?: InputMaybe; - yieldUSDAllTime_gt?: InputMaybe; - yieldUSDAllTime_gte?: InputMaybe; - yieldUSDAllTime_in?: InputMaybe>; - yieldUSDAllTime_isNull?: InputMaybe; - yieldUSDAllTime_lt?: InputMaybe; - yieldUSDAllTime_lte?: InputMaybe; - yieldUSDAllTime_not_eq?: InputMaybe; - yieldUSDAllTime_not_in?: InputMaybe>; - yieldUSD_eq?: InputMaybe; - yieldUSD_gt?: InputMaybe; - yieldUSD_gte?: InputMaybe; - yieldUSD_in?: InputMaybe>; - yieldUSD_isNull?: InputMaybe; - yieldUSD_lt?: InputMaybe; - yieldUSD_lte?: InputMaybe; - yieldUSD_not_eq?: InputMaybe; - yieldUSD_not_in?: InputMaybe>; -}; - -export type OusdDailyStatsConnection = { - __typename?: 'OUSDDailyStatsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OusdEdge = { - __typename?: 'OUSDEdge'; - cursor: Scalars['String']['output']; - node: Ousd; -}; - -export type OusdFluxStrategiesConnection = { - __typename?: 'OUSDFluxStrategiesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; + usdc_eq?: InputMaybe; + usdc_gt?: InputMaybe; + usdc_gte?: InputMaybe; + usdc_in?: InputMaybe>; + usdc_isNull?: InputMaybe; + usdc_lt?: InputMaybe; + usdc_lte?: InputMaybe; + usdc_not_eq?: InputMaybe; + usdc_not_in?: InputMaybe>; + usdt_eq?: InputMaybe; + usdt_gt?: InputMaybe; + usdt_gte?: InputMaybe; + usdt_in?: InputMaybe>; + usdt_isNull?: InputMaybe; + usdt_lt?: InputMaybe; + usdt_lte?: InputMaybe; + usdt_not_eq?: InputMaybe; + usdt_not_in?: InputMaybe>; }; -export type OusdFluxStrategy = { - __typename?: 'OUSDFluxStrategy'; +export type OusdConvexLusdPlus3Crv = { + __typename?: 'OUSDConvexLUSDPlus3Crv'; blockNumber: Scalars['Int']['output']; dai: Scalars['BigInt']['output']; id: Scalars['String']['output']; @@ -9630,13 +8569,13 @@ export type OusdFluxStrategy = { usdt: Scalars['BigInt']['output']; }; -export type OusdFluxStrategyEdge = { - __typename?: 'OUSDFluxStrategyEdge'; +export type OusdConvexLusdPlus3CrvEdge = { + __typename?: 'OUSDConvexLUSDPlus3CrvEdge'; cursor: Scalars['String']['output']; - node: OusdFluxStrategy; + node: OusdConvexLusdPlus3Crv; }; -export enum OusdFluxStrategyOrderByInput { +export enum OusdConvexLusdPlus3CrvOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', @@ -9663,9 +8602,9 @@ export enum OusdFluxStrategyOrderByInput { UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' } -export type OusdFluxStrategyWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OusdConvexLusdPlus3CrvWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -9730,69 +8669,45 @@ export type OusdFluxStrategyWhereInput = { usdt_not_in?: InputMaybe>; }; -export type OusdHistoriesConnection = { - __typename?: 'OUSDHistoriesConnection'; - edges: Array; +export type OusdConvexLusdPlus3CrvsConnection = { + __typename?: 'OUSDConvexLUSDPlus3CrvsConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -/** The History entity tracks events that change the balance of OUSD for an address. */ -export type OusdHistory = { - __typename?: 'OUSDHistory'; - address: OusdAddress; - balance: Scalars['BigInt']['output']; +export type OusdConvexStrategiesConnection = { + __typename?: 'OUSDConvexStrategiesConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; +}; + +export type OusdConvexStrategy = { + __typename?: 'OUSDConvexStrategy'; blockNumber: Scalars['Int']['output']; + dai: Scalars['BigInt']['output']; id: Scalars['String']['output']; timestamp: Scalars['DateTime']['output']; - txHash: Scalars['String']['output']; - type: HistoryType; - value: Scalars['BigInt']['output']; + usdc: Scalars['BigInt']['output']; + usdt: Scalars['BigInt']['output']; }; -export type OusdHistoryEdge = { - __typename?: 'OUSDHistoryEdge'; +export type OusdConvexStrategyEdge = { + __typename?: 'OUSDConvexStrategyEdge'; cursor: Scalars['String']['output']; - node: OusdHistory; + node: OusdConvexStrategy; }; -export enum OusdHistoryOrderByInput { - AddressBalanceAsc = 'address_balance_ASC', - AddressBalanceAscNullsFirst = 'address_balance_ASC_NULLS_FIRST', - AddressBalanceDesc = 'address_balance_DESC', - AddressBalanceDescNullsLast = 'address_balance_DESC_NULLS_LAST', - AddressCreditsAsc = 'address_credits_ASC', - AddressCreditsAscNullsFirst = 'address_credits_ASC_NULLS_FIRST', - AddressCreditsDesc = 'address_credits_DESC', - AddressCreditsDescNullsLast = 'address_credits_DESC_NULLS_LAST', - AddressEarnedAsc = 'address_earned_ASC', - AddressEarnedAscNullsFirst = 'address_earned_ASC_NULLS_FIRST', - AddressEarnedDesc = 'address_earned_DESC', - AddressEarnedDescNullsLast = 'address_earned_DESC_NULLS_LAST', - AddressIdAsc = 'address_id_ASC', - AddressIdAscNullsFirst = 'address_id_ASC_NULLS_FIRST', - AddressIdDesc = 'address_id_DESC', - AddressIdDescNullsLast = 'address_id_DESC_NULLS_LAST', - AddressIsContractAsc = 'address_isContract_ASC', - AddressIsContractAscNullsFirst = 'address_isContract_ASC_NULLS_FIRST', - AddressIsContractDesc = 'address_isContract_DESC', - AddressIsContractDescNullsLast = 'address_isContract_DESC_NULLS_LAST', - AddressLastUpdatedAsc = 'address_lastUpdated_ASC', - AddressLastUpdatedAscNullsFirst = 'address_lastUpdated_ASC_NULLS_FIRST', - AddressLastUpdatedDesc = 'address_lastUpdated_DESC', - AddressLastUpdatedDescNullsLast = 'address_lastUpdated_DESC_NULLS_LAST', - AddressRebasingOptionAsc = 'address_rebasingOption_ASC', - AddressRebasingOptionAscNullsFirst = 'address_rebasingOption_ASC_NULLS_FIRST', - AddressRebasingOptionDesc = 'address_rebasingOption_DESC', - AddressRebasingOptionDescNullsLast = 'address_rebasingOption_DESC_NULLS_LAST', - BalanceAsc = 'balance_ASC', - BalanceAscNullsFirst = 'balance_ASC_NULLS_FIRST', - BalanceDesc = 'balance_DESC', - BalanceDescNullsLast = 'balance_DESC_NULLS_LAST', +export enum OusdConvexStrategyOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + DaiAsc = 'dai_ASC', + DaiAscNullsFirst = 'dai_ASC_NULLS_FIRST', + DaiDesc = 'dai_DESC', + DaiDescNullsLast = 'dai_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', @@ -9801,34 +8716,19 @@ export enum OusdHistoryOrderByInput { TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TxHashAsc = 'txHash_ASC', - TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', - TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST', - TypeAsc = 'type_ASC', - TypeAscNullsFirst = 'type_ASC_NULLS_FIRST', - TypeDesc = 'type_DESC', - TypeDescNullsLast = 'type_DESC_NULLS_LAST', - ValueAsc = 'value_ASC', - ValueAscNullsFirst = 'value_ASC_NULLS_FIRST', - ValueDesc = 'value_DESC', - ValueDescNullsLast = 'value_DESC_NULLS_LAST' + UsdcAsc = 'usdc_ASC', + UsdcAscNullsFirst = 'usdc_ASC_NULLS_FIRST', + UsdcDesc = 'usdc_DESC', + UsdcDescNullsLast = 'usdc_DESC_NULLS_LAST', + UsdtAsc = 'usdt_ASC', + UsdtAscNullsFirst = 'usdt_ASC_NULLS_FIRST', + UsdtDesc = 'usdt_DESC', + UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' } -export type OusdHistoryWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - address?: InputMaybe; - address_isNull?: InputMaybe; - balance_eq?: InputMaybe; - balance_gt?: InputMaybe; - balance_gte?: InputMaybe; - balance_in?: InputMaybe>; - balance_isNull?: InputMaybe; - balance_lt?: InputMaybe; - balance_lte?: InputMaybe; - balance_not_eq?: InputMaybe; - balance_not_in?: InputMaybe>; +export type OusdConvexStrategyWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -9838,6 +8738,15 @@ export type OusdHistoryWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; + dai_eq?: InputMaybe; + dai_gt?: InputMaybe; + dai_gte?: InputMaybe; + dai_in?: InputMaybe>; + dai_isNull?: InputMaybe; + dai_lt?: InputMaybe; + dai_lte?: InputMaybe; + dai_not_eq?: InputMaybe; + dai_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -9864,92 +8773,269 @@ export type OusdHistoryWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - txHash_contains?: InputMaybe; - txHash_containsInsensitive?: InputMaybe; - txHash_endsWith?: InputMaybe; - txHash_eq?: InputMaybe; - txHash_gt?: InputMaybe; - txHash_gte?: InputMaybe; - txHash_in?: InputMaybe>; - txHash_isNull?: InputMaybe; - txHash_lt?: InputMaybe; - txHash_lte?: InputMaybe; - txHash_not_contains?: InputMaybe; - txHash_not_containsInsensitive?: InputMaybe; - txHash_not_endsWith?: InputMaybe; - txHash_not_eq?: InputMaybe; - txHash_not_in?: InputMaybe>; - txHash_not_startsWith?: InputMaybe; - txHash_startsWith?: InputMaybe; - type_eq?: InputMaybe; - type_in?: InputMaybe>; - type_isNull?: InputMaybe; - type_not_eq?: InputMaybe; - type_not_in?: InputMaybe>; - value_eq?: InputMaybe; - value_gt?: InputMaybe; - value_gte?: InputMaybe; - value_in?: InputMaybe>; - value_isNull?: InputMaybe; - value_lt?: InputMaybe; - value_lte?: InputMaybe; - value_not_eq?: InputMaybe; - value_not_in?: InputMaybe>; -}; - -export type OusdMetaStrategiesConnection = { - __typename?: 'OUSDMetaStrategiesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; + usdc_eq?: InputMaybe; + usdc_gt?: InputMaybe; + usdc_gte?: InputMaybe; + usdc_in?: InputMaybe>; + usdc_isNull?: InputMaybe; + usdc_lt?: InputMaybe; + usdc_lte?: InputMaybe; + usdc_not_eq?: InputMaybe; + usdc_not_in?: InputMaybe>; + usdt_eq?: InputMaybe; + usdt_gt?: InputMaybe; + usdt_gte?: InputMaybe; + usdt_in?: InputMaybe>; + usdt_isNull?: InputMaybe; + usdt_lt?: InputMaybe; + usdt_lte?: InputMaybe; + usdt_not_eq?: InputMaybe; + usdt_not_in?: InputMaybe>; }; -export type OusdMetaStrategy = { - __typename?: 'OUSDMetaStrategy'; +export type OusdDailyStat = { + __typename?: 'OUSDDailyStat'; + amoSupply: Scalars['BigInt']['output']; + apr: Scalars['Float']['output']; + apy: Scalars['Float']['output']; + apy7DayAvg: Scalars['Float']['output']; + apy14DayAvg: Scalars['Float']['output']; + apy30DayAvg: Scalars['Float']['output']; blockNumber: Scalars['Int']['output']; - dai: Scalars['BigInt']['output']; + collateral: Array; + dripperWETH: Scalars['BigInt']['output']; + feesETH: Scalars['BigInt']['output']; + feesETH7Day: Scalars['BigInt']['output']; + feesETHAllTime: Scalars['BigInt']['output']; + feesUSD: Scalars['BigInt']['output']; + feesUSD7Day: Scalars['BigInt']['output']; + feesUSDAllTime: Scalars['BigInt']['output']; + holdersOverThreshold: Scalars['Int']['output']; id: Scalars['String']['output']; + marketCapUSD: Scalars['Float']['output']; + nonRebasingSupply: Scalars['BigInt']['output']; + pegPrice: Scalars['BigInt']['output']; + rebasingSupply: Scalars['BigInt']['output']; + strategies: Array; timestamp: Scalars['DateTime']['output']; - usdc: Scalars['BigInt']['output']; - usdt: Scalars['BigInt']['output']; + totalSupply: Scalars['BigInt']['output']; + totalSupplyUSD: Scalars['Float']['output']; + tradingVolumeUSD: Scalars['Float']['output']; + wrappedSupply: Scalars['BigInt']['output']; + yieldETH: Scalars['BigInt']['output']; + yieldETH7Day: Scalars['BigInt']['output']; + yieldETHAllTime: Scalars['BigInt']['output']; + yieldUSD: Scalars['BigInt']['output']; + yieldUSD7Day: Scalars['BigInt']['output']; + yieldUSDAllTime: Scalars['BigInt']['output']; }; -export type OusdMetaStrategyEdge = { - __typename?: 'OUSDMetaStrategyEdge'; + +export type OusdDailyStatCollateralArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + + +export type OusdDailyStatStrategiesArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + +export type OusdDailyStatEdge = { + __typename?: 'OUSDDailyStatEdge'; cursor: Scalars['String']['output']; - node: OusdMetaStrategy; + node: OusdDailyStat; }; -export enum OusdMetaStrategyOrderByInput { +export enum OusdDailyStatOrderByInput { + AmoSupplyAsc = 'amoSupply_ASC', + AmoSupplyAscNullsFirst = 'amoSupply_ASC_NULLS_FIRST', + AmoSupplyDesc = 'amoSupply_DESC', + AmoSupplyDescNullsLast = 'amoSupply_DESC_NULLS_LAST', + AprAsc = 'apr_ASC', + AprAscNullsFirst = 'apr_ASC_NULLS_FIRST', + AprDesc = 'apr_DESC', + AprDescNullsLast = 'apr_DESC_NULLS_LAST', + Apy7DayAvgAsc = 'apy7DayAvg_ASC', + Apy7DayAvgAscNullsFirst = 'apy7DayAvg_ASC_NULLS_FIRST', + Apy7DayAvgDesc = 'apy7DayAvg_DESC', + Apy7DayAvgDescNullsLast = 'apy7DayAvg_DESC_NULLS_LAST', + Apy14DayAvgAsc = 'apy14DayAvg_ASC', + Apy14DayAvgAscNullsFirst = 'apy14DayAvg_ASC_NULLS_FIRST', + Apy14DayAvgDesc = 'apy14DayAvg_DESC', + Apy14DayAvgDescNullsLast = 'apy14DayAvg_DESC_NULLS_LAST', + Apy30DayAvgAsc = 'apy30DayAvg_ASC', + Apy30DayAvgAscNullsFirst = 'apy30DayAvg_ASC_NULLS_FIRST', + Apy30DayAvgDesc = 'apy30DayAvg_DESC', + Apy30DayAvgDescNullsLast = 'apy30DayAvg_DESC_NULLS_LAST', + ApyAsc = 'apy_ASC', + ApyAscNullsFirst = 'apy_ASC_NULLS_FIRST', + ApyDesc = 'apy_DESC', + ApyDescNullsLast = 'apy_DESC_NULLS_LAST', BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - DaiAsc = 'dai_ASC', - DaiAscNullsFirst = 'dai_ASC_NULLS_FIRST', - DaiDesc = 'dai_DESC', - DaiDescNullsLast = 'dai_DESC_NULLS_LAST', + DripperWethAsc = 'dripperWETH_ASC', + DripperWethAscNullsFirst = 'dripperWETH_ASC_NULLS_FIRST', + DripperWethDesc = 'dripperWETH_DESC', + DripperWethDescNullsLast = 'dripperWETH_DESC_NULLS_LAST', + FeesEth7DayAsc = 'feesETH7Day_ASC', + FeesEth7DayAscNullsFirst = 'feesETH7Day_ASC_NULLS_FIRST', + FeesEth7DayDesc = 'feesETH7Day_DESC', + FeesEth7DayDescNullsLast = 'feesETH7Day_DESC_NULLS_LAST', + FeesEthAllTimeAsc = 'feesETHAllTime_ASC', + FeesEthAllTimeAscNullsFirst = 'feesETHAllTime_ASC_NULLS_FIRST', + FeesEthAllTimeDesc = 'feesETHAllTime_DESC', + FeesEthAllTimeDescNullsLast = 'feesETHAllTime_DESC_NULLS_LAST', + FeesEthAsc = 'feesETH_ASC', + FeesEthAscNullsFirst = 'feesETH_ASC_NULLS_FIRST', + FeesEthDesc = 'feesETH_DESC', + FeesEthDescNullsLast = 'feesETH_DESC_NULLS_LAST', + FeesUsd7DayAsc = 'feesUSD7Day_ASC', + FeesUsd7DayAscNullsFirst = 'feesUSD7Day_ASC_NULLS_FIRST', + FeesUsd7DayDesc = 'feesUSD7Day_DESC', + FeesUsd7DayDescNullsLast = 'feesUSD7Day_DESC_NULLS_LAST', + FeesUsdAllTimeAsc = 'feesUSDAllTime_ASC', + FeesUsdAllTimeAscNullsFirst = 'feesUSDAllTime_ASC_NULLS_FIRST', + FeesUsdAllTimeDesc = 'feesUSDAllTime_DESC', + FeesUsdAllTimeDescNullsLast = 'feesUSDAllTime_DESC_NULLS_LAST', + FeesUsdAsc = 'feesUSD_ASC', + FeesUsdAscNullsFirst = 'feesUSD_ASC_NULLS_FIRST', + FeesUsdDesc = 'feesUSD_DESC', + FeesUsdDescNullsLast = 'feesUSD_DESC_NULLS_LAST', + HoldersOverThresholdAsc = 'holdersOverThreshold_ASC', + HoldersOverThresholdAscNullsFirst = 'holdersOverThreshold_ASC_NULLS_FIRST', + HoldersOverThresholdDesc = 'holdersOverThreshold_DESC', + HoldersOverThresholdDescNullsLast = 'holdersOverThreshold_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', + MarketCapUsdAsc = 'marketCapUSD_ASC', + MarketCapUsdAscNullsFirst = 'marketCapUSD_ASC_NULLS_FIRST', + MarketCapUsdDesc = 'marketCapUSD_DESC', + MarketCapUsdDescNullsLast = 'marketCapUSD_DESC_NULLS_LAST', + NonRebasingSupplyAsc = 'nonRebasingSupply_ASC', + NonRebasingSupplyAscNullsFirst = 'nonRebasingSupply_ASC_NULLS_FIRST', + NonRebasingSupplyDesc = 'nonRebasingSupply_DESC', + NonRebasingSupplyDescNullsLast = 'nonRebasingSupply_DESC_NULLS_LAST', + PegPriceAsc = 'pegPrice_ASC', + PegPriceAscNullsFirst = 'pegPrice_ASC_NULLS_FIRST', + PegPriceDesc = 'pegPrice_DESC', + PegPriceDescNullsLast = 'pegPrice_DESC_NULLS_LAST', + RebasingSupplyAsc = 'rebasingSupply_ASC', + RebasingSupplyAscNullsFirst = 'rebasingSupply_ASC_NULLS_FIRST', + RebasingSupplyDesc = 'rebasingSupply_DESC', + RebasingSupplyDescNullsLast = 'rebasingSupply_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - UsdcAsc = 'usdc_ASC', - UsdcAscNullsFirst = 'usdc_ASC_NULLS_FIRST', - UsdcDesc = 'usdc_DESC', - UsdcDescNullsLast = 'usdc_DESC_NULLS_LAST', - UsdtAsc = 'usdt_ASC', - UsdtAscNullsFirst = 'usdt_ASC_NULLS_FIRST', - UsdtDesc = 'usdt_DESC', - UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' + TotalSupplyUsdAsc = 'totalSupplyUSD_ASC', + TotalSupplyUsdAscNullsFirst = 'totalSupplyUSD_ASC_NULLS_FIRST', + TotalSupplyUsdDesc = 'totalSupplyUSD_DESC', + TotalSupplyUsdDescNullsLast = 'totalSupplyUSD_DESC_NULLS_LAST', + TotalSupplyAsc = 'totalSupply_ASC', + TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', + TotalSupplyDesc = 'totalSupply_DESC', + TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST', + TradingVolumeUsdAsc = 'tradingVolumeUSD_ASC', + TradingVolumeUsdAscNullsFirst = 'tradingVolumeUSD_ASC_NULLS_FIRST', + TradingVolumeUsdDesc = 'tradingVolumeUSD_DESC', + TradingVolumeUsdDescNullsLast = 'tradingVolumeUSD_DESC_NULLS_LAST', + WrappedSupplyAsc = 'wrappedSupply_ASC', + WrappedSupplyAscNullsFirst = 'wrappedSupply_ASC_NULLS_FIRST', + WrappedSupplyDesc = 'wrappedSupply_DESC', + WrappedSupplyDescNullsLast = 'wrappedSupply_DESC_NULLS_LAST', + YieldEth7DayAsc = 'yieldETH7Day_ASC', + YieldEth7DayAscNullsFirst = 'yieldETH7Day_ASC_NULLS_FIRST', + YieldEth7DayDesc = 'yieldETH7Day_DESC', + YieldEth7DayDescNullsLast = 'yieldETH7Day_DESC_NULLS_LAST', + YieldEthAllTimeAsc = 'yieldETHAllTime_ASC', + YieldEthAllTimeAscNullsFirst = 'yieldETHAllTime_ASC_NULLS_FIRST', + YieldEthAllTimeDesc = 'yieldETHAllTime_DESC', + YieldEthAllTimeDescNullsLast = 'yieldETHAllTime_DESC_NULLS_LAST', + YieldEthAsc = 'yieldETH_ASC', + YieldEthAscNullsFirst = 'yieldETH_ASC_NULLS_FIRST', + YieldEthDesc = 'yieldETH_DESC', + YieldEthDescNullsLast = 'yieldETH_DESC_NULLS_LAST', + YieldUsd7DayAsc = 'yieldUSD7Day_ASC', + YieldUsd7DayAscNullsFirst = 'yieldUSD7Day_ASC_NULLS_FIRST', + YieldUsd7DayDesc = 'yieldUSD7Day_DESC', + YieldUsd7DayDescNullsLast = 'yieldUSD7Day_DESC_NULLS_LAST', + YieldUsdAllTimeAsc = 'yieldUSDAllTime_ASC', + YieldUsdAllTimeAscNullsFirst = 'yieldUSDAllTime_ASC_NULLS_FIRST', + YieldUsdAllTimeDesc = 'yieldUSDAllTime_DESC', + YieldUsdAllTimeDescNullsLast = 'yieldUSDAllTime_DESC_NULLS_LAST', + YieldUsdAsc = 'yieldUSD_ASC', + YieldUsdAscNullsFirst = 'yieldUSD_ASC_NULLS_FIRST', + YieldUsdDesc = 'yieldUSD_DESC', + YieldUsdDescNullsLast = 'yieldUSD_DESC_NULLS_LAST' } -export type OusdMetaStrategyWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OusdDailyStatWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + amoSupply_eq?: InputMaybe; + amoSupply_gt?: InputMaybe; + amoSupply_gte?: InputMaybe; + amoSupply_in?: InputMaybe>; + amoSupply_isNull?: InputMaybe; + amoSupply_lt?: InputMaybe; + amoSupply_lte?: InputMaybe; + amoSupply_not_eq?: InputMaybe; + amoSupply_not_in?: InputMaybe>; + apr_eq?: InputMaybe; + apr_gt?: InputMaybe; + apr_gte?: InputMaybe; + apr_in?: InputMaybe>; + apr_isNull?: InputMaybe; + apr_lt?: InputMaybe; + apr_lte?: InputMaybe; + apr_not_eq?: InputMaybe; + apr_not_in?: InputMaybe>; + apy7DayAvg_eq?: InputMaybe; + apy7DayAvg_gt?: InputMaybe; + apy7DayAvg_gte?: InputMaybe; + apy7DayAvg_in?: InputMaybe>; + apy7DayAvg_isNull?: InputMaybe; + apy7DayAvg_lt?: InputMaybe; + apy7DayAvg_lte?: InputMaybe; + apy7DayAvg_not_eq?: InputMaybe; + apy7DayAvg_not_in?: InputMaybe>; + apy14DayAvg_eq?: InputMaybe; + apy14DayAvg_gt?: InputMaybe; + apy14DayAvg_gte?: InputMaybe; + apy14DayAvg_in?: InputMaybe>; + apy14DayAvg_isNull?: InputMaybe; + apy14DayAvg_lt?: InputMaybe; + apy14DayAvg_lte?: InputMaybe; + apy14DayAvg_not_eq?: InputMaybe; + apy14DayAvg_not_in?: InputMaybe>; + apy30DayAvg_eq?: InputMaybe; + apy30DayAvg_gt?: InputMaybe; + apy30DayAvg_gte?: InputMaybe; + apy30DayAvg_in?: InputMaybe>; + apy30DayAvg_isNull?: InputMaybe; + apy30DayAvg_lt?: InputMaybe; + apy30DayAvg_lte?: InputMaybe; + apy30DayAvg_not_eq?: InputMaybe; + apy30DayAvg_not_in?: InputMaybe>; + apy_eq?: InputMaybe; + apy_gt?: InputMaybe; + apy_gte?: InputMaybe; + apy_in?: InputMaybe>; + apy_isNull?: InputMaybe; + apy_lt?: InputMaybe; + apy_lte?: InputMaybe; + apy_not_eq?: InputMaybe; + apy_not_in?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -9959,15 +9045,81 @@ export type OusdMetaStrategyWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; - dai_eq?: InputMaybe; - dai_gt?: InputMaybe; - dai_gte?: InputMaybe; - dai_in?: InputMaybe>; - dai_isNull?: InputMaybe; - dai_lt?: InputMaybe; - dai_lte?: InputMaybe; - dai_not_eq?: InputMaybe; - dai_not_in?: InputMaybe>; + collateral_every?: InputMaybe; + collateral_none?: InputMaybe; + collateral_some?: InputMaybe; + dripperWETH_eq?: InputMaybe; + dripperWETH_gt?: InputMaybe; + dripperWETH_gte?: InputMaybe; + dripperWETH_in?: InputMaybe>; + dripperWETH_isNull?: InputMaybe; + dripperWETH_lt?: InputMaybe; + dripperWETH_lte?: InputMaybe; + dripperWETH_not_eq?: InputMaybe; + dripperWETH_not_in?: InputMaybe>; + feesETH7Day_eq?: InputMaybe; + feesETH7Day_gt?: InputMaybe; + feesETH7Day_gte?: InputMaybe; + feesETH7Day_in?: InputMaybe>; + feesETH7Day_isNull?: InputMaybe; + feesETH7Day_lt?: InputMaybe; + feesETH7Day_lte?: InputMaybe; + feesETH7Day_not_eq?: InputMaybe; + feesETH7Day_not_in?: InputMaybe>; + feesETHAllTime_eq?: InputMaybe; + feesETHAllTime_gt?: InputMaybe; + feesETHAllTime_gte?: InputMaybe; + feesETHAllTime_in?: InputMaybe>; + feesETHAllTime_isNull?: InputMaybe; + feesETHAllTime_lt?: InputMaybe; + feesETHAllTime_lte?: InputMaybe; + feesETHAllTime_not_eq?: InputMaybe; + feesETHAllTime_not_in?: InputMaybe>; + feesETH_eq?: InputMaybe; + feesETH_gt?: InputMaybe; + feesETH_gte?: InputMaybe; + feesETH_in?: InputMaybe>; + feesETH_isNull?: InputMaybe; + feesETH_lt?: InputMaybe; + feesETH_lte?: InputMaybe; + feesETH_not_eq?: InputMaybe; + feesETH_not_in?: InputMaybe>; + feesUSD7Day_eq?: InputMaybe; + feesUSD7Day_gt?: InputMaybe; + feesUSD7Day_gte?: InputMaybe; + feesUSD7Day_in?: InputMaybe>; + feesUSD7Day_isNull?: InputMaybe; + feesUSD7Day_lt?: InputMaybe; + feesUSD7Day_lte?: InputMaybe; + feesUSD7Day_not_eq?: InputMaybe; + feesUSD7Day_not_in?: InputMaybe>; + feesUSDAllTime_eq?: InputMaybe; + feesUSDAllTime_gt?: InputMaybe; + feesUSDAllTime_gte?: InputMaybe; + feesUSDAllTime_in?: InputMaybe>; + feesUSDAllTime_isNull?: InputMaybe; + feesUSDAllTime_lt?: InputMaybe; + feesUSDAllTime_lte?: InputMaybe; + feesUSDAllTime_not_eq?: InputMaybe; + feesUSDAllTime_not_in?: InputMaybe>; + feesUSD_eq?: InputMaybe; + feesUSD_gt?: InputMaybe; + feesUSD_gte?: InputMaybe; + feesUSD_in?: InputMaybe>; + feesUSD_isNull?: InputMaybe; + feesUSD_lt?: InputMaybe; + feesUSD_lte?: InputMaybe; + feesUSD_not_eq?: InputMaybe; + feesUSD_not_in?: InputMaybe>; + holdersOverThreshold_eq?: InputMaybe; + holdersOverThreshold_gt?: InputMaybe; + holdersOverThreshold_gte?: InputMaybe; + holdersOverThreshold_in?: InputMaybe>; + holdersOverThreshold_isNull?: InputMaybe; + holdersOverThreshold_lt?: InputMaybe; + holdersOverThreshold_lte?: InputMaybe; + holdersOverThreshold_not_eq?: InputMaybe; + holdersOverThreshold_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -9985,6 +9137,45 @@ export type OusdMetaStrategyWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; + marketCapUSD_eq?: InputMaybe; + marketCapUSD_gt?: InputMaybe; + marketCapUSD_gte?: InputMaybe; + marketCapUSD_in?: InputMaybe>; + marketCapUSD_isNull?: InputMaybe; + marketCapUSD_lt?: InputMaybe; + marketCapUSD_lte?: InputMaybe; + marketCapUSD_not_eq?: InputMaybe; + marketCapUSD_not_in?: InputMaybe>; + nonRebasingSupply_eq?: InputMaybe; + nonRebasingSupply_gt?: InputMaybe; + nonRebasingSupply_gte?: InputMaybe; + nonRebasingSupply_in?: InputMaybe>; + nonRebasingSupply_isNull?: InputMaybe; + nonRebasingSupply_lt?: InputMaybe; + nonRebasingSupply_lte?: InputMaybe; + nonRebasingSupply_not_eq?: InputMaybe; + nonRebasingSupply_not_in?: InputMaybe>; + pegPrice_eq?: InputMaybe; + pegPrice_gt?: InputMaybe; + pegPrice_gte?: InputMaybe; + pegPrice_in?: InputMaybe>; + pegPrice_isNull?: InputMaybe; + pegPrice_lt?: InputMaybe; + pegPrice_lte?: InputMaybe; + pegPrice_not_eq?: InputMaybe; + pegPrice_not_in?: InputMaybe>; + rebasingSupply_eq?: InputMaybe; + rebasingSupply_gt?: InputMaybe; + rebasingSupply_gte?: InputMaybe; + rebasingSupply_in?: InputMaybe>; + rebasingSupply_isNull?: InputMaybe; + rebasingSupply_lt?: InputMaybe; + rebasingSupply_lte?: InputMaybe; + rebasingSupply_not_eq?: InputMaybe; + rebasingSupply_not_in?: InputMaybe>; + strategies_every?: InputMaybe; + strategies_none?: InputMaybe; + strategies_some?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -9994,28 +9185,114 @@ export type OusdMetaStrategyWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - usdc_eq?: InputMaybe; - usdc_gt?: InputMaybe; - usdc_gte?: InputMaybe; - usdc_in?: InputMaybe>; - usdc_isNull?: InputMaybe; - usdc_lt?: InputMaybe; - usdc_lte?: InputMaybe; - usdc_not_eq?: InputMaybe; - usdc_not_in?: InputMaybe>; - usdt_eq?: InputMaybe; - usdt_gt?: InputMaybe; - usdt_gte?: InputMaybe; - usdt_in?: InputMaybe>; - usdt_isNull?: InputMaybe; - usdt_lt?: InputMaybe; - usdt_lte?: InputMaybe; - usdt_not_eq?: InputMaybe; - usdt_not_in?: InputMaybe>; + totalSupplyUSD_eq?: InputMaybe; + totalSupplyUSD_gt?: InputMaybe; + totalSupplyUSD_gte?: InputMaybe; + totalSupplyUSD_in?: InputMaybe>; + totalSupplyUSD_isNull?: InputMaybe; + totalSupplyUSD_lt?: InputMaybe; + totalSupplyUSD_lte?: InputMaybe; + totalSupplyUSD_not_eq?: InputMaybe; + totalSupplyUSD_not_in?: InputMaybe>; + totalSupply_eq?: InputMaybe; + totalSupply_gt?: InputMaybe; + totalSupply_gte?: InputMaybe; + totalSupply_in?: InputMaybe>; + totalSupply_isNull?: InputMaybe; + totalSupply_lt?: InputMaybe; + totalSupply_lte?: InputMaybe; + totalSupply_not_eq?: InputMaybe; + totalSupply_not_in?: InputMaybe>; + tradingVolumeUSD_eq?: InputMaybe; + tradingVolumeUSD_gt?: InputMaybe; + tradingVolumeUSD_gte?: InputMaybe; + tradingVolumeUSD_in?: InputMaybe>; + tradingVolumeUSD_isNull?: InputMaybe; + tradingVolumeUSD_lt?: InputMaybe; + tradingVolumeUSD_lte?: InputMaybe; + tradingVolumeUSD_not_eq?: InputMaybe; + tradingVolumeUSD_not_in?: InputMaybe>; + wrappedSupply_eq?: InputMaybe; + wrappedSupply_gt?: InputMaybe; + wrappedSupply_gte?: InputMaybe; + wrappedSupply_in?: InputMaybe>; + wrappedSupply_isNull?: InputMaybe; + wrappedSupply_lt?: InputMaybe; + wrappedSupply_lte?: InputMaybe; + wrappedSupply_not_eq?: InputMaybe; + wrappedSupply_not_in?: InputMaybe>; + yieldETH7Day_eq?: InputMaybe; + yieldETH7Day_gt?: InputMaybe; + yieldETH7Day_gte?: InputMaybe; + yieldETH7Day_in?: InputMaybe>; + yieldETH7Day_isNull?: InputMaybe; + yieldETH7Day_lt?: InputMaybe; + yieldETH7Day_lte?: InputMaybe; + yieldETH7Day_not_eq?: InputMaybe; + yieldETH7Day_not_in?: InputMaybe>; + yieldETHAllTime_eq?: InputMaybe; + yieldETHAllTime_gt?: InputMaybe; + yieldETHAllTime_gte?: InputMaybe; + yieldETHAllTime_in?: InputMaybe>; + yieldETHAllTime_isNull?: InputMaybe; + yieldETHAllTime_lt?: InputMaybe; + yieldETHAllTime_lte?: InputMaybe; + yieldETHAllTime_not_eq?: InputMaybe; + yieldETHAllTime_not_in?: InputMaybe>; + yieldETH_eq?: InputMaybe; + yieldETH_gt?: InputMaybe; + yieldETH_gte?: InputMaybe; + yieldETH_in?: InputMaybe>; + yieldETH_isNull?: InputMaybe; + yieldETH_lt?: InputMaybe; + yieldETH_lte?: InputMaybe; + yieldETH_not_eq?: InputMaybe; + yieldETH_not_in?: InputMaybe>; + yieldUSD7Day_eq?: InputMaybe; + yieldUSD7Day_gt?: InputMaybe; + yieldUSD7Day_gte?: InputMaybe; + yieldUSD7Day_in?: InputMaybe>; + yieldUSD7Day_isNull?: InputMaybe; + yieldUSD7Day_lt?: InputMaybe; + yieldUSD7Day_lte?: InputMaybe; + yieldUSD7Day_not_eq?: InputMaybe; + yieldUSD7Day_not_in?: InputMaybe>; + yieldUSDAllTime_eq?: InputMaybe; + yieldUSDAllTime_gt?: InputMaybe; + yieldUSDAllTime_gte?: InputMaybe; + yieldUSDAllTime_in?: InputMaybe>; + yieldUSDAllTime_isNull?: InputMaybe; + yieldUSDAllTime_lt?: InputMaybe; + yieldUSDAllTime_lte?: InputMaybe; + yieldUSDAllTime_not_eq?: InputMaybe; + yieldUSDAllTime_not_in?: InputMaybe>; + yieldUSD_eq?: InputMaybe; + yieldUSD_gt?: InputMaybe; + yieldUSD_gte?: InputMaybe; + yieldUSD_in?: InputMaybe>; + yieldUSD_isNull?: InputMaybe; + yieldUSD_lt?: InputMaybe; + yieldUSD_lte?: InputMaybe; + yieldUSD_not_eq?: InputMaybe; + yieldUSD_not_in?: InputMaybe>; }; -export type OusdMorphoAave = { - __typename?: 'OUSDMorphoAave'; +export type OusdDailyStatsConnection = { + __typename?: 'OUSDDailyStatsConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; +}; + +export type OusdFluxStrategiesConnection = { + __typename?: 'OUSDFluxStrategiesConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; +}; + +export type OusdFluxStrategy = { + __typename?: 'OUSDFluxStrategy'; blockNumber: Scalars['Int']['output']; dai: Scalars['BigInt']['output']; id: Scalars['String']['output']; @@ -10024,13 +9301,13 @@ export type OusdMorphoAave = { usdt: Scalars['BigInt']['output']; }; -export type OusdMorphoAaveEdge = { - __typename?: 'OUSDMorphoAaveEdge'; +export type OusdFluxStrategyEdge = { + __typename?: 'OUSDFluxStrategyEdge'; cursor: Scalars['String']['output']; - node: OusdMorphoAave; + node: OusdFluxStrategy; }; -export enum OusdMorphoAaveOrderByInput { +export enum OusdFluxStrategyOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', @@ -10057,9 +9334,9 @@ export enum OusdMorphoAaveOrderByInput { UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' } -export type OusdMorphoAaveWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OusdFluxStrategyWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -10124,15 +9401,15 @@ export type OusdMorphoAaveWhereInput = { usdt_not_in?: InputMaybe>; }; -export type OusdMorphoAavesConnection = { - __typename?: 'OUSDMorphoAavesConnection'; - edges: Array; +export type OusdMetaStrategiesConnection = { + __typename?: 'OUSDMetaStrategiesConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export type OusdMorphoCompound = { - __typename?: 'OUSDMorphoCompound'; +export type OusdMetaStrategy = { + __typename?: 'OUSDMetaStrategy'; blockNumber: Scalars['Int']['output']; dai: Scalars['BigInt']['output']; id: Scalars['String']['output']; @@ -10141,13 +9418,13 @@ export type OusdMorphoCompound = { usdt: Scalars['BigInt']['output']; }; -export type OusdMorphoCompoundEdge = { - __typename?: 'OUSDMorphoCompoundEdge'; +export type OusdMetaStrategyEdge = { + __typename?: 'OUSDMetaStrategyEdge'; cursor: Scalars['String']['output']; - node: OusdMorphoCompound; + node: OusdMetaStrategy; }; -export enum OusdMorphoCompoundOrderByInput { +export enum OusdMetaStrategyOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', @@ -10174,9 +9451,9 @@ export enum OusdMorphoCompoundOrderByInput { UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' } -export type OusdMorphoCompoundWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OusdMetaStrategyWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -10229,148 +9506,64 @@ export type OusdMorphoCompoundWhereInput = { usdc_lt?: InputMaybe; usdc_lte?: InputMaybe; usdc_not_eq?: InputMaybe; - usdc_not_in?: InputMaybe>; - usdt_eq?: InputMaybe; - usdt_gt?: InputMaybe; - usdt_gte?: InputMaybe; - usdt_in?: InputMaybe>; - usdt_isNull?: InputMaybe; - usdt_lt?: InputMaybe; - usdt_lte?: InputMaybe; - usdt_not_eq?: InputMaybe; - usdt_not_in?: InputMaybe>; -}; - -export type OusdMorphoCompoundsConnection = { - __typename?: 'OUSDMorphoCompoundsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export enum OusdOrderByInput { - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - NonRebasingSupplyAsc = 'nonRebasingSupply_ASC', - NonRebasingSupplyAscNullsFirst = 'nonRebasingSupply_ASC_NULLS_FIRST', - NonRebasingSupplyDesc = 'nonRebasingSupply_DESC', - NonRebasingSupplyDescNullsLast = 'nonRebasingSupply_DESC_NULLS_LAST', - RebasingSupplyAsc = 'rebasingSupply_ASC', - RebasingSupplyAscNullsFirst = 'rebasingSupply_ASC_NULLS_FIRST', - RebasingSupplyDesc = 'rebasingSupply_DESC', - RebasingSupplyDescNullsLast = 'rebasingSupply_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TotalSupplyAsc = 'totalSupply_ASC', - TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', - TotalSupplyDesc = 'totalSupply_DESC', - TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST' -} - -/** The Rebase entity tracks historical rebase events on the OUSD contract. */ -export type OusdRebase = { - __typename?: 'OUSDRebase'; - apy: Ousdapy; - blockNumber: Scalars['Int']['output']; - feeETH: Scalars['BigInt']['output']; - feeUSD: Scalars['BigInt']['output']; - id: Scalars['String']['output']; - rebasingCredits: Scalars['BigInt']['output']; - rebasingCreditsPerToken: Scalars['BigInt']['output']; - timestamp: Scalars['DateTime']['output']; - totalSupply: Scalars['BigInt']['output']; - txHash: Scalars['String']['output']; - yieldETH: Scalars['BigInt']['output']; - yieldUSD: Scalars['BigInt']['output']; -}; - -export type OusdRebaseEdge = { - __typename?: 'OUSDRebaseEdge'; - cursor: Scalars['String']['output']; - node: OusdRebase; + usdc_not_in?: InputMaybe>; + usdt_eq?: InputMaybe; + usdt_gt?: InputMaybe; + usdt_gte?: InputMaybe; + usdt_in?: InputMaybe>; + usdt_isNull?: InputMaybe; + usdt_lt?: InputMaybe; + usdt_lte?: InputMaybe; + usdt_not_eq?: InputMaybe; + usdt_not_in?: InputMaybe>; }; -/** The RebaseOption entity tracks historical rebase option changes by address. */ -export type OusdRebaseOption = { - __typename?: 'OUSDRebaseOption'; - address: OusdAddress; +export type OusdMorphoAave = { + __typename?: 'OUSDMorphoAave'; blockNumber: Scalars['Int']['output']; + dai: Scalars['BigInt']['output']; id: Scalars['String']['output']; - status: RebasingOption; timestamp: Scalars['DateTime']['output']; - txHash: Scalars['String']['output']; + usdc: Scalars['BigInt']['output']; + usdt: Scalars['BigInt']['output']; }; -export type OusdRebaseOptionEdge = { - __typename?: 'OUSDRebaseOptionEdge'; +export type OusdMorphoAaveEdge = { + __typename?: 'OUSDMorphoAaveEdge'; cursor: Scalars['String']['output']; - node: OusdRebaseOption; + node: OusdMorphoAave; }; -export enum OusdRebaseOptionOrderByInput { - AddressBalanceAsc = 'address_balance_ASC', - AddressBalanceAscNullsFirst = 'address_balance_ASC_NULLS_FIRST', - AddressBalanceDesc = 'address_balance_DESC', - AddressBalanceDescNullsLast = 'address_balance_DESC_NULLS_LAST', - AddressCreditsAsc = 'address_credits_ASC', - AddressCreditsAscNullsFirst = 'address_credits_ASC_NULLS_FIRST', - AddressCreditsDesc = 'address_credits_DESC', - AddressCreditsDescNullsLast = 'address_credits_DESC_NULLS_LAST', - AddressEarnedAsc = 'address_earned_ASC', - AddressEarnedAscNullsFirst = 'address_earned_ASC_NULLS_FIRST', - AddressEarnedDesc = 'address_earned_DESC', - AddressEarnedDescNullsLast = 'address_earned_DESC_NULLS_LAST', - AddressIdAsc = 'address_id_ASC', - AddressIdAscNullsFirst = 'address_id_ASC_NULLS_FIRST', - AddressIdDesc = 'address_id_DESC', - AddressIdDescNullsLast = 'address_id_DESC_NULLS_LAST', - AddressIsContractAsc = 'address_isContract_ASC', - AddressIsContractAscNullsFirst = 'address_isContract_ASC_NULLS_FIRST', - AddressIsContractDesc = 'address_isContract_DESC', - AddressIsContractDescNullsLast = 'address_isContract_DESC_NULLS_LAST', - AddressLastUpdatedAsc = 'address_lastUpdated_ASC', - AddressLastUpdatedAscNullsFirst = 'address_lastUpdated_ASC_NULLS_FIRST', - AddressLastUpdatedDesc = 'address_lastUpdated_DESC', - AddressLastUpdatedDescNullsLast = 'address_lastUpdated_DESC_NULLS_LAST', - AddressRebasingOptionAsc = 'address_rebasingOption_ASC', - AddressRebasingOptionAscNullsFirst = 'address_rebasingOption_ASC_NULLS_FIRST', - AddressRebasingOptionDesc = 'address_rebasingOption_DESC', - AddressRebasingOptionDescNullsLast = 'address_rebasingOption_DESC_NULLS_LAST', +export enum OusdMorphoAaveOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + DaiAsc = 'dai_ASC', + DaiAscNullsFirst = 'dai_ASC_NULLS_FIRST', + DaiDesc = 'dai_DESC', + DaiDescNullsLast = 'dai_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - StatusAsc = 'status_ASC', - StatusAscNullsFirst = 'status_ASC_NULLS_FIRST', - StatusDesc = 'status_DESC', - StatusDescNullsLast = 'status_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TxHashAsc = 'txHash_ASC', - TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', - TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST' + UsdcAsc = 'usdc_ASC', + UsdcAscNullsFirst = 'usdc_ASC_NULLS_FIRST', + UsdcDesc = 'usdc_DESC', + UsdcDescNullsLast = 'usdc_DESC_NULLS_LAST', + UsdtAsc = 'usdt_ASC', + UsdtAscNullsFirst = 'usdt_ASC_NULLS_FIRST', + UsdtDesc = 'usdt_DESC', + UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' } -export type OusdRebaseOptionWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - address?: InputMaybe; - address_isNull?: InputMaybe; +export type OusdMorphoAaveWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -10380,6 +9573,15 @@ export type OusdRebaseOptionWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; + dai_eq?: InputMaybe; + dai_gt?: InputMaybe; + dai_gte?: InputMaybe; + dai_in?: InputMaybe>; + dai_isNull?: InputMaybe; + dai_lt?: InputMaybe; + dai_lte?: InputMaybe; + dai_not_eq?: InputMaybe; + dai_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -10397,11 +9599,6 @@ export type OusdRebaseOptionWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - status_eq?: InputMaybe; - status_in?: InputMaybe>; - status_isNull?: InputMaybe; - status_not_eq?: InputMaybe; - status_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -10411,124 +9608,79 @@ export type OusdRebaseOptionWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - txHash_contains?: InputMaybe; - txHash_containsInsensitive?: InputMaybe; - txHash_endsWith?: InputMaybe; - txHash_eq?: InputMaybe; - txHash_gt?: InputMaybe; - txHash_gte?: InputMaybe; - txHash_in?: InputMaybe>; - txHash_isNull?: InputMaybe; - txHash_lt?: InputMaybe; - txHash_lte?: InputMaybe; - txHash_not_contains?: InputMaybe; - txHash_not_containsInsensitive?: InputMaybe; - txHash_not_endsWith?: InputMaybe; - txHash_not_eq?: InputMaybe; - txHash_not_in?: InputMaybe>; - txHash_not_startsWith?: InputMaybe; - txHash_startsWith?: InputMaybe; + usdc_eq?: InputMaybe; + usdc_gt?: InputMaybe; + usdc_gte?: InputMaybe; + usdc_in?: InputMaybe>; + usdc_isNull?: InputMaybe; + usdc_lt?: InputMaybe; + usdc_lte?: InputMaybe; + usdc_not_eq?: InputMaybe; + usdc_not_in?: InputMaybe>; + usdt_eq?: InputMaybe; + usdt_gt?: InputMaybe; + usdt_gte?: InputMaybe; + usdt_in?: InputMaybe>; + usdt_isNull?: InputMaybe; + usdt_lt?: InputMaybe; + usdt_lte?: InputMaybe; + usdt_not_eq?: InputMaybe; + usdt_not_in?: InputMaybe>; }; -export type OusdRebaseOptionsConnection = { - __typename?: 'OUSDRebaseOptionsConnection'; - edges: Array; +export type OusdMorphoAavesConnection = { + __typename?: 'OUSDMorphoAavesConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export enum OusdRebaseOrderByInput { - ApyAprAsc = 'apy_apr_ASC', - ApyAprAscNullsFirst = 'apy_apr_ASC_NULLS_FIRST', - ApyAprDesc = 'apy_apr_DESC', - ApyAprDescNullsLast = 'apy_apr_DESC_NULLS_LAST', - ApyApy7DayAvgAsc = 'apy_apy7DayAvg_ASC', - ApyApy7DayAvgAscNullsFirst = 'apy_apy7DayAvg_ASC_NULLS_FIRST', - ApyApy7DayAvgDesc = 'apy_apy7DayAvg_DESC', - ApyApy7DayAvgDescNullsLast = 'apy_apy7DayAvg_DESC_NULLS_LAST', - ApyApy14DayAvgAsc = 'apy_apy14DayAvg_ASC', - ApyApy14DayAvgAscNullsFirst = 'apy_apy14DayAvg_ASC_NULLS_FIRST', - ApyApy14DayAvgDesc = 'apy_apy14DayAvg_DESC', - ApyApy14DayAvgDescNullsLast = 'apy_apy14DayAvg_DESC_NULLS_LAST', - ApyApy30DayAvgAsc = 'apy_apy30DayAvg_ASC', - ApyApy30DayAvgAscNullsFirst = 'apy_apy30DayAvg_ASC_NULLS_FIRST', - ApyApy30DayAvgDesc = 'apy_apy30DayAvg_DESC', - ApyApy30DayAvgDescNullsLast = 'apy_apy30DayAvg_DESC_NULLS_LAST', - ApyApyAsc = 'apy_apy_ASC', - ApyApyAscNullsFirst = 'apy_apy_ASC_NULLS_FIRST', - ApyApyDesc = 'apy_apy_DESC', - ApyApyDescNullsLast = 'apy_apy_DESC_NULLS_LAST', - ApyBlockNumberAsc = 'apy_blockNumber_ASC', - ApyBlockNumberAscNullsFirst = 'apy_blockNumber_ASC_NULLS_FIRST', - ApyBlockNumberDesc = 'apy_blockNumber_DESC', - ApyBlockNumberDescNullsLast = 'apy_blockNumber_DESC_NULLS_LAST', - ApyIdAsc = 'apy_id_ASC', - ApyIdAscNullsFirst = 'apy_id_ASC_NULLS_FIRST', - ApyIdDesc = 'apy_id_DESC', - ApyIdDescNullsLast = 'apy_id_DESC_NULLS_LAST', - ApyRebasingCreditsPerTokenAsc = 'apy_rebasingCreditsPerToken_ASC', - ApyRebasingCreditsPerTokenAscNullsFirst = 'apy_rebasingCreditsPerToken_ASC_NULLS_FIRST', - ApyRebasingCreditsPerTokenDesc = 'apy_rebasingCreditsPerToken_DESC', - ApyRebasingCreditsPerTokenDescNullsLast = 'apy_rebasingCreditsPerToken_DESC_NULLS_LAST', - ApyTimestampAsc = 'apy_timestamp_ASC', - ApyTimestampAscNullsFirst = 'apy_timestamp_ASC_NULLS_FIRST', - ApyTimestampDesc = 'apy_timestamp_DESC', - ApyTimestampDescNullsLast = 'apy_timestamp_DESC_NULLS_LAST', - ApyTxHashAsc = 'apy_txHash_ASC', - ApyTxHashAscNullsFirst = 'apy_txHash_ASC_NULLS_FIRST', - ApyTxHashDesc = 'apy_txHash_DESC', - ApyTxHashDescNullsLast = 'apy_txHash_DESC_NULLS_LAST', +export type OusdMorphoCompound = { + __typename?: 'OUSDMorphoCompound'; + blockNumber: Scalars['Int']['output']; + dai: Scalars['BigInt']['output']; + id: Scalars['String']['output']; + timestamp: Scalars['DateTime']['output']; + usdc: Scalars['BigInt']['output']; + usdt: Scalars['BigInt']['output']; +}; + +export type OusdMorphoCompoundEdge = { + __typename?: 'OUSDMorphoCompoundEdge'; + cursor: Scalars['String']['output']; + node: OusdMorphoCompound; +}; + +export enum OusdMorphoCompoundOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - FeeEthAsc = 'feeETH_ASC', - FeeEthAscNullsFirst = 'feeETH_ASC_NULLS_FIRST', - FeeEthDesc = 'feeETH_DESC', - FeeEthDescNullsLast = 'feeETH_DESC_NULLS_LAST', - FeeUsdAsc = 'feeUSD_ASC', - FeeUsdAscNullsFirst = 'feeUSD_ASC_NULLS_FIRST', - FeeUsdDesc = 'feeUSD_DESC', - FeeUsdDescNullsLast = 'feeUSD_DESC_NULLS_LAST', + DaiAsc = 'dai_ASC', + DaiAscNullsFirst = 'dai_ASC_NULLS_FIRST', + DaiDesc = 'dai_DESC', + DaiDescNullsLast = 'dai_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - RebasingCreditsPerTokenAsc = 'rebasingCreditsPerToken_ASC', - RebasingCreditsPerTokenAscNullsFirst = 'rebasingCreditsPerToken_ASC_NULLS_FIRST', - RebasingCreditsPerTokenDesc = 'rebasingCreditsPerToken_DESC', - RebasingCreditsPerTokenDescNullsLast = 'rebasingCreditsPerToken_DESC_NULLS_LAST', - RebasingCreditsAsc = 'rebasingCredits_ASC', - RebasingCreditsAscNullsFirst = 'rebasingCredits_ASC_NULLS_FIRST', - RebasingCreditsDesc = 'rebasingCredits_DESC', - RebasingCreditsDescNullsLast = 'rebasingCredits_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TotalSupplyAsc = 'totalSupply_ASC', - TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', - TotalSupplyDesc = 'totalSupply_DESC', - TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST', - TxHashAsc = 'txHash_ASC', - TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', - TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST', - YieldEthAsc = 'yieldETH_ASC', - YieldEthAscNullsFirst = 'yieldETH_ASC_NULLS_FIRST', - YieldEthDesc = 'yieldETH_DESC', - YieldEthDescNullsLast = 'yieldETH_DESC_NULLS_LAST', - YieldUsdAsc = 'yieldUSD_ASC', - YieldUsdAscNullsFirst = 'yieldUSD_ASC_NULLS_FIRST', - YieldUsdDesc = 'yieldUSD_DESC', - YieldUsdDescNullsLast = 'yieldUSD_DESC_NULLS_LAST' + UsdcAsc = 'usdc_ASC', + UsdcAscNullsFirst = 'usdc_ASC_NULLS_FIRST', + UsdcDesc = 'usdc_DESC', + UsdcDescNullsLast = 'usdc_DESC_NULLS_LAST', + UsdtAsc = 'usdt_ASC', + UsdtAscNullsFirst = 'usdt_ASC_NULLS_FIRST', + UsdtDesc = 'usdt_DESC', + UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' } -export type OusdRebaseWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - apy?: InputMaybe; - apy_isNull?: InputMaybe; +export type OusdMorphoCompoundWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -10538,24 +9690,15 @@ export type OusdRebaseWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; - feeETH_eq?: InputMaybe; - feeETH_gt?: InputMaybe; - feeETH_gte?: InputMaybe; - feeETH_in?: InputMaybe>; - feeETH_isNull?: InputMaybe; - feeETH_lt?: InputMaybe; - feeETH_lte?: InputMaybe; - feeETH_not_eq?: InputMaybe; - feeETH_not_in?: InputMaybe>; - feeUSD_eq?: InputMaybe; - feeUSD_gt?: InputMaybe; - feeUSD_gte?: InputMaybe; - feeUSD_in?: InputMaybe>; - feeUSD_isNull?: InputMaybe; - feeUSD_lt?: InputMaybe; - feeUSD_lte?: InputMaybe; - feeUSD_not_eq?: InputMaybe; - feeUSD_not_in?: InputMaybe>; + dai_eq?: InputMaybe; + dai_gt?: InputMaybe; + dai_gte?: InputMaybe; + dai_in?: InputMaybe>; + dai_isNull?: InputMaybe; + dai_lt?: InputMaybe; + dai_lte?: InputMaybe; + dai_not_eq?: InputMaybe; + dai_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -10573,24 +9716,6 @@ export type OusdRebaseWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - rebasingCreditsPerToken_eq?: InputMaybe; - rebasingCreditsPerToken_gt?: InputMaybe; - rebasingCreditsPerToken_gte?: InputMaybe; - rebasingCreditsPerToken_in?: InputMaybe>; - rebasingCreditsPerToken_isNull?: InputMaybe; - rebasingCreditsPerToken_lt?: InputMaybe; - rebasingCreditsPerToken_lte?: InputMaybe; - rebasingCreditsPerToken_not_eq?: InputMaybe; - rebasingCreditsPerToken_not_in?: InputMaybe>; - rebasingCredits_eq?: InputMaybe; - rebasingCredits_gt?: InputMaybe; - rebasingCredits_gte?: InputMaybe; - rebasingCredits_in?: InputMaybe>; - rebasingCredits_isNull?: InputMaybe; - rebasingCredits_lt?: InputMaybe; - rebasingCredits_lte?: InputMaybe; - rebasingCredits_not_eq?: InputMaybe; - rebasingCredits_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -10600,55 +9725,29 @@ export type OusdRebaseWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - totalSupply_eq?: InputMaybe; - totalSupply_gt?: InputMaybe; - totalSupply_gte?: InputMaybe; - totalSupply_in?: InputMaybe>; - totalSupply_isNull?: InputMaybe; - totalSupply_lt?: InputMaybe; - totalSupply_lte?: InputMaybe; - totalSupply_not_eq?: InputMaybe; - totalSupply_not_in?: InputMaybe>; - txHash_contains?: InputMaybe; - txHash_containsInsensitive?: InputMaybe; - txHash_endsWith?: InputMaybe; - txHash_eq?: InputMaybe; - txHash_gt?: InputMaybe; - txHash_gte?: InputMaybe; - txHash_in?: InputMaybe>; - txHash_isNull?: InputMaybe; - txHash_lt?: InputMaybe; - txHash_lte?: InputMaybe; - txHash_not_contains?: InputMaybe; - txHash_not_containsInsensitive?: InputMaybe; - txHash_not_endsWith?: InputMaybe; - txHash_not_eq?: InputMaybe; - txHash_not_in?: InputMaybe>; - txHash_not_startsWith?: InputMaybe; - txHash_startsWith?: InputMaybe; - yieldETH_eq?: InputMaybe; - yieldETH_gt?: InputMaybe; - yieldETH_gte?: InputMaybe; - yieldETH_in?: InputMaybe>; - yieldETH_isNull?: InputMaybe; - yieldETH_lt?: InputMaybe; - yieldETH_lte?: InputMaybe; - yieldETH_not_eq?: InputMaybe; - yieldETH_not_in?: InputMaybe>; - yieldUSD_eq?: InputMaybe; - yieldUSD_gt?: InputMaybe; - yieldUSD_gte?: InputMaybe; - yieldUSD_in?: InputMaybe>; - yieldUSD_isNull?: InputMaybe; - yieldUSD_lt?: InputMaybe; - yieldUSD_lte?: InputMaybe; - yieldUSD_not_eq?: InputMaybe; - yieldUSD_not_in?: InputMaybe>; + usdc_eq?: InputMaybe; + usdc_gt?: InputMaybe; + usdc_gte?: InputMaybe; + usdc_in?: InputMaybe>; + usdc_isNull?: InputMaybe; + usdc_lt?: InputMaybe; + usdc_lte?: InputMaybe; + usdc_not_eq?: InputMaybe; + usdc_not_in?: InputMaybe>; + usdt_eq?: InputMaybe; + usdt_gt?: InputMaybe; + usdt_gte?: InputMaybe; + usdt_in?: InputMaybe>; + usdt_isNull?: InputMaybe; + usdt_lt?: InputMaybe; + usdt_lte?: InputMaybe; + usdt_not_eq?: InputMaybe; + usdt_not_in?: InputMaybe>; }; -export type OusdRebasesConnection = { - __typename?: 'OUSDRebasesConnection'; - edges: Array; +export type OusdMorphoCompoundsConnection = { + __typename?: 'OUSDMorphoCompoundsConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; @@ -11123,80 +10222,6 @@ export type OusdVaultsConnection = { totalCount: Scalars['Int']['output']; }; -export type OusdWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - nonRebasingSupply_eq?: InputMaybe; - nonRebasingSupply_gt?: InputMaybe; - nonRebasingSupply_gte?: InputMaybe; - nonRebasingSupply_in?: InputMaybe>; - nonRebasingSupply_isNull?: InputMaybe; - nonRebasingSupply_lt?: InputMaybe; - nonRebasingSupply_lte?: InputMaybe; - nonRebasingSupply_not_eq?: InputMaybe; - nonRebasingSupply_not_in?: InputMaybe>; - rebasingSupply_eq?: InputMaybe; - rebasingSupply_gt?: InputMaybe; - rebasingSupply_gte?: InputMaybe; - rebasingSupply_in?: InputMaybe>; - rebasingSupply_isNull?: InputMaybe; - rebasingSupply_lt?: InputMaybe; - rebasingSupply_lte?: InputMaybe; - rebasingSupply_not_eq?: InputMaybe; - rebasingSupply_not_in?: InputMaybe>; - timestamp_eq?: InputMaybe; - timestamp_gt?: InputMaybe; - timestamp_gte?: InputMaybe; - timestamp_in?: InputMaybe>; - timestamp_isNull?: InputMaybe; - timestamp_lt?: InputMaybe; - timestamp_lte?: InputMaybe; - timestamp_not_eq?: InputMaybe; - timestamp_not_in?: InputMaybe>; - totalSupply_eq?: InputMaybe; - totalSupply_gt?: InputMaybe; - totalSupply_gte?: InputMaybe; - totalSupply_in?: InputMaybe>; - totalSupply_isNull?: InputMaybe; - totalSupply_lt?: InputMaybe; - totalSupply_lte?: InputMaybe; - totalSupply_not_eq?: InputMaybe; - totalSupply_not_in?: InputMaybe>; -}; - -export type OusDsConnection = { - __typename?: 'OUSDsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - export type PageInfo = { __typename?: 'PageInfo'; endCursor: Scalars['String']['output']; @@ -11382,34 +10407,56 @@ export type Query = { nativeBalanceByUniqueInput?: Maybe; nativeBalances: Array; nativeBalancesConnection: NativeBalancesConnection; + oTokenActivities: Array; + oTokenActivitiesConnection: OTokenActivitiesConnection; + oTokenActivityById?: Maybe; + /** @deprecated Use oTokenActivityById */ + oTokenActivityByUniqueInput?: Maybe; + oTokenAddressById?: Maybe; + /** @deprecated Use oTokenAddressById */ + oTokenAddressByUniqueInput?: Maybe; + oTokenAddresses: Array; + oTokenAddressesConnection: OTokenAddressesConnection; + oTokenApies: Array; + oTokenApiesConnection: OTokenAPiesConnection; + oTokenApyById?: Maybe; + /** @deprecated Use oTokenApyById */ + oTokenApyByUniqueInput?: Maybe; + oTokenAssetById?: Maybe; + /** @deprecated Use oTokenAssetById */ + oTokenAssetByUniqueInput?: Maybe; + oTokenAssets: Array; + oTokenAssetsConnection: OTokenAssetsConnection; + oTokenById?: Maybe; + /** @deprecated Use oTokenById */ + oTokenByUniqueInput?: Maybe; + oTokenHistories: Array; + oTokenHistoriesConnection: OTokenHistoriesConnection; + oTokenHistoryById?: Maybe; + /** @deprecated Use oTokenHistoryById */ + oTokenHistoryByUniqueInput?: Maybe; + oTokenRebaseById?: Maybe; + /** @deprecated Use oTokenRebaseById */ + oTokenRebaseByUniqueInput?: Maybe; + oTokenRebaseOptionById?: Maybe; + /** @deprecated Use oTokenRebaseOptionById */ + oTokenRebaseOptionByUniqueInput?: Maybe; + oTokenRebaseOptions: Array; + oTokenRebaseOptionsConnection: OTokenRebaseOptionsConnection; + oTokenRebases: Array; + oTokenRebasesConnection: OTokenRebasesConnection; oTokenVaultById?: Maybe; /** @deprecated Use oTokenVaultById */ oTokenVaultByUniqueInput?: Maybe; oTokenVaults: Array; oTokenVaultsConnection: OTokenVaultsConnection; - oethActivities: Array; - oethActivitiesConnection: OethActivitiesConnection; - oethActivityById?: Maybe; - /** @deprecated Use oethActivityById */ - oethActivityByUniqueInput?: Maybe; - oethAddressById?: Maybe; - /** @deprecated Use oethAddressById */ - oethAddressByUniqueInput?: Maybe; - oethAddresses: Array; - oethAddressesConnection: OethAddressesConnection; - oethAssetById?: Maybe; - /** @deprecated Use oethAssetById */ - oethAssetByUniqueInput?: Maybe; - oethAssets: Array; - oethAssetsConnection: OethAssetsConnection; + oTokens: Array; + oTokensConnection: OTokensConnection; oethBalancerMetaPoolStrategies: Array; oethBalancerMetaPoolStrategiesConnection: OethBalancerMetaPoolStrategiesConnection; oethBalancerMetaPoolStrategyById?: Maybe; /** @deprecated Use oethBalancerMetaPoolStrategyById */ oethBalancerMetaPoolStrategyByUniqueInput?: Maybe; - oethById?: Maybe; - /** @deprecated Use oethById */ - oethByUniqueInput?: Maybe; oethCollateralDailyStatById?: Maybe; /** @deprecated Use oethCollateralDailyStatById */ oethCollateralDailyStatByUniqueInput?: Maybe; @@ -11435,26 +10482,11 @@ export type Query = { oethFraxStakingByUniqueInput?: Maybe; oethFraxStakings: Array; oethFraxStakingsConnection: OethFraxStakingsConnection; - oethHistories: Array; - oethHistoriesConnection: OethHistoriesConnection; - oethHistoryById?: Maybe; - /** @deprecated Use oethHistoryById */ - oethHistoryByUniqueInput?: Maybe; oethMorphoAaveById?: Maybe; /** @deprecated Use oethMorphoAaveById */ oethMorphoAaveByUniqueInput?: Maybe; oethMorphoAaves: Array; oethMorphoAavesConnection: OethMorphoAavesConnection; - oethRebaseById?: Maybe; - /** @deprecated Use oethRebaseById */ - oethRebaseByUniqueInput?: Maybe; - oethRebaseOptionById?: Maybe; - /** @deprecated Use oethRebaseOptionById */ - oethRebaseOptionByUniqueInput?: Maybe; - oethRebaseOptions: Array; - oethRebaseOptionsConnection: OethRebaseOptionsConnection; - oethRebases: Array; - oethRebasesConnection: OethRebasesConnection; oethRewardTokenCollectedById?: Maybe; /** @deprecated Use oethRewardTokenCollectedById */ oethRewardTokenCollectedByUniqueInput?: Maybe; @@ -11475,13 +10507,6 @@ export type Query = { oethVaultByUniqueInput?: Maybe; oethVaults: Array; oethVaultsConnection: OethVaultsConnection; - oethapies: Array; - oethapiesConnection: OethaPiesConnection; - oethapyById?: Maybe; - /** @deprecated Use oethapyById */ - oethapyByUniqueInput?: Maybe; - oeths: Array; - oethsConnection: OetHsConnection; ognStats: OgnStatsResult; ogvAddressById?: Maybe; /** @deprecated Use ogvAddressById */ @@ -11528,24 +10553,6 @@ export type Query = { ousdAaveStrategyById?: Maybe; /** @deprecated Use ousdAaveStrategyById */ ousdAaveStrategyByUniqueInput?: Maybe; - ousdActivities: Array; - ousdActivitiesConnection: OusdActivitiesConnection; - ousdActivityById?: Maybe; - /** @deprecated Use ousdActivityById */ - ousdActivityByUniqueInput?: Maybe; - ousdAddressById?: Maybe; - /** @deprecated Use ousdAddressById */ - ousdAddressByUniqueInput?: Maybe; - ousdAddresses: Array; - ousdAddressesConnection: OusdAddressesConnection; - ousdAssetById?: Maybe; - /** @deprecated Use ousdAssetById */ - ousdAssetByUniqueInput?: Maybe; - ousdAssets: Array; - ousdAssetsConnection: OusdAssetsConnection; - ousdById?: Maybe; - /** @deprecated Use ousdById */ - ousdByUniqueInput?: Maybe; ousdCollateralDailyStatById?: Maybe; /** @deprecated Use ousdCollateralDailyStatById */ ousdCollateralDailyStatByUniqueInput?: Maybe; @@ -11576,11 +10583,6 @@ export type Query = { ousdFluxStrategyById?: Maybe; /** @deprecated Use ousdFluxStrategyById */ ousdFluxStrategyByUniqueInput?: Maybe; - ousdHistories: Array; - ousdHistoriesConnection: OusdHistoriesConnection; - ousdHistoryById?: Maybe; - /** @deprecated Use ousdHistoryById */ - ousdHistoryByUniqueInput?: Maybe; ousdMetaStrategies: Array; ousdMetaStrategiesConnection: OusdMetaStrategiesConnection; ousdMetaStrategyById?: Maybe; @@ -11596,16 +10598,6 @@ export type Query = { ousdMorphoCompoundByUniqueInput?: Maybe; ousdMorphoCompounds: Array; ousdMorphoCompoundsConnection: OusdMorphoCompoundsConnection; - ousdRebaseById?: Maybe; - /** @deprecated Use ousdRebaseById */ - ousdRebaseByUniqueInput?: Maybe; - ousdRebaseOptionById?: Maybe; - /** @deprecated Use ousdRebaseOptionById */ - ousdRebaseOptionByUniqueInput?: Maybe; - ousdRebaseOptions: Array; - ousdRebaseOptionsConnection: OusdRebaseOptionsConnection; - ousdRebases: Array; - ousdRebasesConnection: OusdRebasesConnection; ousdStrategyDailyStatById?: Maybe; /** @deprecated Use ousdStrategyDailyStatById */ ousdStrategyDailyStatByUniqueInput?: Maybe; @@ -11621,13 +10613,6 @@ export type Query = { ousdVaultByUniqueInput?: Maybe; ousdVaults: Array; ousdVaultsConnection: OusdVaultsConnection; - ousdapies: Array; - ousdapiesConnection: OusdaPiesConnection; - ousdapyById?: Maybe; - /** @deprecated Use ousdapyById */ - ousdapyByUniqueInput?: Maybe; - ousds: Array; - ousdsConnection: OusDsConnection; processingStatusById?: Maybe; /** @deprecated Use processingStatusById */ processingStatusByUniqueInput?: Maybe; @@ -12172,107 +11157,237 @@ export type QueryNativeBalancesConnectionArgs = { }; -export type QueryOTokenVaultByIdArgs = { +export type QueryOTokenActivitiesArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + + +export type QueryOTokenActivitiesConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + orderBy: Array; + where?: InputMaybe; +}; + + +export type QueryOTokenActivityByIdArgs = { id: Scalars['String']['input']; }; -export type QueryOTokenVaultByUniqueInputArgs = { +export type QueryOTokenActivityByUniqueInputArgs = { where: WhereIdInput; }; -export type QueryOTokenVaultsArgs = { +export type QueryOTokenAddressByIdArgs = { + id: Scalars['String']['input']; +}; + + +export type QueryOTokenAddressByUniqueInputArgs = { + where: WhereIdInput; +}; + + +export type QueryOTokenAddressesArgs = { limit?: InputMaybe; offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; }; -export type QueryOTokenVaultsConnectionArgs = { +export type QueryOTokenAddressesConnectionArgs = { after?: InputMaybe; first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; + orderBy: Array; + where?: InputMaybe; +}; + + +export type QueryOTokenApiesArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + + +export type QueryOTokenApiesConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + orderBy: Array; + where?: InputMaybe; +}; + + +export type QueryOTokenApyByIdArgs = { + id: Scalars['String']['input']; +}; + + +export type QueryOTokenApyByUniqueInputArgs = { + where: WhereIdInput; +}; + + +export type QueryOTokenAssetByIdArgs = { + id: Scalars['String']['input']; +}; + + +export type QueryOTokenAssetByUniqueInputArgs = { + where: WhereIdInput; +}; + + +export type QueryOTokenAssetsArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + + +export type QueryOTokenAssetsConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + orderBy: Array; + where?: InputMaybe; +}; + + +export type QueryOTokenByIdArgs = { + id: Scalars['String']['input']; +}; + + +export type QueryOTokenByUniqueInputArgs = { + where: WhereIdInput; +}; + + +export type QueryOTokenHistoriesArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + + +export type QueryOTokenHistoriesConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + orderBy: Array; + where?: InputMaybe; +}; + + +export type QueryOTokenHistoryByIdArgs = { + id: Scalars['String']['input']; +}; + + +export type QueryOTokenHistoryByUniqueInputArgs = { + where: WhereIdInput; +}; + + +export type QueryOTokenRebaseByIdArgs = { + id: Scalars['String']['input']; +}; + + +export type QueryOTokenRebaseByUniqueInputArgs = { + where: WhereIdInput; +}; + + +export type QueryOTokenRebaseOptionByIdArgs = { + id: Scalars['String']['input']; +}; + + +export type QueryOTokenRebaseOptionByUniqueInputArgs = { + where: WhereIdInput; }; -export type QueryOethActivitiesArgs = { +export type QueryOTokenRebaseOptionsArgs = { limit?: InputMaybe; offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; }; -export type QueryOethActivitiesConnectionArgs = { +export type QueryOTokenRebaseOptionsConnectionArgs = { after?: InputMaybe; first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; + orderBy: Array; + where?: InputMaybe; }; -export type QueryOethActivityByIdArgs = { - id: Scalars['String']['input']; +export type QueryOTokenRebasesArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; }; -export type QueryOethActivityByUniqueInputArgs = { - where: WhereIdInput; +export type QueryOTokenRebasesConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + orderBy: Array; + where?: InputMaybe; }; -export type QueryOethAddressByIdArgs = { +export type QueryOTokenVaultByIdArgs = { id: Scalars['String']['input']; }; -export type QueryOethAddressByUniqueInputArgs = { +export type QueryOTokenVaultByUniqueInputArgs = { where: WhereIdInput; }; -export type QueryOethAddressesArgs = { +export type QueryOTokenVaultsArgs = { limit?: InputMaybe; offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; }; -export type QueryOethAddressesConnectionArgs = { +export type QueryOTokenVaultsConnectionArgs = { after?: InputMaybe; first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOethAssetByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOethAssetByUniqueInputArgs = { - where: WhereIdInput; + orderBy: Array; + where?: InputMaybe; }; -export type QueryOethAssetsArgs = { +export type QueryOTokensArgs = { limit?: InputMaybe; offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; }; -export type QueryOethAssetsConnectionArgs = { +export type QueryOTokensConnectionArgs = { after?: InputMaybe; first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; + orderBy: Array; + where?: InputMaybe; }; @@ -12302,16 +11417,6 @@ export type QueryOethBalancerMetaPoolStrategyByUniqueInputArgs = { }; -export type QueryOethByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOethByUniqueInputArgs = { - where: WhereIdInput; -}; - - export type QueryOethCollateralDailyStatByIdArgs = { id: Scalars['String']['input']; }; @@ -12442,32 +11547,6 @@ export type QueryOethFraxStakingsConnectionArgs = { }; -export type QueryOethHistoriesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOethHistoriesConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOethHistoryByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOethHistoryByUniqueInputArgs = { - where: WhereIdInput; -}; - - export type QueryOethMorphoAaveByIdArgs = { id: Scalars['String']['input']; }; @@ -12494,58 +11573,6 @@ export type QueryOethMorphoAavesConnectionArgs = { }; -export type QueryOethRebaseByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOethRebaseByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOethRebaseOptionByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOethRebaseOptionByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOethRebaseOptionsArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOethRebaseOptionsConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOethRebasesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOethRebasesConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - export type QueryOethRewardTokenCollectedByIdArgs = { id: Scalars['String']['input']; }; @@ -12650,48 +11677,6 @@ export type QueryOethVaultsConnectionArgs = { }; -export type QueryOethapiesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOethapiesConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOethapyByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOethapyByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOethsArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOethsConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - export type QueryOgvAddressByIdArgs = { id: Scalars['String']['input']; }; @@ -12926,94 +11911,6 @@ export type QueryOusdAaveStrategyByUniqueInputArgs = { }; -export type QueryOusdActivitiesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOusdActivitiesConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOusdActivityByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOusdActivityByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOusdAddressByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOusdAddressByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOusdAddressesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOusdAddressesConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOusdAssetByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOusdAssetByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOusdAssetsArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOusdAssetsConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOusdByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOusdByUniqueInputArgs = { - where: WhereIdInput; -}; - - export type QueryOusdCollateralDailyStatByIdArgs = { id: Scalars['String']['input']; }; @@ -13170,32 +12067,6 @@ export type QueryOusdFluxStrategyByUniqueInputArgs = { }; -export type QueryOusdHistoriesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOusdHistoriesConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOusdHistoryByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOusdHistoryByUniqueInputArgs = { - where: WhereIdInput; -}; - - export type QueryOusdMetaStrategiesArgs = { limit?: InputMaybe; offset?: InputMaybe; @@ -13274,58 +12145,6 @@ export type QueryOusdMorphoCompoundsConnectionArgs = { }; -export type QueryOusdRebaseByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOusdRebaseByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOusdRebaseOptionByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOusdRebaseOptionByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOusdRebaseOptionsArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOusdRebaseOptionsConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOusdRebasesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOusdRebasesConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - export type QueryOusdStrategyDailyStatByIdArgs = { id: Scalars['String']['input']; }; @@ -13404,48 +12223,6 @@ export type QueryOusdVaultsConnectionArgs = { }; -export type QueryOusdapiesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOusdapiesConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOusdapyByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOusdapyByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOusdsArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOusdsConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - export type QueryProcessingStatusByIdArgs = { id: Scalars['String']['input']; }; diff --git a/libs/oeth/ccip/src/queries.generated.ts b/libs/oeth/ccip/src/queries.generated.ts index 03d532992..241ada075 100644 --- a/libs/oeth/ccip/src/queries.generated.ts +++ b/libs/oeth/ccip/src/queries.generated.ts @@ -51,7 +51,7 @@ export const useBridgeTransfersQuery = < variables: BridgeTransfersQueryVariables, options?: Omit, 'queryKey'> & { queryKey?: UseQueryOptions['queryKey'] } ) => { - + return useQuery( { queryKey: ['BridgeTransfers', variables], @@ -81,7 +81,7 @@ export const useBridgeTransferStatesQuery = < variables?: BridgeTransferStatesQueryVariables, options?: Omit, 'queryKey'> & { queryKey?: UseQueryOptions['queryKey'] } ) => { - + return useQuery( { queryKey: variables === undefined ? ['BridgeTransferStates'] : ['BridgeTransferStates', variables], diff --git a/libs/oeth/history/src/components/oeth/HistoryCard/HistoryCard.tsx b/libs/oeth/history/src/components/oeth/HistoryCard/HistoryCard.tsx index c6bc993b1..75b4c93b1 100644 --- a/libs/oeth/history/src/components/oeth/HistoryCard/HistoryCard.tsx +++ b/libs/oeth/history/src/components/oeth/HistoryCard/HistoryCard.tsx @@ -97,11 +97,11 @@ function ExportData() { { enabled: !!address, select: (data) => { - if (!data?.oethHistories) { + if (!data?.oTokenHistories) { return; } - return data.oethHistories.reduce( + return data.oTokenHistories.reduce( (acc, curr) => [ ...acc, [ diff --git a/libs/oeth/history/src/components/oeth/HistoryHeader.tsx b/libs/oeth/history/src/components/oeth/HistoryHeader.tsx index 2bebe570b..91af1931b 100644 --- a/libs/oeth/history/src/components/oeth/HistoryHeader.tsx +++ b/libs/oeth/history/src/components/oeth/HistoryHeader.tsx @@ -28,7 +28,7 @@ export function HistoryHeader() { { address: address ?? ZERO_ADDRESS }, { enabled: !!address, - select: (data) => data?.oethAddresses?.at(0), + select: (data) => data?.oTokenAddresses?.at(0), }, ); const { data: pendingYield, isLoading: pendingYieldLoading } = diff --git a/libs/oeth/history/src/hooks.ts b/libs/oeth/history/src/hooks.ts index a0f880eaa..a1f8466ba 100644 --- a/libs/oeth/history/src/hooks.ts +++ b/libs/oeth/history/src/hooks.ts @@ -123,9 +123,9 @@ export const useAggregatedHistory = ( refetchOnWindowFocus: false, ...options, enabled: isConnected && !!address, - placeholderData: { oethHistories: [] }, + placeholderData: { oTokenHistories: [] }, select: useCallback((data: HistoryTransactionQuery) => { - const history = data?.oethHistories; + const history = data?.oTokenHistories; const grouped = groupBy( (hist) => diff --git a/libs/oeth/history/src/queries.generated.ts b/libs/oeth/history/src/queries.generated.ts index 26bdd1496..78cf89528 100644 --- a/libs/oeth/history/src/queries.generated.ts +++ b/libs/oeth/history/src/queries.generated.ts @@ -7,12 +7,12 @@ export type HistoryUserStatQueryVariables = Types.Exact<{ }>; -export type HistoryUserStatQuery = { __typename?: 'Query', oethAddresses: Array<{ __typename?: 'OETHAddress', balance: string, earned: string, isContract: boolean, rebasingOption: Types.RebasingOption, lastUpdated: string }> }; +export type HistoryUserStatQuery = { __typename?: 'Query', oTokenAddresses: Array<{ __typename?: 'OTokenAddress', balance: string, earned: string, isContract: boolean, rebasingOption: Types.RebasingOption, lastUpdated: string }> }; export type HistoryApyQueryVariables = Types.Exact<{ [key: string]: never; }>; -export type HistoryApyQuery = { __typename?: 'Query', oethapies: Array<{ __typename?: 'OETHAPY', apy7DayAvg: number, apy30DayAvg: number }> }; +export type HistoryApyQuery = { __typename?: 'Query', oTokenApies: Array<{ __typename?: 'OTokenAPY', apy7DayAvg: number, apy30DayAvg: number }> }; export type HistoryTransactionQueryVariables = Types.Exact<{ address: Types.Scalars['String']['input']; @@ -20,7 +20,7 @@ export type HistoryTransactionQueryVariables = Types.Exact<{ }>; -export type HistoryTransactionQuery = { __typename?: 'Query', oethHistories: Array<{ __typename?: 'OETHHistory', type: Types.HistoryType, value: string, txHash: string, timestamp: string, balance: string }> }; +export type HistoryTransactionQuery = { __typename?: 'Query', oTokenHistories: Array<{ __typename?: 'OTokenHistory', type: Types.HistoryType, value: string, txHash: string, timestamp: string, balance: string }> }; export type TransfersQueryVariables = Types.Exact<{ tokens?: Types.InputMaybe | Types.Scalars['String']['input']>; @@ -43,7 +43,9 @@ export type BalancesQuery = { __typename?: 'Query', erc20Balances: Array<{ __typ export const HistoryUserStatDocument = ` query HistoryUserStat($address: String!) { - oethAddresses(where: {id_containsInsensitive: $address}) { + oTokenAddresses( + where: {address_containsInsensitive: $address, chainId_eq: 1, otoken_eq: "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3"} + ) { balance earned isContract @@ -76,7 +78,11 @@ useHistoryUserStatQuery.fetcher = (variables: HistoryUserStatQueryVariables, opt export const HistoryApyDocument = ` query HistoryApy { - oethapies(limit: 1, orderBy: timestamp_DESC) { + oTokenApies( + limit: 1 + orderBy: timestamp_DESC + where: {chainId_eq: 1, otoken_eq: "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3"} + ) { apy7DayAvg apy30DayAvg } @@ -106,11 +112,11 @@ useHistoryApyQuery.fetcher = (variables?: HistoryApyQueryVariables, options?: Re export const HistoryTransactionDocument = ` query HistoryTransaction($address: String!, $filters: [HistoryType!]) { - oethHistories( + oTokenHistories( orderBy: timestamp_DESC offset: 0 limit: 2000 - where: {AND: {address: {id_containsInsensitive: $address}, type_in: $filters}} + where: {address: {id_containsInsensitive: $address}, type_in: $filters, chainId_eq: 1, otoken_eq: "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3"} ) { type value diff --git a/libs/oeth/history/src/queries.graphql b/libs/oeth/history/src/queries.graphql index ef6bdca91..27a18aabc 100644 --- a/libs/oeth/history/src/queries.graphql +++ b/libs/oeth/history/src/queries.graphql @@ -1,5 +1,9 @@ query HistoryUserStat($address: String!) { - oethAddresses(where: { id_containsInsensitive: $address }) { + oTokenAddresses(where: { + address_containsInsensitive: $address, + chainId_eq: 1, + otoken_eq: "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3" + }) { balance earned isContract @@ -9,19 +13,25 @@ query HistoryUserStat($address: String!) { } query HistoryApy { - oethapies(limit: 1, orderBy: timestamp_DESC) { + oTokenApies( + limit: 1, + orderBy: timestamp_DESC, + where: { chainId_eq: 1, otoken_eq: "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3" }) { apy7DayAvg apy30DayAvg } } query HistoryTransaction($address: String!, $filters: [HistoryType!]) { - oethHistories( + oTokenHistories( orderBy: timestamp_DESC offset: 0 limit: 2000 where: { - AND: { address: { id_containsInsensitive: $address }, type_in: $filters } + address: { id_containsInsensitive: $address }, + type_in: $filters, + chainId_eq: 1, + otoken_eq: "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3" } ) { type diff --git a/libs/oeth/history/src/types.ts b/libs/oeth/history/src/types.ts index 019dbaaa1..5bb8a1d29 100644 --- a/libs/oeth/history/src/types.ts +++ b/libs/oeth/history/src/types.ts @@ -1,6 +1,6 @@ import type { HistoryTransactionQuery } from './queries.generated'; -export type History = HistoryTransactionQuery['oethHistories'][number]; +export type History = HistoryTransactionQuery['oTokenHistories'][number]; export type DailyHistory = History & { transactions?: History[]; diff --git a/libs/oeth/shared/src/components/ApyHeader/index.tsx b/libs/oeth/shared/src/components/ApyHeader/index.tsx index b6cc53895..e4eb85e11 100644 --- a/libs/oeth/shared/src/components/ApyHeader/index.tsx +++ b/libs/oeth/shared/src/components/ApyHeader/index.tsx @@ -39,7 +39,7 @@ export const ApyHeader = (props: StackProps) => { limit: 1, }, { - select: (data) => data.oethapies[0], + select: (data) => data.oTokenApies[0], }, ); diff --git a/libs/oeth/shared/src/components/ApyHeader/queries.generated.ts b/libs/oeth/shared/src/components/ApyHeader/queries.generated.ts index 0a39d78dc..eb55b9b98 100644 --- a/libs/oeth/shared/src/components/ApyHeader/queries.generated.ts +++ b/libs/oeth/shared/src/components/ApyHeader/queries.generated.ts @@ -7,16 +7,16 @@ export type ApiesQueryVariables = Types.Exact<{ }>; -export type ApiesQuery = { __typename?: 'Query', oethapies: Array<{ __typename?: 'OETHAPY', id: string, timestamp: string, apy7DayAvg: number, apy30DayAvg: number }> }; +export type ApiesQuery = { __typename?: 'Query', oTokenApies: Array<{ __typename?: 'OTokenAPY', id: string, timestamp: string, apy7DayAvg: number, apy30DayAvg: number }> }; export const ApiesDocument = ` query Apies($limit: Int) { - oethapies( + oTokenApies( limit: $limit orderBy: timestamp_DESC - where: {timestamp_gt: "2023-06-06T12:38:47.000000Z"} + where: {timestamp_gt: "2023-06-06T12:38:47.000000Z", chainId_eq: 1, otoken_eq: "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3"} ) { id timestamp diff --git a/libs/oeth/shared/src/components/ApyHeader/queries.graphql b/libs/oeth/shared/src/components/ApyHeader/queries.graphql index 319786786..7269eac97 100644 --- a/libs/oeth/shared/src/components/ApyHeader/queries.graphql +++ b/libs/oeth/shared/src/components/ApyHeader/queries.graphql @@ -1,7 +1,11 @@ query Apies($limit: Int) { - oethapies(limit: $limit, orderBy: timestamp_DESC, where: {timestamp_gt: "2023-06-06T12:38:47.000000Z"}) { + oTokenApies(limit: $limit, orderBy: timestamp_DESC, where: { + timestamp_gt: "2023-06-06T12:38:47.000000Z", + chainId_eq: 1, + otoken_eq: "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3" + }) { id - timestamp + timestamp apy7DayAvg apy30DayAvg } diff --git a/libs/oeth/shared/src/generated/graphql.ts b/libs/oeth/shared/src/generated/graphql.ts index 725bbc385..0a4cedd58 100644 --- a/libs/oeth/shared/src/generated/graphql.ts +++ b/libs/oeth/shared/src/generated/graphql.ts @@ -2988,59 +2988,29 @@ export type NativeBalancesConnection = { totalCount: Scalars['Int']['output']; }; -/** The OETH entity tracks the change in total supply of OETH over time. */ -export type Oeth = { - __typename?: 'OETH'; - blockNumber: Scalars['Int']['output']; - id: Scalars['String']['output']; - nonRebasingSupply: Scalars['BigInt']['output']; - rebasingSupply: Scalars['BigInt']['output']; - timestamp: Scalars['DateTime']['output']; - totalSupply: Scalars['BigInt']['output']; +export type OethBalancerMetaPoolStrategiesConnection = { + __typename?: 'OETHBalancerMetaPoolStrategiesConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; }; -/** The APY entity tracks historical APY values by day. */ -export type Oethapy = { - __typename?: 'OETHAPY'; - apr: Scalars['Float']['output']; - apy: Scalars['Float']['output']; - apy7DayAvg: Scalars['Float']['output']; - apy14DayAvg: Scalars['Float']['output']; - apy30DayAvg: Scalars['Float']['output']; +export type OethBalancerMetaPoolStrategy = { + __typename?: 'OETHBalancerMetaPoolStrategy'; blockNumber: Scalars['Int']['output']; id: Scalars['String']['output']; - rebasingCreditsPerToken: Scalars['BigInt']['output']; + rETH: Scalars['BigInt']['output']; timestamp: Scalars['DateTime']['output']; - txHash: Scalars['String']['output']; + weth: Scalars['BigInt']['output']; }; -export type OethapyEdge = { - __typename?: 'OETHAPYEdge'; +export type OethBalancerMetaPoolStrategyEdge = { + __typename?: 'OETHBalancerMetaPoolStrategyEdge'; cursor: Scalars['String']['output']; - node: Oethapy; + node: OethBalancerMetaPoolStrategy; }; -export enum OethapyOrderByInput { - AprAsc = 'apr_ASC', - AprAscNullsFirst = 'apr_ASC_NULLS_FIRST', - AprDesc = 'apr_DESC', - AprDescNullsLast = 'apr_DESC_NULLS_LAST', - Apy7DayAvgAsc = 'apy7DayAvg_ASC', - Apy7DayAvgAscNullsFirst = 'apy7DayAvg_ASC_NULLS_FIRST', - Apy7DayAvgDesc = 'apy7DayAvg_DESC', - Apy7DayAvgDescNullsLast = 'apy7DayAvg_DESC_NULLS_LAST', - Apy14DayAvgAsc = 'apy14DayAvg_ASC', - Apy14DayAvgAscNullsFirst = 'apy14DayAvg_ASC_NULLS_FIRST', - Apy14DayAvgDesc = 'apy14DayAvg_DESC', - Apy14DayAvgDescNullsLast = 'apy14DayAvg_DESC_NULLS_LAST', - Apy30DayAvgAsc = 'apy30DayAvg_ASC', - Apy30DayAvgAscNullsFirst = 'apy30DayAvg_ASC_NULLS_FIRST', - Apy30DayAvgDesc = 'apy30DayAvg_DESC', - Apy30DayAvgDescNullsLast = 'apy30DayAvg_DESC_NULLS_LAST', - ApyAsc = 'apy_ASC', - ApyAscNullsFirst = 'apy_ASC_NULLS_FIRST', - ApyDesc = 'apy_DESC', - ApyDescNullsLast = 'apy_DESC_NULLS_LAST', +export enum OethBalancerMetaPoolStrategyOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', @@ -3049,68 +3019,23 @@ export enum OethapyOrderByInput { IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - RebasingCreditsPerTokenAsc = 'rebasingCreditsPerToken_ASC', - RebasingCreditsPerTokenAscNullsFirst = 'rebasingCreditsPerToken_ASC_NULLS_FIRST', - RebasingCreditsPerTokenDesc = 'rebasingCreditsPerToken_DESC', - RebasingCreditsPerTokenDescNullsLast = 'rebasingCreditsPerToken_DESC_NULLS_LAST', + REthAsc = 'rETH_ASC', + REthAscNullsFirst = 'rETH_ASC_NULLS_FIRST', + REthDesc = 'rETH_DESC', + REthDescNullsLast = 'rETH_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TxHashAsc = 'txHash_ASC', - TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', - TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST' + WethAsc = 'weth_ASC', + WethAscNullsFirst = 'weth_ASC_NULLS_FIRST', + WethDesc = 'weth_DESC', + WethDescNullsLast = 'weth_DESC_NULLS_LAST' } -export type OethapyWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - apr_eq?: InputMaybe; - apr_gt?: InputMaybe; - apr_gte?: InputMaybe; - apr_in?: InputMaybe>; - apr_isNull?: InputMaybe; - apr_lt?: InputMaybe; - apr_lte?: InputMaybe; - apr_not_eq?: InputMaybe; - apr_not_in?: InputMaybe>; - apy7DayAvg_eq?: InputMaybe; - apy7DayAvg_gt?: InputMaybe; - apy7DayAvg_gte?: InputMaybe; - apy7DayAvg_in?: InputMaybe>; - apy7DayAvg_isNull?: InputMaybe; - apy7DayAvg_lt?: InputMaybe; - apy7DayAvg_lte?: InputMaybe; - apy7DayAvg_not_eq?: InputMaybe; - apy7DayAvg_not_in?: InputMaybe>; - apy14DayAvg_eq?: InputMaybe; - apy14DayAvg_gt?: InputMaybe; - apy14DayAvg_gte?: InputMaybe; - apy14DayAvg_in?: InputMaybe>; - apy14DayAvg_isNull?: InputMaybe; - apy14DayAvg_lt?: InputMaybe; - apy14DayAvg_lte?: InputMaybe; - apy14DayAvg_not_eq?: InputMaybe; - apy14DayAvg_not_in?: InputMaybe>; - apy30DayAvg_eq?: InputMaybe; - apy30DayAvg_gt?: InputMaybe; - apy30DayAvg_gte?: InputMaybe; - apy30DayAvg_in?: InputMaybe>; - apy30DayAvg_isNull?: InputMaybe; - apy30DayAvg_lt?: InputMaybe; - apy30DayAvg_lte?: InputMaybe; - apy30DayAvg_not_eq?: InputMaybe; - apy30DayAvg_not_in?: InputMaybe>; - apy_eq?: InputMaybe; - apy_gt?: InputMaybe; - apy_gte?: InputMaybe; - apy_in?: InputMaybe>; - apy_isNull?: InputMaybe; - apy_lt?: InputMaybe; - apy_lte?: InputMaybe; - apy_not_eq?: InputMaybe; - apy_not_in?: InputMaybe>; +export type OethBalancerMetaPoolStrategyWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -3137,15 +3062,15 @@ export type OethapyWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - rebasingCreditsPerToken_eq?: InputMaybe; - rebasingCreditsPerToken_gt?: InputMaybe; - rebasingCreditsPerToken_gte?: InputMaybe; - rebasingCreditsPerToken_in?: InputMaybe>; - rebasingCreditsPerToken_isNull?: InputMaybe; - rebasingCreditsPerToken_lt?: InputMaybe; - rebasingCreditsPerToken_lte?: InputMaybe; - rebasingCreditsPerToken_not_eq?: InputMaybe; - rebasingCreditsPerToken_not_in?: InputMaybe>; + rETH_eq?: InputMaybe; + rETH_gt?: InputMaybe; + rETH_gte?: InputMaybe; + rETH_in?: InputMaybe>; + rETH_isNull?: InputMaybe; + rETH_lt?: InputMaybe; + rETH_lte?: InputMaybe; + rETH_not_eq?: InputMaybe; + rETH_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -3155,154 +3080,187 @@ export type OethapyWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - txHash_contains?: InputMaybe; - txHash_containsInsensitive?: InputMaybe; - txHash_endsWith?: InputMaybe; - txHash_eq?: InputMaybe; - txHash_gt?: InputMaybe; - txHash_gte?: InputMaybe; - txHash_in?: InputMaybe>; - txHash_isNull?: InputMaybe; - txHash_lt?: InputMaybe; - txHash_lte?: InputMaybe; - txHash_not_contains?: InputMaybe; - txHash_not_containsInsensitive?: InputMaybe; - txHash_not_endsWith?: InputMaybe; - txHash_not_eq?: InputMaybe; - txHash_not_in?: InputMaybe>; - txHash_not_startsWith?: InputMaybe; - txHash_startsWith?: InputMaybe; -}; - -export type OethaPiesConnection = { - __typename?: 'OETHAPiesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OethActivitiesConnection = { - __typename?: 'OETHActivitiesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; + weth_eq?: InputMaybe; + weth_gt?: InputMaybe; + weth_gte?: InputMaybe; + weth_in?: InputMaybe>; + weth_isNull?: InputMaybe; + weth_lt?: InputMaybe; + weth_lte?: InputMaybe; + weth_not_eq?: InputMaybe; + weth_not_in?: InputMaybe>; }; -export type OethActivity = { - __typename?: 'OETHActivity'; - action?: Maybe; - address?: Maybe; - amount?: Maybe; - blockNumber: Scalars['Int']['output']; - callDataLast4Bytes: Scalars['String']['output']; - exchange?: Maybe; - fromSymbol?: Maybe; +export type OethCollateralDailyStat = { + __typename?: 'OETHCollateralDailyStat'; + /** Amount held */ + amount: Scalars['BigInt']['output']; + dailyStatId: OethDailyStat; id: Scalars['String']['output']; - interface?: Maybe; - sighash?: Maybe; - timestamp: Scalars['DateTime']['output']; - toSymbol?: Maybe; - txHash: Scalars['String']['output']; + /** Price in ETH */ + price: Scalars['BigInt']['output']; + /** Token symbol */ + symbol: Scalars['String']['output']; + /** Total ETH value */ + value: Scalars['BigInt']['output']; }; -export type OethActivityEdge = { - __typename?: 'OETHActivityEdge'; +export type OethCollateralDailyStatEdge = { + __typename?: 'OETHCollateralDailyStatEdge'; cursor: Scalars['String']['output']; - node: OethActivity; + node: OethCollateralDailyStat; }; -export enum OethActivityOrderByInput { - ActionAsc = 'action_ASC', - ActionAscNullsFirst = 'action_ASC_NULLS_FIRST', - ActionDesc = 'action_DESC', - ActionDescNullsLast = 'action_DESC_NULLS_LAST', - AddressAsc = 'address_ASC', - AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', - AddressDesc = 'address_DESC', - AddressDescNullsLast = 'address_DESC_NULLS_LAST', +export enum OethCollateralDailyStatOrderByInput { AmountAsc = 'amount_ASC', AmountAscNullsFirst = 'amount_ASC_NULLS_FIRST', AmountDesc = 'amount_DESC', AmountDescNullsLast = 'amount_DESC_NULLS_LAST', - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - CallDataLast4BytesAsc = 'callDataLast4Bytes_ASC', - CallDataLast4BytesAscNullsFirst = 'callDataLast4Bytes_ASC_NULLS_FIRST', - CallDataLast4BytesDesc = 'callDataLast4Bytes_DESC', - CallDataLast4BytesDescNullsLast = 'callDataLast4Bytes_DESC_NULLS_LAST', - ExchangeAsc = 'exchange_ASC', - ExchangeAscNullsFirst = 'exchange_ASC_NULLS_FIRST', - ExchangeDesc = 'exchange_DESC', - ExchangeDescNullsLast = 'exchange_DESC_NULLS_LAST', - FromSymbolAsc = 'fromSymbol_ASC', - FromSymbolAscNullsFirst = 'fromSymbol_ASC_NULLS_FIRST', - FromSymbolDesc = 'fromSymbol_DESC', - FromSymbolDescNullsLast = 'fromSymbol_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - InterfaceAsc = 'interface_ASC', - InterfaceAscNullsFirst = 'interface_ASC_NULLS_FIRST', - InterfaceDesc = 'interface_DESC', - InterfaceDescNullsLast = 'interface_DESC_NULLS_LAST', - SighashAsc = 'sighash_ASC', - SighashAscNullsFirst = 'sighash_ASC_NULLS_FIRST', - SighashDesc = 'sighash_DESC', - SighashDescNullsLast = 'sighash_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - ToSymbolAsc = 'toSymbol_ASC', - ToSymbolAscNullsFirst = 'toSymbol_ASC_NULLS_FIRST', - ToSymbolDesc = 'toSymbol_DESC', - ToSymbolDescNullsLast = 'toSymbol_DESC_NULLS_LAST', - TxHashAsc = 'txHash_ASC', - TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', - TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST' -} - -export type OethActivityWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - action_contains?: InputMaybe; - action_containsInsensitive?: InputMaybe; - action_endsWith?: InputMaybe; - action_eq?: InputMaybe; - action_gt?: InputMaybe; - action_gte?: InputMaybe; - action_in?: InputMaybe>; - action_isNull?: InputMaybe; - action_lt?: InputMaybe; - action_lte?: InputMaybe; - action_not_contains?: InputMaybe; - action_not_containsInsensitive?: InputMaybe; - action_not_endsWith?: InputMaybe; - action_not_eq?: InputMaybe; - action_not_in?: InputMaybe>; - action_not_startsWith?: InputMaybe; - action_startsWith?: InputMaybe; - address_contains?: InputMaybe; - address_containsInsensitive?: InputMaybe; - address_endsWith?: InputMaybe; - address_eq?: InputMaybe; - address_gt?: InputMaybe; - address_gte?: InputMaybe; - address_in?: InputMaybe>; - address_isNull?: InputMaybe; - address_lt?: InputMaybe; - address_lte?: InputMaybe; - address_not_contains?: InputMaybe; - address_not_containsInsensitive?: InputMaybe; - address_not_endsWith?: InputMaybe; - address_not_eq?: InputMaybe; - address_not_in?: InputMaybe>; - address_not_startsWith?: InputMaybe; - address_startsWith?: InputMaybe; + DailyStatIdAmoSupplyAsc = 'dailyStatId_amoSupply_ASC', + DailyStatIdAmoSupplyAscNullsFirst = 'dailyStatId_amoSupply_ASC_NULLS_FIRST', + DailyStatIdAmoSupplyDesc = 'dailyStatId_amoSupply_DESC', + DailyStatIdAmoSupplyDescNullsLast = 'dailyStatId_amoSupply_DESC_NULLS_LAST', + DailyStatIdAprAsc = 'dailyStatId_apr_ASC', + DailyStatIdAprAscNullsFirst = 'dailyStatId_apr_ASC_NULLS_FIRST', + DailyStatIdAprDesc = 'dailyStatId_apr_DESC', + DailyStatIdAprDescNullsLast = 'dailyStatId_apr_DESC_NULLS_LAST', + DailyStatIdApy7DayAvgAsc = 'dailyStatId_apy7DayAvg_ASC', + DailyStatIdApy7DayAvgAscNullsFirst = 'dailyStatId_apy7DayAvg_ASC_NULLS_FIRST', + DailyStatIdApy7DayAvgDesc = 'dailyStatId_apy7DayAvg_DESC', + DailyStatIdApy7DayAvgDescNullsLast = 'dailyStatId_apy7DayAvg_DESC_NULLS_LAST', + DailyStatIdApy14DayAvgAsc = 'dailyStatId_apy14DayAvg_ASC', + DailyStatIdApy14DayAvgAscNullsFirst = 'dailyStatId_apy14DayAvg_ASC_NULLS_FIRST', + DailyStatIdApy14DayAvgDesc = 'dailyStatId_apy14DayAvg_DESC', + DailyStatIdApy14DayAvgDescNullsLast = 'dailyStatId_apy14DayAvg_DESC_NULLS_LAST', + DailyStatIdApy30DayAvgAsc = 'dailyStatId_apy30DayAvg_ASC', + DailyStatIdApy30DayAvgAscNullsFirst = 'dailyStatId_apy30DayAvg_ASC_NULLS_FIRST', + DailyStatIdApy30DayAvgDesc = 'dailyStatId_apy30DayAvg_DESC', + DailyStatIdApy30DayAvgDescNullsLast = 'dailyStatId_apy30DayAvg_DESC_NULLS_LAST', + DailyStatIdApyAsc = 'dailyStatId_apy_ASC', + DailyStatIdApyAscNullsFirst = 'dailyStatId_apy_ASC_NULLS_FIRST', + DailyStatIdApyDesc = 'dailyStatId_apy_DESC', + DailyStatIdApyDescNullsLast = 'dailyStatId_apy_DESC_NULLS_LAST', + DailyStatIdBlockNumberAsc = 'dailyStatId_blockNumber_ASC', + DailyStatIdBlockNumberAscNullsFirst = 'dailyStatId_blockNumber_ASC_NULLS_FIRST', + DailyStatIdBlockNumberDesc = 'dailyStatId_blockNumber_DESC', + DailyStatIdBlockNumberDescNullsLast = 'dailyStatId_blockNumber_DESC_NULLS_LAST', + DailyStatIdDripperWethAsc = 'dailyStatId_dripperWETH_ASC', + DailyStatIdDripperWethAscNullsFirst = 'dailyStatId_dripperWETH_ASC_NULLS_FIRST', + DailyStatIdDripperWethDesc = 'dailyStatId_dripperWETH_DESC', + DailyStatIdDripperWethDescNullsLast = 'dailyStatId_dripperWETH_DESC_NULLS_LAST', + DailyStatIdFeesEth7DayAsc = 'dailyStatId_feesETH7Day_ASC', + DailyStatIdFeesEth7DayAscNullsFirst = 'dailyStatId_feesETH7Day_ASC_NULLS_FIRST', + DailyStatIdFeesEth7DayDesc = 'dailyStatId_feesETH7Day_DESC', + DailyStatIdFeesEth7DayDescNullsLast = 'dailyStatId_feesETH7Day_DESC_NULLS_LAST', + DailyStatIdFeesEthAllTimeAsc = 'dailyStatId_feesETHAllTime_ASC', + DailyStatIdFeesEthAllTimeAscNullsFirst = 'dailyStatId_feesETHAllTime_ASC_NULLS_FIRST', + DailyStatIdFeesEthAllTimeDesc = 'dailyStatId_feesETHAllTime_DESC', + DailyStatIdFeesEthAllTimeDescNullsLast = 'dailyStatId_feesETHAllTime_DESC_NULLS_LAST', + DailyStatIdFeesEthAsc = 'dailyStatId_feesETH_ASC', + DailyStatIdFeesEthAscNullsFirst = 'dailyStatId_feesETH_ASC_NULLS_FIRST', + DailyStatIdFeesEthDesc = 'dailyStatId_feesETH_DESC', + DailyStatIdFeesEthDescNullsLast = 'dailyStatId_feesETH_DESC_NULLS_LAST', + DailyStatIdFeesUsd7DayAsc = 'dailyStatId_feesUSD7Day_ASC', + DailyStatIdFeesUsd7DayAscNullsFirst = 'dailyStatId_feesUSD7Day_ASC_NULLS_FIRST', + DailyStatIdFeesUsd7DayDesc = 'dailyStatId_feesUSD7Day_DESC', + DailyStatIdFeesUsd7DayDescNullsLast = 'dailyStatId_feesUSD7Day_DESC_NULLS_LAST', + DailyStatIdFeesUsdAllTimeAsc = 'dailyStatId_feesUSDAllTime_ASC', + DailyStatIdFeesUsdAllTimeAscNullsFirst = 'dailyStatId_feesUSDAllTime_ASC_NULLS_FIRST', + DailyStatIdFeesUsdAllTimeDesc = 'dailyStatId_feesUSDAllTime_DESC', + DailyStatIdFeesUsdAllTimeDescNullsLast = 'dailyStatId_feesUSDAllTime_DESC_NULLS_LAST', + DailyStatIdFeesUsdAsc = 'dailyStatId_feesUSD_ASC', + DailyStatIdFeesUsdAscNullsFirst = 'dailyStatId_feesUSD_ASC_NULLS_FIRST', + DailyStatIdFeesUsdDesc = 'dailyStatId_feesUSD_DESC', + DailyStatIdFeesUsdDescNullsLast = 'dailyStatId_feesUSD_DESC_NULLS_LAST', + DailyStatIdHoldersOverThresholdAsc = 'dailyStatId_holdersOverThreshold_ASC', + DailyStatIdHoldersOverThresholdAscNullsFirst = 'dailyStatId_holdersOverThreshold_ASC_NULLS_FIRST', + DailyStatIdHoldersOverThresholdDesc = 'dailyStatId_holdersOverThreshold_DESC', + DailyStatIdHoldersOverThresholdDescNullsLast = 'dailyStatId_holdersOverThreshold_DESC_NULLS_LAST', + DailyStatIdIdAsc = 'dailyStatId_id_ASC', + DailyStatIdIdAscNullsFirst = 'dailyStatId_id_ASC_NULLS_FIRST', + DailyStatIdIdDesc = 'dailyStatId_id_DESC', + DailyStatIdIdDescNullsLast = 'dailyStatId_id_DESC_NULLS_LAST', + DailyStatIdMarketCapUsdAsc = 'dailyStatId_marketCapUSD_ASC', + DailyStatIdMarketCapUsdAscNullsFirst = 'dailyStatId_marketCapUSD_ASC_NULLS_FIRST', + DailyStatIdMarketCapUsdDesc = 'dailyStatId_marketCapUSD_DESC', + DailyStatIdMarketCapUsdDescNullsLast = 'dailyStatId_marketCapUSD_DESC_NULLS_LAST', + DailyStatIdNonRebasingSupplyAsc = 'dailyStatId_nonRebasingSupply_ASC', + DailyStatIdNonRebasingSupplyAscNullsFirst = 'dailyStatId_nonRebasingSupply_ASC_NULLS_FIRST', + DailyStatIdNonRebasingSupplyDesc = 'dailyStatId_nonRebasingSupply_DESC', + DailyStatIdNonRebasingSupplyDescNullsLast = 'dailyStatId_nonRebasingSupply_DESC_NULLS_LAST', + DailyStatIdPegPriceAsc = 'dailyStatId_pegPrice_ASC', + DailyStatIdPegPriceAscNullsFirst = 'dailyStatId_pegPrice_ASC_NULLS_FIRST', + DailyStatIdPegPriceDesc = 'dailyStatId_pegPrice_DESC', + DailyStatIdPegPriceDescNullsLast = 'dailyStatId_pegPrice_DESC_NULLS_LAST', + DailyStatIdRebasingSupplyAsc = 'dailyStatId_rebasingSupply_ASC', + DailyStatIdRebasingSupplyAscNullsFirst = 'dailyStatId_rebasingSupply_ASC_NULLS_FIRST', + DailyStatIdRebasingSupplyDesc = 'dailyStatId_rebasingSupply_DESC', + DailyStatIdRebasingSupplyDescNullsLast = 'dailyStatId_rebasingSupply_DESC_NULLS_LAST', + DailyStatIdTimestampAsc = 'dailyStatId_timestamp_ASC', + DailyStatIdTimestampAscNullsFirst = 'dailyStatId_timestamp_ASC_NULLS_FIRST', + DailyStatIdTimestampDesc = 'dailyStatId_timestamp_DESC', + DailyStatIdTimestampDescNullsLast = 'dailyStatId_timestamp_DESC_NULLS_LAST', + DailyStatIdTotalSupplyUsdAsc = 'dailyStatId_totalSupplyUSD_ASC', + DailyStatIdTotalSupplyUsdAscNullsFirst = 'dailyStatId_totalSupplyUSD_ASC_NULLS_FIRST', + DailyStatIdTotalSupplyUsdDesc = 'dailyStatId_totalSupplyUSD_DESC', + DailyStatIdTotalSupplyUsdDescNullsLast = 'dailyStatId_totalSupplyUSD_DESC_NULLS_LAST', + DailyStatIdTotalSupplyAsc = 'dailyStatId_totalSupply_ASC', + DailyStatIdTotalSupplyAscNullsFirst = 'dailyStatId_totalSupply_ASC_NULLS_FIRST', + DailyStatIdTotalSupplyDesc = 'dailyStatId_totalSupply_DESC', + DailyStatIdTotalSupplyDescNullsLast = 'dailyStatId_totalSupply_DESC_NULLS_LAST', + DailyStatIdTradingVolumeUsdAsc = 'dailyStatId_tradingVolumeUSD_ASC', + DailyStatIdTradingVolumeUsdAscNullsFirst = 'dailyStatId_tradingVolumeUSD_ASC_NULLS_FIRST', + DailyStatIdTradingVolumeUsdDesc = 'dailyStatId_tradingVolumeUSD_DESC', + DailyStatIdTradingVolumeUsdDescNullsLast = 'dailyStatId_tradingVolumeUSD_DESC_NULLS_LAST', + DailyStatIdWrappedSupplyAsc = 'dailyStatId_wrappedSupply_ASC', + DailyStatIdWrappedSupplyAscNullsFirst = 'dailyStatId_wrappedSupply_ASC_NULLS_FIRST', + DailyStatIdWrappedSupplyDesc = 'dailyStatId_wrappedSupply_DESC', + DailyStatIdWrappedSupplyDescNullsLast = 'dailyStatId_wrappedSupply_DESC_NULLS_LAST', + DailyStatIdYieldEth7DayAsc = 'dailyStatId_yieldETH7Day_ASC', + DailyStatIdYieldEth7DayAscNullsFirst = 'dailyStatId_yieldETH7Day_ASC_NULLS_FIRST', + DailyStatIdYieldEth7DayDesc = 'dailyStatId_yieldETH7Day_DESC', + DailyStatIdYieldEth7DayDescNullsLast = 'dailyStatId_yieldETH7Day_DESC_NULLS_LAST', + DailyStatIdYieldEthAllTimeAsc = 'dailyStatId_yieldETHAllTime_ASC', + DailyStatIdYieldEthAllTimeAscNullsFirst = 'dailyStatId_yieldETHAllTime_ASC_NULLS_FIRST', + DailyStatIdYieldEthAllTimeDesc = 'dailyStatId_yieldETHAllTime_DESC', + DailyStatIdYieldEthAllTimeDescNullsLast = 'dailyStatId_yieldETHAllTime_DESC_NULLS_LAST', + DailyStatIdYieldEthAsc = 'dailyStatId_yieldETH_ASC', + DailyStatIdYieldEthAscNullsFirst = 'dailyStatId_yieldETH_ASC_NULLS_FIRST', + DailyStatIdYieldEthDesc = 'dailyStatId_yieldETH_DESC', + DailyStatIdYieldEthDescNullsLast = 'dailyStatId_yieldETH_DESC_NULLS_LAST', + DailyStatIdYieldUsd7DayAsc = 'dailyStatId_yieldUSD7Day_ASC', + DailyStatIdYieldUsd7DayAscNullsFirst = 'dailyStatId_yieldUSD7Day_ASC_NULLS_FIRST', + DailyStatIdYieldUsd7DayDesc = 'dailyStatId_yieldUSD7Day_DESC', + DailyStatIdYieldUsd7DayDescNullsLast = 'dailyStatId_yieldUSD7Day_DESC_NULLS_LAST', + DailyStatIdYieldUsdAllTimeAsc = 'dailyStatId_yieldUSDAllTime_ASC', + DailyStatIdYieldUsdAllTimeAscNullsFirst = 'dailyStatId_yieldUSDAllTime_ASC_NULLS_FIRST', + DailyStatIdYieldUsdAllTimeDesc = 'dailyStatId_yieldUSDAllTime_DESC', + DailyStatIdYieldUsdAllTimeDescNullsLast = 'dailyStatId_yieldUSDAllTime_DESC_NULLS_LAST', + DailyStatIdYieldUsdAsc = 'dailyStatId_yieldUSD_ASC', + DailyStatIdYieldUsdAscNullsFirst = 'dailyStatId_yieldUSD_ASC_NULLS_FIRST', + DailyStatIdYieldUsdDesc = 'dailyStatId_yieldUSD_DESC', + DailyStatIdYieldUsdDescNullsLast = 'dailyStatId_yieldUSD_DESC_NULLS_LAST', + IdAsc = 'id_ASC', + IdAscNullsFirst = 'id_ASC_NULLS_FIRST', + IdDesc = 'id_DESC', + IdDescNullsLast = 'id_DESC_NULLS_LAST', + PriceAsc = 'price_ASC', + PriceAscNullsFirst = 'price_ASC_NULLS_FIRST', + PriceDesc = 'price_DESC', + PriceDescNullsLast = 'price_DESC_NULLS_LAST', + SymbolAsc = 'symbol_ASC', + SymbolAscNullsFirst = 'symbol_ASC_NULLS_FIRST', + SymbolDesc = 'symbol_DESC', + SymbolDescNullsLast = 'symbol_DESC_NULLS_LAST', + ValueAsc = 'value_ASC', + ValueAscNullsFirst = 'value_ASC_NULLS_FIRST', + ValueDesc = 'value_DESC', + ValueDescNullsLast = 'value_DESC_NULLS_LAST' +} + +export type OethCollateralDailyStatWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; amount_eq?: InputMaybe; amount_gt?: InputMaybe; amount_gte?: InputMaybe; @@ -3312,66 +3270,8 @@ export type OethActivityWhereInput = { amount_lte?: InputMaybe; amount_not_eq?: InputMaybe; amount_not_in?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - callDataLast4Bytes_contains?: InputMaybe; - callDataLast4Bytes_containsInsensitive?: InputMaybe; - callDataLast4Bytes_endsWith?: InputMaybe; - callDataLast4Bytes_eq?: InputMaybe; - callDataLast4Bytes_gt?: InputMaybe; - callDataLast4Bytes_gte?: InputMaybe; - callDataLast4Bytes_in?: InputMaybe>; - callDataLast4Bytes_isNull?: InputMaybe; - callDataLast4Bytes_lt?: InputMaybe; - callDataLast4Bytes_lte?: InputMaybe; - callDataLast4Bytes_not_contains?: InputMaybe; - callDataLast4Bytes_not_containsInsensitive?: InputMaybe; - callDataLast4Bytes_not_endsWith?: InputMaybe; - callDataLast4Bytes_not_eq?: InputMaybe; - callDataLast4Bytes_not_in?: InputMaybe>; - callDataLast4Bytes_not_startsWith?: InputMaybe; - callDataLast4Bytes_startsWith?: InputMaybe; - exchange_contains?: InputMaybe; - exchange_containsInsensitive?: InputMaybe; - exchange_endsWith?: InputMaybe; - exchange_eq?: InputMaybe; - exchange_gt?: InputMaybe; - exchange_gte?: InputMaybe; - exchange_in?: InputMaybe>; - exchange_isNull?: InputMaybe; - exchange_lt?: InputMaybe; - exchange_lte?: InputMaybe; - exchange_not_contains?: InputMaybe; - exchange_not_containsInsensitive?: InputMaybe; - exchange_not_endsWith?: InputMaybe; - exchange_not_eq?: InputMaybe; - exchange_not_in?: InputMaybe>; - exchange_not_startsWith?: InputMaybe; - exchange_startsWith?: InputMaybe; - fromSymbol_contains?: InputMaybe; - fromSymbol_containsInsensitive?: InputMaybe; - fromSymbol_endsWith?: InputMaybe; - fromSymbol_eq?: InputMaybe; - fromSymbol_gt?: InputMaybe; - fromSymbol_gte?: InputMaybe; - fromSymbol_in?: InputMaybe>; - fromSymbol_isNull?: InputMaybe; - fromSymbol_lt?: InputMaybe; - fromSymbol_lte?: InputMaybe; - fromSymbol_not_contains?: InputMaybe; - fromSymbol_not_containsInsensitive?: InputMaybe; - fromSymbol_not_endsWith?: InputMaybe; - fromSymbol_not_eq?: InputMaybe; - fromSymbol_not_in?: InputMaybe>; - fromSymbol_not_startsWith?: InputMaybe; - fromSymbol_startsWith?: InputMaybe; + dailyStatId?: InputMaybe; + dailyStatId_isNull?: InputMaybe; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -3389,177 +3289,138 @@ export type OethActivityWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - interface_contains?: InputMaybe; - interface_containsInsensitive?: InputMaybe; - interface_endsWith?: InputMaybe; - interface_eq?: InputMaybe; - interface_gt?: InputMaybe; - interface_gte?: InputMaybe; - interface_in?: InputMaybe>; - interface_isNull?: InputMaybe; - interface_lt?: InputMaybe; - interface_lte?: InputMaybe; - interface_not_contains?: InputMaybe; - interface_not_containsInsensitive?: InputMaybe; - interface_not_endsWith?: InputMaybe; - interface_not_eq?: InputMaybe; - interface_not_in?: InputMaybe>; - interface_not_startsWith?: InputMaybe; - interface_startsWith?: InputMaybe; - sighash_contains?: InputMaybe; - sighash_containsInsensitive?: InputMaybe; - sighash_endsWith?: InputMaybe; - sighash_eq?: InputMaybe; - sighash_gt?: InputMaybe; - sighash_gte?: InputMaybe; - sighash_in?: InputMaybe>; - sighash_isNull?: InputMaybe; - sighash_lt?: InputMaybe; - sighash_lte?: InputMaybe; - sighash_not_contains?: InputMaybe; - sighash_not_containsInsensitive?: InputMaybe; - sighash_not_endsWith?: InputMaybe; - sighash_not_eq?: InputMaybe; - sighash_not_in?: InputMaybe>; - sighash_not_startsWith?: InputMaybe; - sighash_startsWith?: InputMaybe; - timestamp_eq?: InputMaybe; - timestamp_gt?: InputMaybe; - timestamp_gte?: InputMaybe; - timestamp_in?: InputMaybe>; - timestamp_isNull?: InputMaybe; - timestamp_lt?: InputMaybe; - timestamp_lte?: InputMaybe; - timestamp_not_eq?: InputMaybe; - timestamp_not_in?: InputMaybe>; - toSymbol_contains?: InputMaybe; - toSymbol_containsInsensitive?: InputMaybe; - toSymbol_endsWith?: InputMaybe; - toSymbol_eq?: InputMaybe; - toSymbol_gt?: InputMaybe; - toSymbol_gte?: InputMaybe; - toSymbol_in?: InputMaybe>; - toSymbol_isNull?: InputMaybe; - toSymbol_lt?: InputMaybe; - toSymbol_lte?: InputMaybe; - toSymbol_not_contains?: InputMaybe; - toSymbol_not_containsInsensitive?: InputMaybe; - toSymbol_not_endsWith?: InputMaybe; - toSymbol_not_eq?: InputMaybe; - toSymbol_not_in?: InputMaybe>; - toSymbol_not_startsWith?: InputMaybe; - toSymbol_startsWith?: InputMaybe; - txHash_contains?: InputMaybe; - txHash_containsInsensitive?: InputMaybe; - txHash_endsWith?: InputMaybe; - txHash_eq?: InputMaybe; - txHash_gt?: InputMaybe; - txHash_gte?: InputMaybe; - txHash_in?: InputMaybe>; - txHash_isNull?: InputMaybe; - txHash_lt?: InputMaybe; - txHash_lte?: InputMaybe; - txHash_not_contains?: InputMaybe; - txHash_not_containsInsensitive?: InputMaybe; - txHash_not_endsWith?: InputMaybe; - txHash_not_eq?: InputMaybe; - txHash_not_in?: InputMaybe>; - txHash_not_startsWith?: InputMaybe; - txHash_startsWith?: InputMaybe; + price_eq?: InputMaybe; + price_gt?: InputMaybe; + price_gte?: InputMaybe; + price_in?: InputMaybe>; + price_isNull?: InputMaybe; + price_lt?: InputMaybe; + price_lte?: InputMaybe; + price_not_eq?: InputMaybe; + price_not_in?: InputMaybe>; + symbol_contains?: InputMaybe; + symbol_containsInsensitive?: InputMaybe; + symbol_endsWith?: InputMaybe; + symbol_eq?: InputMaybe; + symbol_gt?: InputMaybe; + symbol_gte?: InputMaybe; + symbol_in?: InputMaybe>; + symbol_isNull?: InputMaybe; + symbol_lt?: InputMaybe; + symbol_lte?: InputMaybe; + symbol_not_contains?: InputMaybe; + symbol_not_containsInsensitive?: InputMaybe; + symbol_not_endsWith?: InputMaybe; + symbol_not_eq?: InputMaybe; + symbol_not_in?: InputMaybe>; + symbol_not_startsWith?: InputMaybe; + symbol_startsWith?: InputMaybe; + value_eq?: InputMaybe; + value_gt?: InputMaybe; + value_gte?: InputMaybe; + value_in?: InputMaybe>; + value_isNull?: InputMaybe; + value_lt?: InputMaybe; + value_lte?: InputMaybe; + value_not_eq?: InputMaybe; + value_not_in?: InputMaybe>; }; -/** The OETH balance, history and other information for a given address. */ -export type OethAddress = { - __typename?: 'OETHAddress'; - balance: Scalars['BigInt']['output']; - credits: Scalars['BigInt']['output']; - earned: Scalars['BigInt']['output']; - history: Array; - id: Scalars['String']['output']; - isContract: Scalars['Boolean']['output']; - lastUpdated: Scalars['DateTime']['output']; - rebasingOption: RebasingOption; +export type OethCollateralDailyStatsConnection = { + __typename?: 'OETHCollateralDailyStatsConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; }; - -/** The OETH balance, history and other information for a given address. */ -export type OethAddressHistoryArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; +export type OethCurveLp = { + __typename?: 'OETHCurveLP'; + blockNumber: Scalars['Int']['output']; + eth: Scalars['BigInt']['output']; + ethOwned: Scalars['BigInt']['output']; + id: Scalars['String']['output']; + oeth: Scalars['BigInt']['output']; + oethOwned: Scalars['BigInt']['output']; + timestamp: Scalars['DateTime']['output']; + totalSupply: Scalars['BigInt']['output']; + totalSupplyOwned: Scalars['BigInt']['output']; }; -export type OethAddressEdge = { - __typename?: 'OETHAddressEdge'; +export type OethCurveLpEdge = { + __typename?: 'OETHCurveLPEdge'; cursor: Scalars['String']['output']; - node: OethAddress; + node: OethCurveLp; }; -export enum OethAddressOrderByInput { - BalanceAsc = 'balance_ASC', - BalanceAscNullsFirst = 'balance_ASC_NULLS_FIRST', - BalanceDesc = 'balance_DESC', - BalanceDescNullsLast = 'balance_DESC_NULLS_LAST', - CreditsAsc = 'credits_ASC', - CreditsAscNullsFirst = 'credits_ASC_NULLS_FIRST', - CreditsDesc = 'credits_DESC', - CreditsDescNullsLast = 'credits_DESC_NULLS_LAST', - EarnedAsc = 'earned_ASC', - EarnedAscNullsFirst = 'earned_ASC_NULLS_FIRST', - EarnedDesc = 'earned_DESC', - EarnedDescNullsLast = 'earned_DESC_NULLS_LAST', +export enum OethCurveLpOrderByInput { + BlockNumberAsc = 'blockNumber_ASC', + BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', + BlockNumberDesc = 'blockNumber_DESC', + BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + EthOwnedAsc = 'ethOwned_ASC', + EthOwnedAscNullsFirst = 'ethOwned_ASC_NULLS_FIRST', + EthOwnedDesc = 'ethOwned_DESC', + EthOwnedDescNullsLast = 'ethOwned_DESC_NULLS_LAST', + EthAsc = 'eth_ASC', + EthAscNullsFirst = 'eth_ASC_NULLS_FIRST', + EthDesc = 'eth_DESC', + EthDescNullsLast = 'eth_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - IsContractAsc = 'isContract_ASC', - IsContractAscNullsFirst = 'isContract_ASC_NULLS_FIRST', - IsContractDesc = 'isContract_DESC', - IsContractDescNullsLast = 'isContract_DESC_NULLS_LAST', - LastUpdatedAsc = 'lastUpdated_ASC', - LastUpdatedAscNullsFirst = 'lastUpdated_ASC_NULLS_FIRST', - LastUpdatedDesc = 'lastUpdated_DESC', - LastUpdatedDescNullsLast = 'lastUpdated_DESC_NULLS_LAST', - RebasingOptionAsc = 'rebasingOption_ASC', - RebasingOptionAscNullsFirst = 'rebasingOption_ASC_NULLS_FIRST', - RebasingOptionDesc = 'rebasingOption_DESC', - RebasingOptionDescNullsLast = 'rebasingOption_DESC_NULLS_LAST' + OethOwnedAsc = 'oethOwned_ASC', + OethOwnedAscNullsFirst = 'oethOwned_ASC_NULLS_FIRST', + OethOwnedDesc = 'oethOwned_DESC', + OethOwnedDescNullsLast = 'oethOwned_DESC_NULLS_LAST', + OethAsc = 'oeth_ASC', + OethAscNullsFirst = 'oeth_ASC_NULLS_FIRST', + OethDesc = 'oeth_DESC', + OethDescNullsLast = 'oeth_DESC_NULLS_LAST', + TimestampAsc = 'timestamp_ASC', + TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', + TimestampDesc = 'timestamp_DESC', + TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', + TotalSupplyOwnedAsc = 'totalSupplyOwned_ASC', + TotalSupplyOwnedAscNullsFirst = 'totalSupplyOwned_ASC_NULLS_FIRST', + TotalSupplyOwnedDesc = 'totalSupplyOwned_DESC', + TotalSupplyOwnedDescNullsLast = 'totalSupplyOwned_DESC_NULLS_LAST', + TotalSupplyAsc = 'totalSupply_ASC', + TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', + TotalSupplyDesc = 'totalSupply_DESC', + TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST' } -export type OethAddressWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - balance_eq?: InputMaybe; - balance_gt?: InputMaybe; - balance_gte?: InputMaybe; - balance_in?: InputMaybe>; - balance_isNull?: InputMaybe; - balance_lt?: InputMaybe; - balance_lte?: InputMaybe; - balance_not_eq?: InputMaybe; - balance_not_in?: InputMaybe>; - credits_eq?: InputMaybe; - credits_gt?: InputMaybe; - credits_gte?: InputMaybe; - credits_in?: InputMaybe>; - credits_isNull?: InputMaybe; - credits_lt?: InputMaybe; - credits_lte?: InputMaybe; - credits_not_eq?: InputMaybe; - credits_not_in?: InputMaybe>; - earned_eq?: InputMaybe; - earned_gt?: InputMaybe; - earned_gte?: InputMaybe; - earned_in?: InputMaybe>; - earned_isNull?: InputMaybe; - earned_lt?: InputMaybe; - earned_lte?: InputMaybe; - earned_not_eq?: InputMaybe; - earned_not_in?: InputMaybe>; - history_every?: InputMaybe; - history_none?: InputMaybe; - history_some?: InputMaybe; +export type OethCurveLpWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + blockNumber_eq?: InputMaybe; + blockNumber_gt?: InputMaybe; + blockNumber_gte?: InputMaybe; + blockNumber_in?: InputMaybe>; + blockNumber_isNull?: InputMaybe; + blockNumber_lt?: InputMaybe; + blockNumber_lte?: InputMaybe; + blockNumber_not_eq?: InputMaybe; + blockNumber_not_in?: InputMaybe>; + ethOwned_eq?: InputMaybe; + ethOwned_gt?: InputMaybe; + ethOwned_gte?: InputMaybe; + ethOwned_in?: InputMaybe>; + ethOwned_isNull?: InputMaybe; + ethOwned_lt?: InputMaybe; + ethOwned_lte?: InputMaybe; + ethOwned_not_eq?: InputMaybe; + ethOwned_not_in?: InputMaybe>; + eth_eq?: InputMaybe; + eth_gt?: InputMaybe; + eth_gte?: InputMaybe; + eth_in?: InputMaybe>; + eth_isNull?: InputMaybe; + eth_lt?: InputMaybe; + eth_lte?: InputMaybe; + eth_not_eq?: InputMaybe; + eth_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -3577,1013 +3438,24 @@ export type OethAddressWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - isContract_eq?: InputMaybe; - isContract_isNull?: InputMaybe; - isContract_not_eq?: InputMaybe; - lastUpdated_eq?: InputMaybe; - lastUpdated_gt?: InputMaybe; - lastUpdated_gte?: InputMaybe; - lastUpdated_in?: InputMaybe>; - lastUpdated_isNull?: InputMaybe; - lastUpdated_lt?: InputMaybe; - lastUpdated_lte?: InputMaybe; - lastUpdated_not_eq?: InputMaybe; - lastUpdated_not_in?: InputMaybe>; - rebasingOption_eq?: InputMaybe; - rebasingOption_in?: InputMaybe>; - rebasingOption_isNull?: InputMaybe; - rebasingOption_not_eq?: InputMaybe; - rebasingOption_not_in?: InputMaybe>; -}; - -export type OethAddressesConnection = { - __typename?: 'OETHAddressesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OethAsset = { - __typename?: 'OETHAsset'; - address: Scalars['String']['output']; - id: Scalars['String']['output']; - symbol: Scalars['String']['output']; -}; - -export type OethAssetEdge = { - __typename?: 'OETHAssetEdge'; - cursor: Scalars['String']['output']; - node: OethAsset; -}; - -export enum OethAssetOrderByInput { - AddressAsc = 'address_ASC', - AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', - AddressDesc = 'address_DESC', - AddressDescNullsLast = 'address_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - SymbolAsc = 'symbol_ASC', - SymbolAscNullsFirst = 'symbol_ASC_NULLS_FIRST', - SymbolDesc = 'symbol_DESC', - SymbolDescNullsLast = 'symbol_DESC_NULLS_LAST' -} - -export type OethAssetWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - address_contains?: InputMaybe; - address_containsInsensitive?: InputMaybe; - address_endsWith?: InputMaybe; - address_eq?: InputMaybe; - address_gt?: InputMaybe; - address_gte?: InputMaybe; - address_in?: InputMaybe>; - address_isNull?: InputMaybe; - address_lt?: InputMaybe; - address_lte?: InputMaybe; - address_not_contains?: InputMaybe; - address_not_containsInsensitive?: InputMaybe; - address_not_endsWith?: InputMaybe; - address_not_eq?: InputMaybe; - address_not_in?: InputMaybe>; - address_not_startsWith?: InputMaybe; - address_startsWith?: InputMaybe; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - symbol_contains?: InputMaybe; - symbol_containsInsensitive?: InputMaybe; - symbol_endsWith?: InputMaybe; - symbol_eq?: InputMaybe; - symbol_gt?: InputMaybe; - symbol_gte?: InputMaybe; - symbol_in?: InputMaybe>; - symbol_isNull?: InputMaybe; - symbol_lt?: InputMaybe; - symbol_lte?: InputMaybe; - symbol_not_contains?: InputMaybe; - symbol_not_containsInsensitive?: InputMaybe; - symbol_not_endsWith?: InputMaybe; - symbol_not_eq?: InputMaybe; - symbol_not_in?: InputMaybe>; - symbol_not_startsWith?: InputMaybe; - symbol_startsWith?: InputMaybe; -}; - -export type OethAssetsConnection = { - __typename?: 'OETHAssetsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OethBalancerMetaPoolStrategiesConnection = { - __typename?: 'OETHBalancerMetaPoolStrategiesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OethBalancerMetaPoolStrategy = { - __typename?: 'OETHBalancerMetaPoolStrategy'; - blockNumber: Scalars['Int']['output']; - id: Scalars['String']['output']; - rETH: Scalars['BigInt']['output']; - timestamp: Scalars['DateTime']['output']; - weth: Scalars['BigInt']['output']; -}; - -export type OethBalancerMetaPoolStrategyEdge = { - __typename?: 'OETHBalancerMetaPoolStrategyEdge'; - cursor: Scalars['String']['output']; - node: OethBalancerMetaPoolStrategy; -}; - -export enum OethBalancerMetaPoolStrategyOrderByInput { - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - REthAsc = 'rETH_ASC', - REthAscNullsFirst = 'rETH_ASC_NULLS_FIRST', - REthDesc = 'rETH_DESC', - REthDescNullsLast = 'rETH_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - WethAsc = 'weth_ASC', - WethAscNullsFirst = 'weth_ASC_NULLS_FIRST', - WethDesc = 'weth_DESC', - WethDescNullsLast = 'weth_DESC_NULLS_LAST' -} - -export type OethBalancerMetaPoolStrategyWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - rETH_eq?: InputMaybe; - rETH_gt?: InputMaybe; - rETH_gte?: InputMaybe; - rETH_in?: InputMaybe>; - rETH_isNull?: InputMaybe; - rETH_lt?: InputMaybe; - rETH_lte?: InputMaybe; - rETH_not_eq?: InputMaybe; - rETH_not_in?: InputMaybe>; - timestamp_eq?: InputMaybe; - timestamp_gt?: InputMaybe; - timestamp_gte?: InputMaybe; - timestamp_in?: InputMaybe>; - timestamp_isNull?: InputMaybe; - timestamp_lt?: InputMaybe; - timestamp_lte?: InputMaybe; - timestamp_not_eq?: InputMaybe; - timestamp_not_in?: InputMaybe>; - weth_eq?: InputMaybe; - weth_gt?: InputMaybe; - weth_gte?: InputMaybe; - weth_in?: InputMaybe>; - weth_isNull?: InputMaybe; - weth_lt?: InputMaybe; - weth_lte?: InputMaybe; - weth_not_eq?: InputMaybe; - weth_not_in?: InputMaybe>; -}; - -export type OethCollateralDailyStat = { - __typename?: 'OETHCollateralDailyStat'; - /** Amount held */ - amount: Scalars['BigInt']['output']; - dailyStatId: OethDailyStat; - id: Scalars['String']['output']; - /** Price in ETH */ - price: Scalars['BigInt']['output']; - /** Token symbol */ - symbol: Scalars['String']['output']; - /** Total ETH value */ - value: Scalars['BigInt']['output']; -}; - -export type OethCollateralDailyStatEdge = { - __typename?: 'OETHCollateralDailyStatEdge'; - cursor: Scalars['String']['output']; - node: OethCollateralDailyStat; -}; - -export enum OethCollateralDailyStatOrderByInput { - AmountAsc = 'amount_ASC', - AmountAscNullsFirst = 'amount_ASC_NULLS_FIRST', - AmountDesc = 'amount_DESC', - AmountDescNullsLast = 'amount_DESC_NULLS_LAST', - DailyStatIdAmoSupplyAsc = 'dailyStatId_amoSupply_ASC', - DailyStatIdAmoSupplyAscNullsFirst = 'dailyStatId_amoSupply_ASC_NULLS_FIRST', - DailyStatIdAmoSupplyDesc = 'dailyStatId_amoSupply_DESC', - DailyStatIdAmoSupplyDescNullsLast = 'dailyStatId_amoSupply_DESC_NULLS_LAST', - DailyStatIdAprAsc = 'dailyStatId_apr_ASC', - DailyStatIdAprAscNullsFirst = 'dailyStatId_apr_ASC_NULLS_FIRST', - DailyStatIdAprDesc = 'dailyStatId_apr_DESC', - DailyStatIdAprDescNullsLast = 'dailyStatId_apr_DESC_NULLS_LAST', - DailyStatIdApy7DayAvgAsc = 'dailyStatId_apy7DayAvg_ASC', - DailyStatIdApy7DayAvgAscNullsFirst = 'dailyStatId_apy7DayAvg_ASC_NULLS_FIRST', - DailyStatIdApy7DayAvgDesc = 'dailyStatId_apy7DayAvg_DESC', - DailyStatIdApy7DayAvgDescNullsLast = 'dailyStatId_apy7DayAvg_DESC_NULLS_LAST', - DailyStatIdApy14DayAvgAsc = 'dailyStatId_apy14DayAvg_ASC', - DailyStatIdApy14DayAvgAscNullsFirst = 'dailyStatId_apy14DayAvg_ASC_NULLS_FIRST', - DailyStatIdApy14DayAvgDesc = 'dailyStatId_apy14DayAvg_DESC', - DailyStatIdApy14DayAvgDescNullsLast = 'dailyStatId_apy14DayAvg_DESC_NULLS_LAST', - DailyStatIdApy30DayAvgAsc = 'dailyStatId_apy30DayAvg_ASC', - DailyStatIdApy30DayAvgAscNullsFirst = 'dailyStatId_apy30DayAvg_ASC_NULLS_FIRST', - DailyStatIdApy30DayAvgDesc = 'dailyStatId_apy30DayAvg_DESC', - DailyStatIdApy30DayAvgDescNullsLast = 'dailyStatId_apy30DayAvg_DESC_NULLS_LAST', - DailyStatIdApyAsc = 'dailyStatId_apy_ASC', - DailyStatIdApyAscNullsFirst = 'dailyStatId_apy_ASC_NULLS_FIRST', - DailyStatIdApyDesc = 'dailyStatId_apy_DESC', - DailyStatIdApyDescNullsLast = 'dailyStatId_apy_DESC_NULLS_LAST', - DailyStatIdBlockNumberAsc = 'dailyStatId_blockNumber_ASC', - DailyStatIdBlockNumberAscNullsFirst = 'dailyStatId_blockNumber_ASC_NULLS_FIRST', - DailyStatIdBlockNumberDesc = 'dailyStatId_blockNumber_DESC', - DailyStatIdBlockNumberDescNullsLast = 'dailyStatId_blockNumber_DESC_NULLS_LAST', - DailyStatIdDripperWethAsc = 'dailyStatId_dripperWETH_ASC', - DailyStatIdDripperWethAscNullsFirst = 'dailyStatId_dripperWETH_ASC_NULLS_FIRST', - DailyStatIdDripperWethDesc = 'dailyStatId_dripperWETH_DESC', - DailyStatIdDripperWethDescNullsLast = 'dailyStatId_dripperWETH_DESC_NULLS_LAST', - DailyStatIdFeesEth7DayAsc = 'dailyStatId_feesETH7Day_ASC', - DailyStatIdFeesEth7DayAscNullsFirst = 'dailyStatId_feesETH7Day_ASC_NULLS_FIRST', - DailyStatIdFeesEth7DayDesc = 'dailyStatId_feesETH7Day_DESC', - DailyStatIdFeesEth7DayDescNullsLast = 'dailyStatId_feesETH7Day_DESC_NULLS_LAST', - DailyStatIdFeesEthAllTimeAsc = 'dailyStatId_feesETHAllTime_ASC', - DailyStatIdFeesEthAllTimeAscNullsFirst = 'dailyStatId_feesETHAllTime_ASC_NULLS_FIRST', - DailyStatIdFeesEthAllTimeDesc = 'dailyStatId_feesETHAllTime_DESC', - DailyStatIdFeesEthAllTimeDescNullsLast = 'dailyStatId_feesETHAllTime_DESC_NULLS_LAST', - DailyStatIdFeesEthAsc = 'dailyStatId_feesETH_ASC', - DailyStatIdFeesEthAscNullsFirst = 'dailyStatId_feesETH_ASC_NULLS_FIRST', - DailyStatIdFeesEthDesc = 'dailyStatId_feesETH_DESC', - DailyStatIdFeesEthDescNullsLast = 'dailyStatId_feesETH_DESC_NULLS_LAST', - DailyStatIdFeesUsd7DayAsc = 'dailyStatId_feesUSD7Day_ASC', - DailyStatIdFeesUsd7DayAscNullsFirst = 'dailyStatId_feesUSD7Day_ASC_NULLS_FIRST', - DailyStatIdFeesUsd7DayDesc = 'dailyStatId_feesUSD7Day_DESC', - DailyStatIdFeesUsd7DayDescNullsLast = 'dailyStatId_feesUSD7Day_DESC_NULLS_LAST', - DailyStatIdFeesUsdAllTimeAsc = 'dailyStatId_feesUSDAllTime_ASC', - DailyStatIdFeesUsdAllTimeAscNullsFirst = 'dailyStatId_feesUSDAllTime_ASC_NULLS_FIRST', - DailyStatIdFeesUsdAllTimeDesc = 'dailyStatId_feesUSDAllTime_DESC', - DailyStatIdFeesUsdAllTimeDescNullsLast = 'dailyStatId_feesUSDAllTime_DESC_NULLS_LAST', - DailyStatIdFeesUsdAsc = 'dailyStatId_feesUSD_ASC', - DailyStatIdFeesUsdAscNullsFirst = 'dailyStatId_feesUSD_ASC_NULLS_FIRST', - DailyStatIdFeesUsdDesc = 'dailyStatId_feesUSD_DESC', - DailyStatIdFeesUsdDescNullsLast = 'dailyStatId_feesUSD_DESC_NULLS_LAST', - DailyStatIdHoldersOverThresholdAsc = 'dailyStatId_holdersOverThreshold_ASC', - DailyStatIdHoldersOverThresholdAscNullsFirst = 'dailyStatId_holdersOverThreshold_ASC_NULLS_FIRST', - DailyStatIdHoldersOverThresholdDesc = 'dailyStatId_holdersOverThreshold_DESC', - DailyStatIdHoldersOverThresholdDescNullsLast = 'dailyStatId_holdersOverThreshold_DESC_NULLS_LAST', - DailyStatIdIdAsc = 'dailyStatId_id_ASC', - DailyStatIdIdAscNullsFirst = 'dailyStatId_id_ASC_NULLS_FIRST', - DailyStatIdIdDesc = 'dailyStatId_id_DESC', - DailyStatIdIdDescNullsLast = 'dailyStatId_id_DESC_NULLS_LAST', - DailyStatIdMarketCapUsdAsc = 'dailyStatId_marketCapUSD_ASC', - DailyStatIdMarketCapUsdAscNullsFirst = 'dailyStatId_marketCapUSD_ASC_NULLS_FIRST', - DailyStatIdMarketCapUsdDesc = 'dailyStatId_marketCapUSD_DESC', - DailyStatIdMarketCapUsdDescNullsLast = 'dailyStatId_marketCapUSD_DESC_NULLS_LAST', - DailyStatIdNonRebasingSupplyAsc = 'dailyStatId_nonRebasingSupply_ASC', - DailyStatIdNonRebasingSupplyAscNullsFirst = 'dailyStatId_nonRebasingSupply_ASC_NULLS_FIRST', - DailyStatIdNonRebasingSupplyDesc = 'dailyStatId_nonRebasingSupply_DESC', - DailyStatIdNonRebasingSupplyDescNullsLast = 'dailyStatId_nonRebasingSupply_DESC_NULLS_LAST', - DailyStatIdPegPriceAsc = 'dailyStatId_pegPrice_ASC', - DailyStatIdPegPriceAscNullsFirst = 'dailyStatId_pegPrice_ASC_NULLS_FIRST', - DailyStatIdPegPriceDesc = 'dailyStatId_pegPrice_DESC', - DailyStatIdPegPriceDescNullsLast = 'dailyStatId_pegPrice_DESC_NULLS_LAST', - DailyStatIdRebasingSupplyAsc = 'dailyStatId_rebasingSupply_ASC', - DailyStatIdRebasingSupplyAscNullsFirst = 'dailyStatId_rebasingSupply_ASC_NULLS_FIRST', - DailyStatIdRebasingSupplyDesc = 'dailyStatId_rebasingSupply_DESC', - DailyStatIdRebasingSupplyDescNullsLast = 'dailyStatId_rebasingSupply_DESC_NULLS_LAST', - DailyStatIdTimestampAsc = 'dailyStatId_timestamp_ASC', - DailyStatIdTimestampAscNullsFirst = 'dailyStatId_timestamp_ASC_NULLS_FIRST', - DailyStatIdTimestampDesc = 'dailyStatId_timestamp_DESC', - DailyStatIdTimestampDescNullsLast = 'dailyStatId_timestamp_DESC_NULLS_LAST', - DailyStatIdTotalSupplyUsdAsc = 'dailyStatId_totalSupplyUSD_ASC', - DailyStatIdTotalSupplyUsdAscNullsFirst = 'dailyStatId_totalSupplyUSD_ASC_NULLS_FIRST', - DailyStatIdTotalSupplyUsdDesc = 'dailyStatId_totalSupplyUSD_DESC', - DailyStatIdTotalSupplyUsdDescNullsLast = 'dailyStatId_totalSupplyUSD_DESC_NULLS_LAST', - DailyStatIdTotalSupplyAsc = 'dailyStatId_totalSupply_ASC', - DailyStatIdTotalSupplyAscNullsFirst = 'dailyStatId_totalSupply_ASC_NULLS_FIRST', - DailyStatIdTotalSupplyDesc = 'dailyStatId_totalSupply_DESC', - DailyStatIdTotalSupplyDescNullsLast = 'dailyStatId_totalSupply_DESC_NULLS_LAST', - DailyStatIdTradingVolumeUsdAsc = 'dailyStatId_tradingVolumeUSD_ASC', - DailyStatIdTradingVolumeUsdAscNullsFirst = 'dailyStatId_tradingVolumeUSD_ASC_NULLS_FIRST', - DailyStatIdTradingVolumeUsdDesc = 'dailyStatId_tradingVolumeUSD_DESC', - DailyStatIdTradingVolumeUsdDescNullsLast = 'dailyStatId_tradingVolumeUSD_DESC_NULLS_LAST', - DailyStatIdWrappedSupplyAsc = 'dailyStatId_wrappedSupply_ASC', - DailyStatIdWrappedSupplyAscNullsFirst = 'dailyStatId_wrappedSupply_ASC_NULLS_FIRST', - DailyStatIdWrappedSupplyDesc = 'dailyStatId_wrappedSupply_DESC', - DailyStatIdWrappedSupplyDescNullsLast = 'dailyStatId_wrappedSupply_DESC_NULLS_LAST', - DailyStatIdYieldEth7DayAsc = 'dailyStatId_yieldETH7Day_ASC', - DailyStatIdYieldEth7DayAscNullsFirst = 'dailyStatId_yieldETH7Day_ASC_NULLS_FIRST', - DailyStatIdYieldEth7DayDesc = 'dailyStatId_yieldETH7Day_DESC', - DailyStatIdYieldEth7DayDescNullsLast = 'dailyStatId_yieldETH7Day_DESC_NULLS_LAST', - DailyStatIdYieldEthAllTimeAsc = 'dailyStatId_yieldETHAllTime_ASC', - DailyStatIdYieldEthAllTimeAscNullsFirst = 'dailyStatId_yieldETHAllTime_ASC_NULLS_FIRST', - DailyStatIdYieldEthAllTimeDesc = 'dailyStatId_yieldETHAllTime_DESC', - DailyStatIdYieldEthAllTimeDescNullsLast = 'dailyStatId_yieldETHAllTime_DESC_NULLS_LAST', - DailyStatIdYieldEthAsc = 'dailyStatId_yieldETH_ASC', - DailyStatIdYieldEthAscNullsFirst = 'dailyStatId_yieldETH_ASC_NULLS_FIRST', - DailyStatIdYieldEthDesc = 'dailyStatId_yieldETH_DESC', - DailyStatIdYieldEthDescNullsLast = 'dailyStatId_yieldETH_DESC_NULLS_LAST', - DailyStatIdYieldUsd7DayAsc = 'dailyStatId_yieldUSD7Day_ASC', - DailyStatIdYieldUsd7DayAscNullsFirst = 'dailyStatId_yieldUSD7Day_ASC_NULLS_FIRST', - DailyStatIdYieldUsd7DayDesc = 'dailyStatId_yieldUSD7Day_DESC', - DailyStatIdYieldUsd7DayDescNullsLast = 'dailyStatId_yieldUSD7Day_DESC_NULLS_LAST', - DailyStatIdYieldUsdAllTimeAsc = 'dailyStatId_yieldUSDAllTime_ASC', - DailyStatIdYieldUsdAllTimeAscNullsFirst = 'dailyStatId_yieldUSDAllTime_ASC_NULLS_FIRST', - DailyStatIdYieldUsdAllTimeDesc = 'dailyStatId_yieldUSDAllTime_DESC', - DailyStatIdYieldUsdAllTimeDescNullsLast = 'dailyStatId_yieldUSDAllTime_DESC_NULLS_LAST', - DailyStatIdYieldUsdAsc = 'dailyStatId_yieldUSD_ASC', - DailyStatIdYieldUsdAscNullsFirst = 'dailyStatId_yieldUSD_ASC_NULLS_FIRST', - DailyStatIdYieldUsdDesc = 'dailyStatId_yieldUSD_DESC', - DailyStatIdYieldUsdDescNullsLast = 'dailyStatId_yieldUSD_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - PriceAsc = 'price_ASC', - PriceAscNullsFirst = 'price_ASC_NULLS_FIRST', - PriceDesc = 'price_DESC', - PriceDescNullsLast = 'price_DESC_NULLS_LAST', - SymbolAsc = 'symbol_ASC', - SymbolAscNullsFirst = 'symbol_ASC_NULLS_FIRST', - SymbolDesc = 'symbol_DESC', - SymbolDescNullsLast = 'symbol_DESC_NULLS_LAST', - ValueAsc = 'value_ASC', - ValueAscNullsFirst = 'value_ASC_NULLS_FIRST', - ValueDesc = 'value_DESC', - ValueDescNullsLast = 'value_DESC_NULLS_LAST' -} - -export type OethCollateralDailyStatWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - amount_eq?: InputMaybe; - amount_gt?: InputMaybe; - amount_gte?: InputMaybe; - amount_in?: InputMaybe>; - amount_isNull?: InputMaybe; - amount_lt?: InputMaybe; - amount_lte?: InputMaybe; - amount_not_eq?: InputMaybe; - amount_not_in?: InputMaybe>; - dailyStatId?: InputMaybe; - dailyStatId_isNull?: InputMaybe; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - price_eq?: InputMaybe; - price_gt?: InputMaybe; - price_gte?: InputMaybe; - price_in?: InputMaybe>; - price_isNull?: InputMaybe; - price_lt?: InputMaybe; - price_lte?: InputMaybe; - price_not_eq?: InputMaybe; - price_not_in?: InputMaybe>; - symbol_contains?: InputMaybe; - symbol_containsInsensitive?: InputMaybe; - symbol_endsWith?: InputMaybe; - symbol_eq?: InputMaybe; - symbol_gt?: InputMaybe; - symbol_gte?: InputMaybe; - symbol_in?: InputMaybe>; - symbol_isNull?: InputMaybe; - symbol_lt?: InputMaybe; - symbol_lte?: InputMaybe; - symbol_not_contains?: InputMaybe; - symbol_not_containsInsensitive?: InputMaybe; - symbol_not_endsWith?: InputMaybe; - symbol_not_eq?: InputMaybe; - symbol_not_in?: InputMaybe>; - symbol_not_startsWith?: InputMaybe; - symbol_startsWith?: InputMaybe; - value_eq?: InputMaybe; - value_gt?: InputMaybe; - value_gte?: InputMaybe; - value_in?: InputMaybe>; - value_isNull?: InputMaybe; - value_lt?: InputMaybe; - value_lte?: InputMaybe; - value_not_eq?: InputMaybe; - value_not_in?: InputMaybe>; -}; - -export type OethCollateralDailyStatsConnection = { - __typename?: 'OETHCollateralDailyStatsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OethCurveLp = { - __typename?: 'OETHCurveLP'; - blockNumber: Scalars['Int']['output']; - eth: Scalars['BigInt']['output']; - ethOwned: Scalars['BigInt']['output']; - id: Scalars['String']['output']; - oeth: Scalars['BigInt']['output']; - oethOwned: Scalars['BigInt']['output']; - timestamp: Scalars['DateTime']['output']; - totalSupply: Scalars['BigInt']['output']; - totalSupplyOwned: Scalars['BigInt']['output']; -}; - -export type OethCurveLpEdge = { - __typename?: 'OETHCurveLPEdge'; - cursor: Scalars['String']['output']; - node: OethCurveLp; -}; - -export enum OethCurveLpOrderByInput { - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - EthOwnedAsc = 'ethOwned_ASC', - EthOwnedAscNullsFirst = 'ethOwned_ASC_NULLS_FIRST', - EthOwnedDesc = 'ethOwned_DESC', - EthOwnedDescNullsLast = 'ethOwned_DESC_NULLS_LAST', - EthAsc = 'eth_ASC', - EthAscNullsFirst = 'eth_ASC_NULLS_FIRST', - EthDesc = 'eth_DESC', - EthDescNullsLast = 'eth_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - OethOwnedAsc = 'oethOwned_ASC', - OethOwnedAscNullsFirst = 'oethOwned_ASC_NULLS_FIRST', - OethOwnedDesc = 'oethOwned_DESC', - OethOwnedDescNullsLast = 'oethOwned_DESC_NULLS_LAST', - OethAsc = 'oeth_ASC', - OethAscNullsFirst = 'oeth_ASC_NULLS_FIRST', - OethDesc = 'oeth_DESC', - OethDescNullsLast = 'oeth_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TotalSupplyOwnedAsc = 'totalSupplyOwned_ASC', - TotalSupplyOwnedAscNullsFirst = 'totalSupplyOwned_ASC_NULLS_FIRST', - TotalSupplyOwnedDesc = 'totalSupplyOwned_DESC', - TotalSupplyOwnedDescNullsLast = 'totalSupplyOwned_DESC_NULLS_LAST', - TotalSupplyAsc = 'totalSupply_ASC', - TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', - TotalSupplyDesc = 'totalSupply_DESC', - TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST' -} - -export type OethCurveLpWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - ethOwned_eq?: InputMaybe; - ethOwned_gt?: InputMaybe; - ethOwned_gte?: InputMaybe; - ethOwned_in?: InputMaybe>; - ethOwned_isNull?: InputMaybe; - ethOwned_lt?: InputMaybe; - ethOwned_lte?: InputMaybe; - ethOwned_not_eq?: InputMaybe; - ethOwned_not_in?: InputMaybe>; - eth_eq?: InputMaybe; - eth_gt?: InputMaybe; - eth_gte?: InputMaybe; - eth_in?: InputMaybe>; - eth_isNull?: InputMaybe; - eth_lt?: InputMaybe; - eth_lte?: InputMaybe; - eth_not_eq?: InputMaybe; - eth_not_in?: InputMaybe>; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - oethOwned_eq?: InputMaybe; - oethOwned_gt?: InputMaybe; - oethOwned_gte?: InputMaybe; - oethOwned_in?: InputMaybe>; - oethOwned_isNull?: InputMaybe; - oethOwned_lt?: InputMaybe; - oethOwned_lte?: InputMaybe; - oethOwned_not_eq?: InputMaybe; - oethOwned_not_in?: InputMaybe>; - oeth_eq?: InputMaybe; - oeth_gt?: InputMaybe; - oeth_gte?: InputMaybe; - oeth_in?: InputMaybe>; - oeth_isNull?: InputMaybe; - oeth_lt?: InputMaybe; - oeth_lte?: InputMaybe; - oeth_not_eq?: InputMaybe; - oeth_not_in?: InputMaybe>; - timestamp_eq?: InputMaybe; - timestamp_gt?: InputMaybe; - timestamp_gte?: InputMaybe; - timestamp_in?: InputMaybe>; - timestamp_isNull?: InputMaybe; - timestamp_lt?: InputMaybe; - timestamp_lte?: InputMaybe; - timestamp_not_eq?: InputMaybe; - timestamp_not_in?: InputMaybe>; - totalSupplyOwned_eq?: InputMaybe; - totalSupplyOwned_gt?: InputMaybe; - totalSupplyOwned_gte?: InputMaybe; - totalSupplyOwned_in?: InputMaybe>; - totalSupplyOwned_isNull?: InputMaybe; - totalSupplyOwned_lt?: InputMaybe; - totalSupplyOwned_lte?: InputMaybe; - totalSupplyOwned_not_eq?: InputMaybe; - totalSupplyOwned_not_in?: InputMaybe>; - totalSupply_eq?: InputMaybe; - totalSupply_gt?: InputMaybe; - totalSupply_gte?: InputMaybe; - totalSupply_in?: InputMaybe>; - totalSupply_isNull?: InputMaybe; - totalSupply_lt?: InputMaybe; - totalSupply_lte?: InputMaybe; - totalSupply_not_eq?: InputMaybe; - totalSupply_not_in?: InputMaybe>; -}; - -export type OethCurveLPsConnection = { - __typename?: 'OETHCurveLPsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OethDailyStat = { - __typename?: 'OETHDailyStat'; - amoSupply: Scalars['BigInt']['output']; - /** Timestamp of block number stats were updated */ - apr: Scalars['Float']['output']; - apy: Scalars['Float']['output']; - apy7DayAvg: Scalars['Float']['output']; - apy14DayAvg: Scalars['Float']['output']; - apy30DayAvg: Scalars['Float']['output']; - /** Timestamp, eg 2023-10-17 */ - blockNumber: Scalars['Int']['output']; - collateral: Array; - dripperWETH: Scalars['BigInt']['output']; - feesETH: Scalars['BigInt']['output']; - feesETH7Day: Scalars['BigInt']['output']; - feesETHAllTime: Scalars['BigInt']['output']; - feesUSD: Scalars['BigInt']['output']; - feesUSD7Day: Scalars['BigInt']['output']; - feesUSDAllTime: Scalars['BigInt']['output']; - holdersOverThreshold: Scalars['Int']['output']; - id: Scalars['String']['output']; - marketCapUSD: Scalars['Float']['output']; - nonRebasingSupply: Scalars['BigInt']['output']; - pegPrice: Scalars['BigInt']['output']; - rebasingSupply: Scalars['BigInt']['output']; - strategies: Array; - /** Last block number stats were updated */ - timestamp: Scalars['DateTime']['output']; - totalSupply: Scalars['BigInt']['output']; - totalSupplyUSD: Scalars['Float']['output']; - tradingVolumeUSD: Scalars['Float']['output']; - wrappedSupply: Scalars['BigInt']['output']; - yieldETH: Scalars['BigInt']['output']; - yieldETH7Day: Scalars['BigInt']['output']; - yieldETHAllTime: Scalars['BigInt']['output']; - yieldUSD: Scalars['BigInt']['output']; - yieldUSD7Day: Scalars['BigInt']['output']; - yieldUSDAllTime: Scalars['BigInt']['output']; -}; - - -export type OethDailyStatCollateralArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type OethDailyStatStrategiesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - -export type OethDailyStatEdge = { - __typename?: 'OETHDailyStatEdge'; - cursor: Scalars['String']['output']; - node: OethDailyStat; -}; - -export enum OethDailyStatOrderByInput { - AmoSupplyAsc = 'amoSupply_ASC', - AmoSupplyAscNullsFirst = 'amoSupply_ASC_NULLS_FIRST', - AmoSupplyDesc = 'amoSupply_DESC', - AmoSupplyDescNullsLast = 'amoSupply_DESC_NULLS_LAST', - AprAsc = 'apr_ASC', - AprAscNullsFirst = 'apr_ASC_NULLS_FIRST', - AprDesc = 'apr_DESC', - AprDescNullsLast = 'apr_DESC_NULLS_LAST', - Apy7DayAvgAsc = 'apy7DayAvg_ASC', - Apy7DayAvgAscNullsFirst = 'apy7DayAvg_ASC_NULLS_FIRST', - Apy7DayAvgDesc = 'apy7DayAvg_DESC', - Apy7DayAvgDescNullsLast = 'apy7DayAvg_DESC_NULLS_LAST', - Apy14DayAvgAsc = 'apy14DayAvg_ASC', - Apy14DayAvgAscNullsFirst = 'apy14DayAvg_ASC_NULLS_FIRST', - Apy14DayAvgDesc = 'apy14DayAvg_DESC', - Apy14DayAvgDescNullsLast = 'apy14DayAvg_DESC_NULLS_LAST', - Apy30DayAvgAsc = 'apy30DayAvg_ASC', - Apy30DayAvgAscNullsFirst = 'apy30DayAvg_ASC_NULLS_FIRST', - Apy30DayAvgDesc = 'apy30DayAvg_DESC', - Apy30DayAvgDescNullsLast = 'apy30DayAvg_DESC_NULLS_LAST', - ApyAsc = 'apy_ASC', - ApyAscNullsFirst = 'apy_ASC_NULLS_FIRST', - ApyDesc = 'apy_DESC', - ApyDescNullsLast = 'apy_DESC_NULLS_LAST', - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - DripperWethAsc = 'dripperWETH_ASC', - DripperWethAscNullsFirst = 'dripperWETH_ASC_NULLS_FIRST', - DripperWethDesc = 'dripperWETH_DESC', - DripperWethDescNullsLast = 'dripperWETH_DESC_NULLS_LAST', - FeesEth7DayAsc = 'feesETH7Day_ASC', - FeesEth7DayAscNullsFirst = 'feesETH7Day_ASC_NULLS_FIRST', - FeesEth7DayDesc = 'feesETH7Day_DESC', - FeesEth7DayDescNullsLast = 'feesETH7Day_DESC_NULLS_LAST', - FeesEthAllTimeAsc = 'feesETHAllTime_ASC', - FeesEthAllTimeAscNullsFirst = 'feesETHAllTime_ASC_NULLS_FIRST', - FeesEthAllTimeDesc = 'feesETHAllTime_DESC', - FeesEthAllTimeDescNullsLast = 'feesETHAllTime_DESC_NULLS_LAST', - FeesEthAsc = 'feesETH_ASC', - FeesEthAscNullsFirst = 'feesETH_ASC_NULLS_FIRST', - FeesEthDesc = 'feesETH_DESC', - FeesEthDescNullsLast = 'feesETH_DESC_NULLS_LAST', - FeesUsd7DayAsc = 'feesUSD7Day_ASC', - FeesUsd7DayAscNullsFirst = 'feesUSD7Day_ASC_NULLS_FIRST', - FeesUsd7DayDesc = 'feesUSD7Day_DESC', - FeesUsd7DayDescNullsLast = 'feesUSD7Day_DESC_NULLS_LAST', - FeesUsdAllTimeAsc = 'feesUSDAllTime_ASC', - FeesUsdAllTimeAscNullsFirst = 'feesUSDAllTime_ASC_NULLS_FIRST', - FeesUsdAllTimeDesc = 'feesUSDAllTime_DESC', - FeesUsdAllTimeDescNullsLast = 'feesUSDAllTime_DESC_NULLS_LAST', - FeesUsdAsc = 'feesUSD_ASC', - FeesUsdAscNullsFirst = 'feesUSD_ASC_NULLS_FIRST', - FeesUsdDesc = 'feesUSD_DESC', - FeesUsdDescNullsLast = 'feesUSD_DESC_NULLS_LAST', - HoldersOverThresholdAsc = 'holdersOverThreshold_ASC', - HoldersOverThresholdAscNullsFirst = 'holdersOverThreshold_ASC_NULLS_FIRST', - HoldersOverThresholdDesc = 'holdersOverThreshold_DESC', - HoldersOverThresholdDescNullsLast = 'holdersOverThreshold_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - MarketCapUsdAsc = 'marketCapUSD_ASC', - MarketCapUsdAscNullsFirst = 'marketCapUSD_ASC_NULLS_FIRST', - MarketCapUsdDesc = 'marketCapUSD_DESC', - MarketCapUsdDescNullsLast = 'marketCapUSD_DESC_NULLS_LAST', - NonRebasingSupplyAsc = 'nonRebasingSupply_ASC', - NonRebasingSupplyAscNullsFirst = 'nonRebasingSupply_ASC_NULLS_FIRST', - NonRebasingSupplyDesc = 'nonRebasingSupply_DESC', - NonRebasingSupplyDescNullsLast = 'nonRebasingSupply_DESC_NULLS_LAST', - PegPriceAsc = 'pegPrice_ASC', - PegPriceAscNullsFirst = 'pegPrice_ASC_NULLS_FIRST', - PegPriceDesc = 'pegPrice_DESC', - PegPriceDescNullsLast = 'pegPrice_DESC_NULLS_LAST', - RebasingSupplyAsc = 'rebasingSupply_ASC', - RebasingSupplyAscNullsFirst = 'rebasingSupply_ASC_NULLS_FIRST', - RebasingSupplyDesc = 'rebasingSupply_DESC', - RebasingSupplyDescNullsLast = 'rebasingSupply_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TotalSupplyUsdAsc = 'totalSupplyUSD_ASC', - TotalSupplyUsdAscNullsFirst = 'totalSupplyUSD_ASC_NULLS_FIRST', - TotalSupplyUsdDesc = 'totalSupplyUSD_DESC', - TotalSupplyUsdDescNullsLast = 'totalSupplyUSD_DESC_NULLS_LAST', - TotalSupplyAsc = 'totalSupply_ASC', - TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', - TotalSupplyDesc = 'totalSupply_DESC', - TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST', - TradingVolumeUsdAsc = 'tradingVolumeUSD_ASC', - TradingVolumeUsdAscNullsFirst = 'tradingVolumeUSD_ASC_NULLS_FIRST', - TradingVolumeUsdDesc = 'tradingVolumeUSD_DESC', - TradingVolumeUsdDescNullsLast = 'tradingVolumeUSD_DESC_NULLS_LAST', - WrappedSupplyAsc = 'wrappedSupply_ASC', - WrappedSupplyAscNullsFirst = 'wrappedSupply_ASC_NULLS_FIRST', - WrappedSupplyDesc = 'wrappedSupply_DESC', - WrappedSupplyDescNullsLast = 'wrappedSupply_DESC_NULLS_LAST', - YieldEth7DayAsc = 'yieldETH7Day_ASC', - YieldEth7DayAscNullsFirst = 'yieldETH7Day_ASC_NULLS_FIRST', - YieldEth7DayDesc = 'yieldETH7Day_DESC', - YieldEth7DayDescNullsLast = 'yieldETH7Day_DESC_NULLS_LAST', - YieldEthAllTimeAsc = 'yieldETHAllTime_ASC', - YieldEthAllTimeAscNullsFirst = 'yieldETHAllTime_ASC_NULLS_FIRST', - YieldEthAllTimeDesc = 'yieldETHAllTime_DESC', - YieldEthAllTimeDescNullsLast = 'yieldETHAllTime_DESC_NULLS_LAST', - YieldEthAsc = 'yieldETH_ASC', - YieldEthAscNullsFirst = 'yieldETH_ASC_NULLS_FIRST', - YieldEthDesc = 'yieldETH_DESC', - YieldEthDescNullsLast = 'yieldETH_DESC_NULLS_LAST', - YieldUsd7DayAsc = 'yieldUSD7Day_ASC', - YieldUsd7DayAscNullsFirst = 'yieldUSD7Day_ASC_NULLS_FIRST', - YieldUsd7DayDesc = 'yieldUSD7Day_DESC', - YieldUsd7DayDescNullsLast = 'yieldUSD7Day_DESC_NULLS_LAST', - YieldUsdAllTimeAsc = 'yieldUSDAllTime_ASC', - YieldUsdAllTimeAscNullsFirst = 'yieldUSDAllTime_ASC_NULLS_FIRST', - YieldUsdAllTimeDesc = 'yieldUSDAllTime_DESC', - YieldUsdAllTimeDescNullsLast = 'yieldUSDAllTime_DESC_NULLS_LAST', - YieldUsdAsc = 'yieldUSD_ASC', - YieldUsdAscNullsFirst = 'yieldUSD_ASC_NULLS_FIRST', - YieldUsdDesc = 'yieldUSD_DESC', - YieldUsdDescNullsLast = 'yieldUSD_DESC_NULLS_LAST' -} - -export type OethDailyStatWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - amoSupply_eq?: InputMaybe; - amoSupply_gt?: InputMaybe; - amoSupply_gte?: InputMaybe; - amoSupply_in?: InputMaybe>; - amoSupply_isNull?: InputMaybe; - amoSupply_lt?: InputMaybe; - amoSupply_lte?: InputMaybe; - amoSupply_not_eq?: InputMaybe; - amoSupply_not_in?: InputMaybe>; - apr_eq?: InputMaybe; - apr_gt?: InputMaybe; - apr_gte?: InputMaybe; - apr_in?: InputMaybe>; - apr_isNull?: InputMaybe; - apr_lt?: InputMaybe; - apr_lte?: InputMaybe; - apr_not_eq?: InputMaybe; - apr_not_in?: InputMaybe>; - apy7DayAvg_eq?: InputMaybe; - apy7DayAvg_gt?: InputMaybe; - apy7DayAvg_gte?: InputMaybe; - apy7DayAvg_in?: InputMaybe>; - apy7DayAvg_isNull?: InputMaybe; - apy7DayAvg_lt?: InputMaybe; - apy7DayAvg_lte?: InputMaybe; - apy7DayAvg_not_eq?: InputMaybe; - apy7DayAvg_not_in?: InputMaybe>; - apy14DayAvg_eq?: InputMaybe; - apy14DayAvg_gt?: InputMaybe; - apy14DayAvg_gte?: InputMaybe; - apy14DayAvg_in?: InputMaybe>; - apy14DayAvg_isNull?: InputMaybe; - apy14DayAvg_lt?: InputMaybe; - apy14DayAvg_lte?: InputMaybe; - apy14DayAvg_not_eq?: InputMaybe; - apy14DayAvg_not_in?: InputMaybe>; - apy30DayAvg_eq?: InputMaybe; - apy30DayAvg_gt?: InputMaybe; - apy30DayAvg_gte?: InputMaybe; - apy30DayAvg_in?: InputMaybe>; - apy30DayAvg_isNull?: InputMaybe; - apy30DayAvg_lt?: InputMaybe; - apy30DayAvg_lte?: InputMaybe; - apy30DayAvg_not_eq?: InputMaybe; - apy30DayAvg_not_in?: InputMaybe>; - apy_eq?: InputMaybe; - apy_gt?: InputMaybe; - apy_gte?: InputMaybe; - apy_in?: InputMaybe>; - apy_isNull?: InputMaybe; - apy_lt?: InputMaybe; - apy_lte?: InputMaybe; - apy_not_eq?: InputMaybe; - apy_not_in?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - collateral_every?: InputMaybe; - collateral_none?: InputMaybe; - collateral_some?: InputMaybe; - dripperWETH_eq?: InputMaybe; - dripperWETH_gt?: InputMaybe; - dripperWETH_gte?: InputMaybe; - dripperWETH_in?: InputMaybe>; - dripperWETH_isNull?: InputMaybe; - dripperWETH_lt?: InputMaybe; - dripperWETH_lte?: InputMaybe; - dripperWETH_not_eq?: InputMaybe; - dripperWETH_not_in?: InputMaybe>; - feesETH7Day_eq?: InputMaybe; - feesETH7Day_gt?: InputMaybe; - feesETH7Day_gte?: InputMaybe; - feesETH7Day_in?: InputMaybe>; - feesETH7Day_isNull?: InputMaybe; - feesETH7Day_lt?: InputMaybe; - feesETH7Day_lte?: InputMaybe; - feesETH7Day_not_eq?: InputMaybe; - feesETH7Day_not_in?: InputMaybe>; - feesETHAllTime_eq?: InputMaybe; - feesETHAllTime_gt?: InputMaybe; - feesETHAllTime_gte?: InputMaybe; - feesETHAllTime_in?: InputMaybe>; - feesETHAllTime_isNull?: InputMaybe; - feesETHAllTime_lt?: InputMaybe; - feesETHAllTime_lte?: InputMaybe; - feesETHAllTime_not_eq?: InputMaybe; - feesETHAllTime_not_in?: InputMaybe>; - feesETH_eq?: InputMaybe; - feesETH_gt?: InputMaybe; - feesETH_gte?: InputMaybe; - feesETH_in?: InputMaybe>; - feesETH_isNull?: InputMaybe; - feesETH_lt?: InputMaybe; - feesETH_lte?: InputMaybe; - feesETH_not_eq?: InputMaybe; - feesETH_not_in?: InputMaybe>; - feesUSD7Day_eq?: InputMaybe; - feesUSD7Day_gt?: InputMaybe; - feesUSD7Day_gte?: InputMaybe; - feesUSD7Day_in?: InputMaybe>; - feesUSD7Day_isNull?: InputMaybe; - feesUSD7Day_lt?: InputMaybe; - feesUSD7Day_lte?: InputMaybe; - feesUSD7Day_not_eq?: InputMaybe; - feesUSD7Day_not_in?: InputMaybe>; - feesUSDAllTime_eq?: InputMaybe; - feesUSDAllTime_gt?: InputMaybe; - feesUSDAllTime_gte?: InputMaybe; - feesUSDAllTime_in?: InputMaybe>; - feesUSDAllTime_isNull?: InputMaybe; - feesUSDAllTime_lt?: InputMaybe; - feesUSDAllTime_lte?: InputMaybe; - feesUSDAllTime_not_eq?: InputMaybe; - feesUSDAllTime_not_in?: InputMaybe>; - feesUSD_eq?: InputMaybe; - feesUSD_gt?: InputMaybe; - feesUSD_gte?: InputMaybe; - feesUSD_in?: InputMaybe>; - feesUSD_isNull?: InputMaybe; - feesUSD_lt?: InputMaybe; - feesUSD_lte?: InputMaybe; - feesUSD_not_eq?: InputMaybe; - feesUSD_not_in?: InputMaybe>; - holdersOverThreshold_eq?: InputMaybe; - holdersOverThreshold_gt?: InputMaybe; - holdersOverThreshold_gte?: InputMaybe; - holdersOverThreshold_in?: InputMaybe>; - holdersOverThreshold_isNull?: InputMaybe; - holdersOverThreshold_lt?: InputMaybe; - holdersOverThreshold_lte?: InputMaybe; - holdersOverThreshold_not_eq?: InputMaybe; - holdersOverThreshold_not_in?: InputMaybe>; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - marketCapUSD_eq?: InputMaybe; - marketCapUSD_gt?: InputMaybe; - marketCapUSD_gte?: InputMaybe; - marketCapUSD_in?: InputMaybe>; - marketCapUSD_isNull?: InputMaybe; - marketCapUSD_lt?: InputMaybe; - marketCapUSD_lte?: InputMaybe; - marketCapUSD_not_eq?: InputMaybe; - marketCapUSD_not_in?: InputMaybe>; - nonRebasingSupply_eq?: InputMaybe; - nonRebasingSupply_gt?: InputMaybe; - nonRebasingSupply_gte?: InputMaybe; - nonRebasingSupply_in?: InputMaybe>; - nonRebasingSupply_isNull?: InputMaybe; - nonRebasingSupply_lt?: InputMaybe; - nonRebasingSupply_lte?: InputMaybe; - nonRebasingSupply_not_eq?: InputMaybe; - nonRebasingSupply_not_in?: InputMaybe>; - pegPrice_eq?: InputMaybe; - pegPrice_gt?: InputMaybe; - pegPrice_gte?: InputMaybe; - pegPrice_in?: InputMaybe>; - pegPrice_isNull?: InputMaybe; - pegPrice_lt?: InputMaybe; - pegPrice_lte?: InputMaybe; - pegPrice_not_eq?: InputMaybe; - pegPrice_not_in?: InputMaybe>; - rebasingSupply_eq?: InputMaybe; - rebasingSupply_gt?: InputMaybe; - rebasingSupply_gte?: InputMaybe; - rebasingSupply_in?: InputMaybe>; - rebasingSupply_isNull?: InputMaybe; - rebasingSupply_lt?: InputMaybe; - rebasingSupply_lte?: InputMaybe; - rebasingSupply_not_eq?: InputMaybe; - rebasingSupply_not_in?: InputMaybe>; - strategies_every?: InputMaybe; - strategies_none?: InputMaybe; - strategies_some?: InputMaybe; + oethOwned_eq?: InputMaybe; + oethOwned_gt?: InputMaybe; + oethOwned_gte?: InputMaybe; + oethOwned_in?: InputMaybe>; + oethOwned_isNull?: InputMaybe; + oethOwned_lt?: InputMaybe; + oethOwned_lte?: InputMaybe; + oethOwned_not_eq?: InputMaybe; + oethOwned_not_in?: InputMaybe>; + oeth_eq?: InputMaybe; + oeth_gt?: InputMaybe; + oeth_gte?: InputMaybe; + oeth_in?: InputMaybe>; + oeth_isNull?: InputMaybe; + oeth_lt?: InputMaybe; + oeth_lte?: InputMaybe; + oeth_not_eq?: InputMaybe; + oeth_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -4593,15 +3465,15 @@ export type OethDailyStatWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - totalSupplyUSD_eq?: InputMaybe; - totalSupplyUSD_gt?: InputMaybe; - totalSupplyUSD_gte?: InputMaybe; - totalSupplyUSD_in?: InputMaybe>; - totalSupplyUSD_isNull?: InputMaybe; - totalSupplyUSD_lt?: InputMaybe; - totalSupplyUSD_lte?: InputMaybe; - totalSupplyUSD_not_eq?: InputMaybe; - totalSupplyUSD_not_in?: InputMaybe>; + totalSupplyOwned_eq?: InputMaybe; + totalSupplyOwned_gt?: InputMaybe; + totalSupplyOwned_gte?: InputMaybe; + totalSupplyOwned_in?: InputMaybe>; + totalSupplyOwned_isNull?: InputMaybe; + totalSupplyOwned_lt?: InputMaybe; + totalSupplyOwned_lte?: InputMaybe; + totalSupplyOwned_not_eq?: InputMaybe; + totalSupplyOwned_not_in?: InputMaybe>; totalSupply_eq?: InputMaybe; totalSupply_gt?: InputMaybe; totalSupply_gte?: InputMaybe; @@ -4611,264 +3483,261 @@ export type OethDailyStatWhereInput = { totalSupply_lte?: InputMaybe; totalSupply_not_eq?: InputMaybe; totalSupply_not_in?: InputMaybe>; - tradingVolumeUSD_eq?: InputMaybe; - tradingVolumeUSD_gt?: InputMaybe; - tradingVolumeUSD_gte?: InputMaybe; - tradingVolumeUSD_in?: InputMaybe>; - tradingVolumeUSD_isNull?: InputMaybe; - tradingVolumeUSD_lt?: InputMaybe; - tradingVolumeUSD_lte?: InputMaybe; - tradingVolumeUSD_not_eq?: InputMaybe; - tradingVolumeUSD_not_in?: InputMaybe>; - wrappedSupply_eq?: InputMaybe; - wrappedSupply_gt?: InputMaybe; - wrappedSupply_gte?: InputMaybe; - wrappedSupply_in?: InputMaybe>; - wrappedSupply_isNull?: InputMaybe; - wrappedSupply_lt?: InputMaybe; - wrappedSupply_lte?: InputMaybe; - wrappedSupply_not_eq?: InputMaybe; - wrappedSupply_not_in?: InputMaybe>; - yieldETH7Day_eq?: InputMaybe; - yieldETH7Day_gt?: InputMaybe; - yieldETH7Day_gte?: InputMaybe; - yieldETH7Day_in?: InputMaybe>; - yieldETH7Day_isNull?: InputMaybe; - yieldETH7Day_lt?: InputMaybe; - yieldETH7Day_lte?: InputMaybe; - yieldETH7Day_not_eq?: InputMaybe; - yieldETH7Day_not_in?: InputMaybe>; - yieldETHAllTime_eq?: InputMaybe; - yieldETHAllTime_gt?: InputMaybe; - yieldETHAllTime_gte?: InputMaybe; - yieldETHAllTime_in?: InputMaybe>; - yieldETHAllTime_isNull?: InputMaybe; - yieldETHAllTime_lt?: InputMaybe; - yieldETHAllTime_lte?: InputMaybe; - yieldETHAllTime_not_eq?: InputMaybe; - yieldETHAllTime_not_in?: InputMaybe>; - yieldETH_eq?: InputMaybe; - yieldETH_gt?: InputMaybe; - yieldETH_gte?: InputMaybe; - yieldETH_in?: InputMaybe>; - yieldETH_isNull?: InputMaybe; - yieldETH_lt?: InputMaybe; - yieldETH_lte?: InputMaybe; - yieldETH_not_eq?: InputMaybe; - yieldETH_not_in?: InputMaybe>; - yieldUSD7Day_eq?: InputMaybe; - yieldUSD7Day_gt?: InputMaybe; - yieldUSD7Day_gte?: InputMaybe; - yieldUSD7Day_in?: InputMaybe>; - yieldUSD7Day_isNull?: InputMaybe; - yieldUSD7Day_lt?: InputMaybe; - yieldUSD7Day_lte?: InputMaybe; - yieldUSD7Day_not_eq?: InputMaybe; - yieldUSD7Day_not_in?: InputMaybe>; - yieldUSDAllTime_eq?: InputMaybe; - yieldUSDAllTime_gt?: InputMaybe; - yieldUSDAllTime_gte?: InputMaybe; - yieldUSDAllTime_in?: InputMaybe>; - yieldUSDAllTime_isNull?: InputMaybe; - yieldUSDAllTime_lt?: InputMaybe; - yieldUSDAllTime_lte?: InputMaybe; - yieldUSDAllTime_not_eq?: InputMaybe; - yieldUSDAllTime_not_in?: InputMaybe>; - yieldUSD_eq?: InputMaybe; - yieldUSD_gt?: InputMaybe; - yieldUSD_gte?: InputMaybe; - yieldUSD_in?: InputMaybe>; - yieldUSD_isNull?: InputMaybe; - yieldUSD_lt?: InputMaybe; - yieldUSD_lte?: InputMaybe; - yieldUSD_not_eq?: InputMaybe; - yieldUSD_not_in?: InputMaybe>; }; -export type OethDailyStatsConnection = { - __typename?: 'OETHDailyStatsConnection'; - edges: Array; +export type OethCurveLPsConnection = { + __typename?: 'OETHCurveLPsConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export type OethDripper = { - __typename?: 'OETHDripper'; - blockNumber: Scalars['Int']['output']; - dripDuration: Scalars['BigInt']['output']; - dripRatePerBlock: Scalars['BigInt']['output']; - id: Scalars['String']['output']; - lastCollectTimestamp: Scalars['Int']['output']; - timestamp: Scalars['DateTime']['output']; - weth: Scalars['BigInt']['output']; -}; - -export type OethDripperEdge = { - __typename?: 'OETHDripperEdge'; - cursor: Scalars['String']['output']; - node: OethDripper; -}; - -export enum OethDripperOrderByInput { - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - DripDurationAsc = 'dripDuration_ASC', - DripDurationAscNullsFirst = 'dripDuration_ASC_NULLS_FIRST', - DripDurationDesc = 'dripDuration_DESC', - DripDurationDescNullsLast = 'dripDuration_DESC_NULLS_LAST', - DripRatePerBlockAsc = 'dripRatePerBlock_ASC', - DripRatePerBlockAscNullsFirst = 'dripRatePerBlock_ASC_NULLS_FIRST', - DripRatePerBlockDesc = 'dripRatePerBlock_DESC', - DripRatePerBlockDescNullsLast = 'dripRatePerBlock_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - LastCollectTimestampAsc = 'lastCollectTimestamp_ASC', - LastCollectTimestampAscNullsFirst = 'lastCollectTimestamp_ASC_NULLS_FIRST', - LastCollectTimestampDesc = 'lastCollectTimestamp_DESC', - LastCollectTimestampDescNullsLast = 'lastCollectTimestamp_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - WethAsc = 'weth_ASC', - WethAscNullsFirst = 'weth_ASC_NULLS_FIRST', - WethDesc = 'weth_DESC', - WethDescNullsLast = 'weth_DESC_NULLS_LAST' -} - -export type OethDripperWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - dripDuration_eq?: InputMaybe; - dripDuration_gt?: InputMaybe; - dripDuration_gte?: InputMaybe; - dripDuration_in?: InputMaybe>; - dripDuration_isNull?: InputMaybe; - dripDuration_lt?: InputMaybe; - dripDuration_lte?: InputMaybe; - dripDuration_not_eq?: InputMaybe; - dripDuration_not_in?: InputMaybe>; - dripRatePerBlock_eq?: InputMaybe; - dripRatePerBlock_gt?: InputMaybe; - dripRatePerBlock_gte?: InputMaybe; - dripRatePerBlock_in?: InputMaybe>; - dripRatePerBlock_isNull?: InputMaybe; - dripRatePerBlock_lt?: InputMaybe; - dripRatePerBlock_lte?: InputMaybe; - dripRatePerBlock_not_eq?: InputMaybe; - dripRatePerBlock_not_in?: InputMaybe>; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - lastCollectTimestamp_eq?: InputMaybe; - lastCollectTimestamp_gt?: InputMaybe; - lastCollectTimestamp_gte?: InputMaybe; - lastCollectTimestamp_in?: InputMaybe>; - lastCollectTimestamp_isNull?: InputMaybe; - lastCollectTimestamp_lt?: InputMaybe; - lastCollectTimestamp_lte?: InputMaybe; - lastCollectTimestamp_not_eq?: InputMaybe; - lastCollectTimestamp_not_in?: InputMaybe>; - timestamp_eq?: InputMaybe; - timestamp_gt?: InputMaybe; - timestamp_gte?: InputMaybe; - timestamp_in?: InputMaybe>; - timestamp_isNull?: InputMaybe; - timestamp_lt?: InputMaybe; - timestamp_lte?: InputMaybe; - timestamp_not_eq?: InputMaybe; - timestamp_not_in?: InputMaybe>; - weth_eq?: InputMaybe; - weth_gt?: InputMaybe; - weth_gte?: InputMaybe; - weth_in?: InputMaybe>; - weth_isNull?: InputMaybe; - weth_lt?: InputMaybe; - weth_lte?: InputMaybe; - weth_not_eq?: InputMaybe; - weth_not_in?: InputMaybe>; +export type OethDailyStat = { + __typename?: 'OETHDailyStat'; + amoSupply: Scalars['BigInt']['output']; + /** Timestamp of block number stats were updated */ + apr: Scalars['Float']['output']; + apy: Scalars['Float']['output']; + apy7DayAvg: Scalars['Float']['output']; + apy14DayAvg: Scalars['Float']['output']; + apy30DayAvg: Scalars['Float']['output']; + /** Timestamp, eg 2023-10-17 */ + blockNumber: Scalars['Int']['output']; + collateral: Array; + dripperWETH: Scalars['BigInt']['output']; + feesETH: Scalars['BigInt']['output']; + feesETH7Day: Scalars['BigInt']['output']; + feesETHAllTime: Scalars['BigInt']['output']; + feesUSD: Scalars['BigInt']['output']; + feesUSD7Day: Scalars['BigInt']['output']; + feesUSDAllTime: Scalars['BigInt']['output']; + holdersOverThreshold: Scalars['Int']['output']; + id: Scalars['String']['output']; + marketCapUSD: Scalars['Float']['output']; + nonRebasingSupply: Scalars['BigInt']['output']; + pegPrice: Scalars['BigInt']['output']; + rebasingSupply: Scalars['BigInt']['output']; + strategies: Array; + /** Last block number stats were updated */ + timestamp: Scalars['DateTime']['output']; + totalSupply: Scalars['BigInt']['output']; + totalSupplyUSD: Scalars['Float']['output']; + tradingVolumeUSD: Scalars['Float']['output']; + wrappedSupply: Scalars['BigInt']['output']; + yieldETH: Scalars['BigInt']['output']; + yieldETH7Day: Scalars['BigInt']['output']; + yieldETHAllTime: Scalars['BigInt']['output']; + yieldUSD: Scalars['BigInt']['output']; + yieldUSD7Day: Scalars['BigInt']['output']; + yieldUSDAllTime: Scalars['BigInt']['output']; }; -export type OethDrippersConnection = { - __typename?: 'OETHDrippersConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; -export type OethEdge = { - __typename?: 'OETHEdge'; - cursor: Scalars['String']['output']; - node: Oeth; +export type OethDailyStatCollateralArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; }; -export type OethFraxStaking = { - __typename?: 'OETHFraxStaking'; - blockNumber: Scalars['Int']['output']; - id: Scalars['String']['output']; - /** - * - sfrxETH is what's actually stored here, slightly confusing and may want to change. - * - used by balance sheet - */ - sfrxETH: Scalars['BigInt']['output']; - timestamp: Scalars['DateTime']['output']; + +export type OethDailyStatStrategiesArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; }; -export type OethFraxStakingEdge = { - __typename?: 'OETHFraxStakingEdge'; +export type OethDailyStatEdge = { + __typename?: 'OETHDailyStatEdge'; cursor: Scalars['String']['output']; - node: OethFraxStaking; + node: OethDailyStat; }; -export enum OethFraxStakingOrderByInput { +export enum OethDailyStatOrderByInput { + AmoSupplyAsc = 'amoSupply_ASC', + AmoSupplyAscNullsFirst = 'amoSupply_ASC_NULLS_FIRST', + AmoSupplyDesc = 'amoSupply_DESC', + AmoSupplyDescNullsLast = 'amoSupply_DESC_NULLS_LAST', + AprAsc = 'apr_ASC', + AprAscNullsFirst = 'apr_ASC_NULLS_FIRST', + AprDesc = 'apr_DESC', + AprDescNullsLast = 'apr_DESC_NULLS_LAST', + Apy7DayAvgAsc = 'apy7DayAvg_ASC', + Apy7DayAvgAscNullsFirst = 'apy7DayAvg_ASC_NULLS_FIRST', + Apy7DayAvgDesc = 'apy7DayAvg_DESC', + Apy7DayAvgDescNullsLast = 'apy7DayAvg_DESC_NULLS_LAST', + Apy14DayAvgAsc = 'apy14DayAvg_ASC', + Apy14DayAvgAscNullsFirst = 'apy14DayAvg_ASC_NULLS_FIRST', + Apy14DayAvgDesc = 'apy14DayAvg_DESC', + Apy14DayAvgDescNullsLast = 'apy14DayAvg_DESC_NULLS_LAST', + Apy30DayAvgAsc = 'apy30DayAvg_ASC', + Apy30DayAvgAscNullsFirst = 'apy30DayAvg_ASC_NULLS_FIRST', + Apy30DayAvgDesc = 'apy30DayAvg_DESC', + Apy30DayAvgDescNullsLast = 'apy30DayAvg_DESC_NULLS_LAST', + ApyAsc = 'apy_ASC', + ApyAscNullsFirst = 'apy_ASC_NULLS_FIRST', + ApyDesc = 'apy_DESC', + ApyDescNullsLast = 'apy_DESC_NULLS_LAST', BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + DripperWethAsc = 'dripperWETH_ASC', + DripperWethAscNullsFirst = 'dripperWETH_ASC_NULLS_FIRST', + DripperWethDesc = 'dripperWETH_DESC', + DripperWethDescNullsLast = 'dripperWETH_DESC_NULLS_LAST', + FeesEth7DayAsc = 'feesETH7Day_ASC', + FeesEth7DayAscNullsFirst = 'feesETH7Day_ASC_NULLS_FIRST', + FeesEth7DayDesc = 'feesETH7Day_DESC', + FeesEth7DayDescNullsLast = 'feesETH7Day_DESC_NULLS_LAST', + FeesEthAllTimeAsc = 'feesETHAllTime_ASC', + FeesEthAllTimeAscNullsFirst = 'feesETHAllTime_ASC_NULLS_FIRST', + FeesEthAllTimeDesc = 'feesETHAllTime_DESC', + FeesEthAllTimeDescNullsLast = 'feesETHAllTime_DESC_NULLS_LAST', + FeesEthAsc = 'feesETH_ASC', + FeesEthAscNullsFirst = 'feesETH_ASC_NULLS_FIRST', + FeesEthDesc = 'feesETH_DESC', + FeesEthDescNullsLast = 'feesETH_DESC_NULLS_LAST', + FeesUsd7DayAsc = 'feesUSD7Day_ASC', + FeesUsd7DayAscNullsFirst = 'feesUSD7Day_ASC_NULLS_FIRST', + FeesUsd7DayDesc = 'feesUSD7Day_DESC', + FeesUsd7DayDescNullsLast = 'feesUSD7Day_DESC_NULLS_LAST', + FeesUsdAllTimeAsc = 'feesUSDAllTime_ASC', + FeesUsdAllTimeAscNullsFirst = 'feesUSDAllTime_ASC_NULLS_FIRST', + FeesUsdAllTimeDesc = 'feesUSDAllTime_DESC', + FeesUsdAllTimeDescNullsLast = 'feesUSDAllTime_DESC_NULLS_LAST', + FeesUsdAsc = 'feesUSD_ASC', + FeesUsdAscNullsFirst = 'feesUSD_ASC_NULLS_FIRST', + FeesUsdDesc = 'feesUSD_DESC', + FeesUsdDescNullsLast = 'feesUSD_DESC_NULLS_LAST', + HoldersOverThresholdAsc = 'holdersOverThreshold_ASC', + HoldersOverThresholdAscNullsFirst = 'holdersOverThreshold_ASC_NULLS_FIRST', + HoldersOverThresholdDesc = 'holdersOverThreshold_DESC', + HoldersOverThresholdDescNullsLast = 'holdersOverThreshold_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - SfrxEthAsc = 'sfrxETH_ASC', - SfrxEthAscNullsFirst = 'sfrxETH_ASC_NULLS_FIRST', - SfrxEthDesc = 'sfrxETH_DESC', - SfrxEthDescNullsLast = 'sfrxETH_DESC_NULLS_LAST', + MarketCapUsdAsc = 'marketCapUSD_ASC', + MarketCapUsdAscNullsFirst = 'marketCapUSD_ASC_NULLS_FIRST', + MarketCapUsdDesc = 'marketCapUSD_DESC', + MarketCapUsdDescNullsLast = 'marketCapUSD_DESC_NULLS_LAST', + NonRebasingSupplyAsc = 'nonRebasingSupply_ASC', + NonRebasingSupplyAscNullsFirst = 'nonRebasingSupply_ASC_NULLS_FIRST', + NonRebasingSupplyDesc = 'nonRebasingSupply_DESC', + NonRebasingSupplyDescNullsLast = 'nonRebasingSupply_DESC_NULLS_LAST', + PegPriceAsc = 'pegPrice_ASC', + PegPriceAscNullsFirst = 'pegPrice_ASC_NULLS_FIRST', + PegPriceDesc = 'pegPrice_DESC', + PegPriceDescNullsLast = 'pegPrice_DESC_NULLS_LAST', + RebasingSupplyAsc = 'rebasingSupply_ASC', + RebasingSupplyAscNullsFirst = 'rebasingSupply_ASC_NULLS_FIRST', + RebasingSupplyDesc = 'rebasingSupply_DESC', + RebasingSupplyDescNullsLast = 'rebasingSupply_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST' + TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', + TotalSupplyUsdAsc = 'totalSupplyUSD_ASC', + TotalSupplyUsdAscNullsFirst = 'totalSupplyUSD_ASC_NULLS_FIRST', + TotalSupplyUsdDesc = 'totalSupplyUSD_DESC', + TotalSupplyUsdDescNullsLast = 'totalSupplyUSD_DESC_NULLS_LAST', + TotalSupplyAsc = 'totalSupply_ASC', + TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', + TotalSupplyDesc = 'totalSupply_DESC', + TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST', + TradingVolumeUsdAsc = 'tradingVolumeUSD_ASC', + TradingVolumeUsdAscNullsFirst = 'tradingVolumeUSD_ASC_NULLS_FIRST', + TradingVolumeUsdDesc = 'tradingVolumeUSD_DESC', + TradingVolumeUsdDescNullsLast = 'tradingVolumeUSD_DESC_NULLS_LAST', + WrappedSupplyAsc = 'wrappedSupply_ASC', + WrappedSupplyAscNullsFirst = 'wrappedSupply_ASC_NULLS_FIRST', + WrappedSupplyDesc = 'wrappedSupply_DESC', + WrappedSupplyDescNullsLast = 'wrappedSupply_DESC_NULLS_LAST', + YieldEth7DayAsc = 'yieldETH7Day_ASC', + YieldEth7DayAscNullsFirst = 'yieldETH7Day_ASC_NULLS_FIRST', + YieldEth7DayDesc = 'yieldETH7Day_DESC', + YieldEth7DayDescNullsLast = 'yieldETH7Day_DESC_NULLS_LAST', + YieldEthAllTimeAsc = 'yieldETHAllTime_ASC', + YieldEthAllTimeAscNullsFirst = 'yieldETHAllTime_ASC_NULLS_FIRST', + YieldEthAllTimeDesc = 'yieldETHAllTime_DESC', + YieldEthAllTimeDescNullsLast = 'yieldETHAllTime_DESC_NULLS_LAST', + YieldEthAsc = 'yieldETH_ASC', + YieldEthAscNullsFirst = 'yieldETH_ASC_NULLS_FIRST', + YieldEthDesc = 'yieldETH_DESC', + YieldEthDescNullsLast = 'yieldETH_DESC_NULLS_LAST', + YieldUsd7DayAsc = 'yieldUSD7Day_ASC', + YieldUsd7DayAscNullsFirst = 'yieldUSD7Day_ASC_NULLS_FIRST', + YieldUsd7DayDesc = 'yieldUSD7Day_DESC', + YieldUsd7DayDescNullsLast = 'yieldUSD7Day_DESC_NULLS_LAST', + YieldUsdAllTimeAsc = 'yieldUSDAllTime_ASC', + YieldUsdAllTimeAscNullsFirst = 'yieldUSDAllTime_ASC_NULLS_FIRST', + YieldUsdAllTimeDesc = 'yieldUSDAllTime_DESC', + YieldUsdAllTimeDescNullsLast = 'yieldUSDAllTime_DESC_NULLS_LAST', + YieldUsdAsc = 'yieldUSD_ASC', + YieldUsdAscNullsFirst = 'yieldUSD_ASC_NULLS_FIRST', + YieldUsdDesc = 'yieldUSD_DESC', + YieldUsdDescNullsLast = 'yieldUSD_DESC_NULLS_LAST' } -export type OethFraxStakingWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OethDailyStatWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + amoSupply_eq?: InputMaybe; + amoSupply_gt?: InputMaybe; + amoSupply_gte?: InputMaybe; + amoSupply_in?: InputMaybe>; + amoSupply_isNull?: InputMaybe; + amoSupply_lt?: InputMaybe; + amoSupply_lte?: InputMaybe; + amoSupply_not_eq?: InputMaybe; + amoSupply_not_in?: InputMaybe>; + apr_eq?: InputMaybe; + apr_gt?: InputMaybe; + apr_gte?: InputMaybe; + apr_in?: InputMaybe>; + apr_isNull?: InputMaybe; + apr_lt?: InputMaybe; + apr_lte?: InputMaybe; + apr_not_eq?: InputMaybe; + apr_not_in?: InputMaybe>; + apy7DayAvg_eq?: InputMaybe; + apy7DayAvg_gt?: InputMaybe; + apy7DayAvg_gte?: InputMaybe; + apy7DayAvg_in?: InputMaybe>; + apy7DayAvg_isNull?: InputMaybe; + apy7DayAvg_lt?: InputMaybe; + apy7DayAvg_lte?: InputMaybe; + apy7DayAvg_not_eq?: InputMaybe; + apy7DayAvg_not_in?: InputMaybe>; + apy14DayAvg_eq?: InputMaybe; + apy14DayAvg_gt?: InputMaybe; + apy14DayAvg_gte?: InputMaybe; + apy14DayAvg_in?: InputMaybe>; + apy14DayAvg_isNull?: InputMaybe; + apy14DayAvg_lt?: InputMaybe; + apy14DayAvg_lte?: InputMaybe; + apy14DayAvg_not_eq?: InputMaybe; + apy14DayAvg_not_in?: InputMaybe>; + apy30DayAvg_eq?: InputMaybe; + apy30DayAvg_gt?: InputMaybe; + apy30DayAvg_gte?: InputMaybe; + apy30DayAvg_in?: InputMaybe>; + apy30DayAvg_isNull?: InputMaybe; + apy30DayAvg_lt?: InputMaybe; + apy30DayAvg_lte?: InputMaybe; + apy30DayAvg_not_eq?: InputMaybe; + apy30DayAvg_not_in?: InputMaybe>; + apy_eq?: InputMaybe; + apy_gt?: InputMaybe; + apy_gte?: InputMaybe; + apy_in?: InputMaybe>; + apy_isNull?: InputMaybe; + apy_lt?: InputMaybe; + apy_lte?: InputMaybe; + apy_not_eq?: InputMaybe; + apy_not_in?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -4878,6 +3747,81 @@ export type OethFraxStakingWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; + collateral_every?: InputMaybe; + collateral_none?: InputMaybe; + collateral_some?: InputMaybe; + dripperWETH_eq?: InputMaybe; + dripperWETH_gt?: InputMaybe; + dripperWETH_gte?: InputMaybe; + dripperWETH_in?: InputMaybe>; + dripperWETH_isNull?: InputMaybe; + dripperWETH_lt?: InputMaybe; + dripperWETH_lte?: InputMaybe; + dripperWETH_not_eq?: InputMaybe; + dripperWETH_not_in?: InputMaybe>; + feesETH7Day_eq?: InputMaybe; + feesETH7Day_gt?: InputMaybe; + feesETH7Day_gte?: InputMaybe; + feesETH7Day_in?: InputMaybe>; + feesETH7Day_isNull?: InputMaybe; + feesETH7Day_lt?: InputMaybe; + feesETH7Day_lte?: InputMaybe; + feesETH7Day_not_eq?: InputMaybe; + feesETH7Day_not_in?: InputMaybe>; + feesETHAllTime_eq?: InputMaybe; + feesETHAllTime_gt?: InputMaybe; + feesETHAllTime_gte?: InputMaybe; + feesETHAllTime_in?: InputMaybe>; + feesETHAllTime_isNull?: InputMaybe; + feesETHAllTime_lt?: InputMaybe; + feesETHAllTime_lte?: InputMaybe; + feesETHAllTime_not_eq?: InputMaybe; + feesETHAllTime_not_in?: InputMaybe>; + feesETH_eq?: InputMaybe; + feesETH_gt?: InputMaybe; + feesETH_gte?: InputMaybe; + feesETH_in?: InputMaybe>; + feesETH_isNull?: InputMaybe; + feesETH_lt?: InputMaybe; + feesETH_lte?: InputMaybe; + feesETH_not_eq?: InputMaybe; + feesETH_not_in?: InputMaybe>; + feesUSD7Day_eq?: InputMaybe; + feesUSD7Day_gt?: InputMaybe; + feesUSD7Day_gte?: InputMaybe; + feesUSD7Day_in?: InputMaybe>; + feesUSD7Day_isNull?: InputMaybe; + feesUSD7Day_lt?: InputMaybe; + feesUSD7Day_lte?: InputMaybe; + feesUSD7Day_not_eq?: InputMaybe; + feesUSD7Day_not_in?: InputMaybe>; + feesUSDAllTime_eq?: InputMaybe; + feesUSDAllTime_gt?: InputMaybe; + feesUSDAllTime_gte?: InputMaybe; + feesUSDAllTime_in?: InputMaybe>; + feesUSDAllTime_isNull?: InputMaybe; + feesUSDAllTime_lt?: InputMaybe; + feesUSDAllTime_lte?: InputMaybe; + feesUSDAllTime_not_eq?: InputMaybe; + feesUSDAllTime_not_in?: InputMaybe>; + feesUSD_eq?: InputMaybe; + feesUSD_gt?: InputMaybe; + feesUSD_gte?: InputMaybe; + feesUSD_in?: InputMaybe>; + feesUSD_isNull?: InputMaybe; + feesUSD_lt?: InputMaybe; + feesUSD_lte?: InputMaybe; + feesUSD_not_eq?: InputMaybe; + feesUSD_not_in?: InputMaybe>; + holdersOverThreshold_eq?: InputMaybe; + holdersOverThreshold_gt?: InputMaybe; + holdersOverThreshold_gte?: InputMaybe; + holdersOverThreshold_in?: InputMaybe>; + holdersOverThreshold_isNull?: InputMaybe; + holdersOverThreshold_lt?: InputMaybe; + holdersOverThreshold_lte?: InputMaybe; + holdersOverThreshold_not_eq?: InputMaybe; + holdersOverThreshold_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -4895,15 +3839,45 @@ export type OethFraxStakingWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - sfrxETH_eq?: InputMaybe; - sfrxETH_gt?: InputMaybe; - sfrxETH_gte?: InputMaybe; - sfrxETH_in?: InputMaybe>; - sfrxETH_isNull?: InputMaybe; - sfrxETH_lt?: InputMaybe; - sfrxETH_lte?: InputMaybe; - sfrxETH_not_eq?: InputMaybe; - sfrxETH_not_in?: InputMaybe>; + marketCapUSD_eq?: InputMaybe; + marketCapUSD_gt?: InputMaybe; + marketCapUSD_gte?: InputMaybe; + marketCapUSD_in?: InputMaybe>; + marketCapUSD_isNull?: InputMaybe; + marketCapUSD_lt?: InputMaybe; + marketCapUSD_lte?: InputMaybe; + marketCapUSD_not_eq?: InputMaybe; + marketCapUSD_not_in?: InputMaybe>; + nonRebasingSupply_eq?: InputMaybe; + nonRebasingSupply_gt?: InputMaybe; + nonRebasingSupply_gte?: InputMaybe; + nonRebasingSupply_in?: InputMaybe>; + nonRebasingSupply_isNull?: InputMaybe; + nonRebasingSupply_lt?: InputMaybe; + nonRebasingSupply_lte?: InputMaybe; + nonRebasingSupply_not_eq?: InputMaybe; + nonRebasingSupply_not_in?: InputMaybe>; + pegPrice_eq?: InputMaybe; + pegPrice_gt?: InputMaybe; + pegPrice_gte?: InputMaybe; + pegPrice_in?: InputMaybe>; + pegPrice_isNull?: InputMaybe; + pegPrice_lt?: InputMaybe; + pegPrice_lte?: InputMaybe; + pegPrice_not_eq?: InputMaybe; + pegPrice_not_in?: InputMaybe>; + rebasingSupply_eq?: InputMaybe; + rebasingSupply_gt?: InputMaybe; + rebasingSupply_gte?: InputMaybe; + rebasingSupply_in?: InputMaybe>; + rebasingSupply_isNull?: InputMaybe; + rebasingSupply_lt?: InputMaybe; + rebasingSupply_lte?: InputMaybe; + rebasingSupply_not_eq?: InputMaybe; + rebasingSupply_not_in?: InputMaybe>; + strategies_every?: InputMaybe; + strategies_none?: InputMaybe; + strategies_some?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -4913,205 +3887,143 @@ export type OethFraxStakingWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; -}; - -export type OethFraxStakingsConnection = { - __typename?: 'OETHFraxStakingsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OethHistoriesConnection = { - __typename?: 'OETHHistoriesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -/** The History entity tracks events that change the balance of OETH for an address. */ -export type OethHistory = { - __typename?: 'OETHHistory'; - address: OethAddress; - balance: Scalars['BigInt']['output']; - blockNumber: Scalars['Int']['output']; - id: Scalars['String']['output']; - timestamp: Scalars['DateTime']['output']; - txHash: Scalars['String']['output']; - type: HistoryType; - value: Scalars['BigInt']['output']; -}; - -export type OethHistoryEdge = { - __typename?: 'OETHHistoryEdge'; - cursor: Scalars['String']['output']; - node: OethHistory; -}; - -export enum OethHistoryOrderByInput { - AddressBalanceAsc = 'address_balance_ASC', - AddressBalanceAscNullsFirst = 'address_balance_ASC_NULLS_FIRST', - AddressBalanceDesc = 'address_balance_DESC', - AddressBalanceDescNullsLast = 'address_balance_DESC_NULLS_LAST', - AddressCreditsAsc = 'address_credits_ASC', - AddressCreditsAscNullsFirst = 'address_credits_ASC_NULLS_FIRST', - AddressCreditsDesc = 'address_credits_DESC', - AddressCreditsDescNullsLast = 'address_credits_DESC_NULLS_LAST', - AddressEarnedAsc = 'address_earned_ASC', - AddressEarnedAscNullsFirst = 'address_earned_ASC_NULLS_FIRST', - AddressEarnedDesc = 'address_earned_DESC', - AddressEarnedDescNullsLast = 'address_earned_DESC_NULLS_LAST', - AddressIdAsc = 'address_id_ASC', - AddressIdAscNullsFirst = 'address_id_ASC_NULLS_FIRST', - AddressIdDesc = 'address_id_DESC', - AddressIdDescNullsLast = 'address_id_DESC_NULLS_LAST', - AddressIsContractAsc = 'address_isContract_ASC', - AddressIsContractAscNullsFirst = 'address_isContract_ASC_NULLS_FIRST', - AddressIsContractDesc = 'address_isContract_DESC', - AddressIsContractDescNullsLast = 'address_isContract_DESC_NULLS_LAST', - AddressLastUpdatedAsc = 'address_lastUpdated_ASC', - AddressLastUpdatedAscNullsFirst = 'address_lastUpdated_ASC_NULLS_FIRST', - AddressLastUpdatedDesc = 'address_lastUpdated_DESC', - AddressLastUpdatedDescNullsLast = 'address_lastUpdated_DESC_NULLS_LAST', - AddressRebasingOptionAsc = 'address_rebasingOption_ASC', - AddressRebasingOptionAscNullsFirst = 'address_rebasingOption_ASC_NULLS_FIRST', - AddressRebasingOptionDesc = 'address_rebasingOption_DESC', - AddressRebasingOptionDescNullsLast = 'address_rebasingOption_DESC_NULLS_LAST', - BalanceAsc = 'balance_ASC', - BalanceAscNullsFirst = 'balance_ASC_NULLS_FIRST', - BalanceDesc = 'balance_DESC', - BalanceDescNullsLast = 'balance_DESC_NULLS_LAST', - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TxHashAsc = 'txHash_ASC', - TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', - TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST', - TypeAsc = 'type_ASC', - TypeAscNullsFirst = 'type_ASC_NULLS_FIRST', - TypeDesc = 'type_DESC', - TypeDescNullsLast = 'type_DESC_NULLS_LAST', - ValueAsc = 'value_ASC', - ValueAscNullsFirst = 'value_ASC_NULLS_FIRST', - ValueDesc = 'value_DESC', - ValueDescNullsLast = 'value_DESC_NULLS_LAST' -} + totalSupplyUSD_eq?: InputMaybe; + totalSupplyUSD_gt?: InputMaybe; + totalSupplyUSD_gte?: InputMaybe; + totalSupplyUSD_in?: InputMaybe>; + totalSupplyUSD_isNull?: InputMaybe; + totalSupplyUSD_lt?: InputMaybe; + totalSupplyUSD_lte?: InputMaybe; + totalSupplyUSD_not_eq?: InputMaybe; + totalSupplyUSD_not_in?: InputMaybe>; + totalSupply_eq?: InputMaybe; + totalSupply_gt?: InputMaybe; + totalSupply_gte?: InputMaybe; + totalSupply_in?: InputMaybe>; + totalSupply_isNull?: InputMaybe; + totalSupply_lt?: InputMaybe; + totalSupply_lte?: InputMaybe; + totalSupply_not_eq?: InputMaybe; + totalSupply_not_in?: InputMaybe>; + tradingVolumeUSD_eq?: InputMaybe; + tradingVolumeUSD_gt?: InputMaybe; + tradingVolumeUSD_gte?: InputMaybe; + tradingVolumeUSD_in?: InputMaybe>; + tradingVolumeUSD_isNull?: InputMaybe; + tradingVolumeUSD_lt?: InputMaybe; + tradingVolumeUSD_lte?: InputMaybe; + tradingVolumeUSD_not_eq?: InputMaybe; + tradingVolumeUSD_not_in?: InputMaybe>; + wrappedSupply_eq?: InputMaybe; + wrappedSupply_gt?: InputMaybe; + wrappedSupply_gte?: InputMaybe; + wrappedSupply_in?: InputMaybe>; + wrappedSupply_isNull?: InputMaybe; + wrappedSupply_lt?: InputMaybe; + wrappedSupply_lte?: InputMaybe; + wrappedSupply_not_eq?: InputMaybe; + wrappedSupply_not_in?: InputMaybe>; + yieldETH7Day_eq?: InputMaybe; + yieldETH7Day_gt?: InputMaybe; + yieldETH7Day_gte?: InputMaybe; + yieldETH7Day_in?: InputMaybe>; + yieldETH7Day_isNull?: InputMaybe; + yieldETH7Day_lt?: InputMaybe; + yieldETH7Day_lte?: InputMaybe; + yieldETH7Day_not_eq?: InputMaybe; + yieldETH7Day_not_in?: InputMaybe>; + yieldETHAllTime_eq?: InputMaybe; + yieldETHAllTime_gt?: InputMaybe; + yieldETHAllTime_gte?: InputMaybe; + yieldETHAllTime_in?: InputMaybe>; + yieldETHAllTime_isNull?: InputMaybe; + yieldETHAllTime_lt?: InputMaybe; + yieldETHAllTime_lte?: InputMaybe; + yieldETHAllTime_not_eq?: InputMaybe; + yieldETHAllTime_not_in?: InputMaybe>; + yieldETH_eq?: InputMaybe; + yieldETH_gt?: InputMaybe; + yieldETH_gte?: InputMaybe; + yieldETH_in?: InputMaybe>; + yieldETH_isNull?: InputMaybe; + yieldETH_lt?: InputMaybe; + yieldETH_lte?: InputMaybe; + yieldETH_not_eq?: InputMaybe; + yieldETH_not_in?: InputMaybe>; + yieldUSD7Day_eq?: InputMaybe; + yieldUSD7Day_gt?: InputMaybe; + yieldUSD7Day_gte?: InputMaybe; + yieldUSD7Day_in?: InputMaybe>; + yieldUSD7Day_isNull?: InputMaybe; + yieldUSD7Day_lt?: InputMaybe; + yieldUSD7Day_lte?: InputMaybe; + yieldUSD7Day_not_eq?: InputMaybe; + yieldUSD7Day_not_in?: InputMaybe>; + yieldUSDAllTime_eq?: InputMaybe; + yieldUSDAllTime_gt?: InputMaybe; + yieldUSDAllTime_gte?: InputMaybe; + yieldUSDAllTime_in?: InputMaybe>; + yieldUSDAllTime_isNull?: InputMaybe; + yieldUSDAllTime_lt?: InputMaybe; + yieldUSDAllTime_lte?: InputMaybe; + yieldUSDAllTime_not_eq?: InputMaybe; + yieldUSDAllTime_not_in?: InputMaybe>; + yieldUSD_eq?: InputMaybe; + yieldUSD_gt?: InputMaybe; + yieldUSD_gte?: InputMaybe; + yieldUSD_in?: InputMaybe>; + yieldUSD_isNull?: InputMaybe; + yieldUSD_lt?: InputMaybe; + yieldUSD_lte?: InputMaybe; + yieldUSD_not_eq?: InputMaybe; + yieldUSD_not_in?: InputMaybe>; +}; -export type OethHistoryWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - address?: InputMaybe; - address_isNull?: InputMaybe; - balance_eq?: InputMaybe; - balance_gt?: InputMaybe; - balance_gte?: InputMaybe; - balance_in?: InputMaybe>; - balance_isNull?: InputMaybe; - balance_lt?: InputMaybe; - balance_lte?: InputMaybe; - balance_not_eq?: InputMaybe; - balance_not_in?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - timestamp_eq?: InputMaybe; - timestamp_gt?: InputMaybe; - timestamp_gte?: InputMaybe; - timestamp_in?: InputMaybe>; - timestamp_isNull?: InputMaybe; - timestamp_lt?: InputMaybe; - timestamp_lte?: InputMaybe; - timestamp_not_eq?: InputMaybe; - timestamp_not_in?: InputMaybe>; - txHash_contains?: InputMaybe; - txHash_containsInsensitive?: InputMaybe; - txHash_endsWith?: InputMaybe; - txHash_eq?: InputMaybe; - txHash_gt?: InputMaybe; - txHash_gte?: InputMaybe; - txHash_in?: InputMaybe>; - txHash_isNull?: InputMaybe; - txHash_lt?: InputMaybe; - txHash_lte?: InputMaybe; - txHash_not_contains?: InputMaybe; - txHash_not_containsInsensitive?: InputMaybe; - txHash_not_endsWith?: InputMaybe; - txHash_not_eq?: InputMaybe; - txHash_not_in?: InputMaybe>; - txHash_not_startsWith?: InputMaybe; - txHash_startsWith?: InputMaybe; - type_eq?: InputMaybe; - type_in?: InputMaybe>; - type_isNull?: InputMaybe; - type_not_eq?: InputMaybe; - type_not_in?: InputMaybe>; - value_eq?: InputMaybe; - value_gt?: InputMaybe; - value_gte?: InputMaybe; - value_in?: InputMaybe>; - value_isNull?: InputMaybe; - value_lt?: InputMaybe; - value_lte?: InputMaybe; - value_not_eq?: InputMaybe; - value_not_in?: InputMaybe>; +export type OethDailyStatsConnection = { + __typename?: 'OETHDailyStatsConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; }; -export type OethMorphoAave = { - __typename?: 'OETHMorphoAave'; +export type OethDripper = { + __typename?: 'OETHDripper'; blockNumber: Scalars['Int']['output']; + dripDuration: Scalars['BigInt']['output']; + dripRatePerBlock: Scalars['BigInt']['output']; id: Scalars['String']['output']; + lastCollectTimestamp: Scalars['Int']['output']; timestamp: Scalars['DateTime']['output']; weth: Scalars['BigInt']['output']; }; -export type OethMorphoAaveEdge = { - __typename?: 'OETHMorphoAaveEdge'; +export type OethDripperEdge = { + __typename?: 'OETHDripperEdge'; cursor: Scalars['String']['output']; - node: OethMorphoAave; + node: OethDripper; }; -export enum OethMorphoAaveOrderByInput { +export enum OethDripperOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + DripDurationAsc = 'dripDuration_ASC', + DripDurationAscNullsFirst = 'dripDuration_ASC_NULLS_FIRST', + DripDurationDesc = 'dripDuration_DESC', + DripDurationDescNullsLast = 'dripDuration_DESC_NULLS_LAST', + DripRatePerBlockAsc = 'dripRatePerBlock_ASC', + DripRatePerBlockAscNullsFirst = 'dripRatePerBlock_ASC_NULLS_FIRST', + DripRatePerBlockDesc = 'dripRatePerBlock_DESC', + DripRatePerBlockDescNullsLast = 'dripRatePerBlock_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', + LastCollectTimestampAsc = 'lastCollectTimestamp_ASC', + LastCollectTimestampAscNullsFirst = 'lastCollectTimestamp_ASC_NULLS_FIRST', + LastCollectTimestampDesc = 'lastCollectTimestamp_DESC', + LastCollectTimestampDescNullsLast = 'lastCollectTimestamp_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', @@ -5122,9 +4034,9 @@ export enum OethMorphoAaveOrderByInput { WethDescNullsLast = 'weth_DESC_NULLS_LAST' } -export type OethMorphoAaveWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OethDripperWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -5134,6 +4046,24 @@ export type OethMorphoAaveWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; + dripDuration_eq?: InputMaybe; + dripDuration_gt?: InputMaybe; + dripDuration_gte?: InputMaybe; + dripDuration_in?: InputMaybe>; + dripDuration_isNull?: InputMaybe; + dripDuration_lt?: InputMaybe; + dripDuration_lte?: InputMaybe; + dripDuration_not_eq?: InputMaybe; + dripDuration_not_in?: InputMaybe>; + dripRatePerBlock_eq?: InputMaybe; + dripRatePerBlock_gt?: InputMaybe; + dripRatePerBlock_gte?: InputMaybe; + dripRatePerBlock_in?: InputMaybe>; + dripRatePerBlock_isNull?: InputMaybe; + dripRatePerBlock_lt?: InputMaybe; + dripRatePerBlock_lte?: InputMaybe; + dripRatePerBlock_not_eq?: InputMaybe; + dripRatePerBlock_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -5151,6 +4081,15 @@ export type OethMorphoAaveWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; + lastCollectTimestamp_eq?: InputMaybe; + lastCollectTimestamp_gt?: InputMaybe; + lastCollectTimestamp_gte?: InputMaybe; + lastCollectTimestamp_in?: InputMaybe>; + lastCollectTimestamp_isNull?: InputMaybe; + lastCollectTimestamp_lt?: InputMaybe; + lastCollectTimestamp_lte?: InputMaybe; + lastCollectTimestamp_not_eq?: InputMaybe; + lastCollectTimestamp_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -5171,109 +4110,32 @@ export type OethMorphoAaveWhereInput = { weth_not_in?: InputMaybe>; }; -export type OethMorphoAavesConnection = { - __typename?: 'OETHMorphoAavesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export enum OethOrderByInput { - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - NonRebasingSupplyAsc = 'nonRebasingSupply_ASC', - NonRebasingSupplyAscNullsFirst = 'nonRebasingSupply_ASC_NULLS_FIRST', - NonRebasingSupplyDesc = 'nonRebasingSupply_DESC', - NonRebasingSupplyDescNullsLast = 'nonRebasingSupply_DESC_NULLS_LAST', - RebasingSupplyAsc = 'rebasingSupply_ASC', - RebasingSupplyAscNullsFirst = 'rebasingSupply_ASC_NULLS_FIRST', - RebasingSupplyDesc = 'rebasingSupply_DESC', - RebasingSupplyDescNullsLast = 'rebasingSupply_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TotalSupplyAsc = 'totalSupply_ASC', - TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', - TotalSupplyDesc = 'totalSupply_DESC', - TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST' -} - -/** The Rebase entity tracks historical rebase events on the OETH contract. */ -export type OethRebase = { - __typename?: 'OETHRebase'; - apy: Oethapy; - blockNumber: Scalars['Int']['output']; - feeETH: Scalars['BigInt']['output']; - feeUSD: Scalars['BigInt']['output']; - id: Scalars['String']['output']; - rebasingCredits: Scalars['BigInt']['output']; - rebasingCreditsPerToken: Scalars['BigInt']['output']; - timestamp: Scalars['DateTime']['output']; - totalSupply: Scalars['BigInt']['output']; - txHash: Scalars['String']['output']; - yieldETH: Scalars['BigInt']['output']; - yieldUSD: Scalars['BigInt']['output']; -}; - -export type OethRebaseEdge = { - __typename?: 'OETHRebaseEdge'; - cursor: Scalars['String']['output']; - node: OethRebase; -}; - -/** The RebaseOption entity tracks historical rebase option changes by address. */ -export type OethRebaseOption = { - __typename?: 'OETHRebaseOption'; - address: OethAddress; - blockNumber: Scalars['Int']['output']; - id: Scalars['String']['output']; - status: RebasingOption; - timestamp: Scalars['DateTime']['output']; - txHash: Scalars['String']['output']; -}; - -export type OethRebaseOptionEdge = { - __typename?: 'OETHRebaseOptionEdge'; - cursor: Scalars['String']['output']; - node: OethRebaseOption; -}; - -export enum OethRebaseOptionOrderByInput { - AddressBalanceAsc = 'address_balance_ASC', - AddressBalanceAscNullsFirst = 'address_balance_ASC_NULLS_FIRST', - AddressBalanceDesc = 'address_balance_DESC', - AddressBalanceDescNullsLast = 'address_balance_DESC_NULLS_LAST', - AddressCreditsAsc = 'address_credits_ASC', - AddressCreditsAscNullsFirst = 'address_credits_ASC_NULLS_FIRST', - AddressCreditsDesc = 'address_credits_DESC', - AddressCreditsDescNullsLast = 'address_credits_DESC_NULLS_LAST', - AddressEarnedAsc = 'address_earned_ASC', - AddressEarnedAscNullsFirst = 'address_earned_ASC_NULLS_FIRST', - AddressEarnedDesc = 'address_earned_DESC', - AddressEarnedDescNullsLast = 'address_earned_DESC_NULLS_LAST', - AddressIdAsc = 'address_id_ASC', - AddressIdAscNullsFirst = 'address_id_ASC_NULLS_FIRST', - AddressIdDesc = 'address_id_DESC', - AddressIdDescNullsLast = 'address_id_DESC_NULLS_LAST', - AddressIsContractAsc = 'address_isContract_ASC', - AddressIsContractAscNullsFirst = 'address_isContract_ASC_NULLS_FIRST', - AddressIsContractDesc = 'address_isContract_DESC', - AddressIsContractDescNullsLast = 'address_isContract_DESC_NULLS_LAST', - AddressLastUpdatedAsc = 'address_lastUpdated_ASC', - AddressLastUpdatedAscNullsFirst = 'address_lastUpdated_ASC_NULLS_FIRST', - AddressLastUpdatedDesc = 'address_lastUpdated_DESC', - AddressLastUpdatedDescNullsLast = 'address_lastUpdated_DESC_NULLS_LAST', - AddressRebasingOptionAsc = 'address_rebasingOption_ASC', - AddressRebasingOptionAscNullsFirst = 'address_rebasingOption_ASC_NULLS_FIRST', - AddressRebasingOptionDesc = 'address_rebasingOption_DESC', - AddressRebasingOptionDescNullsLast = 'address_rebasingOption_DESC_NULLS_LAST', +export type OethDrippersConnection = { + __typename?: 'OETHDrippersConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; +}; + +export type OethFraxStaking = { + __typename?: 'OETHFraxStaking'; + blockNumber: Scalars['Int']['output']; + id: Scalars['String']['output']; + /** + * - sfrxETH is what's actually stored here, slightly confusing and may want to change. + * - used by balance sheet + */ + sfrxETH: Scalars['BigInt']['output']; + timestamp: Scalars['DateTime']['output']; +}; + +export type OethFraxStakingEdge = { + __typename?: 'OETHFraxStakingEdge'; + cursor: Scalars['String']['output']; + node: OethFraxStaking; +}; + +export enum OethFraxStakingOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', @@ -5282,25 +4144,19 @@ export enum OethRebaseOptionOrderByInput { IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - StatusAsc = 'status_ASC', - StatusAscNullsFirst = 'status_ASC_NULLS_FIRST', - StatusDesc = 'status_DESC', - StatusDescNullsLast = 'status_DESC_NULLS_LAST', + SfrxEthAsc = 'sfrxETH_ASC', + SfrxEthAscNullsFirst = 'sfrxETH_ASC_NULLS_FIRST', + SfrxEthDesc = 'sfrxETH_DESC', + SfrxEthDescNullsLast = 'sfrxETH_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TxHashAsc = 'txHash_ASC', - TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', - TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST' + TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST' } -export type OethRebaseOptionWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - address?: InputMaybe; - address_isNull?: InputMaybe; +export type OethFraxStakingWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -5327,11 +4183,15 @@ export type OethRebaseOptionWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - status_eq?: InputMaybe; - status_in?: InputMaybe>; - status_isNull?: InputMaybe; - status_not_eq?: InputMaybe; - status_not_in?: InputMaybe>; + sfrxETH_eq?: InputMaybe; + sfrxETH_gt?: InputMaybe; + sfrxETH_gte?: InputMaybe; + sfrxETH_in?: InputMaybe>; + sfrxETH_isNull?: InputMaybe; + sfrxETH_lt?: InputMaybe; + sfrxETH_lte?: InputMaybe; + sfrxETH_not_eq?: InputMaybe; + sfrxETH_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -5341,124 +4201,51 @@ export type OethRebaseOptionWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - txHash_contains?: InputMaybe; - txHash_containsInsensitive?: InputMaybe; - txHash_endsWith?: InputMaybe; - txHash_eq?: InputMaybe; - txHash_gt?: InputMaybe; - txHash_gte?: InputMaybe; - txHash_in?: InputMaybe>; - txHash_isNull?: InputMaybe; - txHash_lt?: InputMaybe; - txHash_lte?: InputMaybe; - txHash_not_contains?: InputMaybe; - txHash_not_containsInsensitive?: InputMaybe; - txHash_not_endsWith?: InputMaybe; - txHash_not_eq?: InputMaybe; - txHash_not_in?: InputMaybe>; - txHash_not_startsWith?: InputMaybe; - txHash_startsWith?: InputMaybe; }; -export type OethRebaseOptionsConnection = { - __typename?: 'OETHRebaseOptionsConnection'; - edges: Array; +export type OethFraxStakingsConnection = { + __typename?: 'OETHFraxStakingsConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export enum OethRebaseOrderByInput { - ApyAprAsc = 'apy_apr_ASC', - ApyAprAscNullsFirst = 'apy_apr_ASC_NULLS_FIRST', - ApyAprDesc = 'apy_apr_DESC', - ApyAprDescNullsLast = 'apy_apr_DESC_NULLS_LAST', - ApyApy7DayAvgAsc = 'apy_apy7DayAvg_ASC', - ApyApy7DayAvgAscNullsFirst = 'apy_apy7DayAvg_ASC_NULLS_FIRST', - ApyApy7DayAvgDesc = 'apy_apy7DayAvg_DESC', - ApyApy7DayAvgDescNullsLast = 'apy_apy7DayAvg_DESC_NULLS_LAST', - ApyApy14DayAvgAsc = 'apy_apy14DayAvg_ASC', - ApyApy14DayAvgAscNullsFirst = 'apy_apy14DayAvg_ASC_NULLS_FIRST', - ApyApy14DayAvgDesc = 'apy_apy14DayAvg_DESC', - ApyApy14DayAvgDescNullsLast = 'apy_apy14DayAvg_DESC_NULLS_LAST', - ApyApy30DayAvgAsc = 'apy_apy30DayAvg_ASC', - ApyApy30DayAvgAscNullsFirst = 'apy_apy30DayAvg_ASC_NULLS_FIRST', - ApyApy30DayAvgDesc = 'apy_apy30DayAvg_DESC', - ApyApy30DayAvgDescNullsLast = 'apy_apy30DayAvg_DESC_NULLS_LAST', - ApyApyAsc = 'apy_apy_ASC', - ApyApyAscNullsFirst = 'apy_apy_ASC_NULLS_FIRST', - ApyApyDesc = 'apy_apy_DESC', - ApyApyDescNullsLast = 'apy_apy_DESC_NULLS_LAST', - ApyBlockNumberAsc = 'apy_blockNumber_ASC', - ApyBlockNumberAscNullsFirst = 'apy_blockNumber_ASC_NULLS_FIRST', - ApyBlockNumberDesc = 'apy_blockNumber_DESC', - ApyBlockNumberDescNullsLast = 'apy_blockNumber_DESC_NULLS_LAST', - ApyIdAsc = 'apy_id_ASC', - ApyIdAscNullsFirst = 'apy_id_ASC_NULLS_FIRST', - ApyIdDesc = 'apy_id_DESC', - ApyIdDescNullsLast = 'apy_id_DESC_NULLS_LAST', - ApyRebasingCreditsPerTokenAsc = 'apy_rebasingCreditsPerToken_ASC', - ApyRebasingCreditsPerTokenAscNullsFirst = 'apy_rebasingCreditsPerToken_ASC_NULLS_FIRST', - ApyRebasingCreditsPerTokenDesc = 'apy_rebasingCreditsPerToken_DESC', - ApyRebasingCreditsPerTokenDescNullsLast = 'apy_rebasingCreditsPerToken_DESC_NULLS_LAST', - ApyTimestampAsc = 'apy_timestamp_ASC', - ApyTimestampAscNullsFirst = 'apy_timestamp_ASC_NULLS_FIRST', - ApyTimestampDesc = 'apy_timestamp_DESC', - ApyTimestampDescNullsLast = 'apy_timestamp_DESC_NULLS_LAST', - ApyTxHashAsc = 'apy_txHash_ASC', - ApyTxHashAscNullsFirst = 'apy_txHash_ASC_NULLS_FIRST', - ApyTxHashDesc = 'apy_txHash_DESC', - ApyTxHashDescNullsLast = 'apy_txHash_DESC_NULLS_LAST', +export type OethMorphoAave = { + __typename?: 'OETHMorphoAave'; + blockNumber: Scalars['Int']['output']; + id: Scalars['String']['output']; + timestamp: Scalars['DateTime']['output']; + weth: Scalars['BigInt']['output']; +}; + +export type OethMorphoAaveEdge = { + __typename?: 'OETHMorphoAaveEdge'; + cursor: Scalars['String']['output']; + node: OethMorphoAave; +}; + +export enum OethMorphoAaveOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - FeeEthAsc = 'feeETH_ASC', - FeeEthAscNullsFirst = 'feeETH_ASC_NULLS_FIRST', - FeeEthDesc = 'feeETH_DESC', - FeeEthDescNullsLast = 'feeETH_DESC_NULLS_LAST', - FeeUsdAsc = 'feeUSD_ASC', - FeeUsdAscNullsFirst = 'feeUSD_ASC_NULLS_FIRST', - FeeUsdDesc = 'feeUSD_DESC', - FeeUsdDescNullsLast = 'feeUSD_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - RebasingCreditsPerTokenAsc = 'rebasingCreditsPerToken_ASC', - RebasingCreditsPerTokenAscNullsFirst = 'rebasingCreditsPerToken_ASC_NULLS_FIRST', - RebasingCreditsPerTokenDesc = 'rebasingCreditsPerToken_DESC', - RebasingCreditsPerTokenDescNullsLast = 'rebasingCreditsPerToken_DESC_NULLS_LAST', - RebasingCreditsAsc = 'rebasingCredits_ASC', - RebasingCreditsAscNullsFirst = 'rebasingCredits_ASC_NULLS_FIRST', - RebasingCreditsDesc = 'rebasingCredits_DESC', - RebasingCreditsDescNullsLast = 'rebasingCredits_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TotalSupplyAsc = 'totalSupply_ASC', - TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', - TotalSupplyDesc = 'totalSupply_DESC', - TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST', - TxHashAsc = 'txHash_ASC', - TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', - TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST', - YieldEthAsc = 'yieldETH_ASC', - YieldEthAscNullsFirst = 'yieldETH_ASC_NULLS_FIRST', - YieldEthDesc = 'yieldETH_DESC', - YieldEthDescNullsLast = 'yieldETH_DESC_NULLS_LAST', - YieldUsdAsc = 'yieldUSD_ASC', - YieldUsdAscNullsFirst = 'yieldUSD_ASC_NULLS_FIRST', - YieldUsdDesc = 'yieldUSD_DESC', - YieldUsdDescNullsLast = 'yieldUSD_DESC_NULLS_LAST' + WethAsc = 'weth_ASC', + WethAscNullsFirst = 'weth_ASC_NULLS_FIRST', + WethDesc = 'weth_DESC', + WethDescNullsLast = 'weth_DESC_NULLS_LAST' } -export type OethRebaseWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - apy?: InputMaybe; - apy_isNull?: InputMaybe; +export type OethMorphoAaveWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -5468,24 +4255,6 @@ export type OethRebaseWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; - feeETH_eq?: InputMaybe; - feeETH_gt?: InputMaybe; - feeETH_gte?: InputMaybe; - feeETH_in?: InputMaybe>; - feeETH_isNull?: InputMaybe; - feeETH_lt?: InputMaybe; - feeETH_lte?: InputMaybe; - feeETH_not_eq?: InputMaybe; - feeETH_not_in?: InputMaybe>; - feeUSD_eq?: InputMaybe; - feeUSD_gt?: InputMaybe; - feeUSD_gte?: InputMaybe; - feeUSD_in?: InputMaybe>; - feeUSD_isNull?: InputMaybe; - feeUSD_lt?: InputMaybe; - feeUSD_lte?: InputMaybe; - feeUSD_not_eq?: InputMaybe; - feeUSD_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -5503,24 +4272,6 @@ export type OethRebaseWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - rebasingCreditsPerToken_eq?: InputMaybe; - rebasingCreditsPerToken_gt?: InputMaybe; - rebasingCreditsPerToken_gte?: InputMaybe; - rebasingCreditsPerToken_in?: InputMaybe>; - rebasingCreditsPerToken_isNull?: InputMaybe; - rebasingCreditsPerToken_lt?: InputMaybe; - rebasingCreditsPerToken_lte?: InputMaybe; - rebasingCreditsPerToken_not_eq?: InputMaybe; - rebasingCreditsPerToken_not_in?: InputMaybe>; - rebasingCredits_eq?: InputMaybe; - rebasingCredits_gt?: InputMaybe; - rebasingCredits_gte?: InputMaybe; - rebasingCredits_in?: InputMaybe>; - rebasingCredits_isNull?: InputMaybe; - rebasingCredits_lt?: InputMaybe; - rebasingCredits_lte?: InputMaybe; - rebasingCredits_not_eq?: InputMaybe; - rebasingCredits_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -5530,55 +4281,20 @@ export type OethRebaseWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - totalSupply_eq?: InputMaybe; - totalSupply_gt?: InputMaybe; - totalSupply_gte?: InputMaybe; - totalSupply_in?: InputMaybe>; - totalSupply_isNull?: InputMaybe; - totalSupply_lt?: InputMaybe; - totalSupply_lte?: InputMaybe; - totalSupply_not_eq?: InputMaybe; - totalSupply_not_in?: InputMaybe>; - txHash_contains?: InputMaybe; - txHash_containsInsensitive?: InputMaybe; - txHash_endsWith?: InputMaybe; - txHash_eq?: InputMaybe; - txHash_gt?: InputMaybe; - txHash_gte?: InputMaybe; - txHash_in?: InputMaybe>; - txHash_isNull?: InputMaybe; - txHash_lt?: InputMaybe; - txHash_lte?: InputMaybe; - txHash_not_contains?: InputMaybe; - txHash_not_containsInsensitive?: InputMaybe; - txHash_not_endsWith?: InputMaybe; - txHash_not_eq?: InputMaybe; - txHash_not_in?: InputMaybe>; - txHash_not_startsWith?: InputMaybe; - txHash_startsWith?: InputMaybe; - yieldETH_eq?: InputMaybe; - yieldETH_gt?: InputMaybe; - yieldETH_gte?: InputMaybe; - yieldETH_in?: InputMaybe>; - yieldETH_isNull?: InputMaybe; - yieldETH_lt?: InputMaybe; - yieldETH_lte?: InputMaybe; - yieldETH_not_eq?: InputMaybe; - yieldETH_not_in?: InputMaybe>; - yieldUSD_eq?: InputMaybe; - yieldUSD_gt?: InputMaybe; - yieldUSD_gte?: InputMaybe; - yieldUSD_in?: InputMaybe>; - yieldUSD_isNull?: InputMaybe; - yieldUSD_lt?: InputMaybe; - yieldUSD_lte?: InputMaybe; - yieldUSD_not_eq?: InputMaybe; - yieldUSD_not_in?: InputMaybe>; + weth_eq?: InputMaybe; + weth_gt?: InputMaybe; + weth_gte?: InputMaybe; + weth_in?: InputMaybe>; + weth_isNull?: InputMaybe; + weth_lt?: InputMaybe; + weth_lte?: InputMaybe; + weth_not_eq?: InputMaybe; + weth_not_in?: InputMaybe>; }; -export type OethRebasesConnection = { - __typename?: 'OETHRebasesConnection'; - edges: Array; +export type OethMorphoAavesConnection = { + __typename?: 'OETHMorphoAavesConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; @@ -6227,80 +4943,6 @@ export type OethVaultsConnection = { totalCount: Scalars['Int']['output']; }; -export type OethWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - nonRebasingSupply_eq?: InputMaybe; - nonRebasingSupply_gt?: InputMaybe; - nonRebasingSupply_gte?: InputMaybe; - nonRebasingSupply_in?: InputMaybe>; - nonRebasingSupply_isNull?: InputMaybe; - nonRebasingSupply_lt?: InputMaybe; - nonRebasingSupply_lte?: InputMaybe; - nonRebasingSupply_not_eq?: InputMaybe; - nonRebasingSupply_not_in?: InputMaybe>; - rebasingSupply_eq?: InputMaybe; - rebasingSupply_gt?: InputMaybe; - rebasingSupply_gte?: InputMaybe; - rebasingSupply_in?: InputMaybe>; - rebasingSupply_isNull?: InputMaybe; - rebasingSupply_lt?: InputMaybe; - rebasingSupply_lte?: InputMaybe; - rebasingSupply_not_eq?: InputMaybe; - rebasingSupply_not_in?: InputMaybe>; - timestamp_eq?: InputMaybe; - timestamp_gt?: InputMaybe; - timestamp_gte?: InputMaybe; - timestamp_in?: InputMaybe>; - timestamp_isNull?: InputMaybe; - timestamp_lt?: InputMaybe; - timestamp_lte?: InputMaybe; - timestamp_not_eq?: InputMaybe; - timestamp_not_in?: InputMaybe>; - totalSupply_eq?: InputMaybe; - totalSupply_gt?: InputMaybe; - totalSupply_gte?: InputMaybe; - totalSupply_in?: InputMaybe>; - totalSupply_isNull?: InputMaybe; - totalSupply_lt?: InputMaybe; - totalSupply_lte?: InputMaybe; - totalSupply_not_eq?: InputMaybe; - totalSupply_not_in?: InputMaybe>; -}; - -export type OetHsConnection = { - __typename?: 'OETHsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - export type OgnStatsResult = { __typename?: 'OGNStatsResult'; circulatingSupply: Scalars['Float']['output']; @@ -7579,27 +6221,62 @@ export type OgVsConnection = { totalCount: Scalars['Int']['output']; }; -export type OTokenVault = { - __typename?: 'OTokenVault'; - address: Scalars['String']['output']; +export type OToken = { + __typename?: 'OToken'; blockNumber: Scalars['Int']['output']; chainId: Scalars['Int']['output']; id: Scalars['String']['output']; + nonRebasingSupply: Scalars['BigInt']['output']; + otoken: Scalars['String']['output']; + rebasingSupply: Scalars['BigInt']['output']; timestamp: Scalars['DateTime']['output']; - totalValue: Scalars['BigInt']['output']; + totalSupply: Scalars['BigInt']['output']; }; -export type OTokenVaultEdge = { - __typename?: 'OTokenVaultEdge'; +export type OTokenApy = { + __typename?: 'OTokenAPY'; + apr: Scalars['Float']['output']; + apy: Scalars['Float']['output']; + apy7DayAvg: Scalars['Float']['output']; + apy14DayAvg: Scalars['Float']['output']; + apy30DayAvg: Scalars['Float']['output']; + blockNumber: Scalars['Int']['output']; + chainId: Scalars['Int']['output']; + date: Scalars['String']['output']; + id: Scalars['String']['output']; + otoken: Scalars['String']['output']; + rebasingCreditsPerToken: Scalars['BigInt']['output']; + timestamp: Scalars['DateTime']['output']; + txHash: Scalars['String']['output']; +}; + +export type OTokenApyEdge = { + __typename?: 'OTokenAPYEdge'; cursor: Scalars['String']['output']; - node: OTokenVault; + node: OTokenApy; }; -export enum OTokenVaultOrderByInput { - AddressAsc = 'address_ASC', - AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', - AddressDesc = 'address_DESC', - AddressDescNullsLast = 'address_DESC_NULLS_LAST', +export enum OTokenApyOrderByInput { + AprAsc = 'apr_ASC', + AprAscNullsFirst = 'apr_ASC_NULLS_FIRST', + AprDesc = 'apr_DESC', + AprDescNullsLast = 'apr_DESC_NULLS_LAST', + Apy7DayAvgAsc = 'apy7DayAvg_ASC', + Apy7DayAvgAscNullsFirst = 'apy7DayAvg_ASC_NULLS_FIRST', + Apy7DayAvgDesc = 'apy7DayAvg_DESC', + Apy7DayAvgDescNullsLast = 'apy7DayAvg_DESC_NULLS_LAST', + Apy14DayAvgAsc = 'apy14DayAvg_ASC', + Apy14DayAvgAscNullsFirst = 'apy14DayAvg_ASC_NULLS_FIRST', + Apy14DayAvgDesc = 'apy14DayAvg_DESC', + Apy14DayAvgDescNullsLast = 'apy14DayAvg_DESC_NULLS_LAST', + Apy30DayAvgAsc = 'apy30DayAvg_ASC', + Apy30DayAvgAscNullsFirst = 'apy30DayAvg_ASC_NULLS_FIRST', + Apy30DayAvgDesc = 'apy30DayAvg_DESC', + Apy30DayAvgDescNullsLast = 'apy30DayAvg_DESC_NULLS_LAST', + ApyAsc = 'apy_ASC', + ApyAscNullsFirst = 'apy_ASC_NULLS_FIRST', + ApyDesc = 'apy_DESC', + ApyDescNullsLast = 'apy_DESC_NULLS_LAST', BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', @@ -7608,40 +6285,80 @@ export enum OTokenVaultOrderByInput { ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', ChainIdDesc = 'chainId_DESC', ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', + DateAsc = 'date_ASC', + DateAscNullsFirst = 'date_ASC_NULLS_FIRST', + DateDesc = 'date_DESC', + DateDescNullsLast = 'date_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', + RebasingCreditsPerTokenAsc = 'rebasingCreditsPerToken_ASC', + RebasingCreditsPerTokenAscNullsFirst = 'rebasingCreditsPerToken_ASC_NULLS_FIRST', + RebasingCreditsPerTokenDesc = 'rebasingCreditsPerToken_DESC', + RebasingCreditsPerTokenDescNullsLast = 'rebasingCreditsPerToken_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TotalValueAsc = 'totalValue_ASC', - TotalValueAscNullsFirst = 'totalValue_ASC_NULLS_FIRST', - TotalValueDesc = 'totalValue_DESC', - TotalValueDescNullsLast = 'totalValue_DESC_NULLS_LAST' + TxHashAsc = 'txHash_ASC', + TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', + TxHashDesc = 'txHash_DESC', + TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST' } -export type OTokenVaultWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - address_contains?: InputMaybe; - address_containsInsensitive?: InputMaybe; - address_endsWith?: InputMaybe; - address_eq?: InputMaybe; - address_gt?: InputMaybe; - address_gte?: InputMaybe; - address_in?: InputMaybe>; - address_isNull?: InputMaybe; - address_lt?: InputMaybe; - address_lte?: InputMaybe; - address_not_contains?: InputMaybe; - address_not_containsInsensitive?: InputMaybe; - address_not_endsWith?: InputMaybe; - address_not_eq?: InputMaybe; - address_not_in?: InputMaybe>; - address_not_startsWith?: InputMaybe; - address_startsWith?: InputMaybe; +export type OTokenApyWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + apr_eq?: InputMaybe; + apr_gt?: InputMaybe; + apr_gte?: InputMaybe; + apr_in?: InputMaybe>; + apr_isNull?: InputMaybe; + apr_lt?: InputMaybe; + apr_lte?: InputMaybe; + apr_not_eq?: InputMaybe; + apr_not_in?: InputMaybe>; + apy7DayAvg_eq?: InputMaybe; + apy7DayAvg_gt?: InputMaybe; + apy7DayAvg_gte?: InputMaybe; + apy7DayAvg_in?: InputMaybe>; + apy7DayAvg_isNull?: InputMaybe; + apy7DayAvg_lt?: InputMaybe; + apy7DayAvg_lte?: InputMaybe; + apy7DayAvg_not_eq?: InputMaybe; + apy7DayAvg_not_in?: InputMaybe>; + apy14DayAvg_eq?: InputMaybe; + apy14DayAvg_gt?: InputMaybe; + apy14DayAvg_gte?: InputMaybe; + apy14DayAvg_in?: InputMaybe>; + apy14DayAvg_isNull?: InputMaybe; + apy14DayAvg_lt?: InputMaybe; + apy14DayAvg_lte?: InputMaybe; + apy14DayAvg_not_eq?: InputMaybe; + apy14DayAvg_not_in?: InputMaybe>; + apy30DayAvg_eq?: InputMaybe; + apy30DayAvg_gt?: InputMaybe; + apy30DayAvg_gte?: InputMaybe; + apy30DayAvg_in?: InputMaybe>; + apy30DayAvg_isNull?: InputMaybe; + apy30DayAvg_lt?: InputMaybe; + apy30DayAvg_lte?: InputMaybe; + apy30DayAvg_not_eq?: InputMaybe; + apy30DayAvg_not_in?: InputMaybe>; + apy_eq?: InputMaybe; + apy_gt?: InputMaybe; + apy_gte?: InputMaybe; + apy_in?: InputMaybe>; + apy_isNull?: InputMaybe; + apy_lt?: InputMaybe; + apy_lte?: InputMaybe; + apy_not_eq?: InputMaybe; + apy_not_in?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -7660,6 +6377,23 @@ export type OTokenVaultWhereInput = { chainId_lte?: InputMaybe; chainId_not_eq?: InputMaybe; chainId_not_in?: InputMaybe>; + date_contains?: InputMaybe; + date_containsInsensitive?: InputMaybe; + date_endsWith?: InputMaybe; + date_eq?: InputMaybe; + date_gt?: InputMaybe; + date_gte?: InputMaybe; + date_in?: InputMaybe>; + date_isNull?: InputMaybe; + date_lt?: InputMaybe; + date_lte?: InputMaybe; + date_not_contains?: InputMaybe; + date_not_containsInsensitive?: InputMaybe; + date_not_endsWith?: InputMaybe; + date_not_eq?: InputMaybe; + date_not_in?: InputMaybe>; + date_not_startsWith?: InputMaybe; + date_startsWith?: InputMaybe; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -7677,6 +6411,32 @@ export type OTokenVaultWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; + rebasingCreditsPerToken_eq?: InputMaybe; + rebasingCreditsPerToken_gt?: InputMaybe; + rebasingCreditsPerToken_gte?: InputMaybe; + rebasingCreditsPerToken_in?: InputMaybe>; + rebasingCreditsPerToken_isNull?: InputMaybe; + rebasingCreditsPerToken_lt?: InputMaybe; + rebasingCreditsPerToken_lte?: InputMaybe; + rebasingCreditsPerToken_not_eq?: InputMaybe; + rebasingCreditsPerToken_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -7686,147 +6446,173 @@ export type OTokenVaultWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - totalValue_eq?: InputMaybe; - totalValue_gt?: InputMaybe; - totalValue_gte?: InputMaybe; - totalValue_in?: InputMaybe>; - totalValue_isNull?: InputMaybe; - totalValue_lt?: InputMaybe; - totalValue_lte?: InputMaybe; - totalValue_not_eq?: InputMaybe; - totalValue_not_in?: InputMaybe>; + txHash_contains?: InputMaybe; + txHash_containsInsensitive?: InputMaybe; + txHash_endsWith?: InputMaybe; + txHash_eq?: InputMaybe; + txHash_gt?: InputMaybe; + txHash_gte?: InputMaybe; + txHash_in?: InputMaybe>; + txHash_isNull?: InputMaybe; + txHash_lt?: InputMaybe; + txHash_lte?: InputMaybe; + txHash_not_contains?: InputMaybe; + txHash_not_containsInsensitive?: InputMaybe; + txHash_not_endsWith?: InputMaybe; + txHash_not_eq?: InputMaybe; + txHash_not_in?: InputMaybe>; + txHash_not_startsWith?: InputMaybe; + txHash_startsWith?: InputMaybe; }; -export type OTokenVaultsConnection = { - __typename?: 'OTokenVaultsConnection'; - edges: Array; +export type OTokenAPiesConnection = { + __typename?: 'OTokenAPiesConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -/** The OUSD entity tracks the change in total supply of OUSD over time. */ -export type Ousd = { - __typename?: 'OUSD'; - blockNumber: Scalars['Int']['output']; - id: Scalars['String']['output']; - nonRebasingSupply: Scalars['BigInt']['output']; - rebasingSupply: Scalars['BigInt']['output']; - timestamp: Scalars['DateTime']['output']; - totalSupply: Scalars['BigInt']['output']; +export type OTokenActivitiesConnection = { + __typename?: 'OTokenActivitiesConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; }; -/** The APY entity tracks historical APY values by day. */ -export type Ousdapy = { - __typename?: 'OUSDAPY'; - apr: Scalars['Float']['output']; - apy: Scalars['Float']['output']; - apy7DayAvg: Scalars['Float']['output']; - apy14DayAvg: Scalars['Float']['output']; - apy30DayAvg: Scalars['Float']['output']; +export type OTokenActivity = { + __typename?: 'OTokenActivity'; + action?: Maybe; + address?: Maybe; + amount?: Maybe; blockNumber: Scalars['Int']['output']; + callDataLast4Bytes: Scalars['String']['output']; + chainId: Scalars['Int']['output']; + exchange?: Maybe; + fromSymbol?: Maybe; id: Scalars['String']['output']; - rebasingCreditsPerToken: Scalars['BigInt']['output']; + interface?: Maybe; + otoken: Scalars['String']['output']; + sighash?: Maybe; timestamp: Scalars['DateTime']['output']; + toSymbol?: Maybe; txHash: Scalars['String']['output']; }; -export type OusdapyEdge = { - __typename?: 'OUSDAPYEdge'; +export type OTokenActivityEdge = { + __typename?: 'OTokenActivityEdge'; cursor: Scalars['String']['output']; - node: Ousdapy; + node: OTokenActivity; }; -export enum OusdapyOrderByInput { - AprAsc = 'apr_ASC', - AprAscNullsFirst = 'apr_ASC_NULLS_FIRST', - AprDesc = 'apr_DESC', - AprDescNullsLast = 'apr_DESC_NULLS_LAST', - Apy7DayAvgAsc = 'apy7DayAvg_ASC', - Apy7DayAvgAscNullsFirst = 'apy7DayAvg_ASC_NULLS_FIRST', - Apy7DayAvgDesc = 'apy7DayAvg_DESC', - Apy7DayAvgDescNullsLast = 'apy7DayAvg_DESC_NULLS_LAST', - Apy14DayAvgAsc = 'apy14DayAvg_ASC', - Apy14DayAvgAscNullsFirst = 'apy14DayAvg_ASC_NULLS_FIRST', - Apy14DayAvgDesc = 'apy14DayAvg_DESC', - Apy14DayAvgDescNullsLast = 'apy14DayAvg_DESC_NULLS_LAST', - Apy30DayAvgAsc = 'apy30DayAvg_ASC', - Apy30DayAvgAscNullsFirst = 'apy30DayAvg_ASC_NULLS_FIRST', - Apy30DayAvgDesc = 'apy30DayAvg_DESC', - Apy30DayAvgDescNullsLast = 'apy30DayAvg_DESC_NULLS_LAST', - ApyAsc = 'apy_ASC', - ApyAscNullsFirst = 'apy_ASC_NULLS_FIRST', - ApyDesc = 'apy_DESC', - ApyDescNullsLast = 'apy_DESC_NULLS_LAST', +export enum OTokenActivityOrderByInput { + ActionAsc = 'action_ASC', + ActionAscNullsFirst = 'action_ASC_NULLS_FIRST', + ActionDesc = 'action_DESC', + ActionDescNullsLast = 'action_DESC_NULLS_LAST', + AddressAsc = 'address_ASC', + AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', + AddressDesc = 'address_DESC', + AddressDescNullsLast = 'address_DESC_NULLS_LAST', + AmountAsc = 'amount_ASC', + AmountAscNullsFirst = 'amount_ASC_NULLS_FIRST', + AmountDesc = 'amount_DESC', + AmountDescNullsLast = 'amount_DESC_NULLS_LAST', BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + CallDataLast4BytesAsc = 'callDataLast4Bytes_ASC', + CallDataLast4BytesAscNullsFirst = 'callDataLast4Bytes_ASC_NULLS_FIRST', + CallDataLast4BytesDesc = 'callDataLast4Bytes_DESC', + CallDataLast4BytesDescNullsLast = 'callDataLast4Bytes_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', + ExchangeAsc = 'exchange_ASC', + ExchangeAscNullsFirst = 'exchange_ASC_NULLS_FIRST', + ExchangeDesc = 'exchange_DESC', + ExchangeDescNullsLast = 'exchange_DESC_NULLS_LAST', + FromSymbolAsc = 'fromSymbol_ASC', + FromSymbolAscNullsFirst = 'fromSymbol_ASC_NULLS_FIRST', + FromSymbolDesc = 'fromSymbol_DESC', + FromSymbolDescNullsLast = 'fromSymbol_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - RebasingCreditsPerTokenAsc = 'rebasingCreditsPerToken_ASC', - RebasingCreditsPerTokenAscNullsFirst = 'rebasingCreditsPerToken_ASC_NULLS_FIRST', - RebasingCreditsPerTokenDesc = 'rebasingCreditsPerToken_DESC', - RebasingCreditsPerTokenDescNullsLast = 'rebasingCreditsPerToken_DESC_NULLS_LAST', + InterfaceAsc = 'interface_ASC', + InterfaceAscNullsFirst = 'interface_ASC_NULLS_FIRST', + InterfaceDesc = 'interface_DESC', + InterfaceDescNullsLast = 'interface_DESC_NULLS_LAST', + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', + SighashAsc = 'sighash_ASC', + SighashAscNullsFirst = 'sighash_ASC_NULLS_FIRST', + SighashDesc = 'sighash_DESC', + SighashDescNullsLast = 'sighash_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', + ToSymbolAsc = 'toSymbol_ASC', + ToSymbolAscNullsFirst = 'toSymbol_ASC_NULLS_FIRST', + ToSymbolDesc = 'toSymbol_DESC', + ToSymbolDescNullsLast = 'toSymbol_DESC_NULLS_LAST', TxHashAsc = 'txHash_ASC', TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', TxHashDesc = 'txHash_DESC', TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST' } -export type OusdapyWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - apr_eq?: InputMaybe; - apr_gt?: InputMaybe; - apr_gte?: InputMaybe; - apr_in?: InputMaybe>; - apr_isNull?: InputMaybe; - apr_lt?: InputMaybe; - apr_lte?: InputMaybe; - apr_not_eq?: InputMaybe; - apr_not_in?: InputMaybe>; - apy7DayAvg_eq?: InputMaybe; - apy7DayAvg_gt?: InputMaybe; - apy7DayAvg_gte?: InputMaybe; - apy7DayAvg_in?: InputMaybe>; - apy7DayAvg_isNull?: InputMaybe; - apy7DayAvg_lt?: InputMaybe; - apy7DayAvg_lte?: InputMaybe; - apy7DayAvg_not_eq?: InputMaybe; - apy7DayAvg_not_in?: InputMaybe>; - apy14DayAvg_eq?: InputMaybe; - apy14DayAvg_gt?: InputMaybe; - apy14DayAvg_gte?: InputMaybe; - apy14DayAvg_in?: InputMaybe>; - apy14DayAvg_isNull?: InputMaybe; - apy14DayAvg_lt?: InputMaybe; - apy14DayAvg_lte?: InputMaybe; - apy14DayAvg_not_eq?: InputMaybe; - apy14DayAvg_not_in?: InputMaybe>; - apy30DayAvg_eq?: InputMaybe; - apy30DayAvg_gt?: InputMaybe; - apy30DayAvg_gte?: InputMaybe; - apy30DayAvg_in?: InputMaybe>; - apy30DayAvg_isNull?: InputMaybe; - apy30DayAvg_lt?: InputMaybe; - apy30DayAvg_lte?: InputMaybe; - apy30DayAvg_not_eq?: InputMaybe; - apy30DayAvg_not_in?: InputMaybe>; - apy_eq?: InputMaybe; - apy_gt?: InputMaybe; - apy_gte?: InputMaybe; - apy_in?: InputMaybe>; - apy_isNull?: InputMaybe; - apy_lt?: InputMaybe; - apy_lte?: InputMaybe; - apy_not_eq?: InputMaybe; - apy_not_in?: InputMaybe>; +export type OTokenActivityWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + action_contains?: InputMaybe; + action_containsInsensitive?: InputMaybe; + action_endsWith?: InputMaybe; + action_eq?: InputMaybe; + action_gt?: InputMaybe; + action_gte?: InputMaybe; + action_in?: InputMaybe>; + action_isNull?: InputMaybe; + action_lt?: InputMaybe; + action_lte?: InputMaybe; + action_not_contains?: InputMaybe; + action_not_containsInsensitive?: InputMaybe; + action_not_endsWith?: InputMaybe; + action_not_eq?: InputMaybe; + action_not_in?: InputMaybe>; + action_not_startsWith?: InputMaybe; + action_startsWith?: InputMaybe; + address_contains?: InputMaybe; + address_containsInsensitive?: InputMaybe; + address_endsWith?: InputMaybe; + address_eq?: InputMaybe; + address_gt?: InputMaybe; + address_gte?: InputMaybe; + address_in?: InputMaybe>; + address_isNull?: InputMaybe; + address_lt?: InputMaybe; + address_lte?: InputMaybe; + address_not_contains?: InputMaybe; + address_not_containsInsensitive?: InputMaybe; + address_not_endsWith?: InputMaybe; + address_not_eq?: InputMaybe; + address_not_in?: InputMaybe>; + address_not_startsWith?: InputMaybe; + address_startsWith?: InputMaybe; + amount_eq?: InputMaybe; + amount_gt?: InputMaybe; + amount_gte?: InputMaybe; + amount_in?: InputMaybe>; + amount_isNull?: InputMaybe; + amount_lt?: InputMaybe; + amount_lte?: InputMaybe; + amount_not_eq?: InputMaybe; + amount_not_in?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -7836,6 +6622,66 @@ export type OusdapyWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; + callDataLast4Bytes_contains?: InputMaybe; + callDataLast4Bytes_containsInsensitive?: InputMaybe; + callDataLast4Bytes_endsWith?: InputMaybe; + callDataLast4Bytes_eq?: InputMaybe; + callDataLast4Bytes_gt?: InputMaybe; + callDataLast4Bytes_gte?: InputMaybe; + callDataLast4Bytes_in?: InputMaybe>; + callDataLast4Bytes_isNull?: InputMaybe; + callDataLast4Bytes_lt?: InputMaybe; + callDataLast4Bytes_lte?: InputMaybe; + callDataLast4Bytes_not_contains?: InputMaybe; + callDataLast4Bytes_not_containsInsensitive?: InputMaybe; + callDataLast4Bytes_not_endsWith?: InputMaybe; + callDataLast4Bytes_not_eq?: InputMaybe; + callDataLast4Bytes_not_in?: InputMaybe>; + callDataLast4Bytes_not_startsWith?: InputMaybe; + callDataLast4Bytes_startsWith?: InputMaybe; + chainId_eq?: InputMaybe; + chainId_gt?: InputMaybe; + chainId_gte?: InputMaybe; + chainId_in?: InputMaybe>; + chainId_isNull?: InputMaybe; + chainId_lt?: InputMaybe; + chainId_lte?: InputMaybe; + chainId_not_eq?: InputMaybe; + chainId_not_in?: InputMaybe>; + exchange_contains?: InputMaybe; + exchange_containsInsensitive?: InputMaybe; + exchange_endsWith?: InputMaybe; + exchange_eq?: InputMaybe; + exchange_gt?: InputMaybe; + exchange_gte?: InputMaybe; + exchange_in?: InputMaybe>; + exchange_isNull?: InputMaybe; + exchange_lt?: InputMaybe; + exchange_lte?: InputMaybe; + exchange_not_contains?: InputMaybe; + exchange_not_containsInsensitive?: InputMaybe; + exchange_not_endsWith?: InputMaybe; + exchange_not_eq?: InputMaybe; + exchange_not_in?: InputMaybe>; + exchange_not_startsWith?: InputMaybe; + exchange_startsWith?: InputMaybe; + fromSymbol_contains?: InputMaybe; + fromSymbol_containsInsensitive?: InputMaybe; + fromSymbol_endsWith?: InputMaybe; + fromSymbol_eq?: InputMaybe; + fromSymbol_gt?: InputMaybe; + fromSymbol_gte?: InputMaybe; + fromSymbol_in?: InputMaybe>; + fromSymbol_isNull?: InputMaybe; + fromSymbol_lt?: InputMaybe; + fromSymbol_lte?: InputMaybe; + fromSymbol_not_contains?: InputMaybe; + fromSymbol_not_containsInsensitive?: InputMaybe; + fromSymbol_not_endsWith?: InputMaybe; + fromSymbol_not_eq?: InputMaybe; + fromSymbol_not_in?: InputMaybe>; + fromSymbol_not_startsWith?: InputMaybe; + fromSymbol_startsWith?: InputMaybe; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -7853,15 +6699,57 @@ export type OusdapyWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - rebasingCreditsPerToken_eq?: InputMaybe; - rebasingCreditsPerToken_gt?: InputMaybe; - rebasingCreditsPerToken_gte?: InputMaybe; - rebasingCreditsPerToken_in?: InputMaybe>; - rebasingCreditsPerToken_isNull?: InputMaybe; - rebasingCreditsPerToken_lt?: InputMaybe; - rebasingCreditsPerToken_lte?: InputMaybe; - rebasingCreditsPerToken_not_eq?: InputMaybe; - rebasingCreditsPerToken_not_in?: InputMaybe>; + interface_contains?: InputMaybe; + interface_containsInsensitive?: InputMaybe; + interface_endsWith?: InputMaybe; + interface_eq?: InputMaybe; + interface_gt?: InputMaybe; + interface_gte?: InputMaybe; + interface_in?: InputMaybe>; + interface_isNull?: InputMaybe; + interface_lt?: InputMaybe; + interface_lte?: InputMaybe; + interface_not_contains?: InputMaybe; + interface_not_containsInsensitive?: InputMaybe; + interface_not_endsWith?: InputMaybe; + interface_not_eq?: InputMaybe; + interface_not_in?: InputMaybe>; + interface_not_startsWith?: InputMaybe; + interface_startsWith?: InputMaybe; + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; + sighash_contains?: InputMaybe; + sighash_containsInsensitive?: InputMaybe; + sighash_endsWith?: InputMaybe; + sighash_eq?: InputMaybe; + sighash_gt?: InputMaybe; + sighash_gte?: InputMaybe; + sighash_in?: InputMaybe>; + sighash_isNull?: InputMaybe; + sighash_lt?: InputMaybe; + sighash_lte?: InputMaybe; + sighash_not_contains?: InputMaybe; + sighash_not_containsInsensitive?: InputMaybe; + sighash_not_endsWith?: InputMaybe; + sighash_not_eq?: InputMaybe; + sighash_not_in?: InputMaybe>; + sighash_not_startsWith?: InputMaybe; + sighash_startsWith?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -7871,6 +6759,23 @@ export type OusdapyWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; + toSymbol_contains?: InputMaybe; + toSymbol_containsInsensitive?: InputMaybe; + toSymbol_endsWith?: InputMaybe; + toSymbol_eq?: InputMaybe; + toSymbol_gt?: InputMaybe; + toSymbol_gte?: InputMaybe; + toSymbol_in?: InputMaybe>; + toSymbol_isNull?: InputMaybe; + toSymbol_lt?: InputMaybe; + toSymbol_lte?: InputMaybe; + toSymbol_not_contains?: InputMaybe; + toSymbol_not_containsInsensitive?: InputMaybe; + toSymbol_not_endsWith?: InputMaybe; + toSymbol_not_eq?: InputMaybe; + toSymbol_not_in?: InputMaybe>; + toSymbol_not_startsWith?: InputMaybe; + toSymbol_startsWith?: InputMaybe; txHash_contains?: InputMaybe; txHash_containsInsensitive?: InputMaybe; txHash_endsWith?: InputMaybe; @@ -7890,84 +6795,264 @@ export type OusdapyWhereInput = { txHash_startsWith?: InputMaybe; }; -export type OusdaPiesConnection = { - __typename?: 'OUSDAPiesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; +export type OTokenAddress = { + __typename?: 'OTokenAddress'; + address: Scalars['String']['output']; + balance: Scalars['BigInt']['output']; + chainId: Scalars['Int']['output']; + credits: Scalars['BigInt']['output']; + earned: Scalars['BigInt']['output']; + history: Array; + id: Scalars['String']['output']; + isContract: Scalars['Boolean']['output']; + lastUpdated: Scalars['DateTime']['output']; + otoken: Scalars['String']['output']; + rebasingOption: RebasingOption; }; -export type OusdAaveStrategiesConnection = { - __typename?: 'OUSDAaveStrategiesConnection'; - edges: Array; + +export type OTokenAddressHistoryArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + +export type OTokenAddressEdge = { + __typename?: 'OTokenAddressEdge'; + cursor: Scalars['String']['output']; + node: OTokenAddress; +}; + +export enum OTokenAddressOrderByInput { + AddressAsc = 'address_ASC', + AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', + AddressDesc = 'address_DESC', + AddressDescNullsLast = 'address_DESC_NULLS_LAST', + BalanceAsc = 'balance_ASC', + BalanceAscNullsFirst = 'balance_ASC_NULLS_FIRST', + BalanceDesc = 'balance_DESC', + BalanceDescNullsLast = 'balance_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', + CreditsAsc = 'credits_ASC', + CreditsAscNullsFirst = 'credits_ASC_NULLS_FIRST', + CreditsDesc = 'credits_DESC', + CreditsDescNullsLast = 'credits_DESC_NULLS_LAST', + EarnedAsc = 'earned_ASC', + EarnedAscNullsFirst = 'earned_ASC_NULLS_FIRST', + EarnedDesc = 'earned_DESC', + EarnedDescNullsLast = 'earned_DESC_NULLS_LAST', + IdAsc = 'id_ASC', + IdAscNullsFirst = 'id_ASC_NULLS_FIRST', + IdDesc = 'id_DESC', + IdDescNullsLast = 'id_DESC_NULLS_LAST', + IsContractAsc = 'isContract_ASC', + IsContractAscNullsFirst = 'isContract_ASC_NULLS_FIRST', + IsContractDesc = 'isContract_DESC', + IsContractDescNullsLast = 'isContract_DESC_NULLS_LAST', + LastUpdatedAsc = 'lastUpdated_ASC', + LastUpdatedAscNullsFirst = 'lastUpdated_ASC_NULLS_FIRST', + LastUpdatedDesc = 'lastUpdated_DESC', + LastUpdatedDescNullsLast = 'lastUpdated_DESC_NULLS_LAST', + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', + RebasingOptionAsc = 'rebasingOption_ASC', + RebasingOptionAscNullsFirst = 'rebasingOption_ASC_NULLS_FIRST', + RebasingOptionDesc = 'rebasingOption_DESC', + RebasingOptionDescNullsLast = 'rebasingOption_DESC_NULLS_LAST' +} + +export type OTokenAddressWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + address_contains?: InputMaybe; + address_containsInsensitive?: InputMaybe; + address_endsWith?: InputMaybe; + address_eq?: InputMaybe; + address_gt?: InputMaybe; + address_gte?: InputMaybe; + address_in?: InputMaybe>; + address_isNull?: InputMaybe; + address_lt?: InputMaybe; + address_lte?: InputMaybe; + address_not_contains?: InputMaybe; + address_not_containsInsensitive?: InputMaybe; + address_not_endsWith?: InputMaybe; + address_not_eq?: InputMaybe; + address_not_in?: InputMaybe>; + address_not_startsWith?: InputMaybe; + address_startsWith?: InputMaybe; + balance_eq?: InputMaybe; + balance_gt?: InputMaybe; + balance_gte?: InputMaybe; + balance_in?: InputMaybe>; + balance_isNull?: InputMaybe; + balance_lt?: InputMaybe; + balance_lte?: InputMaybe; + balance_not_eq?: InputMaybe; + balance_not_in?: InputMaybe>; + chainId_eq?: InputMaybe; + chainId_gt?: InputMaybe; + chainId_gte?: InputMaybe; + chainId_in?: InputMaybe>; + chainId_isNull?: InputMaybe; + chainId_lt?: InputMaybe; + chainId_lte?: InputMaybe; + chainId_not_eq?: InputMaybe; + chainId_not_in?: InputMaybe>; + credits_eq?: InputMaybe; + credits_gt?: InputMaybe; + credits_gte?: InputMaybe; + credits_in?: InputMaybe>; + credits_isNull?: InputMaybe; + credits_lt?: InputMaybe; + credits_lte?: InputMaybe; + credits_not_eq?: InputMaybe; + credits_not_in?: InputMaybe>; + earned_eq?: InputMaybe; + earned_gt?: InputMaybe; + earned_gte?: InputMaybe; + earned_in?: InputMaybe>; + earned_isNull?: InputMaybe; + earned_lt?: InputMaybe; + earned_lte?: InputMaybe; + earned_not_eq?: InputMaybe; + earned_not_in?: InputMaybe>; + history_every?: InputMaybe; + history_none?: InputMaybe; + history_some?: InputMaybe; + id_contains?: InputMaybe; + id_containsInsensitive?: InputMaybe; + id_endsWith?: InputMaybe; + id_eq?: InputMaybe; + id_gt?: InputMaybe; + id_gte?: InputMaybe; + id_in?: InputMaybe>; + id_isNull?: InputMaybe; + id_lt?: InputMaybe; + id_lte?: InputMaybe; + id_not_contains?: InputMaybe; + id_not_containsInsensitive?: InputMaybe; + id_not_endsWith?: InputMaybe; + id_not_eq?: InputMaybe; + id_not_in?: InputMaybe>; + id_not_startsWith?: InputMaybe; + id_startsWith?: InputMaybe; + isContract_eq?: InputMaybe; + isContract_isNull?: InputMaybe; + isContract_not_eq?: InputMaybe; + lastUpdated_eq?: InputMaybe; + lastUpdated_gt?: InputMaybe; + lastUpdated_gte?: InputMaybe; + lastUpdated_in?: InputMaybe>; + lastUpdated_isNull?: InputMaybe; + lastUpdated_lt?: InputMaybe; + lastUpdated_lte?: InputMaybe; + lastUpdated_not_eq?: InputMaybe; + lastUpdated_not_in?: InputMaybe>; + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; + rebasingOption_eq?: InputMaybe; + rebasingOption_in?: InputMaybe>; + rebasingOption_isNull?: InputMaybe; + rebasingOption_not_eq?: InputMaybe; + rebasingOption_not_in?: InputMaybe>; +}; + +export type OTokenAddressesConnection = { + __typename?: 'OTokenAddressesConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export type OusdAaveStrategy = { - __typename?: 'OUSDAaveStrategy'; - blockNumber: Scalars['Int']['output']; - dai: Scalars['BigInt']['output']; +export type OTokenAsset = { + __typename?: 'OTokenAsset'; + address: Scalars['String']['output']; + chainId: Scalars['Int']['output']; id: Scalars['String']['output']; - timestamp: Scalars['DateTime']['output']; - usdc: Scalars['BigInt']['output']; - usdt: Scalars['BigInt']['output']; + otoken: Scalars['String']['output']; + symbol: Scalars['String']['output']; }; -export type OusdAaveStrategyEdge = { - __typename?: 'OUSDAaveStrategyEdge'; +export type OTokenAssetEdge = { + __typename?: 'OTokenAssetEdge'; cursor: Scalars['String']['output']; - node: OusdAaveStrategy; + node: OTokenAsset; }; -export enum OusdAaveStrategyOrderByInput { - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - DaiAsc = 'dai_ASC', - DaiAscNullsFirst = 'dai_ASC_NULLS_FIRST', - DaiDesc = 'dai_DESC', - DaiDescNullsLast = 'dai_DESC_NULLS_LAST', +export enum OTokenAssetOrderByInput { + AddressAsc = 'address_ASC', + AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', + AddressDesc = 'address_DESC', + AddressDescNullsLast = 'address_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - UsdcAsc = 'usdc_ASC', - UsdcAscNullsFirst = 'usdc_ASC_NULLS_FIRST', - UsdcDesc = 'usdc_DESC', - UsdcDescNullsLast = 'usdc_DESC_NULLS_LAST', - UsdtAsc = 'usdt_ASC', - UsdtAscNullsFirst = 'usdt_ASC_NULLS_FIRST', - UsdtDesc = 'usdt_DESC', - UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', + SymbolAsc = 'symbol_ASC', + SymbolAscNullsFirst = 'symbol_ASC_NULLS_FIRST', + SymbolDesc = 'symbol_DESC', + SymbolDescNullsLast = 'symbol_DESC_NULLS_LAST' } -export type OusdAaveStrategyWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - dai_eq?: InputMaybe; - dai_gt?: InputMaybe; - dai_gte?: InputMaybe; - dai_in?: InputMaybe>; - dai_isNull?: InputMaybe; - dai_lt?: InputMaybe; - dai_lte?: InputMaybe; - dai_not_eq?: InputMaybe; - dai_not_in?: InputMaybe>; +export type OTokenAssetWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + address_contains?: InputMaybe; + address_containsInsensitive?: InputMaybe; + address_endsWith?: InputMaybe; + address_eq?: InputMaybe; + address_gt?: InputMaybe; + address_gte?: InputMaybe; + address_in?: InputMaybe>; + address_isNull?: InputMaybe; + address_lt?: InputMaybe; + address_lte?: InputMaybe; + address_not_contains?: InputMaybe; + address_not_containsInsensitive?: InputMaybe; + address_not_endsWith?: InputMaybe; + address_not_eq?: InputMaybe; + address_not_in?: InputMaybe>; + address_not_startsWith?: InputMaybe; + address_startsWith?: InputMaybe; + chainId_eq?: InputMaybe; + chainId_gt?: InputMaybe; + chainId_gte?: InputMaybe; + chainId_in?: InputMaybe>; + chainId_isNull?: InputMaybe; + chainId_lt?: InputMaybe; + chainId_lte?: InputMaybe; + chainId_not_eq?: InputMaybe; + chainId_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -7985,226 +7070,193 @@ export type OusdAaveStrategyWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - timestamp_eq?: InputMaybe; - timestamp_gt?: InputMaybe; - timestamp_gte?: InputMaybe; - timestamp_in?: InputMaybe>; - timestamp_isNull?: InputMaybe; - timestamp_lt?: InputMaybe; - timestamp_lte?: InputMaybe; - timestamp_not_eq?: InputMaybe; - timestamp_not_in?: InputMaybe>; - usdc_eq?: InputMaybe; - usdc_gt?: InputMaybe; - usdc_gte?: InputMaybe; - usdc_in?: InputMaybe>; - usdc_isNull?: InputMaybe; - usdc_lt?: InputMaybe; - usdc_lte?: InputMaybe; - usdc_not_eq?: InputMaybe; - usdc_not_in?: InputMaybe>; - usdt_eq?: InputMaybe; - usdt_gt?: InputMaybe; - usdt_gte?: InputMaybe; - usdt_in?: InputMaybe>; - usdt_isNull?: InputMaybe; - usdt_lt?: InputMaybe; - usdt_lte?: InputMaybe; - usdt_not_eq?: InputMaybe; - usdt_not_in?: InputMaybe>; + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; + symbol_contains?: InputMaybe; + symbol_containsInsensitive?: InputMaybe; + symbol_endsWith?: InputMaybe; + symbol_eq?: InputMaybe; + symbol_gt?: InputMaybe; + symbol_gte?: InputMaybe; + symbol_in?: InputMaybe>; + symbol_isNull?: InputMaybe; + symbol_lt?: InputMaybe; + symbol_lte?: InputMaybe; + symbol_not_contains?: InputMaybe; + symbol_not_containsInsensitive?: InputMaybe; + symbol_not_endsWith?: InputMaybe; + symbol_not_eq?: InputMaybe; + symbol_not_in?: InputMaybe>; + symbol_not_startsWith?: InputMaybe; + symbol_startsWith?: InputMaybe; }; -export type OusdActivitiesConnection = { - __typename?: 'OUSDActivitiesConnection'; - edges: Array; +export type OTokenAssetsConnection = { + __typename?: 'OTokenAssetsConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export type OusdActivity = { - __typename?: 'OUSDActivity'; - action?: Maybe; - address?: Maybe; - amount?: Maybe; +export type OTokenEdge = { + __typename?: 'OTokenEdge'; + cursor: Scalars['String']['output']; + node: OToken; +}; + +export type OTokenHistoriesConnection = { + __typename?: 'OTokenHistoriesConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; +}; + +export type OTokenHistory = { + __typename?: 'OTokenHistory'; + address: OTokenAddress; + balance: Scalars['BigInt']['output']; blockNumber: Scalars['Int']['output']; - callDataLast4Bytes: Scalars['String']['output']; - exchange?: Maybe; - fromSymbol?: Maybe; + chainId: Scalars['Int']['output']; id: Scalars['String']['output']; - interface?: Maybe; - sighash?: Maybe; + otoken: Scalars['String']['output']; timestamp: Scalars['DateTime']['output']; - toSymbol?: Maybe; txHash: Scalars['String']['output']; + type: HistoryType; + value: Scalars['BigInt']['output']; }; -export type OusdActivityEdge = { - __typename?: 'OUSDActivityEdge'; +export type OTokenHistoryEdge = { + __typename?: 'OTokenHistoryEdge'; cursor: Scalars['String']['output']; - node: OusdActivity; + node: OTokenHistory; }; -export enum OusdActivityOrderByInput { - ActionAsc = 'action_ASC', - ActionAscNullsFirst = 'action_ASC_NULLS_FIRST', - ActionDesc = 'action_DESC', - ActionDescNullsLast = 'action_DESC_NULLS_LAST', - AddressAsc = 'address_ASC', - AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', - AddressDesc = 'address_DESC', - AddressDescNullsLast = 'address_DESC_NULLS_LAST', - AmountAsc = 'amount_ASC', - AmountAscNullsFirst = 'amount_ASC_NULLS_FIRST', - AmountDesc = 'amount_DESC', - AmountDescNullsLast = 'amount_DESC_NULLS_LAST', +export enum OTokenHistoryOrderByInput { + AddressAddressAsc = 'address_address_ASC', + AddressAddressAscNullsFirst = 'address_address_ASC_NULLS_FIRST', + AddressAddressDesc = 'address_address_DESC', + AddressAddressDescNullsLast = 'address_address_DESC_NULLS_LAST', + AddressBalanceAsc = 'address_balance_ASC', + AddressBalanceAscNullsFirst = 'address_balance_ASC_NULLS_FIRST', + AddressBalanceDesc = 'address_balance_DESC', + AddressBalanceDescNullsLast = 'address_balance_DESC_NULLS_LAST', + AddressChainIdAsc = 'address_chainId_ASC', + AddressChainIdAscNullsFirst = 'address_chainId_ASC_NULLS_FIRST', + AddressChainIdDesc = 'address_chainId_DESC', + AddressChainIdDescNullsLast = 'address_chainId_DESC_NULLS_LAST', + AddressCreditsAsc = 'address_credits_ASC', + AddressCreditsAscNullsFirst = 'address_credits_ASC_NULLS_FIRST', + AddressCreditsDesc = 'address_credits_DESC', + AddressCreditsDescNullsLast = 'address_credits_DESC_NULLS_LAST', + AddressEarnedAsc = 'address_earned_ASC', + AddressEarnedAscNullsFirst = 'address_earned_ASC_NULLS_FIRST', + AddressEarnedDesc = 'address_earned_DESC', + AddressEarnedDescNullsLast = 'address_earned_DESC_NULLS_LAST', + AddressIdAsc = 'address_id_ASC', + AddressIdAscNullsFirst = 'address_id_ASC_NULLS_FIRST', + AddressIdDesc = 'address_id_DESC', + AddressIdDescNullsLast = 'address_id_DESC_NULLS_LAST', + AddressIsContractAsc = 'address_isContract_ASC', + AddressIsContractAscNullsFirst = 'address_isContract_ASC_NULLS_FIRST', + AddressIsContractDesc = 'address_isContract_DESC', + AddressIsContractDescNullsLast = 'address_isContract_DESC_NULLS_LAST', + AddressLastUpdatedAsc = 'address_lastUpdated_ASC', + AddressLastUpdatedAscNullsFirst = 'address_lastUpdated_ASC_NULLS_FIRST', + AddressLastUpdatedDesc = 'address_lastUpdated_DESC', + AddressLastUpdatedDescNullsLast = 'address_lastUpdated_DESC_NULLS_LAST', + AddressOtokenAsc = 'address_otoken_ASC', + AddressOtokenAscNullsFirst = 'address_otoken_ASC_NULLS_FIRST', + AddressOtokenDesc = 'address_otoken_DESC', + AddressOtokenDescNullsLast = 'address_otoken_DESC_NULLS_LAST', + AddressRebasingOptionAsc = 'address_rebasingOption_ASC', + AddressRebasingOptionAscNullsFirst = 'address_rebasingOption_ASC_NULLS_FIRST', + AddressRebasingOptionDesc = 'address_rebasingOption_DESC', + AddressRebasingOptionDescNullsLast = 'address_rebasingOption_DESC_NULLS_LAST', + BalanceAsc = 'balance_ASC', + BalanceAscNullsFirst = 'balance_ASC_NULLS_FIRST', + BalanceDesc = 'balance_DESC', + BalanceDescNullsLast = 'balance_DESC_NULLS_LAST', BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - CallDataLast4BytesAsc = 'callDataLast4Bytes_ASC', - CallDataLast4BytesAscNullsFirst = 'callDataLast4Bytes_ASC_NULLS_FIRST', - CallDataLast4BytesDesc = 'callDataLast4Bytes_DESC', - CallDataLast4BytesDescNullsLast = 'callDataLast4Bytes_DESC_NULLS_LAST', - ExchangeAsc = 'exchange_ASC', - ExchangeAscNullsFirst = 'exchange_ASC_NULLS_FIRST', - ExchangeDesc = 'exchange_DESC', - ExchangeDescNullsLast = 'exchange_DESC_NULLS_LAST', - FromSymbolAsc = 'fromSymbol_ASC', - FromSymbolAscNullsFirst = 'fromSymbol_ASC_NULLS_FIRST', - FromSymbolDesc = 'fromSymbol_DESC', - FromSymbolDescNullsLast = 'fromSymbol_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - InterfaceAsc = 'interface_ASC', - InterfaceAscNullsFirst = 'interface_ASC_NULLS_FIRST', - InterfaceDesc = 'interface_DESC', - InterfaceDescNullsLast = 'interface_DESC_NULLS_LAST', - SighashAsc = 'sighash_ASC', - SighashAscNullsFirst = 'sighash_ASC_NULLS_FIRST', - SighashDesc = 'sighash_DESC', - SighashDescNullsLast = 'sighash_DESC_NULLS_LAST', + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - ToSymbolAsc = 'toSymbol_ASC', - ToSymbolAscNullsFirst = 'toSymbol_ASC_NULLS_FIRST', - ToSymbolDesc = 'toSymbol_DESC', - ToSymbolDescNullsLast = 'toSymbol_DESC_NULLS_LAST', TxHashAsc = 'txHash_ASC', TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST' -} - -export type OusdActivityWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - action_contains?: InputMaybe; - action_containsInsensitive?: InputMaybe; - action_endsWith?: InputMaybe; - action_eq?: InputMaybe; - action_gt?: InputMaybe; - action_gte?: InputMaybe; - action_in?: InputMaybe>; - action_isNull?: InputMaybe; - action_lt?: InputMaybe; - action_lte?: InputMaybe; - action_not_contains?: InputMaybe; - action_not_containsInsensitive?: InputMaybe; - action_not_endsWith?: InputMaybe; - action_not_eq?: InputMaybe; - action_not_in?: InputMaybe>; - action_not_startsWith?: InputMaybe; - action_startsWith?: InputMaybe; - address_contains?: InputMaybe; - address_containsInsensitive?: InputMaybe; - address_endsWith?: InputMaybe; - address_eq?: InputMaybe; - address_gt?: InputMaybe; - address_gte?: InputMaybe; - address_in?: InputMaybe>; - address_isNull?: InputMaybe; - address_lt?: InputMaybe; - address_lte?: InputMaybe; - address_not_contains?: InputMaybe; - address_not_containsInsensitive?: InputMaybe; - address_not_endsWith?: InputMaybe; - address_not_eq?: InputMaybe; - address_not_in?: InputMaybe>; - address_not_startsWith?: InputMaybe; - address_startsWith?: InputMaybe; - amount_eq?: InputMaybe; - amount_gt?: InputMaybe; - amount_gte?: InputMaybe; - amount_in?: InputMaybe>; - amount_isNull?: InputMaybe; - amount_lt?: InputMaybe; - amount_lte?: InputMaybe; - amount_not_eq?: InputMaybe; - amount_not_in?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - callDataLast4Bytes_contains?: InputMaybe; - callDataLast4Bytes_containsInsensitive?: InputMaybe; - callDataLast4Bytes_endsWith?: InputMaybe; - callDataLast4Bytes_eq?: InputMaybe; - callDataLast4Bytes_gt?: InputMaybe; - callDataLast4Bytes_gte?: InputMaybe; - callDataLast4Bytes_in?: InputMaybe>; - callDataLast4Bytes_isNull?: InputMaybe; - callDataLast4Bytes_lt?: InputMaybe; - callDataLast4Bytes_lte?: InputMaybe; - callDataLast4Bytes_not_contains?: InputMaybe; - callDataLast4Bytes_not_containsInsensitive?: InputMaybe; - callDataLast4Bytes_not_endsWith?: InputMaybe; - callDataLast4Bytes_not_eq?: InputMaybe; - callDataLast4Bytes_not_in?: InputMaybe>; - callDataLast4Bytes_not_startsWith?: InputMaybe; - callDataLast4Bytes_startsWith?: InputMaybe; - exchange_contains?: InputMaybe; - exchange_containsInsensitive?: InputMaybe; - exchange_endsWith?: InputMaybe; - exchange_eq?: InputMaybe; - exchange_gt?: InputMaybe; - exchange_gte?: InputMaybe; - exchange_in?: InputMaybe>; - exchange_isNull?: InputMaybe; - exchange_lt?: InputMaybe; - exchange_lte?: InputMaybe; - exchange_not_contains?: InputMaybe; - exchange_not_containsInsensitive?: InputMaybe; - exchange_not_endsWith?: InputMaybe; - exchange_not_eq?: InputMaybe; - exchange_not_in?: InputMaybe>; - exchange_not_startsWith?: InputMaybe; - exchange_startsWith?: InputMaybe; - fromSymbol_contains?: InputMaybe; - fromSymbol_containsInsensitive?: InputMaybe; - fromSymbol_endsWith?: InputMaybe; - fromSymbol_eq?: InputMaybe; - fromSymbol_gt?: InputMaybe; - fromSymbol_gte?: InputMaybe; - fromSymbol_in?: InputMaybe>; - fromSymbol_isNull?: InputMaybe; - fromSymbol_lt?: InputMaybe; - fromSymbol_lte?: InputMaybe; - fromSymbol_not_contains?: InputMaybe; - fromSymbol_not_containsInsensitive?: InputMaybe; - fromSymbol_not_endsWith?: InputMaybe; - fromSymbol_not_eq?: InputMaybe; - fromSymbol_not_in?: InputMaybe>; - fromSymbol_not_startsWith?: InputMaybe; - fromSymbol_startsWith?: InputMaybe; + TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST', + TypeAsc = 'type_ASC', + TypeAscNullsFirst = 'type_ASC_NULLS_FIRST', + TypeDesc = 'type_DESC', + TypeDescNullsLast = 'type_DESC_NULLS_LAST', + ValueAsc = 'value_ASC', + ValueAscNullsFirst = 'value_ASC_NULLS_FIRST', + ValueDesc = 'value_DESC', + ValueDescNullsLast = 'value_DESC_NULLS_LAST' +} + +export type OTokenHistoryWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + address?: InputMaybe; + address_isNull?: InputMaybe; + balance_eq?: InputMaybe; + balance_gt?: InputMaybe; + balance_gte?: InputMaybe; + balance_in?: InputMaybe>; + balance_isNull?: InputMaybe; + balance_lt?: InputMaybe; + balance_lte?: InputMaybe; + balance_not_eq?: InputMaybe; + balance_not_in?: InputMaybe>; + blockNumber_eq?: InputMaybe; + blockNumber_gt?: InputMaybe; + blockNumber_gte?: InputMaybe; + blockNumber_in?: InputMaybe>; + blockNumber_isNull?: InputMaybe; + blockNumber_lt?: InputMaybe; + blockNumber_lte?: InputMaybe; + blockNumber_not_eq?: InputMaybe; + blockNumber_not_in?: InputMaybe>; + chainId_eq?: InputMaybe; + chainId_gt?: InputMaybe; + chainId_gte?: InputMaybe; + chainId_in?: InputMaybe>; + chainId_isNull?: InputMaybe; + chainId_lt?: InputMaybe; + chainId_lte?: InputMaybe; + chainId_not_eq?: InputMaybe; + chainId_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -8222,40 +7274,23 @@ export type OusdActivityWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - interface_contains?: InputMaybe; - interface_containsInsensitive?: InputMaybe; - interface_endsWith?: InputMaybe; - interface_eq?: InputMaybe; - interface_gt?: InputMaybe; - interface_gte?: InputMaybe; - interface_in?: InputMaybe>; - interface_isNull?: InputMaybe; - interface_lt?: InputMaybe; - interface_lte?: InputMaybe; - interface_not_contains?: InputMaybe; - interface_not_containsInsensitive?: InputMaybe; - interface_not_endsWith?: InputMaybe; - interface_not_eq?: InputMaybe; - interface_not_in?: InputMaybe>; - interface_not_startsWith?: InputMaybe; - interface_startsWith?: InputMaybe; - sighash_contains?: InputMaybe; - sighash_containsInsensitive?: InputMaybe; - sighash_endsWith?: InputMaybe; - sighash_eq?: InputMaybe; - sighash_gt?: InputMaybe; - sighash_gte?: InputMaybe; - sighash_in?: InputMaybe>; - sighash_isNull?: InputMaybe; - sighash_lt?: InputMaybe; - sighash_lte?: InputMaybe; - sighash_not_contains?: InputMaybe; - sighash_not_containsInsensitive?: InputMaybe; - sighash_not_endsWith?: InputMaybe; - sighash_not_eq?: InputMaybe; - sighash_not_in?: InputMaybe>; - sighash_not_startsWith?: InputMaybe; - sighash_startsWith?: InputMaybe; + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -8265,23 +7300,6 @@ export type OusdActivityWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - toSymbol_contains?: InputMaybe; - toSymbol_containsInsensitive?: InputMaybe; - toSymbol_endsWith?: InputMaybe; - toSymbol_eq?: InputMaybe; - toSymbol_gt?: InputMaybe; - toSymbol_gte?: InputMaybe; - toSymbol_in?: InputMaybe>; - toSymbol_isNull?: InputMaybe; - toSymbol_lt?: InputMaybe; - toSymbol_lte?: InputMaybe; - toSymbol_not_contains?: InputMaybe; - toSymbol_not_containsInsensitive?: InputMaybe; - toSymbol_not_endsWith?: InputMaybe; - toSymbol_not_eq?: InputMaybe; - toSymbol_not_in?: InputMaybe>; - toSymbol_not_startsWith?: InputMaybe; - toSymbol_startsWith?: InputMaybe; txHash_contains?: InputMaybe; txHash_containsInsensitive?: InputMaybe; txHash_endsWith?: InputMaybe; @@ -8299,191 +7317,193 @@ export type OusdActivityWhereInput = { txHash_not_in?: InputMaybe>; txHash_not_startsWith?: InputMaybe; txHash_startsWith?: InputMaybe; + type_eq?: InputMaybe; + type_in?: InputMaybe>; + type_isNull?: InputMaybe; + type_not_eq?: InputMaybe; + type_not_in?: InputMaybe>; + value_eq?: InputMaybe; + value_gt?: InputMaybe; + value_gte?: InputMaybe; + value_in?: InputMaybe>; + value_isNull?: InputMaybe; + value_lt?: InputMaybe; + value_lte?: InputMaybe; + value_not_eq?: InputMaybe; + value_not_in?: InputMaybe>; }; -/** The OUSD balance, history and other information for a given address. */ -export type OusdAddress = { - __typename?: 'OUSDAddress'; - balance: Scalars['BigInt']['output']; - credits: Scalars['BigInt']['output']; - earned: Scalars['BigInt']['output']; - history: Array; - id: Scalars['String']['output']; - isContract: Scalars['Boolean']['output']; - lastUpdated: Scalars['DateTime']['output']; - rebasingOption: RebasingOption; -}; - - -/** The OUSD balance, history and other information for a given address. */ -export type OusdAddressHistoryArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - -export type OusdAddressEdge = { - __typename?: 'OUSDAddressEdge'; - cursor: Scalars['String']['output']; - node: OusdAddress; -}; - -export enum OusdAddressOrderByInput { - BalanceAsc = 'balance_ASC', - BalanceAscNullsFirst = 'balance_ASC_NULLS_FIRST', - BalanceDesc = 'balance_DESC', - BalanceDescNullsLast = 'balance_DESC_NULLS_LAST', - CreditsAsc = 'credits_ASC', - CreditsAscNullsFirst = 'credits_ASC_NULLS_FIRST', - CreditsDesc = 'credits_DESC', - CreditsDescNullsLast = 'credits_DESC_NULLS_LAST', - EarnedAsc = 'earned_ASC', - EarnedAscNullsFirst = 'earned_ASC_NULLS_FIRST', - EarnedDesc = 'earned_DESC', - EarnedDescNullsLast = 'earned_DESC_NULLS_LAST', +export enum OTokenOrderByInput { + BlockNumberAsc = 'blockNumber_ASC', + BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', + BlockNumberDesc = 'blockNumber_DESC', + BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - IsContractAsc = 'isContract_ASC', - IsContractAscNullsFirst = 'isContract_ASC_NULLS_FIRST', - IsContractDesc = 'isContract_DESC', - IsContractDescNullsLast = 'isContract_DESC_NULLS_LAST', - LastUpdatedAsc = 'lastUpdated_ASC', - LastUpdatedAscNullsFirst = 'lastUpdated_ASC_NULLS_FIRST', - LastUpdatedDesc = 'lastUpdated_DESC', - LastUpdatedDescNullsLast = 'lastUpdated_DESC_NULLS_LAST', - RebasingOptionAsc = 'rebasingOption_ASC', - RebasingOptionAscNullsFirst = 'rebasingOption_ASC_NULLS_FIRST', - RebasingOptionDesc = 'rebasingOption_DESC', - RebasingOptionDescNullsLast = 'rebasingOption_DESC_NULLS_LAST' + NonRebasingSupplyAsc = 'nonRebasingSupply_ASC', + NonRebasingSupplyAscNullsFirst = 'nonRebasingSupply_ASC_NULLS_FIRST', + NonRebasingSupplyDesc = 'nonRebasingSupply_DESC', + NonRebasingSupplyDescNullsLast = 'nonRebasingSupply_DESC_NULLS_LAST', + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', + RebasingSupplyAsc = 'rebasingSupply_ASC', + RebasingSupplyAscNullsFirst = 'rebasingSupply_ASC_NULLS_FIRST', + RebasingSupplyDesc = 'rebasingSupply_DESC', + RebasingSupplyDescNullsLast = 'rebasingSupply_DESC_NULLS_LAST', + TimestampAsc = 'timestamp_ASC', + TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', + TimestampDesc = 'timestamp_DESC', + TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', + TotalSupplyAsc = 'totalSupply_ASC', + TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', + TotalSupplyDesc = 'totalSupply_DESC', + TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST' } -export type OusdAddressWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - balance_eq?: InputMaybe; - balance_gt?: InputMaybe; - balance_gte?: InputMaybe; - balance_in?: InputMaybe>; - balance_isNull?: InputMaybe; - balance_lt?: InputMaybe; - balance_lte?: InputMaybe; - balance_not_eq?: InputMaybe; - balance_not_in?: InputMaybe>; - credits_eq?: InputMaybe; - credits_gt?: InputMaybe; - credits_gte?: InputMaybe; - credits_in?: InputMaybe>; - credits_isNull?: InputMaybe; - credits_lt?: InputMaybe; - credits_lte?: InputMaybe; - credits_not_eq?: InputMaybe; - credits_not_in?: InputMaybe>; - earned_eq?: InputMaybe; - earned_gt?: InputMaybe; - earned_gte?: InputMaybe; - earned_in?: InputMaybe>; - earned_isNull?: InputMaybe; - earned_lt?: InputMaybe; - earned_lte?: InputMaybe; - earned_not_eq?: InputMaybe; - earned_not_in?: InputMaybe>; - history_every?: InputMaybe; - history_none?: InputMaybe; - history_some?: InputMaybe; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - isContract_eq?: InputMaybe; - isContract_isNull?: InputMaybe; - isContract_not_eq?: InputMaybe; - lastUpdated_eq?: InputMaybe; - lastUpdated_gt?: InputMaybe; - lastUpdated_gte?: InputMaybe; - lastUpdated_in?: InputMaybe>; - lastUpdated_isNull?: InputMaybe; - lastUpdated_lt?: InputMaybe; - lastUpdated_lte?: InputMaybe; - lastUpdated_not_eq?: InputMaybe; - lastUpdated_not_in?: InputMaybe>; - rebasingOption_eq?: InputMaybe; - rebasingOption_in?: InputMaybe>; - rebasingOption_isNull?: InputMaybe; - rebasingOption_not_eq?: InputMaybe; - rebasingOption_not_in?: InputMaybe>; +export type OTokenRebase = { + __typename?: 'OTokenRebase'; + apy: OTokenApy; + blockNumber: Scalars['Int']['output']; + chainId: Scalars['Int']['output']; + feeETH: Scalars['BigInt']['output']; + feeUSD: Scalars['BigInt']['output']; + id: Scalars['String']['output']; + otoken: Scalars['String']['output']; + rebasingCredits: Scalars['BigInt']['output']; + rebasingCreditsPerToken: Scalars['BigInt']['output']; + timestamp: Scalars['DateTime']['output']; + totalSupply: Scalars['BigInt']['output']; + txHash: Scalars['String']['output']; + yieldETH: Scalars['BigInt']['output']; + yieldUSD: Scalars['BigInt']['output']; }; -export type OusdAddressesConnection = { - __typename?: 'OUSDAddressesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; +export type OTokenRebaseEdge = { + __typename?: 'OTokenRebaseEdge'; + cursor: Scalars['String']['output']; + node: OTokenRebase; }; -export type OusdAsset = { - __typename?: 'OUSDAsset'; - address: Scalars['String']['output']; +export type OTokenRebaseOption = { + __typename?: 'OTokenRebaseOption'; + address: OTokenAddress; + blockNumber: Scalars['Int']['output']; + chainId: Scalars['Int']['output']; id: Scalars['String']['output']; - symbol: Scalars['String']['output']; + otoken: Scalars['String']['output']; + status: RebasingOption; + timestamp: Scalars['DateTime']['output']; + txHash: Scalars['String']['output']; }; -export type OusdAssetEdge = { - __typename?: 'OUSDAssetEdge'; +export type OTokenRebaseOptionEdge = { + __typename?: 'OTokenRebaseOptionEdge'; cursor: Scalars['String']['output']; - node: OusdAsset; + node: OTokenRebaseOption; }; -export enum OusdAssetOrderByInput { - AddressAsc = 'address_ASC', - AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', - AddressDesc = 'address_DESC', - AddressDescNullsLast = 'address_DESC_NULLS_LAST', +export enum OTokenRebaseOptionOrderByInput { + AddressAddressAsc = 'address_address_ASC', + AddressAddressAscNullsFirst = 'address_address_ASC_NULLS_FIRST', + AddressAddressDesc = 'address_address_DESC', + AddressAddressDescNullsLast = 'address_address_DESC_NULLS_LAST', + AddressBalanceAsc = 'address_balance_ASC', + AddressBalanceAscNullsFirst = 'address_balance_ASC_NULLS_FIRST', + AddressBalanceDesc = 'address_balance_DESC', + AddressBalanceDescNullsLast = 'address_balance_DESC_NULLS_LAST', + AddressChainIdAsc = 'address_chainId_ASC', + AddressChainIdAscNullsFirst = 'address_chainId_ASC_NULLS_FIRST', + AddressChainIdDesc = 'address_chainId_DESC', + AddressChainIdDescNullsLast = 'address_chainId_DESC_NULLS_LAST', + AddressCreditsAsc = 'address_credits_ASC', + AddressCreditsAscNullsFirst = 'address_credits_ASC_NULLS_FIRST', + AddressCreditsDesc = 'address_credits_DESC', + AddressCreditsDescNullsLast = 'address_credits_DESC_NULLS_LAST', + AddressEarnedAsc = 'address_earned_ASC', + AddressEarnedAscNullsFirst = 'address_earned_ASC_NULLS_FIRST', + AddressEarnedDesc = 'address_earned_DESC', + AddressEarnedDescNullsLast = 'address_earned_DESC_NULLS_LAST', + AddressIdAsc = 'address_id_ASC', + AddressIdAscNullsFirst = 'address_id_ASC_NULLS_FIRST', + AddressIdDesc = 'address_id_DESC', + AddressIdDescNullsLast = 'address_id_DESC_NULLS_LAST', + AddressIsContractAsc = 'address_isContract_ASC', + AddressIsContractAscNullsFirst = 'address_isContract_ASC_NULLS_FIRST', + AddressIsContractDesc = 'address_isContract_DESC', + AddressIsContractDescNullsLast = 'address_isContract_DESC_NULLS_LAST', + AddressLastUpdatedAsc = 'address_lastUpdated_ASC', + AddressLastUpdatedAscNullsFirst = 'address_lastUpdated_ASC_NULLS_FIRST', + AddressLastUpdatedDesc = 'address_lastUpdated_DESC', + AddressLastUpdatedDescNullsLast = 'address_lastUpdated_DESC_NULLS_LAST', + AddressOtokenAsc = 'address_otoken_ASC', + AddressOtokenAscNullsFirst = 'address_otoken_ASC_NULLS_FIRST', + AddressOtokenDesc = 'address_otoken_DESC', + AddressOtokenDescNullsLast = 'address_otoken_DESC_NULLS_LAST', + AddressRebasingOptionAsc = 'address_rebasingOption_ASC', + AddressRebasingOptionAscNullsFirst = 'address_rebasingOption_ASC_NULLS_FIRST', + AddressRebasingOptionDesc = 'address_rebasingOption_DESC', + AddressRebasingOptionDescNullsLast = 'address_rebasingOption_DESC_NULLS_LAST', + BlockNumberAsc = 'blockNumber_ASC', + BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', + BlockNumberDesc = 'blockNumber_DESC', + BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - SymbolAsc = 'symbol_ASC', - SymbolAscNullsFirst = 'symbol_ASC_NULLS_FIRST', - SymbolDesc = 'symbol_DESC', - SymbolDescNullsLast = 'symbol_DESC_NULLS_LAST' + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', + StatusAsc = 'status_ASC', + StatusAscNullsFirst = 'status_ASC_NULLS_FIRST', + StatusDesc = 'status_DESC', + StatusDescNullsLast = 'status_DESC_NULLS_LAST', + TimestampAsc = 'timestamp_ASC', + TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', + TimestampDesc = 'timestamp_DESC', + TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', + TxHashAsc = 'txHash_ASC', + TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', + TxHashDesc = 'txHash_DESC', + TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST' } -export type OusdAssetWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - address_contains?: InputMaybe; - address_containsInsensitive?: InputMaybe; - address_endsWith?: InputMaybe; - address_eq?: InputMaybe; - address_gt?: InputMaybe; - address_gte?: InputMaybe; - address_in?: InputMaybe>; +export type OTokenRebaseOptionWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + address?: InputMaybe; address_isNull?: InputMaybe; - address_lt?: InputMaybe; - address_lte?: InputMaybe; - address_not_contains?: InputMaybe; - address_not_containsInsensitive?: InputMaybe; - address_not_endsWith?: InputMaybe; - address_not_eq?: InputMaybe; - address_not_in?: InputMaybe>; - address_not_startsWith?: InputMaybe; - address_startsWith?: InputMaybe; + blockNumber_eq?: InputMaybe; + blockNumber_gt?: InputMaybe; + blockNumber_gte?: InputMaybe; + blockNumber_in?: InputMaybe>; + blockNumber_isNull?: InputMaybe; + blockNumber_lt?: InputMaybe; + blockNumber_lte?: InputMaybe; + blockNumber_not_eq?: InputMaybe; + blockNumber_not_in?: InputMaybe>; + chainId_eq?: InputMaybe; + chainId_gt?: InputMaybe; + chainId_gte?: InputMaybe; + chainId_in?: InputMaybe>; + chainId_isNull?: InputMaybe; + chainId_lt?: InputMaybe; + chainId_lte?: InputMaybe; + chainId_not_eq?: InputMaybe; + chainId_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -8501,209 +7521,211 @@ export type OusdAssetWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - symbol_contains?: InputMaybe; - symbol_containsInsensitive?: InputMaybe; - symbol_endsWith?: InputMaybe; - symbol_eq?: InputMaybe; - symbol_gt?: InputMaybe; - symbol_gte?: InputMaybe; - symbol_in?: InputMaybe>; - symbol_isNull?: InputMaybe; - symbol_lt?: InputMaybe; - symbol_lte?: InputMaybe; - symbol_not_contains?: InputMaybe; - symbol_not_containsInsensitive?: InputMaybe; - symbol_not_endsWith?: InputMaybe; - symbol_not_eq?: InputMaybe; - symbol_not_in?: InputMaybe>; - symbol_not_startsWith?: InputMaybe; - symbol_startsWith?: InputMaybe; -}; - -export type OusdAssetsConnection = { - __typename?: 'OUSDAssetsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OusdCollateralDailyStat = { - __typename?: 'OUSDCollateralDailyStat'; - amount: Scalars['BigInt']['output']; - dailyStatId: OusdDailyStat; - id: Scalars['String']['output']; - price: Scalars['BigInt']['output']; - symbol: Scalars['String']['output']; - value: Scalars['BigInt']['output']; -}; - -export type OusdCollateralDailyStatEdge = { - __typename?: 'OUSDCollateralDailyStatEdge'; - cursor: Scalars['String']['output']; - node: OusdCollateralDailyStat; -}; - -export enum OusdCollateralDailyStatOrderByInput { - AmountAsc = 'amount_ASC', - AmountAscNullsFirst = 'amount_ASC_NULLS_FIRST', - AmountDesc = 'amount_DESC', - AmountDescNullsLast = 'amount_DESC_NULLS_LAST', - DailyStatIdAmoSupplyAsc = 'dailyStatId_amoSupply_ASC', - DailyStatIdAmoSupplyAscNullsFirst = 'dailyStatId_amoSupply_ASC_NULLS_FIRST', - DailyStatIdAmoSupplyDesc = 'dailyStatId_amoSupply_DESC', - DailyStatIdAmoSupplyDescNullsLast = 'dailyStatId_amoSupply_DESC_NULLS_LAST', - DailyStatIdAprAsc = 'dailyStatId_apr_ASC', - DailyStatIdAprAscNullsFirst = 'dailyStatId_apr_ASC_NULLS_FIRST', - DailyStatIdAprDesc = 'dailyStatId_apr_DESC', - DailyStatIdAprDescNullsLast = 'dailyStatId_apr_DESC_NULLS_LAST', - DailyStatIdApy7DayAvgAsc = 'dailyStatId_apy7DayAvg_ASC', - DailyStatIdApy7DayAvgAscNullsFirst = 'dailyStatId_apy7DayAvg_ASC_NULLS_FIRST', - DailyStatIdApy7DayAvgDesc = 'dailyStatId_apy7DayAvg_DESC', - DailyStatIdApy7DayAvgDescNullsLast = 'dailyStatId_apy7DayAvg_DESC_NULLS_LAST', - DailyStatIdApy14DayAvgAsc = 'dailyStatId_apy14DayAvg_ASC', - DailyStatIdApy14DayAvgAscNullsFirst = 'dailyStatId_apy14DayAvg_ASC_NULLS_FIRST', - DailyStatIdApy14DayAvgDesc = 'dailyStatId_apy14DayAvg_DESC', - DailyStatIdApy14DayAvgDescNullsLast = 'dailyStatId_apy14DayAvg_DESC_NULLS_LAST', - DailyStatIdApy30DayAvgAsc = 'dailyStatId_apy30DayAvg_ASC', - DailyStatIdApy30DayAvgAscNullsFirst = 'dailyStatId_apy30DayAvg_ASC_NULLS_FIRST', - DailyStatIdApy30DayAvgDesc = 'dailyStatId_apy30DayAvg_DESC', - DailyStatIdApy30DayAvgDescNullsLast = 'dailyStatId_apy30DayAvg_DESC_NULLS_LAST', - DailyStatIdApyAsc = 'dailyStatId_apy_ASC', - DailyStatIdApyAscNullsFirst = 'dailyStatId_apy_ASC_NULLS_FIRST', - DailyStatIdApyDesc = 'dailyStatId_apy_DESC', - DailyStatIdApyDescNullsLast = 'dailyStatId_apy_DESC_NULLS_LAST', - DailyStatIdBlockNumberAsc = 'dailyStatId_blockNumber_ASC', - DailyStatIdBlockNumberAscNullsFirst = 'dailyStatId_blockNumber_ASC_NULLS_FIRST', - DailyStatIdBlockNumberDesc = 'dailyStatId_blockNumber_DESC', - DailyStatIdBlockNumberDescNullsLast = 'dailyStatId_blockNumber_DESC_NULLS_LAST', - DailyStatIdDripperWethAsc = 'dailyStatId_dripperWETH_ASC', - DailyStatIdDripperWethAscNullsFirst = 'dailyStatId_dripperWETH_ASC_NULLS_FIRST', - DailyStatIdDripperWethDesc = 'dailyStatId_dripperWETH_DESC', - DailyStatIdDripperWethDescNullsLast = 'dailyStatId_dripperWETH_DESC_NULLS_LAST', - DailyStatIdFeesEth7DayAsc = 'dailyStatId_feesETH7Day_ASC', - DailyStatIdFeesEth7DayAscNullsFirst = 'dailyStatId_feesETH7Day_ASC_NULLS_FIRST', - DailyStatIdFeesEth7DayDesc = 'dailyStatId_feesETH7Day_DESC', - DailyStatIdFeesEth7DayDescNullsLast = 'dailyStatId_feesETH7Day_DESC_NULLS_LAST', - DailyStatIdFeesEthAllTimeAsc = 'dailyStatId_feesETHAllTime_ASC', - DailyStatIdFeesEthAllTimeAscNullsFirst = 'dailyStatId_feesETHAllTime_ASC_NULLS_FIRST', - DailyStatIdFeesEthAllTimeDesc = 'dailyStatId_feesETHAllTime_DESC', - DailyStatIdFeesEthAllTimeDescNullsLast = 'dailyStatId_feesETHAllTime_DESC_NULLS_LAST', - DailyStatIdFeesEthAsc = 'dailyStatId_feesETH_ASC', - DailyStatIdFeesEthAscNullsFirst = 'dailyStatId_feesETH_ASC_NULLS_FIRST', - DailyStatIdFeesEthDesc = 'dailyStatId_feesETH_DESC', - DailyStatIdFeesEthDescNullsLast = 'dailyStatId_feesETH_DESC_NULLS_LAST', - DailyStatIdFeesUsd7DayAsc = 'dailyStatId_feesUSD7Day_ASC', - DailyStatIdFeesUsd7DayAscNullsFirst = 'dailyStatId_feesUSD7Day_ASC_NULLS_FIRST', - DailyStatIdFeesUsd7DayDesc = 'dailyStatId_feesUSD7Day_DESC', - DailyStatIdFeesUsd7DayDescNullsLast = 'dailyStatId_feesUSD7Day_DESC_NULLS_LAST', - DailyStatIdFeesUsdAllTimeAsc = 'dailyStatId_feesUSDAllTime_ASC', - DailyStatIdFeesUsdAllTimeAscNullsFirst = 'dailyStatId_feesUSDAllTime_ASC_NULLS_FIRST', - DailyStatIdFeesUsdAllTimeDesc = 'dailyStatId_feesUSDAllTime_DESC', - DailyStatIdFeesUsdAllTimeDescNullsLast = 'dailyStatId_feesUSDAllTime_DESC_NULLS_LAST', - DailyStatIdFeesUsdAsc = 'dailyStatId_feesUSD_ASC', - DailyStatIdFeesUsdAscNullsFirst = 'dailyStatId_feesUSD_ASC_NULLS_FIRST', - DailyStatIdFeesUsdDesc = 'dailyStatId_feesUSD_DESC', - DailyStatIdFeesUsdDescNullsLast = 'dailyStatId_feesUSD_DESC_NULLS_LAST', - DailyStatIdHoldersOverThresholdAsc = 'dailyStatId_holdersOverThreshold_ASC', - DailyStatIdHoldersOverThresholdAscNullsFirst = 'dailyStatId_holdersOverThreshold_ASC_NULLS_FIRST', - DailyStatIdHoldersOverThresholdDesc = 'dailyStatId_holdersOverThreshold_DESC', - DailyStatIdHoldersOverThresholdDescNullsLast = 'dailyStatId_holdersOverThreshold_DESC_NULLS_LAST', - DailyStatIdIdAsc = 'dailyStatId_id_ASC', - DailyStatIdIdAscNullsFirst = 'dailyStatId_id_ASC_NULLS_FIRST', - DailyStatIdIdDesc = 'dailyStatId_id_DESC', - DailyStatIdIdDescNullsLast = 'dailyStatId_id_DESC_NULLS_LAST', - DailyStatIdMarketCapUsdAsc = 'dailyStatId_marketCapUSD_ASC', - DailyStatIdMarketCapUsdAscNullsFirst = 'dailyStatId_marketCapUSD_ASC_NULLS_FIRST', - DailyStatIdMarketCapUsdDesc = 'dailyStatId_marketCapUSD_DESC', - DailyStatIdMarketCapUsdDescNullsLast = 'dailyStatId_marketCapUSD_DESC_NULLS_LAST', - DailyStatIdNonRebasingSupplyAsc = 'dailyStatId_nonRebasingSupply_ASC', - DailyStatIdNonRebasingSupplyAscNullsFirst = 'dailyStatId_nonRebasingSupply_ASC_NULLS_FIRST', - DailyStatIdNonRebasingSupplyDesc = 'dailyStatId_nonRebasingSupply_DESC', - DailyStatIdNonRebasingSupplyDescNullsLast = 'dailyStatId_nonRebasingSupply_DESC_NULLS_LAST', - DailyStatIdPegPriceAsc = 'dailyStatId_pegPrice_ASC', - DailyStatIdPegPriceAscNullsFirst = 'dailyStatId_pegPrice_ASC_NULLS_FIRST', - DailyStatIdPegPriceDesc = 'dailyStatId_pegPrice_DESC', - DailyStatIdPegPriceDescNullsLast = 'dailyStatId_pegPrice_DESC_NULLS_LAST', - DailyStatIdRebasingSupplyAsc = 'dailyStatId_rebasingSupply_ASC', - DailyStatIdRebasingSupplyAscNullsFirst = 'dailyStatId_rebasingSupply_ASC_NULLS_FIRST', - DailyStatIdRebasingSupplyDesc = 'dailyStatId_rebasingSupply_DESC', - DailyStatIdRebasingSupplyDescNullsLast = 'dailyStatId_rebasingSupply_DESC_NULLS_LAST', - DailyStatIdTimestampAsc = 'dailyStatId_timestamp_ASC', - DailyStatIdTimestampAscNullsFirst = 'dailyStatId_timestamp_ASC_NULLS_FIRST', - DailyStatIdTimestampDesc = 'dailyStatId_timestamp_DESC', - DailyStatIdTimestampDescNullsLast = 'dailyStatId_timestamp_DESC_NULLS_LAST', - DailyStatIdTotalSupplyUsdAsc = 'dailyStatId_totalSupplyUSD_ASC', - DailyStatIdTotalSupplyUsdAscNullsFirst = 'dailyStatId_totalSupplyUSD_ASC_NULLS_FIRST', - DailyStatIdTotalSupplyUsdDesc = 'dailyStatId_totalSupplyUSD_DESC', - DailyStatIdTotalSupplyUsdDescNullsLast = 'dailyStatId_totalSupplyUSD_DESC_NULLS_LAST', - DailyStatIdTotalSupplyAsc = 'dailyStatId_totalSupply_ASC', - DailyStatIdTotalSupplyAscNullsFirst = 'dailyStatId_totalSupply_ASC_NULLS_FIRST', - DailyStatIdTotalSupplyDesc = 'dailyStatId_totalSupply_DESC', - DailyStatIdTotalSupplyDescNullsLast = 'dailyStatId_totalSupply_DESC_NULLS_LAST', - DailyStatIdTradingVolumeUsdAsc = 'dailyStatId_tradingVolumeUSD_ASC', - DailyStatIdTradingVolumeUsdAscNullsFirst = 'dailyStatId_tradingVolumeUSD_ASC_NULLS_FIRST', - DailyStatIdTradingVolumeUsdDesc = 'dailyStatId_tradingVolumeUSD_DESC', - DailyStatIdTradingVolumeUsdDescNullsLast = 'dailyStatId_tradingVolumeUSD_DESC_NULLS_LAST', - DailyStatIdWrappedSupplyAsc = 'dailyStatId_wrappedSupply_ASC', - DailyStatIdWrappedSupplyAscNullsFirst = 'dailyStatId_wrappedSupply_ASC_NULLS_FIRST', - DailyStatIdWrappedSupplyDesc = 'dailyStatId_wrappedSupply_DESC', - DailyStatIdWrappedSupplyDescNullsLast = 'dailyStatId_wrappedSupply_DESC_NULLS_LAST', - DailyStatIdYieldEth7DayAsc = 'dailyStatId_yieldETH7Day_ASC', - DailyStatIdYieldEth7DayAscNullsFirst = 'dailyStatId_yieldETH7Day_ASC_NULLS_FIRST', - DailyStatIdYieldEth7DayDesc = 'dailyStatId_yieldETH7Day_DESC', - DailyStatIdYieldEth7DayDescNullsLast = 'dailyStatId_yieldETH7Day_DESC_NULLS_LAST', - DailyStatIdYieldEthAllTimeAsc = 'dailyStatId_yieldETHAllTime_ASC', - DailyStatIdYieldEthAllTimeAscNullsFirst = 'dailyStatId_yieldETHAllTime_ASC_NULLS_FIRST', - DailyStatIdYieldEthAllTimeDesc = 'dailyStatId_yieldETHAllTime_DESC', - DailyStatIdYieldEthAllTimeDescNullsLast = 'dailyStatId_yieldETHAllTime_DESC_NULLS_LAST', - DailyStatIdYieldEthAsc = 'dailyStatId_yieldETH_ASC', - DailyStatIdYieldEthAscNullsFirst = 'dailyStatId_yieldETH_ASC_NULLS_FIRST', - DailyStatIdYieldEthDesc = 'dailyStatId_yieldETH_DESC', - DailyStatIdYieldEthDescNullsLast = 'dailyStatId_yieldETH_DESC_NULLS_LAST', - DailyStatIdYieldUsd7DayAsc = 'dailyStatId_yieldUSD7Day_ASC', - DailyStatIdYieldUsd7DayAscNullsFirst = 'dailyStatId_yieldUSD7Day_ASC_NULLS_FIRST', - DailyStatIdYieldUsd7DayDesc = 'dailyStatId_yieldUSD7Day_DESC', - DailyStatIdYieldUsd7DayDescNullsLast = 'dailyStatId_yieldUSD7Day_DESC_NULLS_LAST', - DailyStatIdYieldUsdAllTimeAsc = 'dailyStatId_yieldUSDAllTime_ASC', - DailyStatIdYieldUsdAllTimeAscNullsFirst = 'dailyStatId_yieldUSDAllTime_ASC_NULLS_FIRST', - DailyStatIdYieldUsdAllTimeDesc = 'dailyStatId_yieldUSDAllTime_DESC', - DailyStatIdYieldUsdAllTimeDescNullsLast = 'dailyStatId_yieldUSDAllTime_DESC_NULLS_LAST', - DailyStatIdYieldUsdAsc = 'dailyStatId_yieldUSD_ASC', - DailyStatIdYieldUsdAscNullsFirst = 'dailyStatId_yieldUSD_ASC_NULLS_FIRST', - DailyStatIdYieldUsdDesc = 'dailyStatId_yieldUSD_DESC', - DailyStatIdYieldUsdDescNullsLast = 'dailyStatId_yieldUSD_DESC_NULLS_LAST', + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; + status_eq?: InputMaybe; + status_in?: InputMaybe>; + status_isNull?: InputMaybe; + status_not_eq?: InputMaybe; + status_not_in?: InputMaybe>; + timestamp_eq?: InputMaybe; + timestamp_gt?: InputMaybe; + timestamp_gte?: InputMaybe; + timestamp_in?: InputMaybe>; + timestamp_isNull?: InputMaybe; + timestamp_lt?: InputMaybe; + timestamp_lte?: InputMaybe; + timestamp_not_eq?: InputMaybe; + timestamp_not_in?: InputMaybe>; + txHash_contains?: InputMaybe; + txHash_containsInsensitive?: InputMaybe; + txHash_endsWith?: InputMaybe; + txHash_eq?: InputMaybe; + txHash_gt?: InputMaybe; + txHash_gte?: InputMaybe; + txHash_in?: InputMaybe>; + txHash_isNull?: InputMaybe; + txHash_lt?: InputMaybe; + txHash_lte?: InputMaybe; + txHash_not_contains?: InputMaybe; + txHash_not_containsInsensitive?: InputMaybe; + txHash_not_endsWith?: InputMaybe; + txHash_not_eq?: InputMaybe; + txHash_not_in?: InputMaybe>; + txHash_not_startsWith?: InputMaybe; + txHash_startsWith?: InputMaybe; +}; + +export type OTokenRebaseOptionsConnection = { + __typename?: 'OTokenRebaseOptionsConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; +}; + +export enum OTokenRebaseOrderByInput { + ApyAprAsc = 'apy_apr_ASC', + ApyAprAscNullsFirst = 'apy_apr_ASC_NULLS_FIRST', + ApyAprDesc = 'apy_apr_DESC', + ApyAprDescNullsLast = 'apy_apr_DESC_NULLS_LAST', + ApyApy7DayAvgAsc = 'apy_apy7DayAvg_ASC', + ApyApy7DayAvgAscNullsFirst = 'apy_apy7DayAvg_ASC_NULLS_FIRST', + ApyApy7DayAvgDesc = 'apy_apy7DayAvg_DESC', + ApyApy7DayAvgDescNullsLast = 'apy_apy7DayAvg_DESC_NULLS_LAST', + ApyApy14DayAvgAsc = 'apy_apy14DayAvg_ASC', + ApyApy14DayAvgAscNullsFirst = 'apy_apy14DayAvg_ASC_NULLS_FIRST', + ApyApy14DayAvgDesc = 'apy_apy14DayAvg_DESC', + ApyApy14DayAvgDescNullsLast = 'apy_apy14DayAvg_DESC_NULLS_LAST', + ApyApy30DayAvgAsc = 'apy_apy30DayAvg_ASC', + ApyApy30DayAvgAscNullsFirst = 'apy_apy30DayAvg_ASC_NULLS_FIRST', + ApyApy30DayAvgDesc = 'apy_apy30DayAvg_DESC', + ApyApy30DayAvgDescNullsLast = 'apy_apy30DayAvg_DESC_NULLS_LAST', + ApyApyAsc = 'apy_apy_ASC', + ApyApyAscNullsFirst = 'apy_apy_ASC_NULLS_FIRST', + ApyApyDesc = 'apy_apy_DESC', + ApyApyDescNullsLast = 'apy_apy_DESC_NULLS_LAST', + ApyBlockNumberAsc = 'apy_blockNumber_ASC', + ApyBlockNumberAscNullsFirst = 'apy_blockNumber_ASC_NULLS_FIRST', + ApyBlockNumberDesc = 'apy_blockNumber_DESC', + ApyBlockNumberDescNullsLast = 'apy_blockNumber_DESC_NULLS_LAST', + ApyChainIdAsc = 'apy_chainId_ASC', + ApyChainIdAscNullsFirst = 'apy_chainId_ASC_NULLS_FIRST', + ApyChainIdDesc = 'apy_chainId_DESC', + ApyChainIdDescNullsLast = 'apy_chainId_DESC_NULLS_LAST', + ApyDateAsc = 'apy_date_ASC', + ApyDateAscNullsFirst = 'apy_date_ASC_NULLS_FIRST', + ApyDateDesc = 'apy_date_DESC', + ApyDateDescNullsLast = 'apy_date_DESC_NULLS_LAST', + ApyIdAsc = 'apy_id_ASC', + ApyIdAscNullsFirst = 'apy_id_ASC_NULLS_FIRST', + ApyIdDesc = 'apy_id_DESC', + ApyIdDescNullsLast = 'apy_id_DESC_NULLS_LAST', + ApyOtokenAsc = 'apy_otoken_ASC', + ApyOtokenAscNullsFirst = 'apy_otoken_ASC_NULLS_FIRST', + ApyOtokenDesc = 'apy_otoken_DESC', + ApyOtokenDescNullsLast = 'apy_otoken_DESC_NULLS_LAST', + ApyRebasingCreditsPerTokenAsc = 'apy_rebasingCreditsPerToken_ASC', + ApyRebasingCreditsPerTokenAscNullsFirst = 'apy_rebasingCreditsPerToken_ASC_NULLS_FIRST', + ApyRebasingCreditsPerTokenDesc = 'apy_rebasingCreditsPerToken_DESC', + ApyRebasingCreditsPerTokenDescNullsLast = 'apy_rebasingCreditsPerToken_DESC_NULLS_LAST', + ApyTimestampAsc = 'apy_timestamp_ASC', + ApyTimestampAscNullsFirst = 'apy_timestamp_ASC_NULLS_FIRST', + ApyTimestampDesc = 'apy_timestamp_DESC', + ApyTimestampDescNullsLast = 'apy_timestamp_DESC_NULLS_LAST', + ApyTxHashAsc = 'apy_txHash_ASC', + ApyTxHashAscNullsFirst = 'apy_txHash_ASC_NULLS_FIRST', + ApyTxHashDesc = 'apy_txHash_DESC', + ApyTxHashDescNullsLast = 'apy_txHash_DESC_NULLS_LAST', + BlockNumberAsc = 'blockNumber_ASC', + BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', + BlockNumberDesc = 'blockNumber_DESC', + BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', + FeeEthAsc = 'feeETH_ASC', + FeeEthAscNullsFirst = 'feeETH_ASC_NULLS_FIRST', + FeeEthDesc = 'feeETH_DESC', + FeeEthDescNullsLast = 'feeETH_DESC_NULLS_LAST', + FeeUsdAsc = 'feeUSD_ASC', + FeeUsdAscNullsFirst = 'feeUSD_ASC_NULLS_FIRST', + FeeUsdDesc = 'feeUSD_DESC', + FeeUsdDescNullsLast = 'feeUSD_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - PriceAsc = 'price_ASC', - PriceAscNullsFirst = 'price_ASC_NULLS_FIRST', - PriceDesc = 'price_DESC', - PriceDescNullsLast = 'price_DESC_NULLS_LAST', - SymbolAsc = 'symbol_ASC', - SymbolAscNullsFirst = 'symbol_ASC_NULLS_FIRST', - SymbolDesc = 'symbol_DESC', - SymbolDescNullsLast = 'symbol_DESC_NULLS_LAST', - ValueAsc = 'value_ASC', - ValueAscNullsFirst = 'value_ASC_NULLS_FIRST', - ValueDesc = 'value_DESC', - ValueDescNullsLast = 'value_DESC_NULLS_LAST' + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', + RebasingCreditsPerTokenAsc = 'rebasingCreditsPerToken_ASC', + RebasingCreditsPerTokenAscNullsFirst = 'rebasingCreditsPerToken_ASC_NULLS_FIRST', + RebasingCreditsPerTokenDesc = 'rebasingCreditsPerToken_DESC', + RebasingCreditsPerTokenDescNullsLast = 'rebasingCreditsPerToken_DESC_NULLS_LAST', + RebasingCreditsAsc = 'rebasingCredits_ASC', + RebasingCreditsAscNullsFirst = 'rebasingCredits_ASC_NULLS_FIRST', + RebasingCreditsDesc = 'rebasingCredits_DESC', + RebasingCreditsDescNullsLast = 'rebasingCredits_DESC_NULLS_LAST', + TimestampAsc = 'timestamp_ASC', + TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', + TimestampDesc = 'timestamp_DESC', + TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', + TotalSupplyAsc = 'totalSupply_ASC', + TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', + TotalSupplyDesc = 'totalSupply_DESC', + TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST', + TxHashAsc = 'txHash_ASC', + TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', + TxHashDesc = 'txHash_DESC', + TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST', + YieldEthAsc = 'yieldETH_ASC', + YieldEthAscNullsFirst = 'yieldETH_ASC_NULLS_FIRST', + YieldEthDesc = 'yieldETH_DESC', + YieldEthDescNullsLast = 'yieldETH_DESC_NULLS_LAST', + YieldUsdAsc = 'yieldUSD_ASC', + YieldUsdAscNullsFirst = 'yieldUSD_ASC_NULLS_FIRST', + YieldUsdDesc = 'yieldUSD_DESC', + YieldUsdDescNullsLast = 'yieldUSD_DESC_NULLS_LAST' } -export type OusdCollateralDailyStatWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - amount_eq?: InputMaybe; - amount_gt?: InputMaybe; - amount_gte?: InputMaybe; - amount_in?: InputMaybe>; - amount_isNull?: InputMaybe; - amount_lt?: InputMaybe; - amount_lte?: InputMaybe; - amount_not_eq?: InputMaybe; - amount_not_in?: InputMaybe>; - dailyStatId?: InputMaybe; - dailyStatId_isNull?: InputMaybe; +export type OTokenRebaseWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + apy?: InputMaybe; + apy_isNull?: InputMaybe; + blockNumber_eq?: InputMaybe; + blockNumber_gt?: InputMaybe; + blockNumber_gte?: InputMaybe; + blockNumber_in?: InputMaybe>; + blockNumber_isNull?: InputMaybe; + blockNumber_lt?: InputMaybe; + blockNumber_lte?: InputMaybe; + blockNumber_not_eq?: InputMaybe; + blockNumber_not_in?: InputMaybe>; + chainId_eq?: InputMaybe; + chainId_gt?: InputMaybe; + chainId_gte?: InputMaybe; + chainId_in?: InputMaybe>; + chainId_isNull?: InputMaybe; + chainId_lt?: InputMaybe; + chainId_lte?: InputMaybe; + chainId_not_eq?: InputMaybe; + chainId_not_in?: InputMaybe>; + feeETH_eq?: InputMaybe; + feeETH_gt?: InputMaybe; + feeETH_gte?: InputMaybe; + feeETH_in?: InputMaybe>; + feeETH_isNull?: InputMaybe; + feeETH_lt?: InputMaybe; + feeETH_lte?: InputMaybe; + feeETH_not_eq?: InputMaybe; + feeETH_not_in?: InputMaybe>; + feeUSD_eq?: InputMaybe; + feeUSD_gt?: InputMaybe; + feeUSD_gte?: InputMaybe; + feeUSD_in?: InputMaybe>; + feeUSD_isNull?: InputMaybe; + feeUSD_lt?: InputMaybe; + feeUSD_lte?: InputMaybe; + feeUSD_not_eq?: InputMaybe; + feeUSD_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -8721,103 +7743,171 @@ export type OusdCollateralDailyStatWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - price_eq?: InputMaybe; - price_gt?: InputMaybe; - price_gte?: InputMaybe; - price_in?: InputMaybe>; - price_isNull?: InputMaybe; - price_lt?: InputMaybe; - price_lte?: InputMaybe; - price_not_eq?: InputMaybe; - price_not_in?: InputMaybe>; - symbol_contains?: InputMaybe; - symbol_containsInsensitive?: InputMaybe; - symbol_endsWith?: InputMaybe; - symbol_eq?: InputMaybe; - symbol_gt?: InputMaybe; - symbol_gte?: InputMaybe; - symbol_in?: InputMaybe>; - symbol_isNull?: InputMaybe; - symbol_lt?: InputMaybe; - symbol_lte?: InputMaybe; - symbol_not_contains?: InputMaybe; - symbol_not_containsInsensitive?: InputMaybe; - symbol_not_endsWith?: InputMaybe; - symbol_not_eq?: InputMaybe; - symbol_not_in?: InputMaybe>; - symbol_not_startsWith?: InputMaybe; - symbol_startsWith?: InputMaybe; - value_eq?: InputMaybe; - value_gt?: InputMaybe; - value_gte?: InputMaybe; - value_in?: InputMaybe>; - value_isNull?: InputMaybe; - value_lt?: InputMaybe; - value_lte?: InputMaybe; - value_not_eq?: InputMaybe; - value_not_in?: InputMaybe>; -}; - -export type OusdCollateralDailyStatsConnection = { - __typename?: 'OUSDCollateralDailyStatsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; + rebasingCreditsPerToken_eq?: InputMaybe; + rebasingCreditsPerToken_gt?: InputMaybe; + rebasingCreditsPerToken_gte?: InputMaybe; + rebasingCreditsPerToken_in?: InputMaybe>; + rebasingCreditsPerToken_isNull?: InputMaybe; + rebasingCreditsPerToken_lt?: InputMaybe; + rebasingCreditsPerToken_lte?: InputMaybe; + rebasingCreditsPerToken_not_eq?: InputMaybe; + rebasingCreditsPerToken_not_in?: InputMaybe>; + rebasingCredits_eq?: InputMaybe; + rebasingCredits_gt?: InputMaybe; + rebasingCredits_gte?: InputMaybe; + rebasingCredits_in?: InputMaybe>; + rebasingCredits_isNull?: InputMaybe; + rebasingCredits_lt?: InputMaybe; + rebasingCredits_lte?: InputMaybe; + rebasingCredits_not_eq?: InputMaybe; + rebasingCredits_not_in?: InputMaybe>; + timestamp_eq?: InputMaybe; + timestamp_gt?: InputMaybe; + timestamp_gte?: InputMaybe; + timestamp_in?: InputMaybe>; + timestamp_isNull?: InputMaybe; + timestamp_lt?: InputMaybe; + timestamp_lte?: InputMaybe; + timestamp_not_eq?: InputMaybe; + timestamp_not_in?: InputMaybe>; + totalSupply_eq?: InputMaybe; + totalSupply_gt?: InputMaybe; + totalSupply_gte?: InputMaybe; + totalSupply_in?: InputMaybe>; + totalSupply_isNull?: InputMaybe; + totalSupply_lt?: InputMaybe; + totalSupply_lte?: InputMaybe; + totalSupply_not_eq?: InputMaybe; + totalSupply_not_in?: InputMaybe>; + txHash_contains?: InputMaybe; + txHash_containsInsensitive?: InputMaybe; + txHash_endsWith?: InputMaybe; + txHash_eq?: InputMaybe; + txHash_gt?: InputMaybe; + txHash_gte?: InputMaybe; + txHash_in?: InputMaybe>; + txHash_isNull?: InputMaybe; + txHash_lt?: InputMaybe; + txHash_lte?: InputMaybe; + txHash_not_contains?: InputMaybe; + txHash_not_containsInsensitive?: InputMaybe; + txHash_not_endsWith?: InputMaybe; + txHash_not_eq?: InputMaybe; + txHash_not_in?: InputMaybe>; + txHash_not_startsWith?: InputMaybe; + txHash_startsWith?: InputMaybe; + yieldETH_eq?: InputMaybe; + yieldETH_gt?: InputMaybe; + yieldETH_gte?: InputMaybe; + yieldETH_in?: InputMaybe>; + yieldETH_isNull?: InputMaybe; + yieldETH_lt?: InputMaybe; + yieldETH_lte?: InputMaybe; + yieldETH_not_eq?: InputMaybe; + yieldETH_not_in?: InputMaybe>; + yieldUSD_eq?: InputMaybe; + yieldUSD_gt?: InputMaybe; + yieldUSD_gte?: InputMaybe; + yieldUSD_in?: InputMaybe>; + yieldUSD_isNull?: InputMaybe; + yieldUSD_lt?: InputMaybe; + yieldUSD_lte?: InputMaybe; + yieldUSD_not_eq?: InputMaybe; + yieldUSD_not_in?: InputMaybe>; }; -export type OusdCompoundStrategiesConnection = { - __typename?: 'OUSDCompoundStrategiesConnection'; - edges: Array; +export type OTokenRebasesConnection = { + __typename?: 'OTokenRebasesConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export type OusdCompoundStrategy = { - __typename?: 'OUSDCompoundStrategy'; +export type OTokenVault = { + __typename?: 'OTokenVault'; + address: Scalars['String']['output']; blockNumber: Scalars['Int']['output']; - dai: Scalars['BigInt']['output']; + chainId: Scalars['Int']['output']; id: Scalars['String']['output']; + otoken: Scalars['String']['output']; timestamp: Scalars['DateTime']['output']; - usdc: Scalars['BigInt']['output']; - usdt: Scalars['BigInt']['output']; + totalValue: Scalars['BigInt']['output']; }; -export type OusdCompoundStrategyEdge = { - __typename?: 'OUSDCompoundStrategyEdge'; +export type OTokenVaultEdge = { + __typename?: 'OTokenVaultEdge'; cursor: Scalars['String']['output']; - node: OusdCompoundStrategy; + node: OTokenVault; }; -export enum OusdCompoundStrategyOrderByInput { +export enum OTokenVaultOrderByInput { + AddressAsc = 'address_ASC', + AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', + AddressDesc = 'address_DESC', + AddressDescNullsLast = 'address_DESC_NULLS_LAST', BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - DaiAsc = 'dai_ASC', - DaiAscNullsFirst = 'dai_ASC_NULLS_FIRST', - DaiDesc = 'dai_DESC', - DaiDescNullsLast = 'dai_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - UsdcAsc = 'usdc_ASC', - UsdcAscNullsFirst = 'usdc_ASC_NULLS_FIRST', - UsdcDesc = 'usdc_DESC', - UsdcDescNullsLast = 'usdc_DESC_NULLS_LAST', - UsdtAsc = 'usdt_ASC', - UsdtAscNullsFirst = 'usdt_ASC_NULLS_FIRST', - UsdtDesc = 'usdt_DESC', - UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' + TotalValueAsc = 'totalValue_ASC', + TotalValueAscNullsFirst = 'totalValue_ASC_NULLS_FIRST', + TotalValueDesc = 'totalValue_DESC', + TotalValueDescNullsLast = 'totalValue_DESC_NULLS_LAST' } -export type OusdCompoundStrategyWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OTokenVaultWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + address_contains?: InputMaybe; + address_containsInsensitive?: InputMaybe; + address_endsWith?: InputMaybe; + address_eq?: InputMaybe; + address_gt?: InputMaybe; + address_gte?: InputMaybe; + address_in?: InputMaybe>; + address_isNull?: InputMaybe; + address_lt?: InputMaybe; + address_lte?: InputMaybe; + address_not_contains?: InputMaybe; + address_not_containsInsensitive?: InputMaybe; + address_not_endsWith?: InputMaybe; + address_not_eq?: InputMaybe; + address_not_in?: InputMaybe>; + address_not_startsWith?: InputMaybe; + address_startsWith?: InputMaybe; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -8827,15 +7917,15 @@ export type OusdCompoundStrategyWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; - dai_eq?: InputMaybe; - dai_gt?: InputMaybe; - dai_gte?: InputMaybe; - dai_in?: InputMaybe>; - dai_isNull?: InputMaybe; - dai_lt?: InputMaybe; - dai_lte?: InputMaybe; - dai_not_eq?: InputMaybe; - dai_not_in?: InputMaybe>; + chainId_eq?: InputMaybe; + chainId_gt?: InputMaybe; + chainId_gte?: InputMaybe; + chainId_in?: InputMaybe>; + chainId_isNull?: InputMaybe; + chainId_lt?: InputMaybe; + chainId_lte?: InputMaybe; + chainId_not_eq?: InputMaybe; + chainId_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -8853,6 +7943,23 @@ export type OusdCompoundStrategyWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -8862,72 +7969,27 @@ export type OusdCompoundStrategyWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - usdc_eq?: InputMaybe; - usdc_gt?: InputMaybe; - usdc_gte?: InputMaybe; - usdc_in?: InputMaybe>; - usdc_isNull?: InputMaybe; - usdc_lt?: InputMaybe; - usdc_lte?: InputMaybe; - usdc_not_eq?: InputMaybe; - usdc_not_in?: InputMaybe>; - usdt_eq?: InputMaybe; - usdt_gt?: InputMaybe; - usdt_gte?: InputMaybe; - usdt_in?: InputMaybe>; - usdt_isNull?: InputMaybe; - usdt_lt?: InputMaybe; - usdt_lte?: InputMaybe; - usdt_not_eq?: InputMaybe; - usdt_not_in?: InputMaybe>; -}; - -export type OusdConvexLusdPlus3Crv = { - __typename?: 'OUSDConvexLUSDPlus3Crv'; - blockNumber: Scalars['Int']['output']; - dai: Scalars['BigInt']['output']; - id: Scalars['String']['output']; - timestamp: Scalars['DateTime']['output']; - usdc: Scalars['BigInt']['output']; - usdt: Scalars['BigInt']['output']; + totalValue_eq?: InputMaybe; + totalValue_gt?: InputMaybe; + totalValue_gte?: InputMaybe; + totalValue_in?: InputMaybe>; + totalValue_isNull?: InputMaybe; + totalValue_lt?: InputMaybe; + totalValue_lte?: InputMaybe; + totalValue_not_eq?: InputMaybe; + totalValue_not_in?: InputMaybe>; }; -export type OusdConvexLusdPlus3CrvEdge = { - __typename?: 'OUSDConvexLUSDPlus3CrvEdge'; - cursor: Scalars['String']['output']; - node: OusdConvexLusdPlus3Crv; +export type OTokenVaultsConnection = { + __typename?: 'OTokenVaultsConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; }; -export enum OusdConvexLusdPlus3CrvOrderByInput { - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - DaiAsc = 'dai_ASC', - DaiAscNullsFirst = 'dai_ASC_NULLS_FIRST', - DaiDesc = 'dai_DESC', - DaiDescNullsLast = 'dai_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - UsdcAsc = 'usdc_ASC', - UsdcAscNullsFirst = 'usdc_ASC_NULLS_FIRST', - UsdcDesc = 'usdc_DESC', - UsdcDescNullsLast = 'usdc_DESC_NULLS_LAST', - UsdtAsc = 'usdt_ASC', - UsdtAscNullsFirst = 'usdt_ASC_NULLS_FIRST', - UsdtDesc = 'usdt_DESC', - UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' -} - -export type OusdConvexLusdPlus3CrvWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OTokenWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -8937,15 +7999,15 @@ export type OusdConvexLusdPlus3CrvWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; - dai_eq?: InputMaybe; - dai_gt?: InputMaybe; - dai_gte?: InputMaybe; - dai_in?: InputMaybe>; - dai_isNull?: InputMaybe; - dai_lt?: InputMaybe; - dai_lte?: InputMaybe; - dai_not_eq?: InputMaybe; - dai_not_in?: InputMaybe>; + chainId_eq?: InputMaybe; + chainId_gt?: InputMaybe; + chainId_gte?: InputMaybe; + chainId_in?: InputMaybe>; + chainId_isNull?: InputMaybe; + chainId_lt?: InputMaybe; + chainId_lte?: InputMaybe; + chainId_not_eq?: InputMaybe; + chainId_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -8963,6 +8025,41 @@ export type OusdConvexLusdPlus3CrvWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; + nonRebasingSupply_eq?: InputMaybe; + nonRebasingSupply_gt?: InputMaybe; + nonRebasingSupply_gte?: InputMaybe; + nonRebasingSupply_in?: InputMaybe>; + nonRebasingSupply_isNull?: InputMaybe; + nonRebasingSupply_lt?: InputMaybe; + nonRebasingSupply_lte?: InputMaybe; + nonRebasingSupply_not_eq?: InputMaybe; + nonRebasingSupply_not_in?: InputMaybe>; + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; + rebasingSupply_eq?: InputMaybe; + rebasingSupply_gt?: InputMaybe; + rebasingSupply_gte?: InputMaybe; + rebasingSupply_in?: InputMaybe>; + rebasingSupply_isNull?: InputMaybe; + rebasingSupply_lt?: InputMaybe; + rebasingSupply_lte?: InputMaybe; + rebasingSupply_not_eq?: InputMaybe; + rebasingSupply_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -8972,42 +8069,33 @@ export type OusdConvexLusdPlus3CrvWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - usdc_eq?: InputMaybe; - usdc_gt?: InputMaybe; - usdc_gte?: InputMaybe; - usdc_in?: InputMaybe>; - usdc_isNull?: InputMaybe; - usdc_lt?: InputMaybe; - usdc_lte?: InputMaybe; - usdc_not_eq?: InputMaybe; - usdc_not_in?: InputMaybe>; - usdt_eq?: InputMaybe; - usdt_gt?: InputMaybe; - usdt_gte?: InputMaybe; - usdt_in?: InputMaybe>; - usdt_isNull?: InputMaybe; - usdt_lt?: InputMaybe; - usdt_lte?: InputMaybe; - usdt_not_eq?: InputMaybe; - usdt_not_in?: InputMaybe>; + totalSupply_eq?: InputMaybe; + totalSupply_gt?: InputMaybe; + totalSupply_gte?: InputMaybe; + totalSupply_in?: InputMaybe>; + totalSupply_isNull?: InputMaybe; + totalSupply_lt?: InputMaybe; + totalSupply_lte?: InputMaybe; + totalSupply_not_eq?: InputMaybe; + totalSupply_not_in?: InputMaybe>; }; -export type OusdConvexLusdPlus3CrvsConnection = { - __typename?: 'OUSDConvexLUSDPlus3CrvsConnection'; - edges: Array; +export type OTokensConnection = { + __typename?: 'OTokensConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export type OusdConvexStrategiesConnection = { - __typename?: 'OUSDConvexStrategiesConnection'; - edges: Array; +export type OusdAaveStrategiesConnection = { + __typename?: 'OUSDAaveStrategiesConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export type OusdConvexStrategy = { - __typename?: 'OUSDConvexStrategy'; +export type OusdAaveStrategy = { + __typename?: 'OUSDAaveStrategy'; blockNumber: Scalars['Int']['output']; dai: Scalars['BigInt']['output']; id: Scalars['String']['output']; @@ -9016,13 +8104,13 @@ export type OusdConvexStrategy = { usdt: Scalars['BigInt']['output']; }; -export type OusdConvexStrategyEdge = { - __typename?: 'OUSDConvexStrategyEdge'; +export type OusdAaveStrategyEdge = { + __typename?: 'OUSDAaveStrategyEdge'; cursor: Scalars['String']['output']; - node: OusdConvexStrategy; + node: OusdAaveStrategy; }; -export enum OusdConvexStrategyOrderByInput { +export enum OusdAaveStrategyOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', @@ -9049,9 +8137,9 @@ export enum OusdConvexStrategyOrderByInput { UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' } -export type OusdConvexStrategyWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OusdAaveStrategyWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -9116,249 +8204,297 @@ export type OusdConvexStrategyWhereInput = { usdt_not_in?: InputMaybe>; }; -export type OusdDailyStat = { - __typename?: 'OUSDDailyStat'; - amoSupply: Scalars['BigInt']['output']; - apr: Scalars['Float']['output']; - apy: Scalars['Float']['output']; - apy7DayAvg: Scalars['Float']['output']; - apy14DayAvg: Scalars['Float']['output']; - apy30DayAvg: Scalars['Float']['output']; - blockNumber: Scalars['Int']['output']; - collateral: Array; - dripperWETH: Scalars['BigInt']['output']; - feesETH: Scalars['BigInt']['output']; - feesETH7Day: Scalars['BigInt']['output']; - feesETHAllTime: Scalars['BigInt']['output']; - feesUSD: Scalars['BigInt']['output']; - feesUSD7Day: Scalars['BigInt']['output']; - feesUSDAllTime: Scalars['BigInt']['output']; - holdersOverThreshold: Scalars['Int']['output']; - id: Scalars['String']['output']; - marketCapUSD: Scalars['Float']['output']; - nonRebasingSupply: Scalars['BigInt']['output']; - pegPrice: Scalars['BigInt']['output']; - rebasingSupply: Scalars['BigInt']['output']; - strategies: Array; - timestamp: Scalars['DateTime']['output']; - totalSupply: Scalars['BigInt']['output']; - totalSupplyUSD: Scalars['Float']['output']; - tradingVolumeUSD: Scalars['Float']['output']; - wrappedSupply: Scalars['BigInt']['output']; - yieldETH: Scalars['BigInt']['output']; - yieldETH7Day: Scalars['BigInt']['output']; - yieldETHAllTime: Scalars['BigInt']['output']; - yieldUSD: Scalars['BigInt']['output']; - yieldUSD7Day: Scalars['BigInt']['output']; - yieldUSDAllTime: Scalars['BigInt']['output']; +export type OusdCollateralDailyStat = { + __typename?: 'OUSDCollateralDailyStat'; + amount: Scalars['BigInt']['output']; + dailyStatId: OusdDailyStat; + id: Scalars['String']['output']; + price: Scalars['BigInt']['output']; + symbol: Scalars['String']['output']; + value: Scalars['BigInt']['output']; +}; + +export type OusdCollateralDailyStatEdge = { + __typename?: 'OUSDCollateralDailyStatEdge'; + cursor: Scalars['String']['output']; + node: OusdCollateralDailyStat; +}; + +export enum OusdCollateralDailyStatOrderByInput { + AmountAsc = 'amount_ASC', + AmountAscNullsFirst = 'amount_ASC_NULLS_FIRST', + AmountDesc = 'amount_DESC', + AmountDescNullsLast = 'amount_DESC_NULLS_LAST', + DailyStatIdAmoSupplyAsc = 'dailyStatId_amoSupply_ASC', + DailyStatIdAmoSupplyAscNullsFirst = 'dailyStatId_amoSupply_ASC_NULLS_FIRST', + DailyStatIdAmoSupplyDesc = 'dailyStatId_amoSupply_DESC', + DailyStatIdAmoSupplyDescNullsLast = 'dailyStatId_amoSupply_DESC_NULLS_LAST', + DailyStatIdAprAsc = 'dailyStatId_apr_ASC', + DailyStatIdAprAscNullsFirst = 'dailyStatId_apr_ASC_NULLS_FIRST', + DailyStatIdAprDesc = 'dailyStatId_apr_DESC', + DailyStatIdAprDescNullsLast = 'dailyStatId_apr_DESC_NULLS_LAST', + DailyStatIdApy7DayAvgAsc = 'dailyStatId_apy7DayAvg_ASC', + DailyStatIdApy7DayAvgAscNullsFirst = 'dailyStatId_apy7DayAvg_ASC_NULLS_FIRST', + DailyStatIdApy7DayAvgDesc = 'dailyStatId_apy7DayAvg_DESC', + DailyStatIdApy7DayAvgDescNullsLast = 'dailyStatId_apy7DayAvg_DESC_NULLS_LAST', + DailyStatIdApy14DayAvgAsc = 'dailyStatId_apy14DayAvg_ASC', + DailyStatIdApy14DayAvgAscNullsFirst = 'dailyStatId_apy14DayAvg_ASC_NULLS_FIRST', + DailyStatIdApy14DayAvgDesc = 'dailyStatId_apy14DayAvg_DESC', + DailyStatIdApy14DayAvgDescNullsLast = 'dailyStatId_apy14DayAvg_DESC_NULLS_LAST', + DailyStatIdApy30DayAvgAsc = 'dailyStatId_apy30DayAvg_ASC', + DailyStatIdApy30DayAvgAscNullsFirst = 'dailyStatId_apy30DayAvg_ASC_NULLS_FIRST', + DailyStatIdApy30DayAvgDesc = 'dailyStatId_apy30DayAvg_DESC', + DailyStatIdApy30DayAvgDescNullsLast = 'dailyStatId_apy30DayAvg_DESC_NULLS_LAST', + DailyStatIdApyAsc = 'dailyStatId_apy_ASC', + DailyStatIdApyAscNullsFirst = 'dailyStatId_apy_ASC_NULLS_FIRST', + DailyStatIdApyDesc = 'dailyStatId_apy_DESC', + DailyStatIdApyDescNullsLast = 'dailyStatId_apy_DESC_NULLS_LAST', + DailyStatIdBlockNumberAsc = 'dailyStatId_blockNumber_ASC', + DailyStatIdBlockNumberAscNullsFirst = 'dailyStatId_blockNumber_ASC_NULLS_FIRST', + DailyStatIdBlockNumberDesc = 'dailyStatId_blockNumber_DESC', + DailyStatIdBlockNumberDescNullsLast = 'dailyStatId_blockNumber_DESC_NULLS_LAST', + DailyStatIdDripperWethAsc = 'dailyStatId_dripperWETH_ASC', + DailyStatIdDripperWethAscNullsFirst = 'dailyStatId_dripperWETH_ASC_NULLS_FIRST', + DailyStatIdDripperWethDesc = 'dailyStatId_dripperWETH_DESC', + DailyStatIdDripperWethDescNullsLast = 'dailyStatId_dripperWETH_DESC_NULLS_LAST', + DailyStatIdFeesEth7DayAsc = 'dailyStatId_feesETH7Day_ASC', + DailyStatIdFeesEth7DayAscNullsFirst = 'dailyStatId_feesETH7Day_ASC_NULLS_FIRST', + DailyStatIdFeesEth7DayDesc = 'dailyStatId_feesETH7Day_DESC', + DailyStatIdFeesEth7DayDescNullsLast = 'dailyStatId_feesETH7Day_DESC_NULLS_LAST', + DailyStatIdFeesEthAllTimeAsc = 'dailyStatId_feesETHAllTime_ASC', + DailyStatIdFeesEthAllTimeAscNullsFirst = 'dailyStatId_feesETHAllTime_ASC_NULLS_FIRST', + DailyStatIdFeesEthAllTimeDesc = 'dailyStatId_feesETHAllTime_DESC', + DailyStatIdFeesEthAllTimeDescNullsLast = 'dailyStatId_feesETHAllTime_DESC_NULLS_LAST', + DailyStatIdFeesEthAsc = 'dailyStatId_feesETH_ASC', + DailyStatIdFeesEthAscNullsFirst = 'dailyStatId_feesETH_ASC_NULLS_FIRST', + DailyStatIdFeesEthDesc = 'dailyStatId_feesETH_DESC', + DailyStatIdFeesEthDescNullsLast = 'dailyStatId_feesETH_DESC_NULLS_LAST', + DailyStatIdFeesUsd7DayAsc = 'dailyStatId_feesUSD7Day_ASC', + DailyStatIdFeesUsd7DayAscNullsFirst = 'dailyStatId_feesUSD7Day_ASC_NULLS_FIRST', + DailyStatIdFeesUsd7DayDesc = 'dailyStatId_feesUSD7Day_DESC', + DailyStatIdFeesUsd7DayDescNullsLast = 'dailyStatId_feesUSD7Day_DESC_NULLS_LAST', + DailyStatIdFeesUsdAllTimeAsc = 'dailyStatId_feesUSDAllTime_ASC', + DailyStatIdFeesUsdAllTimeAscNullsFirst = 'dailyStatId_feesUSDAllTime_ASC_NULLS_FIRST', + DailyStatIdFeesUsdAllTimeDesc = 'dailyStatId_feesUSDAllTime_DESC', + DailyStatIdFeesUsdAllTimeDescNullsLast = 'dailyStatId_feesUSDAllTime_DESC_NULLS_LAST', + DailyStatIdFeesUsdAsc = 'dailyStatId_feesUSD_ASC', + DailyStatIdFeesUsdAscNullsFirst = 'dailyStatId_feesUSD_ASC_NULLS_FIRST', + DailyStatIdFeesUsdDesc = 'dailyStatId_feesUSD_DESC', + DailyStatIdFeesUsdDescNullsLast = 'dailyStatId_feesUSD_DESC_NULLS_LAST', + DailyStatIdHoldersOverThresholdAsc = 'dailyStatId_holdersOverThreshold_ASC', + DailyStatIdHoldersOverThresholdAscNullsFirst = 'dailyStatId_holdersOverThreshold_ASC_NULLS_FIRST', + DailyStatIdHoldersOverThresholdDesc = 'dailyStatId_holdersOverThreshold_DESC', + DailyStatIdHoldersOverThresholdDescNullsLast = 'dailyStatId_holdersOverThreshold_DESC_NULLS_LAST', + DailyStatIdIdAsc = 'dailyStatId_id_ASC', + DailyStatIdIdAscNullsFirst = 'dailyStatId_id_ASC_NULLS_FIRST', + DailyStatIdIdDesc = 'dailyStatId_id_DESC', + DailyStatIdIdDescNullsLast = 'dailyStatId_id_DESC_NULLS_LAST', + DailyStatIdMarketCapUsdAsc = 'dailyStatId_marketCapUSD_ASC', + DailyStatIdMarketCapUsdAscNullsFirst = 'dailyStatId_marketCapUSD_ASC_NULLS_FIRST', + DailyStatIdMarketCapUsdDesc = 'dailyStatId_marketCapUSD_DESC', + DailyStatIdMarketCapUsdDescNullsLast = 'dailyStatId_marketCapUSD_DESC_NULLS_LAST', + DailyStatIdNonRebasingSupplyAsc = 'dailyStatId_nonRebasingSupply_ASC', + DailyStatIdNonRebasingSupplyAscNullsFirst = 'dailyStatId_nonRebasingSupply_ASC_NULLS_FIRST', + DailyStatIdNonRebasingSupplyDesc = 'dailyStatId_nonRebasingSupply_DESC', + DailyStatIdNonRebasingSupplyDescNullsLast = 'dailyStatId_nonRebasingSupply_DESC_NULLS_LAST', + DailyStatIdPegPriceAsc = 'dailyStatId_pegPrice_ASC', + DailyStatIdPegPriceAscNullsFirst = 'dailyStatId_pegPrice_ASC_NULLS_FIRST', + DailyStatIdPegPriceDesc = 'dailyStatId_pegPrice_DESC', + DailyStatIdPegPriceDescNullsLast = 'dailyStatId_pegPrice_DESC_NULLS_LAST', + DailyStatIdRebasingSupplyAsc = 'dailyStatId_rebasingSupply_ASC', + DailyStatIdRebasingSupplyAscNullsFirst = 'dailyStatId_rebasingSupply_ASC_NULLS_FIRST', + DailyStatIdRebasingSupplyDesc = 'dailyStatId_rebasingSupply_DESC', + DailyStatIdRebasingSupplyDescNullsLast = 'dailyStatId_rebasingSupply_DESC_NULLS_LAST', + DailyStatIdTimestampAsc = 'dailyStatId_timestamp_ASC', + DailyStatIdTimestampAscNullsFirst = 'dailyStatId_timestamp_ASC_NULLS_FIRST', + DailyStatIdTimestampDesc = 'dailyStatId_timestamp_DESC', + DailyStatIdTimestampDescNullsLast = 'dailyStatId_timestamp_DESC_NULLS_LAST', + DailyStatIdTotalSupplyUsdAsc = 'dailyStatId_totalSupplyUSD_ASC', + DailyStatIdTotalSupplyUsdAscNullsFirst = 'dailyStatId_totalSupplyUSD_ASC_NULLS_FIRST', + DailyStatIdTotalSupplyUsdDesc = 'dailyStatId_totalSupplyUSD_DESC', + DailyStatIdTotalSupplyUsdDescNullsLast = 'dailyStatId_totalSupplyUSD_DESC_NULLS_LAST', + DailyStatIdTotalSupplyAsc = 'dailyStatId_totalSupply_ASC', + DailyStatIdTotalSupplyAscNullsFirst = 'dailyStatId_totalSupply_ASC_NULLS_FIRST', + DailyStatIdTotalSupplyDesc = 'dailyStatId_totalSupply_DESC', + DailyStatIdTotalSupplyDescNullsLast = 'dailyStatId_totalSupply_DESC_NULLS_LAST', + DailyStatIdTradingVolumeUsdAsc = 'dailyStatId_tradingVolumeUSD_ASC', + DailyStatIdTradingVolumeUsdAscNullsFirst = 'dailyStatId_tradingVolumeUSD_ASC_NULLS_FIRST', + DailyStatIdTradingVolumeUsdDesc = 'dailyStatId_tradingVolumeUSD_DESC', + DailyStatIdTradingVolumeUsdDescNullsLast = 'dailyStatId_tradingVolumeUSD_DESC_NULLS_LAST', + DailyStatIdWrappedSupplyAsc = 'dailyStatId_wrappedSupply_ASC', + DailyStatIdWrappedSupplyAscNullsFirst = 'dailyStatId_wrappedSupply_ASC_NULLS_FIRST', + DailyStatIdWrappedSupplyDesc = 'dailyStatId_wrappedSupply_DESC', + DailyStatIdWrappedSupplyDescNullsLast = 'dailyStatId_wrappedSupply_DESC_NULLS_LAST', + DailyStatIdYieldEth7DayAsc = 'dailyStatId_yieldETH7Day_ASC', + DailyStatIdYieldEth7DayAscNullsFirst = 'dailyStatId_yieldETH7Day_ASC_NULLS_FIRST', + DailyStatIdYieldEth7DayDesc = 'dailyStatId_yieldETH7Day_DESC', + DailyStatIdYieldEth7DayDescNullsLast = 'dailyStatId_yieldETH7Day_DESC_NULLS_LAST', + DailyStatIdYieldEthAllTimeAsc = 'dailyStatId_yieldETHAllTime_ASC', + DailyStatIdYieldEthAllTimeAscNullsFirst = 'dailyStatId_yieldETHAllTime_ASC_NULLS_FIRST', + DailyStatIdYieldEthAllTimeDesc = 'dailyStatId_yieldETHAllTime_DESC', + DailyStatIdYieldEthAllTimeDescNullsLast = 'dailyStatId_yieldETHAllTime_DESC_NULLS_LAST', + DailyStatIdYieldEthAsc = 'dailyStatId_yieldETH_ASC', + DailyStatIdYieldEthAscNullsFirst = 'dailyStatId_yieldETH_ASC_NULLS_FIRST', + DailyStatIdYieldEthDesc = 'dailyStatId_yieldETH_DESC', + DailyStatIdYieldEthDescNullsLast = 'dailyStatId_yieldETH_DESC_NULLS_LAST', + DailyStatIdYieldUsd7DayAsc = 'dailyStatId_yieldUSD7Day_ASC', + DailyStatIdYieldUsd7DayAscNullsFirst = 'dailyStatId_yieldUSD7Day_ASC_NULLS_FIRST', + DailyStatIdYieldUsd7DayDesc = 'dailyStatId_yieldUSD7Day_DESC', + DailyStatIdYieldUsd7DayDescNullsLast = 'dailyStatId_yieldUSD7Day_DESC_NULLS_LAST', + DailyStatIdYieldUsdAllTimeAsc = 'dailyStatId_yieldUSDAllTime_ASC', + DailyStatIdYieldUsdAllTimeAscNullsFirst = 'dailyStatId_yieldUSDAllTime_ASC_NULLS_FIRST', + DailyStatIdYieldUsdAllTimeDesc = 'dailyStatId_yieldUSDAllTime_DESC', + DailyStatIdYieldUsdAllTimeDescNullsLast = 'dailyStatId_yieldUSDAllTime_DESC_NULLS_LAST', + DailyStatIdYieldUsdAsc = 'dailyStatId_yieldUSD_ASC', + DailyStatIdYieldUsdAscNullsFirst = 'dailyStatId_yieldUSD_ASC_NULLS_FIRST', + DailyStatIdYieldUsdDesc = 'dailyStatId_yieldUSD_DESC', + DailyStatIdYieldUsdDescNullsLast = 'dailyStatId_yieldUSD_DESC_NULLS_LAST', + IdAsc = 'id_ASC', + IdAscNullsFirst = 'id_ASC_NULLS_FIRST', + IdDesc = 'id_DESC', + IdDescNullsLast = 'id_DESC_NULLS_LAST', + PriceAsc = 'price_ASC', + PriceAscNullsFirst = 'price_ASC_NULLS_FIRST', + PriceDesc = 'price_DESC', + PriceDescNullsLast = 'price_DESC_NULLS_LAST', + SymbolAsc = 'symbol_ASC', + SymbolAscNullsFirst = 'symbol_ASC_NULLS_FIRST', + SymbolDesc = 'symbol_DESC', + SymbolDescNullsLast = 'symbol_DESC_NULLS_LAST', + ValueAsc = 'value_ASC', + ValueAscNullsFirst = 'value_ASC_NULLS_FIRST', + ValueDesc = 'value_DESC', + ValueDescNullsLast = 'value_DESC_NULLS_LAST' +} + +export type OusdCollateralDailyStatWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + amount_eq?: InputMaybe; + amount_gt?: InputMaybe; + amount_gte?: InputMaybe; + amount_in?: InputMaybe>; + amount_isNull?: InputMaybe; + amount_lt?: InputMaybe; + amount_lte?: InputMaybe; + amount_not_eq?: InputMaybe; + amount_not_in?: InputMaybe>; + dailyStatId?: InputMaybe; + dailyStatId_isNull?: InputMaybe; + id_contains?: InputMaybe; + id_containsInsensitive?: InputMaybe; + id_endsWith?: InputMaybe; + id_eq?: InputMaybe; + id_gt?: InputMaybe; + id_gte?: InputMaybe; + id_in?: InputMaybe>; + id_isNull?: InputMaybe; + id_lt?: InputMaybe; + id_lte?: InputMaybe; + id_not_contains?: InputMaybe; + id_not_containsInsensitive?: InputMaybe; + id_not_endsWith?: InputMaybe; + id_not_eq?: InputMaybe; + id_not_in?: InputMaybe>; + id_not_startsWith?: InputMaybe; + id_startsWith?: InputMaybe; + price_eq?: InputMaybe; + price_gt?: InputMaybe; + price_gte?: InputMaybe; + price_in?: InputMaybe>; + price_isNull?: InputMaybe; + price_lt?: InputMaybe; + price_lte?: InputMaybe; + price_not_eq?: InputMaybe; + price_not_in?: InputMaybe>; + symbol_contains?: InputMaybe; + symbol_containsInsensitive?: InputMaybe; + symbol_endsWith?: InputMaybe; + symbol_eq?: InputMaybe; + symbol_gt?: InputMaybe; + symbol_gte?: InputMaybe; + symbol_in?: InputMaybe>; + symbol_isNull?: InputMaybe; + symbol_lt?: InputMaybe; + symbol_lte?: InputMaybe; + symbol_not_contains?: InputMaybe; + symbol_not_containsInsensitive?: InputMaybe; + symbol_not_endsWith?: InputMaybe; + symbol_not_eq?: InputMaybe; + symbol_not_in?: InputMaybe>; + symbol_not_startsWith?: InputMaybe; + symbol_startsWith?: InputMaybe; + value_eq?: InputMaybe; + value_gt?: InputMaybe; + value_gte?: InputMaybe; + value_in?: InputMaybe>; + value_isNull?: InputMaybe; + value_lt?: InputMaybe; + value_lte?: InputMaybe; + value_not_eq?: InputMaybe; + value_not_in?: InputMaybe>; +}; + +export type OusdCollateralDailyStatsConnection = { + __typename?: 'OUSDCollateralDailyStatsConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; }; - -export type OusdDailyStatCollateralArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; +export type OusdCompoundStrategiesConnection = { + __typename?: 'OUSDCompoundStrategiesConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; }; - -export type OusdDailyStatStrategiesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; +export type OusdCompoundStrategy = { + __typename?: 'OUSDCompoundStrategy'; + blockNumber: Scalars['Int']['output']; + dai: Scalars['BigInt']['output']; + id: Scalars['String']['output']; + timestamp: Scalars['DateTime']['output']; + usdc: Scalars['BigInt']['output']; + usdt: Scalars['BigInt']['output']; }; -export type OusdDailyStatEdge = { - __typename?: 'OUSDDailyStatEdge'; +export type OusdCompoundStrategyEdge = { + __typename?: 'OUSDCompoundStrategyEdge'; cursor: Scalars['String']['output']; - node: OusdDailyStat; + node: OusdCompoundStrategy; }; -export enum OusdDailyStatOrderByInput { - AmoSupplyAsc = 'amoSupply_ASC', - AmoSupplyAscNullsFirst = 'amoSupply_ASC_NULLS_FIRST', - AmoSupplyDesc = 'amoSupply_DESC', - AmoSupplyDescNullsLast = 'amoSupply_DESC_NULLS_LAST', - AprAsc = 'apr_ASC', - AprAscNullsFirst = 'apr_ASC_NULLS_FIRST', - AprDesc = 'apr_DESC', - AprDescNullsLast = 'apr_DESC_NULLS_LAST', - Apy7DayAvgAsc = 'apy7DayAvg_ASC', - Apy7DayAvgAscNullsFirst = 'apy7DayAvg_ASC_NULLS_FIRST', - Apy7DayAvgDesc = 'apy7DayAvg_DESC', - Apy7DayAvgDescNullsLast = 'apy7DayAvg_DESC_NULLS_LAST', - Apy14DayAvgAsc = 'apy14DayAvg_ASC', - Apy14DayAvgAscNullsFirst = 'apy14DayAvg_ASC_NULLS_FIRST', - Apy14DayAvgDesc = 'apy14DayAvg_DESC', - Apy14DayAvgDescNullsLast = 'apy14DayAvg_DESC_NULLS_LAST', - Apy30DayAvgAsc = 'apy30DayAvg_ASC', - Apy30DayAvgAscNullsFirst = 'apy30DayAvg_ASC_NULLS_FIRST', - Apy30DayAvgDesc = 'apy30DayAvg_DESC', - Apy30DayAvgDescNullsLast = 'apy30DayAvg_DESC_NULLS_LAST', - ApyAsc = 'apy_ASC', - ApyAscNullsFirst = 'apy_ASC_NULLS_FIRST', - ApyDesc = 'apy_DESC', - ApyDescNullsLast = 'apy_DESC_NULLS_LAST', +export enum OusdCompoundStrategyOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - DripperWethAsc = 'dripperWETH_ASC', - DripperWethAscNullsFirst = 'dripperWETH_ASC_NULLS_FIRST', - DripperWethDesc = 'dripperWETH_DESC', - DripperWethDescNullsLast = 'dripperWETH_DESC_NULLS_LAST', - FeesEth7DayAsc = 'feesETH7Day_ASC', - FeesEth7DayAscNullsFirst = 'feesETH7Day_ASC_NULLS_FIRST', - FeesEth7DayDesc = 'feesETH7Day_DESC', - FeesEth7DayDescNullsLast = 'feesETH7Day_DESC_NULLS_LAST', - FeesEthAllTimeAsc = 'feesETHAllTime_ASC', - FeesEthAllTimeAscNullsFirst = 'feesETHAllTime_ASC_NULLS_FIRST', - FeesEthAllTimeDesc = 'feesETHAllTime_DESC', - FeesEthAllTimeDescNullsLast = 'feesETHAllTime_DESC_NULLS_LAST', - FeesEthAsc = 'feesETH_ASC', - FeesEthAscNullsFirst = 'feesETH_ASC_NULLS_FIRST', - FeesEthDesc = 'feesETH_DESC', - FeesEthDescNullsLast = 'feesETH_DESC_NULLS_LAST', - FeesUsd7DayAsc = 'feesUSD7Day_ASC', - FeesUsd7DayAscNullsFirst = 'feesUSD7Day_ASC_NULLS_FIRST', - FeesUsd7DayDesc = 'feesUSD7Day_DESC', - FeesUsd7DayDescNullsLast = 'feesUSD7Day_DESC_NULLS_LAST', - FeesUsdAllTimeAsc = 'feesUSDAllTime_ASC', - FeesUsdAllTimeAscNullsFirst = 'feesUSDAllTime_ASC_NULLS_FIRST', - FeesUsdAllTimeDesc = 'feesUSDAllTime_DESC', - FeesUsdAllTimeDescNullsLast = 'feesUSDAllTime_DESC_NULLS_LAST', - FeesUsdAsc = 'feesUSD_ASC', - FeesUsdAscNullsFirst = 'feesUSD_ASC_NULLS_FIRST', - FeesUsdDesc = 'feesUSD_DESC', - FeesUsdDescNullsLast = 'feesUSD_DESC_NULLS_LAST', - HoldersOverThresholdAsc = 'holdersOverThreshold_ASC', - HoldersOverThresholdAscNullsFirst = 'holdersOverThreshold_ASC_NULLS_FIRST', - HoldersOverThresholdDesc = 'holdersOverThreshold_DESC', - HoldersOverThresholdDescNullsLast = 'holdersOverThreshold_DESC_NULLS_LAST', + DaiAsc = 'dai_ASC', + DaiAscNullsFirst = 'dai_ASC_NULLS_FIRST', + DaiDesc = 'dai_DESC', + DaiDescNullsLast = 'dai_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - MarketCapUsdAsc = 'marketCapUSD_ASC', - MarketCapUsdAscNullsFirst = 'marketCapUSD_ASC_NULLS_FIRST', - MarketCapUsdDesc = 'marketCapUSD_DESC', - MarketCapUsdDescNullsLast = 'marketCapUSD_DESC_NULLS_LAST', - NonRebasingSupplyAsc = 'nonRebasingSupply_ASC', - NonRebasingSupplyAscNullsFirst = 'nonRebasingSupply_ASC_NULLS_FIRST', - NonRebasingSupplyDesc = 'nonRebasingSupply_DESC', - NonRebasingSupplyDescNullsLast = 'nonRebasingSupply_DESC_NULLS_LAST', - PegPriceAsc = 'pegPrice_ASC', - PegPriceAscNullsFirst = 'pegPrice_ASC_NULLS_FIRST', - PegPriceDesc = 'pegPrice_DESC', - PegPriceDescNullsLast = 'pegPrice_DESC_NULLS_LAST', - RebasingSupplyAsc = 'rebasingSupply_ASC', - RebasingSupplyAscNullsFirst = 'rebasingSupply_ASC_NULLS_FIRST', - RebasingSupplyDesc = 'rebasingSupply_DESC', - RebasingSupplyDescNullsLast = 'rebasingSupply_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TotalSupplyUsdAsc = 'totalSupplyUSD_ASC', - TotalSupplyUsdAscNullsFirst = 'totalSupplyUSD_ASC_NULLS_FIRST', - TotalSupplyUsdDesc = 'totalSupplyUSD_DESC', - TotalSupplyUsdDescNullsLast = 'totalSupplyUSD_DESC_NULLS_LAST', - TotalSupplyAsc = 'totalSupply_ASC', - TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', - TotalSupplyDesc = 'totalSupply_DESC', - TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST', - TradingVolumeUsdAsc = 'tradingVolumeUSD_ASC', - TradingVolumeUsdAscNullsFirst = 'tradingVolumeUSD_ASC_NULLS_FIRST', - TradingVolumeUsdDesc = 'tradingVolumeUSD_DESC', - TradingVolumeUsdDescNullsLast = 'tradingVolumeUSD_DESC_NULLS_LAST', - WrappedSupplyAsc = 'wrappedSupply_ASC', - WrappedSupplyAscNullsFirst = 'wrappedSupply_ASC_NULLS_FIRST', - WrappedSupplyDesc = 'wrappedSupply_DESC', - WrappedSupplyDescNullsLast = 'wrappedSupply_DESC_NULLS_LAST', - YieldEth7DayAsc = 'yieldETH7Day_ASC', - YieldEth7DayAscNullsFirst = 'yieldETH7Day_ASC_NULLS_FIRST', - YieldEth7DayDesc = 'yieldETH7Day_DESC', - YieldEth7DayDescNullsLast = 'yieldETH7Day_DESC_NULLS_LAST', - YieldEthAllTimeAsc = 'yieldETHAllTime_ASC', - YieldEthAllTimeAscNullsFirst = 'yieldETHAllTime_ASC_NULLS_FIRST', - YieldEthAllTimeDesc = 'yieldETHAllTime_DESC', - YieldEthAllTimeDescNullsLast = 'yieldETHAllTime_DESC_NULLS_LAST', - YieldEthAsc = 'yieldETH_ASC', - YieldEthAscNullsFirst = 'yieldETH_ASC_NULLS_FIRST', - YieldEthDesc = 'yieldETH_DESC', - YieldEthDescNullsLast = 'yieldETH_DESC_NULLS_LAST', - YieldUsd7DayAsc = 'yieldUSD7Day_ASC', - YieldUsd7DayAscNullsFirst = 'yieldUSD7Day_ASC_NULLS_FIRST', - YieldUsd7DayDesc = 'yieldUSD7Day_DESC', - YieldUsd7DayDescNullsLast = 'yieldUSD7Day_DESC_NULLS_LAST', - YieldUsdAllTimeAsc = 'yieldUSDAllTime_ASC', - YieldUsdAllTimeAscNullsFirst = 'yieldUSDAllTime_ASC_NULLS_FIRST', - YieldUsdAllTimeDesc = 'yieldUSDAllTime_DESC', - YieldUsdAllTimeDescNullsLast = 'yieldUSDAllTime_DESC_NULLS_LAST', - YieldUsdAsc = 'yieldUSD_ASC', - YieldUsdAscNullsFirst = 'yieldUSD_ASC_NULLS_FIRST', - YieldUsdDesc = 'yieldUSD_DESC', - YieldUsdDescNullsLast = 'yieldUSD_DESC_NULLS_LAST' -} - -export type OusdDailyStatWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - amoSupply_eq?: InputMaybe; - amoSupply_gt?: InputMaybe; - amoSupply_gte?: InputMaybe; - amoSupply_in?: InputMaybe>; - amoSupply_isNull?: InputMaybe; - amoSupply_lt?: InputMaybe; - amoSupply_lte?: InputMaybe; - amoSupply_not_eq?: InputMaybe; - amoSupply_not_in?: InputMaybe>; - apr_eq?: InputMaybe; - apr_gt?: InputMaybe; - apr_gte?: InputMaybe; - apr_in?: InputMaybe>; - apr_isNull?: InputMaybe; - apr_lt?: InputMaybe; - apr_lte?: InputMaybe; - apr_not_eq?: InputMaybe; - apr_not_in?: InputMaybe>; - apy7DayAvg_eq?: InputMaybe; - apy7DayAvg_gt?: InputMaybe; - apy7DayAvg_gte?: InputMaybe; - apy7DayAvg_in?: InputMaybe>; - apy7DayAvg_isNull?: InputMaybe; - apy7DayAvg_lt?: InputMaybe; - apy7DayAvg_lte?: InputMaybe; - apy7DayAvg_not_eq?: InputMaybe; - apy7DayAvg_not_in?: InputMaybe>; - apy14DayAvg_eq?: InputMaybe; - apy14DayAvg_gt?: InputMaybe; - apy14DayAvg_gte?: InputMaybe; - apy14DayAvg_in?: InputMaybe>; - apy14DayAvg_isNull?: InputMaybe; - apy14DayAvg_lt?: InputMaybe; - apy14DayAvg_lte?: InputMaybe; - apy14DayAvg_not_eq?: InputMaybe; - apy14DayAvg_not_in?: InputMaybe>; - apy30DayAvg_eq?: InputMaybe; - apy30DayAvg_gt?: InputMaybe; - apy30DayAvg_gte?: InputMaybe; - apy30DayAvg_in?: InputMaybe>; - apy30DayAvg_isNull?: InputMaybe; - apy30DayAvg_lt?: InputMaybe; - apy30DayAvg_lte?: InputMaybe; - apy30DayAvg_not_eq?: InputMaybe; - apy30DayAvg_not_in?: InputMaybe>; - apy_eq?: InputMaybe; - apy_gt?: InputMaybe; - apy_gte?: InputMaybe; - apy_in?: InputMaybe>; - apy_isNull?: InputMaybe; - apy_lt?: InputMaybe; - apy_lte?: InputMaybe; - apy_not_eq?: InputMaybe; - apy_not_in?: InputMaybe>; + UsdcAsc = 'usdc_ASC', + UsdcAscNullsFirst = 'usdc_ASC_NULLS_FIRST', + UsdcDesc = 'usdc_DESC', + UsdcDescNullsLast = 'usdc_DESC_NULLS_LAST', + UsdtAsc = 'usdt_ASC', + UsdtAscNullsFirst = 'usdt_ASC_NULLS_FIRST', + UsdtDesc = 'usdt_DESC', + UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' +} + +export type OusdCompoundStrategyWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -9368,81 +8504,15 @@ export type OusdDailyStatWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; - collateral_every?: InputMaybe; - collateral_none?: InputMaybe; - collateral_some?: InputMaybe; - dripperWETH_eq?: InputMaybe; - dripperWETH_gt?: InputMaybe; - dripperWETH_gte?: InputMaybe; - dripperWETH_in?: InputMaybe>; - dripperWETH_isNull?: InputMaybe; - dripperWETH_lt?: InputMaybe; - dripperWETH_lte?: InputMaybe; - dripperWETH_not_eq?: InputMaybe; - dripperWETH_not_in?: InputMaybe>; - feesETH7Day_eq?: InputMaybe; - feesETH7Day_gt?: InputMaybe; - feesETH7Day_gte?: InputMaybe; - feesETH7Day_in?: InputMaybe>; - feesETH7Day_isNull?: InputMaybe; - feesETH7Day_lt?: InputMaybe; - feesETH7Day_lte?: InputMaybe; - feesETH7Day_not_eq?: InputMaybe; - feesETH7Day_not_in?: InputMaybe>; - feesETHAllTime_eq?: InputMaybe; - feesETHAllTime_gt?: InputMaybe; - feesETHAllTime_gte?: InputMaybe; - feesETHAllTime_in?: InputMaybe>; - feesETHAllTime_isNull?: InputMaybe; - feesETHAllTime_lt?: InputMaybe; - feesETHAllTime_lte?: InputMaybe; - feesETHAllTime_not_eq?: InputMaybe; - feesETHAllTime_not_in?: InputMaybe>; - feesETH_eq?: InputMaybe; - feesETH_gt?: InputMaybe; - feesETH_gte?: InputMaybe; - feesETH_in?: InputMaybe>; - feesETH_isNull?: InputMaybe; - feesETH_lt?: InputMaybe; - feesETH_lte?: InputMaybe; - feesETH_not_eq?: InputMaybe; - feesETH_not_in?: InputMaybe>; - feesUSD7Day_eq?: InputMaybe; - feesUSD7Day_gt?: InputMaybe; - feesUSD7Day_gte?: InputMaybe; - feesUSD7Day_in?: InputMaybe>; - feesUSD7Day_isNull?: InputMaybe; - feesUSD7Day_lt?: InputMaybe; - feesUSD7Day_lte?: InputMaybe; - feesUSD7Day_not_eq?: InputMaybe; - feesUSD7Day_not_in?: InputMaybe>; - feesUSDAllTime_eq?: InputMaybe; - feesUSDAllTime_gt?: InputMaybe; - feesUSDAllTime_gte?: InputMaybe; - feesUSDAllTime_in?: InputMaybe>; - feesUSDAllTime_isNull?: InputMaybe; - feesUSDAllTime_lt?: InputMaybe; - feesUSDAllTime_lte?: InputMaybe; - feesUSDAllTime_not_eq?: InputMaybe; - feesUSDAllTime_not_in?: InputMaybe>; - feesUSD_eq?: InputMaybe; - feesUSD_gt?: InputMaybe; - feesUSD_gte?: InputMaybe; - feesUSD_in?: InputMaybe>; - feesUSD_isNull?: InputMaybe; - feesUSD_lt?: InputMaybe; - feesUSD_lte?: InputMaybe; - feesUSD_not_eq?: InputMaybe; - feesUSD_not_in?: InputMaybe>; - holdersOverThreshold_eq?: InputMaybe; - holdersOverThreshold_gt?: InputMaybe; - holdersOverThreshold_gte?: InputMaybe; - holdersOverThreshold_in?: InputMaybe>; - holdersOverThreshold_isNull?: InputMaybe; - holdersOverThreshold_lt?: InputMaybe; - holdersOverThreshold_lte?: InputMaybe; - holdersOverThreshold_not_eq?: InputMaybe; - holdersOverThreshold_not_in?: InputMaybe>; + dai_eq?: InputMaybe; + dai_gt?: InputMaybe; + dai_gte?: InputMaybe; + dai_in?: InputMaybe>; + dai_isNull?: InputMaybe; + dai_lt?: InputMaybe; + dai_lte?: InputMaybe; + dai_not_eq?: InputMaybe; + dai_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -9460,45 +8530,6 @@ export type OusdDailyStatWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - marketCapUSD_eq?: InputMaybe; - marketCapUSD_gt?: InputMaybe; - marketCapUSD_gte?: InputMaybe; - marketCapUSD_in?: InputMaybe>; - marketCapUSD_isNull?: InputMaybe; - marketCapUSD_lt?: InputMaybe; - marketCapUSD_lte?: InputMaybe; - marketCapUSD_not_eq?: InputMaybe; - marketCapUSD_not_in?: InputMaybe>; - nonRebasingSupply_eq?: InputMaybe; - nonRebasingSupply_gt?: InputMaybe; - nonRebasingSupply_gte?: InputMaybe; - nonRebasingSupply_in?: InputMaybe>; - nonRebasingSupply_isNull?: InputMaybe; - nonRebasingSupply_lt?: InputMaybe; - nonRebasingSupply_lte?: InputMaybe; - nonRebasingSupply_not_eq?: InputMaybe; - nonRebasingSupply_not_in?: InputMaybe>; - pegPrice_eq?: InputMaybe; - pegPrice_gt?: InputMaybe; - pegPrice_gte?: InputMaybe; - pegPrice_in?: InputMaybe>; - pegPrice_isNull?: InputMaybe; - pegPrice_lt?: InputMaybe; - pegPrice_lte?: InputMaybe; - pegPrice_not_eq?: InputMaybe; - pegPrice_not_in?: InputMaybe>; - rebasingSupply_eq?: InputMaybe; - rebasingSupply_gt?: InputMaybe; - rebasingSupply_gte?: InputMaybe; - rebasingSupply_in?: InputMaybe>; - rebasingSupply_isNull?: InputMaybe; - rebasingSupply_lt?: InputMaybe; - rebasingSupply_lte?: InputMaybe; - rebasingSupply_not_eq?: InputMaybe; - rebasingSupply_not_in?: InputMaybe>; - strategies_every?: InputMaybe; - strategies_none?: InputMaybe; - strategies_some?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -9508,120 +8539,28 @@ export type OusdDailyStatWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - totalSupplyUSD_eq?: InputMaybe; - totalSupplyUSD_gt?: InputMaybe; - totalSupplyUSD_gte?: InputMaybe; - totalSupplyUSD_in?: InputMaybe>; - totalSupplyUSD_isNull?: InputMaybe; - totalSupplyUSD_lt?: InputMaybe; - totalSupplyUSD_lte?: InputMaybe; - totalSupplyUSD_not_eq?: InputMaybe; - totalSupplyUSD_not_in?: InputMaybe>; - totalSupply_eq?: InputMaybe; - totalSupply_gt?: InputMaybe; - totalSupply_gte?: InputMaybe; - totalSupply_in?: InputMaybe>; - totalSupply_isNull?: InputMaybe; - totalSupply_lt?: InputMaybe; - totalSupply_lte?: InputMaybe; - totalSupply_not_eq?: InputMaybe; - totalSupply_not_in?: InputMaybe>; - tradingVolumeUSD_eq?: InputMaybe; - tradingVolumeUSD_gt?: InputMaybe; - tradingVolumeUSD_gte?: InputMaybe; - tradingVolumeUSD_in?: InputMaybe>; - tradingVolumeUSD_isNull?: InputMaybe; - tradingVolumeUSD_lt?: InputMaybe; - tradingVolumeUSD_lte?: InputMaybe; - tradingVolumeUSD_not_eq?: InputMaybe; - tradingVolumeUSD_not_in?: InputMaybe>; - wrappedSupply_eq?: InputMaybe; - wrappedSupply_gt?: InputMaybe; - wrappedSupply_gte?: InputMaybe; - wrappedSupply_in?: InputMaybe>; - wrappedSupply_isNull?: InputMaybe; - wrappedSupply_lt?: InputMaybe; - wrappedSupply_lte?: InputMaybe; - wrappedSupply_not_eq?: InputMaybe; - wrappedSupply_not_in?: InputMaybe>; - yieldETH7Day_eq?: InputMaybe; - yieldETH7Day_gt?: InputMaybe; - yieldETH7Day_gte?: InputMaybe; - yieldETH7Day_in?: InputMaybe>; - yieldETH7Day_isNull?: InputMaybe; - yieldETH7Day_lt?: InputMaybe; - yieldETH7Day_lte?: InputMaybe; - yieldETH7Day_not_eq?: InputMaybe; - yieldETH7Day_not_in?: InputMaybe>; - yieldETHAllTime_eq?: InputMaybe; - yieldETHAllTime_gt?: InputMaybe; - yieldETHAllTime_gte?: InputMaybe; - yieldETHAllTime_in?: InputMaybe>; - yieldETHAllTime_isNull?: InputMaybe; - yieldETHAllTime_lt?: InputMaybe; - yieldETHAllTime_lte?: InputMaybe; - yieldETHAllTime_not_eq?: InputMaybe; - yieldETHAllTime_not_in?: InputMaybe>; - yieldETH_eq?: InputMaybe; - yieldETH_gt?: InputMaybe; - yieldETH_gte?: InputMaybe; - yieldETH_in?: InputMaybe>; - yieldETH_isNull?: InputMaybe; - yieldETH_lt?: InputMaybe; - yieldETH_lte?: InputMaybe; - yieldETH_not_eq?: InputMaybe; - yieldETH_not_in?: InputMaybe>; - yieldUSD7Day_eq?: InputMaybe; - yieldUSD7Day_gt?: InputMaybe; - yieldUSD7Day_gte?: InputMaybe; - yieldUSD7Day_in?: InputMaybe>; - yieldUSD7Day_isNull?: InputMaybe; - yieldUSD7Day_lt?: InputMaybe; - yieldUSD7Day_lte?: InputMaybe; - yieldUSD7Day_not_eq?: InputMaybe; - yieldUSD7Day_not_in?: InputMaybe>; - yieldUSDAllTime_eq?: InputMaybe; - yieldUSDAllTime_gt?: InputMaybe; - yieldUSDAllTime_gte?: InputMaybe; - yieldUSDAllTime_in?: InputMaybe>; - yieldUSDAllTime_isNull?: InputMaybe; - yieldUSDAllTime_lt?: InputMaybe; - yieldUSDAllTime_lte?: InputMaybe; - yieldUSDAllTime_not_eq?: InputMaybe; - yieldUSDAllTime_not_in?: InputMaybe>; - yieldUSD_eq?: InputMaybe; - yieldUSD_gt?: InputMaybe; - yieldUSD_gte?: InputMaybe; - yieldUSD_in?: InputMaybe>; - yieldUSD_isNull?: InputMaybe; - yieldUSD_lt?: InputMaybe; - yieldUSD_lte?: InputMaybe; - yieldUSD_not_eq?: InputMaybe; - yieldUSD_not_in?: InputMaybe>; -}; - -export type OusdDailyStatsConnection = { - __typename?: 'OUSDDailyStatsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OusdEdge = { - __typename?: 'OUSDEdge'; - cursor: Scalars['String']['output']; - node: Ousd; -}; - -export type OusdFluxStrategiesConnection = { - __typename?: 'OUSDFluxStrategiesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; + usdc_eq?: InputMaybe; + usdc_gt?: InputMaybe; + usdc_gte?: InputMaybe; + usdc_in?: InputMaybe>; + usdc_isNull?: InputMaybe; + usdc_lt?: InputMaybe; + usdc_lte?: InputMaybe; + usdc_not_eq?: InputMaybe; + usdc_not_in?: InputMaybe>; + usdt_eq?: InputMaybe; + usdt_gt?: InputMaybe; + usdt_gte?: InputMaybe; + usdt_in?: InputMaybe>; + usdt_isNull?: InputMaybe; + usdt_lt?: InputMaybe; + usdt_lte?: InputMaybe; + usdt_not_eq?: InputMaybe; + usdt_not_in?: InputMaybe>; }; -export type OusdFluxStrategy = { - __typename?: 'OUSDFluxStrategy'; +export type OusdConvexLusdPlus3Crv = { + __typename?: 'OUSDConvexLUSDPlus3Crv'; blockNumber: Scalars['Int']['output']; dai: Scalars['BigInt']['output']; id: Scalars['String']['output']; @@ -9630,13 +8569,13 @@ export type OusdFluxStrategy = { usdt: Scalars['BigInt']['output']; }; -export type OusdFluxStrategyEdge = { - __typename?: 'OUSDFluxStrategyEdge'; +export type OusdConvexLusdPlus3CrvEdge = { + __typename?: 'OUSDConvexLUSDPlus3CrvEdge'; cursor: Scalars['String']['output']; - node: OusdFluxStrategy; + node: OusdConvexLusdPlus3Crv; }; -export enum OusdFluxStrategyOrderByInput { +export enum OusdConvexLusdPlus3CrvOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', @@ -9663,9 +8602,9 @@ export enum OusdFluxStrategyOrderByInput { UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' } -export type OusdFluxStrategyWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OusdConvexLusdPlus3CrvWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -9730,69 +8669,45 @@ export type OusdFluxStrategyWhereInput = { usdt_not_in?: InputMaybe>; }; -export type OusdHistoriesConnection = { - __typename?: 'OUSDHistoriesConnection'; - edges: Array; +export type OusdConvexLusdPlus3CrvsConnection = { + __typename?: 'OUSDConvexLUSDPlus3CrvsConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -/** The History entity tracks events that change the balance of OUSD for an address. */ -export type OusdHistory = { - __typename?: 'OUSDHistory'; - address: OusdAddress; - balance: Scalars['BigInt']['output']; +export type OusdConvexStrategiesConnection = { + __typename?: 'OUSDConvexStrategiesConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; +}; + +export type OusdConvexStrategy = { + __typename?: 'OUSDConvexStrategy'; blockNumber: Scalars['Int']['output']; + dai: Scalars['BigInt']['output']; id: Scalars['String']['output']; timestamp: Scalars['DateTime']['output']; - txHash: Scalars['String']['output']; - type: HistoryType; - value: Scalars['BigInt']['output']; + usdc: Scalars['BigInt']['output']; + usdt: Scalars['BigInt']['output']; }; -export type OusdHistoryEdge = { - __typename?: 'OUSDHistoryEdge'; +export type OusdConvexStrategyEdge = { + __typename?: 'OUSDConvexStrategyEdge'; cursor: Scalars['String']['output']; - node: OusdHistory; + node: OusdConvexStrategy; }; -export enum OusdHistoryOrderByInput { - AddressBalanceAsc = 'address_balance_ASC', - AddressBalanceAscNullsFirst = 'address_balance_ASC_NULLS_FIRST', - AddressBalanceDesc = 'address_balance_DESC', - AddressBalanceDescNullsLast = 'address_balance_DESC_NULLS_LAST', - AddressCreditsAsc = 'address_credits_ASC', - AddressCreditsAscNullsFirst = 'address_credits_ASC_NULLS_FIRST', - AddressCreditsDesc = 'address_credits_DESC', - AddressCreditsDescNullsLast = 'address_credits_DESC_NULLS_LAST', - AddressEarnedAsc = 'address_earned_ASC', - AddressEarnedAscNullsFirst = 'address_earned_ASC_NULLS_FIRST', - AddressEarnedDesc = 'address_earned_DESC', - AddressEarnedDescNullsLast = 'address_earned_DESC_NULLS_LAST', - AddressIdAsc = 'address_id_ASC', - AddressIdAscNullsFirst = 'address_id_ASC_NULLS_FIRST', - AddressIdDesc = 'address_id_DESC', - AddressIdDescNullsLast = 'address_id_DESC_NULLS_LAST', - AddressIsContractAsc = 'address_isContract_ASC', - AddressIsContractAscNullsFirst = 'address_isContract_ASC_NULLS_FIRST', - AddressIsContractDesc = 'address_isContract_DESC', - AddressIsContractDescNullsLast = 'address_isContract_DESC_NULLS_LAST', - AddressLastUpdatedAsc = 'address_lastUpdated_ASC', - AddressLastUpdatedAscNullsFirst = 'address_lastUpdated_ASC_NULLS_FIRST', - AddressLastUpdatedDesc = 'address_lastUpdated_DESC', - AddressLastUpdatedDescNullsLast = 'address_lastUpdated_DESC_NULLS_LAST', - AddressRebasingOptionAsc = 'address_rebasingOption_ASC', - AddressRebasingOptionAscNullsFirst = 'address_rebasingOption_ASC_NULLS_FIRST', - AddressRebasingOptionDesc = 'address_rebasingOption_DESC', - AddressRebasingOptionDescNullsLast = 'address_rebasingOption_DESC_NULLS_LAST', - BalanceAsc = 'balance_ASC', - BalanceAscNullsFirst = 'balance_ASC_NULLS_FIRST', - BalanceDesc = 'balance_DESC', - BalanceDescNullsLast = 'balance_DESC_NULLS_LAST', +export enum OusdConvexStrategyOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + DaiAsc = 'dai_ASC', + DaiAscNullsFirst = 'dai_ASC_NULLS_FIRST', + DaiDesc = 'dai_DESC', + DaiDescNullsLast = 'dai_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', @@ -9801,34 +8716,19 @@ export enum OusdHistoryOrderByInput { TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TxHashAsc = 'txHash_ASC', - TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', - TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST', - TypeAsc = 'type_ASC', - TypeAscNullsFirst = 'type_ASC_NULLS_FIRST', - TypeDesc = 'type_DESC', - TypeDescNullsLast = 'type_DESC_NULLS_LAST', - ValueAsc = 'value_ASC', - ValueAscNullsFirst = 'value_ASC_NULLS_FIRST', - ValueDesc = 'value_DESC', - ValueDescNullsLast = 'value_DESC_NULLS_LAST' + UsdcAsc = 'usdc_ASC', + UsdcAscNullsFirst = 'usdc_ASC_NULLS_FIRST', + UsdcDesc = 'usdc_DESC', + UsdcDescNullsLast = 'usdc_DESC_NULLS_LAST', + UsdtAsc = 'usdt_ASC', + UsdtAscNullsFirst = 'usdt_ASC_NULLS_FIRST', + UsdtDesc = 'usdt_DESC', + UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' } -export type OusdHistoryWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - address?: InputMaybe; - address_isNull?: InputMaybe; - balance_eq?: InputMaybe; - balance_gt?: InputMaybe; - balance_gte?: InputMaybe; - balance_in?: InputMaybe>; - balance_isNull?: InputMaybe; - balance_lt?: InputMaybe; - balance_lte?: InputMaybe; - balance_not_eq?: InputMaybe; - balance_not_in?: InputMaybe>; +export type OusdConvexStrategyWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -9838,6 +8738,15 @@ export type OusdHistoryWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; + dai_eq?: InputMaybe; + dai_gt?: InputMaybe; + dai_gte?: InputMaybe; + dai_in?: InputMaybe>; + dai_isNull?: InputMaybe; + dai_lt?: InputMaybe; + dai_lte?: InputMaybe; + dai_not_eq?: InputMaybe; + dai_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -9864,92 +8773,269 @@ export type OusdHistoryWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - txHash_contains?: InputMaybe; - txHash_containsInsensitive?: InputMaybe; - txHash_endsWith?: InputMaybe; - txHash_eq?: InputMaybe; - txHash_gt?: InputMaybe; - txHash_gte?: InputMaybe; - txHash_in?: InputMaybe>; - txHash_isNull?: InputMaybe; - txHash_lt?: InputMaybe; - txHash_lte?: InputMaybe; - txHash_not_contains?: InputMaybe; - txHash_not_containsInsensitive?: InputMaybe; - txHash_not_endsWith?: InputMaybe; - txHash_not_eq?: InputMaybe; - txHash_not_in?: InputMaybe>; - txHash_not_startsWith?: InputMaybe; - txHash_startsWith?: InputMaybe; - type_eq?: InputMaybe; - type_in?: InputMaybe>; - type_isNull?: InputMaybe; - type_not_eq?: InputMaybe; - type_not_in?: InputMaybe>; - value_eq?: InputMaybe; - value_gt?: InputMaybe; - value_gte?: InputMaybe; - value_in?: InputMaybe>; - value_isNull?: InputMaybe; - value_lt?: InputMaybe; - value_lte?: InputMaybe; - value_not_eq?: InputMaybe; - value_not_in?: InputMaybe>; -}; - -export type OusdMetaStrategiesConnection = { - __typename?: 'OUSDMetaStrategiesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; + usdc_eq?: InputMaybe; + usdc_gt?: InputMaybe; + usdc_gte?: InputMaybe; + usdc_in?: InputMaybe>; + usdc_isNull?: InputMaybe; + usdc_lt?: InputMaybe; + usdc_lte?: InputMaybe; + usdc_not_eq?: InputMaybe; + usdc_not_in?: InputMaybe>; + usdt_eq?: InputMaybe; + usdt_gt?: InputMaybe; + usdt_gte?: InputMaybe; + usdt_in?: InputMaybe>; + usdt_isNull?: InputMaybe; + usdt_lt?: InputMaybe; + usdt_lte?: InputMaybe; + usdt_not_eq?: InputMaybe; + usdt_not_in?: InputMaybe>; }; -export type OusdMetaStrategy = { - __typename?: 'OUSDMetaStrategy'; +export type OusdDailyStat = { + __typename?: 'OUSDDailyStat'; + amoSupply: Scalars['BigInt']['output']; + apr: Scalars['Float']['output']; + apy: Scalars['Float']['output']; + apy7DayAvg: Scalars['Float']['output']; + apy14DayAvg: Scalars['Float']['output']; + apy30DayAvg: Scalars['Float']['output']; blockNumber: Scalars['Int']['output']; - dai: Scalars['BigInt']['output']; + collateral: Array; + dripperWETH: Scalars['BigInt']['output']; + feesETH: Scalars['BigInt']['output']; + feesETH7Day: Scalars['BigInt']['output']; + feesETHAllTime: Scalars['BigInt']['output']; + feesUSD: Scalars['BigInt']['output']; + feesUSD7Day: Scalars['BigInt']['output']; + feesUSDAllTime: Scalars['BigInt']['output']; + holdersOverThreshold: Scalars['Int']['output']; id: Scalars['String']['output']; + marketCapUSD: Scalars['Float']['output']; + nonRebasingSupply: Scalars['BigInt']['output']; + pegPrice: Scalars['BigInt']['output']; + rebasingSupply: Scalars['BigInt']['output']; + strategies: Array; timestamp: Scalars['DateTime']['output']; - usdc: Scalars['BigInt']['output']; - usdt: Scalars['BigInt']['output']; + totalSupply: Scalars['BigInt']['output']; + totalSupplyUSD: Scalars['Float']['output']; + tradingVolumeUSD: Scalars['Float']['output']; + wrappedSupply: Scalars['BigInt']['output']; + yieldETH: Scalars['BigInt']['output']; + yieldETH7Day: Scalars['BigInt']['output']; + yieldETHAllTime: Scalars['BigInt']['output']; + yieldUSD: Scalars['BigInt']['output']; + yieldUSD7Day: Scalars['BigInt']['output']; + yieldUSDAllTime: Scalars['BigInt']['output']; }; -export type OusdMetaStrategyEdge = { - __typename?: 'OUSDMetaStrategyEdge'; + +export type OusdDailyStatCollateralArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + + +export type OusdDailyStatStrategiesArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + +export type OusdDailyStatEdge = { + __typename?: 'OUSDDailyStatEdge'; cursor: Scalars['String']['output']; - node: OusdMetaStrategy; + node: OusdDailyStat; }; -export enum OusdMetaStrategyOrderByInput { +export enum OusdDailyStatOrderByInput { + AmoSupplyAsc = 'amoSupply_ASC', + AmoSupplyAscNullsFirst = 'amoSupply_ASC_NULLS_FIRST', + AmoSupplyDesc = 'amoSupply_DESC', + AmoSupplyDescNullsLast = 'amoSupply_DESC_NULLS_LAST', + AprAsc = 'apr_ASC', + AprAscNullsFirst = 'apr_ASC_NULLS_FIRST', + AprDesc = 'apr_DESC', + AprDescNullsLast = 'apr_DESC_NULLS_LAST', + Apy7DayAvgAsc = 'apy7DayAvg_ASC', + Apy7DayAvgAscNullsFirst = 'apy7DayAvg_ASC_NULLS_FIRST', + Apy7DayAvgDesc = 'apy7DayAvg_DESC', + Apy7DayAvgDescNullsLast = 'apy7DayAvg_DESC_NULLS_LAST', + Apy14DayAvgAsc = 'apy14DayAvg_ASC', + Apy14DayAvgAscNullsFirst = 'apy14DayAvg_ASC_NULLS_FIRST', + Apy14DayAvgDesc = 'apy14DayAvg_DESC', + Apy14DayAvgDescNullsLast = 'apy14DayAvg_DESC_NULLS_LAST', + Apy30DayAvgAsc = 'apy30DayAvg_ASC', + Apy30DayAvgAscNullsFirst = 'apy30DayAvg_ASC_NULLS_FIRST', + Apy30DayAvgDesc = 'apy30DayAvg_DESC', + Apy30DayAvgDescNullsLast = 'apy30DayAvg_DESC_NULLS_LAST', + ApyAsc = 'apy_ASC', + ApyAscNullsFirst = 'apy_ASC_NULLS_FIRST', + ApyDesc = 'apy_DESC', + ApyDescNullsLast = 'apy_DESC_NULLS_LAST', BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - DaiAsc = 'dai_ASC', - DaiAscNullsFirst = 'dai_ASC_NULLS_FIRST', - DaiDesc = 'dai_DESC', - DaiDescNullsLast = 'dai_DESC_NULLS_LAST', + DripperWethAsc = 'dripperWETH_ASC', + DripperWethAscNullsFirst = 'dripperWETH_ASC_NULLS_FIRST', + DripperWethDesc = 'dripperWETH_DESC', + DripperWethDescNullsLast = 'dripperWETH_DESC_NULLS_LAST', + FeesEth7DayAsc = 'feesETH7Day_ASC', + FeesEth7DayAscNullsFirst = 'feesETH7Day_ASC_NULLS_FIRST', + FeesEth7DayDesc = 'feesETH7Day_DESC', + FeesEth7DayDescNullsLast = 'feesETH7Day_DESC_NULLS_LAST', + FeesEthAllTimeAsc = 'feesETHAllTime_ASC', + FeesEthAllTimeAscNullsFirst = 'feesETHAllTime_ASC_NULLS_FIRST', + FeesEthAllTimeDesc = 'feesETHAllTime_DESC', + FeesEthAllTimeDescNullsLast = 'feesETHAllTime_DESC_NULLS_LAST', + FeesEthAsc = 'feesETH_ASC', + FeesEthAscNullsFirst = 'feesETH_ASC_NULLS_FIRST', + FeesEthDesc = 'feesETH_DESC', + FeesEthDescNullsLast = 'feesETH_DESC_NULLS_LAST', + FeesUsd7DayAsc = 'feesUSD7Day_ASC', + FeesUsd7DayAscNullsFirst = 'feesUSD7Day_ASC_NULLS_FIRST', + FeesUsd7DayDesc = 'feesUSD7Day_DESC', + FeesUsd7DayDescNullsLast = 'feesUSD7Day_DESC_NULLS_LAST', + FeesUsdAllTimeAsc = 'feesUSDAllTime_ASC', + FeesUsdAllTimeAscNullsFirst = 'feesUSDAllTime_ASC_NULLS_FIRST', + FeesUsdAllTimeDesc = 'feesUSDAllTime_DESC', + FeesUsdAllTimeDescNullsLast = 'feesUSDAllTime_DESC_NULLS_LAST', + FeesUsdAsc = 'feesUSD_ASC', + FeesUsdAscNullsFirst = 'feesUSD_ASC_NULLS_FIRST', + FeesUsdDesc = 'feesUSD_DESC', + FeesUsdDescNullsLast = 'feesUSD_DESC_NULLS_LAST', + HoldersOverThresholdAsc = 'holdersOverThreshold_ASC', + HoldersOverThresholdAscNullsFirst = 'holdersOverThreshold_ASC_NULLS_FIRST', + HoldersOverThresholdDesc = 'holdersOverThreshold_DESC', + HoldersOverThresholdDescNullsLast = 'holdersOverThreshold_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', + MarketCapUsdAsc = 'marketCapUSD_ASC', + MarketCapUsdAscNullsFirst = 'marketCapUSD_ASC_NULLS_FIRST', + MarketCapUsdDesc = 'marketCapUSD_DESC', + MarketCapUsdDescNullsLast = 'marketCapUSD_DESC_NULLS_LAST', + NonRebasingSupplyAsc = 'nonRebasingSupply_ASC', + NonRebasingSupplyAscNullsFirst = 'nonRebasingSupply_ASC_NULLS_FIRST', + NonRebasingSupplyDesc = 'nonRebasingSupply_DESC', + NonRebasingSupplyDescNullsLast = 'nonRebasingSupply_DESC_NULLS_LAST', + PegPriceAsc = 'pegPrice_ASC', + PegPriceAscNullsFirst = 'pegPrice_ASC_NULLS_FIRST', + PegPriceDesc = 'pegPrice_DESC', + PegPriceDescNullsLast = 'pegPrice_DESC_NULLS_LAST', + RebasingSupplyAsc = 'rebasingSupply_ASC', + RebasingSupplyAscNullsFirst = 'rebasingSupply_ASC_NULLS_FIRST', + RebasingSupplyDesc = 'rebasingSupply_DESC', + RebasingSupplyDescNullsLast = 'rebasingSupply_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - UsdcAsc = 'usdc_ASC', - UsdcAscNullsFirst = 'usdc_ASC_NULLS_FIRST', - UsdcDesc = 'usdc_DESC', - UsdcDescNullsLast = 'usdc_DESC_NULLS_LAST', - UsdtAsc = 'usdt_ASC', - UsdtAscNullsFirst = 'usdt_ASC_NULLS_FIRST', - UsdtDesc = 'usdt_DESC', - UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' + TotalSupplyUsdAsc = 'totalSupplyUSD_ASC', + TotalSupplyUsdAscNullsFirst = 'totalSupplyUSD_ASC_NULLS_FIRST', + TotalSupplyUsdDesc = 'totalSupplyUSD_DESC', + TotalSupplyUsdDescNullsLast = 'totalSupplyUSD_DESC_NULLS_LAST', + TotalSupplyAsc = 'totalSupply_ASC', + TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', + TotalSupplyDesc = 'totalSupply_DESC', + TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST', + TradingVolumeUsdAsc = 'tradingVolumeUSD_ASC', + TradingVolumeUsdAscNullsFirst = 'tradingVolumeUSD_ASC_NULLS_FIRST', + TradingVolumeUsdDesc = 'tradingVolumeUSD_DESC', + TradingVolumeUsdDescNullsLast = 'tradingVolumeUSD_DESC_NULLS_LAST', + WrappedSupplyAsc = 'wrappedSupply_ASC', + WrappedSupplyAscNullsFirst = 'wrappedSupply_ASC_NULLS_FIRST', + WrappedSupplyDesc = 'wrappedSupply_DESC', + WrappedSupplyDescNullsLast = 'wrappedSupply_DESC_NULLS_LAST', + YieldEth7DayAsc = 'yieldETH7Day_ASC', + YieldEth7DayAscNullsFirst = 'yieldETH7Day_ASC_NULLS_FIRST', + YieldEth7DayDesc = 'yieldETH7Day_DESC', + YieldEth7DayDescNullsLast = 'yieldETH7Day_DESC_NULLS_LAST', + YieldEthAllTimeAsc = 'yieldETHAllTime_ASC', + YieldEthAllTimeAscNullsFirst = 'yieldETHAllTime_ASC_NULLS_FIRST', + YieldEthAllTimeDesc = 'yieldETHAllTime_DESC', + YieldEthAllTimeDescNullsLast = 'yieldETHAllTime_DESC_NULLS_LAST', + YieldEthAsc = 'yieldETH_ASC', + YieldEthAscNullsFirst = 'yieldETH_ASC_NULLS_FIRST', + YieldEthDesc = 'yieldETH_DESC', + YieldEthDescNullsLast = 'yieldETH_DESC_NULLS_LAST', + YieldUsd7DayAsc = 'yieldUSD7Day_ASC', + YieldUsd7DayAscNullsFirst = 'yieldUSD7Day_ASC_NULLS_FIRST', + YieldUsd7DayDesc = 'yieldUSD7Day_DESC', + YieldUsd7DayDescNullsLast = 'yieldUSD7Day_DESC_NULLS_LAST', + YieldUsdAllTimeAsc = 'yieldUSDAllTime_ASC', + YieldUsdAllTimeAscNullsFirst = 'yieldUSDAllTime_ASC_NULLS_FIRST', + YieldUsdAllTimeDesc = 'yieldUSDAllTime_DESC', + YieldUsdAllTimeDescNullsLast = 'yieldUSDAllTime_DESC_NULLS_LAST', + YieldUsdAsc = 'yieldUSD_ASC', + YieldUsdAscNullsFirst = 'yieldUSD_ASC_NULLS_FIRST', + YieldUsdDesc = 'yieldUSD_DESC', + YieldUsdDescNullsLast = 'yieldUSD_DESC_NULLS_LAST' } -export type OusdMetaStrategyWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OusdDailyStatWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + amoSupply_eq?: InputMaybe; + amoSupply_gt?: InputMaybe; + amoSupply_gte?: InputMaybe; + amoSupply_in?: InputMaybe>; + amoSupply_isNull?: InputMaybe; + amoSupply_lt?: InputMaybe; + amoSupply_lte?: InputMaybe; + amoSupply_not_eq?: InputMaybe; + amoSupply_not_in?: InputMaybe>; + apr_eq?: InputMaybe; + apr_gt?: InputMaybe; + apr_gte?: InputMaybe; + apr_in?: InputMaybe>; + apr_isNull?: InputMaybe; + apr_lt?: InputMaybe; + apr_lte?: InputMaybe; + apr_not_eq?: InputMaybe; + apr_not_in?: InputMaybe>; + apy7DayAvg_eq?: InputMaybe; + apy7DayAvg_gt?: InputMaybe; + apy7DayAvg_gte?: InputMaybe; + apy7DayAvg_in?: InputMaybe>; + apy7DayAvg_isNull?: InputMaybe; + apy7DayAvg_lt?: InputMaybe; + apy7DayAvg_lte?: InputMaybe; + apy7DayAvg_not_eq?: InputMaybe; + apy7DayAvg_not_in?: InputMaybe>; + apy14DayAvg_eq?: InputMaybe; + apy14DayAvg_gt?: InputMaybe; + apy14DayAvg_gte?: InputMaybe; + apy14DayAvg_in?: InputMaybe>; + apy14DayAvg_isNull?: InputMaybe; + apy14DayAvg_lt?: InputMaybe; + apy14DayAvg_lte?: InputMaybe; + apy14DayAvg_not_eq?: InputMaybe; + apy14DayAvg_not_in?: InputMaybe>; + apy30DayAvg_eq?: InputMaybe; + apy30DayAvg_gt?: InputMaybe; + apy30DayAvg_gte?: InputMaybe; + apy30DayAvg_in?: InputMaybe>; + apy30DayAvg_isNull?: InputMaybe; + apy30DayAvg_lt?: InputMaybe; + apy30DayAvg_lte?: InputMaybe; + apy30DayAvg_not_eq?: InputMaybe; + apy30DayAvg_not_in?: InputMaybe>; + apy_eq?: InputMaybe; + apy_gt?: InputMaybe; + apy_gte?: InputMaybe; + apy_in?: InputMaybe>; + apy_isNull?: InputMaybe; + apy_lt?: InputMaybe; + apy_lte?: InputMaybe; + apy_not_eq?: InputMaybe; + apy_not_in?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -9959,15 +9045,81 @@ export type OusdMetaStrategyWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; - dai_eq?: InputMaybe; - dai_gt?: InputMaybe; - dai_gte?: InputMaybe; - dai_in?: InputMaybe>; - dai_isNull?: InputMaybe; - dai_lt?: InputMaybe; - dai_lte?: InputMaybe; - dai_not_eq?: InputMaybe; - dai_not_in?: InputMaybe>; + collateral_every?: InputMaybe; + collateral_none?: InputMaybe; + collateral_some?: InputMaybe; + dripperWETH_eq?: InputMaybe; + dripperWETH_gt?: InputMaybe; + dripperWETH_gte?: InputMaybe; + dripperWETH_in?: InputMaybe>; + dripperWETH_isNull?: InputMaybe; + dripperWETH_lt?: InputMaybe; + dripperWETH_lte?: InputMaybe; + dripperWETH_not_eq?: InputMaybe; + dripperWETH_not_in?: InputMaybe>; + feesETH7Day_eq?: InputMaybe; + feesETH7Day_gt?: InputMaybe; + feesETH7Day_gte?: InputMaybe; + feesETH7Day_in?: InputMaybe>; + feesETH7Day_isNull?: InputMaybe; + feesETH7Day_lt?: InputMaybe; + feesETH7Day_lte?: InputMaybe; + feesETH7Day_not_eq?: InputMaybe; + feesETH7Day_not_in?: InputMaybe>; + feesETHAllTime_eq?: InputMaybe; + feesETHAllTime_gt?: InputMaybe; + feesETHAllTime_gte?: InputMaybe; + feesETHAllTime_in?: InputMaybe>; + feesETHAllTime_isNull?: InputMaybe; + feesETHAllTime_lt?: InputMaybe; + feesETHAllTime_lte?: InputMaybe; + feesETHAllTime_not_eq?: InputMaybe; + feesETHAllTime_not_in?: InputMaybe>; + feesETH_eq?: InputMaybe; + feesETH_gt?: InputMaybe; + feesETH_gte?: InputMaybe; + feesETH_in?: InputMaybe>; + feesETH_isNull?: InputMaybe; + feesETH_lt?: InputMaybe; + feesETH_lte?: InputMaybe; + feesETH_not_eq?: InputMaybe; + feesETH_not_in?: InputMaybe>; + feesUSD7Day_eq?: InputMaybe; + feesUSD7Day_gt?: InputMaybe; + feesUSD7Day_gte?: InputMaybe; + feesUSD7Day_in?: InputMaybe>; + feesUSD7Day_isNull?: InputMaybe; + feesUSD7Day_lt?: InputMaybe; + feesUSD7Day_lte?: InputMaybe; + feesUSD7Day_not_eq?: InputMaybe; + feesUSD7Day_not_in?: InputMaybe>; + feesUSDAllTime_eq?: InputMaybe; + feesUSDAllTime_gt?: InputMaybe; + feesUSDAllTime_gte?: InputMaybe; + feesUSDAllTime_in?: InputMaybe>; + feesUSDAllTime_isNull?: InputMaybe; + feesUSDAllTime_lt?: InputMaybe; + feesUSDAllTime_lte?: InputMaybe; + feesUSDAllTime_not_eq?: InputMaybe; + feesUSDAllTime_not_in?: InputMaybe>; + feesUSD_eq?: InputMaybe; + feesUSD_gt?: InputMaybe; + feesUSD_gte?: InputMaybe; + feesUSD_in?: InputMaybe>; + feesUSD_isNull?: InputMaybe; + feesUSD_lt?: InputMaybe; + feesUSD_lte?: InputMaybe; + feesUSD_not_eq?: InputMaybe; + feesUSD_not_in?: InputMaybe>; + holdersOverThreshold_eq?: InputMaybe; + holdersOverThreshold_gt?: InputMaybe; + holdersOverThreshold_gte?: InputMaybe; + holdersOverThreshold_in?: InputMaybe>; + holdersOverThreshold_isNull?: InputMaybe; + holdersOverThreshold_lt?: InputMaybe; + holdersOverThreshold_lte?: InputMaybe; + holdersOverThreshold_not_eq?: InputMaybe; + holdersOverThreshold_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -9985,6 +9137,45 @@ export type OusdMetaStrategyWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; + marketCapUSD_eq?: InputMaybe; + marketCapUSD_gt?: InputMaybe; + marketCapUSD_gte?: InputMaybe; + marketCapUSD_in?: InputMaybe>; + marketCapUSD_isNull?: InputMaybe; + marketCapUSD_lt?: InputMaybe; + marketCapUSD_lte?: InputMaybe; + marketCapUSD_not_eq?: InputMaybe; + marketCapUSD_not_in?: InputMaybe>; + nonRebasingSupply_eq?: InputMaybe; + nonRebasingSupply_gt?: InputMaybe; + nonRebasingSupply_gte?: InputMaybe; + nonRebasingSupply_in?: InputMaybe>; + nonRebasingSupply_isNull?: InputMaybe; + nonRebasingSupply_lt?: InputMaybe; + nonRebasingSupply_lte?: InputMaybe; + nonRebasingSupply_not_eq?: InputMaybe; + nonRebasingSupply_not_in?: InputMaybe>; + pegPrice_eq?: InputMaybe; + pegPrice_gt?: InputMaybe; + pegPrice_gte?: InputMaybe; + pegPrice_in?: InputMaybe>; + pegPrice_isNull?: InputMaybe; + pegPrice_lt?: InputMaybe; + pegPrice_lte?: InputMaybe; + pegPrice_not_eq?: InputMaybe; + pegPrice_not_in?: InputMaybe>; + rebasingSupply_eq?: InputMaybe; + rebasingSupply_gt?: InputMaybe; + rebasingSupply_gte?: InputMaybe; + rebasingSupply_in?: InputMaybe>; + rebasingSupply_isNull?: InputMaybe; + rebasingSupply_lt?: InputMaybe; + rebasingSupply_lte?: InputMaybe; + rebasingSupply_not_eq?: InputMaybe; + rebasingSupply_not_in?: InputMaybe>; + strategies_every?: InputMaybe; + strategies_none?: InputMaybe; + strategies_some?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -9994,28 +9185,114 @@ export type OusdMetaStrategyWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - usdc_eq?: InputMaybe; - usdc_gt?: InputMaybe; - usdc_gte?: InputMaybe; - usdc_in?: InputMaybe>; - usdc_isNull?: InputMaybe; - usdc_lt?: InputMaybe; - usdc_lte?: InputMaybe; - usdc_not_eq?: InputMaybe; - usdc_not_in?: InputMaybe>; - usdt_eq?: InputMaybe; - usdt_gt?: InputMaybe; - usdt_gte?: InputMaybe; - usdt_in?: InputMaybe>; - usdt_isNull?: InputMaybe; - usdt_lt?: InputMaybe; - usdt_lte?: InputMaybe; - usdt_not_eq?: InputMaybe; - usdt_not_in?: InputMaybe>; + totalSupplyUSD_eq?: InputMaybe; + totalSupplyUSD_gt?: InputMaybe; + totalSupplyUSD_gte?: InputMaybe; + totalSupplyUSD_in?: InputMaybe>; + totalSupplyUSD_isNull?: InputMaybe; + totalSupplyUSD_lt?: InputMaybe; + totalSupplyUSD_lte?: InputMaybe; + totalSupplyUSD_not_eq?: InputMaybe; + totalSupplyUSD_not_in?: InputMaybe>; + totalSupply_eq?: InputMaybe; + totalSupply_gt?: InputMaybe; + totalSupply_gte?: InputMaybe; + totalSupply_in?: InputMaybe>; + totalSupply_isNull?: InputMaybe; + totalSupply_lt?: InputMaybe; + totalSupply_lte?: InputMaybe; + totalSupply_not_eq?: InputMaybe; + totalSupply_not_in?: InputMaybe>; + tradingVolumeUSD_eq?: InputMaybe; + tradingVolumeUSD_gt?: InputMaybe; + tradingVolumeUSD_gte?: InputMaybe; + tradingVolumeUSD_in?: InputMaybe>; + tradingVolumeUSD_isNull?: InputMaybe; + tradingVolumeUSD_lt?: InputMaybe; + tradingVolumeUSD_lte?: InputMaybe; + tradingVolumeUSD_not_eq?: InputMaybe; + tradingVolumeUSD_not_in?: InputMaybe>; + wrappedSupply_eq?: InputMaybe; + wrappedSupply_gt?: InputMaybe; + wrappedSupply_gte?: InputMaybe; + wrappedSupply_in?: InputMaybe>; + wrappedSupply_isNull?: InputMaybe; + wrappedSupply_lt?: InputMaybe; + wrappedSupply_lte?: InputMaybe; + wrappedSupply_not_eq?: InputMaybe; + wrappedSupply_not_in?: InputMaybe>; + yieldETH7Day_eq?: InputMaybe; + yieldETH7Day_gt?: InputMaybe; + yieldETH7Day_gte?: InputMaybe; + yieldETH7Day_in?: InputMaybe>; + yieldETH7Day_isNull?: InputMaybe; + yieldETH7Day_lt?: InputMaybe; + yieldETH7Day_lte?: InputMaybe; + yieldETH7Day_not_eq?: InputMaybe; + yieldETH7Day_not_in?: InputMaybe>; + yieldETHAllTime_eq?: InputMaybe; + yieldETHAllTime_gt?: InputMaybe; + yieldETHAllTime_gte?: InputMaybe; + yieldETHAllTime_in?: InputMaybe>; + yieldETHAllTime_isNull?: InputMaybe; + yieldETHAllTime_lt?: InputMaybe; + yieldETHAllTime_lte?: InputMaybe; + yieldETHAllTime_not_eq?: InputMaybe; + yieldETHAllTime_not_in?: InputMaybe>; + yieldETH_eq?: InputMaybe; + yieldETH_gt?: InputMaybe; + yieldETH_gte?: InputMaybe; + yieldETH_in?: InputMaybe>; + yieldETH_isNull?: InputMaybe; + yieldETH_lt?: InputMaybe; + yieldETH_lte?: InputMaybe; + yieldETH_not_eq?: InputMaybe; + yieldETH_not_in?: InputMaybe>; + yieldUSD7Day_eq?: InputMaybe; + yieldUSD7Day_gt?: InputMaybe; + yieldUSD7Day_gte?: InputMaybe; + yieldUSD7Day_in?: InputMaybe>; + yieldUSD7Day_isNull?: InputMaybe; + yieldUSD7Day_lt?: InputMaybe; + yieldUSD7Day_lte?: InputMaybe; + yieldUSD7Day_not_eq?: InputMaybe; + yieldUSD7Day_not_in?: InputMaybe>; + yieldUSDAllTime_eq?: InputMaybe; + yieldUSDAllTime_gt?: InputMaybe; + yieldUSDAllTime_gte?: InputMaybe; + yieldUSDAllTime_in?: InputMaybe>; + yieldUSDAllTime_isNull?: InputMaybe; + yieldUSDAllTime_lt?: InputMaybe; + yieldUSDAllTime_lte?: InputMaybe; + yieldUSDAllTime_not_eq?: InputMaybe; + yieldUSDAllTime_not_in?: InputMaybe>; + yieldUSD_eq?: InputMaybe; + yieldUSD_gt?: InputMaybe; + yieldUSD_gte?: InputMaybe; + yieldUSD_in?: InputMaybe>; + yieldUSD_isNull?: InputMaybe; + yieldUSD_lt?: InputMaybe; + yieldUSD_lte?: InputMaybe; + yieldUSD_not_eq?: InputMaybe; + yieldUSD_not_in?: InputMaybe>; }; -export type OusdMorphoAave = { - __typename?: 'OUSDMorphoAave'; +export type OusdDailyStatsConnection = { + __typename?: 'OUSDDailyStatsConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; +}; + +export type OusdFluxStrategiesConnection = { + __typename?: 'OUSDFluxStrategiesConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; +}; + +export type OusdFluxStrategy = { + __typename?: 'OUSDFluxStrategy'; blockNumber: Scalars['Int']['output']; dai: Scalars['BigInt']['output']; id: Scalars['String']['output']; @@ -10024,13 +9301,13 @@ export type OusdMorphoAave = { usdt: Scalars['BigInt']['output']; }; -export type OusdMorphoAaveEdge = { - __typename?: 'OUSDMorphoAaveEdge'; +export type OusdFluxStrategyEdge = { + __typename?: 'OUSDFluxStrategyEdge'; cursor: Scalars['String']['output']; - node: OusdMorphoAave; + node: OusdFluxStrategy; }; -export enum OusdMorphoAaveOrderByInput { +export enum OusdFluxStrategyOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', @@ -10057,9 +9334,9 @@ export enum OusdMorphoAaveOrderByInput { UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' } -export type OusdMorphoAaveWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OusdFluxStrategyWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -10124,15 +9401,15 @@ export type OusdMorphoAaveWhereInput = { usdt_not_in?: InputMaybe>; }; -export type OusdMorphoAavesConnection = { - __typename?: 'OUSDMorphoAavesConnection'; - edges: Array; +export type OusdMetaStrategiesConnection = { + __typename?: 'OUSDMetaStrategiesConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export type OusdMorphoCompound = { - __typename?: 'OUSDMorphoCompound'; +export type OusdMetaStrategy = { + __typename?: 'OUSDMetaStrategy'; blockNumber: Scalars['Int']['output']; dai: Scalars['BigInt']['output']; id: Scalars['String']['output']; @@ -10141,13 +9418,13 @@ export type OusdMorphoCompound = { usdt: Scalars['BigInt']['output']; }; -export type OusdMorphoCompoundEdge = { - __typename?: 'OUSDMorphoCompoundEdge'; +export type OusdMetaStrategyEdge = { + __typename?: 'OUSDMetaStrategyEdge'; cursor: Scalars['String']['output']; - node: OusdMorphoCompound; + node: OusdMetaStrategy; }; -export enum OusdMorphoCompoundOrderByInput { +export enum OusdMetaStrategyOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', @@ -10174,9 +9451,9 @@ export enum OusdMorphoCompoundOrderByInput { UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' } -export type OusdMorphoCompoundWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OusdMetaStrategyWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -10229,148 +9506,64 @@ export type OusdMorphoCompoundWhereInput = { usdc_lt?: InputMaybe; usdc_lte?: InputMaybe; usdc_not_eq?: InputMaybe; - usdc_not_in?: InputMaybe>; - usdt_eq?: InputMaybe; - usdt_gt?: InputMaybe; - usdt_gte?: InputMaybe; - usdt_in?: InputMaybe>; - usdt_isNull?: InputMaybe; - usdt_lt?: InputMaybe; - usdt_lte?: InputMaybe; - usdt_not_eq?: InputMaybe; - usdt_not_in?: InputMaybe>; -}; - -export type OusdMorphoCompoundsConnection = { - __typename?: 'OUSDMorphoCompoundsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export enum OusdOrderByInput { - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - NonRebasingSupplyAsc = 'nonRebasingSupply_ASC', - NonRebasingSupplyAscNullsFirst = 'nonRebasingSupply_ASC_NULLS_FIRST', - NonRebasingSupplyDesc = 'nonRebasingSupply_DESC', - NonRebasingSupplyDescNullsLast = 'nonRebasingSupply_DESC_NULLS_LAST', - RebasingSupplyAsc = 'rebasingSupply_ASC', - RebasingSupplyAscNullsFirst = 'rebasingSupply_ASC_NULLS_FIRST', - RebasingSupplyDesc = 'rebasingSupply_DESC', - RebasingSupplyDescNullsLast = 'rebasingSupply_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TotalSupplyAsc = 'totalSupply_ASC', - TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', - TotalSupplyDesc = 'totalSupply_DESC', - TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST' -} - -/** The Rebase entity tracks historical rebase events on the OUSD contract. */ -export type OusdRebase = { - __typename?: 'OUSDRebase'; - apy: Ousdapy; - blockNumber: Scalars['Int']['output']; - feeETH: Scalars['BigInt']['output']; - feeUSD: Scalars['BigInt']['output']; - id: Scalars['String']['output']; - rebasingCredits: Scalars['BigInt']['output']; - rebasingCreditsPerToken: Scalars['BigInt']['output']; - timestamp: Scalars['DateTime']['output']; - totalSupply: Scalars['BigInt']['output']; - txHash: Scalars['String']['output']; - yieldETH: Scalars['BigInt']['output']; - yieldUSD: Scalars['BigInt']['output']; -}; - -export type OusdRebaseEdge = { - __typename?: 'OUSDRebaseEdge'; - cursor: Scalars['String']['output']; - node: OusdRebase; + usdc_not_in?: InputMaybe>; + usdt_eq?: InputMaybe; + usdt_gt?: InputMaybe; + usdt_gte?: InputMaybe; + usdt_in?: InputMaybe>; + usdt_isNull?: InputMaybe; + usdt_lt?: InputMaybe; + usdt_lte?: InputMaybe; + usdt_not_eq?: InputMaybe; + usdt_not_in?: InputMaybe>; }; -/** The RebaseOption entity tracks historical rebase option changes by address. */ -export type OusdRebaseOption = { - __typename?: 'OUSDRebaseOption'; - address: OusdAddress; +export type OusdMorphoAave = { + __typename?: 'OUSDMorphoAave'; blockNumber: Scalars['Int']['output']; + dai: Scalars['BigInt']['output']; id: Scalars['String']['output']; - status: RebasingOption; timestamp: Scalars['DateTime']['output']; - txHash: Scalars['String']['output']; + usdc: Scalars['BigInt']['output']; + usdt: Scalars['BigInt']['output']; }; -export type OusdRebaseOptionEdge = { - __typename?: 'OUSDRebaseOptionEdge'; +export type OusdMorphoAaveEdge = { + __typename?: 'OUSDMorphoAaveEdge'; cursor: Scalars['String']['output']; - node: OusdRebaseOption; + node: OusdMorphoAave; }; -export enum OusdRebaseOptionOrderByInput { - AddressBalanceAsc = 'address_balance_ASC', - AddressBalanceAscNullsFirst = 'address_balance_ASC_NULLS_FIRST', - AddressBalanceDesc = 'address_balance_DESC', - AddressBalanceDescNullsLast = 'address_balance_DESC_NULLS_LAST', - AddressCreditsAsc = 'address_credits_ASC', - AddressCreditsAscNullsFirst = 'address_credits_ASC_NULLS_FIRST', - AddressCreditsDesc = 'address_credits_DESC', - AddressCreditsDescNullsLast = 'address_credits_DESC_NULLS_LAST', - AddressEarnedAsc = 'address_earned_ASC', - AddressEarnedAscNullsFirst = 'address_earned_ASC_NULLS_FIRST', - AddressEarnedDesc = 'address_earned_DESC', - AddressEarnedDescNullsLast = 'address_earned_DESC_NULLS_LAST', - AddressIdAsc = 'address_id_ASC', - AddressIdAscNullsFirst = 'address_id_ASC_NULLS_FIRST', - AddressIdDesc = 'address_id_DESC', - AddressIdDescNullsLast = 'address_id_DESC_NULLS_LAST', - AddressIsContractAsc = 'address_isContract_ASC', - AddressIsContractAscNullsFirst = 'address_isContract_ASC_NULLS_FIRST', - AddressIsContractDesc = 'address_isContract_DESC', - AddressIsContractDescNullsLast = 'address_isContract_DESC_NULLS_LAST', - AddressLastUpdatedAsc = 'address_lastUpdated_ASC', - AddressLastUpdatedAscNullsFirst = 'address_lastUpdated_ASC_NULLS_FIRST', - AddressLastUpdatedDesc = 'address_lastUpdated_DESC', - AddressLastUpdatedDescNullsLast = 'address_lastUpdated_DESC_NULLS_LAST', - AddressRebasingOptionAsc = 'address_rebasingOption_ASC', - AddressRebasingOptionAscNullsFirst = 'address_rebasingOption_ASC_NULLS_FIRST', - AddressRebasingOptionDesc = 'address_rebasingOption_DESC', - AddressRebasingOptionDescNullsLast = 'address_rebasingOption_DESC_NULLS_LAST', +export enum OusdMorphoAaveOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + DaiAsc = 'dai_ASC', + DaiAscNullsFirst = 'dai_ASC_NULLS_FIRST', + DaiDesc = 'dai_DESC', + DaiDescNullsLast = 'dai_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - StatusAsc = 'status_ASC', - StatusAscNullsFirst = 'status_ASC_NULLS_FIRST', - StatusDesc = 'status_DESC', - StatusDescNullsLast = 'status_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TxHashAsc = 'txHash_ASC', - TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', - TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST' + UsdcAsc = 'usdc_ASC', + UsdcAscNullsFirst = 'usdc_ASC_NULLS_FIRST', + UsdcDesc = 'usdc_DESC', + UsdcDescNullsLast = 'usdc_DESC_NULLS_LAST', + UsdtAsc = 'usdt_ASC', + UsdtAscNullsFirst = 'usdt_ASC_NULLS_FIRST', + UsdtDesc = 'usdt_DESC', + UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' } -export type OusdRebaseOptionWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - address?: InputMaybe; - address_isNull?: InputMaybe; +export type OusdMorphoAaveWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -10380,6 +9573,15 @@ export type OusdRebaseOptionWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; + dai_eq?: InputMaybe; + dai_gt?: InputMaybe; + dai_gte?: InputMaybe; + dai_in?: InputMaybe>; + dai_isNull?: InputMaybe; + dai_lt?: InputMaybe; + dai_lte?: InputMaybe; + dai_not_eq?: InputMaybe; + dai_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -10397,11 +9599,6 @@ export type OusdRebaseOptionWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - status_eq?: InputMaybe; - status_in?: InputMaybe>; - status_isNull?: InputMaybe; - status_not_eq?: InputMaybe; - status_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -10411,124 +9608,79 @@ export type OusdRebaseOptionWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - txHash_contains?: InputMaybe; - txHash_containsInsensitive?: InputMaybe; - txHash_endsWith?: InputMaybe; - txHash_eq?: InputMaybe; - txHash_gt?: InputMaybe; - txHash_gte?: InputMaybe; - txHash_in?: InputMaybe>; - txHash_isNull?: InputMaybe; - txHash_lt?: InputMaybe; - txHash_lte?: InputMaybe; - txHash_not_contains?: InputMaybe; - txHash_not_containsInsensitive?: InputMaybe; - txHash_not_endsWith?: InputMaybe; - txHash_not_eq?: InputMaybe; - txHash_not_in?: InputMaybe>; - txHash_not_startsWith?: InputMaybe; - txHash_startsWith?: InputMaybe; + usdc_eq?: InputMaybe; + usdc_gt?: InputMaybe; + usdc_gte?: InputMaybe; + usdc_in?: InputMaybe>; + usdc_isNull?: InputMaybe; + usdc_lt?: InputMaybe; + usdc_lte?: InputMaybe; + usdc_not_eq?: InputMaybe; + usdc_not_in?: InputMaybe>; + usdt_eq?: InputMaybe; + usdt_gt?: InputMaybe; + usdt_gte?: InputMaybe; + usdt_in?: InputMaybe>; + usdt_isNull?: InputMaybe; + usdt_lt?: InputMaybe; + usdt_lte?: InputMaybe; + usdt_not_eq?: InputMaybe; + usdt_not_in?: InputMaybe>; }; -export type OusdRebaseOptionsConnection = { - __typename?: 'OUSDRebaseOptionsConnection'; - edges: Array; +export type OusdMorphoAavesConnection = { + __typename?: 'OUSDMorphoAavesConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export enum OusdRebaseOrderByInput { - ApyAprAsc = 'apy_apr_ASC', - ApyAprAscNullsFirst = 'apy_apr_ASC_NULLS_FIRST', - ApyAprDesc = 'apy_apr_DESC', - ApyAprDescNullsLast = 'apy_apr_DESC_NULLS_LAST', - ApyApy7DayAvgAsc = 'apy_apy7DayAvg_ASC', - ApyApy7DayAvgAscNullsFirst = 'apy_apy7DayAvg_ASC_NULLS_FIRST', - ApyApy7DayAvgDesc = 'apy_apy7DayAvg_DESC', - ApyApy7DayAvgDescNullsLast = 'apy_apy7DayAvg_DESC_NULLS_LAST', - ApyApy14DayAvgAsc = 'apy_apy14DayAvg_ASC', - ApyApy14DayAvgAscNullsFirst = 'apy_apy14DayAvg_ASC_NULLS_FIRST', - ApyApy14DayAvgDesc = 'apy_apy14DayAvg_DESC', - ApyApy14DayAvgDescNullsLast = 'apy_apy14DayAvg_DESC_NULLS_LAST', - ApyApy30DayAvgAsc = 'apy_apy30DayAvg_ASC', - ApyApy30DayAvgAscNullsFirst = 'apy_apy30DayAvg_ASC_NULLS_FIRST', - ApyApy30DayAvgDesc = 'apy_apy30DayAvg_DESC', - ApyApy30DayAvgDescNullsLast = 'apy_apy30DayAvg_DESC_NULLS_LAST', - ApyApyAsc = 'apy_apy_ASC', - ApyApyAscNullsFirst = 'apy_apy_ASC_NULLS_FIRST', - ApyApyDesc = 'apy_apy_DESC', - ApyApyDescNullsLast = 'apy_apy_DESC_NULLS_LAST', - ApyBlockNumberAsc = 'apy_blockNumber_ASC', - ApyBlockNumberAscNullsFirst = 'apy_blockNumber_ASC_NULLS_FIRST', - ApyBlockNumberDesc = 'apy_blockNumber_DESC', - ApyBlockNumberDescNullsLast = 'apy_blockNumber_DESC_NULLS_LAST', - ApyIdAsc = 'apy_id_ASC', - ApyIdAscNullsFirst = 'apy_id_ASC_NULLS_FIRST', - ApyIdDesc = 'apy_id_DESC', - ApyIdDescNullsLast = 'apy_id_DESC_NULLS_LAST', - ApyRebasingCreditsPerTokenAsc = 'apy_rebasingCreditsPerToken_ASC', - ApyRebasingCreditsPerTokenAscNullsFirst = 'apy_rebasingCreditsPerToken_ASC_NULLS_FIRST', - ApyRebasingCreditsPerTokenDesc = 'apy_rebasingCreditsPerToken_DESC', - ApyRebasingCreditsPerTokenDescNullsLast = 'apy_rebasingCreditsPerToken_DESC_NULLS_LAST', - ApyTimestampAsc = 'apy_timestamp_ASC', - ApyTimestampAscNullsFirst = 'apy_timestamp_ASC_NULLS_FIRST', - ApyTimestampDesc = 'apy_timestamp_DESC', - ApyTimestampDescNullsLast = 'apy_timestamp_DESC_NULLS_LAST', - ApyTxHashAsc = 'apy_txHash_ASC', - ApyTxHashAscNullsFirst = 'apy_txHash_ASC_NULLS_FIRST', - ApyTxHashDesc = 'apy_txHash_DESC', - ApyTxHashDescNullsLast = 'apy_txHash_DESC_NULLS_LAST', +export type OusdMorphoCompound = { + __typename?: 'OUSDMorphoCompound'; + blockNumber: Scalars['Int']['output']; + dai: Scalars['BigInt']['output']; + id: Scalars['String']['output']; + timestamp: Scalars['DateTime']['output']; + usdc: Scalars['BigInt']['output']; + usdt: Scalars['BigInt']['output']; +}; + +export type OusdMorphoCompoundEdge = { + __typename?: 'OUSDMorphoCompoundEdge'; + cursor: Scalars['String']['output']; + node: OusdMorphoCompound; +}; + +export enum OusdMorphoCompoundOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - FeeEthAsc = 'feeETH_ASC', - FeeEthAscNullsFirst = 'feeETH_ASC_NULLS_FIRST', - FeeEthDesc = 'feeETH_DESC', - FeeEthDescNullsLast = 'feeETH_DESC_NULLS_LAST', - FeeUsdAsc = 'feeUSD_ASC', - FeeUsdAscNullsFirst = 'feeUSD_ASC_NULLS_FIRST', - FeeUsdDesc = 'feeUSD_DESC', - FeeUsdDescNullsLast = 'feeUSD_DESC_NULLS_LAST', + DaiAsc = 'dai_ASC', + DaiAscNullsFirst = 'dai_ASC_NULLS_FIRST', + DaiDesc = 'dai_DESC', + DaiDescNullsLast = 'dai_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - RebasingCreditsPerTokenAsc = 'rebasingCreditsPerToken_ASC', - RebasingCreditsPerTokenAscNullsFirst = 'rebasingCreditsPerToken_ASC_NULLS_FIRST', - RebasingCreditsPerTokenDesc = 'rebasingCreditsPerToken_DESC', - RebasingCreditsPerTokenDescNullsLast = 'rebasingCreditsPerToken_DESC_NULLS_LAST', - RebasingCreditsAsc = 'rebasingCredits_ASC', - RebasingCreditsAscNullsFirst = 'rebasingCredits_ASC_NULLS_FIRST', - RebasingCreditsDesc = 'rebasingCredits_DESC', - RebasingCreditsDescNullsLast = 'rebasingCredits_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TotalSupplyAsc = 'totalSupply_ASC', - TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', - TotalSupplyDesc = 'totalSupply_DESC', - TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST', - TxHashAsc = 'txHash_ASC', - TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', - TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST', - YieldEthAsc = 'yieldETH_ASC', - YieldEthAscNullsFirst = 'yieldETH_ASC_NULLS_FIRST', - YieldEthDesc = 'yieldETH_DESC', - YieldEthDescNullsLast = 'yieldETH_DESC_NULLS_LAST', - YieldUsdAsc = 'yieldUSD_ASC', - YieldUsdAscNullsFirst = 'yieldUSD_ASC_NULLS_FIRST', - YieldUsdDesc = 'yieldUSD_DESC', - YieldUsdDescNullsLast = 'yieldUSD_DESC_NULLS_LAST' + UsdcAsc = 'usdc_ASC', + UsdcAscNullsFirst = 'usdc_ASC_NULLS_FIRST', + UsdcDesc = 'usdc_DESC', + UsdcDescNullsLast = 'usdc_DESC_NULLS_LAST', + UsdtAsc = 'usdt_ASC', + UsdtAscNullsFirst = 'usdt_ASC_NULLS_FIRST', + UsdtDesc = 'usdt_DESC', + UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' } -export type OusdRebaseWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - apy?: InputMaybe; - apy_isNull?: InputMaybe; +export type OusdMorphoCompoundWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -10538,24 +9690,15 @@ export type OusdRebaseWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; - feeETH_eq?: InputMaybe; - feeETH_gt?: InputMaybe; - feeETH_gte?: InputMaybe; - feeETH_in?: InputMaybe>; - feeETH_isNull?: InputMaybe; - feeETH_lt?: InputMaybe; - feeETH_lte?: InputMaybe; - feeETH_not_eq?: InputMaybe; - feeETH_not_in?: InputMaybe>; - feeUSD_eq?: InputMaybe; - feeUSD_gt?: InputMaybe; - feeUSD_gte?: InputMaybe; - feeUSD_in?: InputMaybe>; - feeUSD_isNull?: InputMaybe; - feeUSD_lt?: InputMaybe; - feeUSD_lte?: InputMaybe; - feeUSD_not_eq?: InputMaybe; - feeUSD_not_in?: InputMaybe>; + dai_eq?: InputMaybe; + dai_gt?: InputMaybe; + dai_gte?: InputMaybe; + dai_in?: InputMaybe>; + dai_isNull?: InputMaybe; + dai_lt?: InputMaybe; + dai_lte?: InputMaybe; + dai_not_eq?: InputMaybe; + dai_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -10573,24 +9716,6 @@ export type OusdRebaseWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - rebasingCreditsPerToken_eq?: InputMaybe; - rebasingCreditsPerToken_gt?: InputMaybe; - rebasingCreditsPerToken_gte?: InputMaybe; - rebasingCreditsPerToken_in?: InputMaybe>; - rebasingCreditsPerToken_isNull?: InputMaybe; - rebasingCreditsPerToken_lt?: InputMaybe; - rebasingCreditsPerToken_lte?: InputMaybe; - rebasingCreditsPerToken_not_eq?: InputMaybe; - rebasingCreditsPerToken_not_in?: InputMaybe>; - rebasingCredits_eq?: InputMaybe; - rebasingCredits_gt?: InputMaybe; - rebasingCredits_gte?: InputMaybe; - rebasingCredits_in?: InputMaybe>; - rebasingCredits_isNull?: InputMaybe; - rebasingCredits_lt?: InputMaybe; - rebasingCredits_lte?: InputMaybe; - rebasingCredits_not_eq?: InputMaybe; - rebasingCredits_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -10600,55 +9725,29 @@ export type OusdRebaseWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - totalSupply_eq?: InputMaybe; - totalSupply_gt?: InputMaybe; - totalSupply_gte?: InputMaybe; - totalSupply_in?: InputMaybe>; - totalSupply_isNull?: InputMaybe; - totalSupply_lt?: InputMaybe; - totalSupply_lte?: InputMaybe; - totalSupply_not_eq?: InputMaybe; - totalSupply_not_in?: InputMaybe>; - txHash_contains?: InputMaybe; - txHash_containsInsensitive?: InputMaybe; - txHash_endsWith?: InputMaybe; - txHash_eq?: InputMaybe; - txHash_gt?: InputMaybe; - txHash_gte?: InputMaybe; - txHash_in?: InputMaybe>; - txHash_isNull?: InputMaybe; - txHash_lt?: InputMaybe; - txHash_lte?: InputMaybe; - txHash_not_contains?: InputMaybe; - txHash_not_containsInsensitive?: InputMaybe; - txHash_not_endsWith?: InputMaybe; - txHash_not_eq?: InputMaybe; - txHash_not_in?: InputMaybe>; - txHash_not_startsWith?: InputMaybe; - txHash_startsWith?: InputMaybe; - yieldETH_eq?: InputMaybe; - yieldETH_gt?: InputMaybe; - yieldETH_gte?: InputMaybe; - yieldETH_in?: InputMaybe>; - yieldETH_isNull?: InputMaybe; - yieldETH_lt?: InputMaybe; - yieldETH_lte?: InputMaybe; - yieldETH_not_eq?: InputMaybe; - yieldETH_not_in?: InputMaybe>; - yieldUSD_eq?: InputMaybe; - yieldUSD_gt?: InputMaybe; - yieldUSD_gte?: InputMaybe; - yieldUSD_in?: InputMaybe>; - yieldUSD_isNull?: InputMaybe; - yieldUSD_lt?: InputMaybe; - yieldUSD_lte?: InputMaybe; - yieldUSD_not_eq?: InputMaybe; - yieldUSD_not_in?: InputMaybe>; + usdc_eq?: InputMaybe; + usdc_gt?: InputMaybe; + usdc_gte?: InputMaybe; + usdc_in?: InputMaybe>; + usdc_isNull?: InputMaybe; + usdc_lt?: InputMaybe; + usdc_lte?: InputMaybe; + usdc_not_eq?: InputMaybe; + usdc_not_in?: InputMaybe>; + usdt_eq?: InputMaybe; + usdt_gt?: InputMaybe; + usdt_gte?: InputMaybe; + usdt_in?: InputMaybe>; + usdt_isNull?: InputMaybe; + usdt_lt?: InputMaybe; + usdt_lte?: InputMaybe; + usdt_not_eq?: InputMaybe; + usdt_not_in?: InputMaybe>; }; -export type OusdRebasesConnection = { - __typename?: 'OUSDRebasesConnection'; - edges: Array; +export type OusdMorphoCompoundsConnection = { + __typename?: 'OUSDMorphoCompoundsConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; @@ -11123,80 +10222,6 @@ export type OusdVaultsConnection = { totalCount: Scalars['Int']['output']; }; -export type OusdWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - nonRebasingSupply_eq?: InputMaybe; - nonRebasingSupply_gt?: InputMaybe; - nonRebasingSupply_gte?: InputMaybe; - nonRebasingSupply_in?: InputMaybe>; - nonRebasingSupply_isNull?: InputMaybe; - nonRebasingSupply_lt?: InputMaybe; - nonRebasingSupply_lte?: InputMaybe; - nonRebasingSupply_not_eq?: InputMaybe; - nonRebasingSupply_not_in?: InputMaybe>; - rebasingSupply_eq?: InputMaybe; - rebasingSupply_gt?: InputMaybe; - rebasingSupply_gte?: InputMaybe; - rebasingSupply_in?: InputMaybe>; - rebasingSupply_isNull?: InputMaybe; - rebasingSupply_lt?: InputMaybe; - rebasingSupply_lte?: InputMaybe; - rebasingSupply_not_eq?: InputMaybe; - rebasingSupply_not_in?: InputMaybe>; - timestamp_eq?: InputMaybe; - timestamp_gt?: InputMaybe; - timestamp_gte?: InputMaybe; - timestamp_in?: InputMaybe>; - timestamp_isNull?: InputMaybe; - timestamp_lt?: InputMaybe; - timestamp_lte?: InputMaybe; - timestamp_not_eq?: InputMaybe; - timestamp_not_in?: InputMaybe>; - totalSupply_eq?: InputMaybe; - totalSupply_gt?: InputMaybe; - totalSupply_gte?: InputMaybe; - totalSupply_in?: InputMaybe>; - totalSupply_isNull?: InputMaybe; - totalSupply_lt?: InputMaybe; - totalSupply_lte?: InputMaybe; - totalSupply_not_eq?: InputMaybe; - totalSupply_not_in?: InputMaybe>; -}; - -export type OusDsConnection = { - __typename?: 'OUSDsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - export type PageInfo = { __typename?: 'PageInfo'; endCursor: Scalars['String']['output']; @@ -11382,34 +10407,56 @@ export type Query = { nativeBalanceByUniqueInput?: Maybe; nativeBalances: Array; nativeBalancesConnection: NativeBalancesConnection; + oTokenActivities: Array; + oTokenActivitiesConnection: OTokenActivitiesConnection; + oTokenActivityById?: Maybe; + /** @deprecated Use oTokenActivityById */ + oTokenActivityByUniqueInput?: Maybe; + oTokenAddressById?: Maybe; + /** @deprecated Use oTokenAddressById */ + oTokenAddressByUniqueInput?: Maybe; + oTokenAddresses: Array; + oTokenAddressesConnection: OTokenAddressesConnection; + oTokenApies: Array; + oTokenApiesConnection: OTokenAPiesConnection; + oTokenApyById?: Maybe; + /** @deprecated Use oTokenApyById */ + oTokenApyByUniqueInput?: Maybe; + oTokenAssetById?: Maybe; + /** @deprecated Use oTokenAssetById */ + oTokenAssetByUniqueInput?: Maybe; + oTokenAssets: Array; + oTokenAssetsConnection: OTokenAssetsConnection; + oTokenById?: Maybe; + /** @deprecated Use oTokenById */ + oTokenByUniqueInput?: Maybe; + oTokenHistories: Array; + oTokenHistoriesConnection: OTokenHistoriesConnection; + oTokenHistoryById?: Maybe; + /** @deprecated Use oTokenHistoryById */ + oTokenHistoryByUniqueInput?: Maybe; + oTokenRebaseById?: Maybe; + /** @deprecated Use oTokenRebaseById */ + oTokenRebaseByUniqueInput?: Maybe; + oTokenRebaseOptionById?: Maybe; + /** @deprecated Use oTokenRebaseOptionById */ + oTokenRebaseOptionByUniqueInput?: Maybe; + oTokenRebaseOptions: Array; + oTokenRebaseOptionsConnection: OTokenRebaseOptionsConnection; + oTokenRebases: Array; + oTokenRebasesConnection: OTokenRebasesConnection; oTokenVaultById?: Maybe; /** @deprecated Use oTokenVaultById */ oTokenVaultByUniqueInput?: Maybe; oTokenVaults: Array; oTokenVaultsConnection: OTokenVaultsConnection; - oethActivities: Array; - oethActivitiesConnection: OethActivitiesConnection; - oethActivityById?: Maybe; - /** @deprecated Use oethActivityById */ - oethActivityByUniqueInput?: Maybe; - oethAddressById?: Maybe; - /** @deprecated Use oethAddressById */ - oethAddressByUniqueInput?: Maybe; - oethAddresses: Array; - oethAddressesConnection: OethAddressesConnection; - oethAssetById?: Maybe; - /** @deprecated Use oethAssetById */ - oethAssetByUniqueInput?: Maybe; - oethAssets: Array; - oethAssetsConnection: OethAssetsConnection; + oTokens: Array; + oTokensConnection: OTokensConnection; oethBalancerMetaPoolStrategies: Array; oethBalancerMetaPoolStrategiesConnection: OethBalancerMetaPoolStrategiesConnection; oethBalancerMetaPoolStrategyById?: Maybe; /** @deprecated Use oethBalancerMetaPoolStrategyById */ oethBalancerMetaPoolStrategyByUniqueInput?: Maybe; - oethById?: Maybe; - /** @deprecated Use oethById */ - oethByUniqueInput?: Maybe; oethCollateralDailyStatById?: Maybe; /** @deprecated Use oethCollateralDailyStatById */ oethCollateralDailyStatByUniqueInput?: Maybe; @@ -11435,26 +10482,11 @@ export type Query = { oethFraxStakingByUniqueInput?: Maybe; oethFraxStakings: Array; oethFraxStakingsConnection: OethFraxStakingsConnection; - oethHistories: Array; - oethHistoriesConnection: OethHistoriesConnection; - oethHistoryById?: Maybe; - /** @deprecated Use oethHistoryById */ - oethHistoryByUniqueInput?: Maybe; oethMorphoAaveById?: Maybe; /** @deprecated Use oethMorphoAaveById */ oethMorphoAaveByUniqueInput?: Maybe; oethMorphoAaves: Array; oethMorphoAavesConnection: OethMorphoAavesConnection; - oethRebaseById?: Maybe; - /** @deprecated Use oethRebaseById */ - oethRebaseByUniqueInput?: Maybe; - oethRebaseOptionById?: Maybe; - /** @deprecated Use oethRebaseOptionById */ - oethRebaseOptionByUniqueInput?: Maybe; - oethRebaseOptions: Array; - oethRebaseOptionsConnection: OethRebaseOptionsConnection; - oethRebases: Array; - oethRebasesConnection: OethRebasesConnection; oethRewardTokenCollectedById?: Maybe; /** @deprecated Use oethRewardTokenCollectedById */ oethRewardTokenCollectedByUniqueInput?: Maybe; @@ -11475,13 +10507,6 @@ export type Query = { oethVaultByUniqueInput?: Maybe; oethVaults: Array; oethVaultsConnection: OethVaultsConnection; - oethapies: Array; - oethapiesConnection: OethaPiesConnection; - oethapyById?: Maybe; - /** @deprecated Use oethapyById */ - oethapyByUniqueInput?: Maybe; - oeths: Array; - oethsConnection: OetHsConnection; ognStats: OgnStatsResult; ogvAddressById?: Maybe; /** @deprecated Use ogvAddressById */ @@ -11528,24 +10553,6 @@ export type Query = { ousdAaveStrategyById?: Maybe; /** @deprecated Use ousdAaveStrategyById */ ousdAaveStrategyByUniqueInput?: Maybe; - ousdActivities: Array; - ousdActivitiesConnection: OusdActivitiesConnection; - ousdActivityById?: Maybe; - /** @deprecated Use ousdActivityById */ - ousdActivityByUniqueInput?: Maybe; - ousdAddressById?: Maybe; - /** @deprecated Use ousdAddressById */ - ousdAddressByUniqueInput?: Maybe; - ousdAddresses: Array; - ousdAddressesConnection: OusdAddressesConnection; - ousdAssetById?: Maybe; - /** @deprecated Use ousdAssetById */ - ousdAssetByUniqueInput?: Maybe; - ousdAssets: Array; - ousdAssetsConnection: OusdAssetsConnection; - ousdById?: Maybe; - /** @deprecated Use ousdById */ - ousdByUniqueInput?: Maybe; ousdCollateralDailyStatById?: Maybe; /** @deprecated Use ousdCollateralDailyStatById */ ousdCollateralDailyStatByUniqueInput?: Maybe; @@ -11576,11 +10583,6 @@ export type Query = { ousdFluxStrategyById?: Maybe; /** @deprecated Use ousdFluxStrategyById */ ousdFluxStrategyByUniqueInput?: Maybe; - ousdHistories: Array; - ousdHistoriesConnection: OusdHistoriesConnection; - ousdHistoryById?: Maybe; - /** @deprecated Use ousdHistoryById */ - ousdHistoryByUniqueInput?: Maybe; ousdMetaStrategies: Array; ousdMetaStrategiesConnection: OusdMetaStrategiesConnection; ousdMetaStrategyById?: Maybe; @@ -11596,16 +10598,6 @@ export type Query = { ousdMorphoCompoundByUniqueInput?: Maybe; ousdMorphoCompounds: Array; ousdMorphoCompoundsConnection: OusdMorphoCompoundsConnection; - ousdRebaseById?: Maybe; - /** @deprecated Use ousdRebaseById */ - ousdRebaseByUniqueInput?: Maybe; - ousdRebaseOptionById?: Maybe; - /** @deprecated Use ousdRebaseOptionById */ - ousdRebaseOptionByUniqueInput?: Maybe; - ousdRebaseOptions: Array; - ousdRebaseOptionsConnection: OusdRebaseOptionsConnection; - ousdRebases: Array; - ousdRebasesConnection: OusdRebasesConnection; ousdStrategyDailyStatById?: Maybe; /** @deprecated Use ousdStrategyDailyStatById */ ousdStrategyDailyStatByUniqueInput?: Maybe; @@ -11621,13 +10613,6 @@ export type Query = { ousdVaultByUniqueInput?: Maybe; ousdVaults: Array; ousdVaultsConnection: OusdVaultsConnection; - ousdapies: Array; - ousdapiesConnection: OusdaPiesConnection; - ousdapyById?: Maybe; - /** @deprecated Use ousdapyById */ - ousdapyByUniqueInput?: Maybe; - ousds: Array; - ousdsConnection: OusDsConnection; processingStatusById?: Maybe; /** @deprecated Use processingStatusById */ processingStatusByUniqueInput?: Maybe; @@ -12172,107 +11157,237 @@ export type QueryNativeBalancesConnectionArgs = { }; -export type QueryOTokenVaultByIdArgs = { +export type QueryOTokenActivitiesArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + + +export type QueryOTokenActivitiesConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + orderBy: Array; + where?: InputMaybe; +}; + + +export type QueryOTokenActivityByIdArgs = { id: Scalars['String']['input']; }; -export type QueryOTokenVaultByUniqueInputArgs = { +export type QueryOTokenActivityByUniqueInputArgs = { where: WhereIdInput; }; -export type QueryOTokenVaultsArgs = { +export type QueryOTokenAddressByIdArgs = { + id: Scalars['String']['input']; +}; + + +export type QueryOTokenAddressByUniqueInputArgs = { + where: WhereIdInput; +}; + + +export type QueryOTokenAddressesArgs = { limit?: InputMaybe; offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; }; -export type QueryOTokenVaultsConnectionArgs = { +export type QueryOTokenAddressesConnectionArgs = { after?: InputMaybe; first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; + orderBy: Array; + where?: InputMaybe; +}; + + +export type QueryOTokenApiesArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + + +export type QueryOTokenApiesConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + orderBy: Array; + where?: InputMaybe; +}; + + +export type QueryOTokenApyByIdArgs = { + id: Scalars['String']['input']; +}; + + +export type QueryOTokenApyByUniqueInputArgs = { + where: WhereIdInput; +}; + + +export type QueryOTokenAssetByIdArgs = { + id: Scalars['String']['input']; +}; + + +export type QueryOTokenAssetByUniqueInputArgs = { + where: WhereIdInput; +}; + + +export type QueryOTokenAssetsArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + + +export type QueryOTokenAssetsConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + orderBy: Array; + where?: InputMaybe; +}; + + +export type QueryOTokenByIdArgs = { + id: Scalars['String']['input']; +}; + + +export type QueryOTokenByUniqueInputArgs = { + where: WhereIdInput; +}; + + +export type QueryOTokenHistoriesArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + + +export type QueryOTokenHistoriesConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + orderBy: Array; + where?: InputMaybe; +}; + + +export type QueryOTokenHistoryByIdArgs = { + id: Scalars['String']['input']; +}; + + +export type QueryOTokenHistoryByUniqueInputArgs = { + where: WhereIdInput; +}; + + +export type QueryOTokenRebaseByIdArgs = { + id: Scalars['String']['input']; +}; + + +export type QueryOTokenRebaseByUniqueInputArgs = { + where: WhereIdInput; +}; + + +export type QueryOTokenRebaseOptionByIdArgs = { + id: Scalars['String']['input']; +}; + + +export type QueryOTokenRebaseOptionByUniqueInputArgs = { + where: WhereIdInput; }; -export type QueryOethActivitiesArgs = { +export type QueryOTokenRebaseOptionsArgs = { limit?: InputMaybe; offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; }; -export type QueryOethActivitiesConnectionArgs = { +export type QueryOTokenRebaseOptionsConnectionArgs = { after?: InputMaybe; first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; + orderBy: Array; + where?: InputMaybe; }; -export type QueryOethActivityByIdArgs = { - id: Scalars['String']['input']; +export type QueryOTokenRebasesArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; }; -export type QueryOethActivityByUniqueInputArgs = { - where: WhereIdInput; +export type QueryOTokenRebasesConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + orderBy: Array; + where?: InputMaybe; }; -export type QueryOethAddressByIdArgs = { +export type QueryOTokenVaultByIdArgs = { id: Scalars['String']['input']; }; -export type QueryOethAddressByUniqueInputArgs = { +export type QueryOTokenVaultByUniqueInputArgs = { where: WhereIdInput; }; -export type QueryOethAddressesArgs = { +export type QueryOTokenVaultsArgs = { limit?: InputMaybe; offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; }; -export type QueryOethAddressesConnectionArgs = { +export type QueryOTokenVaultsConnectionArgs = { after?: InputMaybe; first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOethAssetByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOethAssetByUniqueInputArgs = { - where: WhereIdInput; + orderBy: Array; + where?: InputMaybe; }; -export type QueryOethAssetsArgs = { +export type QueryOTokensArgs = { limit?: InputMaybe; offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; }; -export type QueryOethAssetsConnectionArgs = { +export type QueryOTokensConnectionArgs = { after?: InputMaybe; first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; + orderBy: Array; + where?: InputMaybe; }; @@ -12302,16 +11417,6 @@ export type QueryOethBalancerMetaPoolStrategyByUniqueInputArgs = { }; -export type QueryOethByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOethByUniqueInputArgs = { - where: WhereIdInput; -}; - - export type QueryOethCollateralDailyStatByIdArgs = { id: Scalars['String']['input']; }; @@ -12442,32 +11547,6 @@ export type QueryOethFraxStakingsConnectionArgs = { }; -export type QueryOethHistoriesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOethHistoriesConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOethHistoryByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOethHistoryByUniqueInputArgs = { - where: WhereIdInput; -}; - - export type QueryOethMorphoAaveByIdArgs = { id: Scalars['String']['input']; }; @@ -12494,58 +11573,6 @@ export type QueryOethMorphoAavesConnectionArgs = { }; -export type QueryOethRebaseByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOethRebaseByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOethRebaseOptionByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOethRebaseOptionByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOethRebaseOptionsArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOethRebaseOptionsConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOethRebasesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOethRebasesConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - export type QueryOethRewardTokenCollectedByIdArgs = { id: Scalars['String']['input']; }; @@ -12650,48 +11677,6 @@ export type QueryOethVaultsConnectionArgs = { }; -export type QueryOethapiesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOethapiesConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOethapyByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOethapyByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOethsArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOethsConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - export type QueryOgvAddressByIdArgs = { id: Scalars['String']['input']; }; @@ -12926,94 +11911,6 @@ export type QueryOusdAaveStrategyByUniqueInputArgs = { }; -export type QueryOusdActivitiesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOusdActivitiesConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOusdActivityByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOusdActivityByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOusdAddressByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOusdAddressByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOusdAddressesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOusdAddressesConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOusdAssetByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOusdAssetByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOusdAssetsArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOusdAssetsConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOusdByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOusdByUniqueInputArgs = { - where: WhereIdInput; -}; - - export type QueryOusdCollateralDailyStatByIdArgs = { id: Scalars['String']['input']; }; @@ -13170,32 +12067,6 @@ export type QueryOusdFluxStrategyByUniqueInputArgs = { }; -export type QueryOusdHistoriesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOusdHistoriesConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOusdHistoryByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOusdHistoryByUniqueInputArgs = { - where: WhereIdInput; -}; - - export type QueryOusdMetaStrategiesArgs = { limit?: InputMaybe; offset?: InputMaybe; @@ -13274,58 +12145,6 @@ export type QueryOusdMorphoCompoundsConnectionArgs = { }; -export type QueryOusdRebaseByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOusdRebaseByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOusdRebaseOptionByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOusdRebaseOptionByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOusdRebaseOptionsArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOusdRebaseOptionsConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOusdRebasesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOusdRebasesConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - export type QueryOusdStrategyDailyStatByIdArgs = { id: Scalars['String']['input']; }; @@ -13404,48 +12223,6 @@ export type QueryOusdVaultsConnectionArgs = { }; -export type QueryOusdapiesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOusdapiesConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOusdapyByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOusdapyByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOusdsArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOusdsConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - export type QueryProcessingStatusByIdArgs = { id: Scalars['String']['input']; }; diff --git a/libs/ousd/history/src/components/APYContainer.tsx b/libs/ousd/history/src/components/APYContainer.tsx index 32b291e2a..339ab579a 100644 --- a/libs/ousd/history/src/components/APYContainer.tsx +++ b/libs/ousd/history/src/components/APYContainer.tsx @@ -27,7 +27,7 @@ export function APYContainer() { { address: address ?? ZERO_ADDRESS }, { enabled: !!address, - select: (data) => data?.ousdAddresses?.at(0), + select: (data) => data?.oTokenAddresses?.at(0), }, ); const { data: pendingYield, isLoading: pendingYieldLoading } = diff --git a/libs/ousd/history/src/components/HistoryCard.tsx b/libs/ousd/history/src/components/HistoryCard.tsx index e59774c85..02eff9e0b 100644 --- a/libs/ousd/history/src/components/HistoryCard.tsx +++ b/libs/ousd/history/src/components/HistoryCard.tsx @@ -95,11 +95,11 @@ function ExportData() { { address: address ?? ZERO_ADDRESS }, { select: (data) => { - if (!data?.ousdHistories) { + if (!data?.oTokenHistories) { return; } - return data.ousdHistories.reduce( + return data.oTokenHistories.reduce( (acc, curr) => [ ...acc, [curr.timestamp, curr.type, curr.value, curr.balance, curr.txHash], diff --git a/libs/ousd/history/src/hooks.ts b/libs/ousd/history/src/hooks.ts index 0018523be..e14166d96 100644 --- a/libs/ousd/history/src/hooks.ts +++ b/libs/ousd/history/src/hooks.ts @@ -110,9 +110,9 @@ export const useAggregatedHistory = ( refetchOnWindowFocus: false, ...options, enabled: isConnected && !isNilOrEmpty(address), - placeholderData: { ousdHistories: [] }, + placeholderData: { oTokenHistories: [] }, select: useCallback((data: HistoryTransactionQuery) => { - const history = data?.ousdHistories; + const history = data?.oTokenHistories; const grouped = groupBy( (hist) => diff --git a/libs/ousd/history/src/queries.generated.ts b/libs/ousd/history/src/queries.generated.ts index b5cc7de63..0ae84b4f5 100644 --- a/libs/ousd/history/src/queries.generated.ts +++ b/libs/ousd/history/src/queries.generated.ts @@ -7,12 +7,12 @@ export type HistoryUserStatQueryVariables = Types.Exact<{ }>; -export type HistoryUserStatQuery = { __typename?: 'Query', ousdAddresses: Array<{ __typename?: 'OUSDAddress', balance: string, earned: string, isContract: boolean, rebasingOption: Types.RebasingOption, lastUpdated: string }> }; +export type HistoryUserStatQuery = { __typename?: 'Query', oTokenAddresses: Array<{ __typename?: 'OTokenAddress', balance: string, earned: string, isContract: boolean, rebasingOption: Types.RebasingOption, lastUpdated: string }> }; export type HistoryApyQueryVariables = Types.Exact<{ [key: string]: never; }>; -export type HistoryApyQuery = { __typename?: 'Query', ousdapies: Array<{ __typename?: 'OUSDAPY', apy7DayAvg: number, apy30DayAvg: number }> }; +export type HistoryApyQuery = { __typename?: 'Query', oTokenApies: Array<{ __typename?: 'OTokenAPY', apy7DayAvg: number, apy30DayAvg: number }> }; export type HistoryTransactionQueryVariables = Types.Exact<{ address: Types.Scalars['String']['input']; @@ -20,13 +20,15 @@ export type HistoryTransactionQueryVariables = Types.Exact<{ }>; -export type HistoryTransactionQuery = { __typename?: 'Query', ousdHistories: Array<{ __typename?: 'OUSDHistory', type: Types.HistoryType, value: string, txHash: string, timestamp: string, balance: string }> }; +export type HistoryTransactionQuery = { __typename?: 'Query', oTokenHistories: Array<{ __typename?: 'OTokenHistory', type: Types.HistoryType, value: string, txHash: string, timestamp: string, balance: string }> }; export const HistoryUserStatDocument = ` query HistoryUserStat($address: String!) { - ousdAddresses(where: {id_containsInsensitive: $address}) { + oTokenAddresses( + where: {address_containsInsensitive: $address, chainId_eq: 1, otoken_eq: "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86"} + ) { balance earned isContract @@ -59,7 +61,11 @@ useHistoryUserStatQuery.fetcher = (variables: HistoryUserStatQueryVariables, opt export const HistoryApyDocument = ` query HistoryApy { - ousdapies(limit: 1, orderBy: timestamp_DESC) { + oTokenApies( + limit: 1 + orderBy: timestamp_DESC + where: {chainId_eq: 1, otoken_eq: "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86"} + ) { apy7DayAvg apy30DayAvg } @@ -89,11 +95,11 @@ useHistoryApyQuery.fetcher = (variables?: HistoryApyQueryVariables, options?: Re export const HistoryTransactionDocument = ` query HistoryTransaction($address: String!, $filters: [HistoryType!]) { - ousdHistories( + oTokenHistories( orderBy: timestamp_DESC offset: 0 limit: 2000 - where: {AND: {address: {id_containsInsensitive: $address}, type_in: $filters}} + where: {address: {id_containsInsensitive: $address}, type_in: $filters, chainId_eq: 1, otoken_eq: "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86"} ) { type value diff --git a/libs/ousd/history/src/queries.graphql b/libs/ousd/history/src/queries.graphql index 45681a2ec..3153a40fc 100644 --- a/libs/ousd/history/src/queries.graphql +++ b/libs/ousd/history/src/queries.graphql @@ -1,5 +1,5 @@ query HistoryUserStat($address: String!) { - ousdAddresses(where: { id_containsInsensitive: $address }) { + oTokenAddresses(where: { address_containsInsensitive: $address, chainId_eq: 1, otoken_eq: "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86" }) { balance earned isContract @@ -9,19 +9,26 @@ query HistoryUserStat($address: String!) { } query HistoryApy { - ousdapies(limit: 1, orderBy: timestamp_DESC) { + oTokenApies( + limit: 1, orderBy: + timestamp_DESC, + where: { chainId_eq: 1, otoken_eq: "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86" } + ) { apy7DayAvg apy30DayAvg } } query HistoryTransaction($address: String!, $filters: [HistoryType!]) { - ousdHistories( + oTokenHistories( orderBy: timestamp_DESC offset: 0 limit: 2000 where: { - AND: { address: { id_containsInsensitive: $address }, type_in: $filters } + address: { id_containsInsensitive: $address }, + type_in: $filters, + chainId_eq: 1, + otoken_eq: "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86" } ) { type diff --git a/libs/ousd/history/src/types.ts b/libs/ousd/history/src/types.ts index a063e22c8..1d297174b 100644 --- a/libs/ousd/history/src/types.ts +++ b/libs/ousd/history/src/types.ts @@ -1,6 +1,6 @@ import type { HistoryTransactionQuery } from './queries.generated'; -export type History = HistoryTransactionQuery['ousdHistories'][0]; +export type History = HistoryTransactionQuery['oTokenHistories'][0]; export type DailyHistory = History & { transactions?: History[]; diff --git a/libs/ousd/shared/src/components/ApyHeader/index.tsx b/libs/ousd/shared/src/components/ApyHeader/index.tsx index 0a8e9b94f..c8381bba5 100644 --- a/libs/ousd/shared/src/components/ApyHeader/index.tsx +++ b/libs/ousd/shared/src/components/ApyHeader/index.tsx @@ -39,7 +39,7 @@ export const ApyHeader = (props: StackProps) => { limit: 1, }, { - select: (data) => data.ousdapies[0], + select: (data) => data.oTokenApies[0], }, ); diff --git a/libs/ousd/shared/src/components/ApyHeader/queries.generated.ts b/libs/ousd/shared/src/components/ApyHeader/queries.generated.ts index 85bd4d734..a8afe42e7 100644 --- a/libs/ousd/shared/src/components/ApyHeader/queries.generated.ts +++ b/libs/ousd/shared/src/components/ApyHeader/queries.generated.ts @@ -7,13 +7,17 @@ export type ApiesQueryVariables = Types.Exact<{ }>; -export type ApiesQuery = { __typename?: 'Query', ousdapies: Array<{ __typename?: 'OUSDAPY', id: string, timestamp: string, apy7DayAvg: number, apy30DayAvg: number }> }; +export type ApiesQuery = { __typename?: 'Query', oTokenApies: Array<{ __typename?: 'OTokenAPY', id: string, timestamp: string, apy7DayAvg: number, apy30DayAvg: number }> }; export const ApiesDocument = ` query Apies($limit: Int) { - ousdapies(limit: $limit, orderBy: timestamp_DESC) { + oTokenApies( + limit: $limit + orderBy: timestamp_DESC + where: {chainId_eq: 1, otoken_eq: "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86"} + ) { id timestamp apy7DayAvg diff --git a/libs/ousd/shared/src/components/ApyHeader/queries.graphql b/libs/ousd/shared/src/components/ApyHeader/queries.graphql index de586f6cd..78a5f6e01 100644 --- a/libs/ousd/shared/src/components/ApyHeader/queries.graphql +++ b/libs/ousd/shared/src/components/ApyHeader/queries.graphql @@ -1,7 +1,11 @@ query Apies($limit: Int) { - ousdapies(limit: $limit, orderBy: timestamp_DESC) { + oTokenApies( + limit: $limit, + orderBy: timestamp_DESC, + where: { chainId_eq: 1, otoken_eq: "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86" } + ) { id - timestamp + timestamp apy7DayAvg apy30DayAvg } diff --git a/libs/ousd/shared/src/generated/graphql.ts b/libs/ousd/shared/src/generated/graphql.ts index 725bbc385..0a4cedd58 100644 --- a/libs/ousd/shared/src/generated/graphql.ts +++ b/libs/ousd/shared/src/generated/graphql.ts @@ -2988,59 +2988,29 @@ export type NativeBalancesConnection = { totalCount: Scalars['Int']['output']; }; -/** The OETH entity tracks the change in total supply of OETH over time. */ -export type Oeth = { - __typename?: 'OETH'; - blockNumber: Scalars['Int']['output']; - id: Scalars['String']['output']; - nonRebasingSupply: Scalars['BigInt']['output']; - rebasingSupply: Scalars['BigInt']['output']; - timestamp: Scalars['DateTime']['output']; - totalSupply: Scalars['BigInt']['output']; +export type OethBalancerMetaPoolStrategiesConnection = { + __typename?: 'OETHBalancerMetaPoolStrategiesConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; }; -/** The APY entity tracks historical APY values by day. */ -export type Oethapy = { - __typename?: 'OETHAPY'; - apr: Scalars['Float']['output']; - apy: Scalars['Float']['output']; - apy7DayAvg: Scalars['Float']['output']; - apy14DayAvg: Scalars['Float']['output']; - apy30DayAvg: Scalars['Float']['output']; +export type OethBalancerMetaPoolStrategy = { + __typename?: 'OETHBalancerMetaPoolStrategy'; blockNumber: Scalars['Int']['output']; id: Scalars['String']['output']; - rebasingCreditsPerToken: Scalars['BigInt']['output']; + rETH: Scalars['BigInt']['output']; timestamp: Scalars['DateTime']['output']; - txHash: Scalars['String']['output']; + weth: Scalars['BigInt']['output']; }; -export type OethapyEdge = { - __typename?: 'OETHAPYEdge'; +export type OethBalancerMetaPoolStrategyEdge = { + __typename?: 'OETHBalancerMetaPoolStrategyEdge'; cursor: Scalars['String']['output']; - node: Oethapy; + node: OethBalancerMetaPoolStrategy; }; -export enum OethapyOrderByInput { - AprAsc = 'apr_ASC', - AprAscNullsFirst = 'apr_ASC_NULLS_FIRST', - AprDesc = 'apr_DESC', - AprDescNullsLast = 'apr_DESC_NULLS_LAST', - Apy7DayAvgAsc = 'apy7DayAvg_ASC', - Apy7DayAvgAscNullsFirst = 'apy7DayAvg_ASC_NULLS_FIRST', - Apy7DayAvgDesc = 'apy7DayAvg_DESC', - Apy7DayAvgDescNullsLast = 'apy7DayAvg_DESC_NULLS_LAST', - Apy14DayAvgAsc = 'apy14DayAvg_ASC', - Apy14DayAvgAscNullsFirst = 'apy14DayAvg_ASC_NULLS_FIRST', - Apy14DayAvgDesc = 'apy14DayAvg_DESC', - Apy14DayAvgDescNullsLast = 'apy14DayAvg_DESC_NULLS_LAST', - Apy30DayAvgAsc = 'apy30DayAvg_ASC', - Apy30DayAvgAscNullsFirst = 'apy30DayAvg_ASC_NULLS_FIRST', - Apy30DayAvgDesc = 'apy30DayAvg_DESC', - Apy30DayAvgDescNullsLast = 'apy30DayAvg_DESC_NULLS_LAST', - ApyAsc = 'apy_ASC', - ApyAscNullsFirst = 'apy_ASC_NULLS_FIRST', - ApyDesc = 'apy_DESC', - ApyDescNullsLast = 'apy_DESC_NULLS_LAST', +export enum OethBalancerMetaPoolStrategyOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', @@ -3049,68 +3019,23 @@ export enum OethapyOrderByInput { IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - RebasingCreditsPerTokenAsc = 'rebasingCreditsPerToken_ASC', - RebasingCreditsPerTokenAscNullsFirst = 'rebasingCreditsPerToken_ASC_NULLS_FIRST', - RebasingCreditsPerTokenDesc = 'rebasingCreditsPerToken_DESC', - RebasingCreditsPerTokenDescNullsLast = 'rebasingCreditsPerToken_DESC_NULLS_LAST', + REthAsc = 'rETH_ASC', + REthAscNullsFirst = 'rETH_ASC_NULLS_FIRST', + REthDesc = 'rETH_DESC', + REthDescNullsLast = 'rETH_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TxHashAsc = 'txHash_ASC', - TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', - TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST' + WethAsc = 'weth_ASC', + WethAscNullsFirst = 'weth_ASC_NULLS_FIRST', + WethDesc = 'weth_DESC', + WethDescNullsLast = 'weth_DESC_NULLS_LAST' } -export type OethapyWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - apr_eq?: InputMaybe; - apr_gt?: InputMaybe; - apr_gte?: InputMaybe; - apr_in?: InputMaybe>; - apr_isNull?: InputMaybe; - apr_lt?: InputMaybe; - apr_lte?: InputMaybe; - apr_not_eq?: InputMaybe; - apr_not_in?: InputMaybe>; - apy7DayAvg_eq?: InputMaybe; - apy7DayAvg_gt?: InputMaybe; - apy7DayAvg_gte?: InputMaybe; - apy7DayAvg_in?: InputMaybe>; - apy7DayAvg_isNull?: InputMaybe; - apy7DayAvg_lt?: InputMaybe; - apy7DayAvg_lte?: InputMaybe; - apy7DayAvg_not_eq?: InputMaybe; - apy7DayAvg_not_in?: InputMaybe>; - apy14DayAvg_eq?: InputMaybe; - apy14DayAvg_gt?: InputMaybe; - apy14DayAvg_gte?: InputMaybe; - apy14DayAvg_in?: InputMaybe>; - apy14DayAvg_isNull?: InputMaybe; - apy14DayAvg_lt?: InputMaybe; - apy14DayAvg_lte?: InputMaybe; - apy14DayAvg_not_eq?: InputMaybe; - apy14DayAvg_not_in?: InputMaybe>; - apy30DayAvg_eq?: InputMaybe; - apy30DayAvg_gt?: InputMaybe; - apy30DayAvg_gte?: InputMaybe; - apy30DayAvg_in?: InputMaybe>; - apy30DayAvg_isNull?: InputMaybe; - apy30DayAvg_lt?: InputMaybe; - apy30DayAvg_lte?: InputMaybe; - apy30DayAvg_not_eq?: InputMaybe; - apy30DayAvg_not_in?: InputMaybe>; - apy_eq?: InputMaybe; - apy_gt?: InputMaybe; - apy_gte?: InputMaybe; - apy_in?: InputMaybe>; - apy_isNull?: InputMaybe; - apy_lt?: InputMaybe; - apy_lte?: InputMaybe; - apy_not_eq?: InputMaybe; - apy_not_in?: InputMaybe>; +export type OethBalancerMetaPoolStrategyWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -3137,15 +3062,15 @@ export type OethapyWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - rebasingCreditsPerToken_eq?: InputMaybe; - rebasingCreditsPerToken_gt?: InputMaybe; - rebasingCreditsPerToken_gte?: InputMaybe; - rebasingCreditsPerToken_in?: InputMaybe>; - rebasingCreditsPerToken_isNull?: InputMaybe; - rebasingCreditsPerToken_lt?: InputMaybe; - rebasingCreditsPerToken_lte?: InputMaybe; - rebasingCreditsPerToken_not_eq?: InputMaybe; - rebasingCreditsPerToken_not_in?: InputMaybe>; + rETH_eq?: InputMaybe; + rETH_gt?: InputMaybe; + rETH_gte?: InputMaybe; + rETH_in?: InputMaybe>; + rETH_isNull?: InputMaybe; + rETH_lt?: InputMaybe; + rETH_lte?: InputMaybe; + rETH_not_eq?: InputMaybe; + rETH_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -3155,154 +3080,187 @@ export type OethapyWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - txHash_contains?: InputMaybe; - txHash_containsInsensitive?: InputMaybe; - txHash_endsWith?: InputMaybe; - txHash_eq?: InputMaybe; - txHash_gt?: InputMaybe; - txHash_gte?: InputMaybe; - txHash_in?: InputMaybe>; - txHash_isNull?: InputMaybe; - txHash_lt?: InputMaybe; - txHash_lte?: InputMaybe; - txHash_not_contains?: InputMaybe; - txHash_not_containsInsensitive?: InputMaybe; - txHash_not_endsWith?: InputMaybe; - txHash_not_eq?: InputMaybe; - txHash_not_in?: InputMaybe>; - txHash_not_startsWith?: InputMaybe; - txHash_startsWith?: InputMaybe; -}; - -export type OethaPiesConnection = { - __typename?: 'OETHAPiesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OethActivitiesConnection = { - __typename?: 'OETHActivitiesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; + weth_eq?: InputMaybe; + weth_gt?: InputMaybe; + weth_gte?: InputMaybe; + weth_in?: InputMaybe>; + weth_isNull?: InputMaybe; + weth_lt?: InputMaybe; + weth_lte?: InputMaybe; + weth_not_eq?: InputMaybe; + weth_not_in?: InputMaybe>; }; -export type OethActivity = { - __typename?: 'OETHActivity'; - action?: Maybe; - address?: Maybe; - amount?: Maybe; - blockNumber: Scalars['Int']['output']; - callDataLast4Bytes: Scalars['String']['output']; - exchange?: Maybe; - fromSymbol?: Maybe; +export type OethCollateralDailyStat = { + __typename?: 'OETHCollateralDailyStat'; + /** Amount held */ + amount: Scalars['BigInt']['output']; + dailyStatId: OethDailyStat; id: Scalars['String']['output']; - interface?: Maybe; - sighash?: Maybe; - timestamp: Scalars['DateTime']['output']; - toSymbol?: Maybe; - txHash: Scalars['String']['output']; + /** Price in ETH */ + price: Scalars['BigInt']['output']; + /** Token symbol */ + symbol: Scalars['String']['output']; + /** Total ETH value */ + value: Scalars['BigInt']['output']; }; -export type OethActivityEdge = { - __typename?: 'OETHActivityEdge'; +export type OethCollateralDailyStatEdge = { + __typename?: 'OETHCollateralDailyStatEdge'; cursor: Scalars['String']['output']; - node: OethActivity; + node: OethCollateralDailyStat; }; -export enum OethActivityOrderByInput { - ActionAsc = 'action_ASC', - ActionAscNullsFirst = 'action_ASC_NULLS_FIRST', - ActionDesc = 'action_DESC', - ActionDescNullsLast = 'action_DESC_NULLS_LAST', - AddressAsc = 'address_ASC', - AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', - AddressDesc = 'address_DESC', - AddressDescNullsLast = 'address_DESC_NULLS_LAST', +export enum OethCollateralDailyStatOrderByInput { AmountAsc = 'amount_ASC', AmountAscNullsFirst = 'amount_ASC_NULLS_FIRST', AmountDesc = 'amount_DESC', AmountDescNullsLast = 'amount_DESC_NULLS_LAST', - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - CallDataLast4BytesAsc = 'callDataLast4Bytes_ASC', - CallDataLast4BytesAscNullsFirst = 'callDataLast4Bytes_ASC_NULLS_FIRST', - CallDataLast4BytesDesc = 'callDataLast4Bytes_DESC', - CallDataLast4BytesDescNullsLast = 'callDataLast4Bytes_DESC_NULLS_LAST', - ExchangeAsc = 'exchange_ASC', - ExchangeAscNullsFirst = 'exchange_ASC_NULLS_FIRST', - ExchangeDesc = 'exchange_DESC', - ExchangeDescNullsLast = 'exchange_DESC_NULLS_LAST', - FromSymbolAsc = 'fromSymbol_ASC', - FromSymbolAscNullsFirst = 'fromSymbol_ASC_NULLS_FIRST', - FromSymbolDesc = 'fromSymbol_DESC', - FromSymbolDescNullsLast = 'fromSymbol_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - InterfaceAsc = 'interface_ASC', - InterfaceAscNullsFirst = 'interface_ASC_NULLS_FIRST', - InterfaceDesc = 'interface_DESC', - InterfaceDescNullsLast = 'interface_DESC_NULLS_LAST', - SighashAsc = 'sighash_ASC', - SighashAscNullsFirst = 'sighash_ASC_NULLS_FIRST', - SighashDesc = 'sighash_DESC', - SighashDescNullsLast = 'sighash_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - ToSymbolAsc = 'toSymbol_ASC', - ToSymbolAscNullsFirst = 'toSymbol_ASC_NULLS_FIRST', - ToSymbolDesc = 'toSymbol_DESC', - ToSymbolDescNullsLast = 'toSymbol_DESC_NULLS_LAST', - TxHashAsc = 'txHash_ASC', - TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', - TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST' -} - -export type OethActivityWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - action_contains?: InputMaybe; - action_containsInsensitive?: InputMaybe; - action_endsWith?: InputMaybe; - action_eq?: InputMaybe; - action_gt?: InputMaybe; - action_gte?: InputMaybe; - action_in?: InputMaybe>; - action_isNull?: InputMaybe; - action_lt?: InputMaybe; - action_lte?: InputMaybe; - action_not_contains?: InputMaybe; - action_not_containsInsensitive?: InputMaybe; - action_not_endsWith?: InputMaybe; - action_not_eq?: InputMaybe; - action_not_in?: InputMaybe>; - action_not_startsWith?: InputMaybe; - action_startsWith?: InputMaybe; - address_contains?: InputMaybe; - address_containsInsensitive?: InputMaybe; - address_endsWith?: InputMaybe; - address_eq?: InputMaybe; - address_gt?: InputMaybe; - address_gte?: InputMaybe; - address_in?: InputMaybe>; - address_isNull?: InputMaybe; - address_lt?: InputMaybe; - address_lte?: InputMaybe; - address_not_contains?: InputMaybe; - address_not_containsInsensitive?: InputMaybe; - address_not_endsWith?: InputMaybe; - address_not_eq?: InputMaybe; - address_not_in?: InputMaybe>; - address_not_startsWith?: InputMaybe; - address_startsWith?: InputMaybe; + DailyStatIdAmoSupplyAsc = 'dailyStatId_amoSupply_ASC', + DailyStatIdAmoSupplyAscNullsFirst = 'dailyStatId_amoSupply_ASC_NULLS_FIRST', + DailyStatIdAmoSupplyDesc = 'dailyStatId_amoSupply_DESC', + DailyStatIdAmoSupplyDescNullsLast = 'dailyStatId_amoSupply_DESC_NULLS_LAST', + DailyStatIdAprAsc = 'dailyStatId_apr_ASC', + DailyStatIdAprAscNullsFirst = 'dailyStatId_apr_ASC_NULLS_FIRST', + DailyStatIdAprDesc = 'dailyStatId_apr_DESC', + DailyStatIdAprDescNullsLast = 'dailyStatId_apr_DESC_NULLS_LAST', + DailyStatIdApy7DayAvgAsc = 'dailyStatId_apy7DayAvg_ASC', + DailyStatIdApy7DayAvgAscNullsFirst = 'dailyStatId_apy7DayAvg_ASC_NULLS_FIRST', + DailyStatIdApy7DayAvgDesc = 'dailyStatId_apy7DayAvg_DESC', + DailyStatIdApy7DayAvgDescNullsLast = 'dailyStatId_apy7DayAvg_DESC_NULLS_LAST', + DailyStatIdApy14DayAvgAsc = 'dailyStatId_apy14DayAvg_ASC', + DailyStatIdApy14DayAvgAscNullsFirst = 'dailyStatId_apy14DayAvg_ASC_NULLS_FIRST', + DailyStatIdApy14DayAvgDesc = 'dailyStatId_apy14DayAvg_DESC', + DailyStatIdApy14DayAvgDescNullsLast = 'dailyStatId_apy14DayAvg_DESC_NULLS_LAST', + DailyStatIdApy30DayAvgAsc = 'dailyStatId_apy30DayAvg_ASC', + DailyStatIdApy30DayAvgAscNullsFirst = 'dailyStatId_apy30DayAvg_ASC_NULLS_FIRST', + DailyStatIdApy30DayAvgDesc = 'dailyStatId_apy30DayAvg_DESC', + DailyStatIdApy30DayAvgDescNullsLast = 'dailyStatId_apy30DayAvg_DESC_NULLS_LAST', + DailyStatIdApyAsc = 'dailyStatId_apy_ASC', + DailyStatIdApyAscNullsFirst = 'dailyStatId_apy_ASC_NULLS_FIRST', + DailyStatIdApyDesc = 'dailyStatId_apy_DESC', + DailyStatIdApyDescNullsLast = 'dailyStatId_apy_DESC_NULLS_LAST', + DailyStatIdBlockNumberAsc = 'dailyStatId_blockNumber_ASC', + DailyStatIdBlockNumberAscNullsFirst = 'dailyStatId_blockNumber_ASC_NULLS_FIRST', + DailyStatIdBlockNumberDesc = 'dailyStatId_blockNumber_DESC', + DailyStatIdBlockNumberDescNullsLast = 'dailyStatId_blockNumber_DESC_NULLS_LAST', + DailyStatIdDripperWethAsc = 'dailyStatId_dripperWETH_ASC', + DailyStatIdDripperWethAscNullsFirst = 'dailyStatId_dripperWETH_ASC_NULLS_FIRST', + DailyStatIdDripperWethDesc = 'dailyStatId_dripperWETH_DESC', + DailyStatIdDripperWethDescNullsLast = 'dailyStatId_dripperWETH_DESC_NULLS_LAST', + DailyStatIdFeesEth7DayAsc = 'dailyStatId_feesETH7Day_ASC', + DailyStatIdFeesEth7DayAscNullsFirst = 'dailyStatId_feesETH7Day_ASC_NULLS_FIRST', + DailyStatIdFeesEth7DayDesc = 'dailyStatId_feesETH7Day_DESC', + DailyStatIdFeesEth7DayDescNullsLast = 'dailyStatId_feesETH7Day_DESC_NULLS_LAST', + DailyStatIdFeesEthAllTimeAsc = 'dailyStatId_feesETHAllTime_ASC', + DailyStatIdFeesEthAllTimeAscNullsFirst = 'dailyStatId_feesETHAllTime_ASC_NULLS_FIRST', + DailyStatIdFeesEthAllTimeDesc = 'dailyStatId_feesETHAllTime_DESC', + DailyStatIdFeesEthAllTimeDescNullsLast = 'dailyStatId_feesETHAllTime_DESC_NULLS_LAST', + DailyStatIdFeesEthAsc = 'dailyStatId_feesETH_ASC', + DailyStatIdFeesEthAscNullsFirst = 'dailyStatId_feesETH_ASC_NULLS_FIRST', + DailyStatIdFeesEthDesc = 'dailyStatId_feesETH_DESC', + DailyStatIdFeesEthDescNullsLast = 'dailyStatId_feesETH_DESC_NULLS_LAST', + DailyStatIdFeesUsd7DayAsc = 'dailyStatId_feesUSD7Day_ASC', + DailyStatIdFeesUsd7DayAscNullsFirst = 'dailyStatId_feesUSD7Day_ASC_NULLS_FIRST', + DailyStatIdFeesUsd7DayDesc = 'dailyStatId_feesUSD7Day_DESC', + DailyStatIdFeesUsd7DayDescNullsLast = 'dailyStatId_feesUSD7Day_DESC_NULLS_LAST', + DailyStatIdFeesUsdAllTimeAsc = 'dailyStatId_feesUSDAllTime_ASC', + DailyStatIdFeesUsdAllTimeAscNullsFirst = 'dailyStatId_feesUSDAllTime_ASC_NULLS_FIRST', + DailyStatIdFeesUsdAllTimeDesc = 'dailyStatId_feesUSDAllTime_DESC', + DailyStatIdFeesUsdAllTimeDescNullsLast = 'dailyStatId_feesUSDAllTime_DESC_NULLS_LAST', + DailyStatIdFeesUsdAsc = 'dailyStatId_feesUSD_ASC', + DailyStatIdFeesUsdAscNullsFirst = 'dailyStatId_feesUSD_ASC_NULLS_FIRST', + DailyStatIdFeesUsdDesc = 'dailyStatId_feesUSD_DESC', + DailyStatIdFeesUsdDescNullsLast = 'dailyStatId_feesUSD_DESC_NULLS_LAST', + DailyStatIdHoldersOverThresholdAsc = 'dailyStatId_holdersOverThreshold_ASC', + DailyStatIdHoldersOverThresholdAscNullsFirst = 'dailyStatId_holdersOverThreshold_ASC_NULLS_FIRST', + DailyStatIdHoldersOverThresholdDesc = 'dailyStatId_holdersOverThreshold_DESC', + DailyStatIdHoldersOverThresholdDescNullsLast = 'dailyStatId_holdersOverThreshold_DESC_NULLS_LAST', + DailyStatIdIdAsc = 'dailyStatId_id_ASC', + DailyStatIdIdAscNullsFirst = 'dailyStatId_id_ASC_NULLS_FIRST', + DailyStatIdIdDesc = 'dailyStatId_id_DESC', + DailyStatIdIdDescNullsLast = 'dailyStatId_id_DESC_NULLS_LAST', + DailyStatIdMarketCapUsdAsc = 'dailyStatId_marketCapUSD_ASC', + DailyStatIdMarketCapUsdAscNullsFirst = 'dailyStatId_marketCapUSD_ASC_NULLS_FIRST', + DailyStatIdMarketCapUsdDesc = 'dailyStatId_marketCapUSD_DESC', + DailyStatIdMarketCapUsdDescNullsLast = 'dailyStatId_marketCapUSD_DESC_NULLS_LAST', + DailyStatIdNonRebasingSupplyAsc = 'dailyStatId_nonRebasingSupply_ASC', + DailyStatIdNonRebasingSupplyAscNullsFirst = 'dailyStatId_nonRebasingSupply_ASC_NULLS_FIRST', + DailyStatIdNonRebasingSupplyDesc = 'dailyStatId_nonRebasingSupply_DESC', + DailyStatIdNonRebasingSupplyDescNullsLast = 'dailyStatId_nonRebasingSupply_DESC_NULLS_LAST', + DailyStatIdPegPriceAsc = 'dailyStatId_pegPrice_ASC', + DailyStatIdPegPriceAscNullsFirst = 'dailyStatId_pegPrice_ASC_NULLS_FIRST', + DailyStatIdPegPriceDesc = 'dailyStatId_pegPrice_DESC', + DailyStatIdPegPriceDescNullsLast = 'dailyStatId_pegPrice_DESC_NULLS_LAST', + DailyStatIdRebasingSupplyAsc = 'dailyStatId_rebasingSupply_ASC', + DailyStatIdRebasingSupplyAscNullsFirst = 'dailyStatId_rebasingSupply_ASC_NULLS_FIRST', + DailyStatIdRebasingSupplyDesc = 'dailyStatId_rebasingSupply_DESC', + DailyStatIdRebasingSupplyDescNullsLast = 'dailyStatId_rebasingSupply_DESC_NULLS_LAST', + DailyStatIdTimestampAsc = 'dailyStatId_timestamp_ASC', + DailyStatIdTimestampAscNullsFirst = 'dailyStatId_timestamp_ASC_NULLS_FIRST', + DailyStatIdTimestampDesc = 'dailyStatId_timestamp_DESC', + DailyStatIdTimestampDescNullsLast = 'dailyStatId_timestamp_DESC_NULLS_LAST', + DailyStatIdTotalSupplyUsdAsc = 'dailyStatId_totalSupplyUSD_ASC', + DailyStatIdTotalSupplyUsdAscNullsFirst = 'dailyStatId_totalSupplyUSD_ASC_NULLS_FIRST', + DailyStatIdTotalSupplyUsdDesc = 'dailyStatId_totalSupplyUSD_DESC', + DailyStatIdTotalSupplyUsdDescNullsLast = 'dailyStatId_totalSupplyUSD_DESC_NULLS_LAST', + DailyStatIdTotalSupplyAsc = 'dailyStatId_totalSupply_ASC', + DailyStatIdTotalSupplyAscNullsFirst = 'dailyStatId_totalSupply_ASC_NULLS_FIRST', + DailyStatIdTotalSupplyDesc = 'dailyStatId_totalSupply_DESC', + DailyStatIdTotalSupplyDescNullsLast = 'dailyStatId_totalSupply_DESC_NULLS_LAST', + DailyStatIdTradingVolumeUsdAsc = 'dailyStatId_tradingVolumeUSD_ASC', + DailyStatIdTradingVolumeUsdAscNullsFirst = 'dailyStatId_tradingVolumeUSD_ASC_NULLS_FIRST', + DailyStatIdTradingVolumeUsdDesc = 'dailyStatId_tradingVolumeUSD_DESC', + DailyStatIdTradingVolumeUsdDescNullsLast = 'dailyStatId_tradingVolumeUSD_DESC_NULLS_LAST', + DailyStatIdWrappedSupplyAsc = 'dailyStatId_wrappedSupply_ASC', + DailyStatIdWrappedSupplyAscNullsFirst = 'dailyStatId_wrappedSupply_ASC_NULLS_FIRST', + DailyStatIdWrappedSupplyDesc = 'dailyStatId_wrappedSupply_DESC', + DailyStatIdWrappedSupplyDescNullsLast = 'dailyStatId_wrappedSupply_DESC_NULLS_LAST', + DailyStatIdYieldEth7DayAsc = 'dailyStatId_yieldETH7Day_ASC', + DailyStatIdYieldEth7DayAscNullsFirst = 'dailyStatId_yieldETH7Day_ASC_NULLS_FIRST', + DailyStatIdYieldEth7DayDesc = 'dailyStatId_yieldETH7Day_DESC', + DailyStatIdYieldEth7DayDescNullsLast = 'dailyStatId_yieldETH7Day_DESC_NULLS_LAST', + DailyStatIdYieldEthAllTimeAsc = 'dailyStatId_yieldETHAllTime_ASC', + DailyStatIdYieldEthAllTimeAscNullsFirst = 'dailyStatId_yieldETHAllTime_ASC_NULLS_FIRST', + DailyStatIdYieldEthAllTimeDesc = 'dailyStatId_yieldETHAllTime_DESC', + DailyStatIdYieldEthAllTimeDescNullsLast = 'dailyStatId_yieldETHAllTime_DESC_NULLS_LAST', + DailyStatIdYieldEthAsc = 'dailyStatId_yieldETH_ASC', + DailyStatIdYieldEthAscNullsFirst = 'dailyStatId_yieldETH_ASC_NULLS_FIRST', + DailyStatIdYieldEthDesc = 'dailyStatId_yieldETH_DESC', + DailyStatIdYieldEthDescNullsLast = 'dailyStatId_yieldETH_DESC_NULLS_LAST', + DailyStatIdYieldUsd7DayAsc = 'dailyStatId_yieldUSD7Day_ASC', + DailyStatIdYieldUsd7DayAscNullsFirst = 'dailyStatId_yieldUSD7Day_ASC_NULLS_FIRST', + DailyStatIdYieldUsd7DayDesc = 'dailyStatId_yieldUSD7Day_DESC', + DailyStatIdYieldUsd7DayDescNullsLast = 'dailyStatId_yieldUSD7Day_DESC_NULLS_LAST', + DailyStatIdYieldUsdAllTimeAsc = 'dailyStatId_yieldUSDAllTime_ASC', + DailyStatIdYieldUsdAllTimeAscNullsFirst = 'dailyStatId_yieldUSDAllTime_ASC_NULLS_FIRST', + DailyStatIdYieldUsdAllTimeDesc = 'dailyStatId_yieldUSDAllTime_DESC', + DailyStatIdYieldUsdAllTimeDescNullsLast = 'dailyStatId_yieldUSDAllTime_DESC_NULLS_LAST', + DailyStatIdYieldUsdAsc = 'dailyStatId_yieldUSD_ASC', + DailyStatIdYieldUsdAscNullsFirst = 'dailyStatId_yieldUSD_ASC_NULLS_FIRST', + DailyStatIdYieldUsdDesc = 'dailyStatId_yieldUSD_DESC', + DailyStatIdYieldUsdDescNullsLast = 'dailyStatId_yieldUSD_DESC_NULLS_LAST', + IdAsc = 'id_ASC', + IdAscNullsFirst = 'id_ASC_NULLS_FIRST', + IdDesc = 'id_DESC', + IdDescNullsLast = 'id_DESC_NULLS_LAST', + PriceAsc = 'price_ASC', + PriceAscNullsFirst = 'price_ASC_NULLS_FIRST', + PriceDesc = 'price_DESC', + PriceDescNullsLast = 'price_DESC_NULLS_LAST', + SymbolAsc = 'symbol_ASC', + SymbolAscNullsFirst = 'symbol_ASC_NULLS_FIRST', + SymbolDesc = 'symbol_DESC', + SymbolDescNullsLast = 'symbol_DESC_NULLS_LAST', + ValueAsc = 'value_ASC', + ValueAscNullsFirst = 'value_ASC_NULLS_FIRST', + ValueDesc = 'value_DESC', + ValueDescNullsLast = 'value_DESC_NULLS_LAST' +} + +export type OethCollateralDailyStatWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; amount_eq?: InputMaybe; amount_gt?: InputMaybe; amount_gte?: InputMaybe; @@ -3312,66 +3270,8 @@ export type OethActivityWhereInput = { amount_lte?: InputMaybe; amount_not_eq?: InputMaybe; amount_not_in?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - callDataLast4Bytes_contains?: InputMaybe; - callDataLast4Bytes_containsInsensitive?: InputMaybe; - callDataLast4Bytes_endsWith?: InputMaybe; - callDataLast4Bytes_eq?: InputMaybe; - callDataLast4Bytes_gt?: InputMaybe; - callDataLast4Bytes_gte?: InputMaybe; - callDataLast4Bytes_in?: InputMaybe>; - callDataLast4Bytes_isNull?: InputMaybe; - callDataLast4Bytes_lt?: InputMaybe; - callDataLast4Bytes_lte?: InputMaybe; - callDataLast4Bytes_not_contains?: InputMaybe; - callDataLast4Bytes_not_containsInsensitive?: InputMaybe; - callDataLast4Bytes_not_endsWith?: InputMaybe; - callDataLast4Bytes_not_eq?: InputMaybe; - callDataLast4Bytes_not_in?: InputMaybe>; - callDataLast4Bytes_not_startsWith?: InputMaybe; - callDataLast4Bytes_startsWith?: InputMaybe; - exchange_contains?: InputMaybe; - exchange_containsInsensitive?: InputMaybe; - exchange_endsWith?: InputMaybe; - exchange_eq?: InputMaybe; - exchange_gt?: InputMaybe; - exchange_gte?: InputMaybe; - exchange_in?: InputMaybe>; - exchange_isNull?: InputMaybe; - exchange_lt?: InputMaybe; - exchange_lte?: InputMaybe; - exchange_not_contains?: InputMaybe; - exchange_not_containsInsensitive?: InputMaybe; - exchange_not_endsWith?: InputMaybe; - exchange_not_eq?: InputMaybe; - exchange_not_in?: InputMaybe>; - exchange_not_startsWith?: InputMaybe; - exchange_startsWith?: InputMaybe; - fromSymbol_contains?: InputMaybe; - fromSymbol_containsInsensitive?: InputMaybe; - fromSymbol_endsWith?: InputMaybe; - fromSymbol_eq?: InputMaybe; - fromSymbol_gt?: InputMaybe; - fromSymbol_gte?: InputMaybe; - fromSymbol_in?: InputMaybe>; - fromSymbol_isNull?: InputMaybe; - fromSymbol_lt?: InputMaybe; - fromSymbol_lte?: InputMaybe; - fromSymbol_not_contains?: InputMaybe; - fromSymbol_not_containsInsensitive?: InputMaybe; - fromSymbol_not_endsWith?: InputMaybe; - fromSymbol_not_eq?: InputMaybe; - fromSymbol_not_in?: InputMaybe>; - fromSymbol_not_startsWith?: InputMaybe; - fromSymbol_startsWith?: InputMaybe; + dailyStatId?: InputMaybe; + dailyStatId_isNull?: InputMaybe; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -3389,177 +3289,138 @@ export type OethActivityWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - interface_contains?: InputMaybe; - interface_containsInsensitive?: InputMaybe; - interface_endsWith?: InputMaybe; - interface_eq?: InputMaybe; - interface_gt?: InputMaybe; - interface_gte?: InputMaybe; - interface_in?: InputMaybe>; - interface_isNull?: InputMaybe; - interface_lt?: InputMaybe; - interface_lte?: InputMaybe; - interface_not_contains?: InputMaybe; - interface_not_containsInsensitive?: InputMaybe; - interface_not_endsWith?: InputMaybe; - interface_not_eq?: InputMaybe; - interface_not_in?: InputMaybe>; - interface_not_startsWith?: InputMaybe; - interface_startsWith?: InputMaybe; - sighash_contains?: InputMaybe; - sighash_containsInsensitive?: InputMaybe; - sighash_endsWith?: InputMaybe; - sighash_eq?: InputMaybe; - sighash_gt?: InputMaybe; - sighash_gte?: InputMaybe; - sighash_in?: InputMaybe>; - sighash_isNull?: InputMaybe; - sighash_lt?: InputMaybe; - sighash_lte?: InputMaybe; - sighash_not_contains?: InputMaybe; - sighash_not_containsInsensitive?: InputMaybe; - sighash_not_endsWith?: InputMaybe; - sighash_not_eq?: InputMaybe; - sighash_not_in?: InputMaybe>; - sighash_not_startsWith?: InputMaybe; - sighash_startsWith?: InputMaybe; - timestamp_eq?: InputMaybe; - timestamp_gt?: InputMaybe; - timestamp_gte?: InputMaybe; - timestamp_in?: InputMaybe>; - timestamp_isNull?: InputMaybe; - timestamp_lt?: InputMaybe; - timestamp_lte?: InputMaybe; - timestamp_not_eq?: InputMaybe; - timestamp_not_in?: InputMaybe>; - toSymbol_contains?: InputMaybe; - toSymbol_containsInsensitive?: InputMaybe; - toSymbol_endsWith?: InputMaybe; - toSymbol_eq?: InputMaybe; - toSymbol_gt?: InputMaybe; - toSymbol_gte?: InputMaybe; - toSymbol_in?: InputMaybe>; - toSymbol_isNull?: InputMaybe; - toSymbol_lt?: InputMaybe; - toSymbol_lte?: InputMaybe; - toSymbol_not_contains?: InputMaybe; - toSymbol_not_containsInsensitive?: InputMaybe; - toSymbol_not_endsWith?: InputMaybe; - toSymbol_not_eq?: InputMaybe; - toSymbol_not_in?: InputMaybe>; - toSymbol_not_startsWith?: InputMaybe; - toSymbol_startsWith?: InputMaybe; - txHash_contains?: InputMaybe; - txHash_containsInsensitive?: InputMaybe; - txHash_endsWith?: InputMaybe; - txHash_eq?: InputMaybe; - txHash_gt?: InputMaybe; - txHash_gte?: InputMaybe; - txHash_in?: InputMaybe>; - txHash_isNull?: InputMaybe; - txHash_lt?: InputMaybe; - txHash_lte?: InputMaybe; - txHash_not_contains?: InputMaybe; - txHash_not_containsInsensitive?: InputMaybe; - txHash_not_endsWith?: InputMaybe; - txHash_not_eq?: InputMaybe; - txHash_not_in?: InputMaybe>; - txHash_not_startsWith?: InputMaybe; - txHash_startsWith?: InputMaybe; + price_eq?: InputMaybe; + price_gt?: InputMaybe; + price_gte?: InputMaybe; + price_in?: InputMaybe>; + price_isNull?: InputMaybe; + price_lt?: InputMaybe; + price_lte?: InputMaybe; + price_not_eq?: InputMaybe; + price_not_in?: InputMaybe>; + symbol_contains?: InputMaybe; + symbol_containsInsensitive?: InputMaybe; + symbol_endsWith?: InputMaybe; + symbol_eq?: InputMaybe; + symbol_gt?: InputMaybe; + symbol_gte?: InputMaybe; + symbol_in?: InputMaybe>; + symbol_isNull?: InputMaybe; + symbol_lt?: InputMaybe; + symbol_lte?: InputMaybe; + symbol_not_contains?: InputMaybe; + symbol_not_containsInsensitive?: InputMaybe; + symbol_not_endsWith?: InputMaybe; + symbol_not_eq?: InputMaybe; + symbol_not_in?: InputMaybe>; + symbol_not_startsWith?: InputMaybe; + symbol_startsWith?: InputMaybe; + value_eq?: InputMaybe; + value_gt?: InputMaybe; + value_gte?: InputMaybe; + value_in?: InputMaybe>; + value_isNull?: InputMaybe; + value_lt?: InputMaybe; + value_lte?: InputMaybe; + value_not_eq?: InputMaybe; + value_not_in?: InputMaybe>; }; -/** The OETH balance, history and other information for a given address. */ -export type OethAddress = { - __typename?: 'OETHAddress'; - balance: Scalars['BigInt']['output']; - credits: Scalars['BigInt']['output']; - earned: Scalars['BigInt']['output']; - history: Array; - id: Scalars['String']['output']; - isContract: Scalars['Boolean']['output']; - lastUpdated: Scalars['DateTime']['output']; - rebasingOption: RebasingOption; +export type OethCollateralDailyStatsConnection = { + __typename?: 'OETHCollateralDailyStatsConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; }; - -/** The OETH balance, history and other information for a given address. */ -export type OethAddressHistoryArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; +export type OethCurveLp = { + __typename?: 'OETHCurveLP'; + blockNumber: Scalars['Int']['output']; + eth: Scalars['BigInt']['output']; + ethOwned: Scalars['BigInt']['output']; + id: Scalars['String']['output']; + oeth: Scalars['BigInt']['output']; + oethOwned: Scalars['BigInt']['output']; + timestamp: Scalars['DateTime']['output']; + totalSupply: Scalars['BigInt']['output']; + totalSupplyOwned: Scalars['BigInt']['output']; }; -export type OethAddressEdge = { - __typename?: 'OETHAddressEdge'; +export type OethCurveLpEdge = { + __typename?: 'OETHCurveLPEdge'; cursor: Scalars['String']['output']; - node: OethAddress; + node: OethCurveLp; }; -export enum OethAddressOrderByInput { - BalanceAsc = 'balance_ASC', - BalanceAscNullsFirst = 'balance_ASC_NULLS_FIRST', - BalanceDesc = 'balance_DESC', - BalanceDescNullsLast = 'balance_DESC_NULLS_LAST', - CreditsAsc = 'credits_ASC', - CreditsAscNullsFirst = 'credits_ASC_NULLS_FIRST', - CreditsDesc = 'credits_DESC', - CreditsDescNullsLast = 'credits_DESC_NULLS_LAST', - EarnedAsc = 'earned_ASC', - EarnedAscNullsFirst = 'earned_ASC_NULLS_FIRST', - EarnedDesc = 'earned_DESC', - EarnedDescNullsLast = 'earned_DESC_NULLS_LAST', +export enum OethCurveLpOrderByInput { + BlockNumberAsc = 'blockNumber_ASC', + BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', + BlockNumberDesc = 'blockNumber_DESC', + BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + EthOwnedAsc = 'ethOwned_ASC', + EthOwnedAscNullsFirst = 'ethOwned_ASC_NULLS_FIRST', + EthOwnedDesc = 'ethOwned_DESC', + EthOwnedDescNullsLast = 'ethOwned_DESC_NULLS_LAST', + EthAsc = 'eth_ASC', + EthAscNullsFirst = 'eth_ASC_NULLS_FIRST', + EthDesc = 'eth_DESC', + EthDescNullsLast = 'eth_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - IsContractAsc = 'isContract_ASC', - IsContractAscNullsFirst = 'isContract_ASC_NULLS_FIRST', - IsContractDesc = 'isContract_DESC', - IsContractDescNullsLast = 'isContract_DESC_NULLS_LAST', - LastUpdatedAsc = 'lastUpdated_ASC', - LastUpdatedAscNullsFirst = 'lastUpdated_ASC_NULLS_FIRST', - LastUpdatedDesc = 'lastUpdated_DESC', - LastUpdatedDescNullsLast = 'lastUpdated_DESC_NULLS_LAST', - RebasingOptionAsc = 'rebasingOption_ASC', - RebasingOptionAscNullsFirst = 'rebasingOption_ASC_NULLS_FIRST', - RebasingOptionDesc = 'rebasingOption_DESC', - RebasingOptionDescNullsLast = 'rebasingOption_DESC_NULLS_LAST' + OethOwnedAsc = 'oethOwned_ASC', + OethOwnedAscNullsFirst = 'oethOwned_ASC_NULLS_FIRST', + OethOwnedDesc = 'oethOwned_DESC', + OethOwnedDescNullsLast = 'oethOwned_DESC_NULLS_LAST', + OethAsc = 'oeth_ASC', + OethAscNullsFirst = 'oeth_ASC_NULLS_FIRST', + OethDesc = 'oeth_DESC', + OethDescNullsLast = 'oeth_DESC_NULLS_LAST', + TimestampAsc = 'timestamp_ASC', + TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', + TimestampDesc = 'timestamp_DESC', + TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', + TotalSupplyOwnedAsc = 'totalSupplyOwned_ASC', + TotalSupplyOwnedAscNullsFirst = 'totalSupplyOwned_ASC_NULLS_FIRST', + TotalSupplyOwnedDesc = 'totalSupplyOwned_DESC', + TotalSupplyOwnedDescNullsLast = 'totalSupplyOwned_DESC_NULLS_LAST', + TotalSupplyAsc = 'totalSupply_ASC', + TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', + TotalSupplyDesc = 'totalSupply_DESC', + TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST' } -export type OethAddressWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - balance_eq?: InputMaybe; - balance_gt?: InputMaybe; - balance_gte?: InputMaybe; - balance_in?: InputMaybe>; - balance_isNull?: InputMaybe; - balance_lt?: InputMaybe; - balance_lte?: InputMaybe; - balance_not_eq?: InputMaybe; - balance_not_in?: InputMaybe>; - credits_eq?: InputMaybe; - credits_gt?: InputMaybe; - credits_gte?: InputMaybe; - credits_in?: InputMaybe>; - credits_isNull?: InputMaybe; - credits_lt?: InputMaybe; - credits_lte?: InputMaybe; - credits_not_eq?: InputMaybe; - credits_not_in?: InputMaybe>; - earned_eq?: InputMaybe; - earned_gt?: InputMaybe; - earned_gte?: InputMaybe; - earned_in?: InputMaybe>; - earned_isNull?: InputMaybe; - earned_lt?: InputMaybe; - earned_lte?: InputMaybe; - earned_not_eq?: InputMaybe; - earned_not_in?: InputMaybe>; - history_every?: InputMaybe; - history_none?: InputMaybe; - history_some?: InputMaybe; +export type OethCurveLpWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + blockNumber_eq?: InputMaybe; + blockNumber_gt?: InputMaybe; + blockNumber_gte?: InputMaybe; + blockNumber_in?: InputMaybe>; + blockNumber_isNull?: InputMaybe; + blockNumber_lt?: InputMaybe; + blockNumber_lte?: InputMaybe; + blockNumber_not_eq?: InputMaybe; + blockNumber_not_in?: InputMaybe>; + ethOwned_eq?: InputMaybe; + ethOwned_gt?: InputMaybe; + ethOwned_gte?: InputMaybe; + ethOwned_in?: InputMaybe>; + ethOwned_isNull?: InputMaybe; + ethOwned_lt?: InputMaybe; + ethOwned_lte?: InputMaybe; + ethOwned_not_eq?: InputMaybe; + ethOwned_not_in?: InputMaybe>; + eth_eq?: InputMaybe; + eth_gt?: InputMaybe; + eth_gte?: InputMaybe; + eth_in?: InputMaybe>; + eth_isNull?: InputMaybe; + eth_lt?: InputMaybe; + eth_lte?: InputMaybe; + eth_not_eq?: InputMaybe; + eth_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -3577,1013 +3438,24 @@ export type OethAddressWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - isContract_eq?: InputMaybe; - isContract_isNull?: InputMaybe; - isContract_not_eq?: InputMaybe; - lastUpdated_eq?: InputMaybe; - lastUpdated_gt?: InputMaybe; - lastUpdated_gte?: InputMaybe; - lastUpdated_in?: InputMaybe>; - lastUpdated_isNull?: InputMaybe; - lastUpdated_lt?: InputMaybe; - lastUpdated_lte?: InputMaybe; - lastUpdated_not_eq?: InputMaybe; - lastUpdated_not_in?: InputMaybe>; - rebasingOption_eq?: InputMaybe; - rebasingOption_in?: InputMaybe>; - rebasingOption_isNull?: InputMaybe; - rebasingOption_not_eq?: InputMaybe; - rebasingOption_not_in?: InputMaybe>; -}; - -export type OethAddressesConnection = { - __typename?: 'OETHAddressesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OethAsset = { - __typename?: 'OETHAsset'; - address: Scalars['String']['output']; - id: Scalars['String']['output']; - symbol: Scalars['String']['output']; -}; - -export type OethAssetEdge = { - __typename?: 'OETHAssetEdge'; - cursor: Scalars['String']['output']; - node: OethAsset; -}; - -export enum OethAssetOrderByInput { - AddressAsc = 'address_ASC', - AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', - AddressDesc = 'address_DESC', - AddressDescNullsLast = 'address_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - SymbolAsc = 'symbol_ASC', - SymbolAscNullsFirst = 'symbol_ASC_NULLS_FIRST', - SymbolDesc = 'symbol_DESC', - SymbolDescNullsLast = 'symbol_DESC_NULLS_LAST' -} - -export type OethAssetWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - address_contains?: InputMaybe; - address_containsInsensitive?: InputMaybe; - address_endsWith?: InputMaybe; - address_eq?: InputMaybe; - address_gt?: InputMaybe; - address_gte?: InputMaybe; - address_in?: InputMaybe>; - address_isNull?: InputMaybe; - address_lt?: InputMaybe; - address_lte?: InputMaybe; - address_not_contains?: InputMaybe; - address_not_containsInsensitive?: InputMaybe; - address_not_endsWith?: InputMaybe; - address_not_eq?: InputMaybe; - address_not_in?: InputMaybe>; - address_not_startsWith?: InputMaybe; - address_startsWith?: InputMaybe; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - symbol_contains?: InputMaybe; - symbol_containsInsensitive?: InputMaybe; - symbol_endsWith?: InputMaybe; - symbol_eq?: InputMaybe; - symbol_gt?: InputMaybe; - symbol_gte?: InputMaybe; - symbol_in?: InputMaybe>; - symbol_isNull?: InputMaybe; - symbol_lt?: InputMaybe; - symbol_lte?: InputMaybe; - symbol_not_contains?: InputMaybe; - symbol_not_containsInsensitive?: InputMaybe; - symbol_not_endsWith?: InputMaybe; - symbol_not_eq?: InputMaybe; - symbol_not_in?: InputMaybe>; - symbol_not_startsWith?: InputMaybe; - symbol_startsWith?: InputMaybe; -}; - -export type OethAssetsConnection = { - __typename?: 'OETHAssetsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OethBalancerMetaPoolStrategiesConnection = { - __typename?: 'OETHBalancerMetaPoolStrategiesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OethBalancerMetaPoolStrategy = { - __typename?: 'OETHBalancerMetaPoolStrategy'; - blockNumber: Scalars['Int']['output']; - id: Scalars['String']['output']; - rETH: Scalars['BigInt']['output']; - timestamp: Scalars['DateTime']['output']; - weth: Scalars['BigInt']['output']; -}; - -export type OethBalancerMetaPoolStrategyEdge = { - __typename?: 'OETHBalancerMetaPoolStrategyEdge'; - cursor: Scalars['String']['output']; - node: OethBalancerMetaPoolStrategy; -}; - -export enum OethBalancerMetaPoolStrategyOrderByInput { - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - REthAsc = 'rETH_ASC', - REthAscNullsFirst = 'rETH_ASC_NULLS_FIRST', - REthDesc = 'rETH_DESC', - REthDescNullsLast = 'rETH_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - WethAsc = 'weth_ASC', - WethAscNullsFirst = 'weth_ASC_NULLS_FIRST', - WethDesc = 'weth_DESC', - WethDescNullsLast = 'weth_DESC_NULLS_LAST' -} - -export type OethBalancerMetaPoolStrategyWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - rETH_eq?: InputMaybe; - rETH_gt?: InputMaybe; - rETH_gte?: InputMaybe; - rETH_in?: InputMaybe>; - rETH_isNull?: InputMaybe; - rETH_lt?: InputMaybe; - rETH_lte?: InputMaybe; - rETH_not_eq?: InputMaybe; - rETH_not_in?: InputMaybe>; - timestamp_eq?: InputMaybe; - timestamp_gt?: InputMaybe; - timestamp_gte?: InputMaybe; - timestamp_in?: InputMaybe>; - timestamp_isNull?: InputMaybe; - timestamp_lt?: InputMaybe; - timestamp_lte?: InputMaybe; - timestamp_not_eq?: InputMaybe; - timestamp_not_in?: InputMaybe>; - weth_eq?: InputMaybe; - weth_gt?: InputMaybe; - weth_gte?: InputMaybe; - weth_in?: InputMaybe>; - weth_isNull?: InputMaybe; - weth_lt?: InputMaybe; - weth_lte?: InputMaybe; - weth_not_eq?: InputMaybe; - weth_not_in?: InputMaybe>; -}; - -export type OethCollateralDailyStat = { - __typename?: 'OETHCollateralDailyStat'; - /** Amount held */ - amount: Scalars['BigInt']['output']; - dailyStatId: OethDailyStat; - id: Scalars['String']['output']; - /** Price in ETH */ - price: Scalars['BigInt']['output']; - /** Token symbol */ - symbol: Scalars['String']['output']; - /** Total ETH value */ - value: Scalars['BigInt']['output']; -}; - -export type OethCollateralDailyStatEdge = { - __typename?: 'OETHCollateralDailyStatEdge'; - cursor: Scalars['String']['output']; - node: OethCollateralDailyStat; -}; - -export enum OethCollateralDailyStatOrderByInput { - AmountAsc = 'amount_ASC', - AmountAscNullsFirst = 'amount_ASC_NULLS_FIRST', - AmountDesc = 'amount_DESC', - AmountDescNullsLast = 'amount_DESC_NULLS_LAST', - DailyStatIdAmoSupplyAsc = 'dailyStatId_amoSupply_ASC', - DailyStatIdAmoSupplyAscNullsFirst = 'dailyStatId_amoSupply_ASC_NULLS_FIRST', - DailyStatIdAmoSupplyDesc = 'dailyStatId_amoSupply_DESC', - DailyStatIdAmoSupplyDescNullsLast = 'dailyStatId_amoSupply_DESC_NULLS_LAST', - DailyStatIdAprAsc = 'dailyStatId_apr_ASC', - DailyStatIdAprAscNullsFirst = 'dailyStatId_apr_ASC_NULLS_FIRST', - DailyStatIdAprDesc = 'dailyStatId_apr_DESC', - DailyStatIdAprDescNullsLast = 'dailyStatId_apr_DESC_NULLS_LAST', - DailyStatIdApy7DayAvgAsc = 'dailyStatId_apy7DayAvg_ASC', - DailyStatIdApy7DayAvgAscNullsFirst = 'dailyStatId_apy7DayAvg_ASC_NULLS_FIRST', - DailyStatIdApy7DayAvgDesc = 'dailyStatId_apy7DayAvg_DESC', - DailyStatIdApy7DayAvgDescNullsLast = 'dailyStatId_apy7DayAvg_DESC_NULLS_LAST', - DailyStatIdApy14DayAvgAsc = 'dailyStatId_apy14DayAvg_ASC', - DailyStatIdApy14DayAvgAscNullsFirst = 'dailyStatId_apy14DayAvg_ASC_NULLS_FIRST', - DailyStatIdApy14DayAvgDesc = 'dailyStatId_apy14DayAvg_DESC', - DailyStatIdApy14DayAvgDescNullsLast = 'dailyStatId_apy14DayAvg_DESC_NULLS_LAST', - DailyStatIdApy30DayAvgAsc = 'dailyStatId_apy30DayAvg_ASC', - DailyStatIdApy30DayAvgAscNullsFirst = 'dailyStatId_apy30DayAvg_ASC_NULLS_FIRST', - DailyStatIdApy30DayAvgDesc = 'dailyStatId_apy30DayAvg_DESC', - DailyStatIdApy30DayAvgDescNullsLast = 'dailyStatId_apy30DayAvg_DESC_NULLS_LAST', - DailyStatIdApyAsc = 'dailyStatId_apy_ASC', - DailyStatIdApyAscNullsFirst = 'dailyStatId_apy_ASC_NULLS_FIRST', - DailyStatIdApyDesc = 'dailyStatId_apy_DESC', - DailyStatIdApyDescNullsLast = 'dailyStatId_apy_DESC_NULLS_LAST', - DailyStatIdBlockNumberAsc = 'dailyStatId_blockNumber_ASC', - DailyStatIdBlockNumberAscNullsFirst = 'dailyStatId_blockNumber_ASC_NULLS_FIRST', - DailyStatIdBlockNumberDesc = 'dailyStatId_blockNumber_DESC', - DailyStatIdBlockNumberDescNullsLast = 'dailyStatId_blockNumber_DESC_NULLS_LAST', - DailyStatIdDripperWethAsc = 'dailyStatId_dripperWETH_ASC', - DailyStatIdDripperWethAscNullsFirst = 'dailyStatId_dripperWETH_ASC_NULLS_FIRST', - DailyStatIdDripperWethDesc = 'dailyStatId_dripperWETH_DESC', - DailyStatIdDripperWethDescNullsLast = 'dailyStatId_dripperWETH_DESC_NULLS_LAST', - DailyStatIdFeesEth7DayAsc = 'dailyStatId_feesETH7Day_ASC', - DailyStatIdFeesEth7DayAscNullsFirst = 'dailyStatId_feesETH7Day_ASC_NULLS_FIRST', - DailyStatIdFeesEth7DayDesc = 'dailyStatId_feesETH7Day_DESC', - DailyStatIdFeesEth7DayDescNullsLast = 'dailyStatId_feesETH7Day_DESC_NULLS_LAST', - DailyStatIdFeesEthAllTimeAsc = 'dailyStatId_feesETHAllTime_ASC', - DailyStatIdFeesEthAllTimeAscNullsFirst = 'dailyStatId_feesETHAllTime_ASC_NULLS_FIRST', - DailyStatIdFeesEthAllTimeDesc = 'dailyStatId_feesETHAllTime_DESC', - DailyStatIdFeesEthAllTimeDescNullsLast = 'dailyStatId_feesETHAllTime_DESC_NULLS_LAST', - DailyStatIdFeesEthAsc = 'dailyStatId_feesETH_ASC', - DailyStatIdFeesEthAscNullsFirst = 'dailyStatId_feesETH_ASC_NULLS_FIRST', - DailyStatIdFeesEthDesc = 'dailyStatId_feesETH_DESC', - DailyStatIdFeesEthDescNullsLast = 'dailyStatId_feesETH_DESC_NULLS_LAST', - DailyStatIdFeesUsd7DayAsc = 'dailyStatId_feesUSD7Day_ASC', - DailyStatIdFeesUsd7DayAscNullsFirst = 'dailyStatId_feesUSD7Day_ASC_NULLS_FIRST', - DailyStatIdFeesUsd7DayDesc = 'dailyStatId_feesUSD7Day_DESC', - DailyStatIdFeesUsd7DayDescNullsLast = 'dailyStatId_feesUSD7Day_DESC_NULLS_LAST', - DailyStatIdFeesUsdAllTimeAsc = 'dailyStatId_feesUSDAllTime_ASC', - DailyStatIdFeesUsdAllTimeAscNullsFirst = 'dailyStatId_feesUSDAllTime_ASC_NULLS_FIRST', - DailyStatIdFeesUsdAllTimeDesc = 'dailyStatId_feesUSDAllTime_DESC', - DailyStatIdFeesUsdAllTimeDescNullsLast = 'dailyStatId_feesUSDAllTime_DESC_NULLS_LAST', - DailyStatIdFeesUsdAsc = 'dailyStatId_feesUSD_ASC', - DailyStatIdFeesUsdAscNullsFirst = 'dailyStatId_feesUSD_ASC_NULLS_FIRST', - DailyStatIdFeesUsdDesc = 'dailyStatId_feesUSD_DESC', - DailyStatIdFeesUsdDescNullsLast = 'dailyStatId_feesUSD_DESC_NULLS_LAST', - DailyStatIdHoldersOverThresholdAsc = 'dailyStatId_holdersOverThreshold_ASC', - DailyStatIdHoldersOverThresholdAscNullsFirst = 'dailyStatId_holdersOverThreshold_ASC_NULLS_FIRST', - DailyStatIdHoldersOverThresholdDesc = 'dailyStatId_holdersOverThreshold_DESC', - DailyStatIdHoldersOverThresholdDescNullsLast = 'dailyStatId_holdersOverThreshold_DESC_NULLS_LAST', - DailyStatIdIdAsc = 'dailyStatId_id_ASC', - DailyStatIdIdAscNullsFirst = 'dailyStatId_id_ASC_NULLS_FIRST', - DailyStatIdIdDesc = 'dailyStatId_id_DESC', - DailyStatIdIdDescNullsLast = 'dailyStatId_id_DESC_NULLS_LAST', - DailyStatIdMarketCapUsdAsc = 'dailyStatId_marketCapUSD_ASC', - DailyStatIdMarketCapUsdAscNullsFirst = 'dailyStatId_marketCapUSD_ASC_NULLS_FIRST', - DailyStatIdMarketCapUsdDesc = 'dailyStatId_marketCapUSD_DESC', - DailyStatIdMarketCapUsdDescNullsLast = 'dailyStatId_marketCapUSD_DESC_NULLS_LAST', - DailyStatIdNonRebasingSupplyAsc = 'dailyStatId_nonRebasingSupply_ASC', - DailyStatIdNonRebasingSupplyAscNullsFirst = 'dailyStatId_nonRebasingSupply_ASC_NULLS_FIRST', - DailyStatIdNonRebasingSupplyDesc = 'dailyStatId_nonRebasingSupply_DESC', - DailyStatIdNonRebasingSupplyDescNullsLast = 'dailyStatId_nonRebasingSupply_DESC_NULLS_LAST', - DailyStatIdPegPriceAsc = 'dailyStatId_pegPrice_ASC', - DailyStatIdPegPriceAscNullsFirst = 'dailyStatId_pegPrice_ASC_NULLS_FIRST', - DailyStatIdPegPriceDesc = 'dailyStatId_pegPrice_DESC', - DailyStatIdPegPriceDescNullsLast = 'dailyStatId_pegPrice_DESC_NULLS_LAST', - DailyStatIdRebasingSupplyAsc = 'dailyStatId_rebasingSupply_ASC', - DailyStatIdRebasingSupplyAscNullsFirst = 'dailyStatId_rebasingSupply_ASC_NULLS_FIRST', - DailyStatIdRebasingSupplyDesc = 'dailyStatId_rebasingSupply_DESC', - DailyStatIdRebasingSupplyDescNullsLast = 'dailyStatId_rebasingSupply_DESC_NULLS_LAST', - DailyStatIdTimestampAsc = 'dailyStatId_timestamp_ASC', - DailyStatIdTimestampAscNullsFirst = 'dailyStatId_timestamp_ASC_NULLS_FIRST', - DailyStatIdTimestampDesc = 'dailyStatId_timestamp_DESC', - DailyStatIdTimestampDescNullsLast = 'dailyStatId_timestamp_DESC_NULLS_LAST', - DailyStatIdTotalSupplyUsdAsc = 'dailyStatId_totalSupplyUSD_ASC', - DailyStatIdTotalSupplyUsdAscNullsFirst = 'dailyStatId_totalSupplyUSD_ASC_NULLS_FIRST', - DailyStatIdTotalSupplyUsdDesc = 'dailyStatId_totalSupplyUSD_DESC', - DailyStatIdTotalSupplyUsdDescNullsLast = 'dailyStatId_totalSupplyUSD_DESC_NULLS_LAST', - DailyStatIdTotalSupplyAsc = 'dailyStatId_totalSupply_ASC', - DailyStatIdTotalSupplyAscNullsFirst = 'dailyStatId_totalSupply_ASC_NULLS_FIRST', - DailyStatIdTotalSupplyDesc = 'dailyStatId_totalSupply_DESC', - DailyStatIdTotalSupplyDescNullsLast = 'dailyStatId_totalSupply_DESC_NULLS_LAST', - DailyStatIdTradingVolumeUsdAsc = 'dailyStatId_tradingVolumeUSD_ASC', - DailyStatIdTradingVolumeUsdAscNullsFirst = 'dailyStatId_tradingVolumeUSD_ASC_NULLS_FIRST', - DailyStatIdTradingVolumeUsdDesc = 'dailyStatId_tradingVolumeUSD_DESC', - DailyStatIdTradingVolumeUsdDescNullsLast = 'dailyStatId_tradingVolumeUSD_DESC_NULLS_LAST', - DailyStatIdWrappedSupplyAsc = 'dailyStatId_wrappedSupply_ASC', - DailyStatIdWrappedSupplyAscNullsFirst = 'dailyStatId_wrappedSupply_ASC_NULLS_FIRST', - DailyStatIdWrappedSupplyDesc = 'dailyStatId_wrappedSupply_DESC', - DailyStatIdWrappedSupplyDescNullsLast = 'dailyStatId_wrappedSupply_DESC_NULLS_LAST', - DailyStatIdYieldEth7DayAsc = 'dailyStatId_yieldETH7Day_ASC', - DailyStatIdYieldEth7DayAscNullsFirst = 'dailyStatId_yieldETH7Day_ASC_NULLS_FIRST', - DailyStatIdYieldEth7DayDesc = 'dailyStatId_yieldETH7Day_DESC', - DailyStatIdYieldEth7DayDescNullsLast = 'dailyStatId_yieldETH7Day_DESC_NULLS_LAST', - DailyStatIdYieldEthAllTimeAsc = 'dailyStatId_yieldETHAllTime_ASC', - DailyStatIdYieldEthAllTimeAscNullsFirst = 'dailyStatId_yieldETHAllTime_ASC_NULLS_FIRST', - DailyStatIdYieldEthAllTimeDesc = 'dailyStatId_yieldETHAllTime_DESC', - DailyStatIdYieldEthAllTimeDescNullsLast = 'dailyStatId_yieldETHAllTime_DESC_NULLS_LAST', - DailyStatIdYieldEthAsc = 'dailyStatId_yieldETH_ASC', - DailyStatIdYieldEthAscNullsFirst = 'dailyStatId_yieldETH_ASC_NULLS_FIRST', - DailyStatIdYieldEthDesc = 'dailyStatId_yieldETH_DESC', - DailyStatIdYieldEthDescNullsLast = 'dailyStatId_yieldETH_DESC_NULLS_LAST', - DailyStatIdYieldUsd7DayAsc = 'dailyStatId_yieldUSD7Day_ASC', - DailyStatIdYieldUsd7DayAscNullsFirst = 'dailyStatId_yieldUSD7Day_ASC_NULLS_FIRST', - DailyStatIdYieldUsd7DayDesc = 'dailyStatId_yieldUSD7Day_DESC', - DailyStatIdYieldUsd7DayDescNullsLast = 'dailyStatId_yieldUSD7Day_DESC_NULLS_LAST', - DailyStatIdYieldUsdAllTimeAsc = 'dailyStatId_yieldUSDAllTime_ASC', - DailyStatIdYieldUsdAllTimeAscNullsFirst = 'dailyStatId_yieldUSDAllTime_ASC_NULLS_FIRST', - DailyStatIdYieldUsdAllTimeDesc = 'dailyStatId_yieldUSDAllTime_DESC', - DailyStatIdYieldUsdAllTimeDescNullsLast = 'dailyStatId_yieldUSDAllTime_DESC_NULLS_LAST', - DailyStatIdYieldUsdAsc = 'dailyStatId_yieldUSD_ASC', - DailyStatIdYieldUsdAscNullsFirst = 'dailyStatId_yieldUSD_ASC_NULLS_FIRST', - DailyStatIdYieldUsdDesc = 'dailyStatId_yieldUSD_DESC', - DailyStatIdYieldUsdDescNullsLast = 'dailyStatId_yieldUSD_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - PriceAsc = 'price_ASC', - PriceAscNullsFirst = 'price_ASC_NULLS_FIRST', - PriceDesc = 'price_DESC', - PriceDescNullsLast = 'price_DESC_NULLS_LAST', - SymbolAsc = 'symbol_ASC', - SymbolAscNullsFirst = 'symbol_ASC_NULLS_FIRST', - SymbolDesc = 'symbol_DESC', - SymbolDescNullsLast = 'symbol_DESC_NULLS_LAST', - ValueAsc = 'value_ASC', - ValueAscNullsFirst = 'value_ASC_NULLS_FIRST', - ValueDesc = 'value_DESC', - ValueDescNullsLast = 'value_DESC_NULLS_LAST' -} - -export type OethCollateralDailyStatWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - amount_eq?: InputMaybe; - amount_gt?: InputMaybe; - amount_gte?: InputMaybe; - amount_in?: InputMaybe>; - amount_isNull?: InputMaybe; - amount_lt?: InputMaybe; - amount_lte?: InputMaybe; - amount_not_eq?: InputMaybe; - amount_not_in?: InputMaybe>; - dailyStatId?: InputMaybe; - dailyStatId_isNull?: InputMaybe; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - price_eq?: InputMaybe; - price_gt?: InputMaybe; - price_gte?: InputMaybe; - price_in?: InputMaybe>; - price_isNull?: InputMaybe; - price_lt?: InputMaybe; - price_lte?: InputMaybe; - price_not_eq?: InputMaybe; - price_not_in?: InputMaybe>; - symbol_contains?: InputMaybe; - symbol_containsInsensitive?: InputMaybe; - symbol_endsWith?: InputMaybe; - symbol_eq?: InputMaybe; - symbol_gt?: InputMaybe; - symbol_gte?: InputMaybe; - symbol_in?: InputMaybe>; - symbol_isNull?: InputMaybe; - symbol_lt?: InputMaybe; - symbol_lte?: InputMaybe; - symbol_not_contains?: InputMaybe; - symbol_not_containsInsensitive?: InputMaybe; - symbol_not_endsWith?: InputMaybe; - symbol_not_eq?: InputMaybe; - symbol_not_in?: InputMaybe>; - symbol_not_startsWith?: InputMaybe; - symbol_startsWith?: InputMaybe; - value_eq?: InputMaybe; - value_gt?: InputMaybe; - value_gte?: InputMaybe; - value_in?: InputMaybe>; - value_isNull?: InputMaybe; - value_lt?: InputMaybe; - value_lte?: InputMaybe; - value_not_eq?: InputMaybe; - value_not_in?: InputMaybe>; -}; - -export type OethCollateralDailyStatsConnection = { - __typename?: 'OETHCollateralDailyStatsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OethCurveLp = { - __typename?: 'OETHCurveLP'; - blockNumber: Scalars['Int']['output']; - eth: Scalars['BigInt']['output']; - ethOwned: Scalars['BigInt']['output']; - id: Scalars['String']['output']; - oeth: Scalars['BigInt']['output']; - oethOwned: Scalars['BigInt']['output']; - timestamp: Scalars['DateTime']['output']; - totalSupply: Scalars['BigInt']['output']; - totalSupplyOwned: Scalars['BigInt']['output']; -}; - -export type OethCurveLpEdge = { - __typename?: 'OETHCurveLPEdge'; - cursor: Scalars['String']['output']; - node: OethCurveLp; -}; - -export enum OethCurveLpOrderByInput { - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - EthOwnedAsc = 'ethOwned_ASC', - EthOwnedAscNullsFirst = 'ethOwned_ASC_NULLS_FIRST', - EthOwnedDesc = 'ethOwned_DESC', - EthOwnedDescNullsLast = 'ethOwned_DESC_NULLS_LAST', - EthAsc = 'eth_ASC', - EthAscNullsFirst = 'eth_ASC_NULLS_FIRST', - EthDesc = 'eth_DESC', - EthDescNullsLast = 'eth_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - OethOwnedAsc = 'oethOwned_ASC', - OethOwnedAscNullsFirst = 'oethOwned_ASC_NULLS_FIRST', - OethOwnedDesc = 'oethOwned_DESC', - OethOwnedDescNullsLast = 'oethOwned_DESC_NULLS_LAST', - OethAsc = 'oeth_ASC', - OethAscNullsFirst = 'oeth_ASC_NULLS_FIRST', - OethDesc = 'oeth_DESC', - OethDescNullsLast = 'oeth_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TotalSupplyOwnedAsc = 'totalSupplyOwned_ASC', - TotalSupplyOwnedAscNullsFirst = 'totalSupplyOwned_ASC_NULLS_FIRST', - TotalSupplyOwnedDesc = 'totalSupplyOwned_DESC', - TotalSupplyOwnedDescNullsLast = 'totalSupplyOwned_DESC_NULLS_LAST', - TotalSupplyAsc = 'totalSupply_ASC', - TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', - TotalSupplyDesc = 'totalSupply_DESC', - TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST' -} - -export type OethCurveLpWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - ethOwned_eq?: InputMaybe; - ethOwned_gt?: InputMaybe; - ethOwned_gte?: InputMaybe; - ethOwned_in?: InputMaybe>; - ethOwned_isNull?: InputMaybe; - ethOwned_lt?: InputMaybe; - ethOwned_lte?: InputMaybe; - ethOwned_not_eq?: InputMaybe; - ethOwned_not_in?: InputMaybe>; - eth_eq?: InputMaybe; - eth_gt?: InputMaybe; - eth_gte?: InputMaybe; - eth_in?: InputMaybe>; - eth_isNull?: InputMaybe; - eth_lt?: InputMaybe; - eth_lte?: InputMaybe; - eth_not_eq?: InputMaybe; - eth_not_in?: InputMaybe>; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - oethOwned_eq?: InputMaybe; - oethOwned_gt?: InputMaybe; - oethOwned_gte?: InputMaybe; - oethOwned_in?: InputMaybe>; - oethOwned_isNull?: InputMaybe; - oethOwned_lt?: InputMaybe; - oethOwned_lte?: InputMaybe; - oethOwned_not_eq?: InputMaybe; - oethOwned_not_in?: InputMaybe>; - oeth_eq?: InputMaybe; - oeth_gt?: InputMaybe; - oeth_gte?: InputMaybe; - oeth_in?: InputMaybe>; - oeth_isNull?: InputMaybe; - oeth_lt?: InputMaybe; - oeth_lte?: InputMaybe; - oeth_not_eq?: InputMaybe; - oeth_not_in?: InputMaybe>; - timestamp_eq?: InputMaybe; - timestamp_gt?: InputMaybe; - timestamp_gte?: InputMaybe; - timestamp_in?: InputMaybe>; - timestamp_isNull?: InputMaybe; - timestamp_lt?: InputMaybe; - timestamp_lte?: InputMaybe; - timestamp_not_eq?: InputMaybe; - timestamp_not_in?: InputMaybe>; - totalSupplyOwned_eq?: InputMaybe; - totalSupplyOwned_gt?: InputMaybe; - totalSupplyOwned_gte?: InputMaybe; - totalSupplyOwned_in?: InputMaybe>; - totalSupplyOwned_isNull?: InputMaybe; - totalSupplyOwned_lt?: InputMaybe; - totalSupplyOwned_lte?: InputMaybe; - totalSupplyOwned_not_eq?: InputMaybe; - totalSupplyOwned_not_in?: InputMaybe>; - totalSupply_eq?: InputMaybe; - totalSupply_gt?: InputMaybe; - totalSupply_gte?: InputMaybe; - totalSupply_in?: InputMaybe>; - totalSupply_isNull?: InputMaybe; - totalSupply_lt?: InputMaybe; - totalSupply_lte?: InputMaybe; - totalSupply_not_eq?: InputMaybe; - totalSupply_not_in?: InputMaybe>; -}; - -export type OethCurveLPsConnection = { - __typename?: 'OETHCurveLPsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OethDailyStat = { - __typename?: 'OETHDailyStat'; - amoSupply: Scalars['BigInt']['output']; - /** Timestamp of block number stats were updated */ - apr: Scalars['Float']['output']; - apy: Scalars['Float']['output']; - apy7DayAvg: Scalars['Float']['output']; - apy14DayAvg: Scalars['Float']['output']; - apy30DayAvg: Scalars['Float']['output']; - /** Timestamp, eg 2023-10-17 */ - blockNumber: Scalars['Int']['output']; - collateral: Array; - dripperWETH: Scalars['BigInt']['output']; - feesETH: Scalars['BigInt']['output']; - feesETH7Day: Scalars['BigInt']['output']; - feesETHAllTime: Scalars['BigInt']['output']; - feesUSD: Scalars['BigInt']['output']; - feesUSD7Day: Scalars['BigInt']['output']; - feesUSDAllTime: Scalars['BigInt']['output']; - holdersOverThreshold: Scalars['Int']['output']; - id: Scalars['String']['output']; - marketCapUSD: Scalars['Float']['output']; - nonRebasingSupply: Scalars['BigInt']['output']; - pegPrice: Scalars['BigInt']['output']; - rebasingSupply: Scalars['BigInt']['output']; - strategies: Array; - /** Last block number stats were updated */ - timestamp: Scalars['DateTime']['output']; - totalSupply: Scalars['BigInt']['output']; - totalSupplyUSD: Scalars['Float']['output']; - tradingVolumeUSD: Scalars['Float']['output']; - wrappedSupply: Scalars['BigInt']['output']; - yieldETH: Scalars['BigInt']['output']; - yieldETH7Day: Scalars['BigInt']['output']; - yieldETHAllTime: Scalars['BigInt']['output']; - yieldUSD: Scalars['BigInt']['output']; - yieldUSD7Day: Scalars['BigInt']['output']; - yieldUSDAllTime: Scalars['BigInt']['output']; -}; - - -export type OethDailyStatCollateralArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type OethDailyStatStrategiesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - -export type OethDailyStatEdge = { - __typename?: 'OETHDailyStatEdge'; - cursor: Scalars['String']['output']; - node: OethDailyStat; -}; - -export enum OethDailyStatOrderByInput { - AmoSupplyAsc = 'amoSupply_ASC', - AmoSupplyAscNullsFirst = 'amoSupply_ASC_NULLS_FIRST', - AmoSupplyDesc = 'amoSupply_DESC', - AmoSupplyDescNullsLast = 'amoSupply_DESC_NULLS_LAST', - AprAsc = 'apr_ASC', - AprAscNullsFirst = 'apr_ASC_NULLS_FIRST', - AprDesc = 'apr_DESC', - AprDescNullsLast = 'apr_DESC_NULLS_LAST', - Apy7DayAvgAsc = 'apy7DayAvg_ASC', - Apy7DayAvgAscNullsFirst = 'apy7DayAvg_ASC_NULLS_FIRST', - Apy7DayAvgDesc = 'apy7DayAvg_DESC', - Apy7DayAvgDescNullsLast = 'apy7DayAvg_DESC_NULLS_LAST', - Apy14DayAvgAsc = 'apy14DayAvg_ASC', - Apy14DayAvgAscNullsFirst = 'apy14DayAvg_ASC_NULLS_FIRST', - Apy14DayAvgDesc = 'apy14DayAvg_DESC', - Apy14DayAvgDescNullsLast = 'apy14DayAvg_DESC_NULLS_LAST', - Apy30DayAvgAsc = 'apy30DayAvg_ASC', - Apy30DayAvgAscNullsFirst = 'apy30DayAvg_ASC_NULLS_FIRST', - Apy30DayAvgDesc = 'apy30DayAvg_DESC', - Apy30DayAvgDescNullsLast = 'apy30DayAvg_DESC_NULLS_LAST', - ApyAsc = 'apy_ASC', - ApyAscNullsFirst = 'apy_ASC_NULLS_FIRST', - ApyDesc = 'apy_DESC', - ApyDescNullsLast = 'apy_DESC_NULLS_LAST', - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - DripperWethAsc = 'dripperWETH_ASC', - DripperWethAscNullsFirst = 'dripperWETH_ASC_NULLS_FIRST', - DripperWethDesc = 'dripperWETH_DESC', - DripperWethDescNullsLast = 'dripperWETH_DESC_NULLS_LAST', - FeesEth7DayAsc = 'feesETH7Day_ASC', - FeesEth7DayAscNullsFirst = 'feesETH7Day_ASC_NULLS_FIRST', - FeesEth7DayDesc = 'feesETH7Day_DESC', - FeesEth7DayDescNullsLast = 'feesETH7Day_DESC_NULLS_LAST', - FeesEthAllTimeAsc = 'feesETHAllTime_ASC', - FeesEthAllTimeAscNullsFirst = 'feesETHAllTime_ASC_NULLS_FIRST', - FeesEthAllTimeDesc = 'feesETHAllTime_DESC', - FeesEthAllTimeDescNullsLast = 'feesETHAllTime_DESC_NULLS_LAST', - FeesEthAsc = 'feesETH_ASC', - FeesEthAscNullsFirst = 'feesETH_ASC_NULLS_FIRST', - FeesEthDesc = 'feesETH_DESC', - FeesEthDescNullsLast = 'feesETH_DESC_NULLS_LAST', - FeesUsd7DayAsc = 'feesUSD7Day_ASC', - FeesUsd7DayAscNullsFirst = 'feesUSD7Day_ASC_NULLS_FIRST', - FeesUsd7DayDesc = 'feesUSD7Day_DESC', - FeesUsd7DayDescNullsLast = 'feesUSD7Day_DESC_NULLS_LAST', - FeesUsdAllTimeAsc = 'feesUSDAllTime_ASC', - FeesUsdAllTimeAscNullsFirst = 'feesUSDAllTime_ASC_NULLS_FIRST', - FeesUsdAllTimeDesc = 'feesUSDAllTime_DESC', - FeesUsdAllTimeDescNullsLast = 'feesUSDAllTime_DESC_NULLS_LAST', - FeesUsdAsc = 'feesUSD_ASC', - FeesUsdAscNullsFirst = 'feesUSD_ASC_NULLS_FIRST', - FeesUsdDesc = 'feesUSD_DESC', - FeesUsdDescNullsLast = 'feesUSD_DESC_NULLS_LAST', - HoldersOverThresholdAsc = 'holdersOverThreshold_ASC', - HoldersOverThresholdAscNullsFirst = 'holdersOverThreshold_ASC_NULLS_FIRST', - HoldersOverThresholdDesc = 'holdersOverThreshold_DESC', - HoldersOverThresholdDescNullsLast = 'holdersOverThreshold_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - MarketCapUsdAsc = 'marketCapUSD_ASC', - MarketCapUsdAscNullsFirst = 'marketCapUSD_ASC_NULLS_FIRST', - MarketCapUsdDesc = 'marketCapUSD_DESC', - MarketCapUsdDescNullsLast = 'marketCapUSD_DESC_NULLS_LAST', - NonRebasingSupplyAsc = 'nonRebasingSupply_ASC', - NonRebasingSupplyAscNullsFirst = 'nonRebasingSupply_ASC_NULLS_FIRST', - NonRebasingSupplyDesc = 'nonRebasingSupply_DESC', - NonRebasingSupplyDescNullsLast = 'nonRebasingSupply_DESC_NULLS_LAST', - PegPriceAsc = 'pegPrice_ASC', - PegPriceAscNullsFirst = 'pegPrice_ASC_NULLS_FIRST', - PegPriceDesc = 'pegPrice_DESC', - PegPriceDescNullsLast = 'pegPrice_DESC_NULLS_LAST', - RebasingSupplyAsc = 'rebasingSupply_ASC', - RebasingSupplyAscNullsFirst = 'rebasingSupply_ASC_NULLS_FIRST', - RebasingSupplyDesc = 'rebasingSupply_DESC', - RebasingSupplyDescNullsLast = 'rebasingSupply_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TotalSupplyUsdAsc = 'totalSupplyUSD_ASC', - TotalSupplyUsdAscNullsFirst = 'totalSupplyUSD_ASC_NULLS_FIRST', - TotalSupplyUsdDesc = 'totalSupplyUSD_DESC', - TotalSupplyUsdDescNullsLast = 'totalSupplyUSD_DESC_NULLS_LAST', - TotalSupplyAsc = 'totalSupply_ASC', - TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', - TotalSupplyDesc = 'totalSupply_DESC', - TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST', - TradingVolumeUsdAsc = 'tradingVolumeUSD_ASC', - TradingVolumeUsdAscNullsFirst = 'tradingVolumeUSD_ASC_NULLS_FIRST', - TradingVolumeUsdDesc = 'tradingVolumeUSD_DESC', - TradingVolumeUsdDescNullsLast = 'tradingVolumeUSD_DESC_NULLS_LAST', - WrappedSupplyAsc = 'wrappedSupply_ASC', - WrappedSupplyAscNullsFirst = 'wrappedSupply_ASC_NULLS_FIRST', - WrappedSupplyDesc = 'wrappedSupply_DESC', - WrappedSupplyDescNullsLast = 'wrappedSupply_DESC_NULLS_LAST', - YieldEth7DayAsc = 'yieldETH7Day_ASC', - YieldEth7DayAscNullsFirst = 'yieldETH7Day_ASC_NULLS_FIRST', - YieldEth7DayDesc = 'yieldETH7Day_DESC', - YieldEth7DayDescNullsLast = 'yieldETH7Day_DESC_NULLS_LAST', - YieldEthAllTimeAsc = 'yieldETHAllTime_ASC', - YieldEthAllTimeAscNullsFirst = 'yieldETHAllTime_ASC_NULLS_FIRST', - YieldEthAllTimeDesc = 'yieldETHAllTime_DESC', - YieldEthAllTimeDescNullsLast = 'yieldETHAllTime_DESC_NULLS_LAST', - YieldEthAsc = 'yieldETH_ASC', - YieldEthAscNullsFirst = 'yieldETH_ASC_NULLS_FIRST', - YieldEthDesc = 'yieldETH_DESC', - YieldEthDescNullsLast = 'yieldETH_DESC_NULLS_LAST', - YieldUsd7DayAsc = 'yieldUSD7Day_ASC', - YieldUsd7DayAscNullsFirst = 'yieldUSD7Day_ASC_NULLS_FIRST', - YieldUsd7DayDesc = 'yieldUSD7Day_DESC', - YieldUsd7DayDescNullsLast = 'yieldUSD7Day_DESC_NULLS_LAST', - YieldUsdAllTimeAsc = 'yieldUSDAllTime_ASC', - YieldUsdAllTimeAscNullsFirst = 'yieldUSDAllTime_ASC_NULLS_FIRST', - YieldUsdAllTimeDesc = 'yieldUSDAllTime_DESC', - YieldUsdAllTimeDescNullsLast = 'yieldUSDAllTime_DESC_NULLS_LAST', - YieldUsdAsc = 'yieldUSD_ASC', - YieldUsdAscNullsFirst = 'yieldUSD_ASC_NULLS_FIRST', - YieldUsdDesc = 'yieldUSD_DESC', - YieldUsdDescNullsLast = 'yieldUSD_DESC_NULLS_LAST' -} - -export type OethDailyStatWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - amoSupply_eq?: InputMaybe; - amoSupply_gt?: InputMaybe; - amoSupply_gte?: InputMaybe; - amoSupply_in?: InputMaybe>; - amoSupply_isNull?: InputMaybe; - amoSupply_lt?: InputMaybe; - amoSupply_lte?: InputMaybe; - amoSupply_not_eq?: InputMaybe; - amoSupply_not_in?: InputMaybe>; - apr_eq?: InputMaybe; - apr_gt?: InputMaybe; - apr_gte?: InputMaybe; - apr_in?: InputMaybe>; - apr_isNull?: InputMaybe; - apr_lt?: InputMaybe; - apr_lte?: InputMaybe; - apr_not_eq?: InputMaybe; - apr_not_in?: InputMaybe>; - apy7DayAvg_eq?: InputMaybe; - apy7DayAvg_gt?: InputMaybe; - apy7DayAvg_gte?: InputMaybe; - apy7DayAvg_in?: InputMaybe>; - apy7DayAvg_isNull?: InputMaybe; - apy7DayAvg_lt?: InputMaybe; - apy7DayAvg_lte?: InputMaybe; - apy7DayAvg_not_eq?: InputMaybe; - apy7DayAvg_not_in?: InputMaybe>; - apy14DayAvg_eq?: InputMaybe; - apy14DayAvg_gt?: InputMaybe; - apy14DayAvg_gte?: InputMaybe; - apy14DayAvg_in?: InputMaybe>; - apy14DayAvg_isNull?: InputMaybe; - apy14DayAvg_lt?: InputMaybe; - apy14DayAvg_lte?: InputMaybe; - apy14DayAvg_not_eq?: InputMaybe; - apy14DayAvg_not_in?: InputMaybe>; - apy30DayAvg_eq?: InputMaybe; - apy30DayAvg_gt?: InputMaybe; - apy30DayAvg_gte?: InputMaybe; - apy30DayAvg_in?: InputMaybe>; - apy30DayAvg_isNull?: InputMaybe; - apy30DayAvg_lt?: InputMaybe; - apy30DayAvg_lte?: InputMaybe; - apy30DayAvg_not_eq?: InputMaybe; - apy30DayAvg_not_in?: InputMaybe>; - apy_eq?: InputMaybe; - apy_gt?: InputMaybe; - apy_gte?: InputMaybe; - apy_in?: InputMaybe>; - apy_isNull?: InputMaybe; - apy_lt?: InputMaybe; - apy_lte?: InputMaybe; - apy_not_eq?: InputMaybe; - apy_not_in?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - collateral_every?: InputMaybe; - collateral_none?: InputMaybe; - collateral_some?: InputMaybe; - dripperWETH_eq?: InputMaybe; - dripperWETH_gt?: InputMaybe; - dripperWETH_gte?: InputMaybe; - dripperWETH_in?: InputMaybe>; - dripperWETH_isNull?: InputMaybe; - dripperWETH_lt?: InputMaybe; - dripperWETH_lte?: InputMaybe; - dripperWETH_not_eq?: InputMaybe; - dripperWETH_not_in?: InputMaybe>; - feesETH7Day_eq?: InputMaybe; - feesETH7Day_gt?: InputMaybe; - feesETH7Day_gte?: InputMaybe; - feesETH7Day_in?: InputMaybe>; - feesETH7Day_isNull?: InputMaybe; - feesETH7Day_lt?: InputMaybe; - feesETH7Day_lte?: InputMaybe; - feesETH7Day_not_eq?: InputMaybe; - feesETH7Day_not_in?: InputMaybe>; - feesETHAllTime_eq?: InputMaybe; - feesETHAllTime_gt?: InputMaybe; - feesETHAllTime_gte?: InputMaybe; - feesETHAllTime_in?: InputMaybe>; - feesETHAllTime_isNull?: InputMaybe; - feesETHAllTime_lt?: InputMaybe; - feesETHAllTime_lte?: InputMaybe; - feesETHAllTime_not_eq?: InputMaybe; - feesETHAllTime_not_in?: InputMaybe>; - feesETH_eq?: InputMaybe; - feesETH_gt?: InputMaybe; - feesETH_gte?: InputMaybe; - feesETH_in?: InputMaybe>; - feesETH_isNull?: InputMaybe; - feesETH_lt?: InputMaybe; - feesETH_lte?: InputMaybe; - feesETH_not_eq?: InputMaybe; - feesETH_not_in?: InputMaybe>; - feesUSD7Day_eq?: InputMaybe; - feesUSD7Day_gt?: InputMaybe; - feesUSD7Day_gte?: InputMaybe; - feesUSD7Day_in?: InputMaybe>; - feesUSD7Day_isNull?: InputMaybe; - feesUSD7Day_lt?: InputMaybe; - feesUSD7Day_lte?: InputMaybe; - feesUSD7Day_not_eq?: InputMaybe; - feesUSD7Day_not_in?: InputMaybe>; - feesUSDAllTime_eq?: InputMaybe; - feesUSDAllTime_gt?: InputMaybe; - feesUSDAllTime_gte?: InputMaybe; - feesUSDAllTime_in?: InputMaybe>; - feesUSDAllTime_isNull?: InputMaybe; - feesUSDAllTime_lt?: InputMaybe; - feesUSDAllTime_lte?: InputMaybe; - feesUSDAllTime_not_eq?: InputMaybe; - feesUSDAllTime_not_in?: InputMaybe>; - feesUSD_eq?: InputMaybe; - feesUSD_gt?: InputMaybe; - feesUSD_gte?: InputMaybe; - feesUSD_in?: InputMaybe>; - feesUSD_isNull?: InputMaybe; - feesUSD_lt?: InputMaybe; - feesUSD_lte?: InputMaybe; - feesUSD_not_eq?: InputMaybe; - feesUSD_not_in?: InputMaybe>; - holdersOverThreshold_eq?: InputMaybe; - holdersOverThreshold_gt?: InputMaybe; - holdersOverThreshold_gte?: InputMaybe; - holdersOverThreshold_in?: InputMaybe>; - holdersOverThreshold_isNull?: InputMaybe; - holdersOverThreshold_lt?: InputMaybe; - holdersOverThreshold_lte?: InputMaybe; - holdersOverThreshold_not_eq?: InputMaybe; - holdersOverThreshold_not_in?: InputMaybe>; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - marketCapUSD_eq?: InputMaybe; - marketCapUSD_gt?: InputMaybe; - marketCapUSD_gte?: InputMaybe; - marketCapUSD_in?: InputMaybe>; - marketCapUSD_isNull?: InputMaybe; - marketCapUSD_lt?: InputMaybe; - marketCapUSD_lte?: InputMaybe; - marketCapUSD_not_eq?: InputMaybe; - marketCapUSD_not_in?: InputMaybe>; - nonRebasingSupply_eq?: InputMaybe; - nonRebasingSupply_gt?: InputMaybe; - nonRebasingSupply_gte?: InputMaybe; - nonRebasingSupply_in?: InputMaybe>; - nonRebasingSupply_isNull?: InputMaybe; - nonRebasingSupply_lt?: InputMaybe; - nonRebasingSupply_lte?: InputMaybe; - nonRebasingSupply_not_eq?: InputMaybe; - nonRebasingSupply_not_in?: InputMaybe>; - pegPrice_eq?: InputMaybe; - pegPrice_gt?: InputMaybe; - pegPrice_gte?: InputMaybe; - pegPrice_in?: InputMaybe>; - pegPrice_isNull?: InputMaybe; - pegPrice_lt?: InputMaybe; - pegPrice_lte?: InputMaybe; - pegPrice_not_eq?: InputMaybe; - pegPrice_not_in?: InputMaybe>; - rebasingSupply_eq?: InputMaybe; - rebasingSupply_gt?: InputMaybe; - rebasingSupply_gte?: InputMaybe; - rebasingSupply_in?: InputMaybe>; - rebasingSupply_isNull?: InputMaybe; - rebasingSupply_lt?: InputMaybe; - rebasingSupply_lte?: InputMaybe; - rebasingSupply_not_eq?: InputMaybe; - rebasingSupply_not_in?: InputMaybe>; - strategies_every?: InputMaybe; - strategies_none?: InputMaybe; - strategies_some?: InputMaybe; + oethOwned_eq?: InputMaybe; + oethOwned_gt?: InputMaybe; + oethOwned_gte?: InputMaybe; + oethOwned_in?: InputMaybe>; + oethOwned_isNull?: InputMaybe; + oethOwned_lt?: InputMaybe; + oethOwned_lte?: InputMaybe; + oethOwned_not_eq?: InputMaybe; + oethOwned_not_in?: InputMaybe>; + oeth_eq?: InputMaybe; + oeth_gt?: InputMaybe; + oeth_gte?: InputMaybe; + oeth_in?: InputMaybe>; + oeth_isNull?: InputMaybe; + oeth_lt?: InputMaybe; + oeth_lte?: InputMaybe; + oeth_not_eq?: InputMaybe; + oeth_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -4593,15 +3465,15 @@ export type OethDailyStatWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - totalSupplyUSD_eq?: InputMaybe; - totalSupplyUSD_gt?: InputMaybe; - totalSupplyUSD_gte?: InputMaybe; - totalSupplyUSD_in?: InputMaybe>; - totalSupplyUSD_isNull?: InputMaybe; - totalSupplyUSD_lt?: InputMaybe; - totalSupplyUSD_lte?: InputMaybe; - totalSupplyUSD_not_eq?: InputMaybe; - totalSupplyUSD_not_in?: InputMaybe>; + totalSupplyOwned_eq?: InputMaybe; + totalSupplyOwned_gt?: InputMaybe; + totalSupplyOwned_gte?: InputMaybe; + totalSupplyOwned_in?: InputMaybe>; + totalSupplyOwned_isNull?: InputMaybe; + totalSupplyOwned_lt?: InputMaybe; + totalSupplyOwned_lte?: InputMaybe; + totalSupplyOwned_not_eq?: InputMaybe; + totalSupplyOwned_not_in?: InputMaybe>; totalSupply_eq?: InputMaybe; totalSupply_gt?: InputMaybe; totalSupply_gte?: InputMaybe; @@ -4611,264 +3483,261 @@ export type OethDailyStatWhereInput = { totalSupply_lte?: InputMaybe; totalSupply_not_eq?: InputMaybe; totalSupply_not_in?: InputMaybe>; - tradingVolumeUSD_eq?: InputMaybe; - tradingVolumeUSD_gt?: InputMaybe; - tradingVolumeUSD_gte?: InputMaybe; - tradingVolumeUSD_in?: InputMaybe>; - tradingVolumeUSD_isNull?: InputMaybe; - tradingVolumeUSD_lt?: InputMaybe; - tradingVolumeUSD_lte?: InputMaybe; - tradingVolumeUSD_not_eq?: InputMaybe; - tradingVolumeUSD_not_in?: InputMaybe>; - wrappedSupply_eq?: InputMaybe; - wrappedSupply_gt?: InputMaybe; - wrappedSupply_gte?: InputMaybe; - wrappedSupply_in?: InputMaybe>; - wrappedSupply_isNull?: InputMaybe; - wrappedSupply_lt?: InputMaybe; - wrappedSupply_lte?: InputMaybe; - wrappedSupply_not_eq?: InputMaybe; - wrappedSupply_not_in?: InputMaybe>; - yieldETH7Day_eq?: InputMaybe; - yieldETH7Day_gt?: InputMaybe; - yieldETH7Day_gte?: InputMaybe; - yieldETH7Day_in?: InputMaybe>; - yieldETH7Day_isNull?: InputMaybe; - yieldETH7Day_lt?: InputMaybe; - yieldETH7Day_lte?: InputMaybe; - yieldETH7Day_not_eq?: InputMaybe; - yieldETH7Day_not_in?: InputMaybe>; - yieldETHAllTime_eq?: InputMaybe; - yieldETHAllTime_gt?: InputMaybe; - yieldETHAllTime_gte?: InputMaybe; - yieldETHAllTime_in?: InputMaybe>; - yieldETHAllTime_isNull?: InputMaybe; - yieldETHAllTime_lt?: InputMaybe; - yieldETHAllTime_lte?: InputMaybe; - yieldETHAllTime_not_eq?: InputMaybe; - yieldETHAllTime_not_in?: InputMaybe>; - yieldETH_eq?: InputMaybe; - yieldETH_gt?: InputMaybe; - yieldETH_gte?: InputMaybe; - yieldETH_in?: InputMaybe>; - yieldETH_isNull?: InputMaybe; - yieldETH_lt?: InputMaybe; - yieldETH_lte?: InputMaybe; - yieldETH_not_eq?: InputMaybe; - yieldETH_not_in?: InputMaybe>; - yieldUSD7Day_eq?: InputMaybe; - yieldUSD7Day_gt?: InputMaybe; - yieldUSD7Day_gte?: InputMaybe; - yieldUSD7Day_in?: InputMaybe>; - yieldUSD7Day_isNull?: InputMaybe; - yieldUSD7Day_lt?: InputMaybe; - yieldUSD7Day_lte?: InputMaybe; - yieldUSD7Day_not_eq?: InputMaybe; - yieldUSD7Day_not_in?: InputMaybe>; - yieldUSDAllTime_eq?: InputMaybe; - yieldUSDAllTime_gt?: InputMaybe; - yieldUSDAllTime_gte?: InputMaybe; - yieldUSDAllTime_in?: InputMaybe>; - yieldUSDAllTime_isNull?: InputMaybe; - yieldUSDAllTime_lt?: InputMaybe; - yieldUSDAllTime_lte?: InputMaybe; - yieldUSDAllTime_not_eq?: InputMaybe; - yieldUSDAllTime_not_in?: InputMaybe>; - yieldUSD_eq?: InputMaybe; - yieldUSD_gt?: InputMaybe; - yieldUSD_gte?: InputMaybe; - yieldUSD_in?: InputMaybe>; - yieldUSD_isNull?: InputMaybe; - yieldUSD_lt?: InputMaybe; - yieldUSD_lte?: InputMaybe; - yieldUSD_not_eq?: InputMaybe; - yieldUSD_not_in?: InputMaybe>; }; -export type OethDailyStatsConnection = { - __typename?: 'OETHDailyStatsConnection'; - edges: Array; +export type OethCurveLPsConnection = { + __typename?: 'OETHCurveLPsConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export type OethDripper = { - __typename?: 'OETHDripper'; - blockNumber: Scalars['Int']['output']; - dripDuration: Scalars['BigInt']['output']; - dripRatePerBlock: Scalars['BigInt']['output']; - id: Scalars['String']['output']; - lastCollectTimestamp: Scalars['Int']['output']; - timestamp: Scalars['DateTime']['output']; - weth: Scalars['BigInt']['output']; -}; - -export type OethDripperEdge = { - __typename?: 'OETHDripperEdge'; - cursor: Scalars['String']['output']; - node: OethDripper; -}; - -export enum OethDripperOrderByInput { - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - DripDurationAsc = 'dripDuration_ASC', - DripDurationAscNullsFirst = 'dripDuration_ASC_NULLS_FIRST', - DripDurationDesc = 'dripDuration_DESC', - DripDurationDescNullsLast = 'dripDuration_DESC_NULLS_LAST', - DripRatePerBlockAsc = 'dripRatePerBlock_ASC', - DripRatePerBlockAscNullsFirst = 'dripRatePerBlock_ASC_NULLS_FIRST', - DripRatePerBlockDesc = 'dripRatePerBlock_DESC', - DripRatePerBlockDescNullsLast = 'dripRatePerBlock_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - LastCollectTimestampAsc = 'lastCollectTimestamp_ASC', - LastCollectTimestampAscNullsFirst = 'lastCollectTimestamp_ASC_NULLS_FIRST', - LastCollectTimestampDesc = 'lastCollectTimestamp_DESC', - LastCollectTimestampDescNullsLast = 'lastCollectTimestamp_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - WethAsc = 'weth_ASC', - WethAscNullsFirst = 'weth_ASC_NULLS_FIRST', - WethDesc = 'weth_DESC', - WethDescNullsLast = 'weth_DESC_NULLS_LAST' -} - -export type OethDripperWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - dripDuration_eq?: InputMaybe; - dripDuration_gt?: InputMaybe; - dripDuration_gte?: InputMaybe; - dripDuration_in?: InputMaybe>; - dripDuration_isNull?: InputMaybe; - dripDuration_lt?: InputMaybe; - dripDuration_lte?: InputMaybe; - dripDuration_not_eq?: InputMaybe; - dripDuration_not_in?: InputMaybe>; - dripRatePerBlock_eq?: InputMaybe; - dripRatePerBlock_gt?: InputMaybe; - dripRatePerBlock_gte?: InputMaybe; - dripRatePerBlock_in?: InputMaybe>; - dripRatePerBlock_isNull?: InputMaybe; - dripRatePerBlock_lt?: InputMaybe; - dripRatePerBlock_lte?: InputMaybe; - dripRatePerBlock_not_eq?: InputMaybe; - dripRatePerBlock_not_in?: InputMaybe>; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - lastCollectTimestamp_eq?: InputMaybe; - lastCollectTimestamp_gt?: InputMaybe; - lastCollectTimestamp_gte?: InputMaybe; - lastCollectTimestamp_in?: InputMaybe>; - lastCollectTimestamp_isNull?: InputMaybe; - lastCollectTimestamp_lt?: InputMaybe; - lastCollectTimestamp_lte?: InputMaybe; - lastCollectTimestamp_not_eq?: InputMaybe; - lastCollectTimestamp_not_in?: InputMaybe>; - timestamp_eq?: InputMaybe; - timestamp_gt?: InputMaybe; - timestamp_gte?: InputMaybe; - timestamp_in?: InputMaybe>; - timestamp_isNull?: InputMaybe; - timestamp_lt?: InputMaybe; - timestamp_lte?: InputMaybe; - timestamp_not_eq?: InputMaybe; - timestamp_not_in?: InputMaybe>; - weth_eq?: InputMaybe; - weth_gt?: InputMaybe; - weth_gte?: InputMaybe; - weth_in?: InputMaybe>; - weth_isNull?: InputMaybe; - weth_lt?: InputMaybe; - weth_lte?: InputMaybe; - weth_not_eq?: InputMaybe; - weth_not_in?: InputMaybe>; +export type OethDailyStat = { + __typename?: 'OETHDailyStat'; + amoSupply: Scalars['BigInt']['output']; + /** Timestamp of block number stats were updated */ + apr: Scalars['Float']['output']; + apy: Scalars['Float']['output']; + apy7DayAvg: Scalars['Float']['output']; + apy14DayAvg: Scalars['Float']['output']; + apy30DayAvg: Scalars['Float']['output']; + /** Timestamp, eg 2023-10-17 */ + blockNumber: Scalars['Int']['output']; + collateral: Array; + dripperWETH: Scalars['BigInt']['output']; + feesETH: Scalars['BigInt']['output']; + feesETH7Day: Scalars['BigInt']['output']; + feesETHAllTime: Scalars['BigInt']['output']; + feesUSD: Scalars['BigInt']['output']; + feesUSD7Day: Scalars['BigInt']['output']; + feesUSDAllTime: Scalars['BigInt']['output']; + holdersOverThreshold: Scalars['Int']['output']; + id: Scalars['String']['output']; + marketCapUSD: Scalars['Float']['output']; + nonRebasingSupply: Scalars['BigInt']['output']; + pegPrice: Scalars['BigInt']['output']; + rebasingSupply: Scalars['BigInt']['output']; + strategies: Array; + /** Last block number stats were updated */ + timestamp: Scalars['DateTime']['output']; + totalSupply: Scalars['BigInt']['output']; + totalSupplyUSD: Scalars['Float']['output']; + tradingVolumeUSD: Scalars['Float']['output']; + wrappedSupply: Scalars['BigInt']['output']; + yieldETH: Scalars['BigInt']['output']; + yieldETH7Day: Scalars['BigInt']['output']; + yieldETHAllTime: Scalars['BigInt']['output']; + yieldUSD: Scalars['BigInt']['output']; + yieldUSD7Day: Scalars['BigInt']['output']; + yieldUSDAllTime: Scalars['BigInt']['output']; }; -export type OethDrippersConnection = { - __typename?: 'OETHDrippersConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; -export type OethEdge = { - __typename?: 'OETHEdge'; - cursor: Scalars['String']['output']; - node: Oeth; +export type OethDailyStatCollateralArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; }; -export type OethFraxStaking = { - __typename?: 'OETHFraxStaking'; - blockNumber: Scalars['Int']['output']; - id: Scalars['String']['output']; - /** - * - sfrxETH is what's actually stored here, slightly confusing and may want to change. - * - used by balance sheet - */ - sfrxETH: Scalars['BigInt']['output']; - timestamp: Scalars['DateTime']['output']; + +export type OethDailyStatStrategiesArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; }; -export type OethFraxStakingEdge = { - __typename?: 'OETHFraxStakingEdge'; +export type OethDailyStatEdge = { + __typename?: 'OETHDailyStatEdge'; cursor: Scalars['String']['output']; - node: OethFraxStaking; + node: OethDailyStat; }; -export enum OethFraxStakingOrderByInput { +export enum OethDailyStatOrderByInput { + AmoSupplyAsc = 'amoSupply_ASC', + AmoSupplyAscNullsFirst = 'amoSupply_ASC_NULLS_FIRST', + AmoSupplyDesc = 'amoSupply_DESC', + AmoSupplyDescNullsLast = 'amoSupply_DESC_NULLS_LAST', + AprAsc = 'apr_ASC', + AprAscNullsFirst = 'apr_ASC_NULLS_FIRST', + AprDesc = 'apr_DESC', + AprDescNullsLast = 'apr_DESC_NULLS_LAST', + Apy7DayAvgAsc = 'apy7DayAvg_ASC', + Apy7DayAvgAscNullsFirst = 'apy7DayAvg_ASC_NULLS_FIRST', + Apy7DayAvgDesc = 'apy7DayAvg_DESC', + Apy7DayAvgDescNullsLast = 'apy7DayAvg_DESC_NULLS_LAST', + Apy14DayAvgAsc = 'apy14DayAvg_ASC', + Apy14DayAvgAscNullsFirst = 'apy14DayAvg_ASC_NULLS_FIRST', + Apy14DayAvgDesc = 'apy14DayAvg_DESC', + Apy14DayAvgDescNullsLast = 'apy14DayAvg_DESC_NULLS_LAST', + Apy30DayAvgAsc = 'apy30DayAvg_ASC', + Apy30DayAvgAscNullsFirst = 'apy30DayAvg_ASC_NULLS_FIRST', + Apy30DayAvgDesc = 'apy30DayAvg_DESC', + Apy30DayAvgDescNullsLast = 'apy30DayAvg_DESC_NULLS_LAST', + ApyAsc = 'apy_ASC', + ApyAscNullsFirst = 'apy_ASC_NULLS_FIRST', + ApyDesc = 'apy_DESC', + ApyDescNullsLast = 'apy_DESC_NULLS_LAST', BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + DripperWethAsc = 'dripperWETH_ASC', + DripperWethAscNullsFirst = 'dripperWETH_ASC_NULLS_FIRST', + DripperWethDesc = 'dripperWETH_DESC', + DripperWethDescNullsLast = 'dripperWETH_DESC_NULLS_LAST', + FeesEth7DayAsc = 'feesETH7Day_ASC', + FeesEth7DayAscNullsFirst = 'feesETH7Day_ASC_NULLS_FIRST', + FeesEth7DayDesc = 'feesETH7Day_DESC', + FeesEth7DayDescNullsLast = 'feesETH7Day_DESC_NULLS_LAST', + FeesEthAllTimeAsc = 'feesETHAllTime_ASC', + FeesEthAllTimeAscNullsFirst = 'feesETHAllTime_ASC_NULLS_FIRST', + FeesEthAllTimeDesc = 'feesETHAllTime_DESC', + FeesEthAllTimeDescNullsLast = 'feesETHAllTime_DESC_NULLS_LAST', + FeesEthAsc = 'feesETH_ASC', + FeesEthAscNullsFirst = 'feesETH_ASC_NULLS_FIRST', + FeesEthDesc = 'feesETH_DESC', + FeesEthDescNullsLast = 'feesETH_DESC_NULLS_LAST', + FeesUsd7DayAsc = 'feesUSD7Day_ASC', + FeesUsd7DayAscNullsFirst = 'feesUSD7Day_ASC_NULLS_FIRST', + FeesUsd7DayDesc = 'feesUSD7Day_DESC', + FeesUsd7DayDescNullsLast = 'feesUSD7Day_DESC_NULLS_LAST', + FeesUsdAllTimeAsc = 'feesUSDAllTime_ASC', + FeesUsdAllTimeAscNullsFirst = 'feesUSDAllTime_ASC_NULLS_FIRST', + FeesUsdAllTimeDesc = 'feesUSDAllTime_DESC', + FeesUsdAllTimeDescNullsLast = 'feesUSDAllTime_DESC_NULLS_LAST', + FeesUsdAsc = 'feesUSD_ASC', + FeesUsdAscNullsFirst = 'feesUSD_ASC_NULLS_FIRST', + FeesUsdDesc = 'feesUSD_DESC', + FeesUsdDescNullsLast = 'feesUSD_DESC_NULLS_LAST', + HoldersOverThresholdAsc = 'holdersOverThreshold_ASC', + HoldersOverThresholdAscNullsFirst = 'holdersOverThreshold_ASC_NULLS_FIRST', + HoldersOverThresholdDesc = 'holdersOverThreshold_DESC', + HoldersOverThresholdDescNullsLast = 'holdersOverThreshold_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - SfrxEthAsc = 'sfrxETH_ASC', - SfrxEthAscNullsFirst = 'sfrxETH_ASC_NULLS_FIRST', - SfrxEthDesc = 'sfrxETH_DESC', - SfrxEthDescNullsLast = 'sfrxETH_DESC_NULLS_LAST', + MarketCapUsdAsc = 'marketCapUSD_ASC', + MarketCapUsdAscNullsFirst = 'marketCapUSD_ASC_NULLS_FIRST', + MarketCapUsdDesc = 'marketCapUSD_DESC', + MarketCapUsdDescNullsLast = 'marketCapUSD_DESC_NULLS_LAST', + NonRebasingSupplyAsc = 'nonRebasingSupply_ASC', + NonRebasingSupplyAscNullsFirst = 'nonRebasingSupply_ASC_NULLS_FIRST', + NonRebasingSupplyDesc = 'nonRebasingSupply_DESC', + NonRebasingSupplyDescNullsLast = 'nonRebasingSupply_DESC_NULLS_LAST', + PegPriceAsc = 'pegPrice_ASC', + PegPriceAscNullsFirst = 'pegPrice_ASC_NULLS_FIRST', + PegPriceDesc = 'pegPrice_DESC', + PegPriceDescNullsLast = 'pegPrice_DESC_NULLS_LAST', + RebasingSupplyAsc = 'rebasingSupply_ASC', + RebasingSupplyAscNullsFirst = 'rebasingSupply_ASC_NULLS_FIRST', + RebasingSupplyDesc = 'rebasingSupply_DESC', + RebasingSupplyDescNullsLast = 'rebasingSupply_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST' + TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', + TotalSupplyUsdAsc = 'totalSupplyUSD_ASC', + TotalSupplyUsdAscNullsFirst = 'totalSupplyUSD_ASC_NULLS_FIRST', + TotalSupplyUsdDesc = 'totalSupplyUSD_DESC', + TotalSupplyUsdDescNullsLast = 'totalSupplyUSD_DESC_NULLS_LAST', + TotalSupplyAsc = 'totalSupply_ASC', + TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', + TotalSupplyDesc = 'totalSupply_DESC', + TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST', + TradingVolumeUsdAsc = 'tradingVolumeUSD_ASC', + TradingVolumeUsdAscNullsFirst = 'tradingVolumeUSD_ASC_NULLS_FIRST', + TradingVolumeUsdDesc = 'tradingVolumeUSD_DESC', + TradingVolumeUsdDescNullsLast = 'tradingVolumeUSD_DESC_NULLS_LAST', + WrappedSupplyAsc = 'wrappedSupply_ASC', + WrappedSupplyAscNullsFirst = 'wrappedSupply_ASC_NULLS_FIRST', + WrappedSupplyDesc = 'wrappedSupply_DESC', + WrappedSupplyDescNullsLast = 'wrappedSupply_DESC_NULLS_LAST', + YieldEth7DayAsc = 'yieldETH7Day_ASC', + YieldEth7DayAscNullsFirst = 'yieldETH7Day_ASC_NULLS_FIRST', + YieldEth7DayDesc = 'yieldETH7Day_DESC', + YieldEth7DayDescNullsLast = 'yieldETH7Day_DESC_NULLS_LAST', + YieldEthAllTimeAsc = 'yieldETHAllTime_ASC', + YieldEthAllTimeAscNullsFirst = 'yieldETHAllTime_ASC_NULLS_FIRST', + YieldEthAllTimeDesc = 'yieldETHAllTime_DESC', + YieldEthAllTimeDescNullsLast = 'yieldETHAllTime_DESC_NULLS_LAST', + YieldEthAsc = 'yieldETH_ASC', + YieldEthAscNullsFirst = 'yieldETH_ASC_NULLS_FIRST', + YieldEthDesc = 'yieldETH_DESC', + YieldEthDescNullsLast = 'yieldETH_DESC_NULLS_LAST', + YieldUsd7DayAsc = 'yieldUSD7Day_ASC', + YieldUsd7DayAscNullsFirst = 'yieldUSD7Day_ASC_NULLS_FIRST', + YieldUsd7DayDesc = 'yieldUSD7Day_DESC', + YieldUsd7DayDescNullsLast = 'yieldUSD7Day_DESC_NULLS_LAST', + YieldUsdAllTimeAsc = 'yieldUSDAllTime_ASC', + YieldUsdAllTimeAscNullsFirst = 'yieldUSDAllTime_ASC_NULLS_FIRST', + YieldUsdAllTimeDesc = 'yieldUSDAllTime_DESC', + YieldUsdAllTimeDescNullsLast = 'yieldUSDAllTime_DESC_NULLS_LAST', + YieldUsdAsc = 'yieldUSD_ASC', + YieldUsdAscNullsFirst = 'yieldUSD_ASC_NULLS_FIRST', + YieldUsdDesc = 'yieldUSD_DESC', + YieldUsdDescNullsLast = 'yieldUSD_DESC_NULLS_LAST' } -export type OethFraxStakingWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OethDailyStatWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + amoSupply_eq?: InputMaybe; + amoSupply_gt?: InputMaybe; + amoSupply_gte?: InputMaybe; + amoSupply_in?: InputMaybe>; + amoSupply_isNull?: InputMaybe; + amoSupply_lt?: InputMaybe; + amoSupply_lte?: InputMaybe; + amoSupply_not_eq?: InputMaybe; + amoSupply_not_in?: InputMaybe>; + apr_eq?: InputMaybe; + apr_gt?: InputMaybe; + apr_gte?: InputMaybe; + apr_in?: InputMaybe>; + apr_isNull?: InputMaybe; + apr_lt?: InputMaybe; + apr_lte?: InputMaybe; + apr_not_eq?: InputMaybe; + apr_not_in?: InputMaybe>; + apy7DayAvg_eq?: InputMaybe; + apy7DayAvg_gt?: InputMaybe; + apy7DayAvg_gte?: InputMaybe; + apy7DayAvg_in?: InputMaybe>; + apy7DayAvg_isNull?: InputMaybe; + apy7DayAvg_lt?: InputMaybe; + apy7DayAvg_lte?: InputMaybe; + apy7DayAvg_not_eq?: InputMaybe; + apy7DayAvg_not_in?: InputMaybe>; + apy14DayAvg_eq?: InputMaybe; + apy14DayAvg_gt?: InputMaybe; + apy14DayAvg_gte?: InputMaybe; + apy14DayAvg_in?: InputMaybe>; + apy14DayAvg_isNull?: InputMaybe; + apy14DayAvg_lt?: InputMaybe; + apy14DayAvg_lte?: InputMaybe; + apy14DayAvg_not_eq?: InputMaybe; + apy14DayAvg_not_in?: InputMaybe>; + apy30DayAvg_eq?: InputMaybe; + apy30DayAvg_gt?: InputMaybe; + apy30DayAvg_gte?: InputMaybe; + apy30DayAvg_in?: InputMaybe>; + apy30DayAvg_isNull?: InputMaybe; + apy30DayAvg_lt?: InputMaybe; + apy30DayAvg_lte?: InputMaybe; + apy30DayAvg_not_eq?: InputMaybe; + apy30DayAvg_not_in?: InputMaybe>; + apy_eq?: InputMaybe; + apy_gt?: InputMaybe; + apy_gte?: InputMaybe; + apy_in?: InputMaybe>; + apy_isNull?: InputMaybe; + apy_lt?: InputMaybe; + apy_lte?: InputMaybe; + apy_not_eq?: InputMaybe; + apy_not_in?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -4878,6 +3747,81 @@ export type OethFraxStakingWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; + collateral_every?: InputMaybe; + collateral_none?: InputMaybe; + collateral_some?: InputMaybe; + dripperWETH_eq?: InputMaybe; + dripperWETH_gt?: InputMaybe; + dripperWETH_gte?: InputMaybe; + dripperWETH_in?: InputMaybe>; + dripperWETH_isNull?: InputMaybe; + dripperWETH_lt?: InputMaybe; + dripperWETH_lte?: InputMaybe; + dripperWETH_not_eq?: InputMaybe; + dripperWETH_not_in?: InputMaybe>; + feesETH7Day_eq?: InputMaybe; + feesETH7Day_gt?: InputMaybe; + feesETH7Day_gte?: InputMaybe; + feesETH7Day_in?: InputMaybe>; + feesETH7Day_isNull?: InputMaybe; + feesETH7Day_lt?: InputMaybe; + feesETH7Day_lte?: InputMaybe; + feesETH7Day_not_eq?: InputMaybe; + feesETH7Day_not_in?: InputMaybe>; + feesETHAllTime_eq?: InputMaybe; + feesETHAllTime_gt?: InputMaybe; + feesETHAllTime_gte?: InputMaybe; + feesETHAllTime_in?: InputMaybe>; + feesETHAllTime_isNull?: InputMaybe; + feesETHAllTime_lt?: InputMaybe; + feesETHAllTime_lte?: InputMaybe; + feesETHAllTime_not_eq?: InputMaybe; + feesETHAllTime_not_in?: InputMaybe>; + feesETH_eq?: InputMaybe; + feesETH_gt?: InputMaybe; + feesETH_gte?: InputMaybe; + feesETH_in?: InputMaybe>; + feesETH_isNull?: InputMaybe; + feesETH_lt?: InputMaybe; + feesETH_lte?: InputMaybe; + feesETH_not_eq?: InputMaybe; + feesETH_not_in?: InputMaybe>; + feesUSD7Day_eq?: InputMaybe; + feesUSD7Day_gt?: InputMaybe; + feesUSD7Day_gte?: InputMaybe; + feesUSD7Day_in?: InputMaybe>; + feesUSD7Day_isNull?: InputMaybe; + feesUSD7Day_lt?: InputMaybe; + feesUSD7Day_lte?: InputMaybe; + feesUSD7Day_not_eq?: InputMaybe; + feesUSD7Day_not_in?: InputMaybe>; + feesUSDAllTime_eq?: InputMaybe; + feesUSDAllTime_gt?: InputMaybe; + feesUSDAllTime_gte?: InputMaybe; + feesUSDAllTime_in?: InputMaybe>; + feesUSDAllTime_isNull?: InputMaybe; + feesUSDAllTime_lt?: InputMaybe; + feesUSDAllTime_lte?: InputMaybe; + feesUSDAllTime_not_eq?: InputMaybe; + feesUSDAllTime_not_in?: InputMaybe>; + feesUSD_eq?: InputMaybe; + feesUSD_gt?: InputMaybe; + feesUSD_gte?: InputMaybe; + feesUSD_in?: InputMaybe>; + feesUSD_isNull?: InputMaybe; + feesUSD_lt?: InputMaybe; + feesUSD_lte?: InputMaybe; + feesUSD_not_eq?: InputMaybe; + feesUSD_not_in?: InputMaybe>; + holdersOverThreshold_eq?: InputMaybe; + holdersOverThreshold_gt?: InputMaybe; + holdersOverThreshold_gte?: InputMaybe; + holdersOverThreshold_in?: InputMaybe>; + holdersOverThreshold_isNull?: InputMaybe; + holdersOverThreshold_lt?: InputMaybe; + holdersOverThreshold_lte?: InputMaybe; + holdersOverThreshold_not_eq?: InputMaybe; + holdersOverThreshold_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -4895,15 +3839,45 @@ export type OethFraxStakingWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - sfrxETH_eq?: InputMaybe; - sfrxETH_gt?: InputMaybe; - sfrxETH_gte?: InputMaybe; - sfrxETH_in?: InputMaybe>; - sfrxETH_isNull?: InputMaybe; - sfrxETH_lt?: InputMaybe; - sfrxETH_lte?: InputMaybe; - sfrxETH_not_eq?: InputMaybe; - sfrxETH_not_in?: InputMaybe>; + marketCapUSD_eq?: InputMaybe; + marketCapUSD_gt?: InputMaybe; + marketCapUSD_gte?: InputMaybe; + marketCapUSD_in?: InputMaybe>; + marketCapUSD_isNull?: InputMaybe; + marketCapUSD_lt?: InputMaybe; + marketCapUSD_lte?: InputMaybe; + marketCapUSD_not_eq?: InputMaybe; + marketCapUSD_not_in?: InputMaybe>; + nonRebasingSupply_eq?: InputMaybe; + nonRebasingSupply_gt?: InputMaybe; + nonRebasingSupply_gte?: InputMaybe; + nonRebasingSupply_in?: InputMaybe>; + nonRebasingSupply_isNull?: InputMaybe; + nonRebasingSupply_lt?: InputMaybe; + nonRebasingSupply_lte?: InputMaybe; + nonRebasingSupply_not_eq?: InputMaybe; + nonRebasingSupply_not_in?: InputMaybe>; + pegPrice_eq?: InputMaybe; + pegPrice_gt?: InputMaybe; + pegPrice_gte?: InputMaybe; + pegPrice_in?: InputMaybe>; + pegPrice_isNull?: InputMaybe; + pegPrice_lt?: InputMaybe; + pegPrice_lte?: InputMaybe; + pegPrice_not_eq?: InputMaybe; + pegPrice_not_in?: InputMaybe>; + rebasingSupply_eq?: InputMaybe; + rebasingSupply_gt?: InputMaybe; + rebasingSupply_gte?: InputMaybe; + rebasingSupply_in?: InputMaybe>; + rebasingSupply_isNull?: InputMaybe; + rebasingSupply_lt?: InputMaybe; + rebasingSupply_lte?: InputMaybe; + rebasingSupply_not_eq?: InputMaybe; + rebasingSupply_not_in?: InputMaybe>; + strategies_every?: InputMaybe; + strategies_none?: InputMaybe; + strategies_some?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -4913,205 +3887,143 @@ export type OethFraxStakingWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; -}; - -export type OethFraxStakingsConnection = { - __typename?: 'OETHFraxStakingsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OethHistoriesConnection = { - __typename?: 'OETHHistoriesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -/** The History entity tracks events that change the balance of OETH for an address. */ -export type OethHistory = { - __typename?: 'OETHHistory'; - address: OethAddress; - balance: Scalars['BigInt']['output']; - blockNumber: Scalars['Int']['output']; - id: Scalars['String']['output']; - timestamp: Scalars['DateTime']['output']; - txHash: Scalars['String']['output']; - type: HistoryType; - value: Scalars['BigInt']['output']; -}; - -export type OethHistoryEdge = { - __typename?: 'OETHHistoryEdge'; - cursor: Scalars['String']['output']; - node: OethHistory; -}; - -export enum OethHistoryOrderByInput { - AddressBalanceAsc = 'address_balance_ASC', - AddressBalanceAscNullsFirst = 'address_balance_ASC_NULLS_FIRST', - AddressBalanceDesc = 'address_balance_DESC', - AddressBalanceDescNullsLast = 'address_balance_DESC_NULLS_LAST', - AddressCreditsAsc = 'address_credits_ASC', - AddressCreditsAscNullsFirst = 'address_credits_ASC_NULLS_FIRST', - AddressCreditsDesc = 'address_credits_DESC', - AddressCreditsDescNullsLast = 'address_credits_DESC_NULLS_LAST', - AddressEarnedAsc = 'address_earned_ASC', - AddressEarnedAscNullsFirst = 'address_earned_ASC_NULLS_FIRST', - AddressEarnedDesc = 'address_earned_DESC', - AddressEarnedDescNullsLast = 'address_earned_DESC_NULLS_LAST', - AddressIdAsc = 'address_id_ASC', - AddressIdAscNullsFirst = 'address_id_ASC_NULLS_FIRST', - AddressIdDesc = 'address_id_DESC', - AddressIdDescNullsLast = 'address_id_DESC_NULLS_LAST', - AddressIsContractAsc = 'address_isContract_ASC', - AddressIsContractAscNullsFirst = 'address_isContract_ASC_NULLS_FIRST', - AddressIsContractDesc = 'address_isContract_DESC', - AddressIsContractDescNullsLast = 'address_isContract_DESC_NULLS_LAST', - AddressLastUpdatedAsc = 'address_lastUpdated_ASC', - AddressLastUpdatedAscNullsFirst = 'address_lastUpdated_ASC_NULLS_FIRST', - AddressLastUpdatedDesc = 'address_lastUpdated_DESC', - AddressLastUpdatedDescNullsLast = 'address_lastUpdated_DESC_NULLS_LAST', - AddressRebasingOptionAsc = 'address_rebasingOption_ASC', - AddressRebasingOptionAscNullsFirst = 'address_rebasingOption_ASC_NULLS_FIRST', - AddressRebasingOptionDesc = 'address_rebasingOption_DESC', - AddressRebasingOptionDescNullsLast = 'address_rebasingOption_DESC_NULLS_LAST', - BalanceAsc = 'balance_ASC', - BalanceAscNullsFirst = 'balance_ASC_NULLS_FIRST', - BalanceDesc = 'balance_DESC', - BalanceDescNullsLast = 'balance_DESC_NULLS_LAST', - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TxHashAsc = 'txHash_ASC', - TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', - TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST', - TypeAsc = 'type_ASC', - TypeAscNullsFirst = 'type_ASC_NULLS_FIRST', - TypeDesc = 'type_DESC', - TypeDescNullsLast = 'type_DESC_NULLS_LAST', - ValueAsc = 'value_ASC', - ValueAscNullsFirst = 'value_ASC_NULLS_FIRST', - ValueDesc = 'value_DESC', - ValueDescNullsLast = 'value_DESC_NULLS_LAST' -} + totalSupplyUSD_eq?: InputMaybe; + totalSupplyUSD_gt?: InputMaybe; + totalSupplyUSD_gte?: InputMaybe; + totalSupplyUSD_in?: InputMaybe>; + totalSupplyUSD_isNull?: InputMaybe; + totalSupplyUSD_lt?: InputMaybe; + totalSupplyUSD_lte?: InputMaybe; + totalSupplyUSD_not_eq?: InputMaybe; + totalSupplyUSD_not_in?: InputMaybe>; + totalSupply_eq?: InputMaybe; + totalSupply_gt?: InputMaybe; + totalSupply_gte?: InputMaybe; + totalSupply_in?: InputMaybe>; + totalSupply_isNull?: InputMaybe; + totalSupply_lt?: InputMaybe; + totalSupply_lte?: InputMaybe; + totalSupply_not_eq?: InputMaybe; + totalSupply_not_in?: InputMaybe>; + tradingVolumeUSD_eq?: InputMaybe; + tradingVolumeUSD_gt?: InputMaybe; + tradingVolumeUSD_gte?: InputMaybe; + tradingVolumeUSD_in?: InputMaybe>; + tradingVolumeUSD_isNull?: InputMaybe; + tradingVolumeUSD_lt?: InputMaybe; + tradingVolumeUSD_lte?: InputMaybe; + tradingVolumeUSD_not_eq?: InputMaybe; + tradingVolumeUSD_not_in?: InputMaybe>; + wrappedSupply_eq?: InputMaybe; + wrappedSupply_gt?: InputMaybe; + wrappedSupply_gte?: InputMaybe; + wrappedSupply_in?: InputMaybe>; + wrappedSupply_isNull?: InputMaybe; + wrappedSupply_lt?: InputMaybe; + wrappedSupply_lte?: InputMaybe; + wrappedSupply_not_eq?: InputMaybe; + wrappedSupply_not_in?: InputMaybe>; + yieldETH7Day_eq?: InputMaybe; + yieldETH7Day_gt?: InputMaybe; + yieldETH7Day_gte?: InputMaybe; + yieldETH7Day_in?: InputMaybe>; + yieldETH7Day_isNull?: InputMaybe; + yieldETH7Day_lt?: InputMaybe; + yieldETH7Day_lte?: InputMaybe; + yieldETH7Day_not_eq?: InputMaybe; + yieldETH7Day_not_in?: InputMaybe>; + yieldETHAllTime_eq?: InputMaybe; + yieldETHAllTime_gt?: InputMaybe; + yieldETHAllTime_gte?: InputMaybe; + yieldETHAllTime_in?: InputMaybe>; + yieldETHAllTime_isNull?: InputMaybe; + yieldETHAllTime_lt?: InputMaybe; + yieldETHAllTime_lte?: InputMaybe; + yieldETHAllTime_not_eq?: InputMaybe; + yieldETHAllTime_not_in?: InputMaybe>; + yieldETH_eq?: InputMaybe; + yieldETH_gt?: InputMaybe; + yieldETH_gte?: InputMaybe; + yieldETH_in?: InputMaybe>; + yieldETH_isNull?: InputMaybe; + yieldETH_lt?: InputMaybe; + yieldETH_lte?: InputMaybe; + yieldETH_not_eq?: InputMaybe; + yieldETH_not_in?: InputMaybe>; + yieldUSD7Day_eq?: InputMaybe; + yieldUSD7Day_gt?: InputMaybe; + yieldUSD7Day_gte?: InputMaybe; + yieldUSD7Day_in?: InputMaybe>; + yieldUSD7Day_isNull?: InputMaybe; + yieldUSD7Day_lt?: InputMaybe; + yieldUSD7Day_lte?: InputMaybe; + yieldUSD7Day_not_eq?: InputMaybe; + yieldUSD7Day_not_in?: InputMaybe>; + yieldUSDAllTime_eq?: InputMaybe; + yieldUSDAllTime_gt?: InputMaybe; + yieldUSDAllTime_gte?: InputMaybe; + yieldUSDAllTime_in?: InputMaybe>; + yieldUSDAllTime_isNull?: InputMaybe; + yieldUSDAllTime_lt?: InputMaybe; + yieldUSDAllTime_lte?: InputMaybe; + yieldUSDAllTime_not_eq?: InputMaybe; + yieldUSDAllTime_not_in?: InputMaybe>; + yieldUSD_eq?: InputMaybe; + yieldUSD_gt?: InputMaybe; + yieldUSD_gte?: InputMaybe; + yieldUSD_in?: InputMaybe>; + yieldUSD_isNull?: InputMaybe; + yieldUSD_lt?: InputMaybe; + yieldUSD_lte?: InputMaybe; + yieldUSD_not_eq?: InputMaybe; + yieldUSD_not_in?: InputMaybe>; +}; -export type OethHistoryWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - address?: InputMaybe; - address_isNull?: InputMaybe; - balance_eq?: InputMaybe; - balance_gt?: InputMaybe; - balance_gte?: InputMaybe; - balance_in?: InputMaybe>; - balance_isNull?: InputMaybe; - balance_lt?: InputMaybe; - balance_lte?: InputMaybe; - balance_not_eq?: InputMaybe; - balance_not_in?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - timestamp_eq?: InputMaybe; - timestamp_gt?: InputMaybe; - timestamp_gte?: InputMaybe; - timestamp_in?: InputMaybe>; - timestamp_isNull?: InputMaybe; - timestamp_lt?: InputMaybe; - timestamp_lte?: InputMaybe; - timestamp_not_eq?: InputMaybe; - timestamp_not_in?: InputMaybe>; - txHash_contains?: InputMaybe; - txHash_containsInsensitive?: InputMaybe; - txHash_endsWith?: InputMaybe; - txHash_eq?: InputMaybe; - txHash_gt?: InputMaybe; - txHash_gte?: InputMaybe; - txHash_in?: InputMaybe>; - txHash_isNull?: InputMaybe; - txHash_lt?: InputMaybe; - txHash_lte?: InputMaybe; - txHash_not_contains?: InputMaybe; - txHash_not_containsInsensitive?: InputMaybe; - txHash_not_endsWith?: InputMaybe; - txHash_not_eq?: InputMaybe; - txHash_not_in?: InputMaybe>; - txHash_not_startsWith?: InputMaybe; - txHash_startsWith?: InputMaybe; - type_eq?: InputMaybe; - type_in?: InputMaybe>; - type_isNull?: InputMaybe; - type_not_eq?: InputMaybe; - type_not_in?: InputMaybe>; - value_eq?: InputMaybe; - value_gt?: InputMaybe; - value_gte?: InputMaybe; - value_in?: InputMaybe>; - value_isNull?: InputMaybe; - value_lt?: InputMaybe; - value_lte?: InputMaybe; - value_not_eq?: InputMaybe; - value_not_in?: InputMaybe>; +export type OethDailyStatsConnection = { + __typename?: 'OETHDailyStatsConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; }; -export type OethMorphoAave = { - __typename?: 'OETHMorphoAave'; +export type OethDripper = { + __typename?: 'OETHDripper'; blockNumber: Scalars['Int']['output']; + dripDuration: Scalars['BigInt']['output']; + dripRatePerBlock: Scalars['BigInt']['output']; id: Scalars['String']['output']; + lastCollectTimestamp: Scalars['Int']['output']; timestamp: Scalars['DateTime']['output']; weth: Scalars['BigInt']['output']; }; -export type OethMorphoAaveEdge = { - __typename?: 'OETHMorphoAaveEdge'; +export type OethDripperEdge = { + __typename?: 'OETHDripperEdge'; cursor: Scalars['String']['output']; - node: OethMorphoAave; + node: OethDripper; }; -export enum OethMorphoAaveOrderByInput { +export enum OethDripperOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + DripDurationAsc = 'dripDuration_ASC', + DripDurationAscNullsFirst = 'dripDuration_ASC_NULLS_FIRST', + DripDurationDesc = 'dripDuration_DESC', + DripDurationDescNullsLast = 'dripDuration_DESC_NULLS_LAST', + DripRatePerBlockAsc = 'dripRatePerBlock_ASC', + DripRatePerBlockAscNullsFirst = 'dripRatePerBlock_ASC_NULLS_FIRST', + DripRatePerBlockDesc = 'dripRatePerBlock_DESC', + DripRatePerBlockDescNullsLast = 'dripRatePerBlock_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', + LastCollectTimestampAsc = 'lastCollectTimestamp_ASC', + LastCollectTimestampAscNullsFirst = 'lastCollectTimestamp_ASC_NULLS_FIRST', + LastCollectTimestampDesc = 'lastCollectTimestamp_DESC', + LastCollectTimestampDescNullsLast = 'lastCollectTimestamp_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', @@ -5122,9 +4034,9 @@ export enum OethMorphoAaveOrderByInput { WethDescNullsLast = 'weth_DESC_NULLS_LAST' } -export type OethMorphoAaveWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OethDripperWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -5134,6 +4046,24 @@ export type OethMorphoAaveWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; + dripDuration_eq?: InputMaybe; + dripDuration_gt?: InputMaybe; + dripDuration_gte?: InputMaybe; + dripDuration_in?: InputMaybe>; + dripDuration_isNull?: InputMaybe; + dripDuration_lt?: InputMaybe; + dripDuration_lte?: InputMaybe; + dripDuration_not_eq?: InputMaybe; + dripDuration_not_in?: InputMaybe>; + dripRatePerBlock_eq?: InputMaybe; + dripRatePerBlock_gt?: InputMaybe; + dripRatePerBlock_gte?: InputMaybe; + dripRatePerBlock_in?: InputMaybe>; + dripRatePerBlock_isNull?: InputMaybe; + dripRatePerBlock_lt?: InputMaybe; + dripRatePerBlock_lte?: InputMaybe; + dripRatePerBlock_not_eq?: InputMaybe; + dripRatePerBlock_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -5151,6 +4081,15 @@ export type OethMorphoAaveWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; + lastCollectTimestamp_eq?: InputMaybe; + lastCollectTimestamp_gt?: InputMaybe; + lastCollectTimestamp_gte?: InputMaybe; + lastCollectTimestamp_in?: InputMaybe>; + lastCollectTimestamp_isNull?: InputMaybe; + lastCollectTimestamp_lt?: InputMaybe; + lastCollectTimestamp_lte?: InputMaybe; + lastCollectTimestamp_not_eq?: InputMaybe; + lastCollectTimestamp_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -5171,109 +4110,32 @@ export type OethMorphoAaveWhereInput = { weth_not_in?: InputMaybe>; }; -export type OethMorphoAavesConnection = { - __typename?: 'OETHMorphoAavesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export enum OethOrderByInput { - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - NonRebasingSupplyAsc = 'nonRebasingSupply_ASC', - NonRebasingSupplyAscNullsFirst = 'nonRebasingSupply_ASC_NULLS_FIRST', - NonRebasingSupplyDesc = 'nonRebasingSupply_DESC', - NonRebasingSupplyDescNullsLast = 'nonRebasingSupply_DESC_NULLS_LAST', - RebasingSupplyAsc = 'rebasingSupply_ASC', - RebasingSupplyAscNullsFirst = 'rebasingSupply_ASC_NULLS_FIRST', - RebasingSupplyDesc = 'rebasingSupply_DESC', - RebasingSupplyDescNullsLast = 'rebasingSupply_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TotalSupplyAsc = 'totalSupply_ASC', - TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', - TotalSupplyDesc = 'totalSupply_DESC', - TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST' -} - -/** The Rebase entity tracks historical rebase events on the OETH contract. */ -export type OethRebase = { - __typename?: 'OETHRebase'; - apy: Oethapy; - blockNumber: Scalars['Int']['output']; - feeETH: Scalars['BigInt']['output']; - feeUSD: Scalars['BigInt']['output']; - id: Scalars['String']['output']; - rebasingCredits: Scalars['BigInt']['output']; - rebasingCreditsPerToken: Scalars['BigInt']['output']; - timestamp: Scalars['DateTime']['output']; - totalSupply: Scalars['BigInt']['output']; - txHash: Scalars['String']['output']; - yieldETH: Scalars['BigInt']['output']; - yieldUSD: Scalars['BigInt']['output']; -}; - -export type OethRebaseEdge = { - __typename?: 'OETHRebaseEdge'; - cursor: Scalars['String']['output']; - node: OethRebase; -}; - -/** The RebaseOption entity tracks historical rebase option changes by address. */ -export type OethRebaseOption = { - __typename?: 'OETHRebaseOption'; - address: OethAddress; - blockNumber: Scalars['Int']['output']; - id: Scalars['String']['output']; - status: RebasingOption; - timestamp: Scalars['DateTime']['output']; - txHash: Scalars['String']['output']; -}; - -export type OethRebaseOptionEdge = { - __typename?: 'OETHRebaseOptionEdge'; - cursor: Scalars['String']['output']; - node: OethRebaseOption; -}; - -export enum OethRebaseOptionOrderByInput { - AddressBalanceAsc = 'address_balance_ASC', - AddressBalanceAscNullsFirst = 'address_balance_ASC_NULLS_FIRST', - AddressBalanceDesc = 'address_balance_DESC', - AddressBalanceDescNullsLast = 'address_balance_DESC_NULLS_LAST', - AddressCreditsAsc = 'address_credits_ASC', - AddressCreditsAscNullsFirst = 'address_credits_ASC_NULLS_FIRST', - AddressCreditsDesc = 'address_credits_DESC', - AddressCreditsDescNullsLast = 'address_credits_DESC_NULLS_LAST', - AddressEarnedAsc = 'address_earned_ASC', - AddressEarnedAscNullsFirst = 'address_earned_ASC_NULLS_FIRST', - AddressEarnedDesc = 'address_earned_DESC', - AddressEarnedDescNullsLast = 'address_earned_DESC_NULLS_LAST', - AddressIdAsc = 'address_id_ASC', - AddressIdAscNullsFirst = 'address_id_ASC_NULLS_FIRST', - AddressIdDesc = 'address_id_DESC', - AddressIdDescNullsLast = 'address_id_DESC_NULLS_LAST', - AddressIsContractAsc = 'address_isContract_ASC', - AddressIsContractAscNullsFirst = 'address_isContract_ASC_NULLS_FIRST', - AddressIsContractDesc = 'address_isContract_DESC', - AddressIsContractDescNullsLast = 'address_isContract_DESC_NULLS_LAST', - AddressLastUpdatedAsc = 'address_lastUpdated_ASC', - AddressLastUpdatedAscNullsFirst = 'address_lastUpdated_ASC_NULLS_FIRST', - AddressLastUpdatedDesc = 'address_lastUpdated_DESC', - AddressLastUpdatedDescNullsLast = 'address_lastUpdated_DESC_NULLS_LAST', - AddressRebasingOptionAsc = 'address_rebasingOption_ASC', - AddressRebasingOptionAscNullsFirst = 'address_rebasingOption_ASC_NULLS_FIRST', - AddressRebasingOptionDesc = 'address_rebasingOption_DESC', - AddressRebasingOptionDescNullsLast = 'address_rebasingOption_DESC_NULLS_LAST', +export type OethDrippersConnection = { + __typename?: 'OETHDrippersConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; +}; + +export type OethFraxStaking = { + __typename?: 'OETHFraxStaking'; + blockNumber: Scalars['Int']['output']; + id: Scalars['String']['output']; + /** + * - sfrxETH is what's actually stored here, slightly confusing and may want to change. + * - used by balance sheet + */ + sfrxETH: Scalars['BigInt']['output']; + timestamp: Scalars['DateTime']['output']; +}; + +export type OethFraxStakingEdge = { + __typename?: 'OETHFraxStakingEdge'; + cursor: Scalars['String']['output']; + node: OethFraxStaking; +}; + +export enum OethFraxStakingOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', @@ -5282,25 +4144,19 @@ export enum OethRebaseOptionOrderByInput { IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - StatusAsc = 'status_ASC', - StatusAscNullsFirst = 'status_ASC_NULLS_FIRST', - StatusDesc = 'status_DESC', - StatusDescNullsLast = 'status_DESC_NULLS_LAST', + SfrxEthAsc = 'sfrxETH_ASC', + SfrxEthAscNullsFirst = 'sfrxETH_ASC_NULLS_FIRST', + SfrxEthDesc = 'sfrxETH_DESC', + SfrxEthDescNullsLast = 'sfrxETH_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TxHashAsc = 'txHash_ASC', - TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', - TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST' + TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST' } -export type OethRebaseOptionWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - address?: InputMaybe; - address_isNull?: InputMaybe; +export type OethFraxStakingWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -5327,11 +4183,15 @@ export type OethRebaseOptionWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - status_eq?: InputMaybe; - status_in?: InputMaybe>; - status_isNull?: InputMaybe; - status_not_eq?: InputMaybe; - status_not_in?: InputMaybe>; + sfrxETH_eq?: InputMaybe; + sfrxETH_gt?: InputMaybe; + sfrxETH_gte?: InputMaybe; + sfrxETH_in?: InputMaybe>; + sfrxETH_isNull?: InputMaybe; + sfrxETH_lt?: InputMaybe; + sfrxETH_lte?: InputMaybe; + sfrxETH_not_eq?: InputMaybe; + sfrxETH_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -5341,124 +4201,51 @@ export type OethRebaseOptionWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - txHash_contains?: InputMaybe; - txHash_containsInsensitive?: InputMaybe; - txHash_endsWith?: InputMaybe; - txHash_eq?: InputMaybe; - txHash_gt?: InputMaybe; - txHash_gte?: InputMaybe; - txHash_in?: InputMaybe>; - txHash_isNull?: InputMaybe; - txHash_lt?: InputMaybe; - txHash_lte?: InputMaybe; - txHash_not_contains?: InputMaybe; - txHash_not_containsInsensitive?: InputMaybe; - txHash_not_endsWith?: InputMaybe; - txHash_not_eq?: InputMaybe; - txHash_not_in?: InputMaybe>; - txHash_not_startsWith?: InputMaybe; - txHash_startsWith?: InputMaybe; }; -export type OethRebaseOptionsConnection = { - __typename?: 'OETHRebaseOptionsConnection'; - edges: Array; +export type OethFraxStakingsConnection = { + __typename?: 'OETHFraxStakingsConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export enum OethRebaseOrderByInput { - ApyAprAsc = 'apy_apr_ASC', - ApyAprAscNullsFirst = 'apy_apr_ASC_NULLS_FIRST', - ApyAprDesc = 'apy_apr_DESC', - ApyAprDescNullsLast = 'apy_apr_DESC_NULLS_LAST', - ApyApy7DayAvgAsc = 'apy_apy7DayAvg_ASC', - ApyApy7DayAvgAscNullsFirst = 'apy_apy7DayAvg_ASC_NULLS_FIRST', - ApyApy7DayAvgDesc = 'apy_apy7DayAvg_DESC', - ApyApy7DayAvgDescNullsLast = 'apy_apy7DayAvg_DESC_NULLS_LAST', - ApyApy14DayAvgAsc = 'apy_apy14DayAvg_ASC', - ApyApy14DayAvgAscNullsFirst = 'apy_apy14DayAvg_ASC_NULLS_FIRST', - ApyApy14DayAvgDesc = 'apy_apy14DayAvg_DESC', - ApyApy14DayAvgDescNullsLast = 'apy_apy14DayAvg_DESC_NULLS_LAST', - ApyApy30DayAvgAsc = 'apy_apy30DayAvg_ASC', - ApyApy30DayAvgAscNullsFirst = 'apy_apy30DayAvg_ASC_NULLS_FIRST', - ApyApy30DayAvgDesc = 'apy_apy30DayAvg_DESC', - ApyApy30DayAvgDescNullsLast = 'apy_apy30DayAvg_DESC_NULLS_LAST', - ApyApyAsc = 'apy_apy_ASC', - ApyApyAscNullsFirst = 'apy_apy_ASC_NULLS_FIRST', - ApyApyDesc = 'apy_apy_DESC', - ApyApyDescNullsLast = 'apy_apy_DESC_NULLS_LAST', - ApyBlockNumberAsc = 'apy_blockNumber_ASC', - ApyBlockNumberAscNullsFirst = 'apy_blockNumber_ASC_NULLS_FIRST', - ApyBlockNumberDesc = 'apy_blockNumber_DESC', - ApyBlockNumberDescNullsLast = 'apy_blockNumber_DESC_NULLS_LAST', - ApyIdAsc = 'apy_id_ASC', - ApyIdAscNullsFirst = 'apy_id_ASC_NULLS_FIRST', - ApyIdDesc = 'apy_id_DESC', - ApyIdDescNullsLast = 'apy_id_DESC_NULLS_LAST', - ApyRebasingCreditsPerTokenAsc = 'apy_rebasingCreditsPerToken_ASC', - ApyRebasingCreditsPerTokenAscNullsFirst = 'apy_rebasingCreditsPerToken_ASC_NULLS_FIRST', - ApyRebasingCreditsPerTokenDesc = 'apy_rebasingCreditsPerToken_DESC', - ApyRebasingCreditsPerTokenDescNullsLast = 'apy_rebasingCreditsPerToken_DESC_NULLS_LAST', - ApyTimestampAsc = 'apy_timestamp_ASC', - ApyTimestampAscNullsFirst = 'apy_timestamp_ASC_NULLS_FIRST', - ApyTimestampDesc = 'apy_timestamp_DESC', - ApyTimestampDescNullsLast = 'apy_timestamp_DESC_NULLS_LAST', - ApyTxHashAsc = 'apy_txHash_ASC', - ApyTxHashAscNullsFirst = 'apy_txHash_ASC_NULLS_FIRST', - ApyTxHashDesc = 'apy_txHash_DESC', - ApyTxHashDescNullsLast = 'apy_txHash_DESC_NULLS_LAST', +export type OethMorphoAave = { + __typename?: 'OETHMorphoAave'; + blockNumber: Scalars['Int']['output']; + id: Scalars['String']['output']; + timestamp: Scalars['DateTime']['output']; + weth: Scalars['BigInt']['output']; +}; + +export type OethMorphoAaveEdge = { + __typename?: 'OETHMorphoAaveEdge'; + cursor: Scalars['String']['output']; + node: OethMorphoAave; +}; + +export enum OethMorphoAaveOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - FeeEthAsc = 'feeETH_ASC', - FeeEthAscNullsFirst = 'feeETH_ASC_NULLS_FIRST', - FeeEthDesc = 'feeETH_DESC', - FeeEthDescNullsLast = 'feeETH_DESC_NULLS_LAST', - FeeUsdAsc = 'feeUSD_ASC', - FeeUsdAscNullsFirst = 'feeUSD_ASC_NULLS_FIRST', - FeeUsdDesc = 'feeUSD_DESC', - FeeUsdDescNullsLast = 'feeUSD_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - RebasingCreditsPerTokenAsc = 'rebasingCreditsPerToken_ASC', - RebasingCreditsPerTokenAscNullsFirst = 'rebasingCreditsPerToken_ASC_NULLS_FIRST', - RebasingCreditsPerTokenDesc = 'rebasingCreditsPerToken_DESC', - RebasingCreditsPerTokenDescNullsLast = 'rebasingCreditsPerToken_DESC_NULLS_LAST', - RebasingCreditsAsc = 'rebasingCredits_ASC', - RebasingCreditsAscNullsFirst = 'rebasingCredits_ASC_NULLS_FIRST', - RebasingCreditsDesc = 'rebasingCredits_DESC', - RebasingCreditsDescNullsLast = 'rebasingCredits_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TotalSupplyAsc = 'totalSupply_ASC', - TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', - TotalSupplyDesc = 'totalSupply_DESC', - TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST', - TxHashAsc = 'txHash_ASC', - TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', - TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST', - YieldEthAsc = 'yieldETH_ASC', - YieldEthAscNullsFirst = 'yieldETH_ASC_NULLS_FIRST', - YieldEthDesc = 'yieldETH_DESC', - YieldEthDescNullsLast = 'yieldETH_DESC_NULLS_LAST', - YieldUsdAsc = 'yieldUSD_ASC', - YieldUsdAscNullsFirst = 'yieldUSD_ASC_NULLS_FIRST', - YieldUsdDesc = 'yieldUSD_DESC', - YieldUsdDescNullsLast = 'yieldUSD_DESC_NULLS_LAST' + WethAsc = 'weth_ASC', + WethAscNullsFirst = 'weth_ASC_NULLS_FIRST', + WethDesc = 'weth_DESC', + WethDescNullsLast = 'weth_DESC_NULLS_LAST' } -export type OethRebaseWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - apy?: InputMaybe; - apy_isNull?: InputMaybe; +export type OethMorphoAaveWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -5468,24 +4255,6 @@ export type OethRebaseWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; - feeETH_eq?: InputMaybe; - feeETH_gt?: InputMaybe; - feeETH_gte?: InputMaybe; - feeETH_in?: InputMaybe>; - feeETH_isNull?: InputMaybe; - feeETH_lt?: InputMaybe; - feeETH_lte?: InputMaybe; - feeETH_not_eq?: InputMaybe; - feeETH_not_in?: InputMaybe>; - feeUSD_eq?: InputMaybe; - feeUSD_gt?: InputMaybe; - feeUSD_gte?: InputMaybe; - feeUSD_in?: InputMaybe>; - feeUSD_isNull?: InputMaybe; - feeUSD_lt?: InputMaybe; - feeUSD_lte?: InputMaybe; - feeUSD_not_eq?: InputMaybe; - feeUSD_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -5503,24 +4272,6 @@ export type OethRebaseWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - rebasingCreditsPerToken_eq?: InputMaybe; - rebasingCreditsPerToken_gt?: InputMaybe; - rebasingCreditsPerToken_gte?: InputMaybe; - rebasingCreditsPerToken_in?: InputMaybe>; - rebasingCreditsPerToken_isNull?: InputMaybe; - rebasingCreditsPerToken_lt?: InputMaybe; - rebasingCreditsPerToken_lte?: InputMaybe; - rebasingCreditsPerToken_not_eq?: InputMaybe; - rebasingCreditsPerToken_not_in?: InputMaybe>; - rebasingCredits_eq?: InputMaybe; - rebasingCredits_gt?: InputMaybe; - rebasingCredits_gte?: InputMaybe; - rebasingCredits_in?: InputMaybe>; - rebasingCredits_isNull?: InputMaybe; - rebasingCredits_lt?: InputMaybe; - rebasingCredits_lte?: InputMaybe; - rebasingCredits_not_eq?: InputMaybe; - rebasingCredits_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -5530,55 +4281,20 @@ export type OethRebaseWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - totalSupply_eq?: InputMaybe; - totalSupply_gt?: InputMaybe; - totalSupply_gte?: InputMaybe; - totalSupply_in?: InputMaybe>; - totalSupply_isNull?: InputMaybe; - totalSupply_lt?: InputMaybe; - totalSupply_lte?: InputMaybe; - totalSupply_not_eq?: InputMaybe; - totalSupply_not_in?: InputMaybe>; - txHash_contains?: InputMaybe; - txHash_containsInsensitive?: InputMaybe; - txHash_endsWith?: InputMaybe; - txHash_eq?: InputMaybe; - txHash_gt?: InputMaybe; - txHash_gte?: InputMaybe; - txHash_in?: InputMaybe>; - txHash_isNull?: InputMaybe; - txHash_lt?: InputMaybe; - txHash_lte?: InputMaybe; - txHash_not_contains?: InputMaybe; - txHash_not_containsInsensitive?: InputMaybe; - txHash_not_endsWith?: InputMaybe; - txHash_not_eq?: InputMaybe; - txHash_not_in?: InputMaybe>; - txHash_not_startsWith?: InputMaybe; - txHash_startsWith?: InputMaybe; - yieldETH_eq?: InputMaybe; - yieldETH_gt?: InputMaybe; - yieldETH_gte?: InputMaybe; - yieldETH_in?: InputMaybe>; - yieldETH_isNull?: InputMaybe; - yieldETH_lt?: InputMaybe; - yieldETH_lte?: InputMaybe; - yieldETH_not_eq?: InputMaybe; - yieldETH_not_in?: InputMaybe>; - yieldUSD_eq?: InputMaybe; - yieldUSD_gt?: InputMaybe; - yieldUSD_gte?: InputMaybe; - yieldUSD_in?: InputMaybe>; - yieldUSD_isNull?: InputMaybe; - yieldUSD_lt?: InputMaybe; - yieldUSD_lte?: InputMaybe; - yieldUSD_not_eq?: InputMaybe; - yieldUSD_not_in?: InputMaybe>; + weth_eq?: InputMaybe; + weth_gt?: InputMaybe; + weth_gte?: InputMaybe; + weth_in?: InputMaybe>; + weth_isNull?: InputMaybe; + weth_lt?: InputMaybe; + weth_lte?: InputMaybe; + weth_not_eq?: InputMaybe; + weth_not_in?: InputMaybe>; }; -export type OethRebasesConnection = { - __typename?: 'OETHRebasesConnection'; - edges: Array; +export type OethMorphoAavesConnection = { + __typename?: 'OETHMorphoAavesConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; @@ -6227,80 +4943,6 @@ export type OethVaultsConnection = { totalCount: Scalars['Int']['output']; }; -export type OethWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - nonRebasingSupply_eq?: InputMaybe; - nonRebasingSupply_gt?: InputMaybe; - nonRebasingSupply_gte?: InputMaybe; - nonRebasingSupply_in?: InputMaybe>; - nonRebasingSupply_isNull?: InputMaybe; - nonRebasingSupply_lt?: InputMaybe; - nonRebasingSupply_lte?: InputMaybe; - nonRebasingSupply_not_eq?: InputMaybe; - nonRebasingSupply_not_in?: InputMaybe>; - rebasingSupply_eq?: InputMaybe; - rebasingSupply_gt?: InputMaybe; - rebasingSupply_gte?: InputMaybe; - rebasingSupply_in?: InputMaybe>; - rebasingSupply_isNull?: InputMaybe; - rebasingSupply_lt?: InputMaybe; - rebasingSupply_lte?: InputMaybe; - rebasingSupply_not_eq?: InputMaybe; - rebasingSupply_not_in?: InputMaybe>; - timestamp_eq?: InputMaybe; - timestamp_gt?: InputMaybe; - timestamp_gte?: InputMaybe; - timestamp_in?: InputMaybe>; - timestamp_isNull?: InputMaybe; - timestamp_lt?: InputMaybe; - timestamp_lte?: InputMaybe; - timestamp_not_eq?: InputMaybe; - timestamp_not_in?: InputMaybe>; - totalSupply_eq?: InputMaybe; - totalSupply_gt?: InputMaybe; - totalSupply_gte?: InputMaybe; - totalSupply_in?: InputMaybe>; - totalSupply_isNull?: InputMaybe; - totalSupply_lt?: InputMaybe; - totalSupply_lte?: InputMaybe; - totalSupply_not_eq?: InputMaybe; - totalSupply_not_in?: InputMaybe>; -}; - -export type OetHsConnection = { - __typename?: 'OETHsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - export type OgnStatsResult = { __typename?: 'OGNStatsResult'; circulatingSupply: Scalars['Float']['output']; @@ -7579,27 +6221,62 @@ export type OgVsConnection = { totalCount: Scalars['Int']['output']; }; -export type OTokenVault = { - __typename?: 'OTokenVault'; - address: Scalars['String']['output']; +export type OToken = { + __typename?: 'OToken'; blockNumber: Scalars['Int']['output']; chainId: Scalars['Int']['output']; id: Scalars['String']['output']; + nonRebasingSupply: Scalars['BigInt']['output']; + otoken: Scalars['String']['output']; + rebasingSupply: Scalars['BigInt']['output']; timestamp: Scalars['DateTime']['output']; - totalValue: Scalars['BigInt']['output']; + totalSupply: Scalars['BigInt']['output']; }; -export type OTokenVaultEdge = { - __typename?: 'OTokenVaultEdge'; +export type OTokenApy = { + __typename?: 'OTokenAPY'; + apr: Scalars['Float']['output']; + apy: Scalars['Float']['output']; + apy7DayAvg: Scalars['Float']['output']; + apy14DayAvg: Scalars['Float']['output']; + apy30DayAvg: Scalars['Float']['output']; + blockNumber: Scalars['Int']['output']; + chainId: Scalars['Int']['output']; + date: Scalars['String']['output']; + id: Scalars['String']['output']; + otoken: Scalars['String']['output']; + rebasingCreditsPerToken: Scalars['BigInt']['output']; + timestamp: Scalars['DateTime']['output']; + txHash: Scalars['String']['output']; +}; + +export type OTokenApyEdge = { + __typename?: 'OTokenAPYEdge'; cursor: Scalars['String']['output']; - node: OTokenVault; + node: OTokenApy; }; -export enum OTokenVaultOrderByInput { - AddressAsc = 'address_ASC', - AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', - AddressDesc = 'address_DESC', - AddressDescNullsLast = 'address_DESC_NULLS_LAST', +export enum OTokenApyOrderByInput { + AprAsc = 'apr_ASC', + AprAscNullsFirst = 'apr_ASC_NULLS_FIRST', + AprDesc = 'apr_DESC', + AprDescNullsLast = 'apr_DESC_NULLS_LAST', + Apy7DayAvgAsc = 'apy7DayAvg_ASC', + Apy7DayAvgAscNullsFirst = 'apy7DayAvg_ASC_NULLS_FIRST', + Apy7DayAvgDesc = 'apy7DayAvg_DESC', + Apy7DayAvgDescNullsLast = 'apy7DayAvg_DESC_NULLS_LAST', + Apy14DayAvgAsc = 'apy14DayAvg_ASC', + Apy14DayAvgAscNullsFirst = 'apy14DayAvg_ASC_NULLS_FIRST', + Apy14DayAvgDesc = 'apy14DayAvg_DESC', + Apy14DayAvgDescNullsLast = 'apy14DayAvg_DESC_NULLS_LAST', + Apy30DayAvgAsc = 'apy30DayAvg_ASC', + Apy30DayAvgAscNullsFirst = 'apy30DayAvg_ASC_NULLS_FIRST', + Apy30DayAvgDesc = 'apy30DayAvg_DESC', + Apy30DayAvgDescNullsLast = 'apy30DayAvg_DESC_NULLS_LAST', + ApyAsc = 'apy_ASC', + ApyAscNullsFirst = 'apy_ASC_NULLS_FIRST', + ApyDesc = 'apy_DESC', + ApyDescNullsLast = 'apy_DESC_NULLS_LAST', BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', @@ -7608,40 +6285,80 @@ export enum OTokenVaultOrderByInput { ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', ChainIdDesc = 'chainId_DESC', ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', + DateAsc = 'date_ASC', + DateAscNullsFirst = 'date_ASC_NULLS_FIRST', + DateDesc = 'date_DESC', + DateDescNullsLast = 'date_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', + RebasingCreditsPerTokenAsc = 'rebasingCreditsPerToken_ASC', + RebasingCreditsPerTokenAscNullsFirst = 'rebasingCreditsPerToken_ASC_NULLS_FIRST', + RebasingCreditsPerTokenDesc = 'rebasingCreditsPerToken_DESC', + RebasingCreditsPerTokenDescNullsLast = 'rebasingCreditsPerToken_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TotalValueAsc = 'totalValue_ASC', - TotalValueAscNullsFirst = 'totalValue_ASC_NULLS_FIRST', - TotalValueDesc = 'totalValue_DESC', - TotalValueDescNullsLast = 'totalValue_DESC_NULLS_LAST' + TxHashAsc = 'txHash_ASC', + TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', + TxHashDesc = 'txHash_DESC', + TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST' } -export type OTokenVaultWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - address_contains?: InputMaybe; - address_containsInsensitive?: InputMaybe; - address_endsWith?: InputMaybe; - address_eq?: InputMaybe; - address_gt?: InputMaybe; - address_gte?: InputMaybe; - address_in?: InputMaybe>; - address_isNull?: InputMaybe; - address_lt?: InputMaybe; - address_lte?: InputMaybe; - address_not_contains?: InputMaybe; - address_not_containsInsensitive?: InputMaybe; - address_not_endsWith?: InputMaybe; - address_not_eq?: InputMaybe; - address_not_in?: InputMaybe>; - address_not_startsWith?: InputMaybe; - address_startsWith?: InputMaybe; +export type OTokenApyWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + apr_eq?: InputMaybe; + apr_gt?: InputMaybe; + apr_gte?: InputMaybe; + apr_in?: InputMaybe>; + apr_isNull?: InputMaybe; + apr_lt?: InputMaybe; + apr_lte?: InputMaybe; + apr_not_eq?: InputMaybe; + apr_not_in?: InputMaybe>; + apy7DayAvg_eq?: InputMaybe; + apy7DayAvg_gt?: InputMaybe; + apy7DayAvg_gte?: InputMaybe; + apy7DayAvg_in?: InputMaybe>; + apy7DayAvg_isNull?: InputMaybe; + apy7DayAvg_lt?: InputMaybe; + apy7DayAvg_lte?: InputMaybe; + apy7DayAvg_not_eq?: InputMaybe; + apy7DayAvg_not_in?: InputMaybe>; + apy14DayAvg_eq?: InputMaybe; + apy14DayAvg_gt?: InputMaybe; + apy14DayAvg_gte?: InputMaybe; + apy14DayAvg_in?: InputMaybe>; + apy14DayAvg_isNull?: InputMaybe; + apy14DayAvg_lt?: InputMaybe; + apy14DayAvg_lte?: InputMaybe; + apy14DayAvg_not_eq?: InputMaybe; + apy14DayAvg_not_in?: InputMaybe>; + apy30DayAvg_eq?: InputMaybe; + apy30DayAvg_gt?: InputMaybe; + apy30DayAvg_gte?: InputMaybe; + apy30DayAvg_in?: InputMaybe>; + apy30DayAvg_isNull?: InputMaybe; + apy30DayAvg_lt?: InputMaybe; + apy30DayAvg_lte?: InputMaybe; + apy30DayAvg_not_eq?: InputMaybe; + apy30DayAvg_not_in?: InputMaybe>; + apy_eq?: InputMaybe; + apy_gt?: InputMaybe; + apy_gte?: InputMaybe; + apy_in?: InputMaybe>; + apy_isNull?: InputMaybe; + apy_lt?: InputMaybe; + apy_lte?: InputMaybe; + apy_not_eq?: InputMaybe; + apy_not_in?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -7660,6 +6377,23 @@ export type OTokenVaultWhereInput = { chainId_lte?: InputMaybe; chainId_not_eq?: InputMaybe; chainId_not_in?: InputMaybe>; + date_contains?: InputMaybe; + date_containsInsensitive?: InputMaybe; + date_endsWith?: InputMaybe; + date_eq?: InputMaybe; + date_gt?: InputMaybe; + date_gte?: InputMaybe; + date_in?: InputMaybe>; + date_isNull?: InputMaybe; + date_lt?: InputMaybe; + date_lte?: InputMaybe; + date_not_contains?: InputMaybe; + date_not_containsInsensitive?: InputMaybe; + date_not_endsWith?: InputMaybe; + date_not_eq?: InputMaybe; + date_not_in?: InputMaybe>; + date_not_startsWith?: InputMaybe; + date_startsWith?: InputMaybe; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -7677,6 +6411,32 @@ export type OTokenVaultWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; + rebasingCreditsPerToken_eq?: InputMaybe; + rebasingCreditsPerToken_gt?: InputMaybe; + rebasingCreditsPerToken_gte?: InputMaybe; + rebasingCreditsPerToken_in?: InputMaybe>; + rebasingCreditsPerToken_isNull?: InputMaybe; + rebasingCreditsPerToken_lt?: InputMaybe; + rebasingCreditsPerToken_lte?: InputMaybe; + rebasingCreditsPerToken_not_eq?: InputMaybe; + rebasingCreditsPerToken_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -7686,147 +6446,173 @@ export type OTokenVaultWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - totalValue_eq?: InputMaybe; - totalValue_gt?: InputMaybe; - totalValue_gte?: InputMaybe; - totalValue_in?: InputMaybe>; - totalValue_isNull?: InputMaybe; - totalValue_lt?: InputMaybe; - totalValue_lte?: InputMaybe; - totalValue_not_eq?: InputMaybe; - totalValue_not_in?: InputMaybe>; + txHash_contains?: InputMaybe; + txHash_containsInsensitive?: InputMaybe; + txHash_endsWith?: InputMaybe; + txHash_eq?: InputMaybe; + txHash_gt?: InputMaybe; + txHash_gte?: InputMaybe; + txHash_in?: InputMaybe>; + txHash_isNull?: InputMaybe; + txHash_lt?: InputMaybe; + txHash_lte?: InputMaybe; + txHash_not_contains?: InputMaybe; + txHash_not_containsInsensitive?: InputMaybe; + txHash_not_endsWith?: InputMaybe; + txHash_not_eq?: InputMaybe; + txHash_not_in?: InputMaybe>; + txHash_not_startsWith?: InputMaybe; + txHash_startsWith?: InputMaybe; }; -export type OTokenVaultsConnection = { - __typename?: 'OTokenVaultsConnection'; - edges: Array; +export type OTokenAPiesConnection = { + __typename?: 'OTokenAPiesConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -/** The OUSD entity tracks the change in total supply of OUSD over time. */ -export type Ousd = { - __typename?: 'OUSD'; - blockNumber: Scalars['Int']['output']; - id: Scalars['String']['output']; - nonRebasingSupply: Scalars['BigInt']['output']; - rebasingSupply: Scalars['BigInt']['output']; - timestamp: Scalars['DateTime']['output']; - totalSupply: Scalars['BigInt']['output']; +export type OTokenActivitiesConnection = { + __typename?: 'OTokenActivitiesConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; }; -/** The APY entity tracks historical APY values by day. */ -export type Ousdapy = { - __typename?: 'OUSDAPY'; - apr: Scalars['Float']['output']; - apy: Scalars['Float']['output']; - apy7DayAvg: Scalars['Float']['output']; - apy14DayAvg: Scalars['Float']['output']; - apy30DayAvg: Scalars['Float']['output']; +export type OTokenActivity = { + __typename?: 'OTokenActivity'; + action?: Maybe; + address?: Maybe; + amount?: Maybe; blockNumber: Scalars['Int']['output']; + callDataLast4Bytes: Scalars['String']['output']; + chainId: Scalars['Int']['output']; + exchange?: Maybe; + fromSymbol?: Maybe; id: Scalars['String']['output']; - rebasingCreditsPerToken: Scalars['BigInt']['output']; + interface?: Maybe; + otoken: Scalars['String']['output']; + sighash?: Maybe; timestamp: Scalars['DateTime']['output']; + toSymbol?: Maybe; txHash: Scalars['String']['output']; }; -export type OusdapyEdge = { - __typename?: 'OUSDAPYEdge'; +export type OTokenActivityEdge = { + __typename?: 'OTokenActivityEdge'; cursor: Scalars['String']['output']; - node: Ousdapy; + node: OTokenActivity; }; -export enum OusdapyOrderByInput { - AprAsc = 'apr_ASC', - AprAscNullsFirst = 'apr_ASC_NULLS_FIRST', - AprDesc = 'apr_DESC', - AprDescNullsLast = 'apr_DESC_NULLS_LAST', - Apy7DayAvgAsc = 'apy7DayAvg_ASC', - Apy7DayAvgAscNullsFirst = 'apy7DayAvg_ASC_NULLS_FIRST', - Apy7DayAvgDesc = 'apy7DayAvg_DESC', - Apy7DayAvgDescNullsLast = 'apy7DayAvg_DESC_NULLS_LAST', - Apy14DayAvgAsc = 'apy14DayAvg_ASC', - Apy14DayAvgAscNullsFirst = 'apy14DayAvg_ASC_NULLS_FIRST', - Apy14DayAvgDesc = 'apy14DayAvg_DESC', - Apy14DayAvgDescNullsLast = 'apy14DayAvg_DESC_NULLS_LAST', - Apy30DayAvgAsc = 'apy30DayAvg_ASC', - Apy30DayAvgAscNullsFirst = 'apy30DayAvg_ASC_NULLS_FIRST', - Apy30DayAvgDesc = 'apy30DayAvg_DESC', - Apy30DayAvgDescNullsLast = 'apy30DayAvg_DESC_NULLS_LAST', - ApyAsc = 'apy_ASC', - ApyAscNullsFirst = 'apy_ASC_NULLS_FIRST', - ApyDesc = 'apy_DESC', - ApyDescNullsLast = 'apy_DESC_NULLS_LAST', +export enum OTokenActivityOrderByInput { + ActionAsc = 'action_ASC', + ActionAscNullsFirst = 'action_ASC_NULLS_FIRST', + ActionDesc = 'action_DESC', + ActionDescNullsLast = 'action_DESC_NULLS_LAST', + AddressAsc = 'address_ASC', + AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', + AddressDesc = 'address_DESC', + AddressDescNullsLast = 'address_DESC_NULLS_LAST', + AmountAsc = 'amount_ASC', + AmountAscNullsFirst = 'amount_ASC_NULLS_FIRST', + AmountDesc = 'amount_DESC', + AmountDescNullsLast = 'amount_DESC_NULLS_LAST', BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + CallDataLast4BytesAsc = 'callDataLast4Bytes_ASC', + CallDataLast4BytesAscNullsFirst = 'callDataLast4Bytes_ASC_NULLS_FIRST', + CallDataLast4BytesDesc = 'callDataLast4Bytes_DESC', + CallDataLast4BytesDescNullsLast = 'callDataLast4Bytes_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', + ExchangeAsc = 'exchange_ASC', + ExchangeAscNullsFirst = 'exchange_ASC_NULLS_FIRST', + ExchangeDesc = 'exchange_DESC', + ExchangeDescNullsLast = 'exchange_DESC_NULLS_LAST', + FromSymbolAsc = 'fromSymbol_ASC', + FromSymbolAscNullsFirst = 'fromSymbol_ASC_NULLS_FIRST', + FromSymbolDesc = 'fromSymbol_DESC', + FromSymbolDescNullsLast = 'fromSymbol_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - RebasingCreditsPerTokenAsc = 'rebasingCreditsPerToken_ASC', - RebasingCreditsPerTokenAscNullsFirst = 'rebasingCreditsPerToken_ASC_NULLS_FIRST', - RebasingCreditsPerTokenDesc = 'rebasingCreditsPerToken_DESC', - RebasingCreditsPerTokenDescNullsLast = 'rebasingCreditsPerToken_DESC_NULLS_LAST', + InterfaceAsc = 'interface_ASC', + InterfaceAscNullsFirst = 'interface_ASC_NULLS_FIRST', + InterfaceDesc = 'interface_DESC', + InterfaceDescNullsLast = 'interface_DESC_NULLS_LAST', + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', + SighashAsc = 'sighash_ASC', + SighashAscNullsFirst = 'sighash_ASC_NULLS_FIRST', + SighashDesc = 'sighash_DESC', + SighashDescNullsLast = 'sighash_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', + ToSymbolAsc = 'toSymbol_ASC', + ToSymbolAscNullsFirst = 'toSymbol_ASC_NULLS_FIRST', + ToSymbolDesc = 'toSymbol_DESC', + ToSymbolDescNullsLast = 'toSymbol_DESC_NULLS_LAST', TxHashAsc = 'txHash_ASC', TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', TxHashDesc = 'txHash_DESC', TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST' } -export type OusdapyWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - apr_eq?: InputMaybe; - apr_gt?: InputMaybe; - apr_gte?: InputMaybe; - apr_in?: InputMaybe>; - apr_isNull?: InputMaybe; - apr_lt?: InputMaybe; - apr_lte?: InputMaybe; - apr_not_eq?: InputMaybe; - apr_not_in?: InputMaybe>; - apy7DayAvg_eq?: InputMaybe; - apy7DayAvg_gt?: InputMaybe; - apy7DayAvg_gte?: InputMaybe; - apy7DayAvg_in?: InputMaybe>; - apy7DayAvg_isNull?: InputMaybe; - apy7DayAvg_lt?: InputMaybe; - apy7DayAvg_lte?: InputMaybe; - apy7DayAvg_not_eq?: InputMaybe; - apy7DayAvg_not_in?: InputMaybe>; - apy14DayAvg_eq?: InputMaybe; - apy14DayAvg_gt?: InputMaybe; - apy14DayAvg_gte?: InputMaybe; - apy14DayAvg_in?: InputMaybe>; - apy14DayAvg_isNull?: InputMaybe; - apy14DayAvg_lt?: InputMaybe; - apy14DayAvg_lte?: InputMaybe; - apy14DayAvg_not_eq?: InputMaybe; - apy14DayAvg_not_in?: InputMaybe>; - apy30DayAvg_eq?: InputMaybe; - apy30DayAvg_gt?: InputMaybe; - apy30DayAvg_gte?: InputMaybe; - apy30DayAvg_in?: InputMaybe>; - apy30DayAvg_isNull?: InputMaybe; - apy30DayAvg_lt?: InputMaybe; - apy30DayAvg_lte?: InputMaybe; - apy30DayAvg_not_eq?: InputMaybe; - apy30DayAvg_not_in?: InputMaybe>; - apy_eq?: InputMaybe; - apy_gt?: InputMaybe; - apy_gte?: InputMaybe; - apy_in?: InputMaybe>; - apy_isNull?: InputMaybe; - apy_lt?: InputMaybe; - apy_lte?: InputMaybe; - apy_not_eq?: InputMaybe; - apy_not_in?: InputMaybe>; +export type OTokenActivityWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + action_contains?: InputMaybe; + action_containsInsensitive?: InputMaybe; + action_endsWith?: InputMaybe; + action_eq?: InputMaybe; + action_gt?: InputMaybe; + action_gte?: InputMaybe; + action_in?: InputMaybe>; + action_isNull?: InputMaybe; + action_lt?: InputMaybe; + action_lte?: InputMaybe; + action_not_contains?: InputMaybe; + action_not_containsInsensitive?: InputMaybe; + action_not_endsWith?: InputMaybe; + action_not_eq?: InputMaybe; + action_not_in?: InputMaybe>; + action_not_startsWith?: InputMaybe; + action_startsWith?: InputMaybe; + address_contains?: InputMaybe; + address_containsInsensitive?: InputMaybe; + address_endsWith?: InputMaybe; + address_eq?: InputMaybe; + address_gt?: InputMaybe; + address_gte?: InputMaybe; + address_in?: InputMaybe>; + address_isNull?: InputMaybe; + address_lt?: InputMaybe; + address_lte?: InputMaybe; + address_not_contains?: InputMaybe; + address_not_containsInsensitive?: InputMaybe; + address_not_endsWith?: InputMaybe; + address_not_eq?: InputMaybe; + address_not_in?: InputMaybe>; + address_not_startsWith?: InputMaybe; + address_startsWith?: InputMaybe; + amount_eq?: InputMaybe; + amount_gt?: InputMaybe; + amount_gte?: InputMaybe; + amount_in?: InputMaybe>; + amount_isNull?: InputMaybe; + amount_lt?: InputMaybe; + amount_lte?: InputMaybe; + amount_not_eq?: InputMaybe; + amount_not_in?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -7836,6 +6622,66 @@ export type OusdapyWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; + callDataLast4Bytes_contains?: InputMaybe; + callDataLast4Bytes_containsInsensitive?: InputMaybe; + callDataLast4Bytes_endsWith?: InputMaybe; + callDataLast4Bytes_eq?: InputMaybe; + callDataLast4Bytes_gt?: InputMaybe; + callDataLast4Bytes_gte?: InputMaybe; + callDataLast4Bytes_in?: InputMaybe>; + callDataLast4Bytes_isNull?: InputMaybe; + callDataLast4Bytes_lt?: InputMaybe; + callDataLast4Bytes_lte?: InputMaybe; + callDataLast4Bytes_not_contains?: InputMaybe; + callDataLast4Bytes_not_containsInsensitive?: InputMaybe; + callDataLast4Bytes_not_endsWith?: InputMaybe; + callDataLast4Bytes_not_eq?: InputMaybe; + callDataLast4Bytes_not_in?: InputMaybe>; + callDataLast4Bytes_not_startsWith?: InputMaybe; + callDataLast4Bytes_startsWith?: InputMaybe; + chainId_eq?: InputMaybe; + chainId_gt?: InputMaybe; + chainId_gte?: InputMaybe; + chainId_in?: InputMaybe>; + chainId_isNull?: InputMaybe; + chainId_lt?: InputMaybe; + chainId_lte?: InputMaybe; + chainId_not_eq?: InputMaybe; + chainId_not_in?: InputMaybe>; + exchange_contains?: InputMaybe; + exchange_containsInsensitive?: InputMaybe; + exchange_endsWith?: InputMaybe; + exchange_eq?: InputMaybe; + exchange_gt?: InputMaybe; + exchange_gte?: InputMaybe; + exchange_in?: InputMaybe>; + exchange_isNull?: InputMaybe; + exchange_lt?: InputMaybe; + exchange_lte?: InputMaybe; + exchange_not_contains?: InputMaybe; + exchange_not_containsInsensitive?: InputMaybe; + exchange_not_endsWith?: InputMaybe; + exchange_not_eq?: InputMaybe; + exchange_not_in?: InputMaybe>; + exchange_not_startsWith?: InputMaybe; + exchange_startsWith?: InputMaybe; + fromSymbol_contains?: InputMaybe; + fromSymbol_containsInsensitive?: InputMaybe; + fromSymbol_endsWith?: InputMaybe; + fromSymbol_eq?: InputMaybe; + fromSymbol_gt?: InputMaybe; + fromSymbol_gte?: InputMaybe; + fromSymbol_in?: InputMaybe>; + fromSymbol_isNull?: InputMaybe; + fromSymbol_lt?: InputMaybe; + fromSymbol_lte?: InputMaybe; + fromSymbol_not_contains?: InputMaybe; + fromSymbol_not_containsInsensitive?: InputMaybe; + fromSymbol_not_endsWith?: InputMaybe; + fromSymbol_not_eq?: InputMaybe; + fromSymbol_not_in?: InputMaybe>; + fromSymbol_not_startsWith?: InputMaybe; + fromSymbol_startsWith?: InputMaybe; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -7853,15 +6699,57 @@ export type OusdapyWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - rebasingCreditsPerToken_eq?: InputMaybe; - rebasingCreditsPerToken_gt?: InputMaybe; - rebasingCreditsPerToken_gte?: InputMaybe; - rebasingCreditsPerToken_in?: InputMaybe>; - rebasingCreditsPerToken_isNull?: InputMaybe; - rebasingCreditsPerToken_lt?: InputMaybe; - rebasingCreditsPerToken_lte?: InputMaybe; - rebasingCreditsPerToken_not_eq?: InputMaybe; - rebasingCreditsPerToken_not_in?: InputMaybe>; + interface_contains?: InputMaybe; + interface_containsInsensitive?: InputMaybe; + interface_endsWith?: InputMaybe; + interface_eq?: InputMaybe; + interface_gt?: InputMaybe; + interface_gte?: InputMaybe; + interface_in?: InputMaybe>; + interface_isNull?: InputMaybe; + interface_lt?: InputMaybe; + interface_lte?: InputMaybe; + interface_not_contains?: InputMaybe; + interface_not_containsInsensitive?: InputMaybe; + interface_not_endsWith?: InputMaybe; + interface_not_eq?: InputMaybe; + interface_not_in?: InputMaybe>; + interface_not_startsWith?: InputMaybe; + interface_startsWith?: InputMaybe; + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; + sighash_contains?: InputMaybe; + sighash_containsInsensitive?: InputMaybe; + sighash_endsWith?: InputMaybe; + sighash_eq?: InputMaybe; + sighash_gt?: InputMaybe; + sighash_gte?: InputMaybe; + sighash_in?: InputMaybe>; + sighash_isNull?: InputMaybe; + sighash_lt?: InputMaybe; + sighash_lte?: InputMaybe; + sighash_not_contains?: InputMaybe; + sighash_not_containsInsensitive?: InputMaybe; + sighash_not_endsWith?: InputMaybe; + sighash_not_eq?: InputMaybe; + sighash_not_in?: InputMaybe>; + sighash_not_startsWith?: InputMaybe; + sighash_startsWith?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -7871,6 +6759,23 @@ export type OusdapyWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; + toSymbol_contains?: InputMaybe; + toSymbol_containsInsensitive?: InputMaybe; + toSymbol_endsWith?: InputMaybe; + toSymbol_eq?: InputMaybe; + toSymbol_gt?: InputMaybe; + toSymbol_gte?: InputMaybe; + toSymbol_in?: InputMaybe>; + toSymbol_isNull?: InputMaybe; + toSymbol_lt?: InputMaybe; + toSymbol_lte?: InputMaybe; + toSymbol_not_contains?: InputMaybe; + toSymbol_not_containsInsensitive?: InputMaybe; + toSymbol_not_endsWith?: InputMaybe; + toSymbol_not_eq?: InputMaybe; + toSymbol_not_in?: InputMaybe>; + toSymbol_not_startsWith?: InputMaybe; + toSymbol_startsWith?: InputMaybe; txHash_contains?: InputMaybe; txHash_containsInsensitive?: InputMaybe; txHash_endsWith?: InputMaybe; @@ -7890,84 +6795,264 @@ export type OusdapyWhereInput = { txHash_startsWith?: InputMaybe; }; -export type OusdaPiesConnection = { - __typename?: 'OUSDAPiesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; +export type OTokenAddress = { + __typename?: 'OTokenAddress'; + address: Scalars['String']['output']; + balance: Scalars['BigInt']['output']; + chainId: Scalars['Int']['output']; + credits: Scalars['BigInt']['output']; + earned: Scalars['BigInt']['output']; + history: Array; + id: Scalars['String']['output']; + isContract: Scalars['Boolean']['output']; + lastUpdated: Scalars['DateTime']['output']; + otoken: Scalars['String']['output']; + rebasingOption: RebasingOption; }; -export type OusdAaveStrategiesConnection = { - __typename?: 'OUSDAaveStrategiesConnection'; - edges: Array; + +export type OTokenAddressHistoryArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + +export type OTokenAddressEdge = { + __typename?: 'OTokenAddressEdge'; + cursor: Scalars['String']['output']; + node: OTokenAddress; +}; + +export enum OTokenAddressOrderByInput { + AddressAsc = 'address_ASC', + AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', + AddressDesc = 'address_DESC', + AddressDescNullsLast = 'address_DESC_NULLS_LAST', + BalanceAsc = 'balance_ASC', + BalanceAscNullsFirst = 'balance_ASC_NULLS_FIRST', + BalanceDesc = 'balance_DESC', + BalanceDescNullsLast = 'balance_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', + CreditsAsc = 'credits_ASC', + CreditsAscNullsFirst = 'credits_ASC_NULLS_FIRST', + CreditsDesc = 'credits_DESC', + CreditsDescNullsLast = 'credits_DESC_NULLS_LAST', + EarnedAsc = 'earned_ASC', + EarnedAscNullsFirst = 'earned_ASC_NULLS_FIRST', + EarnedDesc = 'earned_DESC', + EarnedDescNullsLast = 'earned_DESC_NULLS_LAST', + IdAsc = 'id_ASC', + IdAscNullsFirst = 'id_ASC_NULLS_FIRST', + IdDesc = 'id_DESC', + IdDescNullsLast = 'id_DESC_NULLS_LAST', + IsContractAsc = 'isContract_ASC', + IsContractAscNullsFirst = 'isContract_ASC_NULLS_FIRST', + IsContractDesc = 'isContract_DESC', + IsContractDescNullsLast = 'isContract_DESC_NULLS_LAST', + LastUpdatedAsc = 'lastUpdated_ASC', + LastUpdatedAscNullsFirst = 'lastUpdated_ASC_NULLS_FIRST', + LastUpdatedDesc = 'lastUpdated_DESC', + LastUpdatedDescNullsLast = 'lastUpdated_DESC_NULLS_LAST', + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', + RebasingOptionAsc = 'rebasingOption_ASC', + RebasingOptionAscNullsFirst = 'rebasingOption_ASC_NULLS_FIRST', + RebasingOptionDesc = 'rebasingOption_DESC', + RebasingOptionDescNullsLast = 'rebasingOption_DESC_NULLS_LAST' +} + +export type OTokenAddressWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + address_contains?: InputMaybe; + address_containsInsensitive?: InputMaybe; + address_endsWith?: InputMaybe; + address_eq?: InputMaybe; + address_gt?: InputMaybe; + address_gte?: InputMaybe; + address_in?: InputMaybe>; + address_isNull?: InputMaybe; + address_lt?: InputMaybe; + address_lte?: InputMaybe; + address_not_contains?: InputMaybe; + address_not_containsInsensitive?: InputMaybe; + address_not_endsWith?: InputMaybe; + address_not_eq?: InputMaybe; + address_not_in?: InputMaybe>; + address_not_startsWith?: InputMaybe; + address_startsWith?: InputMaybe; + balance_eq?: InputMaybe; + balance_gt?: InputMaybe; + balance_gte?: InputMaybe; + balance_in?: InputMaybe>; + balance_isNull?: InputMaybe; + balance_lt?: InputMaybe; + balance_lte?: InputMaybe; + balance_not_eq?: InputMaybe; + balance_not_in?: InputMaybe>; + chainId_eq?: InputMaybe; + chainId_gt?: InputMaybe; + chainId_gte?: InputMaybe; + chainId_in?: InputMaybe>; + chainId_isNull?: InputMaybe; + chainId_lt?: InputMaybe; + chainId_lte?: InputMaybe; + chainId_not_eq?: InputMaybe; + chainId_not_in?: InputMaybe>; + credits_eq?: InputMaybe; + credits_gt?: InputMaybe; + credits_gte?: InputMaybe; + credits_in?: InputMaybe>; + credits_isNull?: InputMaybe; + credits_lt?: InputMaybe; + credits_lte?: InputMaybe; + credits_not_eq?: InputMaybe; + credits_not_in?: InputMaybe>; + earned_eq?: InputMaybe; + earned_gt?: InputMaybe; + earned_gte?: InputMaybe; + earned_in?: InputMaybe>; + earned_isNull?: InputMaybe; + earned_lt?: InputMaybe; + earned_lte?: InputMaybe; + earned_not_eq?: InputMaybe; + earned_not_in?: InputMaybe>; + history_every?: InputMaybe; + history_none?: InputMaybe; + history_some?: InputMaybe; + id_contains?: InputMaybe; + id_containsInsensitive?: InputMaybe; + id_endsWith?: InputMaybe; + id_eq?: InputMaybe; + id_gt?: InputMaybe; + id_gte?: InputMaybe; + id_in?: InputMaybe>; + id_isNull?: InputMaybe; + id_lt?: InputMaybe; + id_lte?: InputMaybe; + id_not_contains?: InputMaybe; + id_not_containsInsensitive?: InputMaybe; + id_not_endsWith?: InputMaybe; + id_not_eq?: InputMaybe; + id_not_in?: InputMaybe>; + id_not_startsWith?: InputMaybe; + id_startsWith?: InputMaybe; + isContract_eq?: InputMaybe; + isContract_isNull?: InputMaybe; + isContract_not_eq?: InputMaybe; + lastUpdated_eq?: InputMaybe; + lastUpdated_gt?: InputMaybe; + lastUpdated_gte?: InputMaybe; + lastUpdated_in?: InputMaybe>; + lastUpdated_isNull?: InputMaybe; + lastUpdated_lt?: InputMaybe; + lastUpdated_lte?: InputMaybe; + lastUpdated_not_eq?: InputMaybe; + lastUpdated_not_in?: InputMaybe>; + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; + rebasingOption_eq?: InputMaybe; + rebasingOption_in?: InputMaybe>; + rebasingOption_isNull?: InputMaybe; + rebasingOption_not_eq?: InputMaybe; + rebasingOption_not_in?: InputMaybe>; +}; + +export type OTokenAddressesConnection = { + __typename?: 'OTokenAddressesConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export type OusdAaveStrategy = { - __typename?: 'OUSDAaveStrategy'; - blockNumber: Scalars['Int']['output']; - dai: Scalars['BigInt']['output']; +export type OTokenAsset = { + __typename?: 'OTokenAsset'; + address: Scalars['String']['output']; + chainId: Scalars['Int']['output']; id: Scalars['String']['output']; - timestamp: Scalars['DateTime']['output']; - usdc: Scalars['BigInt']['output']; - usdt: Scalars['BigInt']['output']; + otoken: Scalars['String']['output']; + symbol: Scalars['String']['output']; }; -export type OusdAaveStrategyEdge = { - __typename?: 'OUSDAaveStrategyEdge'; +export type OTokenAssetEdge = { + __typename?: 'OTokenAssetEdge'; cursor: Scalars['String']['output']; - node: OusdAaveStrategy; + node: OTokenAsset; }; -export enum OusdAaveStrategyOrderByInput { - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - DaiAsc = 'dai_ASC', - DaiAscNullsFirst = 'dai_ASC_NULLS_FIRST', - DaiDesc = 'dai_DESC', - DaiDescNullsLast = 'dai_DESC_NULLS_LAST', +export enum OTokenAssetOrderByInput { + AddressAsc = 'address_ASC', + AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', + AddressDesc = 'address_DESC', + AddressDescNullsLast = 'address_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - UsdcAsc = 'usdc_ASC', - UsdcAscNullsFirst = 'usdc_ASC_NULLS_FIRST', - UsdcDesc = 'usdc_DESC', - UsdcDescNullsLast = 'usdc_DESC_NULLS_LAST', - UsdtAsc = 'usdt_ASC', - UsdtAscNullsFirst = 'usdt_ASC_NULLS_FIRST', - UsdtDesc = 'usdt_DESC', - UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', + SymbolAsc = 'symbol_ASC', + SymbolAscNullsFirst = 'symbol_ASC_NULLS_FIRST', + SymbolDesc = 'symbol_DESC', + SymbolDescNullsLast = 'symbol_DESC_NULLS_LAST' } -export type OusdAaveStrategyWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - dai_eq?: InputMaybe; - dai_gt?: InputMaybe; - dai_gte?: InputMaybe; - dai_in?: InputMaybe>; - dai_isNull?: InputMaybe; - dai_lt?: InputMaybe; - dai_lte?: InputMaybe; - dai_not_eq?: InputMaybe; - dai_not_in?: InputMaybe>; +export type OTokenAssetWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + address_contains?: InputMaybe; + address_containsInsensitive?: InputMaybe; + address_endsWith?: InputMaybe; + address_eq?: InputMaybe; + address_gt?: InputMaybe; + address_gte?: InputMaybe; + address_in?: InputMaybe>; + address_isNull?: InputMaybe; + address_lt?: InputMaybe; + address_lte?: InputMaybe; + address_not_contains?: InputMaybe; + address_not_containsInsensitive?: InputMaybe; + address_not_endsWith?: InputMaybe; + address_not_eq?: InputMaybe; + address_not_in?: InputMaybe>; + address_not_startsWith?: InputMaybe; + address_startsWith?: InputMaybe; + chainId_eq?: InputMaybe; + chainId_gt?: InputMaybe; + chainId_gte?: InputMaybe; + chainId_in?: InputMaybe>; + chainId_isNull?: InputMaybe; + chainId_lt?: InputMaybe; + chainId_lte?: InputMaybe; + chainId_not_eq?: InputMaybe; + chainId_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -7985,226 +7070,193 @@ export type OusdAaveStrategyWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - timestamp_eq?: InputMaybe; - timestamp_gt?: InputMaybe; - timestamp_gte?: InputMaybe; - timestamp_in?: InputMaybe>; - timestamp_isNull?: InputMaybe; - timestamp_lt?: InputMaybe; - timestamp_lte?: InputMaybe; - timestamp_not_eq?: InputMaybe; - timestamp_not_in?: InputMaybe>; - usdc_eq?: InputMaybe; - usdc_gt?: InputMaybe; - usdc_gte?: InputMaybe; - usdc_in?: InputMaybe>; - usdc_isNull?: InputMaybe; - usdc_lt?: InputMaybe; - usdc_lte?: InputMaybe; - usdc_not_eq?: InputMaybe; - usdc_not_in?: InputMaybe>; - usdt_eq?: InputMaybe; - usdt_gt?: InputMaybe; - usdt_gte?: InputMaybe; - usdt_in?: InputMaybe>; - usdt_isNull?: InputMaybe; - usdt_lt?: InputMaybe; - usdt_lte?: InputMaybe; - usdt_not_eq?: InputMaybe; - usdt_not_in?: InputMaybe>; + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; + symbol_contains?: InputMaybe; + symbol_containsInsensitive?: InputMaybe; + symbol_endsWith?: InputMaybe; + symbol_eq?: InputMaybe; + symbol_gt?: InputMaybe; + symbol_gte?: InputMaybe; + symbol_in?: InputMaybe>; + symbol_isNull?: InputMaybe; + symbol_lt?: InputMaybe; + symbol_lte?: InputMaybe; + symbol_not_contains?: InputMaybe; + symbol_not_containsInsensitive?: InputMaybe; + symbol_not_endsWith?: InputMaybe; + symbol_not_eq?: InputMaybe; + symbol_not_in?: InputMaybe>; + symbol_not_startsWith?: InputMaybe; + symbol_startsWith?: InputMaybe; }; -export type OusdActivitiesConnection = { - __typename?: 'OUSDActivitiesConnection'; - edges: Array; +export type OTokenAssetsConnection = { + __typename?: 'OTokenAssetsConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export type OusdActivity = { - __typename?: 'OUSDActivity'; - action?: Maybe; - address?: Maybe; - amount?: Maybe; +export type OTokenEdge = { + __typename?: 'OTokenEdge'; + cursor: Scalars['String']['output']; + node: OToken; +}; + +export type OTokenHistoriesConnection = { + __typename?: 'OTokenHistoriesConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; +}; + +export type OTokenHistory = { + __typename?: 'OTokenHistory'; + address: OTokenAddress; + balance: Scalars['BigInt']['output']; blockNumber: Scalars['Int']['output']; - callDataLast4Bytes: Scalars['String']['output']; - exchange?: Maybe; - fromSymbol?: Maybe; + chainId: Scalars['Int']['output']; id: Scalars['String']['output']; - interface?: Maybe; - sighash?: Maybe; + otoken: Scalars['String']['output']; timestamp: Scalars['DateTime']['output']; - toSymbol?: Maybe; txHash: Scalars['String']['output']; + type: HistoryType; + value: Scalars['BigInt']['output']; }; -export type OusdActivityEdge = { - __typename?: 'OUSDActivityEdge'; +export type OTokenHistoryEdge = { + __typename?: 'OTokenHistoryEdge'; cursor: Scalars['String']['output']; - node: OusdActivity; + node: OTokenHistory; }; -export enum OusdActivityOrderByInput { - ActionAsc = 'action_ASC', - ActionAscNullsFirst = 'action_ASC_NULLS_FIRST', - ActionDesc = 'action_DESC', - ActionDescNullsLast = 'action_DESC_NULLS_LAST', - AddressAsc = 'address_ASC', - AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', - AddressDesc = 'address_DESC', - AddressDescNullsLast = 'address_DESC_NULLS_LAST', - AmountAsc = 'amount_ASC', - AmountAscNullsFirst = 'amount_ASC_NULLS_FIRST', - AmountDesc = 'amount_DESC', - AmountDescNullsLast = 'amount_DESC_NULLS_LAST', +export enum OTokenHistoryOrderByInput { + AddressAddressAsc = 'address_address_ASC', + AddressAddressAscNullsFirst = 'address_address_ASC_NULLS_FIRST', + AddressAddressDesc = 'address_address_DESC', + AddressAddressDescNullsLast = 'address_address_DESC_NULLS_LAST', + AddressBalanceAsc = 'address_balance_ASC', + AddressBalanceAscNullsFirst = 'address_balance_ASC_NULLS_FIRST', + AddressBalanceDesc = 'address_balance_DESC', + AddressBalanceDescNullsLast = 'address_balance_DESC_NULLS_LAST', + AddressChainIdAsc = 'address_chainId_ASC', + AddressChainIdAscNullsFirst = 'address_chainId_ASC_NULLS_FIRST', + AddressChainIdDesc = 'address_chainId_DESC', + AddressChainIdDescNullsLast = 'address_chainId_DESC_NULLS_LAST', + AddressCreditsAsc = 'address_credits_ASC', + AddressCreditsAscNullsFirst = 'address_credits_ASC_NULLS_FIRST', + AddressCreditsDesc = 'address_credits_DESC', + AddressCreditsDescNullsLast = 'address_credits_DESC_NULLS_LAST', + AddressEarnedAsc = 'address_earned_ASC', + AddressEarnedAscNullsFirst = 'address_earned_ASC_NULLS_FIRST', + AddressEarnedDesc = 'address_earned_DESC', + AddressEarnedDescNullsLast = 'address_earned_DESC_NULLS_LAST', + AddressIdAsc = 'address_id_ASC', + AddressIdAscNullsFirst = 'address_id_ASC_NULLS_FIRST', + AddressIdDesc = 'address_id_DESC', + AddressIdDescNullsLast = 'address_id_DESC_NULLS_LAST', + AddressIsContractAsc = 'address_isContract_ASC', + AddressIsContractAscNullsFirst = 'address_isContract_ASC_NULLS_FIRST', + AddressIsContractDesc = 'address_isContract_DESC', + AddressIsContractDescNullsLast = 'address_isContract_DESC_NULLS_LAST', + AddressLastUpdatedAsc = 'address_lastUpdated_ASC', + AddressLastUpdatedAscNullsFirst = 'address_lastUpdated_ASC_NULLS_FIRST', + AddressLastUpdatedDesc = 'address_lastUpdated_DESC', + AddressLastUpdatedDescNullsLast = 'address_lastUpdated_DESC_NULLS_LAST', + AddressOtokenAsc = 'address_otoken_ASC', + AddressOtokenAscNullsFirst = 'address_otoken_ASC_NULLS_FIRST', + AddressOtokenDesc = 'address_otoken_DESC', + AddressOtokenDescNullsLast = 'address_otoken_DESC_NULLS_LAST', + AddressRebasingOptionAsc = 'address_rebasingOption_ASC', + AddressRebasingOptionAscNullsFirst = 'address_rebasingOption_ASC_NULLS_FIRST', + AddressRebasingOptionDesc = 'address_rebasingOption_DESC', + AddressRebasingOptionDescNullsLast = 'address_rebasingOption_DESC_NULLS_LAST', + BalanceAsc = 'balance_ASC', + BalanceAscNullsFirst = 'balance_ASC_NULLS_FIRST', + BalanceDesc = 'balance_DESC', + BalanceDescNullsLast = 'balance_DESC_NULLS_LAST', BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - CallDataLast4BytesAsc = 'callDataLast4Bytes_ASC', - CallDataLast4BytesAscNullsFirst = 'callDataLast4Bytes_ASC_NULLS_FIRST', - CallDataLast4BytesDesc = 'callDataLast4Bytes_DESC', - CallDataLast4BytesDescNullsLast = 'callDataLast4Bytes_DESC_NULLS_LAST', - ExchangeAsc = 'exchange_ASC', - ExchangeAscNullsFirst = 'exchange_ASC_NULLS_FIRST', - ExchangeDesc = 'exchange_DESC', - ExchangeDescNullsLast = 'exchange_DESC_NULLS_LAST', - FromSymbolAsc = 'fromSymbol_ASC', - FromSymbolAscNullsFirst = 'fromSymbol_ASC_NULLS_FIRST', - FromSymbolDesc = 'fromSymbol_DESC', - FromSymbolDescNullsLast = 'fromSymbol_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - InterfaceAsc = 'interface_ASC', - InterfaceAscNullsFirst = 'interface_ASC_NULLS_FIRST', - InterfaceDesc = 'interface_DESC', - InterfaceDescNullsLast = 'interface_DESC_NULLS_LAST', - SighashAsc = 'sighash_ASC', - SighashAscNullsFirst = 'sighash_ASC_NULLS_FIRST', - SighashDesc = 'sighash_DESC', - SighashDescNullsLast = 'sighash_DESC_NULLS_LAST', + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - ToSymbolAsc = 'toSymbol_ASC', - ToSymbolAscNullsFirst = 'toSymbol_ASC_NULLS_FIRST', - ToSymbolDesc = 'toSymbol_DESC', - ToSymbolDescNullsLast = 'toSymbol_DESC_NULLS_LAST', TxHashAsc = 'txHash_ASC', TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST' -} - -export type OusdActivityWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - action_contains?: InputMaybe; - action_containsInsensitive?: InputMaybe; - action_endsWith?: InputMaybe; - action_eq?: InputMaybe; - action_gt?: InputMaybe; - action_gte?: InputMaybe; - action_in?: InputMaybe>; - action_isNull?: InputMaybe; - action_lt?: InputMaybe; - action_lte?: InputMaybe; - action_not_contains?: InputMaybe; - action_not_containsInsensitive?: InputMaybe; - action_not_endsWith?: InputMaybe; - action_not_eq?: InputMaybe; - action_not_in?: InputMaybe>; - action_not_startsWith?: InputMaybe; - action_startsWith?: InputMaybe; - address_contains?: InputMaybe; - address_containsInsensitive?: InputMaybe; - address_endsWith?: InputMaybe; - address_eq?: InputMaybe; - address_gt?: InputMaybe; - address_gte?: InputMaybe; - address_in?: InputMaybe>; - address_isNull?: InputMaybe; - address_lt?: InputMaybe; - address_lte?: InputMaybe; - address_not_contains?: InputMaybe; - address_not_containsInsensitive?: InputMaybe; - address_not_endsWith?: InputMaybe; - address_not_eq?: InputMaybe; - address_not_in?: InputMaybe>; - address_not_startsWith?: InputMaybe; - address_startsWith?: InputMaybe; - amount_eq?: InputMaybe; - amount_gt?: InputMaybe; - amount_gte?: InputMaybe; - amount_in?: InputMaybe>; - amount_isNull?: InputMaybe; - amount_lt?: InputMaybe; - amount_lte?: InputMaybe; - amount_not_eq?: InputMaybe; - amount_not_in?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - callDataLast4Bytes_contains?: InputMaybe; - callDataLast4Bytes_containsInsensitive?: InputMaybe; - callDataLast4Bytes_endsWith?: InputMaybe; - callDataLast4Bytes_eq?: InputMaybe; - callDataLast4Bytes_gt?: InputMaybe; - callDataLast4Bytes_gte?: InputMaybe; - callDataLast4Bytes_in?: InputMaybe>; - callDataLast4Bytes_isNull?: InputMaybe; - callDataLast4Bytes_lt?: InputMaybe; - callDataLast4Bytes_lte?: InputMaybe; - callDataLast4Bytes_not_contains?: InputMaybe; - callDataLast4Bytes_not_containsInsensitive?: InputMaybe; - callDataLast4Bytes_not_endsWith?: InputMaybe; - callDataLast4Bytes_not_eq?: InputMaybe; - callDataLast4Bytes_not_in?: InputMaybe>; - callDataLast4Bytes_not_startsWith?: InputMaybe; - callDataLast4Bytes_startsWith?: InputMaybe; - exchange_contains?: InputMaybe; - exchange_containsInsensitive?: InputMaybe; - exchange_endsWith?: InputMaybe; - exchange_eq?: InputMaybe; - exchange_gt?: InputMaybe; - exchange_gte?: InputMaybe; - exchange_in?: InputMaybe>; - exchange_isNull?: InputMaybe; - exchange_lt?: InputMaybe; - exchange_lte?: InputMaybe; - exchange_not_contains?: InputMaybe; - exchange_not_containsInsensitive?: InputMaybe; - exchange_not_endsWith?: InputMaybe; - exchange_not_eq?: InputMaybe; - exchange_not_in?: InputMaybe>; - exchange_not_startsWith?: InputMaybe; - exchange_startsWith?: InputMaybe; - fromSymbol_contains?: InputMaybe; - fromSymbol_containsInsensitive?: InputMaybe; - fromSymbol_endsWith?: InputMaybe; - fromSymbol_eq?: InputMaybe; - fromSymbol_gt?: InputMaybe; - fromSymbol_gte?: InputMaybe; - fromSymbol_in?: InputMaybe>; - fromSymbol_isNull?: InputMaybe; - fromSymbol_lt?: InputMaybe; - fromSymbol_lte?: InputMaybe; - fromSymbol_not_contains?: InputMaybe; - fromSymbol_not_containsInsensitive?: InputMaybe; - fromSymbol_not_endsWith?: InputMaybe; - fromSymbol_not_eq?: InputMaybe; - fromSymbol_not_in?: InputMaybe>; - fromSymbol_not_startsWith?: InputMaybe; - fromSymbol_startsWith?: InputMaybe; + TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST', + TypeAsc = 'type_ASC', + TypeAscNullsFirst = 'type_ASC_NULLS_FIRST', + TypeDesc = 'type_DESC', + TypeDescNullsLast = 'type_DESC_NULLS_LAST', + ValueAsc = 'value_ASC', + ValueAscNullsFirst = 'value_ASC_NULLS_FIRST', + ValueDesc = 'value_DESC', + ValueDescNullsLast = 'value_DESC_NULLS_LAST' +} + +export type OTokenHistoryWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + address?: InputMaybe; + address_isNull?: InputMaybe; + balance_eq?: InputMaybe; + balance_gt?: InputMaybe; + balance_gte?: InputMaybe; + balance_in?: InputMaybe>; + balance_isNull?: InputMaybe; + balance_lt?: InputMaybe; + balance_lte?: InputMaybe; + balance_not_eq?: InputMaybe; + balance_not_in?: InputMaybe>; + blockNumber_eq?: InputMaybe; + blockNumber_gt?: InputMaybe; + blockNumber_gte?: InputMaybe; + blockNumber_in?: InputMaybe>; + blockNumber_isNull?: InputMaybe; + blockNumber_lt?: InputMaybe; + blockNumber_lte?: InputMaybe; + blockNumber_not_eq?: InputMaybe; + blockNumber_not_in?: InputMaybe>; + chainId_eq?: InputMaybe; + chainId_gt?: InputMaybe; + chainId_gte?: InputMaybe; + chainId_in?: InputMaybe>; + chainId_isNull?: InputMaybe; + chainId_lt?: InputMaybe; + chainId_lte?: InputMaybe; + chainId_not_eq?: InputMaybe; + chainId_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -8222,40 +7274,23 @@ export type OusdActivityWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - interface_contains?: InputMaybe; - interface_containsInsensitive?: InputMaybe; - interface_endsWith?: InputMaybe; - interface_eq?: InputMaybe; - interface_gt?: InputMaybe; - interface_gte?: InputMaybe; - interface_in?: InputMaybe>; - interface_isNull?: InputMaybe; - interface_lt?: InputMaybe; - interface_lte?: InputMaybe; - interface_not_contains?: InputMaybe; - interface_not_containsInsensitive?: InputMaybe; - interface_not_endsWith?: InputMaybe; - interface_not_eq?: InputMaybe; - interface_not_in?: InputMaybe>; - interface_not_startsWith?: InputMaybe; - interface_startsWith?: InputMaybe; - sighash_contains?: InputMaybe; - sighash_containsInsensitive?: InputMaybe; - sighash_endsWith?: InputMaybe; - sighash_eq?: InputMaybe; - sighash_gt?: InputMaybe; - sighash_gte?: InputMaybe; - sighash_in?: InputMaybe>; - sighash_isNull?: InputMaybe; - sighash_lt?: InputMaybe; - sighash_lte?: InputMaybe; - sighash_not_contains?: InputMaybe; - sighash_not_containsInsensitive?: InputMaybe; - sighash_not_endsWith?: InputMaybe; - sighash_not_eq?: InputMaybe; - sighash_not_in?: InputMaybe>; - sighash_not_startsWith?: InputMaybe; - sighash_startsWith?: InputMaybe; + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -8265,23 +7300,6 @@ export type OusdActivityWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - toSymbol_contains?: InputMaybe; - toSymbol_containsInsensitive?: InputMaybe; - toSymbol_endsWith?: InputMaybe; - toSymbol_eq?: InputMaybe; - toSymbol_gt?: InputMaybe; - toSymbol_gte?: InputMaybe; - toSymbol_in?: InputMaybe>; - toSymbol_isNull?: InputMaybe; - toSymbol_lt?: InputMaybe; - toSymbol_lte?: InputMaybe; - toSymbol_not_contains?: InputMaybe; - toSymbol_not_containsInsensitive?: InputMaybe; - toSymbol_not_endsWith?: InputMaybe; - toSymbol_not_eq?: InputMaybe; - toSymbol_not_in?: InputMaybe>; - toSymbol_not_startsWith?: InputMaybe; - toSymbol_startsWith?: InputMaybe; txHash_contains?: InputMaybe; txHash_containsInsensitive?: InputMaybe; txHash_endsWith?: InputMaybe; @@ -8299,191 +7317,193 @@ export type OusdActivityWhereInput = { txHash_not_in?: InputMaybe>; txHash_not_startsWith?: InputMaybe; txHash_startsWith?: InputMaybe; + type_eq?: InputMaybe; + type_in?: InputMaybe>; + type_isNull?: InputMaybe; + type_not_eq?: InputMaybe; + type_not_in?: InputMaybe>; + value_eq?: InputMaybe; + value_gt?: InputMaybe; + value_gte?: InputMaybe; + value_in?: InputMaybe>; + value_isNull?: InputMaybe; + value_lt?: InputMaybe; + value_lte?: InputMaybe; + value_not_eq?: InputMaybe; + value_not_in?: InputMaybe>; }; -/** The OUSD balance, history and other information for a given address. */ -export type OusdAddress = { - __typename?: 'OUSDAddress'; - balance: Scalars['BigInt']['output']; - credits: Scalars['BigInt']['output']; - earned: Scalars['BigInt']['output']; - history: Array; - id: Scalars['String']['output']; - isContract: Scalars['Boolean']['output']; - lastUpdated: Scalars['DateTime']['output']; - rebasingOption: RebasingOption; -}; - - -/** The OUSD balance, history and other information for a given address. */ -export type OusdAddressHistoryArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - -export type OusdAddressEdge = { - __typename?: 'OUSDAddressEdge'; - cursor: Scalars['String']['output']; - node: OusdAddress; -}; - -export enum OusdAddressOrderByInput { - BalanceAsc = 'balance_ASC', - BalanceAscNullsFirst = 'balance_ASC_NULLS_FIRST', - BalanceDesc = 'balance_DESC', - BalanceDescNullsLast = 'balance_DESC_NULLS_LAST', - CreditsAsc = 'credits_ASC', - CreditsAscNullsFirst = 'credits_ASC_NULLS_FIRST', - CreditsDesc = 'credits_DESC', - CreditsDescNullsLast = 'credits_DESC_NULLS_LAST', - EarnedAsc = 'earned_ASC', - EarnedAscNullsFirst = 'earned_ASC_NULLS_FIRST', - EarnedDesc = 'earned_DESC', - EarnedDescNullsLast = 'earned_DESC_NULLS_LAST', +export enum OTokenOrderByInput { + BlockNumberAsc = 'blockNumber_ASC', + BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', + BlockNumberDesc = 'blockNumber_DESC', + BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - IsContractAsc = 'isContract_ASC', - IsContractAscNullsFirst = 'isContract_ASC_NULLS_FIRST', - IsContractDesc = 'isContract_DESC', - IsContractDescNullsLast = 'isContract_DESC_NULLS_LAST', - LastUpdatedAsc = 'lastUpdated_ASC', - LastUpdatedAscNullsFirst = 'lastUpdated_ASC_NULLS_FIRST', - LastUpdatedDesc = 'lastUpdated_DESC', - LastUpdatedDescNullsLast = 'lastUpdated_DESC_NULLS_LAST', - RebasingOptionAsc = 'rebasingOption_ASC', - RebasingOptionAscNullsFirst = 'rebasingOption_ASC_NULLS_FIRST', - RebasingOptionDesc = 'rebasingOption_DESC', - RebasingOptionDescNullsLast = 'rebasingOption_DESC_NULLS_LAST' + NonRebasingSupplyAsc = 'nonRebasingSupply_ASC', + NonRebasingSupplyAscNullsFirst = 'nonRebasingSupply_ASC_NULLS_FIRST', + NonRebasingSupplyDesc = 'nonRebasingSupply_DESC', + NonRebasingSupplyDescNullsLast = 'nonRebasingSupply_DESC_NULLS_LAST', + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', + RebasingSupplyAsc = 'rebasingSupply_ASC', + RebasingSupplyAscNullsFirst = 'rebasingSupply_ASC_NULLS_FIRST', + RebasingSupplyDesc = 'rebasingSupply_DESC', + RebasingSupplyDescNullsLast = 'rebasingSupply_DESC_NULLS_LAST', + TimestampAsc = 'timestamp_ASC', + TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', + TimestampDesc = 'timestamp_DESC', + TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', + TotalSupplyAsc = 'totalSupply_ASC', + TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', + TotalSupplyDesc = 'totalSupply_DESC', + TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST' } -export type OusdAddressWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - balance_eq?: InputMaybe; - balance_gt?: InputMaybe; - balance_gte?: InputMaybe; - balance_in?: InputMaybe>; - balance_isNull?: InputMaybe; - balance_lt?: InputMaybe; - balance_lte?: InputMaybe; - balance_not_eq?: InputMaybe; - balance_not_in?: InputMaybe>; - credits_eq?: InputMaybe; - credits_gt?: InputMaybe; - credits_gte?: InputMaybe; - credits_in?: InputMaybe>; - credits_isNull?: InputMaybe; - credits_lt?: InputMaybe; - credits_lte?: InputMaybe; - credits_not_eq?: InputMaybe; - credits_not_in?: InputMaybe>; - earned_eq?: InputMaybe; - earned_gt?: InputMaybe; - earned_gte?: InputMaybe; - earned_in?: InputMaybe>; - earned_isNull?: InputMaybe; - earned_lt?: InputMaybe; - earned_lte?: InputMaybe; - earned_not_eq?: InputMaybe; - earned_not_in?: InputMaybe>; - history_every?: InputMaybe; - history_none?: InputMaybe; - history_some?: InputMaybe; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - isContract_eq?: InputMaybe; - isContract_isNull?: InputMaybe; - isContract_not_eq?: InputMaybe; - lastUpdated_eq?: InputMaybe; - lastUpdated_gt?: InputMaybe; - lastUpdated_gte?: InputMaybe; - lastUpdated_in?: InputMaybe>; - lastUpdated_isNull?: InputMaybe; - lastUpdated_lt?: InputMaybe; - lastUpdated_lte?: InputMaybe; - lastUpdated_not_eq?: InputMaybe; - lastUpdated_not_in?: InputMaybe>; - rebasingOption_eq?: InputMaybe; - rebasingOption_in?: InputMaybe>; - rebasingOption_isNull?: InputMaybe; - rebasingOption_not_eq?: InputMaybe; - rebasingOption_not_in?: InputMaybe>; +export type OTokenRebase = { + __typename?: 'OTokenRebase'; + apy: OTokenApy; + blockNumber: Scalars['Int']['output']; + chainId: Scalars['Int']['output']; + feeETH: Scalars['BigInt']['output']; + feeUSD: Scalars['BigInt']['output']; + id: Scalars['String']['output']; + otoken: Scalars['String']['output']; + rebasingCredits: Scalars['BigInt']['output']; + rebasingCreditsPerToken: Scalars['BigInt']['output']; + timestamp: Scalars['DateTime']['output']; + totalSupply: Scalars['BigInt']['output']; + txHash: Scalars['String']['output']; + yieldETH: Scalars['BigInt']['output']; + yieldUSD: Scalars['BigInt']['output']; }; -export type OusdAddressesConnection = { - __typename?: 'OUSDAddressesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; +export type OTokenRebaseEdge = { + __typename?: 'OTokenRebaseEdge'; + cursor: Scalars['String']['output']; + node: OTokenRebase; }; -export type OusdAsset = { - __typename?: 'OUSDAsset'; - address: Scalars['String']['output']; +export type OTokenRebaseOption = { + __typename?: 'OTokenRebaseOption'; + address: OTokenAddress; + blockNumber: Scalars['Int']['output']; + chainId: Scalars['Int']['output']; id: Scalars['String']['output']; - symbol: Scalars['String']['output']; + otoken: Scalars['String']['output']; + status: RebasingOption; + timestamp: Scalars['DateTime']['output']; + txHash: Scalars['String']['output']; }; -export type OusdAssetEdge = { - __typename?: 'OUSDAssetEdge'; +export type OTokenRebaseOptionEdge = { + __typename?: 'OTokenRebaseOptionEdge'; cursor: Scalars['String']['output']; - node: OusdAsset; + node: OTokenRebaseOption; }; -export enum OusdAssetOrderByInput { - AddressAsc = 'address_ASC', - AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', - AddressDesc = 'address_DESC', - AddressDescNullsLast = 'address_DESC_NULLS_LAST', +export enum OTokenRebaseOptionOrderByInput { + AddressAddressAsc = 'address_address_ASC', + AddressAddressAscNullsFirst = 'address_address_ASC_NULLS_FIRST', + AddressAddressDesc = 'address_address_DESC', + AddressAddressDescNullsLast = 'address_address_DESC_NULLS_LAST', + AddressBalanceAsc = 'address_balance_ASC', + AddressBalanceAscNullsFirst = 'address_balance_ASC_NULLS_FIRST', + AddressBalanceDesc = 'address_balance_DESC', + AddressBalanceDescNullsLast = 'address_balance_DESC_NULLS_LAST', + AddressChainIdAsc = 'address_chainId_ASC', + AddressChainIdAscNullsFirst = 'address_chainId_ASC_NULLS_FIRST', + AddressChainIdDesc = 'address_chainId_DESC', + AddressChainIdDescNullsLast = 'address_chainId_DESC_NULLS_LAST', + AddressCreditsAsc = 'address_credits_ASC', + AddressCreditsAscNullsFirst = 'address_credits_ASC_NULLS_FIRST', + AddressCreditsDesc = 'address_credits_DESC', + AddressCreditsDescNullsLast = 'address_credits_DESC_NULLS_LAST', + AddressEarnedAsc = 'address_earned_ASC', + AddressEarnedAscNullsFirst = 'address_earned_ASC_NULLS_FIRST', + AddressEarnedDesc = 'address_earned_DESC', + AddressEarnedDescNullsLast = 'address_earned_DESC_NULLS_LAST', + AddressIdAsc = 'address_id_ASC', + AddressIdAscNullsFirst = 'address_id_ASC_NULLS_FIRST', + AddressIdDesc = 'address_id_DESC', + AddressIdDescNullsLast = 'address_id_DESC_NULLS_LAST', + AddressIsContractAsc = 'address_isContract_ASC', + AddressIsContractAscNullsFirst = 'address_isContract_ASC_NULLS_FIRST', + AddressIsContractDesc = 'address_isContract_DESC', + AddressIsContractDescNullsLast = 'address_isContract_DESC_NULLS_LAST', + AddressLastUpdatedAsc = 'address_lastUpdated_ASC', + AddressLastUpdatedAscNullsFirst = 'address_lastUpdated_ASC_NULLS_FIRST', + AddressLastUpdatedDesc = 'address_lastUpdated_DESC', + AddressLastUpdatedDescNullsLast = 'address_lastUpdated_DESC_NULLS_LAST', + AddressOtokenAsc = 'address_otoken_ASC', + AddressOtokenAscNullsFirst = 'address_otoken_ASC_NULLS_FIRST', + AddressOtokenDesc = 'address_otoken_DESC', + AddressOtokenDescNullsLast = 'address_otoken_DESC_NULLS_LAST', + AddressRebasingOptionAsc = 'address_rebasingOption_ASC', + AddressRebasingOptionAscNullsFirst = 'address_rebasingOption_ASC_NULLS_FIRST', + AddressRebasingOptionDesc = 'address_rebasingOption_DESC', + AddressRebasingOptionDescNullsLast = 'address_rebasingOption_DESC_NULLS_LAST', + BlockNumberAsc = 'blockNumber_ASC', + BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', + BlockNumberDesc = 'blockNumber_DESC', + BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - SymbolAsc = 'symbol_ASC', - SymbolAscNullsFirst = 'symbol_ASC_NULLS_FIRST', - SymbolDesc = 'symbol_DESC', - SymbolDescNullsLast = 'symbol_DESC_NULLS_LAST' + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', + StatusAsc = 'status_ASC', + StatusAscNullsFirst = 'status_ASC_NULLS_FIRST', + StatusDesc = 'status_DESC', + StatusDescNullsLast = 'status_DESC_NULLS_LAST', + TimestampAsc = 'timestamp_ASC', + TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', + TimestampDesc = 'timestamp_DESC', + TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', + TxHashAsc = 'txHash_ASC', + TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', + TxHashDesc = 'txHash_DESC', + TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST' } -export type OusdAssetWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - address_contains?: InputMaybe; - address_containsInsensitive?: InputMaybe; - address_endsWith?: InputMaybe; - address_eq?: InputMaybe; - address_gt?: InputMaybe; - address_gte?: InputMaybe; - address_in?: InputMaybe>; +export type OTokenRebaseOptionWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + address?: InputMaybe; address_isNull?: InputMaybe; - address_lt?: InputMaybe; - address_lte?: InputMaybe; - address_not_contains?: InputMaybe; - address_not_containsInsensitive?: InputMaybe; - address_not_endsWith?: InputMaybe; - address_not_eq?: InputMaybe; - address_not_in?: InputMaybe>; - address_not_startsWith?: InputMaybe; - address_startsWith?: InputMaybe; + blockNumber_eq?: InputMaybe; + blockNumber_gt?: InputMaybe; + blockNumber_gte?: InputMaybe; + blockNumber_in?: InputMaybe>; + blockNumber_isNull?: InputMaybe; + blockNumber_lt?: InputMaybe; + blockNumber_lte?: InputMaybe; + blockNumber_not_eq?: InputMaybe; + blockNumber_not_in?: InputMaybe>; + chainId_eq?: InputMaybe; + chainId_gt?: InputMaybe; + chainId_gte?: InputMaybe; + chainId_in?: InputMaybe>; + chainId_isNull?: InputMaybe; + chainId_lt?: InputMaybe; + chainId_lte?: InputMaybe; + chainId_not_eq?: InputMaybe; + chainId_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -8501,209 +7521,211 @@ export type OusdAssetWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - symbol_contains?: InputMaybe; - symbol_containsInsensitive?: InputMaybe; - symbol_endsWith?: InputMaybe; - symbol_eq?: InputMaybe; - symbol_gt?: InputMaybe; - symbol_gte?: InputMaybe; - symbol_in?: InputMaybe>; - symbol_isNull?: InputMaybe; - symbol_lt?: InputMaybe; - symbol_lte?: InputMaybe; - symbol_not_contains?: InputMaybe; - symbol_not_containsInsensitive?: InputMaybe; - symbol_not_endsWith?: InputMaybe; - symbol_not_eq?: InputMaybe; - symbol_not_in?: InputMaybe>; - symbol_not_startsWith?: InputMaybe; - symbol_startsWith?: InputMaybe; -}; - -export type OusdAssetsConnection = { - __typename?: 'OUSDAssetsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OusdCollateralDailyStat = { - __typename?: 'OUSDCollateralDailyStat'; - amount: Scalars['BigInt']['output']; - dailyStatId: OusdDailyStat; - id: Scalars['String']['output']; - price: Scalars['BigInt']['output']; - symbol: Scalars['String']['output']; - value: Scalars['BigInt']['output']; -}; - -export type OusdCollateralDailyStatEdge = { - __typename?: 'OUSDCollateralDailyStatEdge'; - cursor: Scalars['String']['output']; - node: OusdCollateralDailyStat; -}; - -export enum OusdCollateralDailyStatOrderByInput { - AmountAsc = 'amount_ASC', - AmountAscNullsFirst = 'amount_ASC_NULLS_FIRST', - AmountDesc = 'amount_DESC', - AmountDescNullsLast = 'amount_DESC_NULLS_LAST', - DailyStatIdAmoSupplyAsc = 'dailyStatId_amoSupply_ASC', - DailyStatIdAmoSupplyAscNullsFirst = 'dailyStatId_amoSupply_ASC_NULLS_FIRST', - DailyStatIdAmoSupplyDesc = 'dailyStatId_amoSupply_DESC', - DailyStatIdAmoSupplyDescNullsLast = 'dailyStatId_amoSupply_DESC_NULLS_LAST', - DailyStatIdAprAsc = 'dailyStatId_apr_ASC', - DailyStatIdAprAscNullsFirst = 'dailyStatId_apr_ASC_NULLS_FIRST', - DailyStatIdAprDesc = 'dailyStatId_apr_DESC', - DailyStatIdAprDescNullsLast = 'dailyStatId_apr_DESC_NULLS_LAST', - DailyStatIdApy7DayAvgAsc = 'dailyStatId_apy7DayAvg_ASC', - DailyStatIdApy7DayAvgAscNullsFirst = 'dailyStatId_apy7DayAvg_ASC_NULLS_FIRST', - DailyStatIdApy7DayAvgDesc = 'dailyStatId_apy7DayAvg_DESC', - DailyStatIdApy7DayAvgDescNullsLast = 'dailyStatId_apy7DayAvg_DESC_NULLS_LAST', - DailyStatIdApy14DayAvgAsc = 'dailyStatId_apy14DayAvg_ASC', - DailyStatIdApy14DayAvgAscNullsFirst = 'dailyStatId_apy14DayAvg_ASC_NULLS_FIRST', - DailyStatIdApy14DayAvgDesc = 'dailyStatId_apy14DayAvg_DESC', - DailyStatIdApy14DayAvgDescNullsLast = 'dailyStatId_apy14DayAvg_DESC_NULLS_LAST', - DailyStatIdApy30DayAvgAsc = 'dailyStatId_apy30DayAvg_ASC', - DailyStatIdApy30DayAvgAscNullsFirst = 'dailyStatId_apy30DayAvg_ASC_NULLS_FIRST', - DailyStatIdApy30DayAvgDesc = 'dailyStatId_apy30DayAvg_DESC', - DailyStatIdApy30DayAvgDescNullsLast = 'dailyStatId_apy30DayAvg_DESC_NULLS_LAST', - DailyStatIdApyAsc = 'dailyStatId_apy_ASC', - DailyStatIdApyAscNullsFirst = 'dailyStatId_apy_ASC_NULLS_FIRST', - DailyStatIdApyDesc = 'dailyStatId_apy_DESC', - DailyStatIdApyDescNullsLast = 'dailyStatId_apy_DESC_NULLS_LAST', - DailyStatIdBlockNumberAsc = 'dailyStatId_blockNumber_ASC', - DailyStatIdBlockNumberAscNullsFirst = 'dailyStatId_blockNumber_ASC_NULLS_FIRST', - DailyStatIdBlockNumberDesc = 'dailyStatId_blockNumber_DESC', - DailyStatIdBlockNumberDescNullsLast = 'dailyStatId_blockNumber_DESC_NULLS_LAST', - DailyStatIdDripperWethAsc = 'dailyStatId_dripperWETH_ASC', - DailyStatIdDripperWethAscNullsFirst = 'dailyStatId_dripperWETH_ASC_NULLS_FIRST', - DailyStatIdDripperWethDesc = 'dailyStatId_dripperWETH_DESC', - DailyStatIdDripperWethDescNullsLast = 'dailyStatId_dripperWETH_DESC_NULLS_LAST', - DailyStatIdFeesEth7DayAsc = 'dailyStatId_feesETH7Day_ASC', - DailyStatIdFeesEth7DayAscNullsFirst = 'dailyStatId_feesETH7Day_ASC_NULLS_FIRST', - DailyStatIdFeesEth7DayDesc = 'dailyStatId_feesETH7Day_DESC', - DailyStatIdFeesEth7DayDescNullsLast = 'dailyStatId_feesETH7Day_DESC_NULLS_LAST', - DailyStatIdFeesEthAllTimeAsc = 'dailyStatId_feesETHAllTime_ASC', - DailyStatIdFeesEthAllTimeAscNullsFirst = 'dailyStatId_feesETHAllTime_ASC_NULLS_FIRST', - DailyStatIdFeesEthAllTimeDesc = 'dailyStatId_feesETHAllTime_DESC', - DailyStatIdFeesEthAllTimeDescNullsLast = 'dailyStatId_feesETHAllTime_DESC_NULLS_LAST', - DailyStatIdFeesEthAsc = 'dailyStatId_feesETH_ASC', - DailyStatIdFeesEthAscNullsFirst = 'dailyStatId_feesETH_ASC_NULLS_FIRST', - DailyStatIdFeesEthDesc = 'dailyStatId_feesETH_DESC', - DailyStatIdFeesEthDescNullsLast = 'dailyStatId_feesETH_DESC_NULLS_LAST', - DailyStatIdFeesUsd7DayAsc = 'dailyStatId_feesUSD7Day_ASC', - DailyStatIdFeesUsd7DayAscNullsFirst = 'dailyStatId_feesUSD7Day_ASC_NULLS_FIRST', - DailyStatIdFeesUsd7DayDesc = 'dailyStatId_feesUSD7Day_DESC', - DailyStatIdFeesUsd7DayDescNullsLast = 'dailyStatId_feesUSD7Day_DESC_NULLS_LAST', - DailyStatIdFeesUsdAllTimeAsc = 'dailyStatId_feesUSDAllTime_ASC', - DailyStatIdFeesUsdAllTimeAscNullsFirst = 'dailyStatId_feesUSDAllTime_ASC_NULLS_FIRST', - DailyStatIdFeesUsdAllTimeDesc = 'dailyStatId_feesUSDAllTime_DESC', - DailyStatIdFeesUsdAllTimeDescNullsLast = 'dailyStatId_feesUSDAllTime_DESC_NULLS_LAST', - DailyStatIdFeesUsdAsc = 'dailyStatId_feesUSD_ASC', - DailyStatIdFeesUsdAscNullsFirst = 'dailyStatId_feesUSD_ASC_NULLS_FIRST', - DailyStatIdFeesUsdDesc = 'dailyStatId_feesUSD_DESC', - DailyStatIdFeesUsdDescNullsLast = 'dailyStatId_feesUSD_DESC_NULLS_LAST', - DailyStatIdHoldersOverThresholdAsc = 'dailyStatId_holdersOverThreshold_ASC', - DailyStatIdHoldersOverThresholdAscNullsFirst = 'dailyStatId_holdersOverThreshold_ASC_NULLS_FIRST', - DailyStatIdHoldersOverThresholdDesc = 'dailyStatId_holdersOverThreshold_DESC', - DailyStatIdHoldersOverThresholdDescNullsLast = 'dailyStatId_holdersOverThreshold_DESC_NULLS_LAST', - DailyStatIdIdAsc = 'dailyStatId_id_ASC', - DailyStatIdIdAscNullsFirst = 'dailyStatId_id_ASC_NULLS_FIRST', - DailyStatIdIdDesc = 'dailyStatId_id_DESC', - DailyStatIdIdDescNullsLast = 'dailyStatId_id_DESC_NULLS_LAST', - DailyStatIdMarketCapUsdAsc = 'dailyStatId_marketCapUSD_ASC', - DailyStatIdMarketCapUsdAscNullsFirst = 'dailyStatId_marketCapUSD_ASC_NULLS_FIRST', - DailyStatIdMarketCapUsdDesc = 'dailyStatId_marketCapUSD_DESC', - DailyStatIdMarketCapUsdDescNullsLast = 'dailyStatId_marketCapUSD_DESC_NULLS_LAST', - DailyStatIdNonRebasingSupplyAsc = 'dailyStatId_nonRebasingSupply_ASC', - DailyStatIdNonRebasingSupplyAscNullsFirst = 'dailyStatId_nonRebasingSupply_ASC_NULLS_FIRST', - DailyStatIdNonRebasingSupplyDesc = 'dailyStatId_nonRebasingSupply_DESC', - DailyStatIdNonRebasingSupplyDescNullsLast = 'dailyStatId_nonRebasingSupply_DESC_NULLS_LAST', - DailyStatIdPegPriceAsc = 'dailyStatId_pegPrice_ASC', - DailyStatIdPegPriceAscNullsFirst = 'dailyStatId_pegPrice_ASC_NULLS_FIRST', - DailyStatIdPegPriceDesc = 'dailyStatId_pegPrice_DESC', - DailyStatIdPegPriceDescNullsLast = 'dailyStatId_pegPrice_DESC_NULLS_LAST', - DailyStatIdRebasingSupplyAsc = 'dailyStatId_rebasingSupply_ASC', - DailyStatIdRebasingSupplyAscNullsFirst = 'dailyStatId_rebasingSupply_ASC_NULLS_FIRST', - DailyStatIdRebasingSupplyDesc = 'dailyStatId_rebasingSupply_DESC', - DailyStatIdRebasingSupplyDescNullsLast = 'dailyStatId_rebasingSupply_DESC_NULLS_LAST', - DailyStatIdTimestampAsc = 'dailyStatId_timestamp_ASC', - DailyStatIdTimestampAscNullsFirst = 'dailyStatId_timestamp_ASC_NULLS_FIRST', - DailyStatIdTimestampDesc = 'dailyStatId_timestamp_DESC', - DailyStatIdTimestampDescNullsLast = 'dailyStatId_timestamp_DESC_NULLS_LAST', - DailyStatIdTotalSupplyUsdAsc = 'dailyStatId_totalSupplyUSD_ASC', - DailyStatIdTotalSupplyUsdAscNullsFirst = 'dailyStatId_totalSupplyUSD_ASC_NULLS_FIRST', - DailyStatIdTotalSupplyUsdDesc = 'dailyStatId_totalSupplyUSD_DESC', - DailyStatIdTotalSupplyUsdDescNullsLast = 'dailyStatId_totalSupplyUSD_DESC_NULLS_LAST', - DailyStatIdTotalSupplyAsc = 'dailyStatId_totalSupply_ASC', - DailyStatIdTotalSupplyAscNullsFirst = 'dailyStatId_totalSupply_ASC_NULLS_FIRST', - DailyStatIdTotalSupplyDesc = 'dailyStatId_totalSupply_DESC', - DailyStatIdTotalSupplyDescNullsLast = 'dailyStatId_totalSupply_DESC_NULLS_LAST', - DailyStatIdTradingVolumeUsdAsc = 'dailyStatId_tradingVolumeUSD_ASC', - DailyStatIdTradingVolumeUsdAscNullsFirst = 'dailyStatId_tradingVolumeUSD_ASC_NULLS_FIRST', - DailyStatIdTradingVolumeUsdDesc = 'dailyStatId_tradingVolumeUSD_DESC', - DailyStatIdTradingVolumeUsdDescNullsLast = 'dailyStatId_tradingVolumeUSD_DESC_NULLS_LAST', - DailyStatIdWrappedSupplyAsc = 'dailyStatId_wrappedSupply_ASC', - DailyStatIdWrappedSupplyAscNullsFirst = 'dailyStatId_wrappedSupply_ASC_NULLS_FIRST', - DailyStatIdWrappedSupplyDesc = 'dailyStatId_wrappedSupply_DESC', - DailyStatIdWrappedSupplyDescNullsLast = 'dailyStatId_wrappedSupply_DESC_NULLS_LAST', - DailyStatIdYieldEth7DayAsc = 'dailyStatId_yieldETH7Day_ASC', - DailyStatIdYieldEth7DayAscNullsFirst = 'dailyStatId_yieldETH7Day_ASC_NULLS_FIRST', - DailyStatIdYieldEth7DayDesc = 'dailyStatId_yieldETH7Day_DESC', - DailyStatIdYieldEth7DayDescNullsLast = 'dailyStatId_yieldETH7Day_DESC_NULLS_LAST', - DailyStatIdYieldEthAllTimeAsc = 'dailyStatId_yieldETHAllTime_ASC', - DailyStatIdYieldEthAllTimeAscNullsFirst = 'dailyStatId_yieldETHAllTime_ASC_NULLS_FIRST', - DailyStatIdYieldEthAllTimeDesc = 'dailyStatId_yieldETHAllTime_DESC', - DailyStatIdYieldEthAllTimeDescNullsLast = 'dailyStatId_yieldETHAllTime_DESC_NULLS_LAST', - DailyStatIdYieldEthAsc = 'dailyStatId_yieldETH_ASC', - DailyStatIdYieldEthAscNullsFirst = 'dailyStatId_yieldETH_ASC_NULLS_FIRST', - DailyStatIdYieldEthDesc = 'dailyStatId_yieldETH_DESC', - DailyStatIdYieldEthDescNullsLast = 'dailyStatId_yieldETH_DESC_NULLS_LAST', - DailyStatIdYieldUsd7DayAsc = 'dailyStatId_yieldUSD7Day_ASC', - DailyStatIdYieldUsd7DayAscNullsFirst = 'dailyStatId_yieldUSD7Day_ASC_NULLS_FIRST', - DailyStatIdYieldUsd7DayDesc = 'dailyStatId_yieldUSD7Day_DESC', - DailyStatIdYieldUsd7DayDescNullsLast = 'dailyStatId_yieldUSD7Day_DESC_NULLS_LAST', - DailyStatIdYieldUsdAllTimeAsc = 'dailyStatId_yieldUSDAllTime_ASC', - DailyStatIdYieldUsdAllTimeAscNullsFirst = 'dailyStatId_yieldUSDAllTime_ASC_NULLS_FIRST', - DailyStatIdYieldUsdAllTimeDesc = 'dailyStatId_yieldUSDAllTime_DESC', - DailyStatIdYieldUsdAllTimeDescNullsLast = 'dailyStatId_yieldUSDAllTime_DESC_NULLS_LAST', - DailyStatIdYieldUsdAsc = 'dailyStatId_yieldUSD_ASC', - DailyStatIdYieldUsdAscNullsFirst = 'dailyStatId_yieldUSD_ASC_NULLS_FIRST', - DailyStatIdYieldUsdDesc = 'dailyStatId_yieldUSD_DESC', - DailyStatIdYieldUsdDescNullsLast = 'dailyStatId_yieldUSD_DESC_NULLS_LAST', + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; + status_eq?: InputMaybe; + status_in?: InputMaybe>; + status_isNull?: InputMaybe; + status_not_eq?: InputMaybe; + status_not_in?: InputMaybe>; + timestamp_eq?: InputMaybe; + timestamp_gt?: InputMaybe; + timestamp_gte?: InputMaybe; + timestamp_in?: InputMaybe>; + timestamp_isNull?: InputMaybe; + timestamp_lt?: InputMaybe; + timestamp_lte?: InputMaybe; + timestamp_not_eq?: InputMaybe; + timestamp_not_in?: InputMaybe>; + txHash_contains?: InputMaybe; + txHash_containsInsensitive?: InputMaybe; + txHash_endsWith?: InputMaybe; + txHash_eq?: InputMaybe; + txHash_gt?: InputMaybe; + txHash_gte?: InputMaybe; + txHash_in?: InputMaybe>; + txHash_isNull?: InputMaybe; + txHash_lt?: InputMaybe; + txHash_lte?: InputMaybe; + txHash_not_contains?: InputMaybe; + txHash_not_containsInsensitive?: InputMaybe; + txHash_not_endsWith?: InputMaybe; + txHash_not_eq?: InputMaybe; + txHash_not_in?: InputMaybe>; + txHash_not_startsWith?: InputMaybe; + txHash_startsWith?: InputMaybe; +}; + +export type OTokenRebaseOptionsConnection = { + __typename?: 'OTokenRebaseOptionsConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; +}; + +export enum OTokenRebaseOrderByInput { + ApyAprAsc = 'apy_apr_ASC', + ApyAprAscNullsFirst = 'apy_apr_ASC_NULLS_FIRST', + ApyAprDesc = 'apy_apr_DESC', + ApyAprDescNullsLast = 'apy_apr_DESC_NULLS_LAST', + ApyApy7DayAvgAsc = 'apy_apy7DayAvg_ASC', + ApyApy7DayAvgAscNullsFirst = 'apy_apy7DayAvg_ASC_NULLS_FIRST', + ApyApy7DayAvgDesc = 'apy_apy7DayAvg_DESC', + ApyApy7DayAvgDescNullsLast = 'apy_apy7DayAvg_DESC_NULLS_LAST', + ApyApy14DayAvgAsc = 'apy_apy14DayAvg_ASC', + ApyApy14DayAvgAscNullsFirst = 'apy_apy14DayAvg_ASC_NULLS_FIRST', + ApyApy14DayAvgDesc = 'apy_apy14DayAvg_DESC', + ApyApy14DayAvgDescNullsLast = 'apy_apy14DayAvg_DESC_NULLS_LAST', + ApyApy30DayAvgAsc = 'apy_apy30DayAvg_ASC', + ApyApy30DayAvgAscNullsFirst = 'apy_apy30DayAvg_ASC_NULLS_FIRST', + ApyApy30DayAvgDesc = 'apy_apy30DayAvg_DESC', + ApyApy30DayAvgDescNullsLast = 'apy_apy30DayAvg_DESC_NULLS_LAST', + ApyApyAsc = 'apy_apy_ASC', + ApyApyAscNullsFirst = 'apy_apy_ASC_NULLS_FIRST', + ApyApyDesc = 'apy_apy_DESC', + ApyApyDescNullsLast = 'apy_apy_DESC_NULLS_LAST', + ApyBlockNumberAsc = 'apy_blockNumber_ASC', + ApyBlockNumberAscNullsFirst = 'apy_blockNumber_ASC_NULLS_FIRST', + ApyBlockNumberDesc = 'apy_blockNumber_DESC', + ApyBlockNumberDescNullsLast = 'apy_blockNumber_DESC_NULLS_LAST', + ApyChainIdAsc = 'apy_chainId_ASC', + ApyChainIdAscNullsFirst = 'apy_chainId_ASC_NULLS_FIRST', + ApyChainIdDesc = 'apy_chainId_DESC', + ApyChainIdDescNullsLast = 'apy_chainId_DESC_NULLS_LAST', + ApyDateAsc = 'apy_date_ASC', + ApyDateAscNullsFirst = 'apy_date_ASC_NULLS_FIRST', + ApyDateDesc = 'apy_date_DESC', + ApyDateDescNullsLast = 'apy_date_DESC_NULLS_LAST', + ApyIdAsc = 'apy_id_ASC', + ApyIdAscNullsFirst = 'apy_id_ASC_NULLS_FIRST', + ApyIdDesc = 'apy_id_DESC', + ApyIdDescNullsLast = 'apy_id_DESC_NULLS_LAST', + ApyOtokenAsc = 'apy_otoken_ASC', + ApyOtokenAscNullsFirst = 'apy_otoken_ASC_NULLS_FIRST', + ApyOtokenDesc = 'apy_otoken_DESC', + ApyOtokenDescNullsLast = 'apy_otoken_DESC_NULLS_LAST', + ApyRebasingCreditsPerTokenAsc = 'apy_rebasingCreditsPerToken_ASC', + ApyRebasingCreditsPerTokenAscNullsFirst = 'apy_rebasingCreditsPerToken_ASC_NULLS_FIRST', + ApyRebasingCreditsPerTokenDesc = 'apy_rebasingCreditsPerToken_DESC', + ApyRebasingCreditsPerTokenDescNullsLast = 'apy_rebasingCreditsPerToken_DESC_NULLS_LAST', + ApyTimestampAsc = 'apy_timestamp_ASC', + ApyTimestampAscNullsFirst = 'apy_timestamp_ASC_NULLS_FIRST', + ApyTimestampDesc = 'apy_timestamp_DESC', + ApyTimestampDescNullsLast = 'apy_timestamp_DESC_NULLS_LAST', + ApyTxHashAsc = 'apy_txHash_ASC', + ApyTxHashAscNullsFirst = 'apy_txHash_ASC_NULLS_FIRST', + ApyTxHashDesc = 'apy_txHash_DESC', + ApyTxHashDescNullsLast = 'apy_txHash_DESC_NULLS_LAST', + BlockNumberAsc = 'blockNumber_ASC', + BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', + BlockNumberDesc = 'blockNumber_DESC', + BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', + FeeEthAsc = 'feeETH_ASC', + FeeEthAscNullsFirst = 'feeETH_ASC_NULLS_FIRST', + FeeEthDesc = 'feeETH_DESC', + FeeEthDescNullsLast = 'feeETH_DESC_NULLS_LAST', + FeeUsdAsc = 'feeUSD_ASC', + FeeUsdAscNullsFirst = 'feeUSD_ASC_NULLS_FIRST', + FeeUsdDesc = 'feeUSD_DESC', + FeeUsdDescNullsLast = 'feeUSD_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - PriceAsc = 'price_ASC', - PriceAscNullsFirst = 'price_ASC_NULLS_FIRST', - PriceDesc = 'price_DESC', - PriceDescNullsLast = 'price_DESC_NULLS_LAST', - SymbolAsc = 'symbol_ASC', - SymbolAscNullsFirst = 'symbol_ASC_NULLS_FIRST', - SymbolDesc = 'symbol_DESC', - SymbolDescNullsLast = 'symbol_DESC_NULLS_LAST', - ValueAsc = 'value_ASC', - ValueAscNullsFirst = 'value_ASC_NULLS_FIRST', - ValueDesc = 'value_DESC', - ValueDescNullsLast = 'value_DESC_NULLS_LAST' + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', + RebasingCreditsPerTokenAsc = 'rebasingCreditsPerToken_ASC', + RebasingCreditsPerTokenAscNullsFirst = 'rebasingCreditsPerToken_ASC_NULLS_FIRST', + RebasingCreditsPerTokenDesc = 'rebasingCreditsPerToken_DESC', + RebasingCreditsPerTokenDescNullsLast = 'rebasingCreditsPerToken_DESC_NULLS_LAST', + RebasingCreditsAsc = 'rebasingCredits_ASC', + RebasingCreditsAscNullsFirst = 'rebasingCredits_ASC_NULLS_FIRST', + RebasingCreditsDesc = 'rebasingCredits_DESC', + RebasingCreditsDescNullsLast = 'rebasingCredits_DESC_NULLS_LAST', + TimestampAsc = 'timestamp_ASC', + TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', + TimestampDesc = 'timestamp_DESC', + TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', + TotalSupplyAsc = 'totalSupply_ASC', + TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', + TotalSupplyDesc = 'totalSupply_DESC', + TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST', + TxHashAsc = 'txHash_ASC', + TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', + TxHashDesc = 'txHash_DESC', + TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST', + YieldEthAsc = 'yieldETH_ASC', + YieldEthAscNullsFirst = 'yieldETH_ASC_NULLS_FIRST', + YieldEthDesc = 'yieldETH_DESC', + YieldEthDescNullsLast = 'yieldETH_DESC_NULLS_LAST', + YieldUsdAsc = 'yieldUSD_ASC', + YieldUsdAscNullsFirst = 'yieldUSD_ASC_NULLS_FIRST', + YieldUsdDesc = 'yieldUSD_DESC', + YieldUsdDescNullsLast = 'yieldUSD_DESC_NULLS_LAST' } -export type OusdCollateralDailyStatWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - amount_eq?: InputMaybe; - amount_gt?: InputMaybe; - amount_gte?: InputMaybe; - amount_in?: InputMaybe>; - amount_isNull?: InputMaybe; - amount_lt?: InputMaybe; - amount_lte?: InputMaybe; - amount_not_eq?: InputMaybe; - amount_not_in?: InputMaybe>; - dailyStatId?: InputMaybe; - dailyStatId_isNull?: InputMaybe; +export type OTokenRebaseWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + apy?: InputMaybe; + apy_isNull?: InputMaybe; + blockNumber_eq?: InputMaybe; + blockNumber_gt?: InputMaybe; + blockNumber_gte?: InputMaybe; + blockNumber_in?: InputMaybe>; + blockNumber_isNull?: InputMaybe; + blockNumber_lt?: InputMaybe; + blockNumber_lte?: InputMaybe; + blockNumber_not_eq?: InputMaybe; + blockNumber_not_in?: InputMaybe>; + chainId_eq?: InputMaybe; + chainId_gt?: InputMaybe; + chainId_gte?: InputMaybe; + chainId_in?: InputMaybe>; + chainId_isNull?: InputMaybe; + chainId_lt?: InputMaybe; + chainId_lte?: InputMaybe; + chainId_not_eq?: InputMaybe; + chainId_not_in?: InputMaybe>; + feeETH_eq?: InputMaybe; + feeETH_gt?: InputMaybe; + feeETH_gte?: InputMaybe; + feeETH_in?: InputMaybe>; + feeETH_isNull?: InputMaybe; + feeETH_lt?: InputMaybe; + feeETH_lte?: InputMaybe; + feeETH_not_eq?: InputMaybe; + feeETH_not_in?: InputMaybe>; + feeUSD_eq?: InputMaybe; + feeUSD_gt?: InputMaybe; + feeUSD_gte?: InputMaybe; + feeUSD_in?: InputMaybe>; + feeUSD_isNull?: InputMaybe; + feeUSD_lt?: InputMaybe; + feeUSD_lte?: InputMaybe; + feeUSD_not_eq?: InputMaybe; + feeUSD_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -8721,103 +7743,171 @@ export type OusdCollateralDailyStatWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - price_eq?: InputMaybe; - price_gt?: InputMaybe; - price_gte?: InputMaybe; - price_in?: InputMaybe>; - price_isNull?: InputMaybe; - price_lt?: InputMaybe; - price_lte?: InputMaybe; - price_not_eq?: InputMaybe; - price_not_in?: InputMaybe>; - symbol_contains?: InputMaybe; - symbol_containsInsensitive?: InputMaybe; - symbol_endsWith?: InputMaybe; - symbol_eq?: InputMaybe; - symbol_gt?: InputMaybe; - symbol_gte?: InputMaybe; - symbol_in?: InputMaybe>; - symbol_isNull?: InputMaybe; - symbol_lt?: InputMaybe; - symbol_lte?: InputMaybe; - symbol_not_contains?: InputMaybe; - symbol_not_containsInsensitive?: InputMaybe; - symbol_not_endsWith?: InputMaybe; - symbol_not_eq?: InputMaybe; - symbol_not_in?: InputMaybe>; - symbol_not_startsWith?: InputMaybe; - symbol_startsWith?: InputMaybe; - value_eq?: InputMaybe; - value_gt?: InputMaybe; - value_gte?: InputMaybe; - value_in?: InputMaybe>; - value_isNull?: InputMaybe; - value_lt?: InputMaybe; - value_lte?: InputMaybe; - value_not_eq?: InputMaybe; - value_not_in?: InputMaybe>; -}; - -export type OusdCollateralDailyStatsConnection = { - __typename?: 'OUSDCollateralDailyStatsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; + rebasingCreditsPerToken_eq?: InputMaybe; + rebasingCreditsPerToken_gt?: InputMaybe; + rebasingCreditsPerToken_gte?: InputMaybe; + rebasingCreditsPerToken_in?: InputMaybe>; + rebasingCreditsPerToken_isNull?: InputMaybe; + rebasingCreditsPerToken_lt?: InputMaybe; + rebasingCreditsPerToken_lte?: InputMaybe; + rebasingCreditsPerToken_not_eq?: InputMaybe; + rebasingCreditsPerToken_not_in?: InputMaybe>; + rebasingCredits_eq?: InputMaybe; + rebasingCredits_gt?: InputMaybe; + rebasingCredits_gte?: InputMaybe; + rebasingCredits_in?: InputMaybe>; + rebasingCredits_isNull?: InputMaybe; + rebasingCredits_lt?: InputMaybe; + rebasingCredits_lte?: InputMaybe; + rebasingCredits_not_eq?: InputMaybe; + rebasingCredits_not_in?: InputMaybe>; + timestamp_eq?: InputMaybe; + timestamp_gt?: InputMaybe; + timestamp_gte?: InputMaybe; + timestamp_in?: InputMaybe>; + timestamp_isNull?: InputMaybe; + timestamp_lt?: InputMaybe; + timestamp_lte?: InputMaybe; + timestamp_not_eq?: InputMaybe; + timestamp_not_in?: InputMaybe>; + totalSupply_eq?: InputMaybe; + totalSupply_gt?: InputMaybe; + totalSupply_gte?: InputMaybe; + totalSupply_in?: InputMaybe>; + totalSupply_isNull?: InputMaybe; + totalSupply_lt?: InputMaybe; + totalSupply_lte?: InputMaybe; + totalSupply_not_eq?: InputMaybe; + totalSupply_not_in?: InputMaybe>; + txHash_contains?: InputMaybe; + txHash_containsInsensitive?: InputMaybe; + txHash_endsWith?: InputMaybe; + txHash_eq?: InputMaybe; + txHash_gt?: InputMaybe; + txHash_gte?: InputMaybe; + txHash_in?: InputMaybe>; + txHash_isNull?: InputMaybe; + txHash_lt?: InputMaybe; + txHash_lte?: InputMaybe; + txHash_not_contains?: InputMaybe; + txHash_not_containsInsensitive?: InputMaybe; + txHash_not_endsWith?: InputMaybe; + txHash_not_eq?: InputMaybe; + txHash_not_in?: InputMaybe>; + txHash_not_startsWith?: InputMaybe; + txHash_startsWith?: InputMaybe; + yieldETH_eq?: InputMaybe; + yieldETH_gt?: InputMaybe; + yieldETH_gte?: InputMaybe; + yieldETH_in?: InputMaybe>; + yieldETH_isNull?: InputMaybe; + yieldETH_lt?: InputMaybe; + yieldETH_lte?: InputMaybe; + yieldETH_not_eq?: InputMaybe; + yieldETH_not_in?: InputMaybe>; + yieldUSD_eq?: InputMaybe; + yieldUSD_gt?: InputMaybe; + yieldUSD_gte?: InputMaybe; + yieldUSD_in?: InputMaybe>; + yieldUSD_isNull?: InputMaybe; + yieldUSD_lt?: InputMaybe; + yieldUSD_lte?: InputMaybe; + yieldUSD_not_eq?: InputMaybe; + yieldUSD_not_in?: InputMaybe>; }; -export type OusdCompoundStrategiesConnection = { - __typename?: 'OUSDCompoundStrategiesConnection'; - edges: Array; +export type OTokenRebasesConnection = { + __typename?: 'OTokenRebasesConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export type OusdCompoundStrategy = { - __typename?: 'OUSDCompoundStrategy'; +export type OTokenVault = { + __typename?: 'OTokenVault'; + address: Scalars['String']['output']; blockNumber: Scalars['Int']['output']; - dai: Scalars['BigInt']['output']; + chainId: Scalars['Int']['output']; id: Scalars['String']['output']; + otoken: Scalars['String']['output']; timestamp: Scalars['DateTime']['output']; - usdc: Scalars['BigInt']['output']; - usdt: Scalars['BigInt']['output']; + totalValue: Scalars['BigInt']['output']; }; -export type OusdCompoundStrategyEdge = { - __typename?: 'OUSDCompoundStrategyEdge'; +export type OTokenVaultEdge = { + __typename?: 'OTokenVaultEdge'; cursor: Scalars['String']['output']; - node: OusdCompoundStrategy; + node: OTokenVault; }; -export enum OusdCompoundStrategyOrderByInput { +export enum OTokenVaultOrderByInput { + AddressAsc = 'address_ASC', + AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', + AddressDesc = 'address_DESC', + AddressDescNullsLast = 'address_DESC_NULLS_LAST', BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - DaiAsc = 'dai_ASC', - DaiAscNullsFirst = 'dai_ASC_NULLS_FIRST', - DaiDesc = 'dai_DESC', - DaiDescNullsLast = 'dai_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', + OtokenAsc = 'otoken_ASC', + OtokenAscNullsFirst = 'otoken_ASC_NULLS_FIRST', + OtokenDesc = 'otoken_DESC', + OtokenDescNullsLast = 'otoken_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - UsdcAsc = 'usdc_ASC', - UsdcAscNullsFirst = 'usdc_ASC_NULLS_FIRST', - UsdcDesc = 'usdc_DESC', - UsdcDescNullsLast = 'usdc_DESC_NULLS_LAST', - UsdtAsc = 'usdt_ASC', - UsdtAscNullsFirst = 'usdt_ASC_NULLS_FIRST', - UsdtDesc = 'usdt_DESC', - UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' + TotalValueAsc = 'totalValue_ASC', + TotalValueAscNullsFirst = 'totalValue_ASC_NULLS_FIRST', + TotalValueDesc = 'totalValue_DESC', + TotalValueDescNullsLast = 'totalValue_DESC_NULLS_LAST' } -export type OusdCompoundStrategyWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OTokenVaultWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + address_contains?: InputMaybe; + address_containsInsensitive?: InputMaybe; + address_endsWith?: InputMaybe; + address_eq?: InputMaybe; + address_gt?: InputMaybe; + address_gte?: InputMaybe; + address_in?: InputMaybe>; + address_isNull?: InputMaybe; + address_lt?: InputMaybe; + address_lte?: InputMaybe; + address_not_contains?: InputMaybe; + address_not_containsInsensitive?: InputMaybe; + address_not_endsWith?: InputMaybe; + address_not_eq?: InputMaybe; + address_not_in?: InputMaybe>; + address_not_startsWith?: InputMaybe; + address_startsWith?: InputMaybe; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -8827,15 +7917,15 @@ export type OusdCompoundStrategyWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; - dai_eq?: InputMaybe; - dai_gt?: InputMaybe; - dai_gte?: InputMaybe; - dai_in?: InputMaybe>; - dai_isNull?: InputMaybe; - dai_lt?: InputMaybe; - dai_lte?: InputMaybe; - dai_not_eq?: InputMaybe; - dai_not_in?: InputMaybe>; + chainId_eq?: InputMaybe; + chainId_gt?: InputMaybe; + chainId_gte?: InputMaybe; + chainId_in?: InputMaybe>; + chainId_isNull?: InputMaybe; + chainId_lt?: InputMaybe; + chainId_lte?: InputMaybe; + chainId_not_eq?: InputMaybe; + chainId_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -8853,6 +7943,23 @@ export type OusdCompoundStrategyWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -8862,72 +7969,27 @@ export type OusdCompoundStrategyWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - usdc_eq?: InputMaybe; - usdc_gt?: InputMaybe; - usdc_gte?: InputMaybe; - usdc_in?: InputMaybe>; - usdc_isNull?: InputMaybe; - usdc_lt?: InputMaybe; - usdc_lte?: InputMaybe; - usdc_not_eq?: InputMaybe; - usdc_not_in?: InputMaybe>; - usdt_eq?: InputMaybe; - usdt_gt?: InputMaybe; - usdt_gte?: InputMaybe; - usdt_in?: InputMaybe>; - usdt_isNull?: InputMaybe; - usdt_lt?: InputMaybe; - usdt_lte?: InputMaybe; - usdt_not_eq?: InputMaybe; - usdt_not_in?: InputMaybe>; -}; - -export type OusdConvexLusdPlus3Crv = { - __typename?: 'OUSDConvexLUSDPlus3Crv'; - blockNumber: Scalars['Int']['output']; - dai: Scalars['BigInt']['output']; - id: Scalars['String']['output']; - timestamp: Scalars['DateTime']['output']; - usdc: Scalars['BigInt']['output']; - usdt: Scalars['BigInt']['output']; + totalValue_eq?: InputMaybe; + totalValue_gt?: InputMaybe; + totalValue_gte?: InputMaybe; + totalValue_in?: InputMaybe>; + totalValue_isNull?: InputMaybe; + totalValue_lt?: InputMaybe; + totalValue_lte?: InputMaybe; + totalValue_not_eq?: InputMaybe; + totalValue_not_in?: InputMaybe>; }; -export type OusdConvexLusdPlus3CrvEdge = { - __typename?: 'OUSDConvexLUSDPlus3CrvEdge'; - cursor: Scalars['String']['output']; - node: OusdConvexLusdPlus3Crv; +export type OTokenVaultsConnection = { + __typename?: 'OTokenVaultsConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; }; -export enum OusdConvexLusdPlus3CrvOrderByInput { - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - DaiAsc = 'dai_ASC', - DaiAscNullsFirst = 'dai_ASC_NULLS_FIRST', - DaiDesc = 'dai_DESC', - DaiDescNullsLast = 'dai_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - UsdcAsc = 'usdc_ASC', - UsdcAscNullsFirst = 'usdc_ASC_NULLS_FIRST', - UsdcDesc = 'usdc_DESC', - UsdcDescNullsLast = 'usdc_DESC_NULLS_LAST', - UsdtAsc = 'usdt_ASC', - UsdtAscNullsFirst = 'usdt_ASC_NULLS_FIRST', - UsdtDesc = 'usdt_DESC', - UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' -} - -export type OusdConvexLusdPlus3CrvWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OTokenWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -8937,15 +7999,15 @@ export type OusdConvexLusdPlus3CrvWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; - dai_eq?: InputMaybe; - dai_gt?: InputMaybe; - dai_gte?: InputMaybe; - dai_in?: InputMaybe>; - dai_isNull?: InputMaybe; - dai_lt?: InputMaybe; - dai_lte?: InputMaybe; - dai_not_eq?: InputMaybe; - dai_not_in?: InputMaybe>; + chainId_eq?: InputMaybe; + chainId_gt?: InputMaybe; + chainId_gte?: InputMaybe; + chainId_in?: InputMaybe>; + chainId_isNull?: InputMaybe; + chainId_lt?: InputMaybe; + chainId_lte?: InputMaybe; + chainId_not_eq?: InputMaybe; + chainId_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -8963,6 +8025,41 @@ export type OusdConvexLusdPlus3CrvWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; + nonRebasingSupply_eq?: InputMaybe; + nonRebasingSupply_gt?: InputMaybe; + nonRebasingSupply_gte?: InputMaybe; + nonRebasingSupply_in?: InputMaybe>; + nonRebasingSupply_isNull?: InputMaybe; + nonRebasingSupply_lt?: InputMaybe; + nonRebasingSupply_lte?: InputMaybe; + nonRebasingSupply_not_eq?: InputMaybe; + nonRebasingSupply_not_in?: InputMaybe>; + otoken_contains?: InputMaybe; + otoken_containsInsensitive?: InputMaybe; + otoken_endsWith?: InputMaybe; + otoken_eq?: InputMaybe; + otoken_gt?: InputMaybe; + otoken_gte?: InputMaybe; + otoken_in?: InputMaybe>; + otoken_isNull?: InputMaybe; + otoken_lt?: InputMaybe; + otoken_lte?: InputMaybe; + otoken_not_contains?: InputMaybe; + otoken_not_containsInsensitive?: InputMaybe; + otoken_not_endsWith?: InputMaybe; + otoken_not_eq?: InputMaybe; + otoken_not_in?: InputMaybe>; + otoken_not_startsWith?: InputMaybe; + otoken_startsWith?: InputMaybe; + rebasingSupply_eq?: InputMaybe; + rebasingSupply_gt?: InputMaybe; + rebasingSupply_gte?: InputMaybe; + rebasingSupply_in?: InputMaybe>; + rebasingSupply_isNull?: InputMaybe; + rebasingSupply_lt?: InputMaybe; + rebasingSupply_lte?: InputMaybe; + rebasingSupply_not_eq?: InputMaybe; + rebasingSupply_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -8972,42 +8069,33 @@ export type OusdConvexLusdPlus3CrvWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - usdc_eq?: InputMaybe; - usdc_gt?: InputMaybe; - usdc_gte?: InputMaybe; - usdc_in?: InputMaybe>; - usdc_isNull?: InputMaybe; - usdc_lt?: InputMaybe; - usdc_lte?: InputMaybe; - usdc_not_eq?: InputMaybe; - usdc_not_in?: InputMaybe>; - usdt_eq?: InputMaybe; - usdt_gt?: InputMaybe; - usdt_gte?: InputMaybe; - usdt_in?: InputMaybe>; - usdt_isNull?: InputMaybe; - usdt_lt?: InputMaybe; - usdt_lte?: InputMaybe; - usdt_not_eq?: InputMaybe; - usdt_not_in?: InputMaybe>; + totalSupply_eq?: InputMaybe; + totalSupply_gt?: InputMaybe; + totalSupply_gte?: InputMaybe; + totalSupply_in?: InputMaybe>; + totalSupply_isNull?: InputMaybe; + totalSupply_lt?: InputMaybe; + totalSupply_lte?: InputMaybe; + totalSupply_not_eq?: InputMaybe; + totalSupply_not_in?: InputMaybe>; }; -export type OusdConvexLusdPlus3CrvsConnection = { - __typename?: 'OUSDConvexLUSDPlus3CrvsConnection'; - edges: Array; +export type OTokensConnection = { + __typename?: 'OTokensConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export type OusdConvexStrategiesConnection = { - __typename?: 'OUSDConvexStrategiesConnection'; - edges: Array; +export type OusdAaveStrategiesConnection = { + __typename?: 'OUSDAaveStrategiesConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export type OusdConvexStrategy = { - __typename?: 'OUSDConvexStrategy'; +export type OusdAaveStrategy = { + __typename?: 'OUSDAaveStrategy'; blockNumber: Scalars['Int']['output']; dai: Scalars['BigInt']['output']; id: Scalars['String']['output']; @@ -9016,13 +8104,13 @@ export type OusdConvexStrategy = { usdt: Scalars['BigInt']['output']; }; -export type OusdConvexStrategyEdge = { - __typename?: 'OUSDConvexStrategyEdge'; +export type OusdAaveStrategyEdge = { + __typename?: 'OUSDAaveStrategyEdge'; cursor: Scalars['String']['output']; - node: OusdConvexStrategy; + node: OusdAaveStrategy; }; -export enum OusdConvexStrategyOrderByInput { +export enum OusdAaveStrategyOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', @@ -9049,9 +8137,9 @@ export enum OusdConvexStrategyOrderByInput { UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' } -export type OusdConvexStrategyWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OusdAaveStrategyWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -9116,249 +8204,297 @@ export type OusdConvexStrategyWhereInput = { usdt_not_in?: InputMaybe>; }; -export type OusdDailyStat = { - __typename?: 'OUSDDailyStat'; - amoSupply: Scalars['BigInt']['output']; - apr: Scalars['Float']['output']; - apy: Scalars['Float']['output']; - apy7DayAvg: Scalars['Float']['output']; - apy14DayAvg: Scalars['Float']['output']; - apy30DayAvg: Scalars['Float']['output']; - blockNumber: Scalars['Int']['output']; - collateral: Array; - dripperWETH: Scalars['BigInt']['output']; - feesETH: Scalars['BigInt']['output']; - feesETH7Day: Scalars['BigInt']['output']; - feesETHAllTime: Scalars['BigInt']['output']; - feesUSD: Scalars['BigInt']['output']; - feesUSD7Day: Scalars['BigInt']['output']; - feesUSDAllTime: Scalars['BigInt']['output']; - holdersOverThreshold: Scalars['Int']['output']; - id: Scalars['String']['output']; - marketCapUSD: Scalars['Float']['output']; - nonRebasingSupply: Scalars['BigInt']['output']; - pegPrice: Scalars['BigInt']['output']; - rebasingSupply: Scalars['BigInt']['output']; - strategies: Array; - timestamp: Scalars['DateTime']['output']; - totalSupply: Scalars['BigInt']['output']; - totalSupplyUSD: Scalars['Float']['output']; - tradingVolumeUSD: Scalars['Float']['output']; - wrappedSupply: Scalars['BigInt']['output']; - yieldETH: Scalars['BigInt']['output']; - yieldETH7Day: Scalars['BigInt']['output']; - yieldETHAllTime: Scalars['BigInt']['output']; - yieldUSD: Scalars['BigInt']['output']; - yieldUSD7Day: Scalars['BigInt']['output']; - yieldUSDAllTime: Scalars['BigInt']['output']; +export type OusdCollateralDailyStat = { + __typename?: 'OUSDCollateralDailyStat'; + amount: Scalars['BigInt']['output']; + dailyStatId: OusdDailyStat; + id: Scalars['String']['output']; + price: Scalars['BigInt']['output']; + symbol: Scalars['String']['output']; + value: Scalars['BigInt']['output']; +}; + +export type OusdCollateralDailyStatEdge = { + __typename?: 'OUSDCollateralDailyStatEdge'; + cursor: Scalars['String']['output']; + node: OusdCollateralDailyStat; +}; + +export enum OusdCollateralDailyStatOrderByInput { + AmountAsc = 'amount_ASC', + AmountAscNullsFirst = 'amount_ASC_NULLS_FIRST', + AmountDesc = 'amount_DESC', + AmountDescNullsLast = 'amount_DESC_NULLS_LAST', + DailyStatIdAmoSupplyAsc = 'dailyStatId_amoSupply_ASC', + DailyStatIdAmoSupplyAscNullsFirst = 'dailyStatId_amoSupply_ASC_NULLS_FIRST', + DailyStatIdAmoSupplyDesc = 'dailyStatId_amoSupply_DESC', + DailyStatIdAmoSupplyDescNullsLast = 'dailyStatId_amoSupply_DESC_NULLS_LAST', + DailyStatIdAprAsc = 'dailyStatId_apr_ASC', + DailyStatIdAprAscNullsFirst = 'dailyStatId_apr_ASC_NULLS_FIRST', + DailyStatIdAprDesc = 'dailyStatId_apr_DESC', + DailyStatIdAprDescNullsLast = 'dailyStatId_apr_DESC_NULLS_LAST', + DailyStatIdApy7DayAvgAsc = 'dailyStatId_apy7DayAvg_ASC', + DailyStatIdApy7DayAvgAscNullsFirst = 'dailyStatId_apy7DayAvg_ASC_NULLS_FIRST', + DailyStatIdApy7DayAvgDesc = 'dailyStatId_apy7DayAvg_DESC', + DailyStatIdApy7DayAvgDescNullsLast = 'dailyStatId_apy7DayAvg_DESC_NULLS_LAST', + DailyStatIdApy14DayAvgAsc = 'dailyStatId_apy14DayAvg_ASC', + DailyStatIdApy14DayAvgAscNullsFirst = 'dailyStatId_apy14DayAvg_ASC_NULLS_FIRST', + DailyStatIdApy14DayAvgDesc = 'dailyStatId_apy14DayAvg_DESC', + DailyStatIdApy14DayAvgDescNullsLast = 'dailyStatId_apy14DayAvg_DESC_NULLS_LAST', + DailyStatIdApy30DayAvgAsc = 'dailyStatId_apy30DayAvg_ASC', + DailyStatIdApy30DayAvgAscNullsFirst = 'dailyStatId_apy30DayAvg_ASC_NULLS_FIRST', + DailyStatIdApy30DayAvgDesc = 'dailyStatId_apy30DayAvg_DESC', + DailyStatIdApy30DayAvgDescNullsLast = 'dailyStatId_apy30DayAvg_DESC_NULLS_LAST', + DailyStatIdApyAsc = 'dailyStatId_apy_ASC', + DailyStatIdApyAscNullsFirst = 'dailyStatId_apy_ASC_NULLS_FIRST', + DailyStatIdApyDesc = 'dailyStatId_apy_DESC', + DailyStatIdApyDescNullsLast = 'dailyStatId_apy_DESC_NULLS_LAST', + DailyStatIdBlockNumberAsc = 'dailyStatId_blockNumber_ASC', + DailyStatIdBlockNumberAscNullsFirst = 'dailyStatId_blockNumber_ASC_NULLS_FIRST', + DailyStatIdBlockNumberDesc = 'dailyStatId_blockNumber_DESC', + DailyStatIdBlockNumberDescNullsLast = 'dailyStatId_blockNumber_DESC_NULLS_LAST', + DailyStatIdDripperWethAsc = 'dailyStatId_dripperWETH_ASC', + DailyStatIdDripperWethAscNullsFirst = 'dailyStatId_dripperWETH_ASC_NULLS_FIRST', + DailyStatIdDripperWethDesc = 'dailyStatId_dripperWETH_DESC', + DailyStatIdDripperWethDescNullsLast = 'dailyStatId_dripperWETH_DESC_NULLS_LAST', + DailyStatIdFeesEth7DayAsc = 'dailyStatId_feesETH7Day_ASC', + DailyStatIdFeesEth7DayAscNullsFirst = 'dailyStatId_feesETH7Day_ASC_NULLS_FIRST', + DailyStatIdFeesEth7DayDesc = 'dailyStatId_feesETH7Day_DESC', + DailyStatIdFeesEth7DayDescNullsLast = 'dailyStatId_feesETH7Day_DESC_NULLS_LAST', + DailyStatIdFeesEthAllTimeAsc = 'dailyStatId_feesETHAllTime_ASC', + DailyStatIdFeesEthAllTimeAscNullsFirst = 'dailyStatId_feesETHAllTime_ASC_NULLS_FIRST', + DailyStatIdFeesEthAllTimeDesc = 'dailyStatId_feesETHAllTime_DESC', + DailyStatIdFeesEthAllTimeDescNullsLast = 'dailyStatId_feesETHAllTime_DESC_NULLS_LAST', + DailyStatIdFeesEthAsc = 'dailyStatId_feesETH_ASC', + DailyStatIdFeesEthAscNullsFirst = 'dailyStatId_feesETH_ASC_NULLS_FIRST', + DailyStatIdFeesEthDesc = 'dailyStatId_feesETH_DESC', + DailyStatIdFeesEthDescNullsLast = 'dailyStatId_feesETH_DESC_NULLS_LAST', + DailyStatIdFeesUsd7DayAsc = 'dailyStatId_feesUSD7Day_ASC', + DailyStatIdFeesUsd7DayAscNullsFirst = 'dailyStatId_feesUSD7Day_ASC_NULLS_FIRST', + DailyStatIdFeesUsd7DayDesc = 'dailyStatId_feesUSD7Day_DESC', + DailyStatIdFeesUsd7DayDescNullsLast = 'dailyStatId_feesUSD7Day_DESC_NULLS_LAST', + DailyStatIdFeesUsdAllTimeAsc = 'dailyStatId_feesUSDAllTime_ASC', + DailyStatIdFeesUsdAllTimeAscNullsFirst = 'dailyStatId_feesUSDAllTime_ASC_NULLS_FIRST', + DailyStatIdFeesUsdAllTimeDesc = 'dailyStatId_feesUSDAllTime_DESC', + DailyStatIdFeesUsdAllTimeDescNullsLast = 'dailyStatId_feesUSDAllTime_DESC_NULLS_LAST', + DailyStatIdFeesUsdAsc = 'dailyStatId_feesUSD_ASC', + DailyStatIdFeesUsdAscNullsFirst = 'dailyStatId_feesUSD_ASC_NULLS_FIRST', + DailyStatIdFeesUsdDesc = 'dailyStatId_feesUSD_DESC', + DailyStatIdFeesUsdDescNullsLast = 'dailyStatId_feesUSD_DESC_NULLS_LAST', + DailyStatIdHoldersOverThresholdAsc = 'dailyStatId_holdersOverThreshold_ASC', + DailyStatIdHoldersOverThresholdAscNullsFirst = 'dailyStatId_holdersOverThreshold_ASC_NULLS_FIRST', + DailyStatIdHoldersOverThresholdDesc = 'dailyStatId_holdersOverThreshold_DESC', + DailyStatIdHoldersOverThresholdDescNullsLast = 'dailyStatId_holdersOverThreshold_DESC_NULLS_LAST', + DailyStatIdIdAsc = 'dailyStatId_id_ASC', + DailyStatIdIdAscNullsFirst = 'dailyStatId_id_ASC_NULLS_FIRST', + DailyStatIdIdDesc = 'dailyStatId_id_DESC', + DailyStatIdIdDescNullsLast = 'dailyStatId_id_DESC_NULLS_LAST', + DailyStatIdMarketCapUsdAsc = 'dailyStatId_marketCapUSD_ASC', + DailyStatIdMarketCapUsdAscNullsFirst = 'dailyStatId_marketCapUSD_ASC_NULLS_FIRST', + DailyStatIdMarketCapUsdDesc = 'dailyStatId_marketCapUSD_DESC', + DailyStatIdMarketCapUsdDescNullsLast = 'dailyStatId_marketCapUSD_DESC_NULLS_LAST', + DailyStatIdNonRebasingSupplyAsc = 'dailyStatId_nonRebasingSupply_ASC', + DailyStatIdNonRebasingSupplyAscNullsFirst = 'dailyStatId_nonRebasingSupply_ASC_NULLS_FIRST', + DailyStatIdNonRebasingSupplyDesc = 'dailyStatId_nonRebasingSupply_DESC', + DailyStatIdNonRebasingSupplyDescNullsLast = 'dailyStatId_nonRebasingSupply_DESC_NULLS_LAST', + DailyStatIdPegPriceAsc = 'dailyStatId_pegPrice_ASC', + DailyStatIdPegPriceAscNullsFirst = 'dailyStatId_pegPrice_ASC_NULLS_FIRST', + DailyStatIdPegPriceDesc = 'dailyStatId_pegPrice_DESC', + DailyStatIdPegPriceDescNullsLast = 'dailyStatId_pegPrice_DESC_NULLS_LAST', + DailyStatIdRebasingSupplyAsc = 'dailyStatId_rebasingSupply_ASC', + DailyStatIdRebasingSupplyAscNullsFirst = 'dailyStatId_rebasingSupply_ASC_NULLS_FIRST', + DailyStatIdRebasingSupplyDesc = 'dailyStatId_rebasingSupply_DESC', + DailyStatIdRebasingSupplyDescNullsLast = 'dailyStatId_rebasingSupply_DESC_NULLS_LAST', + DailyStatIdTimestampAsc = 'dailyStatId_timestamp_ASC', + DailyStatIdTimestampAscNullsFirst = 'dailyStatId_timestamp_ASC_NULLS_FIRST', + DailyStatIdTimestampDesc = 'dailyStatId_timestamp_DESC', + DailyStatIdTimestampDescNullsLast = 'dailyStatId_timestamp_DESC_NULLS_LAST', + DailyStatIdTotalSupplyUsdAsc = 'dailyStatId_totalSupplyUSD_ASC', + DailyStatIdTotalSupplyUsdAscNullsFirst = 'dailyStatId_totalSupplyUSD_ASC_NULLS_FIRST', + DailyStatIdTotalSupplyUsdDesc = 'dailyStatId_totalSupplyUSD_DESC', + DailyStatIdTotalSupplyUsdDescNullsLast = 'dailyStatId_totalSupplyUSD_DESC_NULLS_LAST', + DailyStatIdTotalSupplyAsc = 'dailyStatId_totalSupply_ASC', + DailyStatIdTotalSupplyAscNullsFirst = 'dailyStatId_totalSupply_ASC_NULLS_FIRST', + DailyStatIdTotalSupplyDesc = 'dailyStatId_totalSupply_DESC', + DailyStatIdTotalSupplyDescNullsLast = 'dailyStatId_totalSupply_DESC_NULLS_LAST', + DailyStatIdTradingVolumeUsdAsc = 'dailyStatId_tradingVolumeUSD_ASC', + DailyStatIdTradingVolumeUsdAscNullsFirst = 'dailyStatId_tradingVolumeUSD_ASC_NULLS_FIRST', + DailyStatIdTradingVolumeUsdDesc = 'dailyStatId_tradingVolumeUSD_DESC', + DailyStatIdTradingVolumeUsdDescNullsLast = 'dailyStatId_tradingVolumeUSD_DESC_NULLS_LAST', + DailyStatIdWrappedSupplyAsc = 'dailyStatId_wrappedSupply_ASC', + DailyStatIdWrappedSupplyAscNullsFirst = 'dailyStatId_wrappedSupply_ASC_NULLS_FIRST', + DailyStatIdWrappedSupplyDesc = 'dailyStatId_wrappedSupply_DESC', + DailyStatIdWrappedSupplyDescNullsLast = 'dailyStatId_wrappedSupply_DESC_NULLS_LAST', + DailyStatIdYieldEth7DayAsc = 'dailyStatId_yieldETH7Day_ASC', + DailyStatIdYieldEth7DayAscNullsFirst = 'dailyStatId_yieldETH7Day_ASC_NULLS_FIRST', + DailyStatIdYieldEth7DayDesc = 'dailyStatId_yieldETH7Day_DESC', + DailyStatIdYieldEth7DayDescNullsLast = 'dailyStatId_yieldETH7Day_DESC_NULLS_LAST', + DailyStatIdYieldEthAllTimeAsc = 'dailyStatId_yieldETHAllTime_ASC', + DailyStatIdYieldEthAllTimeAscNullsFirst = 'dailyStatId_yieldETHAllTime_ASC_NULLS_FIRST', + DailyStatIdYieldEthAllTimeDesc = 'dailyStatId_yieldETHAllTime_DESC', + DailyStatIdYieldEthAllTimeDescNullsLast = 'dailyStatId_yieldETHAllTime_DESC_NULLS_LAST', + DailyStatIdYieldEthAsc = 'dailyStatId_yieldETH_ASC', + DailyStatIdYieldEthAscNullsFirst = 'dailyStatId_yieldETH_ASC_NULLS_FIRST', + DailyStatIdYieldEthDesc = 'dailyStatId_yieldETH_DESC', + DailyStatIdYieldEthDescNullsLast = 'dailyStatId_yieldETH_DESC_NULLS_LAST', + DailyStatIdYieldUsd7DayAsc = 'dailyStatId_yieldUSD7Day_ASC', + DailyStatIdYieldUsd7DayAscNullsFirst = 'dailyStatId_yieldUSD7Day_ASC_NULLS_FIRST', + DailyStatIdYieldUsd7DayDesc = 'dailyStatId_yieldUSD7Day_DESC', + DailyStatIdYieldUsd7DayDescNullsLast = 'dailyStatId_yieldUSD7Day_DESC_NULLS_LAST', + DailyStatIdYieldUsdAllTimeAsc = 'dailyStatId_yieldUSDAllTime_ASC', + DailyStatIdYieldUsdAllTimeAscNullsFirst = 'dailyStatId_yieldUSDAllTime_ASC_NULLS_FIRST', + DailyStatIdYieldUsdAllTimeDesc = 'dailyStatId_yieldUSDAllTime_DESC', + DailyStatIdYieldUsdAllTimeDescNullsLast = 'dailyStatId_yieldUSDAllTime_DESC_NULLS_LAST', + DailyStatIdYieldUsdAsc = 'dailyStatId_yieldUSD_ASC', + DailyStatIdYieldUsdAscNullsFirst = 'dailyStatId_yieldUSD_ASC_NULLS_FIRST', + DailyStatIdYieldUsdDesc = 'dailyStatId_yieldUSD_DESC', + DailyStatIdYieldUsdDescNullsLast = 'dailyStatId_yieldUSD_DESC_NULLS_LAST', + IdAsc = 'id_ASC', + IdAscNullsFirst = 'id_ASC_NULLS_FIRST', + IdDesc = 'id_DESC', + IdDescNullsLast = 'id_DESC_NULLS_LAST', + PriceAsc = 'price_ASC', + PriceAscNullsFirst = 'price_ASC_NULLS_FIRST', + PriceDesc = 'price_DESC', + PriceDescNullsLast = 'price_DESC_NULLS_LAST', + SymbolAsc = 'symbol_ASC', + SymbolAscNullsFirst = 'symbol_ASC_NULLS_FIRST', + SymbolDesc = 'symbol_DESC', + SymbolDescNullsLast = 'symbol_DESC_NULLS_LAST', + ValueAsc = 'value_ASC', + ValueAscNullsFirst = 'value_ASC_NULLS_FIRST', + ValueDesc = 'value_DESC', + ValueDescNullsLast = 'value_DESC_NULLS_LAST' +} + +export type OusdCollateralDailyStatWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + amount_eq?: InputMaybe; + amount_gt?: InputMaybe; + amount_gte?: InputMaybe; + amount_in?: InputMaybe>; + amount_isNull?: InputMaybe; + amount_lt?: InputMaybe; + amount_lte?: InputMaybe; + amount_not_eq?: InputMaybe; + amount_not_in?: InputMaybe>; + dailyStatId?: InputMaybe; + dailyStatId_isNull?: InputMaybe; + id_contains?: InputMaybe; + id_containsInsensitive?: InputMaybe; + id_endsWith?: InputMaybe; + id_eq?: InputMaybe; + id_gt?: InputMaybe; + id_gte?: InputMaybe; + id_in?: InputMaybe>; + id_isNull?: InputMaybe; + id_lt?: InputMaybe; + id_lte?: InputMaybe; + id_not_contains?: InputMaybe; + id_not_containsInsensitive?: InputMaybe; + id_not_endsWith?: InputMaybe; + id_not_eq?: InputMaybe; + id_not_in?: InputMaybe>; + id_not_startsWith?: InputMaybe; + id_startsWith?: InputMaybe; + price_eq?: InputMaybe; + price_gt?: InputMaybe; + price_gte?: InputMaybe; + price_in?: InputMaybe>; + price_isNull?: InputMaybe; + price_lt?: InputMaybe; + price_lte?: InputMaybe; + price_not_eq?: InputMaybe; + price_not_in?: InputMaybe>; + symbol_contains?: InputMaybe; + symbol_containsInsensitive?: InputMaybe; + symbol_endsWith?: InputMaybe; + symbol_eq?: InputMaybe; + symbol_gt?: InputMaybe; + symbol_gte?: InputMaybe; + symbol_in?: InputMaybe>; + symbol_isNull?: InputMaybe; + symbol_lt?: InputMaybe; + symbol_lte?: InputMaybe; + symbol_not_contains?: InputMaybe; + symbol_not_containsInsensitive?: InputMaybe; + symbol_not_endsWith?: InputMaybe; + symbol_not_eq?: InputMaybe; + symbol_not_in?: InputMaybe>; + symbol_not_startsWith?: InputMaybe; + symbol_startsWith?: InputMaybe; + value_eq?: InputMaybe; + value_gt?: InputMaybe; + value_gte?: InputMaybe; + value_in?: InputMaybe>; + value_isNull?: InputMaybe; + value_lt?: InputMaybe; + value_lte?: InputMaybe; + value_not_eq?: InputMaybe; + value_not_in?: InputMaybe>; +}; + +export type OusdCollateralDailyStatsConnection = { + __typename?: 'OUSDCollateralDailyStatsConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; }; - -export type OusdDailyStatCollateralArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; +export type OusdCompoundStrategiesConnection = { + __typename?: 'OUSDCompoundStrategiesConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; }; - -export type OusdDailyStatStrategiesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; +export type OusdCompoundStrategy = { + __typename?: 'OUSDCompoundStrategy'; + blockNumber: Scalars['Int']['output']; + dai: Scalars['BigInt']['output']; + id: Scalars['String']['output']; + timestamp: Scalars['DateTime']['output']; + usdc: Scalars['BigInt']['output']; + usdt: Scalars['BigInt']['output']; }; -export type OusdDailyStatEdge = { - __typename?: 'OUSDDailyStatEdge'; +export type OusdCompoundStrategyEdge = { + __typename?: 'OUSDCompoundStrategyEdge'; cursor: Scalars['String']['output']; - node: OusdDailyStat; + node: OusdCompoundStrategy; }; -export enum OusdDailyStatOrderByInput { - AmoSupplyAsc = 'amoSupply_ASC', - AmoSupplyAscNullsFirst = 'amoSupply_ASC_NULLS_FIRST', - AmoSupplyDesc = 'amoSupply_DESC', - AmoSupplyDescNullsLast = 'amoSupply_DESC_NULLS_LAST', - AprAsc = 'apr_ASC', - AprAscNullsFirst = 'apr_ASC_NULLS_FIRST', - AprDesc = 'apr_DESC', - AprDescNullsLast = 'apr_DESC_NULLS_LAST', - Apy7DayAvgAsc = 'apy7DayAvg_ASC', - Apy7DayAvgAscNullsFirst = 'apy7DayAvg_ASC_NULLS_FIRST', - Apy7DayAvgDesc = 'apy7DayAvg_DESC', - Apy7DayAvgDescNullsLast = 'apy7DayAvg_DESC_NULLS_LAST', - Apy14DayAvgAsc = 'apy14DayAvg_ASC', - Apy14DayAvgAscNullsFirst = 'apy14DayAvg_ASC_NULLS_FIRST', - Apy14DayAvgDesc = 'apy14DayAvg_DESC', - Apy14DayAvgDescNullsLast = 'apy14DayAvg_DESC_NULLS_LAST', - Apy30DayAvgAsc = 'apy30DayAvg_ASC', - Apy30DayAvgAscNullsFirst = 'apy30DayAvg_ASC_NULLS_FIRST', - Apy30DayAvgDesc = 'apy30DayAvg_DESC', - Apy30DayAvgDescNullsLast = 'apy30DayAvg_DESC_NULLS_LAST', - ApyAsc = 'apy_ASC', - ApyAscNullsFirst = 'apy_ASC_NULLS_FIRST', - ApyDesc = 'apy_DESC', - ApyDescNullsLast = 'apy_DESC_NULLS_LAST', +export enum OusdCompoundStrategyOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - DripperWethAsc = 'dripperWETH_ASC', - DripperWethAscNullsFirst = 'dripperWETH_ASC_NULLS_FIRST', - DripperWethDesc = 'dripperWETH_DESC', - DripperWethDescNullsLast = 'dripperWETH_DESC_NULLS_LAST', - FeesEth7DayAsc = 'feesETH7Day_ASC', - FeesEth7DayAscNullsFirst = 'feesETH7Day_ASC_NULLS_FIRST', - FeesEth7DayDesc = 'feesETH7Day_DESC', - FeesEth7DayDescNullsLast = 'feesETH7Day_DESC_NULLS_LAST', - FeesEthAllTimeAsc = 'feesETHAllTime_ASC', - FeesEthAllTimeAscNullsFirst = 'feesETHAllTime_ASC_NULLS_FIRST', - FeesEthAllTimeDesc = 'feesETHAllTime_DESC', - FeesEthAllTimeDescNullsLast = 'feesETHAllTime_DESC_NULLS_LAST', - FeesEthAsc = 'feesETH_ASC', - FeesEthAscNullsFirst = 'feesETH_ASC_NULLS_FIRST', - FeesEthDesc = 'feesETH_DESC', - FeesEthDescNullsLast = 'feesETH_DESC_NULLS_LAST', - FeesUsd7DayAsc = 'feesUSD7Day_ASC', - FeesUsd7DayAscNullsFirst = 'feesUSD7Day_ASC_NULLS_FIRST', - FeesUsd7DayDesc = 'feesUSD7Day_DESC', - FeesUsd7DayDescNullsLast = 'feesUSD7Day_DESC_NULLS_LAST', - FeesUsdAllTimeAsc = 'feesUSDAllTime_ASC', - FeesUsdAllTimeAscNullsFirst = 'feesUSDAllTime_ASC_NULLS_FIRST', - FeesUsdAllTimeDesc = 'feesUSDAllTime_DESC', - FeesUsdAllTimeDescNullsLast = 'feesUSDAllTime_DESC_NULLS_LAST', - FeesUsdAsc = 'feesUSD_ASC', - FeesUsdAscNullsFirst = 'feesUSD_ASC_NULLS_FIRST', - FeesUsdDesc = 'feesUSD_DESC', - FeesUsdDescNullsLast = 'feesUSD_DESC_NULLS_LAST', - HoldersOverThresholdAsc = 'holdersOverThreshold_ASC', - HoldersOverThresholdAscNullsFirst = 'holdersOverThreshold_ASC_NULLS_FIRST', - HoldersOverThresholdDesc = 'holdersOverThreshold_DESC', - HoldersOverThresholdDescNullsLast = 'holdersOverThreshold_DESC_NULLS_LAST', + DaiAsc = 'dai_ASC', + DaiAscNullsFirst = 'dai_ASC_NULLS_FIRST', + DaiDesc = 'dai_DESC', + DaiDescNullsLast = 'dai_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - MarketCapUsdAsc = 'marketCapUSD_ASC', - MarketCapUsdAscNullsFirst = 'marketCapUSD_ASC_NULLS_FIRST', - MarketCapUsdDesc = 'marketCapUSD_DESC', - MarketCapUsdDescNullsLast = 'marketCapUSD_DESC_NULLS_LAST', - NonRebasingSupplyAsc = 'nonRebasingSupply_ASC', - NonRebasingSupplyAscNullsFirst = 'nonRebasingSupply_ASC_NULLS_FIRST', - NonRebasingSupplyDesc = 'nonRebasingSupply_DESC', - NonRebasingSupplyDescNullsLast = 'nonRebasingSupply_DESC_NULLS_LAST', - PegPriceAsc = 'pegPrice_ASC', - PegPriceAscNullsFirst = 'pegPrice_ASC_NULLS_FIRST', - PegPriceDesc = 'pegPrice_DESC', - PegPriceDescNullsLast = 'pegPrice_DESC_NULLS_LAST', - RebasingSupplyAsc = 'rebasingSupply_ASC', - RebasingSupplyAscNullsFirst = 'rebasingSupply_ASC_NULLS_FIRST', - RebasingSupplyDesc = 'rebasingSupply_DESC', - RebasingSupplyDescNullsLast = 'rebasingSupply_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TotalSupplyUsdAsc = 'totalSupplyUSD_ASC', - TotalSupplyUsdAscNullsFirst = 'totalSupplyUSD_ASC_NULLS_FIRST', - TotalSupplyUsdDesc = 'totalSupplyUSD_DESC', - TotalSupplyUsdDescNullsLast = 'totalSupplyUSD_DESC_NULLS_LAST', - TotalSupplyAsc = 'totalSupply_ASC', - TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', - TotalSupplyDesc = 'totalSupply_DESC', - TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST', - TradingVolumeUsdAsc = 'tradingVolumeUSD_ASC', - TradingVolumeUsdAscNullsFirst = 'tradingVolumeUSD_ASC_NULLS_FIRST', - TradingVolumeUsdDesc = 'tradingVolumeUSD_DESC', - TradingVolumeUsdDescNullsLast = 'tradingVolumeUSD_DESC_NULLS_LAST', - WrappedSupplyAsc = 'wrappedSupply_ASC', - WrappedSupplyAscNullsFirst = 'wrappedSupply_ASC_NULLS_FIRST', - WrappedSupplyDesc = 'wrappedSupply_DESC', - WrappedSupplyDescNullsLast = 'wrappedSupply_DESC_NULLS_LAST', - YieldEth7DayAsc = 'yieldETH7Day_ASC', - YieldEth7DayAscNullsFirst = 'yieldETH7Day_ASC_NULLS_FIRST', - YieldEth7DayDesc = 'yieldETH7Day_DESC', - YieldEth7DayDescNullsLast = 'yieldETH7Day_DESC_NULLS_LAST', - YieldEthAllTimeAsc = 'yieldETHAllTime_ASC', - YieldEthAllTimeAscNullsFirst = 'yieldETHAllTime_ASC_NULLS_FIRST', - YieldEthAllTimeDesc = 'yieldETHAllTime_DESC', - YieldEthAllTimeDescNullsLast = 'yieldETHAllTime_DESC_NULLS_LAST', - YieldEthAsc = 'yieldETH_ASC', - YieldEthAscNullsFirst = 'yieldETH_ASC_NULLS_FIRST', - YieldEthDesc = 'yieldETH_DESC', - YieldEthDescNullsLast = 'yieldETH_DESC_NULLS_LAST', - YieldUsd7DayAsc = 'yieldUSD7Day_ASC', - YieldUsd7DayAscNullsFirst = 'yieldUSD7Day_ASC_NULLS_FIRST', - YieldUsd7DayDesc = 'yieldUSD7Day_DESC', - YieldUsd7DayDescNullsLast = 'yieldUSD7Day_DESC_NULLS_LAST', - YieldUsdAllTimeAsc = 'yieldUSDAllTime_ASC', - YieldUsdAllTimeAscNullsFirst = 'yieldUSDAllTime_ASC_NULLS_FIRST', - YieldUsdAllTimeDesc = 'yieldUSDAllTime_DESC', - YieldUsdAllTimeDescNullsLast = 'yieldUSDAllTime_DESC_NULLS_LAST', - YieldUsdAsc = 'yieldUSD_ASC', - YieldUsdAscNullsFirst = 'yieldUSD_ASC_NULLS_FIRST', - YieldUsdDesc = 'yieldUSD_DESC', - YieldUsdDescNullsLast = 'yieldUSD_DESC_NULLS_LAST' -} - -export type OusdDailyStatWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - amoSupply_eq?: InputMaybe; - amoSupply_gt?: InputMaybe; - amoSupply_gte?: InputMaybe; - amoSupply_in?: InputMaybe>; - amoSupply_isNull?: InputMaybe; - amoSupply_lt?: InputMaybe; - amoSupply_lte?: InputMaybe; - amoSupply_not_eq?: InputMaybe; - amoSupply_not_in?: InputMaybe>; - apr_eq?: InputMaybe; - apr_gt?: InputMaybe; - apr_gte?: InputMaybe; - apr_in?: InputMaybe>; - apr_isNull?: InputMaybe; - apr_lt?: InputMaybe; - apr_lte?: InputMaybe; - apr_not_eq?: InputMaybe; - apr_not_in?: InputMaybe>; - apy7DayAvg_eq?: InputMaybe; - apy7DayAvg_gt?: InputMaybe; - apy7DayAvg_gte?: InputMaybe; - apy7DayAvg_in?: InputMaybe>; - apy7DayAvg_isNull?: InputMaybe; - apy7DayAvg_lt?: InputMaybe; - apy7DayAvg_lte?: InputMaybe; - apy7DayAvg_not_eq?: InputMaybe; - apy7DayAvg_not_in?: InputMaybe>; - apy14DayAvg_eq?: InputMaybe; - apy14DayAvg_gt?: InputMaybe; - apy14DayAvg_gte?: InputMaybe; - apy14DayAvg_in?: InputMaybe>; - apy14DayAvg_isNull?: InputMaybe; - apy14DayAvg_lt?: InputMaybe; - apy14DayAvg_lte?: InputMaybe; - apy14DayAvg_not_eq?: InputMaybe; - apy14DayAvg_not_in?: InputMaybe>; - apy30DayAvg_eq?: InputMaybe; - apy30DayAvg_gt?: InputMaybe; - apy30DayAvg_gte?: InputMaybe; - apy30DayAvg_in?: InputMaybe>; - apy30DayAvg_isNull?: InputMaybe; - apy30DayAvg_lt?: InputMaybe; - apy30DayAvg_lte?: InputMaybe; - apy30DayAvg_not_eq?: InputMaybe; - apy30DayAvg_not_in?: InputMaybe>; - apy_eq?: InputMaybe; - apy_gt?: InputMaybe; - apy_gte?: InputMaybe; - apy_in?: InputMaybe>; - apy_isNull?: InputMaybe; - apy_lt?: InputMaybe; - apy_lte?: InputMaybe; - apy_not_eq?: InputMaybe; - apy_not_in?: InputMaybe>; + UsdcAsc = 'usdc_ASC', + UsdcAscNullsFirst = 'usdc_ASC_NULLS_FIRST', + UsdcDesc = 'usdc_DESC', + UsdcDescNullsLast = 'usdc_DESC_NULLS_LAST', + UsdtAsc = 'usdt_ASC', + UsdtAscNullsFirst = 'usdt_ASC_NULLS_FIRST', + UsdtDesc = 'usdt_DESC', + UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' +} + +export type OusdCompoundStrategyWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -9368,81 +8504,15 @@ export type OusdDailyStatWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; - collateral_every?: InputMaybe; - collateral_none?: InputMaybe; - collateral_some?: InputMaybe; - dripperWETH_eq?: InputMaybe; - dripperWETH_gt?: InputMaybe; - dripperWETH_gte?: InputMaybe; - dripperWETH_in?: InputMaybe>; - dripperWETH_isNull?: InputMaybe; - dripperWETH_lt?: InputMaybe; - dripperWETH_lte?: InputMaybe; - dripperWETH_not_eq?: InputMaybe; - dripperWETH_not_in?: InputMaybe>; - feesETH7Day_eq?: InputMaybe; - feesETH7Day_gt?: InputMaybe; - feesETH7Day_gte?: InputMaybe; - feesETH7Day_in?: InputMaybe>; - feesETH7Day_isNull?: InputMaybe; - feesETH7Day_lt?: InputMaybe; - feesETH7Day_lte?: InputMaybe; - feesETH7Day_not_eq?: InputMaybe; - feesETH7Day_not_in?: InputMaybe>; - feesETHAllTime_eq?: InputMaybe; - feesETHAllTime_gt?: InputMaybe; - feesETHAllTime_gte?: InputMaybe; - feesETHAllTime_in?: InputMaybe>; - feesETHAllTime_isNull?: InputMaybe; - feesETHAllTime_lt?: InputMaybe; - feesETHAllTime_lte?: InputMaybe; - feesETHAllTime_not_eq?: InputMaybe; - feesETHAllTime_not_in?: InputMaybe>; - feesETH_eq?: InputMaybe; - feesETH_gt?: InputMaybe; - feesETH_gte?: InputMaybe; - feesETH_in?: InputMaybe>; - feesETH_isNull?: InputMaybe; - feesETH_lt?: InputMaybe; - feesETH_lte?: InputMaybe; - feesETH_not_eq?: InputMaybe; - feesETH_not_in?: InputMaybe>; - feesUSD7Day_eq?: InputMaybe; - feesUSD7Day_gt?: InputMaybe; - feesUSD7Day_gte?: InputMaybe; - feesUSD7Day_in?: InputMaybe>; - feesUSD7Day_isNull?: InputMaybe; - feesUSD7Day_lt?: InputMaybe; - feesUSD7Day_lte?: InputMaybe; - feesUSD7Day_not_eq?: InputMaybe; - feesUSD7Day_not_in?: InputMaybe>; - feesUSDAllTime_eq?: InputMaybe; - feesUSDAllTime_gt?: InputMaybe; - feesUSDAllTime_gte?: InputMaybe; - feesUSDAllTime_in?: InputMaybe>; - feesUSDAllTime_isNull?: InputMaybe; - feesUSDAllTime_lt?: InputMaybe; - feesUSDAllTime_lte?: InputMaybe; - feesUSDAllTime_not_eq?: InputMaybe; - feesUSDAllTime_not_in?: InputMaybe>; - feesUSD_eq?: InputMaybe; - feesUSD_gt?: InputMaybe; - feesUSD_gte?: InputMaybe; - feesUSD_in?: InputMaybe>; - feesUSD_isNull?: InputMaybe; - feesUSD_lt?: InputMaybe; - feesUSD_lte?: InputMaybe; - feesUSD_not_eq?: InputMaybe; - feesUSD_not_in?: InputMaybe>; - holdersOverThreshold_eq?: InputMaybe; - holdersOverThreshold_gt?: InputMaybe; - holdersOverThreshold_gte?: InputMaybe; - holdersOverThreshold_in?: InputMaybe>; - holdersOverThreshold_isNull?: InputMaybe; - holdersOverThreshold_lt?: InputMaybe; - holdersOverThreshold_lte?: InputMaybe; - holdersOverThreshold_not_eq?: InputMaybe; - holdersOverThreshold_not_in?: InputMaybe>; + dai_eq?: InputMaybe; + dai_gt?: InputMaybe; + dai_gte?: InputMaybe; + dai_in?: InputMaybe>; + dai_isNull?: InputMaybe; + dai_lt?: InputMaybe; + dai_lte?: InputMaybe; + dai_not_eq?: InputMaybe; + dai_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -9460,45 +8530,6 @@ export type OusdDailyStatWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - marketCapUSD_eq?: InputMaybe; - marketCapUSD_gt?: InputMaybe; - marketCapUSD_gte?: InputMaybe; - marketCapUSD_in?: InputMaybe>; - marketCapUSD_isNull?: InputMaybe; - marketCapUSD_lt?: InputMaybe; - marketCapUSD_lte?: InputMaybe; - marketCapUSD_not_eq?: InputMaybe; - marketCapUSD_not_in?: InputMaybe>; - nonRebasingSupply_eq?: InputMaybe; - nonRebasingSupply_gt?: InputMaybe; - nonRebasingSupply_gte?: InputMaybe; - nonRebasingSupply_in?: InputMaybe>; - nonRebasingSupply_isNull?: InputMaybe; - nonRebasingSupply_lt?: InputMaybe; - nonRebasingSupply_lte?: InputMaybe; - nonRebasingSupply_not_eq?: InputMaybe; - nonRebasingSupply_not_in?: InputMaybe>; - pegPrice_eq?: InputMaybe; - pegPrice_gt?: InputMaybe; - pegPrice_gte?: InputMaybe; - pegPrice_in?: InputMaybe>; - pegPrice_isNull?: InputMaybe; - pegPrice_lt?: InputMaybe; - pegPrice_lte?: InputMaybe; - pegPrice_not_eq?: InputMaybe; - pegPrice_not_in?: InputMaybe>; - rebasingSupply_eq?: InputMaybe; - rebasingSupply_gt?: InputMaybe; - rebasingSupply_gte?: InputMaybe; - rebasingSupply_in?: InputMaybe>; - rebasingSupply_isNull?: InputMaybe; - rebasingSupply_lt?: InputMaybe; - rebasingSupply_lte?: InputMaybe; - rebasingSupply_not_eq?: InputMaybe; - rebasingSupply_not_in?: InputMaybe>; - strategies_every?: InputMaybe; - strategies_none?: InputMaybe; - strategies_some?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -9508,120 +8539,28 @@ export type OusdDailyStatWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - totalSupplyUSD_eq?: InputMaybe; - totalSupplyUSD_gt?: InputMaybe; - totalSupplyUSD_gte?: InputMaybe; - totalSupplyUSD_in?: InputMaybe>; - totalSupplyUSD_isNull?: InputMaybe; - totalSupplyUSD_lt?: InputMaybe; - totalSupplyUSD_lte?: InputMaybe; - totalSupplyUSD_not_eq?: InputMaybe; - totalSupplyUSD_not_in?: InputMaybe>; - totalSupply_eq?: InputMaybe; - totalSupply_gt?: InputMaybe; - totalSupply_gte?: InputMaybe; - totalSupply_in?: InputMaybe>; - totalSupply_isNull?: InputMaybe; - totalSupply_lt?: InputMaybe; - totalSupply_lte?: InputMaybe; - totalSupply_not_eq?: InputMaybe; - totalSupply_not_in?: InputMaybe>; - tradingVolumeUSD_eq?: InputMaybe; - tradingVolumeUSD_gt?: InputMaybe; - tradingVolumeUSD_gte?: InputMaybe; - tradingVolumeUSD_in?: InputMaybe>; - tradingVolumeUSD_isNull?: InputMaybe; - tradingVolumeUSD_lt?: InputMaybe; - tradingVolumeUSD_lte?: InputMaybe; - tradingVolumeUSD_not_eq?: InputMaybe; - tradingVolumeUSD_not_in?: InputMaybe>; - wrappedSupply_eq?: InputMaybe; - wrappedSupply_gt?: InputMaybe; - wrappedSupply_gte?: InputMaybe; - wrappedSupply_in?: InputMaybe>; - wrappedSupply_isNull?: InputMaybe; - wrappedSupply_lt?: InputMaybe; - wrappedSupply_lte?: InputMaybe; - wrappedSupply_not_eq?: InputMaybe; - wrappedSupply_not_in?: InputMaybe>; - yieldETH7Day_eq?: InputMaybe; - yieldETH7Day_gt?: InputMaybe; - yieldETH7Day_gte?: InputMaybe; - yieldETH7Day_in?: InputMaybe>; - yieldETH7Day_isNull?: InputMaybe; - yieldETH7Day_lt?: InputMaybe; - yieldETH7Day_lte?: InputMaybe; - yieldETH7Day_not_eq?: InputMaybe; - yieldETH7Day_not_in?: InputMaybe>; - yieldETHAllTime_eq?: InputMaybe; - yieldETHAllTime_gt?: InputMaybe; - yieldETHAllTime_gte?: InputMaybe; - yieldETHAllTime_in?: InputMaybe>; - yieldETHAllTime_isNull?: InputMaybe; - yieldETHAllTime_lt?: InputMaybe; - yieldETHAllTime_lte?: InputMaybe; - yieldETHAllTime_not_eq?: InputMaybe; - yieldETHAllTime_not_in?: InputMaybe>; - yieldETH_eq?: InputMaybe; - yieldETH_gt?: InputMaybe; - yieldETH_gte?: InputMaybe; - yieldETH_in?: InputMaybe>; - yieldETH_isNull?: InputMaybe; - yieldETH_lt?: InputMaybe; - yieldETH_lte?: InputMaybe; - yieldETH_not_eq?: InputMaybe; - yieldETH_not_in?: InputMaybe>; - yieldUSD7Day_eq?: InputMaybe; - yieldUSD7Day_gt?: InputMaybe; - yieldUSD7Day_gte?: InputMaybe; - yieldUSD7Day_in?: InputMaybe>; - yieldUSD7Day_isNull?: InputMaybe; - yieldUSD7Day_lt?: InputMaybe; - yieldUSD7Day_lte?: InputMaybe; - yieldUSD7Day_not_eq?: InputMaybe; - yieldUSD7Day_not_in?: InputMaybe>; - yieldUSDAllTime_eq?: InputMaybe; - yieldUSDAllTime_gt?: InputMaybe; - yieldUSDAllTime_gte?: InputMaybe; - yieldUSDAllTime_in?: InputMaybe>; - yieldUSDAllTime_isNull?: InputMaybe; - yieldUSDAllTime_lt?: InputMaybe; - yieldUSDAllTime_lte?: InputMaybe; - yieldUSDAllTime_not_eq?: InputMaybe; - yieldUSDAllTime_not_in?: InputMaybe>; - yieldUSD_eq?: InputMaybe; - yieldUSD_gt?: InputMaybe; - yieldUSD_gte?: InputMaybe; - yieldUSD_in?: InputMaybe>; - yieldUSD_isNull?: InputMaybe; - yieldUSD_lt?: InputMaybe; - yieldUSD_lte?: InputMaybe; - yieldUSD_not_eq?: InputMaybe; - yieldUSD_not_in?: InputMaybe>; -}; - -export type OusdDailyStatsConnection = { - __typename?: 'OUSDDailyStatsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export type OusdEdge = { - __typename?: 'OUSDEdge'; - cursor: Scalars['String']['output']; - node: Ousd; -}; - -export type OusdFluxStrategiesConnection = { - __typename?: 'OUSDFluxStrategiesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; + usdc_eq?: InputMaybe; + usdc_gt?: InputMaybe; + usdc_gte?: InputMaybe; + usdc_in?: InputMaybe>; + usdc_isNull?: InputMaybe; + usdc_lt?: InputMaybe; + usdc_lte?: InputMaybe; + usdc_not_eq?: InputMaybe; + usdc_not_in?: InputMaybe>; + usdt_eq?: InputMaybe; + usdt_gt?: InputMaybe; + usdt_gte?: InputMaybe; + usdt_in?: InputMaybe>; + usdt_isNull?: InputMaybe; + usdt_lt?: InputMaybe; + usdt_lte?: InputMaybe; + usdt_not_eq?: InputMaybe; + usdt_not_in?: InputMaybe>; }; -export type OusdFluxStrategy = { - __typename?: 'OUSDFluxStrategy'; +export type OusdConvexLusdPlus3Crv = { + __typename?: 'OUSDConvexLUSDPlus3Crv'; blockNumber: Scalars['Int']['output']; dai: Scalars['BigInt']['output']; id: Scalars['String']['output']; @@ -9630,13 +8569,13 @@ export type OusdFluxStrategy = { usdt: Scalars['BigInt']['output']; }; -export type OusdFluxStrategyEdge = { - __typename?: 'OUSDFluxStrategyEdge'; +export type OusdConvexLusdPlus3CrvEdge = { + __typename?: 'OUSDConvexLUSDPlus3CrvEdge'; cursor: Scalars['String']['output']; - node: OusdFluxStrategy; + node: OusdConvexLusdPlus3Crv; }; -export enum OusdFluxStrategyOrderByInput { +export enum OusdConvexLusdPlus3CrvOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', @@ -9663,9 +8602,9 @@ export enum OusdFluxStrategyOrderByInput { UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' } -export type OusdFluxStrategyWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OusdConvexLusdPlus3CrvWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -9730,69 +8669,45 @@ export type OusdFluxStrategyWhereInput = { usdt_not_in?: InputMaybe>; }; -export type OusdHistoriesConnection = { - __typename?: 'OUSDHistoriesConnection'; - edges: Array; +export type OusdConvexLusdPlus3CrvsConnection = { + __typename?: 'OUSDConvexLUSDPlus3CrvsConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -/** The History entity tracks events that change the balance of OUSD for an address. */ -export type OusdHistory = { - __typename?: 'OUSDHistory'; - address: OusdAddress; - balance: Scalars['BigInt']['output']; +export type OusdConvexStrategiesConnection = { + __typename?: 'OUSDConvexStrategiesConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; +}; + +export type OusdConvexStrategy = { + __typename?: 'OUSDConvexStrategy'; blockNumber: Scalars['Int']['output']; + dai: Scalars['BigInt']['output']; id: Scalars['String']['output']; timestamp: Scalars['DateTime']['output']; - txHash: Scalars['String']['output']; - type: HistoryType; - value: Scalars['BigInt']['output']; + usdc: Scalars['BigInt']['output']; + usdt: Scalars['BigInt']['output']; }; -export type OusdHistoryEdge = { - __typename?: 'OUSDHistoryEdge'; +export type OusdConvexStrategyEdge = { + __typename?: 'OUSDConvexStrategyEdge'; cursor: Scalars['String']['output']; - node: OusdHistory; + node: OusdConvexStrategy; }; -export enum OusdHistoryOrderByInput { - AddressBalanceAsc = 'address_balance_ASC', - AddressBalanceAscNullsFirst = 'address_balance_ASC_NULLS_FIRST', - AddressBalanceDesc = 'address_balance_DESC', - AddressBalanceDescNullsLast = 'address_balance_DESC_NULLS_LAST', - AddressCreditsAsc = 'address_credits_ASC', - AddressCreditsAscNullsFirst = 'address_credits_ASC_NULLS_FIRST', - AddressCreditsDesc = 'address_credits_DESC', - AddressCreditsDescNullsLast = 'address_credits_DESC_NULLS_LAST', - AddressEarnedAsc = 'address_earned_ASC', - AddressEarnedAscNullsFirst = 'address_earned_ASC_NULLS_FIRST', - AddressEarnedDesc = 'address_earned_DESC', - AddressEarnedDescNullsLast = 'address_earned_DESC_NULLS_LAST', - AddressIdAsc = 'address_id_ASC', - AddressIdAscNullsFirst = 'address_id_ASC_NULLS_FIRST', - AddressIdDesc = 'address_id_DESC', - AddressIdDescNullsLast = 'address_id_DESC_NULLS_LAST', - AddressIsContractAsc = 'address_isContract_ASC', - AddressIsContractAscNullsFirst = 'address_isContract_ASC_NULLS_FIRST', - AddressIsContractDesc = 'address_isContract_DESC', - AddressIsContractDescNullsLast = 'address_isContract_DESC_NULLS_LAST', - AddressLastUpdatedAsc = 'address_lastUpdated_ASC', - AddressLastUpdatedAscNullsFirst = 'address_lastUpdated_ASC_NULLS_FIRST', - AddressLastUpdatedDesc = 'address_lastUpdated_DESC', - AddressLastUpdatedDescNullsLast = 'address_lastUpdated_DESC_NULLS_LAST', - AddressRebasingOptionAsc = 'address_rebasingOption_ASC', - AddressRebasingOptionAscNullsFirst = 'address_rebasingOption_ASC_NULLS_FIRST', - AddressRebasingOptionDesc = 'address_rebasingOption_DESC', - AddressRebasingOptionDescNullsLast = 'address_rebasingOption_DESC_NULLS_LAST', - BalanceAsc = 'balance_ASC', - BalanceAscNullsFirst = 'balance_ASC_NULLS_FIRST', - BalanceDesc = 'balance_DESC', - BalanceDescNullsLast = 'balance_DESC_NULLS_LAST', +export enum OusdConvexStrategyOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + DaiAsc = 'dai_ASC', + DaiAscNullsFirst = 'dai_ASC_NULLS_FIRST', + DaiDesc = 'dai_DESC', + DaiDescNullsLast = 'dai_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', @@ -9801,34 +8716,19 @@ export enum OusdHistoryOrderByInput { TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TxHashAsc = 'txHash_ASC', - TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', - TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST', - TypeAsc = 'type_ASC', - TypeAscNullsFirst = 'type_ASC_NULLS_FIRST', - TypeDesc = 'type_DESC', - TypeDescNullsLast = 'type_DESC_NULLS_LAST', - ValueAsc = 'value_ASC', - ValueAscNullsFirst = 'value_ASC_NULLS_FIRST', - ValueDesc = 'value_DESC', - ValueDescNullsLast = 'value_DESC_NULLS_LAST' + UsdcAsc = 'usdc_ASC', + UsdcAscNullsFirst = 'usdc_ASC_NULLS_FIRST', + UsdcDesc = 'usdc_DESC', + UsdcDescNullsLast = 'usdc_DESC_NULLS_LAST', + UsdtAsc = 'usdt_ASC', + UsdtAscNullsFirst = 'usdt_ASC_NULLS_FIRST', + UsdtDesc = 'usdt_DESC', + UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' } -export type OusdHistoryWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - address?: InputMaybe; - address_isNull?: InputMaybe; - balance_eq?: InputMaybe; - balance_gt?: InputMaybe; - balance_gte?: InputMaybe; - balance_in?: InputMaybe>; - balance_isNull?: InputMaybe; - balance_lt?: InputMaybe; - balance_lte?: InputMaybe; - balance_not_eq?: InputMaybe; - balance_not_in?: InputMaybe>; +export type OusdConvexStrategyWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -9838,6 +8738,15 @@ export type OusdHistoryWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; + dai_eq?: InputMaybe; + dai_gt?: InputMaybe; + dai_gte?: InputMaybe; + dai_in?: InputMaybe>; + dai_isNull?: InputMaybe; + dai_lt?: InputMaybe; + dai_lte?: InputMaybe; + dai_not_eq?: InputMaybe; + dai_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -9864,92 +8773,269 @@ export type OusdHistoryWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - txHash_contains?: InputMaybe; - txHash_containsInsensitive?: InputMaybe; - txHash_endsWith?: InputMaybe; - txHash_eq?: InputMaybe; - txHash_gt?: InputMaybe; - txHash_gte?: InputMaybe; - txHash_in?: InputMaybe>; - txHash_isNull?: InputMaybe; - txHash_lt?: InputMaybe; - txHash_lte?: InputMaybe; - txHash_not_contains?: InputMaybe; - txHash_not_containsInsensitive?: InputMaybe; - txHash_not_endsWith?: InputMaybe; - txHash_not_eq?: InputMaybe; - txHash_not_in?: InputMaybe>; - txHash_not_startsWith?: InputMaybe; - txHash_startsWith?: InputMaybe; - type_eq?: InputMaybe; - type_in?: InputMaybe>; - type_isNull?: InputMaybe; - type_not_eq?: InputMaybe; - type_not_in?: InputMaybe>; - value_eq?: InputMaybe; - value_gt?: InputMaybe; - value_gte?: InputMaybe; - value_in?: InputMaybe>; - value_isNull?: InputMaybe; - value_lt?: InputMaybe; - value_lte?: InputMaybe; - value_not_eq?: InputMaybe; - value_not_in?: InputMaybe>; -}; - -export type OusdMetaStrategiesConnection = { - __typename?: 'OUSDMetaStrategiesConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; + usdc_eq?: InputMaybe; + usdc_gt?: InputMaybe; + usdc_gte?: InputMaybe; + usdc_in?: InputMaybe>; + usdc_isNull?: InputMaybe; + usdc_lt?: InputMaybe; + usdc_lte?: InputMaybe; + usdc_not_eq?: InputMaybe; + usdc_not_in?: InputMaybe>; + usdt_eq?: InputMaybe; + usdt_gt?: InputMaybe; + usdt_gte?: InputMaybe; + usdt_in?: InputMaybe>; + usdt_isNull?: InputMaybe; + usdt_lt?: InputMaybe; + usdt_lte?: InputMaybe; + usdt_not_eq?: InputMaybe; + usdt_not_in?: InputMaybe>; }; -export type OusdMetaStrategy = { - __typename?: 'OUSDMetaStrategy'; +export type OusdDailyStat = { + __typename?: 'OUSDDailyStat'; + amoSupply: Scalars['BigInt']['output']; + apr: Scalars['Float']['output']; + apy: Scalars['Float']['output']; + apy7DayAvg: Scalars['Float']['output']; + apy14DayAvg: Scalars['Float']['output']; + apy30DayAvg: Scalars['Float']['output']; blockNumber: Scalars['Int']['output']; - dai: Scalars['BigInt']['output']; + collateral: Array; + dripperWETH: Scalars['BigInt']['output']; + feesETH: Scalars['BigInt']['output']; + feesETH7Day: Scalars['BigInt']['output']; + feesETHAllTime: Scalars['BigInt']['output']; + feesUSD: Scalars['BigInt']['output']; + feesUSD7Day: Scalars['BigInt']['output']; + feesUSDAllTime: Scalars['BigInt']['output']; + holdersOverThreshold: Scalars['Int']['output']; id: Scalars['String']['output']; + marketCapUSD: Scalars['Float']['output']; + nonRebasingSupply: Scalars['BigInt']['output']; + pegPrice: Scalars['BigInt']['output']; + rebasingSupply: Scalars['BigInt']['output']; + strategies: Array; timestamp: Scalars['DateTime']['output']; - usdc: Scalars['BigInt']['output']; - usdt: Scalars['BigInt']['output']; + totalSupply: Scalars['BigInt']['output']; + totalSupplyUSD: Scalars['Float']['output']; + tradingVolumeUSD: Scalars['Float']['output']; + wrappedSupply: Scalars['BigInt']['output']; + yieldETH: Scalars['BigInt']['output']; + yieldETH7Day: Scalars['BigInt']['output']; + yieldETHAllTime: Scalars['BigInt']['output']; + yieldUSD: Scalars['BigInt']['output']; + yieldUSD7Day: Scalars['BigInt']['output']; + yieldUSDAllTime: Scalars['BigInt']['output']; }; -export type OusdMetaStrategyEdge = { - __typename?: 'OUSDMetaStrategyEdge'; + +export type OusdDailyStatCollateralArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + + +export type OusdDailyStatStrategiesArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + +export type OusdDailyStatEdge = { + __typename?: 'OUSDDailyStatEdge'; cursor: Scalars['String']['output']; - node: OusdMetaStrategy; + node: OusdDailyStat; }; -export enum OusdMetaStrategyOrderByInput { +export enum OusdDailyStatOrderByInput { + AmoSupplyAsc = 'amoSupply_ASC', + AmoSupplyAscNullsFirst = 'amoSupply_ASC_NULLS_FIRST', + AmoSupplyDesc = 'amoSupply_DESC', + AmoSupplyDescNullsLast = 'amoSupply_DESC_NULLS_LAST', + AprAsc = 'apr_ASC', + AprAscNullsFirst = 'apr_ASC_NULLS_FIRST', + AprDesc = 'apr_DESC', + AprDescNullsLast = 'apr_DESC_NULLS_LAST', + Apy7DayAvgAsc = 'apy7DayAvg_ASC', + Apy7DayAvgAscNullsFirst = 'apy7DayAvg_ASC_NULLS_FIRST', + Apy7DayAvgDesc = 'apy7DayAvg_DESC', + Apy7DayAvgDescNullsLast = 'apy7DayAvg_DESC_NULLS_LAST', + Apy14DayAvgAsc = 'apy14DayAvg_ASC', + Apy14DayAvgAscNullsFirst = 'apy14DayAvg_ASC_NULLS_FIRST', + Apy14DayAvgDesc = 'apy14DayAvg_DESC', + Apy14DayAvgDescNullsLast = 'apy14DayAvg_DESC_NULLS_LAST', + Apy30DayAvgAsc = 'apy30DayAvg_ASC', + Apy30DayAvgAscNullsFirst = 'apy30DayAvg_ASC_NULLS_FIRST', + Apy30DayAvgDesc = 'apy30DayAvg_DESC', + Apy30DayAvgDescNullsLast = 'apy30DayAvg_DESC_NULLS_LAST', + ApyAsc = 'apy_ASC', + ApyAscNullsFirst = 'apy_ASC_NULLS_FIRST', + ApyDesc = 'apy_DESC', + ApyDescNullsLast = 'apy_DESC_NULLS_LAST', BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - DaiAsc = 'dai_ASC', - DaiAscNullsFirst = 'dai_ASC_NULLS_FIRST', - DaiDesc = 'dai_DESC', - DaiDescNullsLast = 'dai_DESC_NULLS_LAST', + DripperWethAsc = 'dripperWETH_ASC', + DripperWethAscNullsFirst = 'dripperWETH_ASC_NULLS_FIRST', + DripperWethDesc = 'dripperWETH_DESC', + DripperWethDescNullsLast = 'dripperWETH_DESC_NULLS_LAST', + FeesEth7DayAsc = 'feesETH7Day_ASC', + FeesEth7DayAscNullsFirst = 'feesETH7Day_ASC_NULLS_FIRST', + FeesEth7DayDesc = 'feesETH7Day_DESC', + FeesEth7DayDescNullsLast = 'feesETH7Day_DESC_NULLS_LAST', + FeesEthAllTimeAsc = 'feesETHAllTime_ASC', + FeesEthAllTimeAscNullsFirst = 'feesETHAllTime_ASC_NULLS_FIRST', + FeesEthAllTimeDesc = 'feesETHAllTime_DESC', + FeesEthAllTimeDescNullsLast = 'feesETHAllTime_DESC_NULLS_LAST', + FeesEthAsc = 'feesETH_ASC', + FeesEthAscNullsFirst = 'feesETH_ASC_NULLS_FIRST', + FeesEthDesc = 'feesETH_DESC', + FeesEthDescNullsLast = 'feesETH_DESC_NULLS_LAST', + FeesUsd7DayAsc = 'feesUSD7Day_ASC', + FeesUsd7DayAscNullsFirst = 'feesUSD7Day_ASC_NULLS_FIRST', + FeesUsd7DayDesc = 'feesUSD7Day_DESC', + FeesUsd7DayDescNullsLast = 'feesUSD7Day_DESC_NULLS_LAST', + FeesUsdAllTimeAsc = 'feesUSDAllTime_ASC', + FeesUsdAllTimeAscNullsFirst = 'feesUSDAllTime_ASC_NULLS_FIRST', + FeesUsdAllTimeDesc = 'feesUSDAllTime_DESC', + FeesUsdAllTimeDescNullsLast = 'feesUSDAllTime_DESC_NULLS_LAST', + FeesUsdAsc = 'feesUSD_ASC', + FeesUsdAscNullsFirst = 'feesUSD_ASC_NULLS_FIRST', + FeesUsdDesc = 'feesUSD_DESC', + FeesUsdDescNullsLast = 'feesUSD_DESC_NULLS_LAST', + HoldersOverThresholdAsc = 'holdersOverThreshold_ASC', + HoldersOverThresholdAscNullsFirst = 'holdersOverThreshold_ASC_NULLS_FIRST', + HoldersOverThresholdDesc = 'holdersOverThreshold_DESC', + HoldersOverThresholdDescNullsLast = 'holdersOverThreshold_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', + MarketCapUsdAsc = 'marketCapUSD_ASC', + MarketCapUsdAscNullsFirst = 'marketCapUSD_ASC_NULLS_FIRST', + MarketCapUsdDesc = 'marketCapUSD_DESC', + MarketCapUsdDescNullsLast = 'marketCapUSD_DESC_NULLS_LAST', + NonRebasingSupplyAsc = 'nonRebasingSupply_ASC', + NonRebasingSupplyAscNullsFirst = 'nonRebasingSupply_ASC_NULLS_FIRST', + NonRebasingSupplyDesc = 'nonRebasingSupply_DESC', + NonRebasingSupplyDescNullsLast = 'nonRebasingSupply_DESC_NULLS_LAST', + PegPriceAsc = 'pegPrice_ASC', + PegPriceAscNullsFirst = 'pegPrice_ASC_NULLS_FIRST', + PegPriceDesc = 'pegPrice_DESC', + PegPriceDescNullsLast = 'pegPrice_DESC_NULLS_LAST', + RebasingSupplyAsc = 'rebasingSupply_ASC', + RebasingSupplyAscNullsFirst = 'rebasingSupply_ASC_NULLS_FIRST', + RebasingSupplyDesc = 'rebasingSupply_DESC', + RebasingSupplyDescNullsLast = 'rebasingSupply_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - UsdcAsc = 'usdc_ASC', - UsdcAscNullsFirst = 'usdc_ASC_NULLS_FIRST', - UsdcDesc = 'usdc_DESC', - UsdcDescNullsLast = 'usdc_DESC_NULLS_LAST', - UsdtAsc = 'usdt_ASC', - UsdtAscNullsFirst = 'usdt_ASC_NULLS_FIRST', - UsdtDesc = 'usdt_DESC', - UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' + TotalSupplyUsdAsc = 'totalSupplyUSD_ASC', + TotalSupplyUsdAscNullsFirst = 'totalSupplyUSD_ASC_NULLS_FIRST', + TotalSupplyUsdDesc = 'totalSupplyUSD_DESC', + TotalSupplyUsdDescNullsLast = 'totalSupplyUSD_DESC_NULLS_LAST', + TotalSupplyAsc = 'totalSupply_ASC', + TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', + TotalSupplyDesc = 'totalSupply_DESC', + TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST', + TradingVolumeUsdAsc = 'tradingVolumeUSD_ASC', + TradingVolumeUsdAscNullsFirst = 'tradingVolumeUSD_ASC_NULLS_FIRST', + TradingVolumeUsdDesc = 'tradingVolumeUSD_DESC', + TradingVolumeUsdDescNullsLast = 'tradingVolumeUSD_DESC_NULLS_LAST', + WrappedSupplyAsc = 'wrappedSupply_ASC', + WrappedSupplyAscNullsFirst = 'wrappedSupply_ASC_NULLS_FIRST', + WrappedSupplyDesc = 'wrappedSupply_DESC', + WrappedSupplyDescNullsLast = 'wrappedSupply_DESC_NULLS_LAST', + YieldEth7DayAsc = 'yieldETH7Day_ASC', + YieldEth7DayAscNullsFirst = 'yieldETH7Day_ASC_NULLS_FIRST', + YieldEth7DayDesc = 'yieldETH7Day_DESC', + YieldEth7DayDescNullsLast = 'yieldETH7Day_DESC_NULLS_LAST', + YieldEthAllTimeAsc = 'yieldETHAllTime_ASC', + YieldEthAllTimeAscNullsFirst = 'yieldETHAllTime_ASC_NULLS_FIRST', + YieldEthAllTimeDesc = 'yieldETHAllTime_DESC', + YieldEthAllTimeDescNullsLast = 'yieldETHAllTime_DESC_NULLS_LAST', + YieldEthAsc = 'yieldETH_ASC', + YieldEthAscNullsFirst = 'yieldETH_ASC_NULLS_FIRST', + YieldEthDesc = 'yieldETH_DESC', + YieldEthDescNullsLast = 'yieldETH_DESC_NULLS_LAST', + YieldUsd7DayAsc = 'yieldUSD7Day_ASC', + YieldUsd7DayAscNullsFirst = 'yieldUSD7Day_ASC_NULLS_FIRST', + YieldUsd7DayDesc = 'yieldUSD7Day_DESC', + YieldUsd7DayDescNullsLast = 'yieldUSD7Day_DESC_NULLS_LAST', + YieldUsdAllTimeAsc = 'yieldUSDAllTime_ASC', + YieldUsdAllTimeAscNullsFirst = 'yieldUSDAllTime_ASC_NULLS_FIRST', + YieldUsdAllTimeDesc = 'yieldUSDAllTime_DESC', + YieldUsdAllTimeDescNullsLast = 'yieldUSDAllTime_DESC_NULLS_LAST', + YieldUsdAsc = 'yieldUSD_ASC', + YieldUsdAscNullsFirst = 'yieldUSD_ASC_NULLS_FIRST', + YieldUsdDesc = 'yieldUSD_DESC', + YieldUsdDescNullsLast = 'yieldUSD_DESC_NULLS_LAST' } -export type OusdMetaStrategyWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OusdDailyStatWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + amoSupply_eq?: InputMaybe; + amoSupply_gt?: InputMaybe; + amoSupply_gte?: InputMaybe; + amoSupply_in?: InputMaybe>; + amoSupply_isNull?: InputMaybe; + amoSupply_lt?: InputMaybe; + amoSupply_lte?: InputMaybe; + amoSupply_not_eq?: InputMaybe; + amoSupply_not_in?: InputMaybe>; + apr_eq?: InputMaybe; + apr_gt?: InputMaybe; + apr_gte?: InputMaybe; + apr_in?: InputMaybe>; + apr_isNull?: InputMaybe; + apr_lt?: InputMaybe; + apr_lte?: InputMaybe; + apr_not_eq?: InputMaybe; + apr_not_in?: InputMaybe>; + apy7DayAvg_eq?: InputMaybe; + apy7DayAvg_gt?: InputMaybe; + apy7DayAvg_gte?: InputMaybe; + apy7DayAvg_in?: InputMaybe>; + apy7DayAvg_isNull?: InputMaybe; + apy7DayAvg_lt?: InputMaybe; + apy7DayAvg_lte?: InputMaybe; + apy7DayAvg_not_eq?: InputMaybe; + apy7DayAvg_not_in?: InputMaybe>; + apy14DayAvg_eq?: InputMaybe; + apy14DayAvg_gt?: InputMaybe; + apy14DayAvg_gte?: InputMaybe; + apy14DayAvg_in?: InputMaybe>; + apy14DayAvg_isNull?: InputMaybe; + apy14DayAvg_lt?: InputMaybe; + apy14DayAvg_lte?: InputMaybe; + apy14DayAvg_not_eq?: InputMaybe; + apy14DayAvg_not_in?: InputMaybe>; + apy30DayAvg_eq?: InputMaybe; + apy30DayAvg_gt?: InputMaybe; + apy30DayAvg_gte?: InputMaybe; + apy30DayAvg_in?: InputMaybe>; + apy30DayAvg_isNull?: InputMaybe; + apy30DayAvg_lt?: InputMaybe; + apy30DayAvg_lte?: InputMaybe; + apy30DayAvg_not_eq?: InputMaybe; + apy30DayAvg_not_in?: InputMaybe>; + apy_eq?: InputMaybe; + apy_gt?: InputMaybe; + apy_gte?: InputMaybe; + apy_in?: InputMaybe>; + apy_isNull?: InputMaybe; + apy_lt?: InputMaybe; + apy_lte?: InputMaybe; + apy_not_eq?: InputMaybe; + apy_not_in?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -9959,15 +9045,81 @@ export type OusdMetaStrategyWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; - dai_eq?: InputMaybe; - dai_gt?: InputMaybe; - dai_gte?: InputMaybe; - dai_in?: InputMaybe>; - dai_isNull?: InputMaybe; - dai_lt?: InputMaybe; - dai_lte?: InputMaybe; - dai_not_eq?: InputMaybe; - dai_not_in?: InputMaybe>; + collateral_every?: InputMaybe; + collateral_none?: InputMaybe; + collateral_some?: InputMaybe; + dripperWETH_eq?: InputMaybe; + dripperWETH_gt?: InputMaybe; + dripperWETH_gte?: InputMaybe; + dripperWETH_in?: InputMaybe>; + dripperWETH_isNull?: InputMaybe; + dripperWETH_lt?: InputMaybe; + dripperWETH_lte?: InputMaybe; + dripperWETH_not_eq?: InputMaybe; + dripperWETH_not_in?: InputMaybe>; + feesETH7Day_eq?: InputMaybe; + feesETH7Day_gt?: InputMaybe; + feesETH7Day_gte?: InputMaybe; + feesETH7Day_in?: InputMaybe>; + feesETH7Day_isNull?: InputMaybe; + feesETH7Day_lt?: InputMaybe; + feesETH7Day_lte?: InputMaybe; + feesETH7Day_not_eq?: InputMaybe; + feesETH7Day_not_in?: InputMaybe>; + feesETHAllTime_eq?: InputMaybe; + feesETHAllTime_gt?: InputMaybe; + feesETHAllTime_gte?: InputMaybe; + feesETHAllTime_in?: InputMaybe>; + feesETHAllTime_isNull?: InputMaybe; + feesETHAllTime_lt?: InputMaybe; + feesETHAllTime_lte?: InputMaybe; + feesETHAllTime_not_eq?: InputMaybe; + feesETHAllTime_not_in?: InputMaybe>; + feesETH_eq?: InputMaybe; + feesETH_gt?: InputMaybe; + feesETH_gte?: InputMaybe; + feesETH_in?: InputMaybe>; + feesETH_isNull?: InputMaybe; + feesETH_lt?: InputMaybe; + feesETH_lte?: InputMaybe; + feesETH_not_eq?: InputMaybe; + feesETH_not_in?: InputMaybe>; + feesUSD7Day_eq?: InputMaybe; + feesUSD7Day_gt?: InputMaybe; + feesUSD7Day_gte?: InputMaybe; + feesUSD7Day_in?: InputMaybe>; + feesUSD7Day_isNull?: InputMaybe; + feesUSD7Day_lt?: InputMaybe; + feesUSD7Day_lte?: InputMaybe; + feesUSD7Day_not_eq?: InputMaybe; + feesUSD7Day_not_in?: InputMaybe>; + feesUSDAllTime_eq?: InputMaybe; + feesUSDAllTime_gt?: InputMaybe; + feesUSDAllTime_gte?: InputMaybe; + feesUSDAllTime_in?: InputMaybe>; + feesUSDAllTime_isNull?: InputMaybe; + feesUSDAllTime_lt?: InputMaybe; + feesUSDAllTime_lte?: InputMaybe; + feesUSDAllTime_not_eq?: InputMaybe; + feesUSDAllTime_not_in?: InputMaybe>; + feesUSD_eq?: InputMaybe; + feesUSD_gt?: InputMaybe; + feesUSD_gte?: InputMaybe; + feesUSD_in?: InputMaybe>; + feesUSD_isNull?: InputMaybe; + feesUSD_lt?: InputMaybe; + feesUSD_lte?: InputMaybe; + feesUSD_not_eq?: InputMaybe; + feesUSD_not_in?: InputMaybe>; + holdersOverThreshold_eq?: InputMaybe; + holdersOverThreshold_gt?: InputMaybe; + holdersOverThreshold_gte?: InputMaybe; + holdersOverThreshold_in?: InputMaybe>; + holdersOverThreshold_isNull?: InputMaybe; + holdersOverThreshold_lt?: InputMaybe; + holdersOverThreshold_lte?: InputMaybe; + holdersOverThreshold_not_eq?: InputMaybe; + holdersOverThreshold_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -9985,6 +9137,45 @@ export type OusdMetaStrategyWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; + marketCapUSD_eq?: InputMaybe; + marketCapUSD_gt?: InputMaybe; + marketCapUSD_gte?: InputMaybe; + marketCapUSD_in?: InputMaybe>; + marketCapUSD_isNull?: InputMaybe; + marketCapUSD_lt?: InputMaybe; + marketCapUSD_lte?: InputMaybe; + marketCapUSD_not_eq?: InputMaybe; + marketCapUSD_not_in?: InputMaybe>; + nonRebasingSupply_eq?: InputMaybe; + nonRebasingSupply_gt?: InputMaybe; + nonRebasingSupply_gte?: InputMaybe; + nonRebasingSupply_in?: InputMaybe>; + nonRebasingSupply_isNull?: InputMaybe; + nonRebasingSupply_lt?: InputMaybe; + nonRebasingSupply_lte?: InputMaybe; + nonRebasingSupply_not_eq?: InputMaybe; + nonRebasingSupply_not_in?: InputMaybe>; + pegPrice_eq?: InputMaybe; + pegPrice_gt?: InputMaybe; + pegPrice_gte?: InputMaybe; + pegPrice_in?: InputMaybe>; + pegPrice_isNull?: InputMaybe; + pegPrice_lt?: InputMaybe; + pegPrice_lte?: InputMaybe; + pegPrice_not_eq?: InputMaybe; + pegPrice_not_in?: InputMaybe>; + rebasingSupply_eq?: InputMaybe; + rebasingSupply_gt?: InputMaybe; + rebasingSupply_gte?: InputMaybe; + rebasingSupply_in?: InputMaybe>; + rebasingSupply_isNull?: InputMaybe; + rebasingSupply_lt?: InputMaybe; + rebasingSupply_lte?: InputMaybe; + rebasingSupply_not_eq?: InputMaybe; + rebasingSupply_not_in?: InputMaybe>; + strategies_every?: InputMaybe; + strategies_none?: InputMaybe; + strategies_some?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -9994,28 +9185,114 @@ export type OusdMetaStrategyWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - usdc_eq?: InputMaybe; - usdc_gt?: InputMaybe; - usdc_gte?: InputMaybe; - usdc_in?: InputMaybe>; - usdc_isNull?: InputMaybe; - usdc_lt?: InputMaybe; - usdc_lte?: InputMaybe; - usdc_not_eq?: InputMaybe; - usdc_not_in?: InputMaybe>; - usdt_eq?: InputMaybe; - usdt_gt?: InputMaybe; - usdt_gte?: InputMaybe; - usdt_in?: InputMaybe>; - usdt_isNull?: InputMaybe; - usdt_lt?: InputMaybe; - usdt_lte?: InputMaybe; - usdt_not_eq?: InputMaybe; - usdt_not_in?: InputMaybe>; + totalSupplyUSD_eq?: InputMaybe; + totalSupplyUSD_gt?: InputMaybe; + totalSupplyUSD_gte?: InputMaybe; + totalSupplyUSD_in?: InputMaybe>; + totalSupplyUSD_isNull?: InputMaybe; + totalSupplyUSD_lt?: InputMaybe; + totalSupplyUSD_lte?: InputMaybe; + totalSupplyUSD_not_eq?: InputMaybe; + totalSupplyUSD_not_in?: InputMaybe>; + totalSupply_eq?: InputMaybe; + totalSupply_gt?: InputMaybe; + totalSupply_gte?: InputMaybe; + totalSupply_in?: InputMaybe>; + totalSupply_isNull?: InputMaybe; + totalSupply_lt?: InputMaybe; + totalSupply_lte?: InputMaybe; + totalSupply_not_eq?: InputMaybe; + totalSupply_not_in?: InputMaybe>; + tradingVolumeUSD_eq?: InputMaybe; + tradingVolumeUSD_gt?: InputMaybe; + tradingVolumeUSD_gte?: InputMaybe; + tradingVolumeUSD_in?: InputMaybe>; + tradingVolumeUSD_isNull?: InputMaybe; + tradingVolumeUSD_lt?: InputMaybe; + tradingVolumeUSD_lte?: InputMaybe; + tradingVolumeUSD_not_eq?: InputMaybe; + tradingVolumeUSD_not_in?: InputMaybe>; + wrappedSupply_eq?: InputMaybe; + wrappedSupply_gt?: InputMaybe; + wrappedSupply_gte?: InputMaybe; + wrappedSupply_in?: InputMaybe>; + wrappedSupply_isNull?: InputMaybe; + wrappedSupply_lt?: InputMaybe; + wrappedSupply_lte?: InputMaybe; + wrappedSupply_not_eq?: InputMaybe; + wrappedSupply_not_in?: InputMaybe>; + yieldETH7Day_eq?: InputMaybe; + yieldETH7Day_gt?: InputMaybe; + yieldETH7Day_gte?: InputMaybe; + yieldETH7Day_in?: InputMaybe>; + yieldETH7Day_isNull?: InputMaybe; + yieldETH7Day_lt?: InputMaybe; + yieldETH7Day_lte?: InputMaybe; + yieldETH7Day_not_eq?: InputMaybe; + yieldETH7Day_not_in?: InputMaybe>; + yieldETHAllTime_eq?: InputMaybe; + yieldETHAllTime_gt?: InputMaybe; + yieldETHAllTime_gte?: InputMaybe; + yieldETHAllTime_in?: InputMaybe>; + yieldETHAllTime_isNull?: InputMaybe; + yieldETHAllTime_lt?: InputMaybe; + yieldETHAllTime_lte?: InputMaybe; + yieldETHAllTime_not_eq?: InputMaybe; + yieldETHAllTime_not_in?: InputMaybe>; + yieldETH_eq?: InputMaybe; + yieldETH_gt?: InputMaybe; + yieldETH_gte?: InputMaybe; + yieldETH_in?: InputMaybe>; + yieldETH_isNull?: InputMaybe; + yieldETH_lt?: InputMaybe; + yieldETH_lte?: InputMaybe; + yieldETH_not_eq?: InputMaybe; + yieldETH_not_in?: InputMaybe>; + yieldUSD7Day_eq?: InputMaybe; + yieldUSD7Day_gt?: InputMaybe; + yieldUSD7Day_gte?: InputMaybe; + yieldUSD7Day_in?: InputMaybe>; + yieldUSD7Day_isNull?: InputMaybe; + yieldUSD7Day_lt?: InputMaybe; + yieldUSD7Day_lte?: InputMaybe; + yieldUSD7Day_not_eq?: InputMaybe; + yieldUSD7Day_not_in?: InputMaybe>; + yieldUSDAllTime_eq?: InputMaybe; + yieldUSDAllTime_gt?: InputMaybe; + yieldUSDAllTime_gte?: InputMaybe; + yieldUSDAllTime_in?: InputMaybe>; + yieldUSDAllTime_isNull?: InputMaybe; + yieldUSDAllTime_lt?: InputMaybe; + yieldUSDAllTime_lte?: InputMaybe; + yieldUSDAllTime_not_eq?: InputMaybe; + yieldUSDAllTime_not_in?: InputMaybe>; + yieldUSD_eq?: InputMaybe; + yieldUSD_gt?: InputMaybe; + yieldUSD_gte?: InputMaybe; + yieldUSD_in?: InputMaybe>; + yieldUSD_isNull?: InputMaybe; + yieldUSD_lt?: InputMaybe; + yieldUSD_lte?: InputMaybe; + yieldUSD_not_eq?: InputMaybe; + yieldUSD_not_in?: InputMaybe>; }; -export type OusdMorphoAave = { - __typename?: 'OUSDMorphoAave'; +export type OusdDailyStatsConnection = { + __typename?: 'OUSDDailyStatsConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; +}; + +export type OusdFluxStrategiesConnection = { + __typename?: 'OUSDFluxStrategiesConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; +}; + +export type OusdFluxStrategy = { + __typename?: 'OUSDFluxStrategy'; blockNumber: Scalars['Int']['output']; dai: Scalars['BigInt']['output']; id: Scalars['String']['output']; @@ -10024,13 +9301,13 @@ export type OusdMorphoAave = { usdt: Scalars['BigInt']['output']; }; -export type OusdMorphoAaveEdge = { - __typename?: 'OUSDMorphoAaveEdge'; +export type OusdFluxStrategyEdge = { + __typename?: 'OUSDFluxStrategyEdge'; cursor: Scalars['String']['output']; - node: OusdMorphoAave; + node: OusdFluxStrategy; }; -export enum OusdMorphoAaveOrderByInput { +export enum OusdFluxStrategyOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', @@ -10057,9 +9334,9 @@ export enum OusdMorphoAaveOrderByInput { UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' } -export type OusdMorphoAaveWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OusdFluxStrategyWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -10124,15 +9401,15 @@ export type OusdMorphoAaveWhereInput = { usdt_not_in?: InputMaybe>; }; -export type OusdMorphoAavesConnection = { - __typename?: 'OUSDMorphoAavesConnection'; - edges: Array; +export type OusdMetaStrategiesConnection = { + __typename?: 'OUSDMetaStrategiesConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export type OusdMorphoCompound = { - __typename?: 'OUSDMorphoCompound'; +export type OusdMetaStrategy = { + __typename?: 'OUSDMetaStrategy'; blockNumber: Scalars['Int']['output']; dai: Scalars['BigInt']['output']; id: Scalars['String']['output']; @@ -10141,13 +9418,13 @@ export type OusdMorphoCompound = { usdt: Scalars['BigInt']['output']; }; -export type OusdMorphoCompoundEdge = { - __typename?: 'OUSDMorphoCompoundEdge'; +export type OusdMetaStrategyEdge = { + __typename?: 'OUSDMetaStrategyEdge'; cursor: Scalars['String']['output']; - node: OusdMorphoCompound; + node: OusdMetaStrategy; }; -export enum OusdMorphoCompoundOrderByInput { +export enum OusdMetaStrategyOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', @@ -10174,9 +9451,9 @@ export enum OusdMorphoCompoundOrderByInput { UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' } -export type OusdMorphoCompoundWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type OusdMetaStrategyWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -10229,148 +9506,64 @@ export type OusdMorphoCompoundWhereInput = { usdc_lt?: InputMaybe; usdc_lte?: InputMaybe; usdc_not_eq?: InputMaybe; - usdc_not_in?: InputMaybe>; - usdt_eq?: InputMaybe; - usdt_gt?: InputMaybe; - usdt_gte?: InputMaybe; - usdt_in?: InputMaybe>; - usdt_isNull?: InputMaybe; - usdt_lt?: InputMaybe; - usdt_lte?: InputMaybe; - usdt_not_eq?: InputMaybe; - usdt_not_in?: InputMaybe>; -}; - -export type OusdMorphoCompoundsConnection = { - __typename?: 'OUSDMorphoCompoundsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - -export enum OusdOrderByInput { - BlockNumberAsc = 'blockNumber_ASC', - BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', - BlockNumberDesc = 'blockNumber_DESC', - BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - IdAsc = 'id_ASC', - IdAscNullsFirst = 'id_ASC_NULLS_FIRST', - IdDesc = 'id_DESC', - IdDescNullsLast = 'id_DESC_NULLS_LAST', - NonRebasingSupplyAsc = 'nonRebasingSupply_ASC', - NonRebasingSupplyAscNullsFirst = 'nonRebasingSupply_ASC_NULLS_FIRST', - NonRebasingSupplyDesc = 'nonRebasingSupply_DESC', - NonRebasingSupplyDescNullsLast = 'nonRebasingSupply_DESC_NULLS_LAST', - RebasingSupplyAsc = 'rebasingSupply_ASC', - RebasingSupplyAscNullsFirst = 'rebasingSupply_ASC_NULLS_FIRST', - RebasingSupplyDesc = 'rebasingSupply_DESC', - RebasingSupplyDescNullsLast = 'rebasingSupply_DESC_NULLS_LAST', - TimestampAsc = 'timestamp_ASC', - TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', - TimestampDesc = 'timestamp_DESC', - TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TotalSupplyAsc = 'totalSupply_ASC', - TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', - TotalSupplyDesc = 'totalSupply_DESC', - TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST' -} - -/** The Rebase entity tracks historical rebase events on the OUSD contract. */ -export type OusdRebase = { - __typename?: 'OUSDRebase'; - apy: Ousdapy; - blockNumber: Scalars['Int']['output']; - feeETH: Scalars['BigInt']['output']; - feeUSD: Scalars['BigInt']['output']; - id: Scalars['String']['output']; - rebasingCredits: Scalars['BigInt']['output']; - rebasingCreditsPerToken: Scalars['BigInt']['output']; - timestamp: Scalars['DateTime']['output']; - totalSupply: Scalars['BigInt']['output']; - txHash: Scalars['String']['output']; - yieldETH: Scalars['BigInt']['output']; - yieldUSD: Scalars['BigInt']['output']; -}; - -export type OusdRebaseEdge = { - __typename?: 'OUSDRebaseEdge'; - cursor: Scalars['String']['output']; - node: OusdRebase; + usdc_not_in?: InputMaybe>; + usdt_eq?: InputMaybe; + usdt_gt?: InputMaybe; + usdt_gte?: InputMaybe; + usdt_in?: InputMaybe>; + usdt_isNull?: InputMaybe; + usdt_lt?: InputMaybe; + usdt_lte?: InputMaybe; + usdt_not_eq?: InputMaybe; + usdt_not_in?: InputMaybe>; }; -/** The RebaseOption entity tracks historical rebase option changes by address. */ -export type OusdRebaseOption = { - __typename?: 'OUSDRebaseOption'; - address: OusdAddress; +export type OusdMorphoAave = { + __typename?: 'OUSDMorphoAave'; blockNumber: Scalars['Int']['output']; + dai: Scalars['BigInt']['output']; id: Scalars['String']['output']; - status: RebasingOption; timestamp: Scalars['DateTime']['output']; - txHash: Scalars['String']['output']; + usdc: Scalars['BigInt']['output']; + usdt: Scalars['BigInt']['output']; }; -export type OusdRebaseOptionEdge = { - __typename?: 'OUSDRebaseOptionEdge'; +export type OusdMorphoAaveEdge = { + __typename?: 'OUSDMorphoAaveEdge'; cursor: Scalars['String']['output']; - node: OusdRebaseOption; + node: OusdMorphoAave; }; -export enum OusdRebaseOptionOrderByInput { - AddressBalanceAsc = 'address_balance_ASC', - AddressBalanceAscNullsFirst = 'address_balance_ASC_NULLS_FIRST', - AddressBalanceDesc = 'address_balance_DESC', - AddressBalanceDescNullsLast = 'address_balance_DESC_NULLS_LAST', - AddressCreditsAsc = 'address_credits_ASC', - AddressCreditsAscNullsFirst = 'address_credits_ASC_NULLS_FIRST', - AddressCreditsDesc = 'address_credits_DESC', - AddressCreditsDescNullsLast = 'address_credits_DESC_NULLS_LAST', - AddressEarnedAsc = 'address_earned_ASC', - AddressEarnedAscNullsFirst = 'address_earned_ASC_NULLS_FIRST', - AddressEarnedDesc = 'address_earned_DESC', - AddressEarnedDescNullsLast = 'address_earned_DESC_NULLS_LAST', - AddressIdAsc = 'address_id_ASC', - AddressIdAscNullsFirst = 'address_id_ASC_NULLS_FIRST', - AddressIdDesc = 'address_id_DESC', - AddressIdDescNullsLast = 'address_id_DESC_NULLS_LAST', - AddressIsContractAsc = 'address_isContract_ASC', - AddressIsContractAscNullsFirst = 'address_isContract_ASC_NULLS_FIRST', - AddressIsContractDesc = 'address_isContract_DESC', - AddressIsContractDescNullsLast = 'address_isContract_DESC_NULLS_LAST', - AddressLastUpdatedAsc = 'address_lastUpdated_ASC', - AddressLastUpdatedAscNullsFirst = 'address_lastUpdated_ASC_NULLS_FIRST', - AddressLastUpdatedDesc = 'address_lastUpdated_DESC', - AddressLastUpdatedDescNullsLast = 'address_lastUpdated_DESC_NULLS_LAST', - AddressRebasingOptionAsc = 'address_rebasingOption_ASC', - AddressRebasingOptionAscNullsFirst = 'address_rebasingOption_ASC_NULLS_FIRST', - AddressRebasingOptionDesc = 'address_rebasingOption_DESC', - AddressRebasingOptionDescNullsLast = 'address_rebasingOption_DESC_NULLS_LAST', +export enum OusdMorphoAaveOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', + DaiAsc = 'dai_ASC', + DaiAscNullsFirst = 'dai_ASC_NULLS_FIRST', + DaiDesc = 'dai_DESC', + DaiDescNullsLast = 'dai_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - StatusAsc = 'status_ASC', - StatusAscNullsFirst = 'status_ASC_NULLS_FIRST', - StatusDesc = 'status_DESC', - StatusDescNullsLast = 'status_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TxHashAsc = 'txHash_ASC', - TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', - TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST' + UsdcAsc = 'usdc_ASC', + UsdcAscNullsFirst = 'usdc_ASC_NULLS_FIRST', + UsdcDesc = 'usdc_DESC', + UsdcDescNullsLast = 'usdc_DESC_NULLS_LAST', + UsdtAsc = 'usdt_ASC', + UsdtAscNullsFirst = 'usdt_ASC_NULLS_FIRST', + UsdtDesc = 'usdt_DESC', + UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' } -export type OusdRebaseOptionWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - address?: InputMaybe; - address_isNull?: InputMaybe; +export type OusdMorphoAaveWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -10380,6 +9573,15 @@ export type OusdRebaseOptionWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; + dai_eq?: InputMaybe; + dai_gt?: InputMaybe; + dai_gte?: InputMaybe; + dai_in?: InputMaybe>; + dai_isNull?: InputMaybe; + dai_lt?: InputMaybe; + dai_lte?: InputMaybe; + dai_not_eq?: InputMaybe; + dai_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -10397,11 +9599,6 @@ export type OusdRebaseOptionWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - status_eq?: InputMaybe; - status_in?: InputMaybe>; - status_isNull?: InputMaybe; - status_not_eq?: InputMaybe; - status_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -10411,124 +9608,79 @@ export type OusdRebaseOptionWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - txHash_contains?: InputMaybe; - txHash_containsInsensitive?: InputMaybe; - txHash_endsWith?: InputMaybe; - txHash_eq?: InputMaybe; - txHash_gt?: InputMaybe; - txHash_gte?: InputMaybe; - txHash_in?: InputMaybe>; - txHash_isNull?: InputMaybe; - txHash_lt?: InputMaybe; - txHash_lte?: InputMaybe; - txHash_not_contains?: InputMaybe; - txHash_not_containsInsensitive?: InputMaybe; - txHash_not_endsWith?: InputMaybe; - txHash_not_eq?: InputMaybe; - txHash_not_in?: InputMaybe>; - txHash_not_startsWith?: InputMaybe; - txHash_startsWith?: InputMaybe; + usdc_eq?: InputMaybe; + usdc_gt?: InputMaybe; + usdc_gte?: InputMaybe; + usdc_in?: InputMaybe>; + usdc_isNull?: InputMaybe; + usdc_lt?: InputMaybe; + usdc_lte?: InputMaybe; + usdc_not_eq?: InputMaybe; + usdc_not_in?: InputMaybe>; + usdt_eq?: InputMaybe; + usdt_gt?: InputMaybe; + usdt_gte?: InputMaybe; + usdt_in?: InputMaybe>; + usdt_isNull?: InputMaybe; + usdt_lt?: InputMaybe; + usdt_lte?: InputMaybe; + usdt_not_eq?: InputMaybe; + usdt_not_in?: InputMaybe>; }; -export type OusdRebaseOptionsConnection = { - __typename?: 'OUSDRebaseOptionsConnection'; - edges: Array; +export type OusdMorphoAavesConnection = { + __typename?: 'OUSDMorphoAavesConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; -export enum OusdRebaseOrderByInput { - ApyAprAsc = 'apy_apr_ASC', - ApyAprAscNullsFirst = 'apy_apr_ASC_NULLS_FIRST', - ApyAprDesc = 'apy_apr_DESC', - ApyAprDescNullsLast = 'apy_apr_DESC_NULLS_LAST', - ApyApy7DayAvgAsc = 'apy_apy7DayAvg_ASC', - ApyApy7DayAvgAscNullsFirst = 'apy_apy7DayAvg_ASC_NULLS_FIRST', - ApyApy7DayAvgDesc = 'apy_apy7DayAvg_DESC', - ApyApy7DayAvgDescNullsLast = 'apy_apy7DayAvg_DESC_NULLS_LAST', - ApyApy14DayAvgAsc = 'apy_apy14DayAvg_ASC', - ApyApy14DayAvgAscNullsFirst = 'apy_apy14DayAvg_ASC_NULLS_FIRST', - ApyApy14DayAvgDesc = 'apy_apy14DayAvg_DESC', - ApyApy14DayAvgDescNullsLast = 'apy_apy14DayAvg_DESC_NULLS_LAST', - ApyApy30DayAvgAsc = 'apy_apy30DayAvg_ASC', - ApyApy30DayAvgAscNullsFirst = 'apy_apy30DayAvg_ASC_NULLS_FIRST', - ApyApy30DayAvgDesc = 'apy_apy30DayAvg_DESC', - ApyApy30DayAvgDescNullsLast = 'apy_apy30DayAvg_DESC_NULLS_LAST', - ApyApyAsc = 'apy_apy_ASC', - ApyApyAscNullsFirst = 'apy_apy_ASC_NULLS_FIRST', - ApyApyDesc = 'apy_apy_DESC', - ApyApyDescNullsLast = 'apy_apy_DESC_NULLS_LAST', - ApyBlockNumberAsc = 'apy_blockNumber_ASC', - ApyBlockNumberAscNullsFirst = 'apy_blockNumber_ASC_NULLS_FIRST', - ApyBlockNumberDesc = 'apy_blockNumber_DESC', - ApyBlockNumberDescNullsLast = 'apy_blockNumber_DESC_NULLS_LAST', - ApyIdAsc = 'apy_id_ASC', - ApyIdAscNullsFirst = 'apy_id_ASC_NULLS_FIRST', - ApyIdDesc = 'apy_id_DESC', - ApyIdDescNullsLast = 'apy_id_DESC_NULLS_LAST', - ApyRebasingCreditsPerTokenAsc = 'apy_rebasingCreditsPerToken_ASC', - ApyRebasingCreditsPerTokenAscNullsFirst = 'apy_rebasingCreditsPerToken_ASC_NULLS_FIRST', - ApyRebasingCreditsPerTokenDesc = 'apy_rebasingCreditsPerToken_DESC', - ApyRebasingCreditsPerTokenDescNullsLast = 'apy_rebasingCreditsPerToken_DESC_NULLS_LAST', - ApyTimestampAsc = 'apy_timestamp_ASC', - ApyTimestampAscNullsFirst = 'apy_timestamp_ASC_NULLS_FIRST', - ApyTimestampDesc = 'apy_timestamp_DESC', - ApyTimestampDescNullsLast = 'apy_timestamp_DESC_NULLS_LAST', - ApyTxHashAsc = 'apy_txHash_ASC', - ApyTxHashAscNullsFirst = 'apy_txHash_ASC_NULLS_FIRST', - ApyTxHashDesc = 'apy_txHash_DESC', - ApyTxHashDescNullsLast = 'apy_txHash_DESC_NULLS_LAST', +export type OusdMorphoCompound = { + __typename?: 'OUSDMorphoCompound'; + blockNumber: Scalars['Int']['output']; + dai: Scalars['BigInt']['output']; + id: Scalars['String']['output']; + timestamp: Scalars['DateTime']['output']; + usdc: Scalars['BigInt']['output']; + usdt: Scalars['BigInt']['output']; +}; + +export type OusdMorphoCompoundEdge = { + __typename?: 'OUSDMorphoCompoundEdge'; + cursor: Scalars['String']['output']; + node: OusdMorphoCompound; +}; + +export enum OusdMorphoCompoundOrderByInput { BlockNumberAsc = 'blockNumber_ASC', BlockNumberAscNullsFirst = 'blockNumber_ASC_NULLS_FIRST', BlockNumberDesc = 'blockNumber_DESC', BlockNumberDescNullsLast = 'blockNumber_DESC_NULLS_LAST', - FeeEthAsc = 'feeETH_ASC', - FeeEthAscNullsFirst = 'feeETH_ASC_NULLS_FIRST', - FeeEthDesc = 'feeETH_DESC', - FeeEthDescNullsLast = 'feeETH_DESC_NULLS_LAST', - FeeUsdAsc = 'feeUSD_ASC', - FeeUsdAscNullsFirst = 'feeUSD_ASC_NULLS_FIRST', - FeeUsdDesc = 'feeUSD_DESC', - FeeUsdDescNullsLast = 'feeUSD_DESC_NULLS_LAST', + DaiAsc = 'dai_ASC', + DaiAscNullsFirst = 'dai_ASC_NULLS_FIRST', + DaiDesc = 'dai_DESC', + DaiDescNullsLast = 'dai_DESC_NULLS_LAST', IdAsc = 'id_ASC', IdAscNullsFirst = 'id_ASC_NULLS_FIRST', IdDesc = 'id_DESC', IdDescNullsLast = 'id_DESC_NULLS_LAST', - RebasingCreditsPerTokenAsc = 'rebasingCreditsPerToken_ASC', - RebasingCreditsPerTokenAscNullsFirst = 'rebasingCreditsPerToken_ASC_NULLS_FIRST', - RebasingCreditsPerTokenDesc = 'rebasingCreditsPerToken_DESC', - RebasingCreditsPerTokenDescNullsLast = 'rebasingCreditsPerToken_DESC_NULLS_LAST', - RebasingCreditsAsc = 'rebasingCredits_ASC', - RebasingCreditsAscNullsFirst = 'rebasingCredits_ASC_NULLS_FIRST', - RebasingCreditsDesc = 'rebasingCredits_DESC', - RebasingCreditsDescNullsLast = 'rebasingCredits_DESC_NULLS_LAST', TimestampAsc = 'timestamp_ASC', TimestampAscNullsFirst = 'timestamp_ASC_NULLS_FIRST', TimestampDesc = 'timestamp_DESC', TimestampDescNullsLast = 'timestamp_DESC_NULLS_LAST', - TotalSupplyAsc = 'totalSupply_ASC', - TotalSupplyAscNullsFirst = 'totalSupply_ASC_NULLS_FIRST', - TotalSupplyDesc = 'totalSupply_DESC', - TotalSupplyDescNullsLast = 'totalSupply_DESC_NULLS_LAST', - TxHashAsc = 'txHash_ASC', - TxHashAscNullsFirst = 'txHash_ASC_NULLS_FIRST', - TxHashDesc = 'txHash_DESC', - TxHashDescNullsLast = 'txHash_DESC_NULLS_LAST', - YieldEthAsc = 'yieldETH_ASC', - YieldEthAscNullsFirst = 'yieldETH_ASC_NULLS_FIRST', - YieldEthDesc = 'yieldETH_DESC', - YieldEthDescNullsLast = 'yieldETH_DESC_NULLS_LAST', - YieldUsdAsc = 'yieldUSD_ASC', - YieldUsdAscNullsFirst = 'yieldUSD_ASC_NULLS_FIRST', - YieldUsdDesc = 'yieldUSD_DESC', - YieldUsdDescNullsLast = 'yieldUSD_DESC_NULLS_LAST' + UsdcAsc = 'usdc_ASC', + UsdcAscNullsFirst = 'usdc_ASC_NULLS_FIRST', + UsdcDesc = 'usdc_DESC', + UsdcDescNullsLast = 'usdc_DESC_NULLS_LAST', + UsdtAsc = 'usdt_ASC', + UsdtAscNullsFirst = 'usdt_ASC_NULLS_FIRST', + UsdtDesc = 'usdt_DESC', + UsdtDescNullsLast = 'usdt_DESC_NULLS_LAST' } -export type OusdRebaseWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - apy?: InputMaybe; - apy_isNull?: InputMaybe; +export type OusdMorphoCompoundWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; blockNumber_eq?: InputMaybe; blockNumber_gt?: InputMaybe; blockNumber_gte?: InputMaybe; @@ -10538,24 +9690,15 @@ export type OusdRebaseWhereInput = { blockNumber_lte?: InputMaybe; blockNumber_not_eq?: InputMaybe; blockNumber_not_in?: InputMaybe>; - feeETH_eq?: InputMaybe; - feeETH_gt?: InputMaybe; - feeETH_gte?: InputMaybe; - feeETH_in?: InputMaybe>; - feeETH_isNull?: InputMaybe; - feeETH_lt?: InputMaybe; - feeETH_lte?: InputMaybe; - feeETH_not_eq?: InputMaybe; - feeETH_not_in?: InputMaybe>; - feeUSD_eq?: InputMaybe; - feeUSD_gt?: InputMaybe; - feeUSD_gte?: InputMaybe; - feeUSD_in?: InputMaybe>; - feeUSD_isNull?: InputMaybe; - feeUSD_lt?: InputMaybe; - feeUSD_lte?: InputMaybe; - feeUSD_not_eq?: InputMaybe; - feeUSD_not_in?: InputMaybe>; + dai_eq?: InputMaybe; + dai_gt?: InputMaybe; + dai_gte?: InputMaybe; + dai_in?: InputMaybe>; + dai_isNull?: InputMaybe; + dai_lt?: InputMaybe; + dai_lte?: InputMaybe; + dai_not_eq?: InputMaybe; + dai_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; @@ -10573,24 +9716,6 @@ export type OusdRebaseWhereInput = { id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; - rebasingCreditsPerToken_eq?: InputMaybe; - rebasingCreditsPerToken_gt?: InputMaybe; - rebasingCreditsPerToken_gte?: InputMaybe; - rebasingCreditsPerToken_in?: InputMaybe>; - rebasingCreditsPerToken_isNull?: InputMaybe; - rebasingCreditsPerToken_lt?: InputMaybe; - rebasingCreditsPerToken_lte?: InputMaybe; - rebasingCreditsPerToken_not_eq?: InputMaybe; - rebasingCreditsPerToken_not_in?: InputMaybe>; - rebasingCredits_eq?: InputMaybe; - rebasingCredits_gt?: InputMaybe; - rebasingCredits_gte?: InputMaybe; - rebasingCredits_in?: InputMaybe>; - rebasingCredits_isNull?: InputMaybe; - rebasingCredits_lt?: InputMaybe; - rebasingCredits_lte?: InputMaybe; - rebasingCredits_not_eq?: InputMaybe; - rebasingCredits_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; @@ -10600,55 +9725,29 @@ export type OusdRebaseWhereInput = { timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; - totalSupply_eq?: InputMaybe; - totalSupply_gt?: InputMaybe; - totalSupply_gte?: InputMaybe; - totalSupply_in?: InputMaybe>; - totalSupply_isNull?: InputMaybe; - totalSupply_lt?: InputMaybe; - totalSupply_lte?: InputMaybe; - totalSupply_not_eq?: InputMaybe; - totalSupply_not_in?: InputMaybe>; - txHash_contains?: InputMaybe; - txHash_containsInsensitive?: InputMaybe; - txHash_endsWith?: InputMaybe; - txHash_eq?: InputMaybe; - txHash_gt?: InputMaybe; - txHash_gte?: InputMaybe; - txHash_in?: InputMaybe>; - txHash_isNull?: InputMaybe; - txHash_lt?: InputMaybe; - txHash_lte?: InputMaybe; - txHash_not_contains?: InputMaybe; - txHash_not_containsInsensitive?: InputMaybe; - txHash_not_endsWith?: InputMaybe; - txHash_not_eq?: InputMaybe; - txHash_not_in?: InputMaybe>; - txHash_not_startsWith?: InputMaybe; - txHash_startsWith?: InputMaybe; - yieldETH_eq?: InputMaybe; - yieldETH_gt?: InputMaybe; - yieldETH_gte?: InputMaybe; - yieldETH_in?: InputMaybe>; - yieldETH_isNull?: InputMaybe; - yieldETH_lt?: InputMaybe; - yieldETH_lte?: InputMaybe; - yieldETH_not_eq?: InputMaybe; - yieldETH_not_in?: InputMaybe>; - yieldUSD_eq?: InputMaybe; - yieldUSD_gt?: InputMaybe; - yieldUSD_gte?: InputMaybe; - yieldUSD_in?: InputMaybe>; - yieldUSD_isNull?: InputMaybe; - yieldUSD_lt?: InputMaybe; - yieldUSD_lte?: InputMaybe; - yieldUSD_not_eq?: InputMaybe; - yieldUSD_not_in?: InputMaybe>; + usdc_eq?: InputMaybe; + usdc_gt?: InputMaybe; + usdc_gte?: InputMaybe; + usdc_in?: InputMaybe>; + usdc_isNull?: InputMaybe; + usdc_lt?: InputMaybe; + usdc_lte?: InputMaybe; + usdc_not_eq?: InputMaybe; + usdc_not_in?: InputMaybe>; + usdt_eq?: InputMaybe; + usdt_gt?: InputMaybe; + usdt_gte?: InputMaybe; + usdt_in?: InputMaybe>; + usdt_isNull?: InputMaybe; + usdt_lt?: InputMaybe; + usdt_lte?: InputMaybe; + usdt_not_eq?: InputMaybe; + usdt_not_in?: InputMaybe>; }; -export type OusdRebasesConnection = { - __typename?: 'OUSDRebasesConnection'; - edges: Array; +export type OusdMorphoCompoundsConnection = { + __typename?: 'OUSDMorphoCompoundsConnection'; + edges: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; @@ -11123,80 +10222,6 @@ export type OusdVaultsConnection = { totalCount: Scalars['Int']['output']; }; -export type OusdWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - id_contains?: InputMaybe; - id_containsInsensitive?: InputMaybe; - id_endsWith?: InputMaybe; - id_eq?: InputMaybe; - id_gt?: InputMaybe; - id_gte?: InputMaybe; - id_in?: InputMaybe>; - id_isNull?: InputMaybe; - id_lt?: InputMaybe; - id_lte?: InputMaybe; - id_not_contains?: InputMaybe; - id_not_containsInsensitive?: InputMaybe; - id_not_endsWith?: InputMaybe; - id_not_eq?: InputMaybe; - id_not_in?: InputMaybe>; - id_not_startsWith?: InputMaybe; - id_startsWith?: InputMaybe; - nonRebasingSupply_eq?: InputMaybe; - nonRebasingSupply_gt?: InputMaybe; - nonRebasingSupply_gte?: InputMaybe; - nonRebasingSupply_in?: InputMaybe>; - nonRebasingSupply_isNull?: InputMaybe; - nonRebasingSupply_lt?: InputMaybe; - nonRebasingSupply_lte?: InputMaybe; - nonRebasingSupply_not_eq?: InputMaybe; - nonRebasingSupply_not_in?: InputMaybe>; - rebasingSupply_eq?: InputMaybe; - rebasingSupply_gt?: InputMaybe; - rebasingSupply_gte?: InputMaybe; - rebasingSupply_in?: InputMaybe>; - rebasingSupply_isNull?: InputMaybe; - rebasingSupply_lt?: InputMaybe; - rebasingSupply_lte?: InputMaybe; - rebasingSupply_not_eq?: InputMaybe; - rebasingSupply_not_in?: InputMaybe>; - timestamp_eq?: InputMaybe; - timestamp_gt?: InputMaybe; - timestamp_gte?: InputMaybe; - timestamp_in?: InputMaybe>; - timestamp_isNull?: InputMaybe; - timestamp_lt?: InputMaybe; - timestamp_lte?: InputMaybe; - timestamp_not_eq?: InputMaybe; - timestamp_not_in?: InputMaybe>; - totalSupply_eq?: InputMaybe; - totalSupply_gt?: InputMaybe; - totalSupply_gte?: InputMaybe; - totalSupply_in?: InputMaybe>; - totalSupply_isNull?: InputMaybe; - totalSupply_lt?: InputMaybe; - totalSupply_lte?: InputMaybe; - totalSupply_not_eq?: InputMaybe; - totalSupply_not_in?: InputMaybe>; -}; - -export type OusDsConnection = { - __typename?: 'OUSDsConnection'; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars['Int']['output']; -}; - export type PageInfo = { __typename?: 'PageInfo'; endCursor: Scalars['String']['output']; @@ -11382,34 +10407,56 @@ export type Query = { nativeBalanceByUniqueInput?: Maybe; nativeBalances: Array; nativeBalancesConnection: NativeBalancesConnection; + oTokenActivities: Array; + oTokenActivitiesConnection: OTokenActivitiesConnection; + oTokenActivityById?: Maybe; + /** @deprecated Use oTokenActivityById */ + oTokenActivityByUniqueInput?: Maybe; + oTokenAddressById?: Maybe; + /** @deprecated Use oTokenAddressById */ + oTokenAddressByUniqueInput?: Maybe; + oTokenAddresses: Array; + oTokenAddressesConnection: OTokenAddressesConnection; + oTokenApies: Array; + oTokenApiesConnection: OTokenAPiesConnection; + oTokenApyById?: Maybe; + /** @deprecated Use oTokenApyById */ + oTokenApyByUniqueInput?: Maybe; + oTokenAssetById?: Maybe; + /** @deprecated Use oTokenAssetById */ + oTokenAssetByUniqueInput?: Maybe; + oTokenAssets: Array; + oTokenAssetsConnection: OTokenAssetsConnection; + oTokenById?: Maybe; + /** @deprecated Use oTokenById */ + oTokenByUniqueInput?: Maybe; + oTokenHistories: Array; + oTokenHistoriesConnection: OTokenHistoriesConnection; + oTokenHistoryById?: Maybe; + /** @deprecated Use oTokenHistoryById */ + oTokenHistoryByUniqueInput?: Maybe; + oTokenRebaseById?: Maybe; + /** @deprecated Use oTokenRebaseById */ + oTokenRebaseByUniqueInput?: Maybe; + oTokenRebaseOptionById?: Maybe; + /** @deprecated Use oTokenRebaseOptionById */ + oTokenRebaseOptionByUniqueInput?: Maybe; + oTokenRebaseOptions: Array; + oTokenRebaseOptionsConnection: OTokenRebaseOptionsConnection; + oTokenRebases: Array; + oTokenRebasesConnection: OTokenRebasesConnection; oTokenVaultById?: Maybe; /** @deprecated Use oTokenVaultById */ oTokenVaultByUniqueInput?: Maybe; oTokenVaults: Array; oTokenVaultsConnection: OTokenVaultsConnection; - oethActivities: Array; - oethActivitiesConnection: OethActivitiesConnection; - oethActivityById?: Maybe; - /** @deprecated Use oethActivityById */ - oethActivityByUniqueInput?: Maybe; - oethAddressById?: Maybe; - /** @deprecated Use oethAddressById */ - oethAddressByUniqueInput?: Maybe; - oethAddresses: Array; - oethAddressesConnection: OethAddressesConnection; - oethAssetById?: Maybe; - /** @deprecated Use oethAssetById */ - oethAssetByUniqueInput?: Maybe; - oethAssets: Array; - oethAssetsConnection: OethAssetsConnection; + oTokens: Array; + oTokensConnection: OTokensConnection; oethBalancerMetaPoolStrategies: Array; oethBalancerMetaPoolStrategiesConnection: OethBalancerMetaPoolStrategiesConnection; oethBalancerMetaPoolStrategyById?: Maybe; /** @deprecated Use oethBalancerMetaPoolStrategyById */ oethBalancerMetaPoolStrategyByUniqueInput?: Maybe; - oethById?: Maybe; - /** @deprecated Use oethById */ - oethByUniqueInput?: Maybe; oethCollateralDailyStatById?: Maybe; /** @deprecated Use oethCollateralDailyStatById */ oethCollateralDailyStatByUniqueInput?: Maybe; @@ -11435,26 +10482,11 @@ export type Query = { oethFraxStakingByUniqueInput?: Maybe; oethFraxStakings: Array; oethFraxStakingsConnection: OethFraxStakingsConnection; - oethHistories: Array; - oethHistoriesConnection: OethHistoriesConnection; - oethHistoryById?: Maybe; - /** @deprecated Use oethHistoryById */ - oethHistoryByUniqueInput?: Maybe; oethMorphoAaveById?: Maybe; /** @deprecated Use oethMorphoAaveById */ oethMorphoAaveByUniqueInput?: Maybe; oethMorphoAaves: Array; oethMorphoAavesConnection: OethMorphoAavesConnection; - oethRebaseById?: Maybe; - /** @deprecated Use oethRebaseById */ - oethRebaseByUniqueInput?: Maybe; - oethRebaseOptionById?: Maybe; - /** @deprecated Use oethRebaseOptionById */ - oethRebaseOptionByUniqueInput?: Maybe; - oethRebaseOptions: Array; - oethRebaseOptionsConnection: OethRebaseOptionsConnection; - oethRebases: Array; - oethRebasesConnection: OethRebasesConnection; oethRewardTokenCollectedById?: Maybe; /** @deprecated Use oethRewardTokenCollectedById */ oethRewardTokenCollectedByUniqueInput?: Maybe; @@ -11475,13 +10507,6 @@ export type Query = { oethVaultByUniqueInput?: Maybe; oethVaults: Array; oethVaultsConnection: OethVaultsConnection; - oethapies: Array; - oethapiesConnection: OethaPiesConnection; - oethapyById?: Maybe; - /** @deprecated Use oethapyById */ - oethapyByUniqueInput?: Maybe; - oeths: Array; - oethsConnection: OetHsConnection; ognStats: OgnStatsResult; ogvAddressById?: Maybe; /** @deprecated Use ogvAddressById */ @@ -11528,24 +10553,6 @@ export type Query = { ousdAaveStrategyById?: Maybe; /** @deprecated Use ousdAaveStrategyById */ ousdAaveStrategyByUniqueInput?: Maybe; - ousdActivities: Array; - ousdActivitiesConnection: OusdActivitiesConnection; - ousdActivityById?: Maybe; - /** @deprecated Use ousdActivityById */ - ousdActivityByUniqueInput?: Maybe; - ousdAddressById?: Maybe; - /** @deprecated Use ousdAddressById */ - ousdAddressByUniqueInput?: Maybe; - ousdAddresses: Array; - ousdAddressesConnection: OusdAddressesConnection; - ousdAssetById?: Maybe; - /** @deprecated Use ousdAssetById */ - ousdAssetByUniqueInput?: Maybe; - ousdAssets: Array; - ousdAssetsConnection: OusdAssetsConnection; - ousdById?: Maybe; - /** @deprecated Use ousdById */ - ousdByUniqueInput?: Maybe; ousdCollateralDailyStatById?: Maybe; /** @deprecated Use ousdCollateralDailyStatById */ ousdCollateralDailyStatByUniqueInput?: Maybe; @@ -11576,11 +10583,6 @@ export type Query = { ousdFluxStrategyById?: Maybe; /** @deprecated Use ousdFluxStrategyById */ ousdFluxStrategyByUniqueInput?: Maybe; - ousdHistories: Array; - ousdHistoriesConnection: OusdHistoriesConnection; - ousdHistoryById?: Maybe; - /** @deprecated Use ousdHistoryById */ - ousdHistoryByUniqueInput?: Maybe; ousdMetaStrategies: Array; ousdMetaStrategiesConnection: OusdMetaStrategiesConnection; ousdMetaStrategyById?: Maybe; @@ -11596,16 +10598,6 @@ export type Query = { ousdMorphoCompoundByUniqueInput?: Maybe; ousdMorphoCompounds: Array; ousdMorphoCompoundsConnection: OusdMorphoCompoundsConnection; - ousdRebaseById?: Maybe; - /** @deprecated Use ousdRebaseById */ - ousdRebaseByUniqueInput?: Maybe; - ousdRebaseOptionById?: Maybe; - /** @deprecated Use ousdRebaseOptionById */ - ousdRebaseOptionByUniqueInput?: Maybe; - ousdRebaseOptions: Array; - ousdRebaseOptionsConnection: OusdRebaseOptionsConnection; - ousdRebases: Array; - ousdRebasesConnection: OusdRebasesConnection; ousdStrategyDailyStatById?: Maybe; /** @deprecated Use ousdStrategyDailyStatById */ ousdStrategyDailyStatByUniqueInput?: Maybe; @@ -11621,13 +10613,6 @@ export type Query = { ousdVaultByUniqueInput?: Maybe; ousdVaults: Array; ousdVaultsConnection: OusdVaultsConnection; - ousdapies: Array; - ousdapiesConnection: OusdaPiesConnection; - ousdapyById?: Maybe; - /** @deprecated Use ousdapyById */ - ousdapyByUniqueInput?: Maybe; - ousds: Array; - ousdsConnection: OusDsConnection; processingStatusById?: Maybe; /** @deprecated Use processingStatusById */ processingStatusByUniqueInput?: Maybe; @@ -12172,107 +11157,237 @@ export type QueryNativeBalancesConnectionArgs = { }; -export type QueryOTokenVaultByIdArgs = { +export type QueryOTokenActivitiesArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + + +export type QueryOTokenActivitiesConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + orderBy: Array; + where?: InputMaybe; +}; + + +export type QueryOTokenActivityByIdArgs = { id: Scalars['String']['input']; }; -export type QueryOTokenVaultByUniqueInputArgs = { +export type QueryOTokenActivityByUniqueInputArgs = { where: WhereIdInput; }; -export type QueryOTokenVaultsArgs = { +export type QueryOTokenAddressByIdArgs = { + id: Scalars['String']['input']; +}; + + +export type QueryOTokenAddressByUniqueInputArgs = { + where: WhereIdInput; +}; + + +export type QueryOTokenAddressesArgs = { limit?: InputMaybe; offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; }; -export type QueryOTokenVaultsConnectionArgs = { +export type QueryOTokenAddressesConnectionArgs = { after?: InputMaybe; first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; + orderBy: Array; + where?: InputMaybe; +}; + + +export type QueryOTokenApiesArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + + +export type QueryOTokenApiesConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + orderBy: Array; + where?: InputMaybe; +}; + + +export type QueryOTokenApyByIdArgs = { + id: Scalars['String']['input']; +}; + + +export type QueryOTokenApyByUniqueInputArgs = { + where: WhereIdInput; +}; + + +export type QueryOTokenAssetByIdArgs = { + id: Scalars['String']['input']; +}; + + +export type QueryOTokenAssetByUniqueInputArgs = { + where: WhereIdInput; +}; + + +export type QueryOTokenAssetsArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + + +export type QueryOTokenAssetsConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + orderBy: Array; + where?: InputMaybe; +}; + + +export type QueryOTokenByIdArgs = { + id: Scalars['String']['input']; +}; + + +export type QueryOTokenByUniqueInputArgs = { + where: WhereIdInput; +}; + + +export type QueryOTokenHistoriesArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + + +export type QueryOTokenHistoriesConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + orderBy: Array; + where?: InputMaybe; +}; + + +export type QueryOTokenHistoryByIdArgs = { + id: Scalars['String']['input']; +}; + + +export type QueryOTokenHistoryByUniqueInputArgs = { + where: WhereIdInput; +}; + + +export type QueryOTokenRebaseByIdArgs = { + id: Scalars['String']['input']; +}; + + +export type QueryOTokenRebaseByUniqueInputArgs = { + where: WhereIdInput; +}; + + +export type QueryOTokenRebaseOptionByIdArgs = { + id: Scalars['String']['input']; +}; + + +export type QueryOTokenRebaseOptionByUniqueInputArgs = { + where: WhereIdInput; }; -export type QueryOethActivitiesArgs = { +export type QueryOTokenRebaseOptionsArgs = { limit?: InputMaybe; offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; }; -export type QueryOethActivitiesConnectionArgs = { +export type QueryOTokenRebaseOptionsConnectionArgs = { after?: InputMaybe; first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; + orderBy: Array; + where?: InputMaybe; }; -export type QueryOethActivityByIdArgs = { - id: Scalars['String']['input']; +export type QueryOTokenRebasesArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; }; -export type QueryOethActivityByUniqueInputArgs = { - where: WhereIdInput; +export type QueryOTokenRebasesConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + orderBy: Array; + where?: InputMaybe; }; -export type QueryOethAddressByIdArgs = { +export type QueryOTokenVaultByIdArgs = { id: Scalars['String']['input']; }; -export type QueryOethAddressByUniqueInputArgs = { +export type QueryOTokenVaultByUniqueInputArgs = { where: WhereIdInput; }; -export type QueryOethAddressesArgs = { +export type QueryOTokenVaultsArgs = { limit?: InputMaybe; offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; }; -export type QueryOethAddressesConnectionArgs = { +export type QueryOTokenVaultsConnectionArgs = { after?: InputMaybe; first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOethAssetByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOethAssetByUniqueInputArgs = { - where: WhereIdInput; + orderBy: Array; + where?: InputMaybe; }; -export type QueryOethAssetsArgs = { +export type QueryOTokensArgs = { limit?: InputMaybe; offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; }; -export type QueryOethAssetsConnectionArgs = { +export type QueryOTokensConnectionArgs = { after?: InputMaybe; first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; + orderBy: Array; + where?: InputMaybe; }; @@ -12302,16 +11417,6 @@ export type QueryOethBalancerMetaPoolStrategyByUniqueInputArgs = { }; -export type QueryOethByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOethByUniqueInputArgs = { - where: WhereIdInput; -}; - - export type QueryOethCollateralDailyStatByIdArgs = { id: Scalars['String']['input']; }; @@ -12442,32 +11547,6 @@ export type QueryOethFraxStakingsConnectionArgs = { }; -export type QueryOethHistoriesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOethHistoriesConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOethHistoryByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOethHistoryByUniqueInputArgs = { - where: WhereIdInput; -}; - - export type QueryOethMorphoAaveByIdArgs = { id: Scalars['String']['input']; }; @@ -12494,58 +11573,6 @@ export type QueryOethMorphoAavesConnectionArgs = { }; -export type QueryOethRebaseByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOethRebaseByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOethRebaseOptionByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOethRebaseOptionByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOethRebaseOptionsArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOethRebaseOptionsConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOethRebasesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOethRebasesConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - export type QueryOethRewardTokenCollectedByIdArgs = { id: Scalars['String']['input']; }; @@ -12650,48 +11677,6 @@ export type QueryOethVaultsConnectionArgs = { }; -export type QueryOethapiesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOethapiesConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOethapyByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOethapyByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOethsArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOethsConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - export type QueryOgvAddressByIdArgs = { id: Scalars['String']['input']; }; @@ -12926,94 +11911,6 @@ export type QueryOusdAaveStrategyByUniqueInputArgs = { }; -export type QueryOusdActivitiesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOusdActivitiesConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOusdActivityByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOusdActivityByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOusdAddressByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOusdAddressByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOusdAddressesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOusdAddressesConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOusdAssetByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOusdAssetByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOusdAssetsArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOusdAssetsConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOusdByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOusdByUniqueInputArgs = { - where: WhereIdInput; -}; - - export type QueryOusdCollateralDailyStatByIdArgs = { id: Scalars['String']['input']; }; @@ -13170,32 +12067,6 @@ export type QueryOusdFluxStrategyByUniqueInputArgs = { }; -export type QueryOusdHistoriesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOusdHistoriesConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOusdHistoryByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOusdHistoryByUniqueInputArgs = { - where: WhereIdInput; -}; - - export type QueryOusdMetaStrategiesArgs = { limit?: InputMaybe; offset?: InputMaybe; @@ -13274,58 +12145,6 @@ export type QueryOusdMorphoCompoundsConnectionArgs = { }; -export type QueryOusdRebaseByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOusdRebaseByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOusdRebaseOptionByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOusdRebaseOptionByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOusdRebaseOptionsArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOusdRebaseOptionsConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOusdRebasesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOusdRebasesConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - export type QueryOusdStrategyDailyStatByIdArgs = { id: Scalars['String']['input']; }; @@ -13404,48 +12223,6 @@ export type QueryOusdVaultsConnectionArgs = { }; -export type QueryOusdapiesArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOusdapiesConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - -export type QueryOusdapyByIdArgs = { - id: Scalars['String']['input']; -}; - - -export type QueryOusdapyByUniqueInputArgs = { - where: WhereIdInput; -}; - - -export type QueryOusdsArgs = { - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - where?: InputMaybe; -}; - - -export type QueryOusdsConnectionArgs = { - after?: InputMaybe; - first?: InputMaybe; - orderBy: Array; - where?: InputMaybe; -}; - - export type QueryProcessingStatusByIdArgs = { id: Scalars['String']['input']; }; diff --git a/libs/shared/providers/src/intl/hooks.ts b/libs/shared/providers/src/intl/hooks.ts index 6d7899696..55bf3acd6 100644 --- a/libs/shared/providers/src/intl/hooks.ts +++ b/libs/shared/providers/src/intl/hooks.ts @@ -34,7 +34,7 @@ export const useFormat = () => { typeof amount === 'bigint' ? +formatUnits(amount, decimals) : amount; for (const [threshold, maxDigits] of mappings) { - if (amt >= threshold) { + if (Math.abs(amt) >= threshold) { return intl.formatNumber(amt, { minimumFractionDigits: maxDigits, maximumFractionDigits: maxDigits,