diff --git a/packages/chaindata-provider-extension/src/codegen.ts b/packages/chaindata-provider-extension/src/codegen.ts index 7186336314..1821853a3f 100644 --- a/packages/chaindata-provider-extension/src/codegen.ts +++ b/packages/chaindata-provider-extension/src/codegen.ts @@ -30,6 +30,7 @@ const config: CodegenConfig = { // defaults to `any` - let's go with `unknown` instead :) JSON: "unknown", }, + useTypeImports: true, }, hooks: { afterAllFileWrite: ["prettier --write"] }, }, diff --git a/packages/chaindata-provider-extension/src/graphql-codegen/gql.ts b/packages/chaindata-provider-extension/src/graphql-codegen/gql.ts index 65526d566a..844dd07a6b 100644 --- a/packages/chaindata-provider-extension/src/graphql-codegen/gql.ts +++ b/packages/chaindata-provider-extension/src/graphql-codegen/gql.ts @@ -1,4 +1,4 @@ -import { TypedDocumentNode as DocumentNode } from "@graphql-typed-document-node/core" +import type { TypedDocumentNode as DocumentNode } from "@graphql-typed-document-node/core" /* eslint-disable */ import * as types from "./graphql" diff --git a/packages/chaindata-provider-extension/src/graphql-codegen/graphql.ts b/packages/chaindata-provider-extension/src/graphql-codegen/graphql.ts index b8c7441f85..dd24b0ca94 100644 --- a/packages/chaindata-provider-extension/src/graphql-codegen/graphql.ts +++ b/packages/chaindata-provider-extension/src/graphql-codegen/graphql.ts @@ -1,2117 +1,1128 @@ /* eslint-disable */ -import { TypedDocumentNode as DocumentNode } from "@graphql-typed-document-node/core" -export type Maybe = T | null -export type InputMaybe = Maybe -export type Exact = { [K in keyof T]: T[K] } -export type MakeOptional = Omit & { [SubKey in K]?: Maybe } -export type MakeMaybe = Omit & { [SubKey in K]: Maybe } +import type { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core'; +export type Maybe = T | null; +export type InputMaybe = Maybe; +export type Exact = { [K in keyof T]: T[K] }; +export type MakeOptional = Omit & { [SubKey in K]?: Maybe }; +export type MakeMaybe = Omit & { [SubKey in K]: Maybe }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: string - String: string - Boolean: boolean - Int: number - Float: number + ID: string; + String: string; + Boolean: boolean; + Int: number; + Float: number; /** A scalar that can represent any JSON value */ - JSON: unknown -} + JSON: unknown; +}; export type BalanceModuleConfig = { - moduleConfig: Scalars["JSON"] - moduleType: Scalars["String"] -} + moduleConfig: Scalars['JSON']; + moduleType: Scalars['String']; +}; export type BalanceModuleMetadata = { - metadata: Scalars["JSON"] - moduleType: Scalars["String"] -} + metadata: Scalars['JSON']; + moduleType: Scalars['String']; +}; export type CachedCoingeckoLogo = { - id: Scalars["String"] - lastUpdated: Scalars["String"] - url: Scalars["String"] -} + id: Scalars['String']; + lastUpdated: Scalars['String']; + url: Scalars['String']; +}; export type CachedCoingeckoLogoEdge = { - cursor: Scalars["String"] - node: CachedCoingeckoLogo -} + cursor: Scalars['String']; + node: CachedCoingeckoLogo; +}; export type CachedCoingeckoLogoOrderByInput = - | "id_ASC" - | "id_DESC" - | "lastUpdated_ASC" - | "lastUpdated_DESC" - | "url_ASC" - | "url_DESC" + | 'id_ASC' + | 'id_DESC' + | 'lastUpdated_ASC' + | 'lastUpdated_DESC' + | 'url_ASC' + | 'url_DESC'; export type CachedCoingeckoLogoWhereInput = { - AND?: InputMaybe> - OR?: 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 - lastUpdated_contains?: InputMaybe - lastUpdated_containsInsensitive?: InputMaybe - lastUpdated_endsWith?: InputMaybe - lastUpdated_eq?: InputMaybe - lastUpdated_gt?: InputMaybe - lastUpdated_gte?: InputMaybe - lastUpdated_in?: InputMaybe> - lastUpdated_isNull?: InputMaybe - lastUpdated_lt?: InputMaybe - lastUpdated_lte?: InputMaybe - lastUpdated_not_contains?: InputMaybe - lastUpdated_not_containsInsensitive?: InputMaybe - lastUpdated_not_endsWith?: InputMaybe - lastUpdated_not_eq?: InputMaybe - lastUpdated_not_in?: InputMaybe> - lastUpdated_not_startsWith?: InputMaybe - lastUpdated_startsWith?: InputMaybe - url_contains?: InputMaybe - url_containsInsensitive?: InputMaybe - url_endsWith?: InputMaybe - url_eq?: InputMaybe - url_gt?: InputMaybe - url_gte?: InputMaybe - url_in?: InputMaybe> - url_isNull?: InputMaybe - url_lt?: InputMaybe - url_lte?: InputMaybe - url_not_contains?: InputMaybe - url_not_containsInsensitive?: InputMaybe - url_not_endsWith?: InputMaybe - url_not_eq?: InputMaybe - url_not_in?: InputMaybe> - url_not_startsWith?: InputMaybe - url_startsWith?: InputMaybe -} + AND?: InputMaybe>; + OR?: 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; + lastUpdated_contains?: InputMaybe; + lastUpdated_containsInsensitive?: InputMaybe; + lastUpdated_endsWith?: InputMaybe; + lastUpdated_eq?: InputMaybe; + lastUpdated_gt?: InputMaybe; + lastUpdated_gte?: InputMaybe; + lastUpdated_in?: InputMaybe>; + lastUpdated_isNull?: InputMaybe; + lastUpdated_lt?: InputMaybe; + lastUpdated_lte?: InputMaybe; + lastUpdated_not_contains?: InputMaybe; + lastUpdated_not_containsInsensitive?: InputMaybe; + lastUpdated_not_endsWith?: InputMaybe; + lastUpdated_not_eq?: InputMaybe; + lastUpdated_not_in?: InputMaybe>; + lastUpdated_not_startsWith?: InputMaybe; + lastUpdated_startsWith?: InputMaybe; + url_contains?: InputMaybe; + url_containsInsensitive?: InputMaybe; + url_endsWith?: InputMaybe; + url_eq?: InputMaybe; + url_gt?: InputMaybe; + url_gte?: InputMaybe; + url_in?: InputMaybe>; + url_isNull?: InputMaybe; + url_lt?: InputMaybe; + url_lte?: InputMaybe; + url_not_contains?: InputMaybe; + url_not_containsInsensitive?: InputMaybe; + url_not_endsWith?: InputMaybe; + url_not_eq?: InputMaybe; + url_not_in?: InputMaybe>; + url_not_startsWith?: InputMaybe; + url_startsWith?: InputMaybe; +}; export type CachedCoingeckoLogosConnection = { - edges: Array - pageInfo: PageInfo - totalCount: Scalars["Int"] -} + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']; +}; export type Chain = { /** account format for this chain */ - account: Maybe + account: Maybe; /** balance metadata for this chain */ - balanceMetadata: Array + balanceMetadata: Array; /** balance module configs for this chain */ - balanceModuleConfigs: Array + balanceModuleConfigs: Array; /** chain-specified name for this chain */ - chainName: Maybe + chainName: Maybe; /** chainspec qr url for this chain */ - chainspecQrUrl: Maybe + chainspecQrUrl: Maybe; /** evm networks on this chain */ - evmNetworks: Array + evmNetworks: Array; /** hash of the first block on this chain */ - genesisHash: Maybe + genesisHash: Maybe; /** the id for this chain (talisman-defined) */ - id: Scalars["String"] + id: Scalars['String']; /** implementation name for this chain */ - implName: Maybe + implName: Maybe; /** health status for this chain */ - isHealthy: Scalars["Boolean"] + isHealthy: Scalars['Boolean']; /** is chain this a testnet? */ - isTestnet: Scalars["Boolean"] + isTestnet: Scalars['Boolean']; /** does this chain use custom rules to decide on the fee token for txs? */ - isUnknownFeeToken: Scalars["Boolean"] + isUnknownFeeToken: Scalars['Boolean']; /** latest metadata qr url for this chain */ - latestMetadataQrUrl: Maybe + latestMetadataQrUrl: Maybe; /** url of the logo for this chain */ - logo: Maybe + logo: Maybe; /** talisman-defined name for this chain */ - name: Maybe + name: Maybe; /** native token for this chain */ - nativeToken: Maybe + nativeToken: Maybe; /** paraId for this chain (if this chain is a parachain for another chain) */ - paraId: Maybe + paraId: Maybe; /** parathreads of this chain (if this chain is a relaychain) */ - parathreads: Array + parathreads: Array; /** ss58 prefix for this chain */ - prefix: Maybe + prefix: Maybe; /** relaychain of this chain (if this chain is a parachain for another chain) */ - relay: Maybe + relay: Maybe; /** substrate rpcs for this chain (talisman-defined) */ - rpcs: Array + rpcs: Array; /** index for sorting chains and evm networks in a user-friendly way */ - sortIndex: Maybe + sortIndex: Maybe; /** specification name for this chain */ - specName: Maybe + specName: Maybe; /** specification version for this chain */ - specVersion: Maybe + specVersion: Maybe; /** subscan endpoint for this chain */ - subscanUrl: Maybe + subscanUrl: Maybe; /** a theme color for this chain */ - themeColor: Maybe + themeColor: Maybe; /** other tokens on this chain */ - tokens: Array -} + tokens: Array; +}; + export type ChainEvmNetworksArgs = { - limit?: InputMaybe - offset?: InputMaybe - orderBy?: InputMaybe> - where?: InputMaybe -} + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + export type ChainParathreadsArgs = { - limit?: InputMaybe - offset?: InputMaybe - orderBy?: InputMaybe> - where?: InputMaybe -} + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + export type ChainTokensArgs = { - limit?: InputMaybe - offset?: InputMaybe - orderBy?: InputMaybe> - where?: InputMaybe -} + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; export type ChainEdge = { - cursor: Scalars["String"] - node: Chain -} + cursor: Scalars['String']; + node: Chain; +}; export type ChainOrderByInput = - | "account_ASC" - | "account_DESC" - | "chainName_ASC" - | "chainName_DESC" - | "chainspecQrUrl_ASC" - | "chainspecQrUrl_DESC" - | "genesisHash_ASC" - | "genesisHash_DESC" - | "id_ASC" - | "id_DESC" - | "implName_ASC" - | "implName_DESC" - | "isHealthy_ASC" - | "isHealthy_DESC" - | "isTestnet_ASC" - | "isTestnet_DESC" - | "isUnknownFeeToken_ASC" - | "isUnknownFeeToken_DESC" - | "latestMetadataQrUrl_ASC" - | "latestMetadataQrUrl_DESC" - | "logo_ASC" - | "logo_DESC" - | "name_ASC" - | "name_DESC" - | "nativeToken_id_ASC" - | "nativeToken_id_DESC" - | "paraId_ASC" - | "paraId_DESC" - | "prefix_ASC" - | "prefix_DESC" - | "relay_account_ASC" - | "relay_account_DESC" - | "relay_chainName_ASC" - | "relay_chainName_DESC" - | "relay_chainspecQrUrl_ASC" - | "relay_chainspecQrUrl_DESC" - | "relay_genesisHash_ASC" - | "relay_genesisHash_DESC" - | "relay_id_ASC" - | "relay_id_DESC" - | "relay_implName_ASC" - | "relay_implName_DESC" - | "relay_isHealthy_ASC" - | "relay_isHealthy_DESC" - | "relay_isTestnet_ASC" - | "relay_isTestnet_DESC" - | "relay_isUnknownFeeToken_ASC" - | "relay_isUnknownFeeToken_DESC" - | "relay_latestMetadataQrUrl_ASC" - | "relay_latestMetadataQrUrl_DESC" - | "relay_logo_ASC" - | "relay_logo_DESC" - | "relay_name_ASC" - | "relay_name_DESC" - | "relay_paraId_ASC" - | "relay_paraId_DESC" - | "relay_prefix_ASC" - | "relay_prefix_DESC" - | "relay_sortIndex_ASC" - | "relay_sortIndex_DESC" - | "relay_specName_ASC" - | "relay_specName_DESC" - | "relay_specVersion_ASC" - | "relay_specVersion_DESC" - | "relay_subscanUrl_ASC" - | "relay_subscanUrl_DESC" - | "relay_themeColor_ASC" - | "relay_themeColor_DESC" - | "sortIndex_ASC" - | "sortIndex_DESC" - | "specName_ASC" - | "specName_DESC" - | "specVersion_ASC" - | "specVersion_DESC" - | "subscanUrl_ASC" - | "subscanUrl_DESC" - | "themeColor_ASC" - | "themeColor_DESC" + | 'account_ASC' + | 'account_DESC' + | 'chainName_ASC' + | 'chainName_DESC' + | 'chainspecQrUrl_ASC' + | 'chainspecQrUrl_DESC' + | 'genesisHash_ASC' + | 'genesisHash_DESC' + | 'id_ASC' + | 'id_DESC' + | 'implName_ASC' + | 'implName_DESC' + | 'isHealthy_ASC' + | 'isHealthy_DESC' + | 'isTestnet_ASC' + | 'isTestnet_DESC' + | 'isUnknownFeeToken_ASC' + | 'isUnknownFeeToken_DESC' + | 'latestMetadataQrUrl_ASC' + | 'latestMetadataQrUrl_DESC' + | 'logo_ASC' + | 'logo_DESC' + | 'name_ASC' + | 'name_DESC' + | 'nativeToken_id_ASC' + | 'nativeToken_id_DESC' + | 'paraId_ASC' + | 'paraId_DESC' + | 'prefix_ASC' + | 'prefix_DESC' + | 'relay_account_ASC' + | 'relay_account_DESC' + | 'relay_chainName_ASC' + | 'relay_chainName_DESC' + | 'relay_chainspecQrUrl_ASC' + | 'relay_chainspecQrUrl_DESC' + | 'relay_genesisHash_ASC' + | 'relay_genesisHash_DESC' + | 'relay_id_ASC' + | 'relay_id_DESC' + | 'relay_implName_ASC' + | 'relay_implName_DESC' + | 'relay_isHealthy_ASC' + | 'relay_isHealthy_DESC' + | 'relay_isTestnet_ASC' + | 'relay_isTestnet_DESC' + | 'relay_isUnknownFeeToken_ASC' + | 'relay_isUnknownFeeToken_DESC' + | 'relay_latestMetadataQrUrl_ASC' + | 'relay_latestMetadataQrUrl_DESC' + | 'relay_logo_ASC' + | 'relay_logo_DESC' + | 'relay_name_ASC' + | 'relay_name_DESC' + | 'relay_paraId_ASC' + | 'relay_paraId_DESC' + | 'relay_prefix_ASC' + | 'relay_prefix_DESC' + | 'relay_sortIndex_ASC' + | 'relay_sortIndex_DESC' + | 'relay_specName_ASC' + | 'relay_specName_DESC' + | 'relay_specVersion_ASC' + | 'relay_specVersion_DESC' + | 'relay_subscanUrl_ASC' + | 'relay_subscanUrl_DESC' + | 'relay_themeColor_ASC' + | 'relay_themeColor_DESC' + | 'sortIndex_ASC' + | 'sortIndex_DESC' + | 'specName_ASC' + | 'specName_DESC' + | 'specVersion_ASC' + | 'specVersion_DESC' + | 'subscanUrl_ASC' + | 'subscanUrl_DESC' + | 'themeColor_ASC' + | 'themeColor_DESC'; export type ChainWhereInput = { - AND?: InputMaybe> - OR?: InputMaybe> - account_contains?: InputMaybe - account_containsInsensitive?: InputMaybe - account_endsWith?: InputMaybe - account_eq?: InputMaybe - account_gt?: InputMaybe - account_gte?: InputMaybe - account_in?: InputMaybe> - account_isNull?: InputMaybe - account_lt?: InputMaybe - account_lte?: InputMaybe - account_not_contains?: InputMaybe - account_not_containsInsensitive?: InputMaybe - account_not_endsWith?: InputMaybe - account_not_eq?: InputMaybe - account_not_in?: InputMaybe> - account_not_startsWith?: InputMaybe - account_startsWith?: InputMaybe - balanceMetadata_isNull?: InputMaybe - balanceModuleConfigs_isNull?: InputMaybe - chainName_contains?: InputMaybe - chainName_containsInsensitive?: InputMaybe - chainName_endsWith?: InputMaybe - chainName_eq?: InputMaybe - chainName_gt?: InputMaybe - chainName_gte?: InputMaybe - chainName_in?: InputMaybe> - chainName_isNull?: InputMaybe - chainName_lt?: InputMaybe - chainName_lte?: InputMaybe - chainName_not_contains?: InputMaybe - chainName_not_containsInsensitive?: InputMaybe - chainName_not_endsWith?: InputMaybe - chainName_not_eq?: InputMaybe - chainName_not_in?: InputMaybe> - chainName_not_startsWith?: InputMaybe - chainName_startsWith?: InputMaybe - chainspecQrUrl_contains?: InputMaybe - chainspecQrUrl_containsInsensitive?: InputMaybe - chainspecQrUrl_endsWith?: InputMaybe - chainspecQrUrl_eq?: InputMaybe - chainspecQrUrl_gt?: InputMaybe - chainspecQrUrl_gte?: InputMaybe - chainspecQrUrl_in?: InputMaybe> - chainspecQrUrl_isNull?: InputMaybe - chainspecQrUrl_lt?: InputMaybe - chainspecQrUrl_lte?: InputMaybe - chainspecQrUrl_not_contains?: InputMaybe - chainspecQrUrl_not_containsInsensitive?: InputMaybe - chainspecQrUrl_not_endsWith?: InputMaybe - chainspecQrUrl_not_eq?: InputMaybe - chainspecQrUrl_not_in?: InputMaybe> - chainspecQrUrl_not_startsWith?: InputMaybe - chainspecQrUrl_startsWith?: InputMaybe - evmNetworks_every?: InputMaybe - evmNetworks_none?: InputMaybe - evmNetworks_some?: InputMaybe - genesisHash_contains?: InputMaybe - genesisHash_containsInsensitive?: InputMaybe - genesisHash_endsWith?: InputMaybe - genesisHash_eq?: InputMaybe - genesisHash_gt?: InputMaybe - genesisHash_gte?: InputMaybe - genesisHash_in?: InputMaybe> - genesisHash_isNull?: InputMaybe - genesisHash_lt?: InputMaybe - genesisHash_lte?: InputMaybe - genesisHash_not_contains?: InputMaybe - genesisHash_not_containsInsensitive?: InputMaybe - genesisHash_not_endsWith?: InputMaybe - genesisHash_not_eq?: InputMaybe - genesisHash_not_in?: InputMaybe> - genesisHash_not_startsWith?: InputMaybe - genesisHash_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 - implName_contains?: InputMaybe - implName_containsInsensitive?: InputMaybe - implName_endsWith?: InputMaybe - implName_eq?: InputMaybe - implName_gt?: InputMaybe - implName_gte?: InputMaybe - implName_in?: InputMaybe> - implName_isNull?: InputMaybe - implName_lt?: InputMaybe - implName_lte?: InputMaybe - implName_not_contains?: InputMaybe - implName_not_containsInsensitive?: InputMaybe - implName_not_endsWith?: InputMaybe - implName_not_eq?: InputMaybe - implName_not_in?: InputMaybe> - implName_not_startsWith?: InputMaybe - implName_startsWith?: InputMaybe - isHealthy_eq?: InputMaybe - isHealthy_isNull?: InputMaybe - isHealthy_not_eq?: InputMaybe - isTestnet_eq?: InputMaybe - isTestnet_isNull?: InputMaybe - isTestnet_not_eq?: InputMaybe - isUnknownFeeToken_eq?: InputMaybe - isUnknownFeeToken_isNull?: InputMaybe - isUnknownFeeToken_not_eq?: InputMaybe - latestMetadataQrUrl_contains?: InputMaybe - latestMetadataQrUrl_containsInsensitive?: InputMaybe - latestMetadataQrUrl_endsWith?: InputMaybe - latestMetadataQrUrl_eq?: InputMaybe - latestMetadataQrUrl_gt?: InputMaybe - latestMetadataQrUrl_gte?: InputMaybe - latestMetadataQrUrl_in?: InputMaybe> - latestMetadataQrUrl_isNull?: InputMaybe - latestMetadataQrUrl_lt?: InputMaybe - latestMetadataQrUrl_lte?: InputMaybe - latestMetadataQrUrl_not_contains?: InputMaybe - latestMetadataQrUrl_not_containsInsensitive?: InputMaybe - latestMetadataQrUrl_not_endsWith?: InputMaybe - latestMetadataQrUrl_not_eq?: InputMaybe - latestMetadataQrUrl_not_in?: InputMaybe> - latestMetadataQrUrl_not_startsWith?: InputMaybe - latestMetadataQrUrl_startsWith?: InputMaybe - logo_contains?: InputMaybe - logo_containsInsensitive?: InputMaybe - logo_endsWith?: InputMaybe - logo_eq?: InputMaybe - logo_gt?: InputMaybe - logo_gte?: InputMaybe - logo_in?: InputMaybe> - logo_isNull?: InputMaybe - logo_lt?: InputMaybe - logo_lte?: InputMaybe - logo_not_contains?: InputMaybe - logo_not_containsInsensitive?: InputMaybe - logo_not_endsWith?: InputMaybe - logo_not_eq?: InputMaybe - logo_not_in?: InputMaybe> - logo_not_startsWith?: InputMaybe - logo_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 - nativeToken?: InputMaybe - nativeToken_isNull?: InputMaybe - paraId_eq?: InputMaybe - paraId_gt?: InputMaybe - paraId_gte?: InputMaybe - paraId_in?: InputMaybe> - paraId_isNull?: InputMaybe - paraId_lt?: InputMaybe - paraId_lte?: InputMaybe - paraId_not_eq?: InputMaybe - paraId_not_in?: InputMaybe> - parathreads_every?: InputMaybe - parathreads_none?: InputMaybe - parathreads_some?: InputMaybe - prefix_eq?: InputMaybe - prefix_gt?: InputMaybe - prefix_gte?: InputMaybe - prefix_in?: InputMaybe> - prefix_isNull?: InputMaybe - prefix_lt?: InputMaybe - prefix_lte?: InputMaybe - prefix_not_eq?: InputMaybe - prefix_not_in?: InputMaybe> - relay?: InputMaybe - relay_isNull?: InputMaybe - rpcs_isNull?: InputMaybe - sortIndex_eq?: InputMaybe - sortIndex_gt?: InputMaybe - sortIndex_gte?: InputMaybe - sortIndex_in?: InputMaybe> - sortIndex_isNull?: InputMaybe - sortIndex_lt?: InputMaybe - sortIndex_lte?: InputMaybe - sortIndex_not_eq?: InputMaybe - sortIndex_not_in?: InputMaybe> - specName_contains?: InputMaybe - specName_containsInsensitive?: InputMaybe - specName_endsWith?: InputMaybe - specName_eq?: InputMaybe - specName_gt?: InputMaybe - specName_gte?: InputMaybe - specName_in?: InputMaybe> - specName_isNull?: InputMaybe - specName_lt?: InputMaybe - specName_lte?: InputMaybe - specName_not_contains?: InputMaybe - specName_not_containsInsensitive?: InputMaybe - specName_not_endsWith?: InputMaybe - specName_not_eq?: InputMaybe - specName_not_in?: InputMaybe> - specName_not_startsWith?: InputMaybe - specName_startsWith?: InputMaybe - specVersion_contains?: InputMaybe - specVersion_containsInsensitive?: InputMaybe - specVersion_endsWith?: InputMaybe - specVersion_eq?: InputMaybe - specVersion_gt?: InputMaybe - specVersion_gte?: InputMaybe - specVersion_in?: InputMaybe> - specVersion_isNull?: InputMaybe - specVersion_lt?: InputMaybe - specVersion_lte?: InputMaybe - specVersion_not_contains?: InputMaybe - specVersion_not_containsInsensitive?: InputMaybe - specVersion_not_endsWith?: InputMaybe - specVersion_not_eq?: InputMaybe - specVersion_not_in?: InputMaybe> - specVersion_not_startsWith?: InputMaybe - specVersion_startsWith?: InputMaybe - subscanUrl_contains?: InputMaybe - subscanUrl_containsInsensitive?: InputMaybe - subscanUrl_endsWith?: InputMaybe - subscanUrl_eq?: InputMaybe - subscanUrl_gt?: InputMaybe - subscanUrl_gte?: InputMaybe - subscanUrl_in?: InputMaybe> - subscanUrl_isNull?: InputMaybe - subscanUrl_lt?: InputMaybe - subscanUrl_lte?: InputMaybe - subscanUrl_not_contains?: InputMaybe - subscanUrl_not_containsInsensitive?: InputMaybe - subscanUrl_not_endsWith?: InputMaybe - subscanUrl_not_eq?: InputMaybe - subscanUrl_not_in?: InputMaybe> - subscanUrl_not_startsWith?: InputMaybe - subscanUrl_startsWith?: InputMaybe - themeColor_contains?: InputMaybe - themeColor_containsInsensitive?: InputMaybe - themeColor_endsWith?: InputMaybe - themeColor_eq?: InputMaybe - themeColor_gt?: InputMaybe - themeColor_gte?: InputMaybe - themeColor_in?: InputMaybe> - themeColor_isNull?: InputMaybe - themeColor_lt?: InputMaybe - themeColor_lte?: InputMaybe - themeColor_not_contains?: InputMaybe - themeColor_not_containsInsensitive?: InputMaybe - themeColor_not_endsWith?: InputMaybe - themeColor_not_eq?: InputMaybe - themeColor_not_in?: InputMaybe> - themeColor_not_startsWith?: InputMaybe - themeColor_startsWith?: InputMaybe - tokens_every?: InputMaybe - tokens_none?: InputMaybe - tokens_some?: InputMaybe -} + AND?: InputMaybe>; + OR?: InputMaybe>; + account_contains?: InputMaybe; + account_containsInsensitive?: InputMaybe; + account_endsWith?: InputMaybe; + account_eq?: InputMaybe; + account_gt?: InputMaybe; + account_gte?: InputMaybe; + account_in?: InputMaybe>; + account_isNull?: InputMaybe; + account_lt?: InputMaybe; + account_lte?: InputMaybe; + account_not_contains?: InputMaybe; + account_not_containsInsensitive?: InputMaybe; + account_not_endsWith?: InputMaybe; + account_not_eq?: InputMaybe; + account_not_in?: InputMaybe>; + account_not_startsWith?: InputMaybe; + account_startsWith?: InputMaybe; + balanceMetadata_isNull?: InputMaybe; + balanceModuleConfigs_isNull?: InputMaybe; + chainName_contains?: InputMaybe; + chainName_containsInsensitive?: InputMaybe; + chainName_endsWith?: InputMaybe; + chainName_eq?: InputMaybe; + chainName_gt?: InputMaybe; + chainName_gte?: InputMaybe; + chainName_in?: InputMaybe>; + chainName_isNull?: InputMaybe; + chainName_lt?: InputMaybe; + chainName_lte?: InputMaybe; + chainName_not_contains?: InputMaybe; + chainName_not_containsInsensitive?: InputMaybe; + chainName_not_endsWith?: InputMaybe; + chainName_not_eq?: InputMaybe; + chainName_not_in?: InputMaybe>; + chainName_not_startsWith?: InputMaybe; + chainName_startsWith?: InputMaybe; + chainspecQrUrl_contains?: InputMaybe; + chainspecQrUrl_containsInsensitive?: InputMaybe; + chainspecQrUrl_endsWith?: InputMaybe; + chainspecQrUrl_eq?: InputMaybe; + chainspecQrUrl_gt?: InputMaybe; + chainspecQrUrl_gte?: InputMaybe; + chainspecQrUrl_in?: InputMaybe>; + chainspecQrUrl_isNull?: InputMaybe; + chainspecQrUrl_lt?: InputMaybe; + chainspecQrUrl_lte?: InputMaybe; + chainspecQrUrl_not_contains?: InputMaybe; + chainspecQrUrl_not_containsInsensitive?: InputMaybe; + chainspecQrUrl_not_endsWith?: InputMaybe; + chainspecQrUrl_not_eq?: InputMaybe; + chainspecQrUrl_not_in?: InputMaybe>; + chainspecQrUrl_not_startsWith?: InputMaybe; + chainspecQrUrl_startsWith?: InputMaybe; + evmNetworks_every?: InputMaybe; + evmNetworks_none?: InputMaybe; + evmNetworks_some?: InputMaybe; + genesisHash_contains?: InputMaybe; + genesisHash_containsInsensitive?: InputMaybe; + genesisHash_endsWith?: InputMaybe; + genesisHash_eq?: InputMaybe; + genesisHash_gt?: InputMaybe; + genesisHash_gte?: InputMaybe; + genesisHash_in?: InputMaybe>; + genesisHash_isNull?: InputMaybe; + genesisHash_lt?: InputMaybe; + genesisHash_lte?: InputMaybe; + genesisHash_not_contains?: InputMaybe; + genesisHash_not_containsInsensitive?: InputMaybe; + genesisHash_not_endsWith?: InputMaybe; + genesisHash_not_eq?: InputMaybe; + genesisHash_not_in?: InputMaybe>; + genesisHash_not_startsWith?: InputMaybe; + genesisHash_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; + implName_contains?: InputMaybe; + implName_containsInsensitive?: InputMaybe; + implName_endsWith?: InputMaybe; + implName_eq?: InputMaybe; + implName_gt?: InputMaybe; + implName_gte?: InputMaybe; + implName_in?: InputMaybe>; + implName_isNull?: InputMaybe; + implName_lt?: InputMaybe; + implName_lte?: InputMaybe; + implName_not_contains?: InputMaybe; + implName_not_containsInsensitive?: InputMaybe; + implName_not_endsWith?: InputMaybe; + implName_not_eq?: InputMaybe; + implName_not_in?: InputMaybe>; + implName_not_startsWith?: InputMaybe; + implName_startsWith?: InputMaybe; + isHealthy_eq?: InputMaybe; + isHealthy_isNull?: InputMaybe; + isHealthy_not_eq?: InputMaybe; + isTestnet_eq?: InputMaybe; + isTestnet_isNull?: InputMaybe; + isTestnet_not_eq?: InputMaybe; + isUnknownFeeToken_eq?: InputMaybe; + isUnknownFeeToken_isNull?: InputMaybe; + isUnknownFeeToken_not_eq?: InputMaybe; + latestMetadataQrUrl_contains?: InputMaybe; + latestMetadataQrUrl_containsInsensitive?: InputMaybe; + latestMetadataQrUrl_endsWith?: InputMaybe; + latestMetadataQrUrl_eq?: InputMaybe; + latestMetadataQrUrl_gt?: InputMaybe; + latestMetadataQrUrl_gte?: InputMaybe; + latestMetadataQrUrl_in?: InputMaybe>; + latestMetadataQrUrl_isNull?: InputMaybe; + latestMetadataQrUrl_lt?: InputMaybe; + latestMetadataQrUrl_lte?: InputMaybe; + latestMetadataQrUrl_not_contains?: InputMaybe; + latestMetadataQrUrl_not_containsInsensitive?: InputMaybe; + latestMetadataQrUrl_not_endsWith?: InputMaybe; + latestMetadataQrUrl_not_eq?: InputMaybe; + latestMetadataQrUrl_not_in?: InputMaybe>; + latestMetadataQrUrl_not_startsWith?: InputMaybe; + latestMetadataQrUrl_startsWith?: InputMaybe; + logo_contains?: InputMaybe; + logo_containsInsensitive?: InputMaybe; + logo_endsWith?: InputMaybe; + logo_eq?: InputMaybe; + logo_gt?: InputMaybe; + logo_gte?: InputMaybe; + logo_in?: InputMaybe>; + logo_isNull?: InputMaybe; + logo_lt?: InputMaybe; + logo_lte?: InputMaybe; + logo_not_contains?: InputMaybe; + logo_not_containsInsensitive?: InputMaybe; + logo_not_endsWith?: InputMaybe; + logo_not_eq?: InputMaybe; + logo_not_in?: InputMaybe>; + logo_not_startsWith?: InputMaybe; + logo_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; + nativeToken?: InputMaybe; + nativeToken_isNull?: InputMaybe; + paraId_eq?: InputMaybe; + paraId_gt?: InputMaybe; + paraId_gte?: InputMaybe; + paraId_in?: InputMaybe>; + paraId_isNull?: InputMaybe; + paraId_lt?: InputMaybe; + paraId_lte?: InputMaybe; + paraId_not_eq?: InputMaybe; + paraId_not_in?: InputMaybe>; + parathreads_every?: InputMaybe; + parathreads_none?: InputMaybe; + parathreads_some?: InputMaybe; + prefix_eq?: InputMaybe; + prefix_gt?: InputMaybe; + prefix_gte?: InputMaybe; + prefix_in?: InputMaybe>; + prefix_isNull?: InputMaybe; + prefix_lt?: InputMaybe; + prefix_lte?: InputMaybe; + prefix_not_eq?: InputMaybe; + prefix_not_in?: InputMaybe>; + relay?: InputMaybe; + relay_isNull?: InputMaybe; + rpcs_isNull?: InputMaybe; + sortIndex_eq?: InputMaybe; + sortIndex_gt?: InputMaybe; + sortIndex_gte?: InputMaybe; + sortIndex_in?: InputMaybe>; + sortIndex_isNull?: InputMaybe; + sortIndex_lt?: InputMaybe; + sortIndex_lte?: InputMaybe; + sortIndex_not_eq?: InputMaybe; + sortIndex_not_in?: InputMaybe>; + specName_contains?: InputMaybe; + specName_containsInsensitive?: InputMaybe; + specName_endsWith?: InputMaybe; + specName_eq?: InputMaybe; + specName_gt?: InputMaybe; + specName_gte?: InputMaybe; + specName_in?: InputMaybe>; + specName_isNull?: InputMaybe; + specName_lt?: InputMaybe; + specName_lte?: InputMaybe; + specName_not_contains?: InputMaybe; + specName_not_containsInsensitive?: InputMaybe; + specName_not_endsWith?: InputMaybe; + specName_not_eq?: InputMaybe; + specName_not_in?: InputMaybe>; + specName_not_startsWith?: InputMaybe; + specName_startsWith?: InputMaybe; + specVersion_contains?: InputMaybe; + specVersion_containsInsensitive?: InputMaybe; + specVersion_endsWith?: InputMaybe; + specVersion_eq?: InputMaybe; + specVersion_gt?: InputMaybe; + specVersion_gte?: InputMaybe; + specVersion_in?: InputMaybe>; + specVersion_isNull?: InputMaybe; + specVersion_lt?: InputMaybe; + specVersion_lte?: InputMaybe; + specVersion_not_contains?: InputMaybe; + specVersion_not_containsInsensitive?: InputMaybe; + specVersion_not_endsWith?: InputMaybe; + specVersion_not_eq?: InputMaybe; + specVersion_not_in?: InputMaybe>; + specVersion_not_startsWith?: InputMaybe; + specVersion_startsWith?: InputMaybe; + subscanUrl_contains?: InputMaybe; + subscanUrl_containsInsensitive?: InputMaybe; + subscanUrl_endsWith?: InputMaybe; + subscanUrl_eq?: InputMaybe; + subscanUrl_gt?: InputMaybe; + subscanUrl_gte?: InputMaybe; + subscanUrl_in?: InputMaybe>; + subscanUrl_isNull?: InputMaybe; + subscanUrl_lt?: InputMaybe; + subscanUrl_lte?: InputMaybe; + subscanUrl_not_contains?: InputMaybe; + subscanUrl_not_containsInsensitive?: InputMaybe; + subscanUrl_not_endsWith?: InputMaybe; + subscanUrl_not_eq?: InputMaybe; + subscanUrl_not_in?: InputMaybe>; + subscanUrl_not_startsWith?: InputMaybe; + subscanUrl_startsWith?: InputMaybe; + themeColor_contains?: InputMaybe; + themeColor_containsInsensitive?: InputMaybe; + themeColor_endsWith?: InputMaybe; + themeColor_eq?: InputMaybe; + themeColor_gt?: InputMaybe; + themeColor_gte?: InputMaybe; + themeColor_in?: InputMaybe>; + themeColor_isNull?: InputMaybe; + themeColor_lt?: InputMaybe; + themeColor_lte?: InputMaybe; + themeColor_not_contains?: InputMaybe; + themeColor_not_containsInsensitive?: InputMaybe; + themeColor_not_endsWith?: InputMaybe; + themeColor_not_eq?: InputMaybe; + themeColor_not_in?: InputMaybe>; + themeColor_not_startsWith?: InputMaybe; + themeColor_startsWith?: InputMaybe; + tokens_every?: InputMaybe; + tokens_none?: InputMaybe; + tokens_some?: InputMaybe; +}; export type ChainsConnection = { - edges: Array - pageInfo: PageInfo - totalCount: Scalars["Int"] -} + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']; +}; export type EthereumRpc = { /** health status of this ethereum rpc */ - isHealthy: Scalars["Boolean"] + isHealthy: Scalars['Boolean']; /** url of this ethereum rpc */ - url: Scalars["String"] -} + url: Scalars['String']; +}; export type EvmNetwork = { /** balance metadata for this network */ - balanceMetadata: Array + balanceMetadata: Array; /** balance module configs for this network */ - balanceModuleConfigs: Array + balanceModuleConfigs: Array; /** block explorer url for this network */ - explorerUrl: Maybe + explorerUrl: Maybe; /** the chain identifier used for signing ethereum transactions */ - id: Scalars["String"] + id: Scalars['String']; /** health status of this network */ - isHealthy: Scalars["Boolean"] + isHealthy: Scalars['Boolean']; /** is this network a testnet? */ - isTestnet: Scalars["Boolean"] + isTestnet: Scalars['Boolean']; /** url of the logo for this network */ - logo: Maybe + logo: Maybe; /** name for this network (talisman-defined) */ - name: Maybe + name: Maybe; /** native token for this network */ - nativeToken: Maybe + nativeToken: Maybe; /** ethereum rpcs for this network (talisman-defined) */ - rpcs: Array + rpcs: Array; /** index for sorting chains and evm networks in a user-friendly way */ - sortIndex: Maybe + sortIndex: Maybe; /** substrate chain this evm network runs on */ - substrateChain: Maybe + substrateChain: Maybe; /** a theme color for this network */ - themeColor: Maybe + themeColor: Maybe; /** other tokens on this network */ - tokens: Array -} + tokens: Array; +}; + export type EvmNetworkTokensArgs = { - limit?: InputMaybe - offset?: InputMaybe - orderBy?: InputMaybe> - where?: InputMaybe -} + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; export type EvmNetworkEdge = { - cursor: Scalars["String"] - node: EvmNetwork -} + cursor: Scalars['String']; + node: EvmNetwork; +}; export type EvmNetworkOrderByInput = - | "explorerUrl_ASC" - | "explorerUrl_DESC" - | "id_ASC" - | "id_DESC" - | "isHealthy_ASC" - | "isHealthy_DESC" - | "isTestnet_ASC" - | "isTestnet_DESC" - | "logo_ASC" - | "logo_DESC" - | "name_ASC" - | "name_DESC" - | "nativeToken_id_ASC" - | "nativeToken_id_DESC" - | "sortIndex_ASC" - | "sortIndex_DESC" - | "substrateChain_account_ASC" - | "substrateChain_account_DESC" - | "substrateChain_chainName_ASC" - | "substrateChain_chainName_DESC" - | "substrateChain_chainspecQrUrl_ASC" - | "substrateChain_chainspecQrUrl_DESC" - | "substrateChain_genesisHash_ASC" - | "substrateChain_genesisHash_DESC" - | "substrateChain_id_ASC" - | "substrateChain_id_DESC" - | "substrateChain_implName_ASC" - | "substrateChain_implName_DESC" - | "substrateChain_isHealthy_ASC" - | "substrateChain_isHealthy_DESC" - | "substrateChain_isTestnet_ASC" - | "substrateChain_isTestnet_DESC" - | "substrateChain_isUnknownFeeToken_ASC" - | "substrateChain_isUnknownFeeToken_DESC" - | "substrateChain_latestMetadataQrUrl_ASC" - | "substrateChain_latestMetadataQrUrl_DESC" - | "substrateChain_logo_ASC" - | "substrateChain_logo_DESC" - | "substrateChain_name_ASC" - | "substrateChain_name_DESC" - | "substrateChain_paraId_ASC" - | "substrateChain_paraId_DESC" - | "substrateChain_prefix_ASC" - | "substrateChain_prefix_DESC" - | "substrateChain_sortIndex_ASC" - | "substrateChain_sortIndex_DESC" - | "substrateChain_specName_ASC" - | "substrateChain_specName_DESC" - | "substrateChain_specVersion_ASC" - | "substrateChain_specVersion_DESC" - | "substrateChain_subscanUrl_ASC" - | "substrateChain_subscanUrl_DESC" - | "substrateChain_themeColor_ASC" - | "substrateChain_themeColor_DESC" - | "themeColor_ASC" - | "themeColor_DESC" + | 'explorerUrl_ASC' + | 'explorerUrl_DESC' + | 'id_ASC' + | 'id_DESC' + | 'isHealthy_ASC' + | 'isHealthy_DESC' + | 'isTestnet_ASC' + | 'isTestnet_DESC' + | 'logo_ASC' + | 'logo_DESC' + | 'name_ASC' + | 'name_DESC' + | 'nativeToken_id_ASC' + | 'nativeToken_id_DESC' + | 'sortIndex_ASC' + | 'sortIndex_DESC' + | 'substrateChain_account_ASC' + | 'substrateChain_account_DESC' + | 'substrateChain_chainName_ASC' + | 'substrateChain_chainName_DESC' + | 'substrateChain_chainspecQrUrl_ASC' + | 'substrateChain_chainspecQrUrl_DESC' + | 'substrateChain_genesisHash_ASC' + | 'substrateChain_genesisHash_DESC' + | 'substrateChain_id_ASC' + | 'substrateChain_id_DESC' + | 'substrateChain_implName_ASC' + | 'substrateChain_implName_DESC' + | 'substrateChain_isHealthy_ASC' + | 'substrateChain_isHealthy_DESC' + | 'substrateChain_isTestnet_ASC' + | 'substrateChain_isTestnet_DESC' + | 'substrateChain_isUnknownFeeToken_ASC' + | 'substrateChain_isUnknownFeeToken_DESC' + | 'substrateChain_latestMetadataQrUrl_ASC' + | 'substrateChain_latestMetadataQrUrl_DESC' + | 'substrateChain_logo_ASC' + | 'substrateChain_logo_DESC' + | 'substrateChain_name_ASC' + | 'substrateChain_name_DESC' + | 'substrateChain_paraId_ASC' + | 'substrateChain_paraId_DESC' + | 'substrateChain_prefix_ASC' + | 'substrateChain_prefix_DESC' + | 'substrateChain_sortIndex_ASC' + | 'substrateChain_sortIndex_DESC' + | 'substrateChain_specName_ASC' + | 'substrateChain_specName_DESC' + | 'substrateChain_specVersion_ASC' + | 'substrateChain_specVersion_DESC' + | 'substrateChain_subscanUrl_ASC' + | 'substrateChain_subscanUrl_DESC' + | 'substrateChain_themeColor_ASC' + | 'substrateChain_themeColor_DESC' + | 'themeColor_ASC' + | 'themeColor_DESC'; export type EvmNetworkWhereInput = { - AND?: InputMaybe> - OR?: InputMaybe> - balanceMetadata_isNull?: InputMaybe - balanceModuleConfigs_isNull?: InputMaybe - explorerUrl_contains?: InputMaybe - explorerUrl_containsInsensitive?: InputMaybe - explorerUrl_endsWith?: InputMaybe - explorerUrl_eq?: InputMaybe - explorerUrl_gt?: InputMaybe - explorerUrl_gte?: InputMaybe - explorerUrl_in?: InputMaybe> - explorerUrl_isNull?: InputMaybe - explorerUrl_lt?: InputMaybe - explorerUrl_lte?: InputMaybe - explorerUrl_not_contains?: InputMaybe - explorerUrl_not_containsInsensitive?: InputMaybe - explorerUrl_not_endsWith?: InputMaybe - explorerUrl_not_eq?: InputMaybe - explorerUrl_not_in?: InputMaybe> - explorerUrl_not_startsWith?: InputMaybe - explorerUrl_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 - isHealthy_eq?: InputMaybe - isHealthy_isNull?: InputMaybe - isHealthy_not_eq?: InputMaybe - isTestnet_eq?: InputMaybe - isTestnet_isNull?: InputMaybe - isTestnet_not_eq?: InputMaybe - logo_contains?: InputMaybe - logo_containsInsensitive?: InputMaybe - logo_endsWith?: InputMaybe - logo_eq?: InputMaybe - logo_gt?: InputMaybe - logo_gte?: InputMaybe - logo_in?: InputMaybe> - logo_isNull?: InputMaybe - logo_lt?: InputMaybe - logo_lte?: InputMaybe - logo_not_contains?: InputMaybe - logo_not_containsInsensitive?: InputMaybe - logo_not_endsWith?: InputMaybe - logo_not_eq?: InputMaybe - logo_not_in?: InputMaybe> - logo_not_startsWith?: InputMaybe - logo_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 - nativeToken?: InputMaybe - nativeToken_isNull?: InputMaybe - rpcs_isNull?: InputMaybe - sortIndex_eq?: InputMaybe - sortIndex_gt?: InputMaybe - sortIndex_gte?: InputMaybe - sortIndex_in?: InputMaybe> - sortIndex_isNull?: InputMaybe - sortIndex_lt?: InputMaybe - sortIndex_lte?: InputMaybe - sortIndex_not_eq?: InputMaybe - sortIndex_not_in?: InputMaybe> - substrateChain?: InputMaybe - substrateChain_isNull?: InputMaybe - themeColor_contains?: InputMaybe - themeColor_containsInsensitive?: InputMaybe - themeColor_endsWith?: InputMaybe - themeColor_eq?: InputMaybe - themeColor_gt?: InputMaybe - themeColor_gte?: InputMaybe - themeColor_in?: InputMaybe> - themeColor_isNull?: InputMaybe - themeColor_lt?: InputMaybe - themeColor_lte?: InputMaybe - themeColor_not_contains?: InputMaybe - themeColor_not_containsInsensitive?: InputMaybe - themeColor_not_endsWith?: InputMaybe - themeColor_not_eq?: InputMaybe - themeColor_not_in?: InputMaybe> - themeColor_not_startsWith?: InputMaybe - themeColor_startsWith?: InputMaybe - tokens_every?: InputMaybe - tokens_none?: InputMaybe - tokens_some?: InputMaybe -} + AND?: InputMaybe>; + OR?: InputMaybe>; + balanceMetadata_isNull?: InputMaybe; + balanceModuleConfigs_isNull?: InputMaybe; + explorerUrl_contains?: InputMaybe; + explorerUrl_containsInsensitive?: InputMaybe; + explorerUrl_endsWith?: InputMaybe; + explorerUrl_eq?: InputMaybe; + explorerUrl_gt?: InputMaybe; + explorerUrl_gte?: InputMaybe; + explorerUrl_in?: InputMaybe>; + explorerUrl_isNull?: InputMaybe; + explorerUrl_lt?: InputMaybe; + explorerUrl_lte?: InputMaybe; + explorerUrl_not_contains?: InputMaybe; + explorerUrl_not_containsInsensitive?: InputMaybe; + explorerUrl_not_endsWith?: InputMaybe; + explorerUrl_not_eq?: InputMaybe; + explorerUrl_not_in?: InputMaybe>; + explorerUrl_not_startsWith?: InputMaybe; + explorerUrl_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; + isHealthy_eq?: InputMaybe; + isHealthy_isNull?: InputMaybe; + isHealthy_not_eq?: InputMaybe; + isTestnet_eq?: InputMaybe; + isTestnet_isNull?: InputMaybe; + isTestnet_not_eq?: InputMaybe; + logo_contains?: InputMaybe; + logo_containsInsensitive?: InputMaybe; + logo_endsWith?: InputMaybe; + logo_eq?: InputMaybe; + logo_gt?: InputMaybe; + logo_gte?: InputMaybe; + logo_in?: InputMaybe>; + logo_isNull?: InputMaybe; + logo_lt?: InputMaybe; + logo_lte?: InputMaybe; + logo_not_contains?: InputMaybe; + logo_not_containsInsensitive?: InputMaybe; + logo_not_endsWith?: InputMaybe; + logo_not_eq?: InputMaybe; + logo_not_in?: InputMaybe>; + logo_not_startsWith?: InputMaybe; + logo_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; + nativeToken?: InputMaybe; + nativeToken_isNull?: InputMaybe; + rpcs_isNull?: InputMaybe; + sortIndex_eq?: InputMaybe; + sortIndex_gt?: InputMaybe; + sortIndex_gte?: InputMaybe; + sortIndex_in?: InputMaybe>; + sortIndex_isNull?: InputMaybe; + sortIndex_lt?: InputMaybe; + sortIndex_lte?: InputMaybe; + sortIndex_not_eq?: InputMaybe; + sortIndex_not_in?: InputMaybe>; + substrateChain?: InputMaybe; + substrateChain_isNull?: InputMaybe; + themeColor_contains?: InputMaybe; + themeColor_containsInsensitive?: InputMaybe; + themeColor_endsWith?: InputMaybe; + themeColor_eq?: InputMaybe; + themeColor_gt?: InputMaybe; + themeColor_gte?: InputMaybe; + themeColor_in?: InputMaybe>; + themeColor_isNull?: InputMaybe; + themeColor_lt?: InputMaybe; + themeColor_lte?: InputMaybe; + themeColor_not_contains?: InputMaybe; + themeColor_not_containsInsensitive?: InputMaybe; + themeColor_not_endsWith?: InputMaybe; + themeColor_not_eq?: InputMaybe; + themeColor_not_in?: InputMaybe>; + themeColor_not_startsWith?: InputMaybe; + themeColor_startsWith?: InputMaybe; + tokens_every?: InputMaybe; + tokens_none?: InputMaybe; + tokens_some?: InputMaybe; +}; export type EvmNetworksConnection = { - edges: Array - pageInfo: PageInfo - totalCount: Scalars["Int"] -} + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']; +}; export type PageInfo = { - endCursor: Scalars["String"] - hasNextPage: Scalars["Boolean"] - hasPreviousPage: Scalars["Boolean"] - startCursor: Scalars["String"] -} + endCursor: Scalars['String']; + hasNextPage: Scalars['Boolean']; + hasPreviousPage: Scalars['Boolean']; + startCursor: Scalars['String']; +}; export type Query = { - cachedCoingeckoLogoById: Maybe + cachedCoingeckoLogoById: Maybe; /** @deprecated Use cachedCoingeckoLogoById */ - cachedCoingeckoLogoByUniqueInput: Maybe - cachedCoingeckoLogos: Array - cachedCoingeckoLogosConnection: CachedCoingeckoLogosConnection - chainById: Maybe + cachedCoingeckoLogoByUniqueInput: Maybe; + cachedCoingeckoLogos: Array; + cachedCoingeckoLogosConnection: CachedCoingeckoLogosConnection; + chainById: Maybe; /** @deprecated Use chainById */ - chainByUniqueInput: Maybe - chains: Array - chainsConnection: ChainsConnection - evmNetworkById: Maybe + chainByUniqueInput: Maybe; + chains: Array; + chainsConnection: ChainsConnection; + evmNetworkById: Maybe; /** @deprecated Use evmNetworkById */ - evmNetworkByUniqueInput: Maybe - evmNetworks: Array - evmNetworksConnection: EvmNetworksConnection - squidStatus: Maybe - tokenById: Maybe + evmNetworkByUniqueInput: Maybe; + evmNetworks: Array; + evmNetworksConnection: EvmNetworksConnection; + squidStatus: Maybe; + tokenById: Maybe; /** @deprecated Use tokenById */ - tokenByUniqueInput: Maybe - tokens: Array - tokensConnection: TokensConnection -} + tokenByUniqueInput: Maybe; + tokens: Array; + tokensConnection: TokensConnection; +}; + export type QueryCachedCoingeckoLogoByIdArgs = { - id: Scalars["String"] -} + id: Scalars['String']; +}; + export type QueryCachedCoingeckoLogoByUniqueInputArgs = { - where: WhereIdInput -} + where: WhereIdInput; +}; + export type QueryCachedCoingeckoLogosArgs = { - limit?: InputMaybe - offset?: InputMaybe - orderBy?: InputMaybe> - where?: InputMaybe -} + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + export type QueryCachedCoingeckoLogosConnectionArgs = { - after?: InputMaybe - first?: InputMaybe - orderBy: Array - where?: InputMaybe -} + after?: InputMaybe; + first?: InputMaybe; + orderBy: Array; + where?: InputMaybe; +}; + export type QueryChainByIdArgs = { - id: Scalars["String"] -} + id: Scalars['String']; +}; + export type QueryChainByUniqueInputArgs = { - where: WhereIdInput -} + where: WhereIdInput; +}; + export type QueryChainsArgs = { - limit?: InputMaybe - offset?: InputMaybe - orderBy?: InputMaybe> - where?: InputMaybe -} + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + export type QueryChainsConnectionArgs = { - after?: InputMaybe - first?: InputMaybe - orderBy: Array - where?: InputMaybe -} + after?: InputMaybe; + first?: InputMaybe; + orderBy: Array; + where?: InputMaybe; +}; + export type QueryEvmNetworkByIdArgs = { - id: Scalars["String"] -} + id: Scalars['String']; +}; + export type QueryEvmNetworkByUniqueInputArgs = { - where: WhereIdInput -} + where: WhereIdInput; +}; + export type QueryEvmNetworksArgs = { - limit?: InputMaybe - offset?: InputMaybe - orderBy?: InputMaybe> - where?: InputMaybe -} + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + export type QueryEvmNetworksConnectionArgs = { - after?: InputMaybe - first?: InputMaybe - orderBy: Array - where?: InputMaybe -} + after?: InputMaybe; + first?: InputMaybe; + orderBy: Array; + where?: InputMaybe; +}; + export type QueryTokenByIdArgs = { - id: Scalars["String"] -} + id: Scalars['String']; +}; + export type QueryTokenByUniqueInputArgs = { - where: WhereIdInput -} + where: WhereIdInput; +}; + export type QueryTokensArgs = { - limit?: InputMaybe - offset?: InputMaybe - orderBy?: InputMaybe> - where?: InputMaybe -} + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + export type QueryTokensConnectionArgs = { - after?: InputMaybe - first?: InputMaybe - orderBy: Array - where?: InputMaybe -} + after?: InputMaybe; + first?: InputMaybe; + orderBy: Array; + where?: InputMaybe; +}; export type SquidStatus = { /** The height of the processed part of the chain */ - height: Maybe -} + height: Maybe; +}; export type SubstrateRpc = { /** health status of this substrate rpc */ - isHealthy: Scalars["Boolean"] + isHealthy: Scalars['Boolean']; /** url of this substrate rpc */ - url: Scalars["String"] -} + url: Scalars['String']; +}; export type Token = { /** TODO: Put all token data into here (because we have plugins now) */ - data: Maybe + data: Maybe; /** id for this token (talisman-defined) */ - id: Scalars["String"] + id: Scalars['String']; /** implementation detail for relation lookups, can be removed once https://github.com/subsquid/squid/issues/41 is merged */ - squidImplementationDetailChain: Maybe + squidImplementationDetailChain: Maybe; /** implementation detail for relation lookups, can be removed once https://github.com/subsquid/squid/issues/41 is merged */ - squidImplementationDetailEvmNetwork: Maybe + squidImplementationDetailEvmNetwork: Maybe; /** implementation detail for relation lookups, can be removed once https://github.com/subsquid/squid/issues/41 is merged */ - squidImplementationDetailNativeToChains: Array + squidImplementationDetailNativeToChains: Array; /** implementation detail for relation lookups, can be removed once https://github.com/subsquid/squid/issues/41 is merged */ - squidImplementationDetailNativeToEvmNetworks: Array -} + squidImplementationDetailNativeToEvmNetworks: Array; +}; + export type TokenSquidImplementationDetailNativeToChainsArgs = { - limit?: InputMaybe - offset?: InputMaybe - orderBy?: InputMaybe> - where?: InputMaybe -} + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; + export type TokenSquidImplementationDetailNativeToEvmNetworksArgs = { - limit?: InputMaybe - offset?: InputMaybe - orderBy?: InputMaybe> - where?: InputMaybe -} + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + where?: InputMaybe; +}; export type TokenEdge = { - cursor: Scalars["String"] - node: Token -} + cursor: Scalars['String']; + node: Token; +}; export type TokenOrderByInput = - | "id_ASC" - | "id_DESC" - | "squidImplementationDetailChain_account_ASC" - | "squidImplementationDetailChain_account_DESC" - | "squidImplementationDetailChain_chainName_ASC" - | "squidImplementationDetailChain_chainName_DESC" - | "squidImplementationDetailChain_chainspecQrUrl_ASC" - | "squidImplementationDetailChain_chainspecQrUrl_DESC" - | "squidImplementationDetailChain_genesisHash_ASC" - | "squidImplementationDetailChain_genesisHash_DESC" - | "squidImplementationDetailChain_id_ASC" - | "squidImplementationDetailChain_id_DESC" - | "squidImplementationDetailChain_implName_ASC" - | "squidImplementationDetailChain_implName_DESC" - | "squidImplementationDetailChain_isHealthy_ASC" - | "squidImplementationDetailChain_isHealthy_DESC" - | "squidImplementationDetailChain_isTestnet_ASC" - | "squidImplementationDetailChain_isTestnet_DESC" - | "squidImplementationDetailChain_isUnknownFeeToken_ASC" - | "squidImplementationDetailChain_isUnknownFeeToken_DESC" - | "squidImplementationDetailChain_latestMetadataQrUrl_ASC" - | "squidImplementationDetailChain_latestMetadataQrUrl_DESC" - | "squidImplementationDetailChain_logo_ASC" - | "squidImplementationDetailChain_logo_DESC" - | "squidImplementationDetailChain_name_ASC" - | "squidImplementationDetailChain_name_DESC" - | "squidImplementationDetailChain_paraId_ASC" - | "squidImplementationDetailChain_paraId_DESC" - | "squidImplementationDetailChain_prefix_ASC" - | "squidImplementationDetailChain_prefix_DESC" - | "squidImplementationDetailChain_sortIndex_ASC" - | "squidImplementationDetailChain_sortIndex_DESC" - | "squidImplementationDetailChain_specName_ASC" - | "squidImplementationDetailChain_specName_DESC" - | "squidImplementationDetailChain_specVersion_ASC" - | "squidImplementationDetailChain_specVersion_DESC" - | "squidImplementationDetailChain_subscanUrl_ASC" - | "squidImplementationDetailChain_subscanUrl_DESC" - | "squidImplementationDetailChain_themeColor_ASC" - | "squidImplementationDetailChain_themeColor_DESC" - | "squidImplementationDetailEvmNetwork_explorerUrl_ASC" - | "squidImplementationDetailEvmNetwork_explorerUrl_DESC" - | "squidImplementationDetailEvmNetwork_id_ASC" - | "squidImplementationDetailEvmNetwork_id_DESC" - | "squidImplementationDetailEvmNetwork_isHealthy_ASC" - | "squidImplementationDetailEvmNetwork_isHealthy_DESC" - | "squidImplementationDetailEvmNetwork_isTestnet_ASC" - | "squidImplementationDetailEvmNetwork_isTestnet_DESC" - | "squidImplementationDetailEvmNetwork_logo_ASC" - | "squidImplementationDetailEvmNetwork_logo_DESC" - | "squidImplementationDetailEvmNetwork_name_ASC" - | "squidImplementationDetailEvmNetwork_name_DESC" - | "squidImplementationDetailEvmNetwork_sortIndex_ASC" - | "squidImplementationDetailEvmNetwork_sortIndex_DESC" - | "squidImplementationDetailEvmNetwork_themeColor_ASC" - | "squidImplementationDetailEvmNetwork_themeColor_DESC" + | 'id_ASC' + | 'id_DESC' + | 'squidImplementationDetailChain_account_ASC' + | 'squidImplementationDetailChain_account_DESC' + | 'squidImplementationDetailChain_chainName_ASC' + | 'squidImplementationDetailChain_chainName_DESC' + | 'squidImplementationDetailChain_chainspecQrUrl_ASC' + | 'squidImplementationDetailChain_chainspecQrUrl_DESC' + | 'squidImplementationDetailChain_genesisHash_ASC' + | 'squidImplementationDetailChain_genesisHash_DESC' + | 'squidImplementationDetailChain_id_ASC' + | 'squidImplementationDetailChain_id_DESC' + | 'squidImplementationDetailChain_implName_ASC' + | 'squidImplementationDetailChain_implName_DESC' + | 'squidImplementationDetailChain_isHealthy_ASC' + | 'squidImplementationDetailChain_isHealthy_DESC' + | 'squidImplementationDetailChain_isTestnet_ASC' + | 'squidImplementationDetailChain_isTestnet_DESC' + | 'squidImplementationDetailChain_isUnknownFeeToken_ASC' + | 'squidImplementationDetailChain_isUnknownFeeToken_DESC' + | 'squidImplementationDetailChain_latestMetadataQrUrl_ASC' + | 'squidImplementationDetailChain_latestMetadataQrUrl_DESC' + | 'squidImplementationDetailChain_logo_ASC' + | 'squidImplementationDetailChain_logo_DESC' + | 'squidImplementationDetailChain_name_ASC' + | 'squidImplementationDetailChain_name_DESC' + | 'squidImplementationDetailChain_paraId_ASC' + | 'squidImplementationDetailChain_paraId_DESC' + | 'squidImplementationDetailChain_prefix_ASC' + | 'squidImplementationDetailChain_prefix_DESC' + | 'squidImplementationDetailChain_sortIndex_ASC' + | 'squidImplementationDetailChain_sortIndex_DESC' + | 'squidImplementationDetailChain_specName_ASC' + | 'squidImplementationDetailChain_specName_DESC' + | 'squidImplementationDetailChain_specVersion_ASC' + | 'squidImplementationDetailChain_specVersion_DESC' + | 'squidImplementationDetailChain_subscanUrl_ASC' + | 'squidImplementationDetailChain_subscanUrl_DESC' + | 'squidImplementationDetailChain_themeColor_ASC' + | 'squidImplementationDetailChain_themeColor_DESC' + | 'squidImplementationDetailEvmNetwork_explorerUrl_ASC' + | 'squidImplementationDetailEvmNetwork_explorerUrl_DESC' + | 'squidImplementationDetailEvmNetwork_id_ASC' + | 'squidImplementationDetailEvmNetwork_id_DESC' + | 'squidImplementationDetailEvmNetwork_isHealthy_ASC' + | 'squidImplementationDetailEvmNetwork_isHealthy_DESC' + | 'squidImplementationDetailEvmNetwork_isTestnet_ASC' + | 'squidImplementationDetailEvmNetwork_isTestnet_DESC' + | 'squidImplementationDetailEvmNetwork_logo_ASC' + | 'squidImplementationDetailEvmNetwork_logo_DESC' + | 'squidImplementationDetailEvmNetwork_name_ASC' + | 'squidImplementationDetailEvmNetwork_name_DESC' + | 'squidImplementationDetailEvmNetwork_sortIndex_ASC' + | 'squidImplementationDetailEvmNetwork_sortIndex_DESC' + | 'squidImplementationDetailEvmNetwork_themeColor_ASC' + | 'squidImplementationDetailEvmNetwork_themeColor_DESC'; export type TokenWhereInput = { - AND?: InputMaybe> - OR?: InputMaybe> - data_eq?: InputMaybe - data_isNull?: InputMaybe - data_jsonContains?: InputMaybe - data_jsonHasKey?: InputMaybe - data_not_eq?: 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 - squidImplementationDetailChain?: InputMaybe - squidImplementationDetailChain_isNull?: InputMaybe - squidImplementationDetailEvmNetwork?: InputMaybe - squidImplementationDetailEvmNetwork_isNull?: InputMaybe - squidImplementationDetailNativeToChains_every?: InputMaybe - squidImplementationDetailNativeToChains_none?: InputMaybe - squidImplementationDetailNativeToChains_some?: InputMaybe - squidImplementationDetailNativeToEvmNetworks_every?: InputMaybe - squidImplementationDetailNativeToEvmNetworks_none?: InputMaybe - squidImplementationDetailNativeToEvmNetworks_some?: InputMaybe -} + AND?: InputMaybe>; + OR?: InputMaybe>; + data_eq?: InputMaybe; + data_isNull?: InputMaybe; + data_jsonContains?: InputMaybe; + data_jsonHasKey?: InputMaybe; + data_not_eq?: 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; + squidImplementationDetailChain?: InputMaybe; + squidImplementationDetailChain_isNull?: InputMaybe; + squidImplementationDetailEvmNetwork?: InputMaybe; + squidImplementationDetailEvmNetwork_isNull?: InputMaybe; + squidImplementationDetailNativeToChains_every?: InputMaybe; + squidImplementationDetailNativeToChains_none?: InputMaybe; + squidImplementationDetailNativeToChains_some?: InputMaybe; + squidImplementationDetailNativeToEvmNetworks_every?: InputMaybe; + squidImplementationDetailNativeToEvmNetworks_none?: InputMaybe; + squidImplementationDetailNativeToEvmNetworks_some?: InputMaybe; +}; export type TokensConnection = { - edges: Array - pageInfo: PageInfo - totalCount: Scalars["Int"] -} + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars['Int']; +}; export type WhereIdInput = { - id: Scalars["String"] -} - -export type ChainFragment = { - id: string - isTestnet: boolean - sortIndex: number | null - genesisHash: string | null - prefix: number | null - name: string | null - themeColor: string | null - logo: string | null - chainName: string | null - implName: string | null - specName: string | null - specVersion: string | null - account: string | null - subscanUrl: string | null - chainspecQrUrl: string | null - latestMetadataQrUrl: string | null - isUnknownFeeToken: boolean - isHealthy: boolean - paraId: number | null - nativeToken: { id: string } | null - tokens: Array<{ id: string }> - rpcs: Array<{ url: string; isHealthy: boolean }> - evmNetworks: Array<{ id: string }> - parathreads: Array<{ id: string; paraId: number | null; name: string | null }> - relay: { id: string } | null - balanceMetadata: Array<{ moduleType: string; metadata: unknown }> -} - -export type EvmNetworkFragment = { - id: string - isTestnet: boolean - sortIndex: number | null - name: string | null - themeColor: string | null - logo: string | null - explorerUrl: string | null - isHealthy: boolean - nativeToken: { id: string } | null - tokens: Array<{ id: string }> - rpcs: Array<{ url: string; isHealthy: boolean }> - substrateChain: { id: string } | null -} - -export type TokenFragment = { - id: string - data: unknown | null - squidImplementationDetailNativeToChains: Array<{ id: string }> - squidImplementationDetailNativeToEvmNetworks: Array<{ id: string }> -} - -export type ChainsQueryVariables = Exact<{ [key: string]: never }> - -export type ChainsQuery = { - chains: Array<{ - id: string - isTestnet: boolean - sortIndex: number | null - genesisHash: string | null - prefix: number | null - name: string | null - themeColor: string | null - logo: string | null - chainName: string | null - implName: string | null - specName: string | null - specVersion: string | null - account: string | null - subscanUrl: string | null - chainspecQrUrl: string | null - latestMetadataQrUrl: string | null - isUnknownFeeToken: boolean - isHealthy: boolean - paraId: number | null - nativeToken: { id: string } | null - tokens: Array<{ id: string }> - rpcs: Array<{ url: string; isHealthy: boolean }> - evmNetworks: Array<{ id: string }> - parathreads: Array<{ id: string; paraId: number | null; name: string | null }> - relay: { id: string } | null - balanceMetadata: Array<{ moduleType: string; metadata: unknown }> - }> -} + id: Scalars['String']; +}; + +export type ChainFragment = { id: string, isTestnet: boolean, sortIndex: number | null, genesisHash: string | null, prefix: number | null, name: string | null, themeColor: string | null, logo: string | null, chainName: string | null, implName: string | null, specName: string | null, specVersion: string | null, account: string | null, subscanUrl: string | null, chainspecQrUrl: string | null, latestMetadataQrUrl: string | null, isUnknownFeeToken: boolean, isHealthy: boolean, paraId: number | null, nativeToken: { id: string } | null, tokens: Array<{ id: string }>, rpcs: Array<{ url: string, isHealthy: boolean }>, evmNetworks: Array<{ id: string }>, parathreads: Array<{ id: string, paraId: number | null, name: string | null }>, relay: { id: string } | null, balanceMetadata: Array<{ moduleType: string, metadata: unknown }> }; + +export type EvmNetworkFragment = { id: string, isTestnet: boolean, sortIndex: number | null, name: string | null, themeColor: string | null, logo: string | null, explorerUrl: string | null, isHealthy: boolean, nativeToken: { id: string } | null, tokens: Array<{ id: string }>, rpcs: Array<{ url: string, isHealthy: boolean }>, substrateChain: { id: string } | null }; + +export type TokenFragment = { id: string, data: unknown | null, squidImplementationDetailNativeToChains: Array<{ id: string }>, squidImplementationDetailNativeToEvmNetworks: Array<{ id: string }> }; + +export type ChainsQueryVariables = Exact<{ [key: string]: never; }>; + + +export type ChainsQuery = { chains: Array<{ id: string, isTestnet: boolean, sortIndex: number | null, genesisHash: string | null, prefix: number | null, name: string | null, themeColor: string | null, logo: string | null, chainName: string | null, implName: string | null, specName: string | null, specVersion: string | null, account: string | null, subscanUrl: string | null, chainspecQrUrl: string | null, latestMetadataQrUrl: string | null, isUnknownFeeToken: boolean, isHealthy: boolean, paraId: number | null, nativeToken: { id: string } | null, tokens: Array<{ id: string }>, rpcs: Array<{ url: string, isHealthy: boolean }>, evmNetworks: Array<{ id: string }>, parathreads: Array<{ id: string, paraId: number | null, name: string | null }>, relay: { id: string } | null, balanceMetadata: Array<{ moduleType: string, metadata: unknown }> }> }; export type ChainByIdQueryVariables = Exact<{ - chainId: Scalars["String"] -}> - -export type ChainByIdQuery = { - chainById: { - id: string - isTestnet: boolean - sortIndex: number | null - genesisHash: string | null - prefix: number | null - name: string | null - themeColor: string | null - logo: string | null - chainName: string | null - implName: string | null - specName: string | null - specVersion: string | null - account: string | null - subscanUrl: string | null - chainspecQrUrl: string | null - latestMetadataQrUrl: string | null - isUnknownFeeToken: boolean - isHealthy: boolean - paraId: number | null - nativeToken: { id: string } | null - tokens: Array<{ id: string }> - rpcs: Array<{ url: string; isHealthy: boolean }> - evmNetworks: Array<{ id: string }> - parathreads: Array<{ id: string; paraId: number | null; name: string | null }> - relay: { id: string } | null - balanceMetadata: Array<{ moduleType: string; metadata: unknown }> - } | null -} - -export type EvmNetworksQueryVariables = Exact<{ [key: string]: never }> - -export type EvmNetworksQuery = { - evmNetworks: Array<{ - id: string - isTestnet: boolean - sortIndex: number | null - name: string | null - themeColor: string | null - logo: string | null - explorerUrl: string | null - isHealthy: boolean - nativeToken: { id: string } | null - tokens: Array<{ id: string }> - rpcs: Array<{ url: string; isHealthy: boolean }> - substrateChain: { id: string } | null - }> -} + chainId: Scalars['String']; +}>; + + +export type ChainByIdQuery = { chainById: { id: string, isTestnet: boolean, sortIndex: number | null, genesisHash: string | null, prefix: number | null, name: string | null, themeColor: string | null, logo: string | null, chainName: string | null, implName: string | null, specName: string | null, specVersion: string | null, account: string | null, subscanUrl: string | null, chainspecQrUrl: string | null, latestMetadataQrUrl: string | null, isUnknownFeeToken: boolean, isHealthy: boolean, paraId: number | null, nativeToken: { id: string } | null, tokens: Array<{ id: string }>, rpcs: Array<{ url: string, isHealthy: boolean }>, evmNetworks: Array<{ id: string }>, parathreads: Array<{ id: string, paraId: number | null, name: string | null }>, relay: { id: string } | null, balanceMetadata: Array<{ moduleType: string, metadata: unknown }> } | null }; + +export type EvmNetworksQueryVariables = Exact<{ [key: string]: never; }>; + + +export type EvmNetworksQuery = { evmNetworks: Array<{ id: string, isTestnet: boolean, sortIndex: number | null, name: string | null, themeColor: string | null, logo: string | null, explorerUrl: string | null, isHealthy: boolean, nativeToken: { id: string } | null, tokens: Array<{ id: string }>, rpcs: Array<{ url: string, isHealthy: boolean }>, substrateChain: { id: string } | null }> }; export type EvmNetworkByIdQueryVariables = Exact<{ - evmNetworkId: Scalars["String"] -}> - -export type EvmNetworkByIdQuery = { - evmNetworkById: { - id: string - isTestnet: boolean - sortIndex: number | null - name: string | null - themeColor: string | null - logo: string | null - explorerUrl: string | null - isHealthy: boolean - nativeToken: { id: string } | null - tokens: Array<{ id: string }> - rpcs: Array<{ url: string; isHealthy: boolean }> - substrateChain: { id: string } | null - } | null -} - -export type TokensQueryVariables = Exact<{ [key: string]: never }> - -export type TokensQuery = { - tokens: Array<{ - id: string - data: unknown | null - squidImplementationDetailNativeToChains: Array<{ id: string }> - squidImplementationDetailNativeToEvmNetworks: Array<{ id: string }> - }> -} + evmNetworkId: Scalars['String']; +}>; + + +export type EvmNetworkByIdQuery = { evmNetworkById: { id: string, isTestnet: boolean, sortIndex: number | null, name: string | null, themeColor: string | null, logo: string | null, explorerUrl: string | null, isHealthy: boolean, nativeToken: { id: string } | null, tokens: Array<{ id: string }>, rpcs: Array<{ url: string, isHealthy: boolean }>, substrateChain: { id: string } | null } | null }; + +export type TokensQueryVariables = Exact<{ [key: string]: never; }>; + + +export type TokensQuery = { tokens: Array<{ id: string, data: unknown | null, squidImplementationDetailNativeToChains: Array<{ id: string }>, squidImplementationDetailNativeToEvmNetworks: Array<{ id: string }> }> }; export type TokenByIdQueryVariables = Exact<{ - tokenId: Scalars["String"] -}> - -export type TokenByIdQuery = { - tokenById: { - id: string - data: unknown | null - squidImplementationDetailNativeToChains: Array<{ id: string }> - squidImplementationDetailNativeToEvmNetworks: Array<{ id: string }> - } | null -} - -export const ChainFragmentDoc = { - kind: "Document", - definitions: [ - { - kind: "FragmentDefinition", - name: { kind: "Name", value: "Chain" }, - typeCondition: { kind: "NamedType", name: { kind: "Name", value: "Chain" } }, - selectionSet: { - kind: "SelectionSet", - selections: [ - { kind: "Field", name: { kind: "Name", value: "id" } }, - { kind: "Field", name: { kind: "Name", value: "isTestnet" } }, - { kind: "Field", name: { kind: "Name", value: "sortIndex" } }, - { kind: "Field", name: { kind: "Name", value: "genesisHash" } }, - { kind: "Field", name: { kind: "Name", value: "prefix" } }, - { kind: "Field", name: { kind: "Name", value: "name" } }, - { kind: "Field", name: { kind: "Name", value: "themeColor" } }, - { kind: "Field", name: { kind: "Name", value: "logo" } }, - { kind: "Field", name: { kind: "Name", value: "chainName" } }, - { kind: "Field", name: { kind: "Name", value: "implName" } }, - { kind: "Field", name: { kind: "Name", value: "specName" } }, - { kind: "Field", name: { kind: "Name", value: "specVersion" } }, - { - kind: "Field", - name: { kind: "Name", value: "nativeToken" }, - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }], - }, - }, - { - kind: "Field", - name: { kind: "Name", value: "tokens" }, - arguments: [ - { - kind: "Argument", - name: { kind: "Name", value: "orderBy" }, - value: { kind: "EnumValue", value: "id_ASC" }, - }, - ], - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }], - }, - }, - { kind: "Field", name: { kind: "Name", value: "account" } }, - { kind: "Field", name: { kind: "Name", value: "subscanUrl" } }, - { kind: "Field", name: { kind: "Name", value: "chainspecQrUrl" } }, - { kind: "Field", name: { kind: "Name", value: "latestMetadataQrUrl" } }, - { kind: "Field", name: { kind: "Name", value: "isUnknownFeeToken" } }, - { - kind: "Field", - name: { kind: "Name", value: "rpcs" }, - selectionSet: { - kind: "SelectionSet", - selections: [ - { kind: "Field", name: { kind: "Name", value: "url" } }, - { kind: "Field", name: { kind: "Name", value: "isHealthy" } }, - ], - }, - }, - { kind: "Field", name: { kind: "Name", value: "isHealthy" } }, - { - kind: "Field", - name: { kind: "Name", value: "evmNetworks" }, - arguments: [ - { - kind: "Argument", - name: { kind: "Name", value: "orderBy" }, - value: { kind: "EnumValue", value: "name_ASC" }, - }, - ], - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }], - }, - }, - { - kind: "Field", - name: { kind: "Name", value: "parathreads" }, - arguments: [ - { - kind: "Argument", - name: { kind: "Name", value: "orderBy" }, - value: { kind: "EnumValue", value: "paraId_ASC" }, - }, - ], - selectionSet: { - kind: "SelectionSet", - selections: [ - { kind: "Field", name: { kind: "Name", value: "id" } }, - { kind: "Field", name: { kind: "Name", value: "paraId" } }, - { kind: "Field", name: { kind: "Name", value: "name" } }, - ], - }, - }, - { kind: "Field", name: { kind: "Name", value: "paraId" } }, - { - kind: "Field", - name: { kind: "Name", value: "relay" }, - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }], - }, - }, - { - kind: "Field", - name: { kind: "Name", value: "balanceMetadata" }, - selectionSet: { - kind: "SelectionSet", - selections: [ - { kind: "Field", name: { kind: "Name", value: "moduleType" } }, - { kind: "Field", name: { kind: "Name", value: "metadata" } }, - ], - }, - }, - ], - }, - }, - ], -} as unknown as DocumentNode -export const EvmNetworkFragmentDoc = { - kind: "Document", - definitions: [ - { - kind: "FragmentDefinition", - name: { kind: "Name", value: "EvmNetwork" }, - typeCondition: { kind: "NamedType", name: { kind: "Name", value: "EvmNetwork" } }, - selectionSet: { - kind: "SelectionSet", - selections: [ - { kind: "Field", name: { kind: "Name", value: "id" } }, - { kind: "Field", name: { kind: "Name", value: "isTestnet" } }, - { kind: "Field", name: { kind: "Name", value: "sortIndex" } }, - { kind: "Field", name: { kind: "Name", value: "name" } }, - { kind: "Field", name: { kind: "Name", value: "themeColor" } }, - { kind: "Field", name: { kind: "Name", value: "logo" } }, - { - kind: "Field", - name: { kind: "Name", value: "nativeToken" }, - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }], - }, - }, - { - kind: "Field", - name: { kind: "Name", value: "tokens" }, - arguments: [ - { - kind: "Argument", - name: { kind: "Name", value: "orderBy" }, - value: { kind: "EnumValue", value: "id_ASC" }, - }, - ], - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }], - }, - }, - { kind: "Field", name: { kind: "Name", value: "explorerUrl" } }, - { - kind: "Field", - name: { kind: "Name", value: "rpcs" }, - selectionSet: { - kind: "SelectionSet", - selections: [ - { kind: "Field", name: { kind: "Name", value: "url" } }, - { kind: "Field", name: { kind: "Name", value: "isHealthy" } }, - ], - }, - }, - { kind: "Field", name: { kind: "Name", value: "isHealthy" } }, - { - kind: "Field", - name: { kind: "Name", value: "substrateChain" }, - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }], - }, - }, - ], - }, - }, - ], -} as unknown as DocumentNode -export const TokenFragmentDoc = { - kind: "Document", - definitions: [ - { - kind: "FragmentDefinition", - name: { kind: "Name", value: "Token" }, - typeCondition: { kind: "NamedType", name: { kind: "Name", value: "Token" } }, - selectionSet: { - kind: "SelectionSet", - selections: [ - { kind: "Field", name: { kind: "Name", value: "id" } }, - { kind: "Field", name: { kind: "Name", value: "data" } }, - { - kind: "Field", - name: { kind: "Name", value: "squidImplementationDetailNativeToChains" }, - arguments: [ - { - kind: "Argument", - name: { kind: "Name", value: "orderBy" }, - value: { kind: "EnumValue", value: "sortIndex_ASC" }, - }, - ], - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }], - }, - }, - { - kind: "Field", - name: { kind: "Name", value: "squidImplementationDetailNativeToEvmNetworks" }, - arguments: [ - { - kind: "Argument", - name: { kind: "Name", value: "orderBy" }, - value: { kind: "EnumValue", value: "name_ASC" }, - }, - ], - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }], - }, - }, - ], - }, - }, - ], -} as unknown as DocumentNode -export const ChainsDocument = { - kind: "Document", - definitions: [ - { - kind: "OperationDefinition", - operation: "query", - name: { kind: "Name", value: "chains" }, - selectionSet: { - kind: "SelectionSet", - selections: [ - { - kind: "Field", - name: { kind: "Name", value: "chains" }, - arguments: [ - { - kind: "Argument", - name: { kind: "Name", value: "orderBy" }, - value: { kind: "EnumValue", value: "sortIndex_ASC" }, - }, - ], - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "FragmentSpread", name: { kind: "Name", value: "Chain" } }], - }, - }, - ], - }, - }, - { - kind: "FragmentDefinition", - name: { kind: "Name", value: "Chain" }, - typeCondition: { kind: "NamedType", name: { kind: "Name", value: "Chain" } }, - selectionSet: { - kind: "SelectionSet", - selections: [ - { kind: "Field", name: { kind: "Name", value: "id" } }, - { kind: "Field", name: { kind: "Name", value: "isTestnet" } }, - { kind: "Field", name: { kind: "Name", value: "sortIndex" } }, - { kind: "Field", name: { kind: "Name", value: "genesisHash" } }, - { kind: "Field", name: { kind: "Name", value: "prefix" } }, - { kind: "Field", name: { kind: "Name", value: "name" } }, - { kind: "Field", name: { kind: "Name", value: "themeColor" } }, - { kind: "Field", name: { kind: "Name", value: "logo" } }, - { kind: "Field", name: { kind: "Name", value: "chainName" } }, - { kind: "Field", name: { kind: "Name", value: "implName" } }, - { kind: "Field", name: { kind: "Name", value: "specName" } }, - { kind: "Field", name: { kind: "Name", value: "specVersion" } }, - { - kind: "Field", - name: { kind: "Name", value: "nativeToken" }, - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }], - }, - }, - { - kind: "Field", - name: { kind: "Name", value: "tokens" }, - arguments: [ - { - kind: "Argument", - name: { kind: "Name", value: "orderBy" }, - value: { kind: "EnumValue", value: "id_ASC" }, - }, - ], - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }], - }, - }, - { kind: "Field", name: { kind: "Name", value: "account" } }, - { kind: "Field", name: { kind: "Name", value: "subscanUrl" } }, - { kind: "Field", name: { kind: "Name", value: "chainspecQrUrl" } }, - { kind: "Field", name: { kind: "Name", value: "latestMetadataQrUrl" } }, - { kind: "Field", name: { kind: "Name", value: "isUnknownFeeToken" } }, - { - kind: "Field", - name: { kind: "Name", value: "rpcs" }, - selectionSet: { - kind: "SelectionSet", - selections: [ - { kind: "Field", name: { kind: "Name", value: "url" } }, - { kind: "Field", name: { kind: "Name", value: "isHealthy" } }, - ], - }, - }, - { kind: "Field", name: { kind: "Name", value: "isHealthy" } }, - { - kind: "Field", - name: { kind: "Name", value: "evmNetworks" }, - arguments: [ - { - kind: "Argument", - name: { kind: "Name", value: "orderBy" }, - value: { kind: "EnumValue", value: "name_ASC" }, - }, - ], - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }], - }, - }, - { - kind: "Field", - name: { kind: "Name", value: "parathreads" }, - arguments: [ - { - kind: "Argument", - name: { kind: "Name", value: "orderBy" }, - value: { kind: "EnumValue", value: "paraId_ASC" }, - }, - ], - selectionSet: { - kind: "SelectionSet", - selections: [ - { kind: "Field", name: { kind: "Name", value: "id" } }, - { kind: "Field", name: { kind: "Name", value: "paraId" } }, - { kind: "Field", name: { kind: "Name", value: "name" } }, - ], - }, - }, - { kind: "Field", name: { kind: "Name", value: "paraId" } }, - { - kind: "Field", - name: { kind: "Name", value: "relay" }, - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }], - }, - }, - { - kind: "Field", - name: { kind: "Name", value: "balanceMetadata" }, - selectionSet: { - kind: "SelectionSet", - selections: [ - { kind: "Field", name: { kind: "Name", value: "moduleType" } }, - { kind: "Field", name: { kind: "Name", value: "metadata" } }, - ], - }, - }, - ], - }, - }, - ], -} as unknown as DocumentNode -export const ChainByIdDocument = { - kind: "Document", - definitions: [ - { - kind: "OperationDefinition", - operation: "query", - name: { kind: "Name", value: "chainById" }, - variableDefinitions: [ - { - kind: "VariableDefinition", - variable: { kind: "Variable", name: { kind: "Name", value: "chainId" } }, - type: { - kind: "NonNullType", - type: { kind: "NamedType", name: { kind: "Name", value: "String" } }, - }, - }, - ], - selectionSet: { - kind: "SelectionSet", - selections: [ - { - kind: "Field", - name: { kind: "Name", value: "chainById" }, - arguments: [ - { - kind: "Argument", - name: { kind: "Name", value: "id" }, - value: { kind: "Variable", name: { kind: "Name", value: "chainId" } }, - }, - ], - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "FragmentSpread", name: { kind: "Name", value: "Chain" } }], - }, - }, - ], - }, - }, - { - kind: "FragmentDefinition", - name: { kind: "Name", value: "Chain" }, - typeCondition: { kind: "NamedType", name: { kind: "Name", value: "Chain" } }, - selectionSet: { - kind: "SelectionSet", - selections: [ - { kind: "Field", name: { kind: "Name", value: "id" } }, - { kind: "Field", name: { kind: "Name", value: "isTestnet" } }, - { kind: "Field", name: { kind: "Name", value: "sortIndex" } }, - { kind: "Field", name: { kind: "Name", value: "genesisHash" } }, - { kind: "Field", name: { kind: "Name", value: "prefix" } }, - { kind: "Field", name: { kind: "Name", value: "name" } }, - { kind: "Field", name: { kind: "Name", value: "themeColor" } }, - { kind: "Field", name: { kind: "Name", value: "logo" } }, - { kind: "Field", name: { kind: "Name", value: "chainName" } }, - { kind: "Field", name: { kind: "Name", value: "implName" } }, - { kind: "Field", name: { kind: "Name", value: "specName" } }, - { kind: "Field", name: { kind: "Name", value: "specVersion" } }, - { - kind: "Field", - name: { kind: "Name", value: "nativeToken" }, - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }], - }, - }, - { - kind: "Field", - name: { kind: "Name", value: "tokens" }, - arguments: [ - { - kind: "Argument", - name: { kind: "Name", value: "orderBy" }, - value: { kind: "EnumValue", value: "id_ASC" }, - }, - ], - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }], - }, - }, - { kind: "Field", name: { kind: "Name", value: "account" } }, - { kind: "Field", name: { kind: "Name", value: "subscanUrl" } }, - { kind: "Field", name: { kind: "Name", value: "chainspecQrUrl" } }, - { kind: "Field", name: { kind: "Name", value: "latestMetadataQrUrl" } }, - { kind: "Field", name: { kind: "Name", value: "isUnknownFeeToken" } }, - { - kind: "Field", - name: { kind: "Name", value: "rpcs" }, - selectionSet: { - kind: "SelectionSet", - selections: [ - { kind: "Field", name: { kind: "Name", value: "url" } }, - { kind: "Field", name: { kind: "Name", value: "isHealthy" } }, - ], - }, - }, - { kind: "Field", name: { kind: "Name", value: "isHealthy" } }, - { - kind: "Field", - name: { kind: "Name", value: "evmNetworks" }, - arguments: [ - { - kind: "Argument", - name: { kind: "Name", value: "orderBy" }, - value: { kind: "EnumValue", value: "name_ASC" }, - }, - ], - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }], - }, - }, - { - kind: "Field", - name: { kind: "Name", value: "parathreads" }, - arguments: [ - { - kind: "Argument", - name: { kind: "Name", value: "orderBy" }, - value: { kind: "EnumValue", value: "paraId_ASC" }, - }, - ], - selectionSet: { - kind: "SelectionSet", - selections: [ - { kind: "Field", name: { kind: "Name", value: "id" } }, - { kind: "Field", name: { kind: "Name", value: "paraId" } }, - { kind: "Field", name: { kind: "Name", value: "name" } }, - ], - }, - }, - { kind: "Field", name: { kind: "Name", value: "paraId" } }, - { - kind: "Field", - name: { kind: "Name", value: "relay" }, - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }], - }, - }, - { - kind: "Field", - name: { kind: "Name", value: "balanceMetadata" }, - selectionSet: { - kind: "SelectionSet", - selections: [ - { kind: "Field", name: { kind: "Name", value: "moduleType" } }, - { kind: "Field", name: { kind: "Name", value: "metadata" } }, - ], - }, - }, - ], - }, - }, - ], -} as unknown as DocumentNode -export const EvmNetworksDocument = { - kind: "Document", - definitions: [ - { - kind: "OperationDefinition", - operation: "query", - name: { kind: "Name", value: "evmNetworks" }, - selectionSet: { - kind: "SelectionSet", - selections: [ - { - kind: "Field", - name: { kind: "Name", value: "evmNetworks" }, - arguments: [ - { - kind: "Argument", - name: { kind: "Name", value: "orderBy" }, - value: { kind: "EnumValue", value: "sortIndex_ASC" }, - }, - ], - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "FragmentSpread", name: { kind: "Name", value: "EvmNetwork" } }], - }, - }, - ], - }, - }, - { - kind: "FragmentDefinition", - name: { kind: "Name", value: "EvmNetwork" }, - typeCondition: { kind: "NamedType", name: { kind: "Name", value: "EvmNetwork" } }, - selectionSet: { - kind: "SelectionSet", - selections: [ - { kind: "Field", name: { kind: "Name", value: "id" } }, - { kind: "Field", name: { kind: "Name", value: "isTestnet" } }, - { kind: "Field", name: { kind: "Name", value: "sortIndex" } }, - { kind: "Field", name: { kind: "Name", value: "name" } }, - { kind: "Field", name: { kind: "Name", value: "themeColor" } }, - { kind: "Field", name: { kind: "Name", value: "logo" } }, - { - kind: "Field", - name: { kind: "Name", value: "nativeToken" }, - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }], - }, - }, - { - kind: "Field", - name: { kind: "Name", value: "tokens" }, - arguments: [ - { - kind: "Argument", - name: { kind: "Name", value: "orderBy" }, - value: { kind: "EnumValue", value: "id_ASC" }, - }, - ], - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }], - }, - }, - { kind: "Field", name: { kind: "Name", value: "explorerUrl" } }, - { - kind: "Field", - name: { kind: "Name", value: "rpcs" }, - selectionSet: { - kind: "SelectionSet", - selections: [ - { kind: "Field", name: { kind: "Name", value: "url" } }, - { kind: "Field", name: { kind: "Name", value: "isHealthy" } }, - ], - }, - }, - { kind: "Field", name: { kind: "Name", value: "isHealthy" } }, - { - kind: "Field", - name: { kind: "Name", value: "substrateChain" }, - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }], - }, - }, - ], - }, - }, - ], -} as unknown as DocumentNode -export const EvmNetworkByIdDocument = { - kind: "Document", - definitions: [ - { - kind: "OperationDefinition", - operation: "query", - name: { kind: "Name", value: "evmNetworkById" }, - variableDefinitions: [ - { - kind: "VariableDefinition", - variable: { kind: "Variable", name: { kind: "Name", value: "evmNetworkId" } }, - type: { - kind: "NonNullType", - type: { kind: "NamedType", name: { kind: "Name", value: "String" } }, - }, - }, - ], - selectionSet: { - kind: "SelectionSet", - selections: [ - { - kind: "Field", - name: { kind: "Name", value: "evmNetworkById" }, - arguments: [ - { - kind: "Argument", - name: { kind: "Name", value: "id" }, - value: { kind: "Variable", name: { kind: "Name", value: "evmNetworkId" } }, - }, - ], - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "FragmentSpread", name: { kind: "Name", value: "EvmNetwork" } }], - }, - }, - ], - }, - }, - { - kind: "FragmentDefinition", - name: { kind: "Name", value: "EvmNetwork" }, - typeCondition: { kind: "NamedType", name: { kind: "Name", value: "EvmNetwork" } }, - selectionSet: { - kind: "SelectionSet", - selections: [ - { kind: "Field", name: { kind: "Name", value: "id" } }, - { kind: "Field", name: { kind: "Name", value: "isTestnet" } }, - { kind: "Field", name: { kind: "Name", value: "sortIndex" } }, - { kind: "Field", name: { kind: "Name", value: "name" } }, - { kind: "Field", name: { kind: "Name", value: "themeColor" } }, - { kind: "Field", name: { kind: "Name", value: "logo" } }, - { - kind: "Field", - name: { kind: "Name", value: "nativeToken" }, - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }], - }, - }, - { - kind: "Field", - name: { kind: "Name", value: "tokens" }, - arguments: [ - { - kind: "Argument", - name: { kind: "Name", value: "orderBy" }, - value: { kind: "EnumValue", value: "id_ASC" }, - }, - ], - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }], - }, - }, - { kind: "Field", name: { kind: "Name", value: "explorerUrl" } }, - { - kind: "Field", - name: { kind: "Name", value: "rpcs" }, - selectionSet: { - kind: "SelectionSet", - selections: [ - { kind: "Field", name: { kind: "Name", value: "url" } }, - { kind: "Field", name: { kind: "Name", value: "isHealthy" } }, - ], - }, - }, - { kind: "Field", name: { kind: "Name", value: "isHealthy" } }, - { - kind: "Field", - name: { kind: "Name", value: "substrateChain" }, - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }], - }, - }, - ], - }, - }, - ], -} as unknown as DocumentNode -export const TokensDocument = { - kind: "Document", - definitions: [ - { - kind: "OperationDefinition", - operation: "query", - name: { kind: "Name", value: "tokens" }, - selectionSet: { - kind: "SelectionSet", - selections: [ - { - kind: "Field", - name: { kind: "Name", value: "tokens" }, - arguments: [ - { - kind: "Argument", - name: { kind: "Name", value: "orderBy" }, - value: { kind: "EnumValue", value: "id_ASC" }, - }, - ], - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "FragmentSpread", name: { kind: "Name", value: "Token" } }], - }, - }, - ], - }, - }, - { - kind: "FragmentDefinition", - name: { kind: "Name", value: "Token" }, - typeCondition: { kind: "NamedType", name: { kind: "Name", value: "Token" } }, - selectionSet: { - kind: "SelectionSet", - selections: [ - { kind: "Field", name: { kind: "Name", value: "id" } }, - { kind: "Field", name: { kind: "Name", value: "data" } }, - { - kind: "Field", - name: { kind: "Name", value: "squidImplementationDetailNativeToChains" }, - arguments: [ - { - kind: "Argument", - name: { kind: "Name", value: "orderBy" }, - value: { kind: "EnumValue", value: "sortIndex_ASC" }, - }, - ], - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }], - }, - }, - { - kind: "Field", - name: { kind: "Name", value: "squidImplementationDetailNativeToEvmNetworks" }, - arguments: [ - { - kind: "Argument", - name: { kind: "Name", value: "orderBy" }, - value: { kind: "EnumValue", value: "name_ASC" }, - }, - ], - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }], - }, - }, - ], - }, - }, - ], -} as unknown as DocumentNode -export const TokenByIdDocument = { - kind: "Document", - definitions: [ - { - kind: "OperationDefinition", - operation: "query", - name: { kind: "Name", value: "tokenById" }, - variableDefinitions: [ - { - kind: "VariableDefinition", - variable: { kind: "Variable", name: { kind: "Name", value: "tokenId" } }, - type: { - kind: "NonNullType", - type: { kind: "NamedType", name: { kind: "Name", value: "String" } }, - }, - }, - ], - selectionSet: { - kind: "SelectionSet", - selections: [ - { - kind: "Field", - name: { kind: "Name", value: "tokenById" }, - arguments: [ - { - kind: "Argument", - name: { kind: "Name", value: "id" }, - value: { kind: "Variable", name: { kind: "Name", value: "tokenId" } }, - }, - ], - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "FragmentSpread", name: { kind: "Name", value: "Token" } }], - }, - }, - ], - }, - }, - { - kind: "FragmentDefinition", - name: { kind: "Name", value: "Token" }, - typeCondition: { kind: "NamedType", name: { kind: "Name", value: "Token" } }, - selectionSet: { - kind: "SelectionSet", - selections: [ - { kind: "Field", name: { kind: "Name", value: "id" } }, - { kind: "Field", name: { kind: "Name", value: "data" } }, - { - kind: "Field", - name: { kind: "Name", value: "squidImplementationDetailNativeToChains" }, - arguments: [ - { - kind: "Argument", - name: { kind: "Name", value: "orderBy" }, - value: { kind: "EnumValue", value: "sortIndex_ASC" }, - }, - ], - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }], - }, - }, - { - kind: "Field", - name: { kind: "Name", value: "squidImplementationDetailNativeToEvmNetworks" }, - arguments: [ - { - kind: "Argument", - name: { kind: "Name", value: "orderBy" }, - value: { kind: "EnumValue", value: "name_ASC" }, - }, - ], - selectionSet: { - kind: "SelectionSet", - selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }], - }, - }, - ], - }, - }, - ], -} as unknown as DocumentNode + tokenId: Scalars['String']; +}>; + + +export type TokenByIdQuery = { tokenById: { id: string, data: unknown | null, squidImplementationDetailNativeToChains: Array<{ id: string }>, squidImplementationDetailNativeToEvmNetworks: Array<{ id: string }> } | null }; + +export const ChainFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Chain"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Chain"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"isTestnet"}},{"kind":"Field","name":{"kind":"Name","value":"sortIndex"}},{"kind":"Field","name":{"kind":"Name","value":"genesisHash"}},{"kind":"Field","name":{"kind":"Name","value":"prefix"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"themeColor"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"chainName"}},{"kind":"Field","name":{"kind":"Name","value":"implName"}},{"kind":"Field","name":{"kind":"Name","value":"specName"}},{"kind":"Field","name":{"kind":"Name","value":"specVersion"}},{"kind":"Field","name":{"kind":"Name","value":"nativeToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokens"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"EnumValue","value":"id_ASC"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"account"}},{"kind":"Field","name":{"kind":"Name","value":"subscanUrl"}},{"kind":"Field","name":{"kind":"Name","value":"chainspecQrUrl"}},{"kind":"Field","name":{"kind":"Name","value":"latestMetadataQrUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isUnknownFeeToken"}},{"kind":"Field","name":{"kind":"Name","value":"rpcs"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"isHealthy"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isHealthy"}},{"kind":"Field","name":{"kind":"Name","value":"evmNetworks"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"EnumValue","value":"name_ASC"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"parathreads"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"EnumValue","value":"paraId_ASC"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"paraId"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"paraId"}},{"kind":"Field","name":{"kind":"Name","value":"relay"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"balanceMetadata"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"moduleType"}},{"kind":"Field","name":{"kind":"Name","value":"metadata"}}]}}]}}]} as unknown as DocumentNode; +export const EvmNetworkFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EvmNetwork"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EvmNetwork"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"isTestnet"}},{"kind":"Field","name":{"kind":"Name","value":"sortIndex"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"themeColor"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"nativeToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokens"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"EnumValue","value":"id_ASC"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"explorerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"rpcs"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"isHealthy"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isHealthy"}},{"kind":"Field","name":{"kind":"Name","value":"substrateChain"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]} as unknown as DocumentNode; +export const TokenFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Token"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Token"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"data"}},{"kind":"Field","name":{"kind":"Name","value":"squidImplementationDetailNativeToChains"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"EnumValue","value":"sortIndex_ASC"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"squidImplementationDetailNativeToEvmNetworks"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"EnumValue","value":"name_ASC"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]} as unknown as DocumentNode; +export const ChainsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"chains"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"chains"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"EnumValue","value":"sortIndex_ASC"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Chain"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Chain"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Chain"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"isTestnet"}},{"kind":"Field","name":{"kind":"Name","value":"sortIndex"}},{"kind":"Field","name":{"kind":"Name","value":"genesisHash"}},{"kind":"Field","name":{"kind":"Name","value":"prefix"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"themeColor"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"chainName"}},{"kind":"Field","name":{"kind":"Name","value":"implName"}},{"kind":"Field","name":{"kind":"Name","value":"specName"}},{"kind":"Field","name":{"kind":"Name","value":"specVersion"}},{"kind":"Field","name":{"kind":"Name","value":"nativeToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokens"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"EnumValue","value":"id_ASC"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"account"}},{"kind":"Field","name":{"kind":"Name","value":"subscanUrl"}},{"kind":"Field","name":{"kind":"Name","value":"chainspecQrUrl"}},{"kind":"Field","name":{"kind":"Name","value":"latestMetadataQrUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isUnknownFeeToken"}},{"kind":"Field","name":{"kind":"Name","value":"rpcs"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"isHealthy"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isHealthy"}},{"kind":"Field","name":{"kind":"Name","value":"evmNetworks"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"EnumValue","value":"name_ASC"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"parathreads"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"EnumValue","value":"paraId_ASC"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"paraId"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"paraId"}},{"kind":"Field","name":{"kind":"Name","value":"relay"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"balanceMetadata"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"moduleType"}},{"kind":"Field","name":{"kind":"Name","value":"metadata"}}]}}]}}]} as unknown as DocumentNode; +export const ChainByIdDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"chainById"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"chainId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"chainById"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"chainId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Chain"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Chain"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Chain"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"isTestnet"}},{"kind":"Field","name":{"kind":"Name","value":"sortIndex"}},{"kind":"Field","name":{"kind":"Name","value":"genesisHash"}},{"kind":"Field","name":{"kind":"Name","value":"prefix"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"themeColor"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"chainName"}},{"kind":"Field","name":{"kind":"Name","value":"implName"}},{"kind":"Field","name":{"kind":"Name","value":"specName"}},{"kind":"Field","name":{"kind":"Name","value":"specVersion"}},{"kind":"Field","name":{"kind":"Name","value":"nativeToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokens"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"EnumValue","value":"id_ASC"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"account"}},{"kind":"Field","name":{"kind":"Name","value":"subscanUrl"}},{"kind":"Field","name":{"kind":"Name","value":"chainspecQrUrl"}},{"kind":"Field","name":{"kind":"Name","value":"latestMetadataQrUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isUnknownFeeToken"}},{"kind":"Field","name":{"kind":"Name","value":"rpcs"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"isHealthy"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isHealthy"}},{"kind":"Field","name":{"kind":"Name","value":"evmNetworks"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"EnumValue","value":"name_ASC"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"parathreads"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"EnumValue","value":"paraId_ASC"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"paraId"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"paraId"}},{"kind":"Field","name":{"kind":"Name","value":"relay"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"balanceMetadata"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"moduleType"}},{"kind":"Field","name":{"kind":"Name","value":"metadata"}}]}}]}}]} as unknown as DocumentNode; +export const EvmNetworksDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"evmNetworks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"evmNetworks"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"EnumValue","value":"sortIndex_ASC"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EvmNetwork"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EvmNetwork"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EvmNetwork"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"isTestnet"}},{"kind":"Field","name":{"kind":"Name","value":"sortIndex"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"themeColor"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"nativeToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokens"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"EnumValue","value":"id_ASC"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"explorerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"rpcs"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"isHealthy"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isHealthy"}},{"kind":"Field","name":{"kind":"Name","value":"substrateChain"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]} as unknown as DocumentNode; +export const EvmNetworkByIdDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"evmNetworkById"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"evmNetworkId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"evmNetworkById"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"evmNetworkId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EvmNetwork"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EvmNetwork"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EvmNetwork"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"isTestnet"}},{"kind":"Field","name":{"kind":"Name","value":"sortIndex"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"themeColor"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"nativeToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokens"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"EnumValue","value":"id_ASC"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"explorerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"rpcs"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"isHealthy"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isHealthy"}},{"kind":"Field","name":{"kind":"Name","value":"substrateChain"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]} as unknown as DocumentNode; +export const TokensDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"tokens"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tokens"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"EnumValue","value":"id_ASC"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Token"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Token"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Token"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"data"}},{"kind":"Field","name":{"kind":"Name","value":"squidImplementationDetailNativeToChains"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"EnumValue","value":"sortIndex_ASC"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"squidImplementationDetailNativeToEvmNetworks"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"EnumValue","value":"name_ASC"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]} as unknown as DocumentNode; +export const TokenByIdDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"tokenById"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"tokenId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tokenById"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"tokenId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Token"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Token"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Token"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"data"}},{"kind":"Field","name":{"kind":"Name","value":"squidImplementationDetailNativeToChains"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"EnumValue","value":"sortIndex_ASC"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"squidImplementationDetailNativeToEvmNetworks"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"EnumValue","value":"name_ASC"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]} as unknown as DocumentNode; \ No newline at end of file