diff --git a/apps/defi/src/lang/en.json b/apps/defi/src/lang/en.json index 0a100b73..bc554c1b 100644 --- a/apps/defi/src/lang/en.json +++ b/apps/defi/src/lang/en.json @@ -1043,6 +1043,12 @@ "value": "Error while unlocking" } ], + "E7YGax": [ + { + "type": 0, + "value": "Swap via OpenOcean" + } + ], "EMU/OA": [ { "type": 0, @@ -3079,6 +3085,12 @@ "value": "Extend Stake" } ], + "jq2cdc": [ + { + "type": 0, + "value": "Swap with OpenOcean" + } + ], "jvnqxK": [ { "type": 0, diff --git a/apps/defi/src/lang/extracts/en.json b/apps/defi/src/lang/extracts/en.json index 94d98dae..34899d10 100644 --- a/apps/defi/src/lang/extracts/en.json +++ b/apps/defi/src/lang/extracts/en.json @@ -431,6 +431,9 @@ "E57VkO": { "defaultMessage": "Error while unlocking" }, + "E7YGax": { + "defaultMessage": "Swap via OpenOcean" + }, "EMU/OA": { "defaultMessage": "The amount of xOGN you will receive today in return for your lockup. The more xOGN you have, the more voting power you have and the more staking rewards you will earn." }, @@ -1235,6 +1238,9 @@ "jngAIm": { "defaultMessage": "Extend Stake" }, + "jq2cdc": { + "defaultMessage": "Swap with OpenOcean" + }, "jvnqxK": { "defaultMessage": "Bridging" }, diff --git a/libs/analytics/shared/src/generated/graphql.ts b/libs/analytics/shared/src/generated/graphql.ts index 0dd305da..fe5d99ec 100644 --- a/libs/analytics/shared/src/generated/graphql.ts +++ b/libs/analytics/shared/src/generated/graphql.ts @@ -27363,6 +27363,20 @@ export type PageInfo = { startCursor: Scalars['String']['output']; }; +export type Pool = { + __typename?: 'Pool'; + address: Scalars['String']['output']; + chainId: Scalars['Int']['output']; + createdAt: Scalars['DateTime']['output']; + createdAtBlock: Scalars['Int']['output']; + exchange: Scalars['String']['output']; + id: Scalars['String']['output']; + name?: Maybe; + symbol?: Maybe; + tokens: Array; + type: Scalars['String']['output']; +}; + export type PoolBooster = { __typename?: 'PoolBooster'; active: Scalars['Boolean']['output']; @@ -27759,6 +27773,214 @@ export type PoolBoostersConnection = { totalCount: Scalars['Int']['output']; }; +export type PoolEdge = { + __typename?: 'PoolEdge'; + cursor: Scalars['String']['output']; + node: Pool; +}; + +export enum PoolOrderByInput { + AddressAsc = 'address_ASC', + AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', + AddressAscNullsLast = 'address_ASC_NULLS_LAST', + AddressDesc = 'address_DESC', + AddressDescNullsFirst = 'address_DESC_NULLS_FIRST', + AddressDescNullsLast = 'address_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdAscNullsLast = 'chainId_ASC_NULLS_LAST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsFirst = 'chainId_DESC_NULLS_FIRST', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', + CreatedAtBlockAsc = 'createdAtBlock_ASC', + CreatedAtBlockAscNullsFirst = 'createdAtBlock_ASC_NULLS_FIRST', + CreatedAtBlockAscNullsLast = 'createdAtBlock_ASC_NULLS_LAST', + CreatedAtBlockDesc = 'createdAtBlock_DESC', + CreatedAtBlockDescNullsFirst = 'createdAtBlock_DESC_NULLS_FIRST', + CreatedAtBlockDescNullsLast = 'createdAtBlock_DESC_NULLS_LAST', + CreatedAtAsc = 'createdAt_ASC', + CreatedAtAscNullsFirst = 'createdAt_ASC_NULLS_FIRST', + CreatedAtAscNullsLast = 'createdAt_ASC_NULLS_LAST', + CreatedAtDesc = 'createdAt_DESC', + CreatedAtDescNullsFirst = 'createdAt_DESC_NULLS_FIRST', + CreatedAtDescNullsLast = 'createdAt_DESC_NULLS_LAST', + ExchangeAsc = 'exchange_ASC', + ExchangeAscNullsFirst = 'exchange_ASC_NULLS_FIRST', + ExchangeAscNullsLast = 'exchange_ASC_NULLS_LAST', + ExchangeDesc = 'exchange_DESC', + ExchangeDescNullsFirst = 'exchange_DESC_NULLS_FIRST', + ExchangeDescNullsLast = 'exchange_DESC_NULLS_LAST', + IdAsc = 'id_ASC', + IdAscNullsFirst = 'id_ASC_NULLS_FIRST', + IdAscNullsLast = 'id_ASC_NULLS_LAST', + IdDesc = 'id_DESC', + IdDescNullsFirst = 'id_DESC_NULLS_FIRST', + IdDescNullsLast = 'id_DESC_NULLS_LAST', + NameAsc = 'name_ASC', + NameAscNullsFirst = 'name_ASC_NULLS_FIRST', + NameAscNullsLast = 'name_ASC_NULLS_LAST', + NameDesc = 'name_DESC', + NameDescNullsFirst = 'name_DESC_NULLS_FIRST', + NameDescNullsLast = 'name_DESC_NULLS_LAST', + SymbolAsc = 'symbol_ASC', + SymbolAscNullsFirst = 'symbol_ASC_NULLS_FIRST', + SymbolAscNullsLast = 'symbol_ASC_NULLS_LAST', + SymbolDesc = 'symbol_DESC', + SymbolDescNullsFirst = 'symbol_DESC_NULLS_FIRST', + SymbolDescNullsLast = 'symbol_DESC_NULLS_LAST', + TypeAsc = 'type_ASC', + TypeAscNullsFirst = 'type_ASC_NULLS_FIRST', + TypeAscNullsLast = 'type_ASC_NULLS_LAST', + TypeDesc = 'type_DESC', + TypeDescNullsFirst = 'type_DESC_NULLS_FIRST', + TypeDescNullsLast = 'type_DESC_NULLS_LAST' +} + +export type PoolWhereInput = { + 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>; + createdAtBlock_eq?: InputMaybe; + createdAtBlock_gt?: InputMaybe; + createdAtBlock_gte?: InputMaybe; + createdAtBlock_in?: InputMaybe>; + createdAtBlock_isNull?: InputMaybe; + createdAtBlock_lt?: InputMaybe; + createdAtBlock_lte?: InputMaybe; + createdAtBlock_not_eq?: InputMaybe; + createdAtBlock_not_in?: InputMaybe>; + createdAt_eq?: InputMaybe; + createdAt_gt?: InputMaybe; + createdAt_gte?: InputMaybe; + createdAt_in?: InputMaybe>; + createdAt_isNull?: InputMaybe; + createdAt_lt?: InputMaybe; + createdAt_lte?: InputMaybe; + createdAt_not_eq?: InputMaybe; + createdAt_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; + 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; + name_contains?: InputMaybe; + name_containsInsensitive?: InputMaybe; + name_endsWith?: InputMaybe; + name_eq?: InputMaybe; + name_gt?: InputMaybe; + name_gte?: InputMaybe; + name_in?: InputMaybe>; + name_isNull?: InputMaybe; + name_lt?: InputMaybe; + name_lte?: InputMaybe; + name_not_contains?: InputMaybe; + name_not_containsInsensitive?: InputMaybe; + name_not_endsWith?: InputMaybe; + name_not_eq?: InputMaybe; + name_not_in?: InputMaybe>; + name_not_startsWith?: InputMaybe; + name_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; + tokens_containsAll?: InputMaybe>; + tokens_containsAny?: InputMaybe>; + tokens_containsNone?: InputMaybe>; + tokens_isNull?: InputMaybe; + type_contains?: InputMaybe; + type_containsInsensitive?: InputMaybe; + type_endsWith?: InputMaybe; + type_eq?: InputMaybe; + type_gt?: InputMaybe; + type_gte?: InputMaybe; + type_in?: InputMaybe>; + type_isNull?: InputMaybe; + type_lt?: InputMaybe; + type_lte?: InputMaybe; + type_not_contains?: InputMaybe; + type_not_containsInsensitive?: InputMaybe; + type_not_endsWith?: InputMaybe; + type_not_eq?: InputMaybe; + type_not_in?: InputMaybe>; + type_not_startsWith?: InputMaybe; + type_startsWith?: InputMaybe; +}; + +export type PoolsConnection = { + __typename?: 'PoolsConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; +}; + export type ProcessingStatus = { __typename?: 'ProcessingStatus'; blockNumber: Scalars['Int']['output']; @@ -28652,6 +28874,9 @@ export type Query = { poolBoosterById?: Maybe; poolBoosters: Array; poolBoostersConnection: PoolBoostersConnection; + poolById?: Maybe; + pools: Array; + poolsConnection: PoolsConnection; processingStatusById?: Maybe; processingStatuses: Array; processingStatusesConnection: ProcessingStatusesConnection; @@ -31552,6 +31777,27 @@ export type QueryPoolBoostersConnectionArgs = { }; +export type QueryPoolByIdArgs = { + id: Scalars['String']['input']; +}; + + +export type QueryPoolsArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + + +export type QueryPoolsConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + orderBy: Array; + where?: InputMaybe; +}; + + export type QueryProcessingStatusByIdArgs = { id: Scalars['String']['input']; }; diff --git a/libs/defi/shared/src/generated/graphql.ts b/libs/defi/shared/src/generated/graphql.ts index 0dd305da..fe5d99ec 100644 --- a/libs/defi/shared/src/generated/graphql.ts +++ b/libs/defi/shared/src/generated/graphql.ts @@ -27363,6 +27363,20 @@ export type PageInfo = { startCursor: Scalars['String']['output']; }; +export type Pool = { + __typename?: 'Pool'; + address: Scalars['String']['output']; + chainId: Scalars['Int']['output']; + createdAt: Scalars['DateTime']['output']; + createdAtBlock: Scalars['Int']['output']; + exchange: Scalars['String']['output']; + id: Scalars['String']['output']; + name?: Maybe; + symbol?: Maybe; + tokens: Array; + type: Scalars['String']['output']; +}; + export type PoolBooster = { __typename?: 'PoolBooster'; active: Scalars['Boolean']['output']; @@ -27759,6 +27773,214 @@ export type PoolBoostersConnection = { totalCount: Scalars['Int']['output']; }; +export type PoolEdge = { + __typename?: 'PoolEdge'; + cursor: Scalars['String']['output']; + node: Pool; +}; + +export enum PoolOrderByInput { + AddressAsc = 'address_ASC', + AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', + AddressAscNullsLast = 'address_ASC_NULLS_LAST', + AddressDesc = 'address_DESC', + AddressDescNullsFirst = 'address_DESC_NULLS_FIRST', + AddressDescNullsLast = 'address_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdAscNullsLast = 'chainId_ASC_NULLS_LAST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsFirst = 'chainId_DESC_NULLS_FIRST', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', + CreatedAtBlockAsc = 'createdAtBlock_ASC', + CreatedAtBlockAscNullsFirst = 'createdAtBlock_ASC_NULLS_FIRST', + CreatedAtBlockAscNullsLast = 'createdAtBlock_ASC_NULLS_LAST', + CreatedAtBlockDesc = 'createdAtBlock_DESC', + CreatedAtBlockDescNullsFirst = 'createdAtBlock_DESC_NULLS_FIRST', + CreatedAtBlockDescNullsLast = 'createdAtBlock_DESC_NULLS_LAST', + CreatedAtAsc = 'createdAt_ASC', + CreatedAtAscNullsFirst = 'createdAt_ASC_NULLS_FIRST', + CreatedAtAscNullsLast = 'createdAt_ASC_NULLS_LAST', + CreatedAtDesc = 'createdAt_DESC', + CreatedAtDescNullsFirst = 'createdAt_DESC_NULLS_FIRST', + CreatedAtDescNullsLast = 'createdAt_DESC_NULLS_LAST', + ExchangeAsc = 'exchange_ASC', + ExchangeAscNullsFirst = 'exchange_ASC_NULLS_FIRST', + ExchangeAscNullsLast = 'exchange_ASC_NULLS_LAST', + ExchangeDesc = 'exchange_DESC', + ExchangeDescNullsFirst = 'exchange_DESC_NULLS_FIRST', + ExchangeDescNullsLast = 'exchange_DESC_NULLS_LAST', + IdAsc = 'id_ASC', + IdAscNullsFirst = 'id_ASC_NULLS_FIRST', + IdAscNullsLast = 'id_ASC_NULLS_LAST', + IdDesc = 'id_DESC', + IdDescNullsFirst = 'id_DESC_NULLS_FIRST', + IdDescNullsLast = 'id_DESC_NULLS_LAST', + NameAsc = 'name_ASC', + NameAscNullsFirst = 'name_ASC_NULLS_FIRST', + NameAscNullsLast = 'name_ASC_NULLS_LAST', + NameDesc = 'name_DESC', + NameDescNullsFirst = 'name_DESC_NULLS_FIRST', + NameDescNullsLast = 'name_DESC_NULLS_LAST', + SymbolAsc = 'symbol_ASC', + SymbolAscNullsFirst = 'symbol_ASC_NULLS_FIRST', + SymbolAscNullsLast = 'symbol_ASC_NULLS_LAST', + SymbolDesc = 'symbol_DESC', + SymbolDescNullsFirst = 'symbol_DESC_NULLS_FIRST', + SymbolDescNullsLast = 'symbol_DESC_NULLS_LAST', + TypeAsc = 'type_ASC', + TypeAscNullsFirst = 'type_ASC_NULLS_FIRST', + TypeAscNullsLast = 'type_ASC_NULLS_LAST', + TypeDesc = 'type_DESC', + TypeDescNullsFirst = 'type_DESC_NULLS_FIRST', + TypeDescNullsLast = 'type_DESC_NULLS_LAST' +} + +export type PoolWhereInput = { + 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>; + createdAtBlock_eq?: InputMaybe; + createdAtBlock_gt?: InputMaybe; + createdAtBlock_gte?: InputMaybe; + createdAtBlock_in?: InputMaybe>; + createdAtBlock_isNull?: InputMaybe; + createdAtBlock_lt?: InputMaybe; + createdAtBlock_lte?: InputMaybe; + createdAtBlock_not_eq?: InputMaybe; + createdAtBlock_not_in?: InputMaybe>; + createdAt_eq?: InputMaybe; + createdAt_gt?: InputMaybe; + createdAt_gte?: InputMaybe; + createdAt_in?: InputMaybe>; + createdAt_isNull?: InputMaybe; + createdAt_lt?: InputMaybe; + createdAt_lte?: InputMaybe; + createdAt_not_eq?: InputMaybe; + createdAt_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; + 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; + name_contains?: InputMaybe; + name_containsInsensitive?: InputMaybe; + name_endsWith?: InputMaybe; + name_eq?: InputMaybe; + name_gt?: InputMaybe; + name_gte?: InputMaybe; + name_in?: InputMaybe>; + name_isNull?: InputMaybe; + name_lt?: InputMaybe; + name_lte?: InputMaybe; + name_not_contains?: InputMaybe; + name_not_containsInsensitive?: InputMaybe; + name_not_endsWith?: InputMaybe; + name_not_eq?: InputMaybe; + name_not_in?: InputMaybe>; + name_not_startsWith?: InputMaybe; + name_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; + tokens_containsAll?: InputMaybe>; + tokens_containsAny?: InputMaybe>; + tokens_containsNone?: InputMaybe>; + tokens_isNull?: InputMaybe; + type_contains?: InputMaybe; + type_containsInsensitive?: InputMaybe; + type_endsWith?: InputMaybe; + type_eq?: InputMaybe; + type_gt?: InputMaybe; + type_gte?: InputMaybe; + type_in?: InputMaybe>; + type_isNull?: InputMaybe; + type_lt?: InputMaybe; + type_lte?: InputMaybe; + type_not_contains?: InputMaybe; + type_not_containsInsensitive?: InputMaybe; + type_not_endsWith?: InputMaybe; + type_not_eq?: InputMaybe; + type_not_in?: InputMaybe>; + type_not_startsWith?: InputMaybe; + type_startsWith?: InputMaybe; +}; + +export type PoolsConnection = { + __typename?: 'PoolsConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; +}; + export type ProcessingStatus = { __typename?: 'ProcessingStatus'; blockNumber: Scalars['Int']['output']; @@ -28652,6 +28874,9 @@ export type Query = { poolBoosterById?: Maybe; poolBoosters: Array; poolBoostersConnection: PoolBoostersConnection; + poolById?: Maybe; + pools: Array; + poolsConnection: PoolsConnection; processingStatusById?: Maybe; processingStatuses: Array; processingStatusesConnection: ProcessingStatusesConnection; @@ -31552,6 +31777,27 @@ export type QueryPoolBoostersConnectionArgs = { }; +export type QueryPoolByIdArgs = { + id: Scalars['String']['input']; +}; + + +export type QueryPoolsArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + + +export type QueryPoolsConnectionArgs = { + 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 0dd305da..fe5d99ec 100644 --- a/libs/governance/shared/src/generated/graphql.ts +++ b/libs/governance/shared/src/generated/graphql.ts @@ -27363,6 +27363,20 @@ export type PageInfo = { startCursor: Scalars['String']['output']; }; +export type Pool = { + __typename?: 'Pool'; + address: Scalars['String']['output']; + chainId: Scalars['Int']['output']; + createdAt: Scalars['DateTime']['output']; + createdAtBlock: Scalars['Int']['output']; + exchange: Scalars['String']['output']; + id: Scalars['String']['output']; + name?: Maybe; + symbol?: Maybe; + tokens: Array; + type: Scalars['String']['output']; +}; + export type PoolBooster = { __typename?: 'PoolBooster'; active: Scalars['Boolean']['output']; @@ -27759,6 +27773,214 @@ export type PoolBoostersConnection = { totalCount: Scalars['Int']['output']; }; +export type PoolEdge = { + __typename?: 'PoolEdge'; + cursor: Scalars['String']['output']; + node: Pool; +}; + +export enum PoolOrderByInput { + AddressAsc = 'address_ASC', + AddressAscNullsFirst = 'address_ASC_NULLS_FIRST', + AddressAscNullsLast = 'address_ASC_NULLS_LAST', + AddressDesc = 'address_DESC', + AddressDescNullsFirst = 'address_DESC_NULLS_FIRST', + AddressDescNullsLast = 'address_DESC_NULLS_LAST', + ChainIdAsc = 'chainId_ASC', + ChainIdAscNullsFirst = 'chainId_ASC_NULLS_FIRST', + ChainIdAscNullsLast = 'chainId_ASC_NULLS_LAST', + ChainIdDesc = 'chainId_DESC', + ChainIdDescNullsFirst = 'chainId_DESC_NULLS_FIRST', + ChainIdDescNullsLast = 'chainId_DESC_NULLS_LAST', + CreatedAtBlockAsc = 'createdAtBlock_ASC', + CreatedAtBlockAscNullsFirst = 'createdAtBlock_ASC_NULLS_FIRST', + CreatedAtBlockAscNullsLast = 'createdAtBlock_ASC_NULLS_LAST', + CreatedAtBlockDesc = 'createdAtBlock_DESC', + CreatedAtBlockDescNullsFirst = 'createdAtBlock_DESC_NULLS_FIRST', + CreatedAtBlockDescNullsLast = 'createdAtBlock_DESC_NULLS_LAST', + CreatedAtAsc = 'createdAt_ASC', + CreatedAtAscNullsFirst = 'createdAt_ASC_NULLS_FIRST', + CreatedAtAscNullsLast = 'createdAt_ASC_NULLS_LAST', + CreatedAtDesc = 'createdAt_DESC', + CreatedAtDescNullsFirst = 'createdAt_DESC_NULLS_FIRST', + CreatedAtDescNullsLast = 'createdAt_DESC_NULLS_LAST', + ExchangeAsc = 'exchange_ASC', + ExchangeAscNullsFirst = 'exchange_ASC_NULLS_FIRST', + ExchangeAscNullsLast = 'exchange_ASC_NULLS_LAST', + ExchangeDesc = 'exchange_DESC', + ExchangeDescNullsFirst = 'exchange_DESC_NULLS_FIRST', + ExchangeDescNullsLast = 'exchange_DESC_NULLS_LAST', + IdAsc = 'id_ASC', + IdAscNullsFirst = 'id_ASC_NULLS_FIRST', + IdAscNullsLast = 'id_ASC_NULLS_LAST', + IdDesc = 'id_DESC', + IdDescNullsFirst = 'id_DESC_NULLS_FIRST', + IdDescNullsLast = 'id_DESC_NULLS_LAST', + NameAsc = 'name_ASC', + NameAscNullsFirst = 'name_ASC_NULLS_FIRST', + NameAscNullsLast = 'name_ASC_NULLS_LAST', + NameDesc = 'name_DESC', + NameDescNullsFirst = 'name_DESC_NULLS_FIRST', + NameDescNullsLast = 'name_DESC_NULLS_LAST', + SymbolAsc = 'symbol_ASC', + SymbolAscNullsFirst = 'symbol_ASC_NULLS_FIRST', + SymbolAscNullsLast = 'symbol_ASC_NULLS_LAST', + SymbolDesc = 'symbol_DESC', + SymbolDescNullsFirst = 'symbol_DESC_NULLS_FIRST', + SymbolDescNullsLast = 'symbol_DESC_NULLS_LAST', + TypeAsc = 'type_ASC', + TypeAscNullsFirst = 'type_ASC_NULLS_FIRST', + TypeAscNullsLast = 'type_ASC_NULLS_LAST', + TypeDesc = 'type_DESC', + TypeDescNullsFirst = 'type_DESC_NULLS_FIRST', + TypeDescNullsLast = 'type_DESC_NULLS_LAST' +} + +export type PoolWhereInput = { + 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>; + createdAtBlock_eq?: InputMaybe; + createdAtBlock_gt?: InputMaybe; + createdAtBlock_gte?: InputMaybe; + createdAtBlock_in?: InputMaybe>; + createdAtBlock_isNull?: InputMaybe; + createdAtBlock_lt?: InputMaybe; + createdAtBlock_lte?: InputMaybe; + createdAtBlock_not_eq?: InputMaybe; + createdAtBlock_not_in?: InputMaybe>; + createdAt_eq?: InputMaybe; + createdAt_gt?: InputMaybe; + createdAt_gte?: InputMaybe; + createdAt_in?: InputMaybe>; + createdAt_isNull?: InputMaybe; + createdAt_lt?: InputMaybe; + createdAt_lte?: InputMaybe; + createdAt_not_eq?: InputMaybe; + createdAt_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; + 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; + name_contains?: InputMaybe; + name_containsInsensitive?: InputMaybe; + name_endsWith?: InputMaybe; + name_eq?: InputMaybe; + name_gt?: InputMaybe; + name_gte?: InputMaybe; + name_in?: InputMaybe>; + name_isNull?: InputMaybe; + name_lt?: InputMaybe; + name_lte?: InputMaybe; + name_not_contains?: InputMaybe; + name_not_containsInsensitive?: InputMaybe; + name_not_endsWith?: InputMaybe; + name_not_eq?: InputMaybe; + name_not_in?: InputMaybe>; + name_not_startsWith?: InputMaybe; + name_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; + tokens_containsAll?: InputMaybe>; + tokens_containsAny?: InputMaybe>; + tokens_containsNone?: InputMaybe>; + tokens_isNull?: InputMaybe; + type_contains?: InputMaybe; + type_containsInsensitive?: InputMaybe; + type_endsWith?: InputMaybe; + type_eq?: InputMaybe; + type_gt?: InputMaybe; + type_gte?: InputMaybe; + type_in?: InputMaybe>; + type_isNull?: InputMaybe; + type_lt?: InputMaybe; + type_lte?: InputMaybe; + type_not_contains?: InputMaybe; + type_not_containsInsensitive?: InputMaybe; + type_not_endsWith?: InputMaybe; + type_not_eq?: InputMaybe; + type_not_in?: InputMaybe>; + type_not_startsWith?: InputMaybe; + type_startsWith?: InputMaybe; +}; + +export type PoolsConnection = { + __typename?: 'PoolsConnection'; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']['output']; +}; + export type ProcessingStatus = { __typename?: 'ProcessingStatus'; blockNumber: Scalars['Int']['output']; @@ -28652,6 +28874,9 @@ export type Query = { poolBoosterById?: Maybe; poolBoosters: Array; poolBoostersConnection: PoolBoostersConnection; + poolById?: Maybe; + pools: Array; + poolsConnection: PoolsConnection; processingStatusById?: Maybe; processingStatuses: Array; processingStatusesConnection: ProcessingStatusesConnection; @@ -31552,6 +31777,27 @@ export type QueryPoolBoostersConnectionArgs = { }; +export type QueryPoolByIdArgs = { + id: Scalars['String']['input']; +}; + + +export type QueryPoolsArgs = { + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + + +export type QueryPoolsConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + orderBy: Array; + where?: InputMaybe; +}; + + export type QueryProcessingStatusByIdArgs = { id: Scalars['String']['input']; };