@aptos-labs/js-pro 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/dist/client.d.ts +1 -2
- package/dist/client.d.ts.map +1 -1
- package/dist/index.js +33 -33
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +28 -28
- package/dist/index.mjs.map +1 -1
- package/dist/queries/index.d.ts +0 -1
- package/dist/queries/index.d.ts.map +1 -1
- package/package.json +3 -2
- package/src/client.ts +0 -3
- package/src/queries/index.ts +0 -1
- package/dist/queries/fetchEvents.d.ts +0 -7
- package/dist/queries/fetchEvents.d.ts.map +0 -1
- package/src/queries/fetchEvents.ts +0 -23
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts","../src/client.ts","../src/operations/index.ts","../src/operations/generated/sdk.ts","../src/operations/generated/types.ts","../src/queries/fetchAccountCoins.ts","../src/utils/pagination.ts","../src/errors/base.ts","../src/errors/clients.ts","../src/utils/names.ts","../src/constants/endpoints.ts","../src/utils/tokens.ts","../src/utils/normalize.ts","../src/queries/getClients.ts","../src/queries/fetchAptBalance.ts","../src/queries/fetchBalance.ts","../src/queries/fetchProcessorStatus.ts","../src/queries/fetchAddressFromName.ts","../src/utils/lib.ts","../src/queries/fetchNameFromAddress.ts","../src/queries/fetchEstimatedGasPrice.ts","../src/queries/fetchTransaction.ts","../src/queries/fetchResourceType.ts","../src/queries/fetchResources.ts","../src/queries/fetchLedgerInfo.ts","../src/queries/fetchTokenData.ts","../src/queries/fetchAccountCollections.ts","../src/errors/transactions.ts","../src/queries/fetchViewModule.ts","../src/queries/fetchFungibleAssetMetadata.ts","../src/queries/fetchAccountTransactions.ts","../src/queries/fetchAccountTokens.ts","../src/queries/fetchEvents.ts","../src/queries/fetchUserTransactions.ts","../src/mutations/buildTransaction.ts","../src/mutations/submitTransaction.ts","../src/mutations/waitForTransaction.ts","../src/mutations/simulateTransaction.ts","../src/mutations/signTransaction.ts","../src/mutations/signAndSubmitTransaction.ts","../src/utils/explorer.ts","../src/utils/units.ts","../src/utils/convert.ts","../src/utils/objects.ts","../src/utils/fungibleAssets.ts","../src/utils/transactions/shared.ts","../src/types/parsers.ts","../src/utils/transactions/parsers/CoinEventParser.ts","../src/utils/transactions/parsers/CoinStoreWritesetParser.ts","../src/utils/transactions/parsers/FungibleAssetEventParser.ts","../src/utils/transactions/parsers/FungibleAssetStoreWritesetParser.ts","../src/utils/transactions/parsers/ObjectOwnersWritesetParser.ts","../src/utils/transactions/TransactionParser.ts"],"sourcesContent":["// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nexport * from \"./client.js\";\nexport * from \"./operations/index.js\";\nexport * from \"./types/index.js\";\nexport * from \"./queries/index.js\";\nexport * from \"./utils/index.js\";\nexport * from \"./errors/index.js\";\nexport * from \"./mutations/index.js\";","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { subscribeWithSelector } from \"zustand/middleware\";\nimport { createStore, Mutate, StoreApi } from \"zustand/vanilla\";\nimport {\n Aptos,\n AptosApiType,\n AptosConfig,\n AptosSettings,\n Network,\n} from \"@aptos-labs/ts-sdk\";\nimport { GraphQLClient } from \"graphql-request\";\nimport { Sdk, createIndexerClient } from \"./operations/index.js\";\nimport { AccountInfo, NetworkInfo, SignerClient } from \"./types/index.js\";\nimport {\n getClients,\n fetchAccountCoins,\n fetchAptBalance,\n fetchBalance,\n fetchProcessorStatus,\n fetchAddressFromName,\n fetchNameFromAddress,\n fetchEstimatedGasPrice,\n fetchTransaction,\n fetchResources,\n fetchResourceType,\n fetchTokenData,\n fetchFungibleAssetMetadata,\n fetchAccountCollections,\n fetchViewModule,\n fetchLedgerInfo,\n fetchEvents,\n fetchAccountTransactions,\n fetchAccountTokens,\n fetchUserTransactions,\n} from \"./queries/index.js\";\nimport {\n buildTransaction,\n signAndSubmitTransaction,\n signTransaction,\n simulateTransaction,\n submitTransaction,\n waitForTransaction,\n} from \"./mutations/index.js\";\n\ntype IndexerClientOptions = ConstructorParameters<typeof GraphQLClient>[1];\n\nexport type ClientConfigs = {\n /**\n * This will be included as `Authorization: Bearer <apiKey>` in all requests to Aptos\n * APIs. For the Aptos client this means settings AptosConfig.clientConfig.API_KEY.\n * For the indexer client, we provide a custom header.\n *\n * This argument takes precedence over the relevant argument in the configs for\n * `aptos` and `indexerClient`.\n *\n * It is okay to accept a single argument here because it is standard to use the same\n * API key for both APIs (node and indexer APIs).\n */\n apiKey?: { [network: string | Network]: string | undefined } | string;\n /**\n * Will override any Network settings if provided in this config.\n */\n aptos?: { config: AptosSettings };\n indexerClient?: { options: IndexerClientOptions };\n /**\n * A function that returns the current server time in milliseconds.\n *\n * @default Date.now\n * @returns The current server time in milliseconds\n */\n serverTime?: () => number;\n};\n\nexport type AptosJSProClientParameters = {\n account?: AccountInfo;\n config?: ClientConfigs;\n network: NetworkInfo;\n signer?: SignerClient;\n};\n\nexport type AptosJSProClientState = {\n account?: AccountInfo;\n config?: ClientConfigs;\n network: NetworkInfo;\n signer?: SignerClient;\n};\n\nexport class AptosJSProClient {\n #store: Mutate<\n StoreApi<AptosJSProClientState>,\n [[\"zustand/subscribeWithSelector\", never]]\n >;\n\n #aptos: Aptos;\n\n #indexer: Sdk | undefined;\n\n constructor(params: AptosJSProClientParameters) {\n this.#store = createStore<\n AptosJSProClientState,\n [[\"zustand/subscribeWithSelector\", never]]\n >(\n subscribeWithSelector(\n (): AptosJSProClientState => ({\n account: params.account,\n config: params.config,\n network: params.network,\n signer: params.signer,\n })\n )\n );\n this.#aptos = this.createAptos();\n this.#indexer = this.createIndexer();\n }\n\n get state() {\n return this.#store.getState();\n }\n\n get store() {\n return this.#store;\n }\n\n get signer() {\n return this.state.signer;\n }\n\n get account() {\n return this.state.account;\n }\n\n get network() {\n return this.state.network;\n }\n\n get aptos() {\n return this.#aptos;\n }\n\n get indexer() {\n return this.#indexer;\n }\n\n getServerTime = () => (this.state.config?.serverTime ?? Date.now)();\n\n getServerDate = () => new Date(this.getServerTime());\n\n setAccount = (account: AccountInfo | undefined) => {\n this.#store.setState({ ...this.state, account }, true);\n };\n\n setNetwork = (network: NetworkInfo) => {\n this.#store.setState({ ...this.state, network }, true);\n this.refreshClients();\n };\n\n setSigner = (signer: SignerClient | undefined) => {\n this.#store.setState({ ...this.state, signer }, true);\n };\n\n setConfig = (config: ClientConfigs) => {\n this.#store.setState({ ...this.state, config }, true);\n this.refreshClients();\n };\n\n onAccountChange = (callback: (account?: AccountInfo) => void) =>\n this.#store.subscribe(\n (state) => state.account,\n (account) => callback(account)\n );\n\n onNetworkChange = (callback: (network: NetworkInfo) => void) =>\n this.#store.subscribe(\n (state) => state.network,\n (network) => callback(network)\n );\n\n onSignerChange = (callback: (signer?: SignerClient) => void) =>\n this.#store.subscribe(\n (state) => state.signer,\n (signer) => callback(signer)\n );\n\n onConfigChange = (callback: (config?: ClientConfigs) => void) =>\n this.#store.subscribe(\n (state) => state.config,\n (config) => callback(config)\n );\n\n onChange = (callback: (state: AptosJSProClientState) => void) =>\n this.#store.subscribe((state) => callback(state));\n\n createNetworkConfig = (\n network: NetworkInfo = this.state.network\n ): AptosSettings => {\n if (network.network === Network.CUSTOM) {\n return {\n network: network.network,\n fullnode: network.nodeUrl,\n indexer: network.indexerUrl,\n faucet: network.faucetUrl,\n prover: network.proverUrl,\n pepper: network.pepperUrl,\n };\n }\n return network;\n };\n\n /**\n * To support V1 networks, we are case insensitive when matching the network name.\n *\n * @returns An Aptos instance\n */\n createAptos = (\n clientConfig?: AptosSettings,\n network: NetworkInfo = this.state.network\n ) => {\n const { state } = this;\n\n const networkConfig = this.createNetworkConfig(network);\n\n const userProvidedConfig = state.config?.aptos?.config ?? {};\n\n const apiKey =\n typeof state.config?.apiKey === \"string\"\n ? state.config?.apiKey\n : state.config?.apiKey?.[network.network];\n\n // Deep merge clientConfig over userProvidedConfig\n // 1. Add default networks config\n // 2. Add default state config and API_KEY\n // 3. Add clientConfig (if provided) which can\n // override the state config, API_KEY, or networks\n const aptosConfig = new AptosConfig({\n ...networkConfig,\n ...userProvidedConfig,\n ...clientConfig,\n clientConfig: {\n ...userProvidedConfig.clientConfig,\n API_KEY: apiKey,\n ...clientConfig?.clientConfig,\n },\n });\n\n return new Aptos(aptosConfig);\n };\n\n createIndexer = (\n clientConfig?: AptosSettings,\n network: NetworkInfo = this.state.network\n ): Sdk | undefined => {\n let indexerUrl: string | undefined;\n try {\n indexerUrl = this.createAptos(clientConfig, network).config.getRequestUrl(\n AptosApiType.INDEXER\n );\n } catch {\n /* empty */\n }\n\n if (indexerUrl === undefined) return undefined;\n\n const apiKey =\n typeof this.state.config?.apiKey === \"string\"\n ? this.state.config?.apiKey\n : this.state.config?.apiKey?.[network.network];\n\n const userProvidedOptions = this.state.config?.indexerClient?.options ?? {};\n const authHeaders: Record<string, string> = apiKey\n ? { Authorization: `Bearer ${apiKey}` }\n : {};\n const options = {\n ...userProvidedOptions,\n headers: {\n ...userProvidedOptions.headers,\n ...authHeaders,\n },\n };\n return createIndexerClient(indexerUrl, options);\n };\n\n private refreshClients = () => {\n this.#aptos = this.createAptos();\n this.#indexer = this.createIndexer();\n };\n\n //* Client Queries\n\n getClients = getClients;\n\n fetchAccountTransactions = fetchAccountTransactions;\n\n fetchAccountCollections = fetchAccountCollections;\n\n fetchAccountCoins = fetchAccountCoins;\n\n fetchAccountTokens = fetchAccountTokens;\n\n fetchTransaction = fetchTransaction;\n\n fetchResources = fetchResources;\n\n fetchResourceType = fetchResourceType;\n\n fetchProcessorStatus = fetchProcessorStatus;\n\n fetchTokenData = fetchTokenData;\n\n fetchFungibleAssetMetadata = fetchFungibleAssetMetadata;\n\n fetchLedgerInfo = fetchLedgerInfo;\n\n fetchAddressFromName = fetchAddressFromName;\n\n fetchNameFromAddress = fetchNameFromAddress;\n\n fetchAptBalance = fetchAptBalance;\n\n fetchBalance = fetchBalance;\n\n fetchEstimatedGasPrice = fetchEstimatedGasPrice;\n\n fetchViewModule = fetchViewModule;\n\n fetchEvents = fetchEvents;\n\n fetchUserTransactions = fetchUserTransactions;\n\n //* Client Mutations\n\n submitTransaction = submitTransaction;\n\n waitForTransaction = waitForTransaction;\n\n simulateTransaction = simulateTransaction;\n\n signTransaction = signTransaction;\n\n signAndSubmitTransaction = signAndSubmitTransaction;\n\n buildTransaction = buildTransaction;\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\nimport { GraphQLClient } from \"graphql-request\";\nimport { getSdk } from \"./generated/sdk.js\";\n\nexport function createIndexerClient(\n endpoint: string,\n options?: ConstructorParameters<typeof GraphQLClient>[1]\n) {\n const graphqlClient = new GraphQLClient(endpoint, options);\n return getSdk(graphqlClient);\n}\n\nexport * from \"./generated/operations.js\";\nexport * from \"./generated/types.js\";\n\nexport type { Sdk } from \"./generated/sdk.js\";\n","import * as Types from './operations.js';\n\nimport { GraphQLClient, RequestOptions } from 'graphql-request';\nimport { gql } from 'graphql-tag';\ntype GraphQLClientRequestHeaders = RequestOptions['requestHeaders'];\nexport const CollectionDataFieldsFragmentDoc = gql`\n fragment CollectionDataFields on current_collections_v2 {\n uri\n max_supply\n description\n collection_name\n collection_id\n creator_address\n cdn_asset_uris {\n cdn_image_uri\n }\n}\n `;\nexport const TokenDataFieldsFragmentDoc = gql`\n fragment TokenDataFields on current_token_datas_v2 {\n current_collection {\n ...CollectionDataFields\n }\n cdn_asset_uris {\n cdn_image_uri\n }\n last_transaction_timestamp\n last_transaction_version\n token_properties\n token_standard\n is_fungible_v2\n token_data_id\n description\n token_name\n token_uri\n}\n ${CollectionDataFieldsFragmentDoc}`;\nexport const TokenOwnershipFieldsFragmentDoc = gql`\n fragment TokenOwnershipFields on current_token_ownerships_v2 {\n current_token_data {\n ...TokenDataFields\n }\n is_soulbound_v2\n owner_address\n amount\n}\n ${TokenDataFieldsFragmentDoc}`;\nexport const CollectionOwnershipFragmentDoc = gql`\n fragment CollectionOwnership on current_collection_ownership_v2_view {\n distinct_tokens\n single_token_uri\n current_collection {\n ...CollectionDataFields\n }\n}\n ${CollectionDataFieldsFragmentDoc}`;\nexport const PrimaryAptosNameFragmentDoc = gql`\n fragment PrimaryAptosName on current_aptos_names {\n domain\n subdomain\n}\n `;\nexport const FungibleAssetMetadataFieldsFragmentDoc = gql`\n fragment FungibleAssetMetadataFields on fungible_asset_metadata {\n asset_type\n creator_address\n decimals\n icon_uri\n project_uri\n name\n symbol\n token_standard\n supply_v2\n maximum_v2\n}\n `;\nexport const FungibleAssetActivityFragmentDoc = gql`\n fragment FungibleAssetActivity on fungible_asset_activities {\n owner_primary_aptos_name: owner_aptos_names(\n where: {is_primary: {_eq: true}, is_active: {_eq: true}}\n ) {\n ...PrimaryAptosName\n }\n type\n amount\n block_height\n asset_type\n metadata {\n ...FungibleAssetMetadataFields\n }\n entry_function_id_str\n owner_address\n event_index\n is_gas_fee\n gas_fee_payer_address\n is_transaction_success\n transaction_timestamp\n transaction_version\n}\n ${PrimaryAptosNameFragmentDoc}\n${FungibleAssetMetadataFieldsFragmentDoc}`;\nexport const BaseTokenActivityFragmentDoc = gql`\n fragment BaseTokenActivity on token_activities_v2 {\n from_address\n to_address\n transaction_version\n transaction_timestamp\n type\n event_account_address\n event_index\n}\n `;\nexport const TokenActivityFragmentDoc = gql`\n fragment TokenActivity on token_activities_v2 {\n ...BaseTokenActivity\n primary_aptos_name_from: aptos_names_from(\n where: {is_primary: {_eq: true}, is_active: {_eq: true}}\n ) {\n domain\n subdomain\n }\n primary_aptos_name_to: aptos_names_to(\n where: {is_primary: {_eq: true}, is_active: {_eq: true}}\n ) {\n domain\n subdomain\n }\n token_amount\n current_token_data {\n ...TokenDataFields\n }\n property_version_v1\n token_amount\n token_data_id\n}\n ${BaseTokenActivityFragmentDoc}\n${TokenDataFieldsFragmentDoc}`;\nexport const DelegatedStakingActivityFragmentDoc = gql`\n fragment DelegatedStakingActivity on delegated_staking_activities {\n amount\n delegator_address\n event_index\n event_type\n pool_address\n transaction_version\n}\n `;\nexport const UserTransactionFragmentDoc = gql`\n fragment UserTransaction on user_transactions {\n sequence_number\n sender\n entry_function_id_str\n expiration_timestamp_secs\n gas_unit_price\n max_gas_amount\n parent_signature_type\n version\n timestamp\n}\n `;\nexport const AccountTransactionFragmentDoc = gql`\n fragment AccountTransaction on account_transactions {\n account_address\n transaction_version\n fungible_asset_activities(\n where: {asset_type: {_is_null: false}, _and: $fungible_asset_activities_where}\n order_by: $fungible_asset_activities_order_by\n ) {\n ...FungibleAssetActivity\n }\n token_activities_v2(\n where: {_and: $token_activities_v2_where}\n order_by: $token_activities_v2_order_by\n ) {\n ...TokenActivity\n }\n delegated_staking_activities(order_by: {event_index: desc}) {\n ...DelegatedStakingActivity\n }\n user_transaction {\n ...UserTransaction\n }\n}\n ${FungibleAssetActivityFragmentDoc}\n${TokenActivityFragmentDoc}\n${DelegatedStakingActivityFragmentDoc}\n${UserTransactionFragmentDoc}`;\nexport const FungibleAssetBalanceFieldsFragmentDoc = gql`\n fragment FungibleAssetBalanceFields on current_fungible_asset_balances {\n amount\n amount_v1\n amount_v2\n asset_type\n asset_type_v1\n asset_type_v2\n is_frozen\n is_primary\n last_transaction_timestamp\n last_transaction_version\n token_standard\n owner_address\n metadata {\n ...FungibleAssetMetadataFields\n }\n}\n ${FungibleAssetMetadataFieldsFragmentDoc}`;\nexport const GetAccountTokensTotalDocument = gql`\n query getAccountTokensTotal($address: String!, $where: [current_token_ownerships_v2_bool_exp!]!) {\n current_token_ownerships_v2_aggregate(\n where: {owner_address: {_eq: $address}, amount: {_gt: 0}, _and: $where}\n ) {\n aggregate {\n count\n }\n }\n}\n `;\nexport const GetAccountTokenOwnershipsDocument = gql`\n query getAccountTokenOwnerships($address: String!, $offset: Int, $limit: Int, $where: [current_token_ownerships_v2_bool_exp!]!, $order_by: [current_token_ownerships_v2_order_by!]!) {\n current_token_ownerships_v2(\n where: {owner_address: {_eq: $address}, amount: {_gt: 0}, current_token_data: {token_data_id: {_is_null: false}}, _and: $where}\n offset: $offset\n limit: $limit\n order_by: $order_by\n ) {\n ...TokenOwnershipFields\n }\n}\n ${TokenOwnershipFieldsFragmentDoc}`;\nexport const GetCurrentTokenDataDocument = gql`\n query getCurrentTokenData($tokenId: String!, $address: String!) {\n current_token_datas_v2(where: {token_data_id: {_eq: $tokenId}}) {\n token_name\n current_collection {\n collection_name\n }\n last_transaction_timestamp\n description\n token_properties\n token_uri\n cdn_asset_uris {\n cdn_image_uri\n }\n }\n created_activity: token_activities_v2(\n where: {token_data_id: {_eq: $tokenId}}\n order_by: [{transaction_version: asc}, {event_index: asc}]\n limit: 1\n ) {\n from_address\n to_address\n transaction_timestamp\n type\n transaction_version\n event_index\n event_account_address\n }\n acquired_activity: token_activities_v2(\n where: {token_data_id: {_eq: $tokenId}, to_address: {_eq: $address}}\n order_by: [{transaction_version: desc}, {event_index: desc}]\n limit: 1\n ) {\n from_address\n to_address\n transaction_timestamp\n type\n transaction_version\n event_index\n }\n}\n `;\nexport const GetAccountCollectionsDocument = gql`\n query getAccountCollections($address: String!, $offset: Int, $limit: Int, $where: [current_collection_ownership_v2_view_bool_exp!]!, $order_by: [current_collection_ownership_v2_view_order_by!]!) {\n current_collection_ownership_v2_view(\n where: {owner_address: {_eq: $address}, _and: $where}\n offset: $offset\n limit: $limit\n order_by: $order_by\n ) {\n ...CollectionOwnership\n }\n}\n ${CollectionOwnershipFragmentDoc}`;\nexport const GetTokenDataDocument = gql`\n query getTokenData($address: String!) {\n current_token_datas_v2(where: {token_data_id: {_eq: $address}}) {\n ...TokenDataFields\n }\n created_activity: token_activities_v2(\n where: {token_data_id: {_eq: $address}}\n order_by: [{transaction_version: asc}, {event_index: asc}]\n limit: 1\n ) {\n from_address\n to_address\n transaction_timestamp\n type\n transaction_version\n event_index\n event_account_address\n }\n acquired_activity: token_activities_v2(\n where: {token_data_id: {_eq: $address}}\n order_by: [{transaction_version: desc}, {event_index: desc}]\n limit: 1\n ) {\n from_address\n to_address\n transaction_timestamp\n type\n transaction_version\n event_index\n event_account_address\n }\n}\n ${TokenDataFieldsFragmentDoc}`;\nexport const GetActivitiesAggregateDocument = gql`\n query getActivitiesAggregate($account_address: String!) {\n address_events_summary(where: {account_address: {_eq: $account_address}}) {\n block_metadata {\n timestamp\n }\n num_distinct_versions\n }\n}\n `;\nexport const GetTokenActivitiesDocument = gql`\n query getTokenActivities($tokenId: String!, $offset: Int, $limit: Int) {\n token_activities_v2(\n where: {token_data_id: {_eq: $tokenId}}\n order_by: [{transaction_timestamp: desc}, {transaction_version: desc}]\n offset: $offset\n limit: $limit\n ) {\n ...TokenActivity\n }\n}\n ${TokenActivityFragmentDoc}`;\nexport const GetTokenAcquisitionActivityDocument = gql`\n query getTokenAcquisitionActivity($address: String!, $tokenId: String!) {\n token_activities_v2(\n where: {token_data_id: {_eq: $tokenId}, to_address: {_eq: $address}}\n order_by: [{transaction_timestamp: desc}, {transaction_version: desc}]\n ) {\n transaction_timestamp\n }\n}\n `;\nexport const GetAccountTransactionsDocument = gql`\n query getAccountTransactions($address: String!, $limit: Int, $offset: Int, $where: [account_transactions_bool_exp!]!, $fungible_asset_activities_where: [fungible_asset_activities_bool_exp!]!, $token_activities_v2_where: [token_activities_v2_bool_exp!]!, $order_by: [account_transactions_order_by!]!, $fungible_asset_activities_order_by: [fungible_asset_activities_order_by!]!, $token_activities_v2_order_by: [token_activities_v2_order_by!]!) {\n account_transactions(\n limit: $limit\n offset: $offset\n where: {account_address: {_eq: $address}, _and: $where}\n order_by: $order_by\n ) {\n ...AccountTransaction\n }\n}\n ${AccountTransactionFragmentDoc}`;\nexport const GetUserTransactionsDocument = gql`\n query getUserTransactions($limit: Int, $offset: Int, $where: user_transactions_bool_exp, $order_by: [user_transactions_order_by!]!) {\n user_transactions(\n limit: $limit\n offset: $offset\n where: $where\n order_by: $order_by\n ) {\n ...UserTransaction\n }\n}\n ${UserTransactionFragmentDoc}`;\nexport const GetFungibleAssetMetadataDocument = gql`\n query getFungibleAssetMetadata($type: String!) {\n fungible_asset_metadata(where: {asset_type: {_eq: $type}}) {\n asset_type\n decimals\n name\n symbol\n }\n}\n `;\nexport const GetFungibleAssetBalancesDocument = gql`\n query getFungibleAssetBalances($where: current_fungible_asset_balances_bool_exp, $order_by: [current_fungible_asset_balances_order_by!], $offset: Int, $limit: Int) {\n current_fungible_asset_balances(\n where: $where\n order_by: $order_by\n offset: $offset\n limit: $limit\n ) {\n ...FungibleAssetBalanceFields\n }\n}\n ${FungibleAssetBalanceFieldsFragmentDoc}`;\nexport const GetDelegatedStakingRoyaltiesDocument = gql`\n query getDelegatedStakingRoyalties($address: String!, $pool: String) {\n delegated_staking_activities(\n where: {delegator_address: {_eq: $address}, pool_address: {_eq: $pool}}\n order_by: {transaction_version: desc}\n ) {\n amount\n delegator_address\n event_index\n event_type\n pool_address\n transaction_version\n }\n}\n `;\nexport const GetDelegatedStakingDocument = gql`\n query getDelegatedStaking($address: String!) {\n delegator_distinct_pool(where: {delegator_address: {_eq: $address}}) {\n delegator_address\n pool_address\n current_pool_balance {\n operator_commission_percentage\n }\n staking_pool_metadata {\n operator_address\n operator_aptos_name {\n domain\n }\n }\n }\n}\n `;\nexport const GetDelegationPoolsDocument = gql`\n query getDelegationPools {\n delegated_staking_pools {\n staking_pool_address\n current_staking_pool {\n operator_address\n }\n }\n}\n `;\nexport const GetNumberOfDelegatorsDocument = gql`\n query getNumberOfDelegators($poolAddress: String) {\n num_active_delegator_per_pool(\n where: {pool_address: {_eq: $poolAddress}, num_active_delegator: {_gt: \"0\"}}\n distinct_on: pool_address\n ) {\n num_active_delegator\n }\n}\n `;\n\nexport type SdkFunctionWrapper = <T>(action: (requestHeaders?:Record<string, string>) => Promise<T>, operationName: string, operationType?: string, variables?: any) => Promise<T>;\n\n\nconst defaultWrapper: SdkFunctionWrapper = (action, _operationName, _operationType, _variables) => action();\n\nexport function getSdk(client: GraphQLClient, withWrapper: SdkFunctionWrapper = defaultWrapper) {\n return {\n getAccountTokensTotal(variables: Types.GetAccountTokensTotalQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit['signal']): Promise<Types.GetAccountTokensTotalQuery> {\n return withWrapper((wrappedRequestHeaders) => client.request<Types.GetAccountTokensTotalQuery>({ document: GetAccountTokensTotalDocument, variables, requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders }, signal }), 'getAccountTokensTotal', 'query', variables);\n },\n getAccountTokenOwnerships(variables: Types.GetAccountTokenOwnershipsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit['signal']): Promise<Types.GetAccountTokenOwnershipsQuery> {\n return withWrapper((wrappedRequestHeaders) => client.request<Types.GetAccountTokenOwnershipsQuery>({ document: GetAccountTokenOwnershipsDocument, variables, requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders }, signal }), 'getAccountTokenOwnerships', 'query', variables);\n },\n getCurrentTokenData(variables: Types.GetCurrentTokenDataQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit['signal']): Promise<Types.GetCurrentTokenDataQuery> {\n return withWrapper((wrappedRequestHeaders) => client.request<Types.GetCurrentTokenDataQuery>({ document: GetCurrentTokenDataDocument, variables, requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders }, signal }), 'getCurrentTokenData', 'query', variables);\n },\n getAccountCollections(variables: Types.GetAccountCollectionsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit['signal']): Promise<Types.GetAccountCollectionsQuery> {\n return withWrapper((wrappedRequestHeaders) => client.request<Types.GetAccountCollectionsQuery>({ document: GetAccountCollectionsDocument, variables, requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders }, signal }), 'getAccountCollections', 'query', variables);\n },\n getTokenData(variables: Types.GetTokenDataQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit['signal']): Promise<Types.GetTokenDataQuery> {\n return withWrapper((wrappedRequestHeaders) => client.request<Types.GetTokenDataQuery>({ document: GetTokenDataDocument, variables, requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders }, signal }), 'getTokenData', 'query', variables);\n },\n getActivitiesAggregate(variables: Types.GetActivitiesAggregateQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit['signal']): Promise<Types.GetActivitiesAggregateQuery> {\n return withWrapper((wrappedRequestHeaders) => client.request<Types.GetActivitiesAggregateQuery>({ document: GetActivitiesAggregateDocument, variables, requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders }, signal }), 'getActivitiesAggregate', 'query', variables);\n },\n getTokenActivities(variables: Types.GetTokenActivitiesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit['signal']): Promise<Types.GetTokenActivitiesQuery> {\n return withWrapper((wrappedRequestHeaders) => client.request<Types.GetTokenActivitiesQuery>({ document: GetTokenActivitiesDocument, variables, requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders }, signal }), 'getTokenActivities', 'query', variables);\n },\n getTokenAcquisitionActivity(variables: Types.GetTokenAcquisitionActivityQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit['signal']): Promise<Types.GetTokenAcquisitionActivityQuery> {\n return withWrapper((wrappedRequestHeaders) => client.request<Types.GetTokenAcquisitionActivityQuery>({ document: GetTokenAcquisitionActivityDocument, variables, requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders }, signal }), 'getTokenAcquisitionActivity', 'query', variables);\n },\n getAccountTransactions(variables: Types.GetAccountTransactionsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit['signal']): Promise<Types.GetAccountTransactionsQuery> {\n return withWrapper((wrappedRequestHeaders) => client.request<Types.GetAccountTransactionsQuery>({ document: GetAccountTransactionsDocument, variables, requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders }, signal }), 'getAccountTransactions', 'query', variables);\n },\n getUserTransactions(variables: Types.GetUserTransactionsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit['signal']): Promise<Types.GetUserTransactionsQuery> {\n return withWrapper((wrappedRequestHeaders) => client.request<Types.GetUserTransactionsQuery>({ document: GetUserTransactionsDocument, variables, requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders }, signal }), 'getUserTransactions', 'query', variables);\n },\n getFungibleAssetMetadata(variables: Types.GetFungibleAssetMetadataQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit['signal']): Promise<Types.GetFungibleAssetMetadataQuery> {\n return withWrapper((wrappedRequestHeaders) => client.request<Types.GetFungibleAssetMetadataQuery>({ document: GetFungibleAssetMetadataDocument, variables, requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders }, signal }), 'getFungibleAssetMetadata', 'query', variables);\n },\n getFungibleAssetBalances(variables?: Types.GetFungibleAssetBalancesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit['signal']): Promise<Types.GetFungibleAssetBalancesQuery> {\n return withWrapper((wrappedRequestHeaders) => client.request<Types.GetFungibleAssetBalancesQuery>({ document: GetFungibleAssetBalancesDocument, variables, requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders }, signal }), 'getFungibleAssetBalances', 'query', variables);\n },\n getDelegatedStakingRoyalties(variables: Types.GetDelegatedStakingRoyaltiesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit['signal']): Promise<Types.GetDelegatedStakingRoyaltiesQuery> {\n return withWrapper((wrappedRequestHeaders) => client.request<Types.GetDelegatedStakingRoyaltiesQuery>({ document: GetDelegatedStakingRoyaltiesDocument, variables, requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders }, signal }), 'getDelegatedStakingRoyalties', 'query', variables);\n },\n getDelegatedStaking(variables: Types.GetDelegatedStakingQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit['signal']): Promise<Types.GetDelegatedStakingQuery> {\n return withWrapper((wrappedRequestHeaders) => client.request<Types.GetDelegatedStakingQuery>({ document: GetDelegatedStakingDocument, variables, requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders }, signal }), 'getDelegatedStaking', 'query', variables);\n },\n getDelegationPools(variables?: Types.GetDelegationPoolsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit['signal']): Promise<Types.GetDelegationPoolsQuery> {\n return withWrapper((wrappedRequestHeaders) => client.request<Types.GetDelegationPoolsQuery>({ document: GetDelegationPoolsDocument, variables, requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders }, signal }), 'getDelegationPools', 'query', variables);\n },\n getNumberOfDelegators(variables?: Types.GetNumberOfDelegatorsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit['signal']): Promise<Types.GetNumberOfDelegatorsQuery> {\n return withWrapper((wrappedRequestHeaders) => client.request<Types.GetNumberOfDelegatorsQuery>({ document: GetNumberOfDelegatorsDocument, variables, requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders }, signal }), 'getNumberOfDelegators', 'query', variables);\n }\n };\n}\nexport type Sdk = ReturnType<typeof getSdk>;","export type JSONValue = null | string | number | boolean | { [x: string]: JSONValue } | Array<JSONValue>;\nexport type Maybe<T> = T | null;\nexport type InputMaybe<T> = Maybe<T>;\nexport type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };\nexport type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };\nexport type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };\nexport type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };\nexport type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };\n/** All built-in and custom scalars, mapped to their actual values */\nexport type Scalars = {\n ID: { input: string; output: string; }\n String: { input: string; output: string; }\n Boolean: { input: boolean; output: boolean; }\n Int: { input: number; output: number; }\n Float: { input: number; output: number; }\n bigint: { input: string; output: string; }\n jsonb: { input: JSONValue; output: JSONValue; }\n numeric: { input: number; output: number; }\n timestamp: { input: string; output: string; }\n};\n\n/** Boolean expression to compare columns of type \"Boolean\". All fields are combined with logical 'AND'. */\nexport type Boolean_Comparison_Exp = {\n _eq?: InputMaybe<Scalars['Boolean']['input']>;\n _gt?: InputMaybe<Scalars['Boolean']['input']>;\n _gte?: InputMaybe<Scalars['Boolean']['input']>;\n _in?: InputMaybe<Array<Scalars['Boolean']['input']>>;\n _is_null?: InputMaybe<Scalars['Boolean']['input']>;\n _lt?: InputMaybe<Scalars['Boolean']['input']>;\n _lte?: InputMaybe<Scalars['Boolean']['input']>;\n _neq?: InputMaybe<Scalars['Boolean']['input']>;\n _nin?: InputMaybe<Array<Scalars['Boolean']['input']>>;\n};\n\n/** Boolean expression to compare columns of type \"Int\". All fields are combined with logical 'AND'. */\nexport type Int_Comparison_Exp = {\n _eq?: InputMaybe<Scalars['Int']['input']>;\n _gt?: InputMaybe<Scalars['Int']['input']>;\n _gte?: InputMaybe<Scalars['Int']['input']>;\n _in?: InputMaybe<Array<Scalars['Int']['input']>>;\n _is_null?: InputMaybe<Scalars['Boolean']['input']>;\n _lt?: InputMaybe<Scalars['Int']['input']>;\n _lte?: InputMaybe<Scalars['Int']['input']>;\n _neq?: InputMaybe<Scalars['Int']['input']>;\n _nin?: InputMaybe<Array<Scalars['Int']['input']>>;\n};\n\n/** Boolean expression to compare columns of type \"String\". All fields are combined with logical 'AND'. */\nexport type String_Comparison_Exp = {\n _eq?: InputMaybe<Scalars['String']['input']>;\n _gt?: InputMaybe<Scalars['String']['input']>;\n _gte?: InputMaybe<Scalars['String']['input']>;\n /** does the column match the given case-insensitive pattern */\n _ilike?: InputMaybe<Scalars['String']['input']>;\n _in?: InputMaybe<Array<Scalars['String']['input']>>;\n /** does the column match the given POSIX regular expression, case insensitive */\n _iregex?: InputMaybe<Scalars['String']['input']>;\n _is_null?: InputMaybe<Scalars['Boolean']['input']>;\n /** does the column match the given pattern */\n _like?: InputMaybe<Scalars['String']['input']>;\n _lt?: InputMaybe<Scalars['String']['input']>;\n _lte?: InputMaybe<Scalars['String']['input']>;\n _neq?: InputMaybe<Scalars['String']['input']>;\n /** does the column NOT match the given case-insensitive pattern */\n _nilike?: InputMaybe<Scalars['String']['input']>;\n _nin?: InputMaybe<Array<Scalars['String']['input']>>;\n /** does the column NOT match the given POSIX regular expression, case insensitive */\n _niregex?: InputMaybe<Scalars['String']['input']>;\n /** does the column NOT match the given pattern */\n _nlike?: InputMaybe<Scalars['String']['input']>;\n /** does the column NOT match the given POSIX regular expression, case sensitive */\n _nregex?: InputMaybe<Scalars['String']['input']>;\n /** does the column NOT match the given SQL regular expression */\n _nsimilar?: InputMaybe<Scalars['String']['input']>;\n /** does the column match the given POSIX regular expression, case sensitive */\n _regex?: InputMaybe<Scalars['String']['input']>;\n /** does the column match the given SQL regular expression */\n _similar?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"account_transactions\" */\nexport type Account_Transactions = {\n __typename?: 'account_transactions';\n account_address: Scalars['String']['output'];\n /** An array relationship */\n coin_activities: Array<Coin_Activities>;\n /** An aggregate relationship */\n coin_activities_aggregate: Coin_Activities_Aggregate;\n /** An array relationship */\n delegated_staking_activities: Array<Delegated_Staking_Activities>;\n /** An array relationship */\n fungible_asset_activities: Array<Fungible_Asset_Activities>;\n /** An array relationship */\n token_activities: Array<Token_Activities>;\n /** An aggregate relationship */\n token_activities_aggregate: Token_Activities_Aggregate;\n /** An array relationship */\n token_activities_v2: Array<Token_Activities_V2>;\n /** An aggregate relationship */\n token_activities_v2_aggregate: Token_Activities_V2_Aggregate;\n transaction_version: Scalars['bigint']['output'];\n /** An object relationship */\n user_transaction?: Maybe<User_Transactions>;\n};\n\n\n/** columns and relationships of \"account_transactions\" */\nexport type Account_TransactionsCoin_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Coin_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Coin_Activities_Order_By>>;\n where?: InputMaybe<Coin_Activities_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"account_transactions\" */\nexport type Account_TransactionsCoin_Activities_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Coin_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Coin_Activities_Order_By>>;\n where?: InputMaybe<Coin_Activities_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"account_transactions\" */\nexport type Account_TransactionsDelegated_Staking_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Delegated_Staking_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Delegated_Staking_Activities_Order_By>>;\n where?: InputMaybe<Delegated_Staking_Activities_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"account_transactions\" */\nexport type Account_TransactionsFungible_Asset_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Fungible_Asset_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Fungible_Asset_Activities_Order_By>>;\n where?: InputMaybe<Fungible_Asset_Activities_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"account_transactions\" */\nexport type Account_TransactionsToken_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Token_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_Order_By>>;\n where?: InputMaybe<Token_Activities_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"account_transactions\" */\nexport type Account_TransactionsToken_Activities_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Token_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_Order_By>>;\n where?: InputMaybe<Token_Activities_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"account_transactions\" */\nexport type Account_TransactionsToken_Activities_V2Args = {\n distinct_on?: InputMaybe<Array<Token_Activities_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_V2_Order_By>>;\n where?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"account_transactions\" */\nexport type Account_TransactionsToken_Activities_V2_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Token_Activities_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_V2_Order_By>>;\n where?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n};\n\n/** aggregated selection of \"account_transactions\" */\nexport type Account_Transactions_Aggregate = {\n __typename?: 'account_transactions_aggregate';\n aggregate?: Maybe<Account_Transactions_Aggregate_Fields>;\n nodes: Array<Account_Transactions>;\n};\n\n/** aggregate fields of \"account_transactions\" */\nexport type Account_Transactions_Aggregate_Fields = {\n __typename?: 'account_transactions_aggregate_fields';\n avg?: Maybe<Account_Transactions_Avg_Fields>;\n count: Scalars['Int']['output'];\n max?: Maybe<Account_Transactions_Max_Fields>;\n min?: Maybe<Account_Transactions_Min_Fields>;\n stddev?: Maybe<Account_Transactions_Stddev_Fields>;\n stddev_pop?: Maybe<Account_Transactions_Stddev_Pop_Fields>;\n stddev_samp?: Maybe<Account_Transactions_Stddev_Samp_Fields>;\n sum?: Maybe<Account_Transactions_Sum_Fields>;\n var_pop?: Maybe<Account_Transactions_Var_Pop_Fields>;\n var_samp?: Maybe<Account_Transactions_Var_Samp_Fields>;\n variance?: Maybe<Account_Transactions_Variance_Fields>;\n};\n\n\n/** aggregate fields of \"account_transactions\" */\nexport type Account_Transactions_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Account_Transactions_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** aggregate avg on columns */\nexport type Account_Transactions_Avg_Fields = {\n __typename?: 'account_transactions_avg_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"account_transactions\". All fields are combined with a logical 'AND'. */\nexport type Account_Transactions_Bool_Exp = {\n _and?: InputMaybe<Array<Account_Transactions_Bool_Exp>>;\n _not?: InputMaybe<Account_Transactions_Bool_Exp>;\n _or?: InputMaybe<Array<Account_Transactions_Bool_Exp>>;\n account_address?: InputMaybe<String_Comparison_Exp>;\n coin_activities?: InputMaybe<Coin_Activities_Bool_Exp>;\n coin_activities_aggregate?: InputMaybe<Coin_Activities_Aggregate_Bool_Exp>;\n delegated_staking_activities?: InputMaybe<Delegated_Staking_Activities_Bool_Exp>;\n fungible_asset_activities?: InputMaybe<Fungible_Asset_Activities_Bool_Exp>;\n token_activities?: InputMaybe<Token_Activities_Bool_Exp>;\n token_activities_aggregate?: InputMaybe<Token_Activities_Aggregate_Bool_Exp>;\n token_activities_v2?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n token_activities_v2_aggregate?: InputMaybe<Token_Activities_V2_Aggregate_Bool_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n user_transaction?: InputMaybe<User_Transactions_Bool_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Account_Transactions_Max_Fields = {\n __typename?: 'account_transactions_max_fields';\n account_address?: Maybe<Scalars['String']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregate min on columns */\nexport type Account_Transactions_Min_Fields = {\n __typename?: 'account_transactions_min_fields';\n account_address?: Maybe<Scalars['String']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** Ordering options when selecting data from \"account_transactions\". */\nexport type Account_Transactions_Order_By = {\n account_address?: InputMaybe<Order_By>;\n coin_activities_aggregate?: InputMaybe<Coin_Activities_Aggregate_Order_By>;\n delegated_staking_activities_aggregate?: InputMaybe<Delegated_Staking_Activities_Aggregate_Order_By>;\n fungible_asset_activities_aggregate?: InputMaybe<Fungible_Asset_Activities_Aggregate_Order_By>;\n token_activities_aggregate?: InputMaybe<Token_Activities_Aggregate_Order_By>;\n token_activities_v2_aggregate?: InputMaybe<Token_Activities_V2_Aggregate_Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n user_transaction?: InputMaybe<User_Transactions_Order_By>;\n};\n\n/** select columns of table \"account_transactions\" */\nexport enum Account_Transactions_Select_Column {\n /** column name */\n AccountAddress = 'account_address',\n /** column name */\n TransactionVersion = 'transaction_version'\n}\n\n/** aggregate stddev on columns */\nexport type Account_Transactions_Stddev_Fields = {\n __typename?: 'account_transactions_stddev_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_pop on columns */\nexport type Account_Transactions_Stddev_Pop_Fields = {\n __typename?: 'account_transactions_stddev_pop_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_samp on columns */\nexport type Account_Transactions_Stddev_Samp_Fields = {\n __typename?: 'account_transactions_stddev_samp_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Streaming cursor of the table \"account_transactions\" */\nexport type Account_Transactions_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Account_Transactions_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Account_Transactions_Stream_Cursor_Value_Input = {\n account_address?: InputMaybe<Scalars['String']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** aggregate sum on columns */\nexport type Account_Transactions_Sum_Fields = {\n __typename?: 'account_transactions_sum_fields';\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregate var_pop on columns */\nexport type Account_Transactions_Var_Pop_Fields = {\n __typename?: 'account_transactions_var_pop_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate var_samp on columns */\nexport type Account_Transactions_Var_Samp_Fields = {\n __typename?: 'account_transactions_var_samp_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate variance on columns */\nexport type Account_Transactions_Variance_Fields = {\n __typename?: 'account_transactions_variance_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** columns and relationships of \"address_events_summary\" */\nexport type Address_Events_Summary = {\n __typename?: 'address_events_summary';\n account_address?: Maybe<Scalars['String']['output']>;\n /** An object relationship */\n block_metadata?: Maybe<Block_Metadata_Transactions>;\n min_block_height?: Maybe<Scalars['bigint']['output']>;\n num_distinct_versions?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"address_events_summary\". All fields are combined with a logical 'AND'. */\nexport type Address_Events_Summary_Bool_Exp = {\n _and?: InputMaybe<Array<Address_Events_Summary_Bool_Exp>>;\n _not?: InputMaybe<Address_Events_Summary_Bool_Exp>;\n _or?: InputMaybe<Array<Address_Events_Summary_Bool_Exp>>;\n account_address?: InputMaybe<String_Comparison_Exp>;\n block_metadata?: InputMaybe<Block_Metadata_Transactions_Bool_Exp>;\n min_block_height?: InputMaybe<Bigint_Comparison_Exp>;\n num_distinct_versions?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"address_events_summary\". */\nexport type Address_Events_Summary_Order_By = {\n account_address?: InputMaybe<Order_By>;\n block_metadata?: InputMaybe<Block_Metadata_Transactions_Order_By>;\n min_block_height?: InputMaybe<Order_By>;\n num_distinct_versions?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"address_events_summary\" */\nexport enum Address_Events_Summary_Select_Column {\n /** column name */\n AccountAddress = 'account_address',\n /** column name */\n MinBlockHeight = 'min_block_height',\n /** column name */\n NumDistinctVersions = 'num_distinct_versions'\n}\n\n/** Streaming cursor of the table \"address_events_summary\" */\nexport type Address_Events_Summary_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Address_Events_Summary_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Address_Events_Summary_Stream_Cursor_Value_Input = {\n account_address?: InputMaybe<Scalars['String']['input']>;\n min_block_height?: InputMaybe<Scalars['bigint']['input']>;\n num_distinct_versions?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** columns and relationships of \"address_version_from_events\" */\nexport type Address_Version_From_Events = {\n __typename?: 'address_version_from_events';\n account_address?: Maybe<Scalars['String']['output']>;\n /** An array relationship */\n coin_activities: Array<Coin_Activities>;\n /** An aggregate relationship */\n coin_activities_aggregate: Coin_Activities_Aggregate;\n /** An array relationship */\n delegated_staking_activities: Array<Delegated_Staking_Activities>;\n /** An array relationship */\n token_activities: Array<Token_Activities>;\n /** An aggregate relationship */\n token_activities_aggregate: Token_Activities_Aggregate;\n /** An array relationship */\n token_activities_v2: Array<Token_Activities_V2>;\n /** An aggregate relationship */\n token_activities_v2_aggregate: Token_Activities_V2_Aggregate;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n\n/** columns and relationships of \"address_version_from_events\" */\nexport type Address_Version_From_EventsCoin_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Coin_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Coin_Activities_Order_By>>;\n where?: InputMaybe<Coin_Activities_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"address_version_from_events\" */\nexport type Address_Version_From_EventsCoin_Activities_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Coin_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Coin_Activities_Order_By>>;\n where?: InputMaybe<Coin_Activities_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"address_version_from_events\" */\nexport type Address_Version_From_EventsDelegated_Staking_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Delegated_Staking_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Delegated_Staking_Activities_Order_By>>;\n where?: InputMaybe<Delegated_Staking_Activities_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"address_version_from_events\" */\nexport type Address_Version_From_EventsToken_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Token_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_Order_By>>;\n where?: InputMaybe<Token_Activities_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"address_version_from_events\" */\nexport type Address_Version_From_EventsToken_Activities_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Token_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_Order_By>>;\n where?: InputMaybe<Token_Activities_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"address_version_from_events\" */\nexport type Address_Version_From_EventsToken_Activities_V2Args = {\n distinct_on?: InputMaybe<Array<Token_Activities_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_V2_Order_By>>;\n where?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"address_version_from_events\" */\nexport type Address_Version_From_EventsToken_Activities_V2_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Token_Activities_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_V2_Order_By>>;\n where?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n};\n\n/** aggregated selection of \"address_version_from_events\" */\nexport type Address_Version_From_Events_Aggregate = {\n __typename?: 'address_version_from_events_aggregate';\n aggregate?: Maybe<Address_Version_From_Events_Aggregate_Fields>;\n nodes: Array<Address_Version_From_Events>;\n};\n\n/** aggregate fields of \"address_version_from_events\" */\nexport type Address_Version_From_Events_Aggregate_Fields = {\n __typename?: 'address_version_from_events_aggregate_fields';\n avg?: Maybe<Address_Version_From_Events_Avg_Fields>;\n count: Scalars['Int']['output'];\n max?: Maybe<Address_Version_From_Events_Max_Fields>;\n min?: Maybe<Address_Version_From_Events_Min_Fields>;\n stddev?: Maybe<Address_Version_From_Events_Stddev_Fields>;\n stddev_pop?: Maybe<Address_Version_From_Events_Stddev_Pop_Fields>;\n stddev_samp?: Maybe<Address_Version_From_Events_Stddev_Samp_Fields>;\n sum?: Maybe<Address_Version_From_Events_Sum_Fields>;\n var_pop?: Maybe<Address_Version_From_Events_Var_Pop_Fields>;\n var_samp?: Maybe<Address_Version_From_Events_Var_Samp_Fields>;\n variance?: Maybe<Address_Version_From_Events_Variance_Fields>;\n};\n\n\n/** aggregate fields of \"address_version_from_events\" */\nexport type Address_Version_From_Events_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Address_Version_From_Events_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** aggregate avg on columns */\nexport type Address_Version_From_Events_Avg_Fields = {\n __typename?: 'address_version_from_events_avg_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"address_version_from_events\". All fields are combined with a logical 'AND'. */\nexport type Address_Version_From_Events_Bool_Exp = {\n _and?: InputMaybe<Array<Address_Version_From_Events_Bool_Exp>>;\n _not?: InputMaybe<Address_Version_From_Events_Bool_Exp>;\n _or?: InputMaybe<Array<Address_Version_From_Events_Bool_Exp>>;\n account_address?: InputMaybe<String_Comparison_Exp>;\n coin_activities?: InputMaybe<Coin_Activities_Bool_Exp>;\n coin_activities_aggregate?: InputMaybe<Coin_Activities_Aggregate_Bool_Exp>;\n delegated_staking_activities?: InputMaybe<Delegated_Staking_Activities_Bool_Exp>;\n token_activities?: InputMaybe<Token_Activities_Bool_Exp>;\n token_activities_aggregate?: InputMaybe<Token_Activities_Aggregate_Bool_Exp>;\n token_activities_v2?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n token_activities_v2_aggregate?: InputMaybe<Token_Activities_V2_Aggregate_Bool_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Address_Version_From_Events_Max_Fields = {\n __typename?: 'address_version_from_events_max_fields';\n account_address?: Maybe<Scalars['String']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregate min on columns */\nexport type Address_Version_From_Events_Min_Fields = {\n __typename?: 'address_version_from_events_min_fields';\n account_address?: Maybe<Scalars['String']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** Ordering options when selecting data from \"address_version_from_events\". */\nexport type Address_Version_From_Events_Order_By = {\n account_address?: InputMaybe<Order_By>;\n coin_activities_aggregate?: InputMaybe<Coin_Activities_Aggregate_Order_By>;\n delegated_staking_activities_aggregate?: InputMaybe<Delegated_Staking_Activities_Aggregate_Order_By>;\n token_activities_aggregate?: InputMaybe<Token_Activities_Aggregate_Order_By>;\n token_activities_v2_aggregate?: InputMaybe<Token_Activities_V2_Aggregate_Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"address_version_from_events\" */\nexport enum Address_Version_From_Events_Select_Column {\n /** column name */\n AccountAddress = 'account_address',\n /** column name */\n TransactionVersion = 'transaction_version'\n}\n\n/** aggregate stddev on columns */\nexport type Address_Version_From_Events_Stddev_Fields = {\n __typename?: 'address_version_from_events_stddev_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_pop on columns */\nexport type Address_Version_From_Events_Stddev_Pop_Fields = {\n __typename?: 'address_version_from_events_stddev_pop_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_samp on columns */\nexport type Address_Version_From_Events_Stddev_Samp_Fields = {\n __typename?: 'address_version_from_events_stddev_samp_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Streaming cursor of the table \"address_version_from_events\" */\nexport type Address_Version_From_Events_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Address_Version_From_Events_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Address_Version_From_Events_Stream_Cursor_Value_Input = {\n account_address?: InputMaybe<Scalars['String']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** aggregate sum on columns */\nexport type Address_Version_From_Events_Sum_Fields = {\n __typename?: 'address_version_from_events_sum_fields';\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregate var_pop on columns */\nexport type Address_Version_From_Events_Var_Pop_Fields = {\n __typename?: 'address_version_from_events_var_pop_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate var_samp on columns */\nexport type Address_Version_From_Events_Var_Samp_Fields = {\n __typename?: 'address_version_from_events_var_samp_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate variance on columns */\nexport type Address_Version_From_Events_Variance_Fields = {\n __typename?: 'address_version_from_events_variance_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** columns and relationships of \"legacy_migration_v1.address_version_from_move_resources\" */\nexport type Address_Version_From_Move_Resources = {\n __typename?: 'address_version_from_move_resources';\n address?: Maybe<Scalars['String']['output']>;\n /** An array relationship */\n coin_activities: Array<Coin_Activities>;\n /** An aggregate relationship */\n coin_activities_aggregate: Coin_Activities_Aggregate;\n /** An array relationship */\n delegated_staking_activities: Array<Delegated_Staking_Activities>;\n /** An array relationship */\n token_activities: Array<Token_Activities>;\n /** An aggregate relationship */\n token_activities_aggregate: Token_Activities_Aggregate;\n /** An array relationship */\n token_activities_v2: Array<Token_Activities_V2>;\n /** An aggregate relationship */\n token_activities_v2_aggregate: Token_Activities_V2_Aggregate;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.address_version_from_move_resources\" */\nexport type Address_Version_From_Move_ResourcesCoin_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Coin_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Coin_Activities_Order_By>>;\n where?: InputMaybe<Coin_Activities_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.address_version_from_move_resources\" */\nexport type Address_Version_From_Move_ResourcesCoin_Activities_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Coin_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Coin_Activities_Order_By>>;\n where?: InputMaybe<Coin_Activities_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.address_version_from_move_resources\" */\nexport type Address_Version_From_Move_ResourcesDelegated_Staking_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Delegated_Staking_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Delegated_Staking_Activities_Order_By>>;\n where?: InputMaybe<Delegated_Staking_Activities_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.address_version_from_move_resources\" */\nexport type Address_Version_From_Move_ResourcesToken_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Token_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_Order_By>>;\n where?: InputMaybe<Token_Activities_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.address_version_from_move_resources\" */\nexport type Address_Version_From_Move_ResourcesToken_Activities_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Token_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_Order_By>>;\n where?: InputMaybe<Token_Activities_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.address_version_from_move_resources\" */\nexport type Address_Version_From_Move_ResourcesToken_Activities_V2Args = {\n distinct_on?: InputMaybe<Array<Token_Activities_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_V2_Order_By>>;\n where?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.address_version_from_move_resources\" */\nexport type Address_Version_From_Move_ResourcesToken_Activities_V2_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Token_Activities_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_V2_Order_By>>;\n where?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n};\n\n/** aggregated selection of \"legacy_migration_v1.address_version_from_move_resources\" */\nexport type Address_Version_From_Move_Resources_Aggregate = {\n __typename?: 'address_version_from_move_resources_aggregate';\n aggregate?: Maybe<Address_Version_From_Move_Resources_Aggregate_Fields>;\n nodes: Array<Address_Version_From_Move_Resources>;\n};\n\n/** aggregate fields of \"legacy_migration_v1.address_version_from_move_resources\" */\nexport type Address_Version_From_Move_Resources_Aggregate_Fields = {\n __typename?: 'address_version_from_move_resources_aggregate_fields';\n avg?: Maybe<Address_Version_From_Move_Resources_Avg_Fields>;\n count: Scalars['Int']['output'];\n max?: Maybe<Address_Version_From_Move_Resources_Max_Fields>;\n min?: Maybe<Address_Version_From_Move_Resources_Min_Fields>;\n stddev?: Maybe<Address_Version_From_Move_Resources_Stddev_Fields>;\n stddev_pop?: Maybe<Address_Version_From_Move_Resources_Stddev_Pop_Fields>;\n stddev_samp?: Maybe<Address_Version_From_Move_Resources_Stddev_Samp_Fields>;\n sum?: Maybe<Address_Version_From_Move_Resources_Sum_Fields>;\n var_pop?: Maybe<Address_Version_From_Move_Resources_Var_Pop_Fields>;\n var_samp?: Maybe<Address_Version_From_Move_Resources_Var_Samp_Fields>;\n variance?: Maybe<Address_Version_From_Move_Resources_Variance_Fields>;\n};\n\n\n/** aggregate fields of \"legacy_migration_v1.address_version_from_move_resources\" */\nexport type Address_Version_From_Move_Resources_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Address_Version_From_Move_Resources_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** aggregate avg on columns */\nexport type Address_Version_From_Move_Resources_Avg_Fields = {\n __typename?: 'address_version_from_move_resources_avg_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"legacy_migration_v1.address_version_from_move_resources\". All fields are combined with a logical 'AND'. */\nexport type Address_Version_From_Move_Resources_Bool_Exp = {\n _and?: InputMaybe<Array<Address_Version_From_Move_Resources_Bool_Exp>>;\n _not?: InputMaybe<Address_Version_From_Move_Resources_Bool_Exp>;\n _or?: InputMaybe<Array<Address_Version_From_Move_Resources_Bool_Exp>>;\n address?: InputMaybe<String_Comparison_Exp>;\n coin_activities?: InputMaybe<Coin_Activities_Bool_Exp>;\n coin_activities_aggregate?: InputMaybe<Coin_Activities_Aggregate_Bool_Exp>;\n delegated_staking_activities?: InputMaybe<Delegated_Staking_Activities_Bool_Exp>;\n token_activities?: InputMaybe<Token_Activities_Bool_Exp>;\n token_activities_aggregate?: InputMaybe<Token_Activities_Aggregate_Bool_Exp>;\n token_activities_v2?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n token_activities_v2_aggregate?: InputMaybe<Token_Activities_V2_Aggregate_Bool_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Address_Version_From_Move_Resources_Max_Fields = {\n __typename?: 'address_version_from_move_resources_max_fields';\n address?: Maybe<Scalars['String']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregate min on columns */\nexport type Address_Version_From_Move_Resources_Min_Fields = {\n __typename?: 'address_version_from_move_resources_min_fields';\n address?: Maybe<Scalars['String']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** Ordering options when selecting data from \"legacy_migration_v1.address_version_from_move_resources\". */\nexport type Address_Version_From_Move_Resources_Order_By = {\n address?: InputMaybe<Order_By>;\n coin_activities_aggregate?: InputMaybe<Coin_Activities_Aggregate_Order_By>;\n delegated_staking_activities_aggregate?: InputMaybe<Delegated_Staking_Activities_Aggregate_Order_By>;\n token_activities_aggregate?: InputMaybe<Token_Activities_Aggregate_Order_By>;\n token_activities_v2_aggregate?: InputMaybe<Token_Activities_V2_Aggregate_Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"legacy_migration_v1.address_version_from_move_resources\" */\nexport enum Address_Version_From_Move_Resources_Select_Column {\n /** column name */\n Address = 'address',\n /** column name */\n TransactionVersion = 'transaction_version'\n}\n\n/** aggregate stddev on columns */\nexport type Address_Version_From_Move_Resources_Stddev_Fields = {\n __typename?: 'address_version_from_move_resources_stddev_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_pop on columns */\nexport type Address_Version_From_Move_Resources_Stddev_Pop_Fields = {\n __typename?: 'address_version_from_move_resources_stddev_pop_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_samp on columns */\nexport type Address_Version_From_Move_Resources_Stddev_Samp_Fields = {\n __typename?: 'address_version_from_move_resources_stddev_samp_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Streaming cursor of the table \"address_version_from_move_resources\" */\nexport type Address_Version_From_Move_Resources_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Address_Version_From_Move_Resources_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Address_Version_From_Move_Resources_Stream_Cursor_Value_Input = {\n address?: InputMaybe<Scalars['String']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** aggregate sum on columns */\nexport type Address_Version_From_Move_Resources_Sum_Fields = {\n __typename?: 'address_version_from_move_resources_sum_fields';\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregate var_pop on columns */\nexport type Address_Version_From_Move_Resources_Var_Pop_Fields = {\n __typename?: 'address_version_from_move_resources_var_pop_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate var_samp on columns */\nexport type Address_Version_From_Move_Resources_Var_Samp_Fields = {\n __typename?: 'address_version_from_move_resources_var_samp_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate variance on columns */\nexport type Address_Version_From_Move_Resources_Variance_Fields = {\n __typename?: 'address_version_from_move_resources_variance_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** columns and relationships of \"auth_key_account_addresses\" */\nexport type Auth_Key_Account_Addresses = {\n __typename?: 'auth_key_account_addresses';\n account_address: Scalars['String']['output'];\n auth_key: Scalars['String']['output'];\n is_auth_key_used: Scalars['Boolean']['output'];\n last_transaction_version: Scalars['bigint']['output'];\n};\n\n/** aggregated selection of \"auth_key_account_addresses\" */\nexport type Auth_Key_Account_Addresses_Aggregate = {\n __typename?: 'auth_key_account_addresses_aggregate';\n aggregate?: Maybe<Auth_Key_Account_Addresses_Aggregate_Fields>;\n nodes: Array<Auth_Key_Account_Addresses>;\n};\n\n/** aggregate fields of \"auth_key_account_addresses\" */\nexport type Auth_Key_Account_Addresses_Aggregate_Fields = {\n __typename?: 'auth_key_account_addresses_aggregate_fields';\n avg?: Maybe<Auth_Key_Account_Addresses_Avg_Fields>;\n count: Scalars['Int']['output'];\n max?: Maybe<Auth_Key_Account_Addresses_Max_Fields>;\n min?: Maybe<Auth_Key_Account_Addresses_Min_Fields>;\n stddev?: Maybe<Auth_Key_Account_Addresses_Stddev_Fields>;\n stddev_pop?: Maybe<Auth_Key_Account_Addresses_Stddev_Pop_Fields>;\n stddev_samp?: Maybe<Auth_Key_Account_Addresses_Stddev_Samp_Fields>;\n sum?: Maybe<Auth_Key_Account_Addresses_Sum_Fields>;\n var_pop?: Maybe<Auth_Key_Account_Addresses_Var_Pop_Fields>;\n var_samp?: Maybe<Auth_Key_Account_Addresses_Var_Samp_Fields>;\n variance?: Maybe<Auth_Key_Account_Addresses_Variance_Fields>;\n};\n\n\n/** aggregate fields of \"auth_key_account_addresses\" */\nexport type Auth_Key_Account_Addresses_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Auth_Key_Account_Addresses_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** aggregate avg on columns */\nexport type Auth_Key_Account_Addresses_Avg_Fields = {\n __typename?: 'auth_key_account_addresses_avg_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"auth_key_account_addresses\". All fields are combined with a logical 'AND'. */\nexport type Auth_Key_Account_Addresses_Bool_Exp = {\n _and?: InputMaybe<Array<Auth_Key_Account_Addresses_Bool_Exp>>;\n _not?: InputMaybe<Auth_Key_Account_Addresses_Bool_Exp>;\n _or?: InputMaybe<Array<Auth_Key_Account_Addresses_Bool_Exp>>;\n account_address?: InputMaybe<String_Comparison_Exp>;\n auth_key?: InputMaybe<String_Comparison_Exp>;\n is_auth_key_used?: InputMaybe<Boolean_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Auth_Key_Account_Addresses_Max_Fields = {\n __typename?: 'auth_key_account_addresses_max_fields';\n account_address?: Maybe<Scalars['String']['output']>;\n auth_key?: Maybe<Scalars['String']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregate min on columns */\nexport type Auth_Key_Account_Addresses_Min_Fields = {\n __typename?: 'auth_key_account_addresses_min_fields';\n account_address?: Maybe<Scalars['String']['output']>;\n auth_key?: Maybe<Scalars['String']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** Ordering options when selecting data from \"auth_key_account_addresses\". */\nexport type Auth_Key_Account_Addresses_Order_By = {\n account_address?: InputMaybe<Order_By>;\n auth_key?: InputMaybe<Order_By>;\n is_auth_key_used?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"auth_key_account_addresses\" */\nexport enum Auth_Key_Account_Addresses_Select_Column {\n /** column name */\n AccountAddress = 'account_address',\n /** column name */\n AuthKey = 'auth_key',\n /** column name */\n IsAuthKeyUsed = 'is_auth_key_used',\n /** column name */\n LastTransactionVersion = 'last_transaction_version'\n}\n\n/** aggregate stddev on columns */\nexport type Auth_Key_Account_Addresses_Stddev_Fields = {\n __typename?: 'auth_key_account_addresses_stddev_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_pop on columns */\nexport type Auth_Key_Account_Addresses_Stddev_Pop_Fields = {\n __typename?: 'auth_key_account_addresses_stddev_pop_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_samp on columns */\nexport type Auth_Key_Account_Addresses_Stddev_Samp_Fields = {\n __typename?: 'auth_key_account_addresses_stddev_samp_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Streaming cursor of the table \"auth_key_account_addresses\" */\nexport type Auth_Key_Account_Addresses_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Auth_Key_Account_Addresses_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Auth_Key_Account_Addresses_Stream_Cursor_Value_Input = {\n account_address?: InputMaybe<Scalars['String']['input']>;\n auth_key?: InputMaybe<Scalars['String']['input']>;\n is_auth_key_used?: InputMaybe<Scalars['Boolean']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** aggregate sum on columns */\nexport type Auth_Key_Account_Addresses_Sum_Fields = {\n __typename?: 'auth_key_account_addresses_sum_fields';\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregate var_pop on columns */\nexport type Auth_Key_Account_Addresses_Var_Pop_Fields = {\n __typename?: 'auth_key_account_addresses_var_pop_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate var_samp on columns */\nexport type Auth_Key_Account_Addresses_Var_Samp_Fields = {\n __typename?: 'auth_key_account_addresses_var_samp_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate variance on columns */\nexport type Auth_Key_Account_Addresses_Variance_Fields = {\n __typename?: 'auth_key_account_addresses_variance_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Boolean expression to compare columns of type \"bigint\". All fields are combined with logical 'AND'. */\nexport type Bigint_Comparison_Exp = {\n _eq?: InputMaybe<Scalars['bigint']['input']>;\n _gt?: InputMaybe<Scalars['bigint']['input']>;\n _gte?: InputMaybe<Scalars['bigint']['input']>;\n _in?: InputMaybe<Array<Scalars['bigint']['input']>>;\n _is_null?: InputMaybe<Scalars['Boolean']['input']>;\n _lt?: InputMaybe<Scalars['bigint']['input']>;\n _lte?: InputMaybe<Scalars['bigint']['input']>;\n _neq?: InputMaybe<Scalars['bigint']['input']>;\n _nin?: InputMaybe<Array<Scalars['bigint']['input']>>;\n};\n\n/** columns and relationships of \"block_metadata_transactions\" */\nexport type Block_Metadata_Transactions = {\n __typename?: 'block_metadata_transactions';\n block_height: Scalars['bigint']['output'];\n epoch: Scalars['bigint']['output'];\n failed_proposer_indices: Scalars['jsonb']['output'];\n id: Scalars['String']['output'];\n previous_block_votes_bitvec: Scalars['jsonb']['output'];\n proposer: Scalars['String']['output'];\n round: Scalars['bigint']['output'];\n timestamp: Scalars['timestamp']['output'];\n version: Scalars['bigint']['output'];\n};\n\n\n/** columns and relationships of \"block_metadata_transactions\" */\nexport type Block_Metadata_TransactionsFailed_Proposer_IndicesArgs = {\n path?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** columns and relationships of \"block_metadata_transactions\" */\nexport type Block_Metadata_TransactionsPrevious_Block_Votes_BitvecArgs = {\n path?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Boolean expression to filter rows from the table \"block_metadata_transactions\". All fields are combined with a logical 'AND'. */\nexport type Block_Metadata_Transactions_Bool_Exp = {\n _and?: InputMaybe<Array<Block_Metadata_Transactions_Bool_Exp>>;\n _not?: InputMaybe<Block_Metadata_Transactions_Bool_Exp>;\n _or?: InputMaybe<Array<Block_Metadata_Transactions_Bool_Exp>>;\n block_height?: InputMaybe<Bigint_Comparison_Exp>;\n epoch?: InputMaybe<Bigint_Comparison_Exp>;\n failed_proposer_indices?: InputMaybe<Jsonb_Comparison_Exp>;\n id?: InputMaybe<String_Comparison_Exp>;\n previous_block_votes_bitvec?: InputMaybe<Jsonb_Comparison_Exp>;\n proposer?: InputMaybe<String_Comparison_Exp>;\n round?: InputMaybe<Bigint_Comparison_Exp>;\n timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n version?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"block_metadata_transactions\". */\nexport type Block_Metadata_Transactions_Order_By = {\n block_height?: InputMaybe<Order_By>;\n epoch?: InputMaybe<Order_By>;\n failed_proposer_indices?: InputMaybe<Order_By>;\n id?: InputMaybe<Order_By>;\n previous_block_votes_bitvec?: InputMaybe<Order_By>;\n proposer?: InputMaybe<Order_By>;\n round?: InputMaybe<Order_By>;\n timestamp?: InputMaybe<Order_By>;\n version?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"block_metadata_transactions\" */\nexport enum Block_Metadata_Transactions_Select_Column {\n /** column name */\n BlockHeight = 'block_height',\n /** column name */\n Epoch = 'epoch',\n /** column name */\n FailedProposerIndices = 'failed_proposer_indices',\n /** column name */\n Id = 'id',\n /** column name */\n PreviousBlockVotesBitvec = 'previous_block_votes_bitvec',\n /** column name */\n Proposer = 'proposer',\n /** column name */\n Round = 'round',\n /** column name */\n Timestamp = 'timestamp',\n /** column name */\n Version = 'version'\n}\n\n/** Streaming cursor of the table \"block_metadata_transactions\" */\nexport type Block_Metadata_Transactions_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Block_Metadata_Transactions_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Block_Metadata_Transactions_Stream_Cursor_Value_Input = {\n block_height?: InputMaybe<Scalars['bigint']['input']>;\n epoch?: InputMaybe<Scalars['bigint']['input']>;\n failed_proposer_indices?: InputMaybe<Scalars['jsonb']['input']>;\n id?: InputMaybe<Scalars['String']['input']>;\n previous_block_votes_bitvec?: InputMaybe<Scalars['jsonb']['input']>;\n proposer?: InputMaybe<Scalars['String']['input']>;\n round?: InputMaybe<Scalars['bigint']['input']>;\n timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n version?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** columns and relationships of \"legacy_migration_v1.coin_activities\" */\nexport type Coin_Activities = {\n __typename?: 'coin_activities';\n activity_type?: Maybe<Scalars['String']['output']>;\n amount?: Maybe<Scalars['numeric']['output']>;\n /** An array relationship */\n aptos_names: Array<Current_Aptos_Names>;\n /** An aggregate relationship */\n aptos_names_aggregate: Current_Aptos_Names_Aggregate;\n block_height?: Maybe<Scalars['bigint']['output']>;\n /** An object relationship */\n coin_info?: Maybe<Coin_Infos>;\n coin_type?: Maybe<Scalars['String']['output']>;\n entry_function_id_str?: Maybe<Scalars['String']['output']>;\n event_account_address?: Maybe<Scalars['String']['output']>;\n event_creation_number?: Maybe<Scalars['Int']['output']>;\n event_index?: Maybe<Scalars['bigint']['output']>;\n event_sequence_number?: Maybe<Scalars['Int']['output']>;\n is_gas_fee?: Maybe<Scalars['Boolean']['output']>;\n is_transaction_success?: Maybe<Scalars['Boolean']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n storage_refund_amount?: Maybe<Scalars['numeric']['output']>;\n transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.coin_activities\" */\nexport type Coin_ActivitiesAptos_NamesArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.coin_activities\" */\nexport type Coin_ActivitiesAptos_Names_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n/** aggregated selection of \"legacy_migration_v1.coin_activities\" */\nexport type Coin_Activities_Aggregate = {\n __typename?: 'coin_activities_aggregate';\n aggregate?: Maybe<Coin_Activities_Aggregate_Fields>;\n nodes: Array<Coin_Activities>;\n};\n\nexport type Coin_Activities_Aggregate_Bool_Exp = {\n bool_and?: InputMaybe<Coin_Activities_Aggregate_Bool_Exp_Bool_And>;\n bool_or?: InputMaybe<Coin_Activities_Aggregate_Bool_Exp_Bool_Or>;\n count?: InputMaybe<Coin_Activities_Aggregate_Bool_Exp_Count>;\n};\n\nexport type Coin_Activities_Aggregate_Bool_Exp_Bool_And = {\n arguments: Coin_Activities_Select_Column_Coin_Activities_Aggregate_Bool_Exp_Bool_And_Arguments_Columns;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n filter?: InputMaybe<Coin_Activities_Bool_Exp>;\n predicate: Boolean_Comparison_Exp;\n};\n\nexport type Coin_Activities_Aggregate_Bool_Exp_Bool_Or = {\n arguments: Coin_Activities_Select_Column_Coin_Activities_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n filter?: InputMaybe<Coin_Activities_Bool_Exp>;\n predicate: Boolean_Comparison_Exp;\n};\n\nexport type Coin_Activities_Aggregate_Bool_Exp_Count = {\n arguments?: InputMaybe<Array<Coin_Activities_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n filter?: InputMaybe<Coin_Activities_Bool_Exp>;\n predicate: Int_Comparison_Exp;\n};\n\n/** aggregate fields of \"legacy_migration_v1.coin_activities\" */\nexport type Coin_Activities_Aggregate_Fields = {\n __typename?: 'coin_activities_aggregate_fields';\n avg?: Maybe<Coin_Activities_Avg_Fields>;\n count: Scalars['Int']['output'];\n max?: Maybe<Coin_Activities_Max_Fields>;\n min?: Maybe<Coin_Activities_Min_Fields>;\n stddev?: Maybe<Coin_Activities_Stddev_Fields>;\n stddev_pop?: Maybe<Coin_Activities_Stddev_Pop_Fields>;\n stddev_samp?: Maybe<Coin_Activities_Stddev_Samp_Fields>;\n sum?: Maybe<Coin_Activities_Sum_Fields>;\n var_pop?: Maybe<Coin_Activities_Var_Pop_Fields>;\n var_samp?: Maybe<Coin_Activities_Var_Samp_Fields>;\n variance?: Maybe<Coin_Activities_Variance_Fields>;\n};\n\n\n/** aggregate fields of \"legacy_migration_v1.coin_activities\" */\nexport type Coin_Activities_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Coin_Activities_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** order by aggregate values of table \"legacy_migration_v1.coin_activities\" */\nexport type Coin_Activities_Aggregate_Order_By = {\n avg?: InputMaybe<Coin_Activities_Avg_Order_By>;\n count?: InputMaybe<Order_By>;\n max?: InputMaybe<Coin_Activities_Max_Order_By>;\n min?: InputMaybe<Coin_Activities_Min_Order_By>;\n stddev?: InputMaybe<Coin_Activities_Stddev_Order_By>;\n stddev_pop?: InputMaybe<Coin_Activities_Stddev_Pop_Order_By>;\n stddev_samp?: InputMaybe<Coin_Activities_Stddev_Samp_Order_By>;\n sum?: InputMaybe<Coin_Activities_Sum_Order_By>;\n var_pop?: InputMaybe<Coin_Activities_Var_Pop_Order_By>;\n var_samp?: InputMaybe<Coin_Activities_Var_Samp_Order_By>;\n variance?: InputMaybe<Coin_Activities_Variance_Order_By>;\n};\n\n/** aggregate avg on columns */\nexport type Coin_Activities_Avg_Fields = {\n __typename?: 'coin_activities_avg_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n block_height?: Maybe<Scalars['Float']['output']>;\n event_creation_number?: Maybe<Scalars['Float']['output']>;\n event_index?: Maybe<Scalars['Float']['output']>;\n event_sequence_number?: Maybe<Scalars['Float']['output']>;\n storage_refund_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by avg() on columns of table \"legacy_migration_v1.coin_activities\" */\nexport type Coin_Activities_Avg_Order_By = {\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** Boolean expression to filter rows from the table \"legacy_migration_v1.coin_activities\". All fields are combined with a logical 'AND'. */\nexport type Coin_Activities_Bool_Exp = {\n _and?: InputMaybe<Array<Coin_Activities_Bool_Exp>>;\n _not?: InputMaybe<Coin_Activities_Bool_Exp>;\n _or?: InputMaybe<Array<Coin_Activities_Bool_Exp>>;\n activity_type?: InputMaybe<String_Comparison_Exp>;\n amount?: InputMaybe<Numeric_Comparison_Exp>;\n aptos_names?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n aptos_names_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Bool_Exp>;\n block_height?: InputMaybe<Bigint_Comparison_Exp>;\n coin_info?: InputMaybe<Coin_Infos_Bool_Exp>;\n coin_type?: InputMaybe<String_Comparison_Exp>;\n entry_function_id_str?: InputMaybe<String_Comparison_Exp>;\n event_account_address?: InputMaybe<String_Comparison_Exp>;\n event_creation_number?: InputMaybe<Int_Comparison_Exp>;\n event_index?: InputMaybe<Bigint_Comparison_Exp>;\n event_sequence_number?: InputMaybe<Int_Comparison_Exp>;\n is_gas_fee?: InputMaybe<Boolean_Comparison_Exp>;\n is_transaction_success?: InputMaybe<Boolean_Comparison_Exp>;\n owner_address?: InputMaybe<String_Comparison_Exp>;\n storage_refund_amount?: InputMaybe<Numeric_Comparison_Exp>;\n transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Coin_Activities_Max_Fields = {\n __typename?: 'coin_activities_max_fields';\n activity_type?: Maybe<Scalars['String']['output']>;\n amount?: Maybe<Scalars['numeric']['output']>;\n block_height?: Maybe<Scalars['bigint']['output']>;\n coin_type?: Maybe<Scalars['String']['output']>;\n entry_function_id_str?: Maybe<Scalars['String']['output']>;\n event_account_address?: Maybe<Scalars['String']['output']>;\n event_creation_number?: Maybe<Scalars['Int']['output']>;\n event_index?: Maybe<Scalars['bigint']['output']>;\n event_sequence_number?: Maybe<Scalars['Int']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n storage_refund_amount?: Maybe<Scalars['numeric']['output']>;\n transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** order by max() on columns of table \"legacy_migration_v1.coin_activities\" */\nexport type Coin_Activities_Max_Order_By = {\n activity_type?: InputMaybe<Order_By>;\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n coin_type?: InputMaybe<Order_By>;\n entry_function_id_str?: InputMaybe<Order_By>;\n event_account_address?: InputMaybe<Order_By>;\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate min on columns */\nexport type Coin_Activities_Min_Fields = {\n __typename?: 'coin_activities_min_fields';\n activity_type?: Maybe<Scalars['String']['output']>;\n amount?: Maybe<Scalars['numeric']['output']>;\n block_height?: Maybe<Scalars['bigint']['output']>;\n coin_type?: Maybe<Scalars['String']['output']>;\n entry_function_id_str?: Maybe<Scalars['String']['output']>;\n event_account_address?: Maybe<Scalars['String']['output']>;\n event_creation_number?: Maybe<Scalars['Int']['output']>;\n event_index?: Maybe<Scalars['bigint']['output']>;\n event_sequence_number?: Maybe<Scalars['Int']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n storage_refund_amount?: Maybe<Scalars['numeric']['output']>;\n transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** order by min() on columns of table \"legacy_migration_v1.coin_activities\" */\nexport type Coin_Activities_Min_Order_By = {\n activity_type?: InputMaybe<Order_By>;\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n coin_type?: InputMaybe<Order_By>;\n entry_function_id_str?: InputMaybe<Order_By>;\n event_account_address?: InputMaybe<Order_By>;\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** Ordering options when selecting data from \"legacy_migration_v1.coin_activities\". */\nexport type Coin_Activities_Order_By = {\n activity_type?: InputMaybe<Order_By>;\n amount?: InputMaybe<Order_By>;\n aptos_names_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Order_By>;\n block_height?: InputMaybe<Order_By>;\n coin_info?: InputMaybe<Coin_Infos_Order_By>;\n coin_type?: InputMaybe<Order_By>;\n entry_function_id_str?: InputMaybe<Order_By>;\n event_account_address?: InputMaybe<Order_By>;\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n is_gas_fee?: InputMaybe<Order_By>;\n is_transaction_success?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"legacy_migration_v1.coin_activities\" */\nexport enum Coin_Activities_Select_Column {\n /** column name */\n ActivityType = 'activity_type',\n /** column name */\n Amount = 'amount',\n /** column name */\n BlockHeight = 'block_height',\n /** column name */\n CoinType = 'coin_type',\n /** column name */\n EntryFunctionIdStr = 'entry_function_id_str',\n /** column name */\n EventAccountAddress = 'event_account_address',\n /** column name */\n EventCreationNumber = 'event_creation_number',\n /** column name */\n EventIndex = 'event_index',\n /** column name */\n EventSequenceNumber = 'event_sequence_number',\n /** column name */\n IsGasFee = 'is_gas_fee',\n /** column name */\n IsTransactionSuccess = 'is_transaction_success',\n /** column name */\n OwnerAddress = 'owner_address',\n /** column name */\n StorageRefundAmount = 'storage_refund_amount',\n /** column name */\n TransactionTimestamp = 'transaction_timestamp',\n /** column name */\n TransactionVersion = 'transaction_version'\n}\n\n/** select \"coin_activities_aggregate_bool_exp_bool_and_arguments_columns\" columns of table \"legacy_migration_v1.coin_activities\" */\nexport enum Coin_Activities_Select_Column_Coin_Activities_Aggregate_Bool_Exp_Bool_And_Arguments_Columns {\n /** column name */\n IsGasFee = 'is_gas_fee',\n /** column name */\n IsTransactionSuccess = 'is_transaction_success'\n}\n\n/** select \"coin_activities_aggregate_bool_exp_bool_or_arguments_columns\" columns of table \"legacy_migration_v1.coin_activities\" */\nexport enum Coin_Activities_Select_Column_Coin_Activities_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns {\n /** column name */\n IsGasFee = 'is_gas_fee',\n /** column name */\n IsTransactionSuccess = 'is_transaction_success'\n}\n\n/** aggregate stddev on columns */\nexport type Coin_Activities_Stddev_Fields = {\n __typename?: 'coin_activities_stddev_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n block_height?: Maybe<Scalars['Float']['output']>;\n event_creation_number?: Maybe<Scalars['Float']['output']>;\n event_index?: Maybe<Scalars['Float']['output']>;\n event_sequence_number?: Maybe<Scalars['Float']['output']>;\n storage_refund_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev() on columns of table \"legacy_migration_v1.coin_activities\" */\nexport type Coin_Activities_Stddev_Order_By = {\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate stddev_pop on columns */\nexport type Coin_Activities_Stddev_Pop_Fields = {\n __typename?: 'coin_activities_stddev_pop_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n block_height?: Maybe<Scalars['Float']['output']>;\n event_creation_number?: Maybe<Scalars['Float']['output']>;\n event_index?: Maybe<Scalars['Float']['output']>;\n event_sequence_number?: Maybe<Scalars['Float']['output']>;\n storage_refund_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev_pop() on columns of table \"legacy_migration_v1.coin_activities\" */\nexport type Coin_Activities_Stddev_Pop_Order_By = {\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate stddev_samp on columns */\nexport type Coin_Activities_Stddev_Samp_Fields = {\n __typename?: 'coin_activities_stddev_samp_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n block_height?: Maybe<Scalars['Float']['output']>;\n event_creation_number?: Maybe<Scalars['Float']['output']>;\n event_index?: Maybe<Scalars['Float']['output']>;\n event_sequence_number?: Maybe<Scalars['Float']['output']>;\n storage_refund_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev_samp() on columns of table \"legacy_migration_v1.coin_activities\" */\nexport type Coin_Activities_Stddev_Samp_Order_By = {\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** Streaming cursor of the table \"coin_activities\" */\nexport type Coin_Activities_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Coin_Activities_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Coin_Activities_Stream_Cursor_Value_Input = {\n activity_type?: InputMaybe<Scalars['String']['input']>;\n amount?: InputMaybe<Scalars['numeric']['input']>;\n block_height?: InputMaybe<Scalars['bigint']['input']>;\n coin_type?: InputMaybe<Scalars['String']['input']>;\n entry_function_id_str?: InputMaybe<Scalars['String']['input']>;\n event_account_address?: InputMaybe<Scalars['String']['input']>;\n event_creation_number?: InputMaybe<Scalars['Int']['input']>;\n event_index?: InputMaybe<Scalars['bigint']['input']>;\n event_sequence_number?: InputMaybe<Scalars['Int']['input']>;\n is_gas_fee?: InputMaybe<Scalars['Boolean']['input']>;\n is_transaction_success?: InputMaybe<Scalars['Boolean']['input']>;\n owner_address?: InputMaybe<Scalars['String']['input']>;\n storage_refund_amount?: InputMaybe<Scalars['numeric']['input']>;\n transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** aggregate sum on columns */\nexport type Coin_Activities_Sum_Fields = {\n __typename?: 'coin_activities_sum_fields';\n amount?: Maybe<Scalars['numeric']['output']>;\n block_height?: Maybe<Scalars['bigint']['output']>;\n event_creation_number?: Maybe<Scalars['Int']['output']>;\n event_index?: Maybe<Scalars['bigint']['output']>;\n event_sequence_number?: Maybe<Scalars['Int']['output']>;\n storage_refund_amount?: Maybe<Scalars['numeric']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** order by sum() on columns of table \"legacy_migration_v1.coin_activities\" */\nexport type Coin_Activities_Sum_Order_By = {\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate var_pop on columns */\nexport type Coin_Activities_Var_Pop_Fields = {\n __typename?: 'coin_activities_var_pop_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n block_height?: Maybe<Scalars['Float']['output']>;\n event_creation_number?: Maybe<Scalars['Float']['output']>;\n event_index?: Maybe<Scalars['Float']['output']>;\n event_sequence_number?: Maybe<Scalars['Float']['output']>;\n storage_refund_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by var_pop() on columns of table \"legacy_migration_v1.coin_activities\" */\nexport type Coin_Activities_Var_Pop_Order_By = {\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate var_samp on columns */\nexport type Coin_Activities_Var_Samp_Fields = {\n __typename?: 'coin_activities_var_samp_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n block_height?: Maybe<Scalars['Float']['output']>;\n event_creation_number?: Maybe<Scalars['Float']['output']>;\n event_index?: Maybe<Scalars['Float']['output']>;\n event_sequence_number?: Maybe<Scalars['Float']['output']>;\n storage_refund_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by var_samp() on columns of table \"legacy_migration_v1.coin_activities\" */\nexport type Coin_Activities_Var_Samp_Order_By = {\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate variance on columns */\nexport type Coin_Activities_Variance_Fields = {\n __typename?: 'coin_activities_variance_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n block_height?: Maybe<Scalars['Float']['output']>;\n event_creation_number?: Maybe<Scalars['Float']['output']>;\n event_index?: Maybe<Scalars['Float']['output']>;\n event_sequence_number?: Maybe<Scalars['Float']['output']>;\n storage_refund_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by variance() on columns of table \"legacy_migration_v1.coin_activities\" */\nexport type Coin_Activities_Variance_Order_By = {\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** columns and relationships of \"legacy_migration_v1.coin_balances\" */\nexport type Coin_Balances = {\n __typename?: 'coin_balances';\n amount?: Maybe<Scalars['numeric']['output']>;\n coin_type?: Maybe<Scalars['String']['output']>;\n coin_type_hash?: Maybe<Scalars['String']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"legacy_migration_v1.coin_balances\". All fields are combined with a logical 'AND'. */\nexport type Coin_Balances_Bool_Exp = {\n _and?: InputMaybe<Array<Coin_Balances_Bool_Exp>>;\n _not?: InputMaybe<Coin_Balances_Bool_Exp>;\n _or?: InputMaybe<Array<Coin_Balances_Bool_Exp>>;\n amount?: InputMaybe<Numeric_Comparison_Exp>;\n coin_type?: InputMaybe<String_Comparison_Exp>;\n coin_type_hash?: InputMaybe<String_Comparison_Exp>;\n owner_address?: InputMaybe<String_Comparison_Exp>;\n transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"legacy_migration_v1.coin_balances\". */\nexport type Coin_Balances_Order_By = {\n amount?: InputMaybe<Order_By>;\n coin_type?: InputMaybe<Order_By>;\n coin_type_hash?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"legacy_migration_v1.coin_balances\" */\nexport enum Coin_Balances_Select_Column {\n /** column name */\n Amount = 'amount',\n /** column name */\n CoinType = 'coin_type',\n /** column name */\n CoinTypeHash = 'coin_type_hash',\n /** column name */\n OwnerAddress = 'owner_address',\n /** column name */\n TransactionTimestamp = 'transaction_timestamp',\n /** column name */\n TransactionVersion = 'transaction_version'\n}\n\n/** Streaming cursor of the table \"coin_balances\" */\nexport type Coin_Balances_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Coin_Balances_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Coin_Balances_Stream_Cursor_Value_Input = {\n amount?: InputMaybe<Scalars['numeric']['input']>;\n coin_type?: InputMaybe<Scalars['String']['input']>;\n coin_type_hash?: InputMaybe<Scalars['String']['input']>;\n owner_address?: InputMaybe<Scalars['String']['input']>;\n transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** columns and relationships of \"legacy_migration_v1.coin_infos\" */\nexport type Coin_Infos = {\n __typename?: 'coin_infos';\n coin_type?: Maybe<Scalars['String']['output']>;\n coin_type_hash?: Maybe<Scalars['String']['output']>;\n creator_address?: Maybe<Scalars['String']['output']>;\n decimals?: Maybe<Scalars['Int']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n supply_aggregator_table_handle?: Maybe<Scalars['String']['output']>;\n supply_aggregator_table_key?: Maybe<Scalars['String']['output']>;\n symbol?: Maybe<Scalars['String']['output']>;\n transaction_created_timestamp?: Maybe<Scalars['timestamp']['output']>;\n transaction_version_created?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"legacy_migration_v1.coin_infos\". All fields are combined with a logical 'AND'. */\nexport type Coin_Infos_Bool_Exp = {\n _and?: InputMaybe<Array<Coin_Infos_Bool_Exp>>;\n _not?: InputMaybe<Coin_Infos_Bool_Exp>;\n _or?: InputMaybe<Array<Coin_Infos_Bool_Exp>>;\n coin_type?: InputMaybe<String_Comparison_Exp>;\n coin_type_hash?: InputMaybe<String_Comparison_Exp>;\n creator_address?: InputMaybe<String_Comparison_Exp>;\n decimals?: InputMaybe<Int_Comparison_Exp>;\n name?: InputMaybe<String_Comparison_Exp>;\n supply_aggregator_table_handle?: InputMaybe<String_Comparison_Exp>;\n supply_aggregator_table_key?: InputMaybe<String_Comparison_Exp>;\n symbol?: InputMaybe<String_Comparison_Exp>;\n transaction_created_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n transaction_version_created?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"legacy_migration_v1.coin_infos\". */\nexport type Coin_Infos_Order_By = {\n coin_type?: InputMaybe<Order_By>;\n coin_type_hash?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n decimals?: InputMaybe<Order_By>;\n name?: InputMaybe<Order_By>;\n supply_aggregator_table_handle?: InputMaybe<Order_By>;\n supply_aggregator_table_key?: InputMaybe<Order_By>;\n symbol?: InputMaybe<Order_By>;\n transaction_created_timestamp?: InputMaybe<Order_By>;\n transaction_version_created?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"legacy_migration_v1.coin_infos\" */\nexport enum Coin_Infos_Select_Column {\n /** column name */\n CoinType = 'coin_type',\n /** column name */\n CoinTypeHash = 'coin_type_hash',\n /** column name */\n CreatorAddress = 'creator_address',\n /** column name */\n Decimals = 'decimals',\n /** column name */\n Name = 'name',\n /** column name */\n SupplyAggregatorTableHandle = 'supply_aggregator_table_handle',\n /** column name */\n SupplyAggregatorTableKey = 'supply_aggregator_table_key',\n /** column name */\n Symbol = 'symbol',\n /** column name */\n TransactionCreatedTimestamp = 'transaction_created_timestamp',\n /** column name */\n TransactionVersionCreated = 'transaction_version_created'\n}\n\n/** Streaming cursor of the table \"coin_infos\" */\nexport type Coin_Infos_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Coin_Infos_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Coin_Infos_Stream_Cursor_Value_Input = {\n coin_type?: InputMaybe<Scalars['String']['input']>;\n coin_type_hash?: InputMaybe<Scalars['String']['input']>;\n creator_address?: InputMaybe<Scalars['String']['input']>;\n decimals?: InputMaybe<Scalars['Int']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n supply_aggregator_table_handle?: InputMaybe<Scalars['String']['input']>;\n supply_aggregator_table_key?: InputMaybe<Scalars['String']['input']>;\n symbol?: InputMaybe<Scalars['String']['input']>;\n transaction_created_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n transaction_version_created?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** columns and relationships of \"coin_supply\" */\nexport type Coin_Supply = {\n __typename?: 'coin_supply';\n coin_type: Scalars['String']['output'];\n coin_type_hash: Scalars['String']['output'];\n supply: Scalars['numeric']['output'];\n transaction_epoch: Scalars['bigint']['output'];\n transaction_timestamp: Scalars['timestamp']['output'];\n transaction_version: Scalars['bigint']['output'];\n};\n\n/** Boolean expression to filter rows from the table \"coin_supply\". All fields are combined with a logical 'AND'. */\nexport type Coin_Supply_Bool_Exp = {\n _and?: InputMaybe<Array<Coin_Supply_Bool_Exp>>;\n _not?: InputMaybe<Coin_Supply_Bool_Exp>;\n _or?: InputMaybe<Array<Coin_Supply_Bool_Exp>>;\n coin_type?: InputMaybe<String_Comparison_Exp>;\n coin_type_hash?: InputMaybe<String_Comparison_Exp>;\n supply?: InputMaybe<Numeric_Comparison_Exp>;\n transaction_epoch?: InputMaybe<Bigint_Comparison_Exp>;\n transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"coin_supply\". */\nexport type Coin_Supply_Order_By = {\n coin_type?: InputMaybe<Order_By>;\n coin_type_hash?: InputMaybe<Order_By>;\n supply?: InputMaybe<Order_By>;\n transaction_epoch?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"coin_supply\" */\nexport enum Coin_Supply_Select_Column {\n /** column name */\n CoinType = 'coin_type',\n /** column name */\n CoinTypeHash = 'coin_type_hash',\n /** column name */\n Supply = 'supply',\n /** column name */\n TransactionEpoch = 'transaction_epoch',\n /** column name */\n TransactionTimestamp = 'transaction_timestamp',\n /** column name */\n TransactionVersion = 'transaction_version'\n}\n\n/** Streaming cursor of the table \"coin_supply\" */\nexport type Coin_Supply_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Coin_Supply_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Coin_Supply_Stream_Cursor_Value_Input = {\n coin_type?: InputMaybe<Scalars['String']['input']>;\n coin_type_hash?: InputMaybe<Scalars['String']['input']>;\n supply?: InputMaybe<Scalars['numeric']['input']>;\n transaction_epoch?: InputMaybe<Scalars['bigint']['input']>;\n transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** columns and relationships of \"legacy_migration_v1.collection_datas\" */\nexport type Collection_Datas = {\n __typename?: 'collection_datas';\n collection_data_id_hash?: Maybe<Scalars['String']['output']>;\n collection_name?: Maybe<Scalars['String']['output']>;\n creator_address?: Maybe<Scalars['String']['output']>;\n description?: Maybe<Scalars['String']['output']>;\n description_mutable?: Maybe<Scalars['Boolean']['output']>;\n maximum?: Maybe<Scalars['numeric']['output']>;\n maximum_mutable?: Maybe<Scalars['Boolean']['output']>;\n metadata_uri?: Maybe<Scalars['String']['output']>;\n supply?: Maybe<Scalars['numeric']['output']>;\n table_handle?: Maybe<Scalars['String']['output']>;\n transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n uri_mutable?: Maybe<Scalars['Boolean']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"legacy_migration_v1.collection_datas\". All fields are combined with a logical 'AND'. */\nexport type Collection_Datas_Bool_Exp = {\n _and?: InputMaybe<Array<Collection_Datas_Bool_Exp>>;\n _not?: InputMaybe<Collection_Datas_Bool_Exp>;\n _or?: InputMaybe<Array<Collection_Datas_Bool_Exp>>;\n collection_data_id_hash?: InputMaybe<String_Comparison_Exp>;\n collection_name?: InputMaybe<String_Comparison_Exp>;\n creator_address?: InputMaybe<String_Comparison_Exp>;\n description?: InputMaybe<String_Comparison_Exp>;\n description_mutable?: InputMaybe<Boolean_Comparison_Exp>;\n maximum?: InputMaybe<Numeric_Comparison_Exp>;\n maximum_mutable?: InputMaybe<Boolean_Comparison_Exp>;\n metadata_uri?: InputMaybe<String_Comparison_Exp>;\n supply?: InputMaybe<Numeric_Comparison_Exp>;\n table_handle?: InputMaybe<String_Comparison_Exp>;\n transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n uri_mutable?: InputMaybe<Boolean_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"legacy_migration_v1.collection_datas\". */\nexport type Collection_Datas_Order_By = {\n collection_data_id_hash?: InputMaybe<Order_By>;\n collection_name?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n description?: InputMaybe<Order_By>;\n description_mutable?: InputMaybe<Order_By>;\n maximum?: InputMaybe<Order_By>;\n maximum_mutable?: InputMaybe<Order_By>;\n metadata_uri?: InputMaybe<Order_By>;\n supply?: InputMaybe<Order_By>;\n table_handle?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n uri_mutable?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"legacy_migration_v1.collection_datas\" */\nexport enum Collection_Datas_Select_Column {\n /** column name */\n CollectionDataIdHash = 'collection_data_id_hash',\n /** column name */\n CollectionName = 'collection_name',\n /** column name */\n CreatorAddress = 'creator_address',\n /** column name */\n Description = 'description',\n /** column name */\n DescriptionMutable = 'description_mutable',\n /** column name */\n Maximum = 'maximum',\n /** column name */\n MaximumMutable = 'maximum_mutable',\n /** column name */\n MetadataUri = 'metadata_uri',\n /** column name */\n Supply = 'supply',\n /** column name */\n TableHandle = 'table_handle',\n /** column name */\n TransactionTimestamp = 'transaction_timestamp',\n /** column name */\n TransactionVersion = 'transaction_version',\n /** column name */\n UriMutable = 'uri_mutable'\n}\n\n/** Streaming cursor of the table \"collection_datas\" */\nexport type Collection_Datas_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Collection_Datas_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Collection_Datas_Stream_Cursor_Value_Input = {\n collection_data_id_hash?: InputMaybe<Scalars['String']['input']>;\n collection_name?: InputMaybe<Scalars['String']['input']>;\n creator_address?: InputMaybe<Scalars['String']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n description_mutable?: InputMaybe<Scalars['Boolean']['input']>;\n maximum?: InputMaybe<Scalars['numeric']['input']>;\n maximum_mutable?: InputMaybe<Scalars['Boolean']['input']>;\n metadata_uri?: InputMaybe<Scalars['String']['input']>;\n supply?: InputMaybe<Scalars['numeric']['input']>;\n table_handle?: InputMaybe<Scalars['String']['input']>;\n transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n uri_mutable?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** columns and relationships of \"legacy_migration_v1.current_ans_lookup\" */\nexport type Current_Ans_Lookup = {\n __typename?: 'current_ans_lookup';\n /** An array relationship */\n all_token_ownerships: Array<Current_Token_Ownerships>;\n /** An aggregate relationship */\n all_token_ownerships_aggregate: Current_Token_Ownerships_Aggregate;\n domain?: Maybe<Scalars['String']['output']>;\n expiration_timestamp?: Maybe<Scalars['timestamp']['output']>;\n is_deleted?: Maybe<Scalars['Boolean']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n registered_address?: Maybe<Scalars['String']['output']>;\n subdomain?: Maybe<Scalars['String']['output']>;\n token_name?: Maybe<Scalars['String']['output']>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.current_ans_lookup\" */\nexport type Current_Ans_LookupAll_Token_OwnershipsArgs = {\n distinct_on?: InputMaybe<Array<Current_Token_Ownerships_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Ownerships_Order_By>>;\n where?: InputMaybe<Current_Token_Ownerships_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.current_ans_lookup\" */\nexport type Current_Ans_LookupAll_Token_Ownerships_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Token_Ownerships_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Ownerships_Order_By>>;\n where?: InputMaybe<Current_Token_Ownerships_Bool_Exp>;\n};\n\n/** Boolean expression to filter rows from the table \"legacy_migration_v1.current_ans_lookup\". All fields are combined with a logical 'AND'. */\nexport type Current_Ans_Lookup_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Ans_Lookup_Bool_Exp>>;\n _not?: InputMaybe<Current_Ans_Lookup_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Ans_Lookup_Bool_Exp>>;\n all_token_ownerships?: InputMaybe<Current_Token_Ownerships_Bool_Exp>;\n all_token_ownerships_aggregate?: InputMaybe<Current_Token_Ownerships_Aggregate_Bool_Exp>;\n domain?: InputMaybe<String_Comparison_Exp>;\n expiration_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n is_deleted?: InputMaybe<Boolean_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n registered_address?: InputMaybe<String_Comparison_Exp>;\n subdomain?: InputMaybe<String_Comparison_Exp>;\n token_name?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"legacy_migration_v1.current_ans_lookup\". */\nexport type Current_Ans_Lookup_Order_By = {\n all_token_ownerships_aggregate?: InputMaybe<Current_Token_Ownerships_Aggregate_Order_By>;\n domain?: InputMaybe<Order_By>;\n expiration_timestamp?: InputMaybe<Order_By>;\n is_deleted?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n registered_address?: InputMaybe<Order_By>;\n subdomain?: InputMaybe<Order_By>;\n token_name?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"legacy_migration_v1.current_ans_lookup\" */\nexport enum Current_Ans_Lookup_Select_Column {\n /** column name */\n Domain = 'domain',\n /** column name */\n ExpirationTimestamp = 'expiration_timestamp',\n /** column name */\n IsDeleted = 'is_deleted',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n RegisteredAddress = 'registered_address',\n /** column name */\n Subdomain = 'subdomain',\n /** column name */\n TokenName = 'token_name'\n}\n\n/** Streaming cursor of the table \"current_ans_lookup\" */\nexport type Current_Ans_Lookup_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Ans_Lookup_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Ans_Lookup_Stream_Cursor_Value_Input = {\n domain?: InputMaybe<Scalars['String']['input']>;\n expiration_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n is_deleted?: InputMaybe<Scalars['Boolean']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n registered_address?: InputMaybe<Scalars['String']['input']>;\n subdomain?: InputMaybe<Scalars['String']['input']>;\n token_name?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"current_ans_lookup_v2\" */\nexport type Current_Ans_Lookup_V2 = {\n __typename?: 'current_ans_lookup_v2';\n domain: Scalars['String']['output'];\n expiration_timestamp: Scalars['timestamp']['output'];\n is_deleted: Scalars['Boolean']['output'];\n last_transaction_version: Scalars['bigint']['output'];\n registered_address?: Maybe<Scalars['String']['output']>;\n subdomain: Scalars['String']['output'];\n token_name?: Maybe<Scalars['String']['output']>;\n token_standard: Scalars['String']['output'];\n};\n\n/** Boolean expression to filter rows from the table \"current_ans_lookup_v2\". All fields are combined with a logical 'AND'. */\nexport type Current_Ans_Lookup_V2_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Ans_Lookup_V2_Bool_Exp>>;\n _not?: InputMaybe<Current_Ans_Lookup_V2_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Ans_Lookup_V2_Bool_Exp>>;\n domain?: InputMaybe<String_Comparison_Exp>;\n expiration_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n is_deleted?: InputMaybe<Boolean_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n registered_address?: InputMaybe<String_Comparison_Exp>;\n subdomain?: InputMaybe<String_Comparison_Exp>;\n token_name?: InputMaybe<String_Comparison_Exp>;\n token_standard?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"current_ans_lookup_v2\". */\nexport type Current_Ans_Lookup_V2_Order_By = {\n domain?: InputMaybe<Order_By>;\n expiration_timestamp?: InputMaybe<Order_By>;\n is_deleted?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n registered_address?: InputMaybe<Order_By>;\n subdomain?: InputMaybe<Order_By>;\n token_name?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"current_ans_lookup_v2\" */\nexport enum Current_Ans_Lookup_V2_Select_Column {\n /** column name */\n Domain = 'domain',\n /** column name */\n ExpirationTimestamp = 'expiration_timestamp',\n /** column name */\n IsDeleted = 'is_deleted',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n RegisteredAddress = 'registered_address',\n /** column name */\n Subdomain = 'subdomain',\n /** column name */\n TokenName = 'token_name',\n /** column name */\n TokenStandard = 'token_standard'\n}\n\n/** Streaming cursor of the table \"current_ans_lookup_v2\" */\nexport type Current_Ans_Lookup_V2_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Ans_Lookup_V2_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Ans_Lookup_V2_Stream_Cursor_Value_Input = {\n domain?: InputMaybe<Scalars['String']['input']>;\n expiration_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n is_deleted?: InputMaybe<Scalars['Boolean']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n registered_address?: InputMaybe<Scalars['String']['input']>;\n subdomain?: InputMaybe<Scalars['String']['input']>;\n token_name?: InputMaybe<Scalars['String']['input']>;\n token_standard?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"current_aptos_names\" */\nexport type Current_Aptos_Names = {\n __typename?: 'current_aptos_names';\n domain?: Maybe<Scalars['String']['output']>;\n domain_expiration_timestamp?: Maybe<Scalars['timestamp']['output']>;\n domain_with_suffix?: Maybe<Scalars['String']['output']>;\n expiration_timestamp?: Maybe<Scalars['timestamp']['output']>;\n is_active?: Maybe<Scalars['Boolean']['output']>;\n /** An object relationship */\n is_domain_owner?: Maybe<Current_Aptos_Names>;\n is_primary?: Maybe<Scalars['Boolean']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n registered_address?: Maybe<Scalars['String']['output']>;\n subdomain?: Maybe<Scalars['String']['output']>;\n subdomain_expiration_policy?: Maybe<Scalars['bigint']['output']>;\n token_name?: Maybe<Scalars['String']['output']>;\n token_standard?: Maybe<Scalars['String']['output']>;\n};\n\n/** aggregated selection of \"current_aptos_names\" */\nexport type Current_Aptos_Names_Aggregate = {\n __typename?: 'current_aptos_names_aggregate';\n aggregate?: Maybe<Current_Aptos_Names_Aggregate_Fields>;\n nodes: Array<Current_Aptos_Names>;\n};\n\nexport type Current_Aptos_Names_Aggregate_Bool_Exp = {\n bool_and?: InputMaybe<Current_Aptos_Names_Aggregate_Bool_Exp_Bool_And>;\n bool_or?: InputMaybe<Current_Aptos_Names_Aggregate_Bool_Exp_Bool_Or>;\n count?: InputMaybe<Current_Aptos_Names_Aggregate_Bool_Exp_Count>;\n};\n\nexport type Current_Aptos_Names_Aggregate_Bool_Exp_Bool_And = {\n arguments: Current_Aptos_Names_Select_Column_Current_Aptos_Names_Aggregate_Bool_Exp_Bool_And_Arguments_Columns;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n filter?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n predicate: Boolean_Comparison_Exp;\n};\n\nexport type Current_Aptos_Names_Aggregate_Bool_Exp_Bool_Or = {\n arguments: Current_Aptos_Names_Select_Column_Current_Aptos_Names_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n filter?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n predicate: Boolean_Comparison_Exp;\n};\n\nexport type Current_Aptos_Names_Aggregate_Bool_Exp_Count = {\n arguments?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n filter?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n predicate: Int_Comparison_Exp;\n};\n\n/** aggregate fields of \"current_aptos_names\" */\nexport type Current_Aptos_Names_Aggregate_Fields = {\n __typename?: 'current_aptos_names_aggregate_fields';\n avg?: Maybe<Current_Aptos_Names_Avg_Fields>;\n count: Scalars['Int']['output'];\n max?: Maybe<Current_Aptos_Names_Max_Fields>;\n min?: Maybe<Current_Aptos_Names_Min_Fields>;\n stddev?: Maybe<Current_Aptos_Names_Stddev_Fields>;\n stddev_pop?: Maybe<Current_Aptos_Names_Stddev_Pop_Fields>;\n stddev_samp?: Maybe<Current_Aptos_Names_Stddev_Samp_Fields>;\n sum?: Maybe<Current_Aptos_Names_Sum_Fields>;\n var_pop?: Maybe<Current_Aptos_Names_Var_Pop_Fields>;\n var_samp?: Maybe<Current_Aptos_Names_Var_Samp_Fields>;\n variance?: Maybe<Current_Aptos_Names_Variance_Fields>;\n};\n\n\n/** aggregate fields of \"current_aptos_names\" */\nexport type Current_Aptos_Names_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** order by aggregate values of table \"current_aptos_names\" */\nexport type Current_Aptos_Names_Aggregate_Order_By = {\n avg?: InputMaybe<Current_Aptos_Names_Avg_Order_By>;\n count?: InputMaybe<Order_By>;\n max?: InputMaybe<Current_Aptos_Names_Max_Order_By>;\n min?: InputMaybe<Current_Aptos_Names_Min_Order_By>;\n stddev?: InputMaybe<Current_Aptos_Names_Stddev_Order_By>;\n stddev_pop?: InputMaybe<Current_Aptos_Names_Stddev_Pop_Order_By>;\n stddev_samp?: InputMaybe<Current_Aptos_Names_Stddev_Samp_Order_By>;\n sum?: InputMaybe<Current_Aptos_Names_Sum_Order_By>;\n var_pop?: InputMaybe<Current_Aptos_Names_Var_Pop_Order_By>;\n var_samp?: InputMaybe<Current_Aptos_Names_Var_Samp_Order_By>;\n variance?: InputMaybe<Current_Aptos_Names_Variance_Order_By>;\n};\n\n/** aggregate avg on columns */\nexport type Current_Aptos_Names_Avg_Fields = {\n __typename?: 'current_aptos_names_avg_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n subdomain_expiration_policy?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by avg() on columns of table \"current_aptos_names\" */\nexport type Current_Aptos_Names_Avg_Order_By = {\n last_transaction_version?: InputMaybe<Order_By>;\n subdomain_expiration_policy?: InputMaybe<Order_By>;\n};\n\n/** Boolean expression to filter rows from the table \"current_aptos_names\". All fields are combined with a logical 'AND'. */\nexport type Current_Aptos_Names_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Aptos_Names_Bool_Exp>>;\n _not?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Aptos_Names_Bool_Exp>>;\n domain?: InputMaybe<String_Comparison_Exp>;\n domain_expiration_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n domain_with_suffix?: InputMaybe<String_Comparison_Exp>;\n expiration_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n is_active?: InputMaybe<Boolean_Comparison_Exp>;\n is_domain_owner?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n is_primary?: InputMaybe<Boolean_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n owner_address?: InputMaybe<String_Comparison_Exp>;\n registered_address?: InputMaybe<String_Comparison_Exp>;\n subdomain?: InputMaybe<String_Comparison_Exp>;\n subdomain_expiration_policy?: InputMaybe<Bigint_Comparison_Exp>;\n token_name?: InputMaybe<String_Comparison_Exp>;\n token_standard?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Current_Aptos_Names_Max_Fields = {\n __typename?: 'current_aptos_names_max_fields';\n domain?: Maybe<Scalars['String']['output']>;\n domain_expiration_timestamp?: Maybe<Scalars['timestamp']['output']>;\n domain_with_suffix?: Maybe<Scalars['String']['output']>;\n expiration_timestamp?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n registered_address?: Maybe<Scalars['String']['output']>;\n subdomain?: Maybe<Scalars['String']['output']>;\n subdomain_expiration_policy?: Maybe<Scalars['bigint']['output']>;\n token_name?: Maybe<Scalars['String']['output']>;\n token_standard?: Maybe<Scalars['String']['output']>;\n};\n\n/** order by max() on columns of table \"current_aptos_names\" */\nexport type Current_Aptos_Names_Max_Order_By = {\n domain?: InputMaybe<Order_By>;\n domain_expiration_timestamp?: InputMaybe<Order_By>;\n domain_with_suffix?: InputMaybe<Order_By>;\n expiration_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n registered_address?: InputMaybe<Order_By>;\n subdomain?: InputMaybe<Order_By>;\n subdomain_expiration_policy?: InputMaybe<Order_By>;\n token_name?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n};\n\n/** aggregate min on columns */\nexport type Current_Aptos_Names_Min_Fields = {\n __typename?: 'current_aptos_names_min_fields';\n domain?: Maybe<Scalars['String']['output']>;\n domain_expiration_timestamp?: Maybe<Scalars['timestamp']['output']>;\n domain_with_suffix?: Maybe<Scalars['String']['output']>;\n expiration_timestamp?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n registered_address?: Maybe<Scalars['String']['output']>;\n subdomain?: Maybe<Scalars['String']['output']>;\n subdomain_expiration_policy?: Maybe<Scalars['bigint']['output']>;\n token_name?: Maybe<Scalars['String']['output']>;\n token_standard?: Maybe<Scalars['String']['output']>;\n};\n\n/** order by min() on columns of table \"current_aptos_names\" */\nexport type Current_Aptos_Names_Min_Order_By = {\n domain?: InputMaybe<Order_By>;\n domain_expiration_timestamp?: InputMaybe<Order_By>;\n domain_with_suffix?: InputMaybe<Order_By>;\n expiration_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n registered_address?: InputMaybe<Order_By>;\n subdomain?: InputMaybe<Order_By>;\n subdomain_expiration_policy?: InputMaybe<Order_By>;\n token_name?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n};\n\n/** Ordering options when selecting data from \"current_aptos_names\". */\nexport type Current_Aptos_Names_Order_By = {\n domain?: InputMaybe<Order_By>;\n domain_expiration_timestamp?: InputMaybe<Order_By>;\n domain_with_suffix?: InputMaybe<Order_By>;\n expiration_timestamp?: InputMaybe<Order_By>;\n is_active?: InputMaybe<Order_By>;\n is_domain_owner?: InputMaybe<Current_Aptos_Names_Order_By>;\n is_primary?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n registered_address?: InputMaybe<Order_By>;\n subdomain?: InputMaybe<Order_By>;\n subdomain_expiration_policy?: InputMaybe<Order_By>;\n token_name?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"current_aptos_names\" */\nexport enum Current_Aptos_Names_Select_Column {\n /** column name */\n Domain = 'domain',\n /** column name */\n DomainExpirationTimestamp = 'domain_expiration_timestamp',\n /** column name */\n DomainWithSuffix = 'domain_with_suffix',\n /** column name */\n ExpirationTimestamp = 'expiration_timestamp',\n /** column name */\n IsActive = 'is_active',\n /** column name */\n IsPrimary = 'is_primary',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n OwnerAddress = 'owner_address',\n /** column name */\n RegisteredAddress = 'registered_address',\n /** column name */\n Subdomain = 'subdomain',\n /** column name */\n SubdomainExpirationPolicy = 'subdomain_expiration_policy',\n /** column name */\n TokenName = 'token_name',\n /** column name */\n TokenStandard = 'token_standard'\n}\n\n/** select \"current_aptos_names_aggregate_bool_exp_bool_and_arguments_columns\" columns of table \"current_aptos_names\" */\nexport enum Current_Aptos_Names_Select_Column_Current_Aptos_Names_Aggregate_Bool_Exp_Bool_And_Arguments_Columns {\n /** column name */\n IsActive = 'is_active',\n /** column name */\n IsPrimary = 'is_primary'\n}\n\n/** select \"current_aptos_names_aggregate_bool_exp_bool_or_arguments_columns\" columns of table \"current_aptos_names\" */\nexport enum Current_Aptos_Names_Select_Column_Current_Aptos_Names_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns {\n /** column name */\n IsActive = 'is_active',\n /** column name */\n IsPrimary = 'is_primary'\n}\n\n/** aggregate stddev on columns */\nexport type Current_Aptos_Names_Stddev_Fields = {\n __typename?: 'current_aptos_names_stddev_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n subdomain_expiration_policy?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev() on columns of table \"current_aptos_names\" */\nexport type Current_Aptos_Names_Stddev_Order_By = {\n last_transaction_version?: InputMaybe<Order_By>;\n subdomain_expiration_policy?: InputMaybe<Order_By>;\n};\n\n/** aggregate stddev_pop on columns */\nexport type Current_Aptos_Names_Stddev_Pop_Fields = {\n __typename?: 'current_aptos_names_stddev_pop_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n subdomain_expiration_policy?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev_pop() on columns of table \"current_aptos_names\" */\nexport type Current_Aptos_Names_Stddev_Pop_Order_By = {\n last_transaction_version?: InputMaybe<Order_By>;\n subdomain_expiration_policy?: InputMaybe<Order_By>;\n};\n\n/** aggregate stddev_samp on columns */\nexport type Current_Aptos_Names_Stddev_Samp_Fields = {\n __typename?: 'current_aptos_names_stddev_samp_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n subdomain_expiration_policy?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev_samp() on columns of table \"current_aptos_names\" */\nexport type Current_Aptos_Names_Stddev_Samp_Order_By = {\n last_transaction_version?: InputMaybe<Order_By>;\n subdomain_expiration_policy?: InputMaybe<Order_By>;\n};\n\n/** Streaming cursor of the table \"current_aptos_names\" */\nexport type Current_Aptos_Names_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Aptos_Names_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Aptos_Names_Stream_Cursor_Value_Input = {\n domain?: InputMaybe<Scalars['String']['input']>;\n domain_expiration_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n domain_with_suffix?: InputMaybe<Scalars['String']['input']>;\n expiration_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n is_active?: InputMaybe<Scalars['Boolean']['input']>;\n is_primary?: InputMaybe<Scalars['Boolean']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n owner_address?: InputMaybe<Scalars['String']['input']>;\n registered_address?: InputMaybe<Scalars['String']['input']>;\n subdomain?: InputMaybe<Scalars['String']['input']>;\n subdomain_expiration_policy?: InputMaybe<Scalars['bigint']['input']>;\n token_name?: InputMaybe<Scalars['String']['input']>;\n token_standard?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** aggregate sum on columns */\nexport type Current_Aptos_Names_Sum_Fields = {\n __typename?: 'current_aptos_names_sum_fields';\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n subdomain_expiration_policy?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** order by sum() on columns of table \"current_aptos_names\" */\nexport type Current_Aptos_Names_Sum_Order_By = {\n last_transaction_version?: InputMaybe<Order_By>;\n subdomain_expiration_policy?: InputMaybe<Order_By>;\n};\n\n/** aggregate var_pop on columns */\nexport type Current_Aptos_Names_Var_Pop_Fields = {\n __typename?: 'current_aptos_names_var_pop_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n subdomain_expiration_policy?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by var_pop() on columns of table \"current_aptos_names\" */\nexport type Current_Aptos_Names_Var_Pop_Order_By = {\n last_transaction_version?: InputMaybe<Order_By>;\n subdomain_expiration_policy?: InputMaybe<Order_By>;\n};\n\n/** aggregate var_samp on columns */\nexport type Current_Aptos_Names_Var_Samp_Fields = {\n __typename?: 'current_aptos_names_var_samp_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n subdomain_expiration_policy?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by var_samp() on columns of table \"current_aptos_names\" */\nexport type Current_Aptos_Names_Var_Samp_Order_By = {\n last_transaction_version?: InputMaybe<Order_By>;\n subdomain_expiration_policy?: InputMaybe<Order_By>;\n};\n\n/** aggregate variance on columns */\nexport type Current_Aptos_Names_Variance_Fields = {\n __typename?: 'current_aptos_names_variance_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n subdomain_expiration_policy?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by variance() on columns of table \"current_aptos_names\" */\nexport type Current_Aptos_Names_Variance_Order_By = {\n last_transaction_version?: InputMaybe<Order_By>;\n subdomain_expiration_policy?: InputMaybe<Order_By>;\n};\n\n/** columns and relationships of \"legacy_migration_v1.current_coin_balances\" */\nexport type Current_Coin_Balances = {\n __typename?: 'current_coin_balances';\n amount?: Maybe<Scalars['numeric']['output']>;\n /** An object relationship */\n coin_info?: Maybe<Coin_Infos>;\n coin_type?: Maybe<Scalars['String']['output']>;\n coin_type_hash?: Maybe<Scalars['String']['output']>;\n last_transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"legacy_migration_v1.current_coin_balances\". All fields are combined with a logical 'AND'. */\nexport type Current_Coin_Balances_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Coin_Balances_Bool_Exp>>;\n _not?: InputMaybe<Current_Coin_Balances_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Coin_Balances_Bool_Exp>>;\n amount?: InputMaybe<Numeric_Comparison_Exp>;\n coin_info?: InputMaybe<Coin_Infos_Bool_Exp>;\n coin_type?: InputMaybe<String_Comparison_Exp>;\n coin_type_hash?: InputMaybe<String_Comparison_Exp>;\n last_transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n owner_address?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"legacy_migration_v1.current_coin_balances\". */\nexport type Current_Coin_Balances_Order_By = {\n amount?: InputMaybe<Order_By>;\n coin_info?: InputMaybe<Coin_Infos_Order_By>;\n coin_type?: InputMaybe<Order_By>;\n coin_type_hash?: InputMaybe<Order_By>;\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"legacy_migration_v1.current_coin_balances\" */\nexport enum Current_Coin_Balances_Select_Column {\n /** column name */\n Amount = 'amount',\n /** column name */\n CoinType = 'coin_type',\n /** column name */\n CoinTypeHash = 'coin_type_hash',\n /** column name */\n LastTransactionTimestamp = 'last_transaction_timestamp',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n OwnerAddress = 'owner_address'\n}\n\n/** Streaming cursor of the table \"current_coin_balances\" */\nexport type Current_Coin_Balances_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Coin_Balances_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Coin_Balances_Stream_Cursor_Value_Input = {\n amount?: InputMaybe<Scalars['numeric']['input']>;\n coin_type?: InputMaybe<Scalars['String']['input']>;\n coin_type_hash?: InputMaybe<Scalars['String']['input']>;\n last_transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n owner_address?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"legacy_migration_v1.current_collection_datas\" */\nexport type Current_Collection_Datas = {\n __typename?: 'current_collection_datas';\n collection_data_id_hash?: Maybe<Scalars['String']['output']>;\n collection_name?: Maybe<Scalars['String']['output']>;\n creator_address?: Maybe<Scalars['String']['output']>;\n description?: Maybe<Scalars['String']['output']>;\n description_mutable?: Maybe<Scalars['Boolean']['output']>;\n last_transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n maximum?: Maybe<Scalars['numeric']['output']>;\n maximum_mutable?: Maybe<Scalars['Boolean']['output']>;\n metadata_uri?: Maybe<Scalars['String']['output']>;\n supply?: Maybe<Scalars['numeric']['output']>;\n table_handle?: Maybe<Scalars['String']['output']>;\n uri_mutable?: Maybe<Scalars['Boolean']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"legacy_migration_v1.current_collection_datas\". All fields are combined with a logical 'AND'. */\nexport type Current_Collection_Datas_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Collection_Datas_Bool_Exp>>;\n _not?: InputMaybe<Current_Collection_Datas_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Collection_Datas_Bool_Exp>>;\n collection_data_id_hash?: InputMaybe<String_Comparison_Exp>;\n collection_name?: InputMaybe<String_Comparison_Exp>;\n creator_address?: InputMaybe<String_Comparison_Exp>;\n description?: InputMaybe<String_Comparison_Exp>;\n description_mutable?: InputMaybe<Boolean_Comparison_Exp>;\n last_transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n maximum?: InputMaybe<Numeric_Comparison_Exp>;\n maximum_mutable?: InputMaybe<Boolean_Comparison_Exp>;\n metadata_uri?: InputMaybe<String_Comparison_Exp>;\n supply?: InputMaybe<Numeric_Comparison_Exp>;\n table_handle?: InputMaybe<String_Comparison_Exp>;\n uri_mutable?: InputMaybe<Boolean_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"legacy_migration_v1.current_collection_datas\". */\nexport type Current_Collection_Datas_Order_By = {\n collection_data_id_hash?: InputMaybe<Order_By>;\n collection_name?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n description?: InputMaybe<Order_By>;\n description_mutable?: InputMaybe<Order_By>;\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n maximum?: InputMaybe<Order_By>;\n maximum_mutable?: InputMaybe<Order_By>;\n metadata_uri?: InputMaybe<Order_By>;\n supply?: InputMaybe<Order_By>;\n table_handle?: InputMaybe<Order_By>;\n uri_mutable?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"legacy_migration_v1.current_collection_datas\" */\nexport enum Current_Collection_Datas_Select_Column {\n /** column name */\n CollectionDataIdHash = 'collection_data_id_hash',\n /** column name */\n CollectionName = 'collection_name',\n /** column name */\n CreatorAddress = 'creator_address',\n /** column name */\n Description = 'description',\n /** column name */\n DescriptionMutable = 'description_mutable',\n /** column name */\n LastTransactionTimestamp = 'last_transaction_timestamp',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n Maximum = 'maximum',\n /** column name */\n MaximumMutable = 'maximum_mutable',\n /** column name */\n MetadataUri = 'metadata_uri',\n /** column name */\n Supply = 'supply',\n /** column name */\n TableHandle = 'table_handle',\n /** column name */\n UriMutable = 'uri_mutable'\n}\n\n/** Streaming cursor of the table \"current_collection_datas\" */\nexport type Current_Collection_Datas_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Collection_Datas_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Collection_Datas_Stream_Cursor_Value_Input = {\n collection_data_id_hash?: InputMaybe<Scalars['String']['input']>;\n collection_name?: InputMaybe<Scalars['String']['input']>;\n creator_address?: InputMaybe<Scalars['String']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n description_mutable?: InputMaybe<Scalars['Boolean']['input']>;\n last_transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n maximum?: InputMaybe<Scalars['numeric']['input']>;\n maximum_mutable?: InputMaybe<Scalars['Boolean']['input']>;\n metadata_uri?: InputMaybe<Scalars['String']['input']>;\n supply?: InputMaybe<Scalars['numeric']['input']>;\n table_handle?: InputMaybe<Scalars['String']['input']>;\n uri_mutable?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** columns and relationships of \"current_collection_ownership_v2_view\" */\nexport type Current_Collection_Ownership_V2_View = {\n __typename?: 'current_collection_ownership_v2_view';\n collection_id?: Maybe<Scalars['String']['output']>;\n collection_name?: Maybe<Scalars['String']['output']>;\n collection_uri?: Maybe<Scalars['String']['output']>;\n creator_address?: Maybe<Scalars['String']['output']>;\n /** An object relationship */\n current_collection?: Maybe<Current_Collections_V2>;\n distinct_tokens?: Maybe<Scalars['bigint']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n single_token_uri?: Maybe<Scalars['String']['output']>;\n};\n\n/** aggregated selection of \"current_collection_ownership_v2_view\" */\nexport type Current_Collection_Ownership_V2_View_Aggregate = {\n __typename?: 'current_collection_ownership_v2_view_aggregate';\n aggregate?: Maybe<Current_Collection_Ownership_V2_View_Aggregate_Fields>;\n nodes: Array<Current_Collection_Ownership_V2_View>;\n};\n\n/** aggregate fields of \"current_collection_ownership_v2_view\" */\nexport type Current_Collection_Ownership_V2_View_Aggregate_Fields = {\n __typename?: 'current_collection_ownership_v2_view_aggregate_fields';\n avg?: Maybe<Current_Collection_Ownership_V2_View_Avg_Fields>;\n count: Scalars['Int']['output'];\n max?: Maybe<Current_Collection_Ownership_V2_View_Max_Fields>;\n min?: Maybe<Current_Collection_Ownership_V2_View_Min_Fields>;\n stddev?: Maybe<Current_Collection_Ownership_V2_View_Stddev_Fields>;\n stddev_pop?: Maybe<Current_Collection_Ownership_V2_View_Stddev_Pop_Fields>;\n stddev_samp?: Maybe<Current_Collection_Ownership_V2_View_Stddev_Samp_Fields>;\n sum?: Maybe<Current_Collection_Ownership_V2_View_Sum_Fields>;\n var_pop?: Maybe<Current_Collection_Ownership_V2_View_Var_Pop_Fields>;\n var_samp?: Maybe<Current_Collection_Ownership_V2_View_Var_Samp_Fields>;\n variance?: Maybe<Current_Collection_Ownership_V2_View_Variance_Fields>;\n};\n\n\n/** aggregate fields of \"current_collection_ownership_v2_view\" */\nexport type Current_Collection_Ownership_V2_View_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Current_Collection_Ownership_V2_View_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** aggregate avg on columns */\nexport type Current_Collection_Ownership_V2_View_Avg_Fields = {\n __typename?: 'current_collection_ownership_v2_view_avg_fields';\n distinct_tokens?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"current_collection_ownership_v2_view\". All fields are combined with a logical 'AND'. */\nexport type Current_Collection_Ownership_V2_View_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Collection_Ownership_V2_View_Bool_Exp>>;\n _not?: InputMaybe<Current_Collection_Ownership_V2_View_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Collection_Ownership_V2_View_Bool_Exp>>;\n collection_id?: InputMaybe<String_Comparison_Exp>;\n collection_name?: InputMaybe<String_Comparison_Exp>;\n collection_uri?: InputMaybe<String_Comparison_Exp>;\n creator_address?: InputMaybe<String_Comparison_Exp>;\n current_collection?: InputMaybe<Current_Collections_V2_Bool_Exp>;\n distinct_tokens?: InputMaybe<Bigint_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n owner_address?: InputMaybe<String_Comparison_Exp>;\n single_token_uri?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Current_Collection_Ownership_V2_View_Max_Fields = {\n __typename?: 'current_collection_ownership_v2_view_max_fields';\n collection_id?: Maybe<Scalars['String']['output']>;\n collection_name?: Maybe<Scalars['String']['output']>;\n collection_uri?: Maybe<Scalars['String']['output']>;\n creator_address?: Maybe<Scalars['String']['output']>;\n distinct_tokens?: Maybe<Scalars['bigint']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n single_token_uri?: Maybe<Scalars['String']['output']>;\n};\n\n/** aggregate min on columns */\nexport type Current_Collection_Ownership_V2_View_Min_Fields = {\n __typename?: 'current_collection_ownership_v2_view_min_fields';\n collection_id?: Maybe<Scalars['String']['output']>;\n collection_name?: Maybe<Scalars['String']['output']>;\n collection_uri?: Maybe<Scalars['String']['output']>;\n creator_address?: Maybe<Scalars['String']['output']>;\n distinct_tokens?: Maybe<Scalars['bigint']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n single_token_uri?: Maybe<Scalars['String']['output']>;\n};\n\n/** Ordering options when selecting data from \"current_collection_ownership_v2_view\". */\nexport type Current_Collection_Ownership_V2_View_Order_By = {\n collection_id?: InputMaybe<Order_By>;\n collection_name?: InputMaybe<Order_By>;\n collection_uri?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n current_collection?: InputMaybe<Current_Collections_V2_Order_By>;\n distinct_tokens?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n single_token_uri?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"current_collection_ownership_v2_view\" */\nexport enum Current_Collection_Ownership_V2_View_Select_Column {\n /** column name */\n CollectionId = 'collection_id',\n /** column name */\n CollectionName = 'collection_name',\n /** column name */\n CollectionUri = 'collection_uri',\n /** column name */\n CreatorAddress = 'creator_address',\n /** column name */\n DistinctTokens = 'distinct_tokens',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n OwnerAddress = 'owner_address',\n /** column name */\n SingleTokenUri = 'single_token_uri'\n}\n\n/** aggregate stddev on columns */\nexport type Current_Collection_Ownership_V2_View_Stddev_Fields = {\n __typename?: 'current_collection_ownership_v2_view_stddev_fields';\n distinct_tokens?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_pop on columns */\nexport type Current_Collection_Ownership_V2_View_Stddev_Pop_Fields = {\n __typename?: 'current_collection_ownership_v2_view_stddev_pop_fields';\n distinct_tokens?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_samp on columns */\nexport type Current_Collection_Ownership_V2_View_Stddev_Samp_Fields = {\n __typename?: 'current_collection_ownership_v2_view_stddev_samp_fields';\n distinct_tokens?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Streaming cursor of the table \"current_collection_ownership_v2_view\" */\nexport type Current_Collection_Ownership_V2_View_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Collection_Ownership_V2_View_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Collection_Ownership_V2_View_Stream_Cursor_Value_Input = {\n collection_id?: InputMaybe<Scalars['String']['input']>;\n collection_name?: InputMaybe<Scalars['String']['input']>;\n collection_uri?: InputMaybe<Scalars['String']['input']>;\n creator_address?: InputMaybe<Scalars['String']['input']>;\n distinct_tokens?: InputMaybe<Scalars['bigint']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n owner_address?: InputMaybe<Scalars['String']['input']>;\n single_token_uri?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** aggregate sum on columns */\nexport type Current_Collection_Ownership_V2_View_Sum_Fields = {\n __typename?: 'current_collection_ownership_v2_view_sum_fields';\n distinct_tokens?: Maybe<Scalars['bigint']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregate var_pop on columns */\nexport type Current_Collection_Ownership_V2_View_Var_Pop_Fields = {\n __typename?: 'current_collection_ownership_v2_view_var_pop_fields';\n distinct_tokens?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate var_samp on columns */\nexport type Current_Collection_Ownership_V2_View_Var_Samp_Fields = {\n __typename?: 'current_collection_ownership_v2_view_var_samp_fields';\n distinct_tokens?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate variance on columns */\nexport type Current_Collection_Ownership_V2_View_Variance_Fields = {\n __typename?: 'current_collection_ownership_v2_view_variance_fields';\n distinct_tokens?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** columns and relationships of \"current_collections_v2\" */\nexport type Current_Collections_V2 = {\n __typename?: 'current_collections_v2';\n /** An object relationship */\n cdn_asset_uris?: Maybe<Nft_Metadata_Crawler_Parsed_Asset_Uris>;\n collection_id: Scalars['String']['output'];\n collection_name: Scalars['String']['output'];\n collection_properties?: Maybe<Scalars['jsonb']['output']>;\n creator_address: Scalars['String']['output'];\n current_supply: Scalars['numeric']['output'];\n description: Scalars['String']['output'];\n last_transaction_timestamp: Scalars['timestamp']['output'];\n last_transaction_version: Scalars['bigint']['output'];\n max_supply?: Maybe<Scalars['numeric']['output']>;\n mutable_description?: Maybe<Scalars['Boolean']['output']>;\n mutable_uri?: Maybe<Scalars['Boolean']['output']>;\n table_handle_v1?: Maybe<Scalars['String']['output']>;\n token_standard: Scalars['String']['output'];\n total_minted_v2?: Maybe<Scalars['numeric']['output']>;\n uri: Scalars['String']['output'];\n};\n\n\n/** columns and relationships of \"current_collections_v2\" */\nexport type Current_Collections_V2Collection_PropertiesArgs = {\n path?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Boolean expression to filter rows from the table \"current_collections_v2\". All fields are combined with a logical 'AND'. */\nexport type Current_Collections_V2_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Collections_V2_Bool_Exp>>;\n _not?: InputMaybe<Current_Collections_V2_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Collections_V2_Bool_Exp>>;\n cdn_asset_uris?: InputMaybe<Nft_Metadata_Crawler_Parsed_Asset_Uris_Bool_Exp>;\n collection_id?: InputMaybe<String_Comparison_Exp>;\n collection_name?: InputMaybe<String_Comparison_Exp>;\n collection_properties?: InputMaybe<Jsonb_Comparison_Exp>;\n creator_address?: InputMaybe<String_Comparison_Exp>;\n current_supply?: InputMaybe<Numeric_Comparison_Exp>;\n description?: InputMaybe<String_Comparison_Exp>;\n last_transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n max_supply?: InputMaybe<Numeric_Comparison_Exp>;\n mutable_description?: InputMaybe<Boolean_Comparison_Exp>;\n mutable_uri?: InputMaybe<Boolean_Comparison_Exp>;\n table_handle_v1?: InputMaybe<String_Comparison_Exp>;\n token_standard?: InputMaybe<String_Comparison_Exp>;\n total_minted_v2?: InputMaybe<Numeric_Comparison_Exp>;\n uri?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"current_collections_v2\". */\nexport type Current_Collections_V2_Order_By = {\n cdn_asset_uris?: InputMaybe<Nft_Metadata_Crawler_Parsed_Asset_Uris_Order_By>;\n collection_id?: InputMaybe<Order_By>;\n collection_name?: InputMaybe<Order_By>;\n collection_properties?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n current_supply?: InputMaybe<Order_By>;\n description?: InputMaybe<Order_By>;\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n max_supply?: InputMaybe<Order_By>;\n mutable_description?: InputMaybe<Order_By>;\n mutable_uri?: InputMaybe<Order_By>;\n table_handle_v1?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n total_minted_v2?: InputMaybe<Order_By>;\n uri?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"current_collections_v2\" */\nexport enum Current_Collections_V2_Select_Column {\n /** column name */\n CollectionId = 'collection_id',\n /** column name */\n CollectionName = 'collection_name',\n /** column name */\n CollectionProperties = 'collection_properties',\n /** column name */\n CreatorAddress = 'creator_address',\n /** column name */\n CurrentSupply = 'current_supply',\n /** column name */\n Description = 'description',\n /** column name */\n LastTransactionTimestamp = 'last_transaction_timestamp',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n MaxSupply = 'max_supply',\n /** column name */\n MutableDescription = 'mutable_description',\n /** column name */\n MutableUri = 'mutable_uri',\n /** column name */\n TableHandleV1 = 'table_handle_v1',\n /** column name */\n TokenStandard = 'token_standard',\n /** column name */\n TotalMintedV2 = 'total_minted_v2',\n /** column name */\n Uri = 'uri'\n}\n\n/** Streaming cursor of the table \"current_collections_v2\" */\nexport type Current_Collections_V2_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Collections_V2_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Collections_V2_Stream_Cursor_Value_Input = {\n collection_id?: InputMaybe<Scalars['String']['input']>;\n collection_name?: InputMaybe<Scalars['String']['input']>;\n collection_properties?: InputMaybe<Scalars['jsonb']['input']>;\n creator_address?: InputMaybe<Scalars['String']['input']>;\n current_supply?: InputMaybe<Scalars['numeric']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n last_transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n max_supply?: InputMaybe<Scalars['numeric']['input']>;\n mutable_description?: InputMaybe<Scalars['Boolean']['input']>;\n mutable_uri?: InputMaybe<Scalars['Boolean']['input']>;\n table_handle_v1?: InputMaybe<Scalars['String']['input']>;\n token_standard?: InputMaybe<Scalars['String']['input']>;\n total_minted_v2?: InputMaybe<Scalars['numeric']['input']>;\n uri?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"current_delegated_staking_pool_balances\" */\nexport type Current_Delegated_Staking_Pool_Balances = {\n __typename?: 'current_delegated_staking_pool_balances';\n active_table_handle: Scalars['String']['output'];\n inactive_table_handle: Scalars['String']['output'];\n last_transaction_version: Scalars['bigint']['output'];\n operator_commission_percentage: Scalars['numeric']['output'];\n staking_pool_address: Scalars['String']['output'];\n total_coins: Scalars['numeric']['output'];\n total_shares: Scalars['numeric']['output'];\n};\n\n/** Boolean expression to filter rows from the table \"current_delegated_staking_pool_balances\". All fields are combined with a logical 'AND'. */\nexport type Current_Delegated_Staking_Pool_Balances_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Delegated_Staking_Pool_Balances_Bool_Exp>>;\n _not?: InputMaybe<Current_Delegated_Staking_Pool_Balances_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Delegated_Staking_Pool_Balances_Bool_Exp>>;\n active_table_handle?: InputMaybe<String_Comparison_Exp>;\n inactive_table_handle?: InputMaybe<String_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n operator_commission_percentage?: InputMaybe<Numeric_Comparison_Exp>;\n staking_pool_address?: InputMaybe<String_Comparison_Exp>;\n total_coins?: InputMaybe<Numeric_Comparison_Exp>;\n total_shares?: InputMaybe<Numeric_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"current_delegated_staking_pool_balances\". */\nexport type Current_Delegated_Staking_Pool_Balances_Order_By = {\n active_table_handle?: InputMaybe<Order_By>;\n inactive_table_handle?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n operator_commission_percentage?: InputMaybe<Order_By>;\n staking_pool_address?: InputMaybe<Order_By>;\n total_coins?: InputMaybe<Order_By>;\n total_shares?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"current_delegated_staking_pool_balances\" */\nexport enum Current_Delegated_Staking_Pool_Balances_Select_Column {\n /** column name */\n ActiveTableHandle = 'active_table_handle',\n /** column name */\n InactiveTableHandle = 'inactive_table_handle',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n OperatorCommissionPercentage = 'operator_commission_percentage',\n /** column name */\n StakingPoolAddress = 'staking_pool_address',\n /** column name */\n TotalCoins = 'total_coins',\n /** column name */\n TotalShares = 'total_shares'\n}\n\n/** Streaming cursor of the table \"current_delegated_staking_pool_balances\" */\nexport type Current_Delegated_Staking_Pool_Balances_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Delegated_Staking_Pool_Balances_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Delegated_Staking_Pool_Balances_Stream_Cursor_Value_Input = {\n active_table_handle?: InputMaybe<Scalars['String']['input']>;\n inactive_table_handle?: InputMaybe<Scalars['String']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n operator_commission_percentage?: InputMaybe<Scalars['numeric']['input']>;\n staking_pool_address?: InputMaybe<Scalars['String']['input']>;\n total_coins?: InputMaybe<Scalars['numeric']['input']>;\n total_shares?: InputMaybe<Scalars['numeric']['input']>;\n};\n\n/** columns and relationships of \"current_delegated_voter\" */\nexport type Current_Delegated_Voter = {\n __typename?: 'current_delegated_voter';\n delegation_pool_address: Scalars['String']['output'];\n delegator_address: Scalars['String']['output'];\n last_transaction_timestamp: Scalars['timestamp']['output'];\n last_transaction_version: Scalars['bigint']['output'];\n pending_voter?: Maybe<Scalars['String']['output']>;\n table_handle?: Maybe<Scalars['String']['output']>;\n voter?: Maybe<Scalars['String']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"current_delegated_voter\". All fields are combined with a logical 'AND'. */\nexport type Current_Delegated_Voter_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Delegated_Voter_Bool_Exp>>;\n _not?: InputMaybe<Current_Delegated_Voter_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Delegated_Voter_Bool_Exp>>;\n delegation_pool_address?: InputMaybe<String_Comparison_Exp>;\n delegator_address?: InputMaybe<String_Comparison_Exp>;\n last_transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n pending_voter?: InputMaybe<String_Comparison_Exp>;\n table_handle?: InputMaybe<String_Comparison_Exp>;\n voter?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"current_delegated_voter\". */\nexport type Current_Delegated_Voter_Order_By = {\n delegation_pool_address?: InputMaybe<Order_By>;\n delegator_address?: InputMaybe<Order_By>;\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n pending_voter?: InputMaybe<Order_By>;\n table_handle?: InputMaybe<Order_By>;\n voter?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"current_delegated_voter\" */\nexport enum Current_Delegated_Voter_Select_Column {\n /** column name */\n DelegationPoolAddress = 'delegation_pool_address',\n /** column name */\n DelegatorAddress = 'delegator_address',\n /** column name */\n LastTransactionTimestamp = 'last_transaction_timestamp',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n PendingVoter = 'pending_voter',\n /** column name */\n TableHandle = 'table_handle',\n /** column name */\n Voter = 'voter'\n}\n\n/** Streaming cursor of the table \"current_delegated_voter\" */\nexport type Current_Delegated_Voter_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Delegated_Voter_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Delegated_Voter_Stream_Cursor_Value_Input = {\n delegation_pool_address?: InputMaybe<Scalars['String']['input']>;\n delegator_address?: InputMaybe<Scalars['String']['input']>;\n last_transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n pending_voter?: InputMaybe<Scalars['String']['input']>;\n table_handle?: InputMaybe<Scalars['String']['input']>;\n voter?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"current_delegator_balances\" */\nexport type Current_Delegator_Balances = {\n __typename?: 'current_delegator_balances';\n /** An object relationship */\n current_pool_balance?: Maybe<Current_Delegated_Staking_Pool_Balances>;\n delegator_address: Scalars['String']['output'];\n last_transaction_version: Scalars['bigint']['output'];\n parent_table_handle: Scalars['String']['output'];\n pool_address: Scalars['String']['output'];\n pool_type: Scalars['String']['output'];\n shares: Scalars['numeric']['output'];\n /** An object relationship */\n staking_pool_metadata?: Maybe<Current_Staking_Pool_Voter>;\n table_handle: Scalars['String']['output'];\n};\n\n/** Boolean expression to filter rows from the table \"current_delegator_balances\". All fields are combined with a logical 'AND'. */\nexport type Current_Delegator_Balances_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Delegator_Balances_Bool_Exp>>;\n _not?: InputMaybe<Current_Delegator_Balances_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Delegator_Balances_Bool_Exp>>;\n current_pool_balance?: InputMaybe<Current_Delegated_Staking_Pool_Balances_Bool_Exp>;\n delegator_address?: InputMaybe<String_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n parent_table_handle?: InputMaybe<String_Comparison_Exp>;\n pool_address?: InputMaybe<String_Comparison_Exp>;\n pool_type?: InputMaybe<String_Comparison_Exp>;\n shares?: InputMaybe<Numeric_Comparison_Exp>;\n staking_pool_metadata?: InputMaybe<Current_Staking_Pool_Voter_Bool_Exp>;\n table_handle?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"current_delegator_balances\". */\nexport type Current_Delegator_Balances_Order_By = {\n current_pool_balance?: InputMaybe<Current_Delegated_Staking_Pool_Balances_Order_By>;\n delegator_address?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n parent_table_handle?: InputMaybe<Order_By>;\n pool_address?: InputMaybe<Order_By>;\n pool_type?: InputMaybe<Order_By>;\n shares?: InputMaybe<Order_By>;\n staking_pool_metadata?: InputMaybe<Current_Staking_Pool_Voter_Order_By>;\n table_handle?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"current_delegator_balances\" */\nexport enum Current_Delegator_Balances_Select_Column {\n /** column name */\n DelegatorAddress = 'delegator_address',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n ParentTableHandle = 'parent_table_handle',\n /** column name */\n PoolAddress = 'pool_address',\n /** column name */\n PoolType = 'pool_type',\n /** column name */\n Shares = 'shares',\n /** column name */\n TableHandle = 'table_handle'\n}\n\n/** Streaming cursor of the table \"current_delegator_balances\" */\nexport type Current_Delegator_Balances_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Delegator_Balances_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Delegator_Balances_Stream_Cursor_Value_Input = {\n delegator_address?: InputMaybe<Scalars['String']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n parent_table_handle?: InputMaybe<Scalars['String']['input']>;\n pool_address?: InputMaybe<Scalars['String']['input']>;\n pool_type?: InputMaybe<Scalars['String']['input']>;\n shares?: InputMaybe<Scalars['numeric']['input']>;\n table_handle?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"current_fungible_asset_balances\" */\nexport type Current_Fungible_Asset_Balances = {\n __typename?: 'current_fungible_asset_balances';\n amount: Scalars['numeric']['output'];\n amount_v1?: Maybe<Scalars['numeric']['output']>;\n amount_v2?: Maybe<Scalars['numeric']['output']>;\n asset_type: Scalars['String']['output'];\n asset_type_v1?: Maybe<Scalars['String']['output']>;\n asset_type_v2?: Maybe<Scalars['String']['output']>;\n is_frozen: Scalars['Boolean']['output'];\n is_primary: Scalars['Boolean']['output'];\n last_transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_timestamp_v1?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_timestamp_v2?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n last_transaction_version_v1?: Maybe<Scalars['bigint']['output']>;\n last_transaction_version_v2?: Maybe<Scalars['bigint']['output']>;\n /** An object relationship */\n metadata?: Maybe<Fungible_Asset_Metadata>;\n owner_address: Scalars['String']['output'];\n storage_id: Scalars['String']['output'];\n token_standard: Scalars['String']['output'];\n};\n\n/** aggregated selection of \"current_fungible_asset_balances\" */\nexport type Current_Fungible_Asset_Balances_Aggregate = {\n __typename?: 'current_fungible_asset_balances_aggregate';\n aggregate?: Maybe<Current_Fungible_Asset_Balances_Aggregate_Fields>;\n nodes: Array<Current_Fungible_Asset_Balances>;\n};\n\n/** aggregate fields of \"current_fungible_asset_balances\" */\nexport type Current_Fungible_Asset_Balances_Aggregate_Fields = {\n __typename?: 'current_fungible_asset_balances_aggregate_fields';\n avg?: Maybe<Current_Fungible_Asset_Balances_Avg_Fields>;\n count: Scalars['Int']['output'];\n max?: Maybe<Current_Fungible_Asset_Balances_Max_Fields>;\n min?: Maybe<Current_Fungible_Asset_Balances_Min_Fields>;\n stddev?: Maybe<Current_Fungible_Asset_Balances_Stddev_Fields>;\n stddev_pop?: Maybe<Current_Fungible_Asset_Balances_Stddev_Pop_Fields>;\n stddev_samp?: Maybe<Current_Fungible_Asset_Balances_Stddev_Samp_Fields>;\n sum?: Maybe<Current_Fungible_Asset_Balances_Sum_Fields>;\n var_pop?: Maybe<Current_Fungible_Asset_Balances_Var_Pop_Fields>;\n var_samp?: Maybe<Current_Fungible_Asset_Balances_Var_Samp_Fields>;\n variance?: Maybe<Current_Fungible_Asset_Balances_Variance_Fields>;\n};\n\n\n/** aggregate fields of \"current_fungible_asset_balances\" */\nexport type Current_Fungible_Asset_Balances_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Current_Fungible_Asset_Balances_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** aggregate avg on columns */\nexport type Current_Fungible_Asset_Balances_Avg_Fields = {\n __typename?: 'current_fungible_asset_balances_avg_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n amount_v1?: Maybe<Scalars['Float']['output']>;\n amount_v2?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n last_transaction_version_v1?: Maybe<Scalars['Float']['output']>;\n last_transaction_version_v2?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"current_fungible_asset_balances\". All fields are combined with a logical 'AND'. */\nexport type Current_Fungible_Asset_Balances_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Fungible_Asset_Balances_Bool_Exp>>;\n _not?: InputMaybe<Current_Fungible_Asset_Balances_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Fungible_Asset_Balances_Bool_Exp>>;\n amount?: InputMaybe<Numeric_Comparison_Exp>;\n amount_v1?: InputMaybe<Numeric_Comparison_Exp>;\n amount_v2?: InputMaybe<Numeric_Comparison_Exp>;\n asset_type?: InputMaybe<String_Comparison_Exp>;\n asset_type_v1?: InputMaybe<String_Comparison_Exp>;\n asset_type_v2?: InputMaybe<String_Comparison_Exp>;\n is_frozen?: InputMaybe<Boolean_Comparison_Exp>;\n is_primary?: InputMaybe<Boolean_Comparison_Exp>;\n last_transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n last_transaction_timestamp_v1?: InputMaybe<Timestamp_Comparison_Exp>;\n last_transaction_timestamp_v2?: InputMaybe<Timestamp_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n last_transaction_version_v1?: InputMaybe<Bigint_Comparison_Exp>;\n last_transaction_version_v2?: InputMaybe<Bigint_Comparison_Exp>;\n metadata?: InputMaybe<Fungible_Asset_Metadata_Bool_Exp>;\n owner_address?: InputMaybe<String_Comparison_Exp>;\n storage_id?: InputMaybe<String_Comparison_Exp>;\n token_standard?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Current_Fungible_Asset_Balances_Max_Fields = {\n __typename?: 'current_fungible_asset_balances_max_fields';\n amount?: Maybe<Scalars['numeric']['output']>;\n amount_v1?: Maybe<Scalars['numeric']['output']>;\n amount_v2?: Maybe<Scalars['numeric']['output']>;\n asset_type?: Maybe<Scalars['String']['output']>;\n asset_type_v1?: Maybe<Scalars['String']['output']>;\n asset_type_v2?: Maybe<Scalars['String']['output']>;\n last_transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_timestamp_v1?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_timestamp_v2?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n last_transaction_version_v1?: Maybe<Scalars['bigint']['output']>;\n last_transaction_version_v2?: Maybe<Scalars['bigint']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n storage_id?: Maybe<Scalars['String']['output']>;\n token_standard?: Maybe<Scalars['String']['output']>;\n};\n\n/** aggregate min on columns */\nexport type Current_Fungible_Asset_Balances_Min_Fields = {\n __typename?: 'current_fungible_asset_balances_min_fields';\n amount?: Maybe<Scalars['numeric']['output']>;\n amount_v1?: Maybe<Scalars['numeric']['output']>;\n amount_v2?: Maybe<Scalars['numeric']['output']>;\n asset_type?: Maybe<Scalars['String']['output']>;\n asset_type_v1?: Maybe<Scalars['String']['output']>;\n asset_type_v2?: Maybe<Scalars['String']['output']>;\n last_transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_timestamp_v1?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_timestamp_v2?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n last_transaction_version_v1?: Maybe<Scalars['bigint']['output']>;\n last_transaction_version_v2?: Maybe<Scalars['bigint']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n storage_id?: Maybe<Scalars['String']['output']>;\n token_standard?: Maybe<Scalars['String']['output']>;\n};\n\n/** Ordering options when selecting data from \"current_fungible_asset_balances\". */\nexport type Current_Fungible_Asset_Balances_Order_By = {\n amount?: InputMaybe<Order_By>;\n amount_v1?: InputMaybe<Order_By>;\n amount_v2?: InputMaybe<Order_By>;\n asset_type?: InputMaybe<Order_By>;\n asset_type_v1?: InputMaybe<Order_By>;\n asset_type_v2?: InputMaybe<Order_By>;\n is_frozen?: InputMaybe<Order_By>;\n is_primary?: InputMaybe<Order_By>;\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_transaction_timestamp_v1?: InputMaybe<Order_By>;\n last_transaction_timestamp_v2?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n last_transaction_version_v1?: InputMaybe<Order_By>;\n last_transaction_version_v2?: InputMaybe<Order_By>;\n metadata?: InputMaybe<Fungible_Asset_Metadata_Order_By>;\n owner_address?: InputMaybe<Order_By>;\n storage_id?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"current_fungible_asset_balances\" */\nexport enum Current_Fungible_Asset_Balances_Select_Column {\n /** column name */\n Amount = 'amount',\n /** column name */\n AmountV1 = 'amount_v1',\n /** column name */\n AmountV2 = 'amount_v2',\n /** column name */\n AssetType = 'asset_type',\n /** column name */\n AssetTypeV1 = 'asset_type_v1',\n /** column name */\n AssetTypeV2 = 'asset_type_v2',\n /** column name */\n IsFrozen = 'is_frozen',\n /** column name */\n IsPrimary = 'is_primary',\n /** column name */\n LastTransactionTimestamp = 'last_transaction_timestamp',\n /** column name */\n LastTransactionTimestampV1 = 'last_transaction_timestamp_v1',\n /** column name */\n LastTransactionTimestampV2 = 'last_transaction_timestamp_v2',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n LastTransactionVersionV1 = 'last_transaction_version_v1',\n /** column name */\n LastTransactionVersionV2 = 'last_transaction_version_v2',\n /** column name */\n OwnerAddress = 'owner_address',\n /** column name */\n StorageId = 'storage_id',\n /** column name */\n TokenStandard = 'token_standard'\n}\n\n/** aggregate stddev on columns */\nexport type Current_Fungible_Asset_Balances_Stddev_Fields = {\n __typename?: 'current_fungible_asset_balances_stddev_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n amount_v1?: Maybe<Scalars['Float']['output']>;\n amount_v2?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n last_transaction_version_v1?: Maybe<Scalars['Float']['output']>;\n last_transaction_version_v2?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_pop on columns */\nexport type Current_Fungible_Asset_Balances_Stddev_Pop_Fields = {\n __typename?: 'current_fungible_asset_balances_stddev_pop_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n amount_v1?: Maybe<Scalars['Float']['output']>;\n amount_v2?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n last_transaction_version_v1?: Maybe<Scalars['Float']['output']>;\n last_transaction_version_v2?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_samp on columns */\nexport type Current_Fungible_Asset_Balances_Stddev_Samp_Fields = {\n __typename?: 'current_fungible_asset_balances_stddev_samp_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n amount_v1?: Maybe<Scalars['Float']['output']>;\n amount_v2?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n last_transaction_version_v1?: Maybe<Scalars['Float']['output']>;\n last_transaction_version_v2?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Streaming cursor of the table \"current_fungible_asset_balances\" */\nexport type Current_Fungible_Asset_Balances_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Fungible_Asset_Balances_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Fungible_Asset_Balances_Stream_Cursor_Value_Input = {\n amount?: InputMaybe<Scalars['numeric']['input']>;\n amount_v1?: InputMaybe<Scalars['numeric']['input']>;\n amount_v2?: InputMaybe<Scalars['numeric']['input']>;\n asset_type?: InputMaybe<Scalars['String']['input']>;\n asset_type_v1?: InputMaybe<Scalars['String']['input']>;\n asset_type_v2?: InputMaybe<Scalars['String']['input']>;\n is_frozen?: InputMaybe<Scalars['Boolean']['input']>;\n is_primary?: InputMaybe<Scalars['Boolean']['input']>;\n last_transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n last_transaction_timestamp_v1?: InputMaybe<Scalars['timestamp']['input']>;\n last_transaction_timestamp_v2?: InputMaybe<Scalars['timestamp']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n last_transaction_version_v1?: InputMaybe<Scalars['bigint']['input']>;\n last_transaction_version_v2?: InputMaybe<Scalars['bigint']['input']>;\n owner_address?: InputMaybe<Scalars['String']['input']>;\n storage_id?: InputMaybe<Scalars['String']['input']>;\n token_standard?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** aggregate sum on columns */\nexport type Current_Fungible_Asset_Balances_Sum_Fields = {\n __typename?: 'current_fungible_asset_balances_sum_fields';\n amount?: Maybe<Scalars['numeric']['output']>;\n amount_v1?: Maybe<Scalars['numeric']['output']>;\n amount_v2?: Maybe<Scalars['numeric']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n last_transaction_version_v1?: Maybe<Scalars['bigint']['output']>;\n last_transaction_version_v2?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregate var_pop on columns */\nexport type Current_Fungible_Asset_Balances_Var_Pop_Fields = {\n __typename?: 'current_fungible_asset_balances_var_pop_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n amount_v1?: Maybe<Scalars['Float']['output']>;\n amount_v2?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n last_transaction_version_v1?: Maybe<Scalars['Float']['output']>;\n last_transaction_version_v2?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate var_samp on columns */\nexport type Current_Fungible_Asset_Balances_Var_Samp_Fields = {\n __typename?: 'current_fungible_asset_balances_var_samp_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n amount_v1?: Maybe<Scalars['Float']['output']>;\n amount_v2?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n last_transaction_version_v1?: Maybe<Scalars['Float']['output']>;\n last_transaction_version_v2?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate variance on columns */\nexport type Current_Fungible_Asset_Balances_Variance_Fields = {\n __typename?: 'current_fungible_asset_balances_variance_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n amount_v1?: Maybe<Scalars['Float']['output']>;\n amount_v2?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n last_transaction_version_v1?: Maybe<Scalars['Float']['output']>;\n last_transaction_version_v2?: Maybe<Scalars['Float']['output']>;\n};\n\n/** columns and relationships of \"current_objects\" */\nexport type Current_Objects = {\n __typename?: 'current_objects';\n allow_ungated_transfer: Scalars['Boolean']['output'];\n is_deleted: Scalars['Boolean']['output'];\n last_guid_creation_num: Scalars['numeric']['output'];\n last_transaction_version: Scalars['bigint']['output'];\n object_address: Scalars['String']['output'];\n owner_address: Scalars['String']['output'];\n state_key_hash: Scalars['String']['output'];\n};\n\n/** Boolean expression to filter rows from the table \"current_objects\". All fields are combined with a logical 'AND'. */\nexport type Current_Objects_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Objects_Bool_Exp>>;\n _not?: InputMaybe<Current_Objects_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Objects_Bool_Exp>>;\n allow_ungated_transfer?: InputMaybe<Boolean_Comparison_Exp>;\n is_deleted?: InputMaybe<Boolean_Comparison_Exp>;\n last_guid_creation_num?: InputMaybe<Numeric_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n object_address?: InputMaybe<String_Comparison_Exp>;\n owner_address?: InputMaybe<String_Comparison_Exp>;\n state_key_hash?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"current_objects\". */\nexport type Current_Objects_Order_By = {\n allow_ungated_transfer?: InputMaybe<Order_By>;\n is_deleted?: InputMaybe<Order_By>;\n last_guid_creation_num?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n object_address?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n state_key_hash?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"current_objects\" */\nexport enum Current_Objects_Select_Column {\n /** column name */\n AllowUngatedTransfer = 'allow_ungated_transfer',\n /** column name */\n IsDeleted = 'is_deleted',\n /** column name */\n LastGuidCreationNum = 'last_guid_creation_num',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n ObjectAddress = 'object_address',\n /** column name */\n OwnerAddress = 'owner_address',\n /** column name */\n StateKeyHash = 'state_key_hash'\n}\n\n/** Streaming cursor of the table \"current_objects\" */\nexport type Current_Objects_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Objects_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Objects_Stream_Cursor_Value_Input = {\n allow_ungated_transfer?: InputMaybe<Scalars['Boolean']['input']>;\n is_deleted?: InputMaybe<Scalars['Boolean']['input']>;\n last_guid_creation_num?: InputMaybe<Scalars['numeric']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n object_address?: InputMaybe<Scalars['String']['input']>;\n owner_address?: InputMaybe<Scalars['String']['input']>;\n state_key_hash?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"current_staking_pool_voter\" */\nexport type Current_Staking_Pool_Voter = {\n __typename?: 'current_staking_pool_voter';\n last_transaction_version: Scalars['bigint']['output'];\n operator_address: Scalars['String']['output'];\n /** An array relationship */\n operator_aptos_name: Array<Current_Aptos_Names>;\n /** An aggregate relationship */\n operator_aptos_name_aggregate: Current_Aptos_Names_Aggregate;\n staking_pool_address: Scalars['String']['output'];\n voter_address: Scalars['String']['output'];\n};\n\n\n/** columns and relationships of \"current_staking_pool_voter\" */\nexport type Current_Staking_Pool_VoterOperator_Aptos_NameArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"current_staking_pool_voter\" */\nexport type Current_Staking_Pool_VoterOperator_Aptos_Name_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n/** Boolean expression to filter rows from the table \"current_staking_pool_voter\". All fields are combined with a logical 'AND'. */\nexport type Current_Staking_Pool_Voter_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Staking_Pool_Voter_Bool_Exp>>;\n _not?: InputMaybe<Current_Staking_Pool_Voter_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Staking_Pool_Voter_Bool_Exp>>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n operator_address?: InputMaybe<String_Comparison_Exp>;\n operator_aptos_name?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n operator_aptos_name_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Bool_Exp>;\n staking_pool_address?: InputMaybe<String_Comparison_Exp>;\n voter_address?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"current_staking_pool_voter\". */\nexport type Current_Staking_Pool_Voter_Order_By = {\n last_transaction_version?: InputMaybe<Order_By>;\n operator_address?: InputMaybe<Order_By>;\n operator_aptos_name_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Order_By>;\n staking_pool_address?: InputMaybe<Order_By>;\n voter_address?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"current_staking_pool_voter\" */\nexport enum Current_Staking_Pool_Voter_Select_Column {\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n OperatorAddress = 'operator_address',\n /** column name */\n StakingPoolAddress = 'staking_pool_address',\n /** column name */\n VoterAddress = 'voter_address'\n}\n\n/** Streaming cursor of the table \"current_staking_pool_voter\" */\nexport type Current_Staking_Pool_Voter_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Staking_Pool_Voter_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Staking_Pool_Voter_Stream_Cursor_Value_Input = {\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n operator_address?: InputMaybe<Scalars['String']['input']>;\n staking_pool_address?: InputMaybe<Scalars['String']['input']>;\n voter_address?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"current_table_items\" */\nexport type Current_Table_Items = {\n __typename?: 'current_table_items';\n decoded_key: Scalars['jsonb']['output'];\n decoded_value?: Maybe<Scalars['jsonb']['output']>;\n is_deleted: Scalars['Boolean']['output'];\n key: Scalars['String']['output'];\n key_hash: Scalars['String']['output'];\n last_transaction_version: Scalars['bigint']['output'];\n table_handle: Scalars['String']['output'];\n};\n\n\n/** columns and relationships of \"current_table_items\" */\nexport type Current_Table_ItemsDecoded_KeyArgs = {\n path?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** columns and relationships of \"current_table_items\" */\nexport type Current_Table_ItemsDecoded_ValueArgs = {\n path?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Boolean expression to filter rows from the table \"current_table_items\". All fields are combined with a logical 'AND'. */\nexport type Current_Table_Items_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Table_Items_Bool_Exp>>;\n _not?: InputMaybe<Current_Table_Items_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Table_Items_Bool_Exp>>;\n decoded_key?: InputMaybe<Jsonb_Comparison_Exp>;\n decoded_value?: InputMaybe<Jsonb_Comparison_Exp>;\n is_deleted?: InputMaybe<Boolean_Comparison_Exp>;\n key?: InputMaybe<String_Comparison_Exp>;\n key_hash?: InputMaybe<String_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n table_handle?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"current_table_items\". */\nexport type Current_Table_Items_Order_By = {\n decoded_key?: InputMaybe<Order_By>;\n decoded_value?: InputMaybe<Order_By>;\n is_deleted?: InputMaybe<Order_By>;\n key?: InputMaybe<Order_By>;\n key_hash?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n table_handle?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"current_table_items\" */\nexport enum Current_Table_Items_Select_Column {\n /** column name */\n DecodedKey = 'decoded_key',\n /** column name */\n DecodedValue = 'decoded_value',\n /** column name */\n IsDeleted = 'is_deleted',\n /** column name */\n Key = 'key',\n /** column name */\n KeyHash = 'key_hash',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n TableHandle = 'table_handle'\n}\n\n/** Streaming cursor of the table \"current_table_items\" */\nexport type Current_Table_Items_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Table_Items_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Table_Items_Stream_Cursor_Value_Input = {\n decoded_key?: InputMaybe<Scalars['jsonb']['input']>;\n decoded_value?: InputMaybe<Scalars['jsonb']['input']>;\n is_deleted?: InputMaybe<Scalars['Boolean']['input']>;\n key?: InputMaybe<Scalars['String']['input']>;\n key_hash?: InputMaybe<Scalars['String']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n table_handle?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"legacy_migration_v1.current_token_datas\" */\nexport type Current_Token_Datas = {\n __typename?: 'current_token_datas';\n collection_data_id_hash?: Maybe<Scalars['String']['output']>;\n collection_name?: Maybe<Scalars['String']['output']>;\n creator_address?: Maybe<Scalars['String']['output']>;\n /** An object relationship */\n current_collection_data?: Maybe<Current_Collection_Datas>;\n default_properties?: Maybe<Scalars['jsonb']['output']>;\n description?: Maybe<Scalars['String']['output']>;\n description_mutable?: Maybe<Scalars['Boolean']['output']>;\n largest_property_version?: Maybe<Scalars['numeric']['output']>;\n last_transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n maximum?: Maybe<Scalars['numeric']['output']>;\n maximum_mutable?: Maybe<Scalars['Boolean']['output']>;\n metadata_uri?: Maybe<Scalars['String']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n payee_address?: Maybe<Scalars['String']['output']>;\n properties_mutable?: Maybe<Scalars['Boolean']['output']>;\n royalty_mutable?: Maybe<Scalars['Boolean']['output']>;\n royalty_points_denominator?: Maybe<Scalars['numeric']['output']>;\n royalty_points_numerator?: Maybe<Scalars['numeric']['output']>;\n supply?: Maybe<Scalars['numeric']['output']>;\n token_data_id_hash?: Maybe<Scalars['String']['output']>;\n uri_mutable?: Maybe<Scalars['Boolean']['output']>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.current_token_datas\" */\nexport type Current_Token_DatasDefault_PropertiesArgs = {\n path?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Boolean expression to filter rows from the table \"legacy_migration_v1.current_token_datas\". All fields are combined with a logical 'AND'. */\nexport type Current_Token_Datas_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Token_Datas_Bool_Exp>>;\n _not?: InputMaybe<Current_Token_Datas_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Token_Datas_Bool_Exp>>;\n collection_data_id_hash?: InputMaybe<String_Comparison_Exp>;\n collection_name?: InputMaybe<String_Comparison_Exp>;\n creator_address?: InputMaybe<String_Comparison_Exp>;\n current_collection_data?: InputMaybe<Current_Collection_Datas_Bool_Exp>;\n default_properties?: InputMaybe<Jsonb_Comparison_Exp>;\n description?: InputMaybe<String_Comparison_Exp>;\n description_mutable?: InputMaybe<Boolean_Comparison_Exp>;\n largest_property_version?: InputMaybe<Numeric_Comparison_Exp>;\n last_transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n maximum?: InputMaybe<Numeric_Comparison_Exp>;\n maximum_mutable?: InputMaybe<Boolean_Comparison_Exp>;\n metadata_uri?: InputMaybe<String_Comparison_Exp>;\n name?: InputMaybe<String_Comparison_Exp>;\n payee_address?: InputMaybe<String_Comparison_Exp>;\n properties_mutable?: InputMaybe<Boolean_Comparison_Exp>;\n royalty_mutable?: InputMaybe<Boolean_Comparison_Exp>;\n royalty_points_denominator?: InputMaybe<Numeric_Comparison_Exp>;\n royalty_points_numerator?: InputMaybe<Numeric_Comparison_Exp>;\n supply?: InputMaybe<Numeric_Comparison_Exp>;\n token_data_id_hash?: InputMaybe<String_Comparison_Exp>;\n uri_mutable?: InputMaybe<Boolean_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"legacy_migration_v1.current_token_datas\". */\nexport type Current_Token_Datas_Order_By = {\n collection_data_id_hash?: InputMaybe<Order_By>;\n collection_name?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n current_collection_data?: InputMaybe<Current_Collection_Datas_Order_By>;\n default_properties?: InputMaybe<Order_By>;\n description?: InputMaybe<Order_By>;\n description_mutable?: InputMaybe<Order_By>;\n largest_property_version?: InputMaybe<Order_By>;\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n maximum?: InputMaybe<Order_By>;\n maximum_mutable?: InputMaybe<Order_By>;\n metadata_uri?: InputMaybe<Order_By>;\n name?: InputMaybe<Order_By>;\n payee_address?: InputMaybe<Order_By>;\n properties_mutable?: InputMaybe<Order_By>;\n royalty_mutable?: InputMaybe<Order_By>;\n royalty_points_denominator?: InputMaybe<Order_By>;\n royalty_points_numerator?: InputMaybe<Order_By>;\n supply?: InputMaybe<Order_By>;\n token_data_id_hash?: InputMaybe<Order_By>;\n uri_mutable?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"legacy_migration_v1.current_token_datas\" */\nexport enum Current_Token_Datas_Select_Column {\n /** column name */\n CollectionDataIdHash = 'collection_data_id_hash',\n /** column name */\n CollectionName = 'collection_name',\n /** column name */\n CreatorAddress = 'creator_address',\n /** column name */\n DefaultProperties = 'default_properties',\n /** column name */\n Description = 'description',\n /** column name */\n DescriptionMutable = 'description_mutable',\n /** column name */\n LargestPropertyVersion = 'largest_property_version',\n /** column name */\n LastTransactionTimestamp = 'last_transaction_timestamp',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n Maximum = 'maximum',\n /** column name */\n MaximumMutable = 'maximum_mutable',\n /** column name */\n MetadataUri = 'metadata_uri',\n /** column name */\n Name = 'name',\n /** column name */\n PayeeAddress = 'payee_address',\n /** column name */\n PropertiesMutable = 'properties_mutable',\n /** column name */\n RoyaltyMutable = 'royalty_mutable',\n /** column name */\n RoyaltyPointsDenominator = 'royalty_points_denominator',\n /** column name */\n RoyaltyPointsNumerator = 'royalty_points_numerator',\n /** column name */\n Supply = 'supply',\n /** column name */\n TokenDataIdHash = 'token_data_id_hash',\n /** column name */\n UriMutable = 'uri_mutable'\n}\n\n/** Streaming cursor of the table \"current_token_datas\" */\nexport type Current_Token_Datas_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Token_Datas_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Token_Datas_Stream_Cursor_Value_Input = {\n collection_data_id_hash?: InputMaybe<Scalars['String']['input']>;\n collection_name?: InputMaybe<Scalars['String']['input']>;\n creator_address?: InputMaybe<Scalars['String']['input']>;\n default_properties?: InputMaybe<Scalars['jsonb']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n description_mutable?: InputMaybe<Scalars['Boolean']['input']>;\n largest_property_version?: InputMaybe<Scalars['numeric']['input']>;\n last_transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n maximum?: InputMaybe<Scalars['numeric']['input']>;\n maximum_mutable?: InputMaybe<Scalars['Boolean']['input']>;\n metadata_uri?: InputMaybe<Scalars['String']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n payee_address?: InputMaybe<Scalars['String']['input']>;\n properties_mutable?: InputMaybe<Scalars['Boolean']['input']>;\n royalty_mutable?: InputMaybe<Scalars['Boolean']['input']>;\n royalty_points_denominator?: InputMaybe<Scalars['numeric']['input']>;\n royalty_points_numerator?: InputMaybe<Scalars['numeric']['input']>;\n supply?: InputMaybe<Scalars['numeric']['input']>;\n token_data_id_hash?: InputMaybe<Scalars['String']['input']>;\n uri_mutable?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** columns and relationships of \"current_token_datas_v2\" */\nexport type Current_Token_Datas_V2 = {\n __typename?: 'current_token_datas_v2';\n /** An object relationship */\n aptos_name?: Maybe<Current_Aptos_Names>;\n /** An object relationship */\n cdn_asset_uris?: Maybe<Nft_Metadata_Crawler_Parsed_Asset_Uris>;\n collection_id: Scalars['String']['output'];\n /** An object relationship */\n current_collection?: Maybe<Current_Collections_V2>;\n /** An object relationship */\n current_royalty_v1?: Maybe<Current_Token_Royalty_V1>;\n /** An array relationship */\n current_token_ownerships: Array<Current_Token_Ownerships_V2>;\n /** An aggregate relationship */\n current_token_ownerships_aggregate: Current_Token_Ownerships_V2_Aggregate;\n decimals?: Maybe<Scalars['bigint']['output']>;\n description: Scalars['String']['output'];\n is_deleted_v2?: Maybe<Scalars['Boolean']['output']>;\n is_fungible_v2?: Maybe<Scalars['Boolean']['output']>;\n largest_property_version_v1?: Maybe<Scalars['numeric']['output']>;\n last_transaction_timestamp: Scalars['timestamp']['output'];\n last_transaction_version: Scalars['bigint']['output'];\n maximum?: Maybe<Scalars['numeric']['output']>;\n supply?: Maybe<Scalars['numeric']['output']>;\n token_data_id: Scalars['String']['output'];\n token_name: Scalars['String']['output'];\n token_properties: Scalars['jsonb']['output'];\n token_standard: Scalars['String']['output'];\n token_uri: Scalars['String']['output'];\n};\n\n\n/** columns and relationships of \"current_token_datas_v2\" */\nexport type Current_Token_Datas_V2Current_Token_OwnershipsArgs = {\n distinct_on?: InputMaybe<Array<Current_Token_Ownerships_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Ownerships_V2_Order_By>>;\n where?: InputMaybe<Current_Token_Ownerships_V2_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"current_token_datas_v2\" */\nexport type Current_Token_Datas_V2Current_Token_Ownerships_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Token_Ownerships_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Ownerships_V2_Order_By>>;\n where?: InputMaybe<Current_Token_Ownerships_V2_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"current_token_datas_v2\" */\nexport type Current_Token_Datas_V2Token_PropertiesArgs = {\n path?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Boolean expression to filter rows from the table \"current_token_datas_v2\". All fields are combined with a logical 'AND'. */\nexport type Current_Token_Datas_V2_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Token_Datas_V2_Bool_Exp>>;\n _not?: InputMaybe<Current_Token_Datas_V2_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Token_Datas_V2_Bool_Exp>>;\n aptos_name?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n cdn_asset_uris?: InputMaybe<Nft_Metadata_Crawler_Parsed_Asset_Uris_Bool_Exp>;\n collection_id?: InputMaybe<String_Comparison_Exp>;\n current_collection?: InputMaybe<Current_Collections_V2_Bool_Exp>;\n current_royalty_v1?: InputMaybe<Current_Token_Royalty_V1_Bool_Exp>;\n current_token_ownerships?: InputMaybe<Current_Token_Ownerships_V2_Bool_Exp>;\n current_token_ownerships_aggregate?: InputMaybe<Current_Token_Ownerships_V2_Aggregate_Bool_Exp>;\n decimals?: InputMaybe<Bigint_Comparison_Exp>;\n description?: InputMaybe<String_Comparison_Exp>;\n is_deleted_v2?: InputMaybe<Boolean_Comparison_Exp>;\n is_fungible_v2?: InputMaybe<Boolean_Comparison_Exp>;\n largest_property_version_v1?: InputMaybe<Numeric_Comparison_Exp>;\n last_transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n maximum?: InputMaybe<Numeric_Comparison_Exp>;\n supply?: InputMaybe<Numeric_Comparison_Exp>;\n token_data_id?: InputMaybe<String_Comparison_Exp>;\n token_name?: InputMaybe<String_Comparison_Exp>;\n token_properties?: InputMaybe<Jsonb_Comparison_Exp>;\n token_standard?: InputMaybe<String_Comparison_Exp>;\n token_uri?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"current_token_datas_v2\". */\nexport type Current_Token_Datas_V2_Order_By = {\n aptos_name?: InputMaybe<Current_Aptos_Names_Order_By>;\n cdn_asset_uris?: InputMaybe<Nft_Metadata_Crawler_Parsed_Asset_Uris_Order_By>;\n collection_id?: InputMaybe<Order_By>;\n current_collection?: InputMaybe<Current_Collections_V2_Order_By>;\n current_royalty_v1?: InputMaybe<Current_Token_Royalty_V1_Order_By>;\n current_token_ownerships_aggregate?: InputMaybe<Current_Token_Ownerships_V2_Aggregate_Order_By>;\n decimals?: InputMaybe<Order_By>;\n description?: InputMaybe<Order_By>;\n is_deleted_v2?: InputMaybe<Order_By>;\n is_fungible_v2?: InputMaybe<Order_By>;\n largest_property_version_v1?: InputMaybe<Order_By>;\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n maximum?: InputMaybe<Order_By>;\n supply?: InputMaybe<Order_By>;\n token_data_id?: InputMaybe<Order_By>;\n token_name?: InputMaybe<Order_By>;\n token_properties?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n token_uri?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"current_token_datas_v2\" */\nexport enum Current_Token_Datas_V2_Select_Column {\n /** column name */\n CollectionId = 'collection_id',\n /** column name */\n Decimals = 'decimals',\n /** column name */\n Description = 'description',\n /** column name */\n IsDeletedV2 = 'is_deleted_v2',\n /** column name */\n IsFungibleV2 = 'is_fungible_v2',\n /** column name */\n LargestPropertyVersionV1 = 'largest_property_version_v1',\n /** column name */\n LastTransactionTimestamp = 'last_transaction_timestamp',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n Maximum = 'maximum',\n /** column name */\n Supply = 'supply',\n /** column name */\n TokenDataId = 'token_data_id',\n /** column name */\n TokenName = 'token_name',\n /** column name */\n TokenProperties = 'token_properties',\n /** column name */\n TokenStandard = 'token_standard',\n /** column name */\n TokenUri = 'token_uri'\n}\n\n/** Streaming cursor of the table \"current_token_datas_v2\" */\nexport type Current_Token_Datas_V2_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Token_Datas_V2_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Token_Datas_V2_Stream_Cursor_Value_Input = {\n collection_id?: InputMaybe<Scalars['String']['input']>;\n decimals?: InputMaybe<Scalars['bigint']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n is_deleted_v2?: InputMaybe<Scalars['Boolean']['input']>;\n is_fungible_v2?: InputMaybe<Scalars['Boolean']['input']>;\n largest_property_version_v1?: InputMaybe<Scalars['numeric']['input']>;\n last_transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n maximum?: InputMaybe<Scalars['numeric']['input']>;\n supply?: InputMaybe<Scalars['numeric']['input']>;\n token_data_id?: InputMaybe<Scalars['String']['input']>;\n token_name?: InputMaybe<Scalars['String']['input']>;\n token_properties?: InputMaybe<Scalars['jsonb']['input']>;\n token_standard?: InputMaybe<Scalars['String']['input']>;\n token_uri?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"legacy_migration_v1.current_token_ownerships\" */\nexport type Current_Token_Ownerships = {\n __typename?: 'current_token_ownerships';\n amount?: Maybe<Scalars['numeric']['output']>;\n /** An object relationship */\n aptos_name?: Maybe<Current_Aptos_Names>;\n collection_data_id_hash?: Maybe<Scalars['String']['output']>;\n collection_name?: Maybe<Scalars['String']['output']>;\n creator_address?: Maybe<Scalars['String']['output']>;\n /** An object relationship */\n current_collection_data?: Maybe<Current_Collection_Datas>;\n /** An object relationship */\n current_token_data?: Maybe<Current_Token_Datas>;\n last_transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n property_version?: Maybe<Scalars['numeric']['output']>;\n table_type?: Maybe<Scalars['String']['output']>;\n token_data_id_hash?: Maybe<Scalars['String']['output']>;\n token_properties?: Maybe<Scalars['jsonb']['output']>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.current_token_ownerships\" */\nexport type Current_Token_OwnershipsToken_PropertiesArgs = {\n path?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** aggregated selection of \"legacy_migration_v1.current_token_ownerships\" */\nexport type Current_Token_Ownerships_Aggregate = {\n __typename?: 'current_token_ownerships_aggregate';\n aggregate?: Maybe<Current_Token_Ownerships_Aggregate_Fields>;\n nodes: Array<Current_Token_Ownerships>;\n};\n\nexport type Current_Token_Ownerships_Aggregate_Bool_Exp = {\n count?: InputMaybe<Current_Token_Ownerships_Aggregate_Bool_Exp_Count>;\n};\n\nexport type Current_Token_Ownerships_Aggregate_Bool_Exp_Count = {\n arguments?: InputMaybe<Array<Current_Token_Ownerships_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n filter?: InputMaybe<Current_Token_Ownerships_Bool_Exp>;\n predicate: Int_Comparison_Exp;\n};\n\n/** aggregate fields of \"legacy_migration_v1.current_token_ownerships\" */\nexport type Current_Token_Ownerships_Aggregate_Fields = {\n __typename?: 'current_token_ownerships_aggregate_fields';\n avg?: Maybe<Current_Token_Ownerships_Avg_Fields>;\n count: Scalars['Int']['output'];\n max?: Maybe<Current_Token_Ownerships_Max_Fields>;\n min?: Maybe<Current_Token_Ownerships_Min_Fields>;\n stddev?: Maybe<Current_Token_Ownerships_Stddev_Fields>;\n stddev_pop?: Maybe<Current_Token_Ownerships_Stddev_Pop_Fields>;\n stddev_samp?: Maybe<Current_Token_Ownerships_Stddev_Samp_Fields>;\n sum?: Maybe<Current_Token_Ownerships_Sum_Fields>;\n var_pop?: Maybe<Current_Token_Ownerships_Var_Pop_Fields>;\n var_samp?: Maybe<Current_Token_Ownerships_Var_Samp_Fields>;\n variance?: Maybe<Current_Token_Ownerships_Variance_Fields>;\n};\n\n\n/** aggregate fields of \"legacy_migration_v1.current_token_ownerships\" */\nexport type Current_Token_Ownerships_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Current_Token_Ownerships_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** order by aggregate values of table \"legacy_migration_v1.current_token_ownerships\" */\nexport type Current_Token_Ownerships_Aggregate_Order_By = {\n avg?: InputMaybe<Current_Token_Ownerships_Avg_Order_By>;\n count?: InputMaybe<Order_By>;\n max?: InputMaybe<Current_Token_Ownerships_Max_Order_By>;\n min?: InputMaybe<Current_Token_Ownerships_Min_Order_By>;\n stddev?: InputMaybe<Current_Token_Ownerships_Stddev_Order_By>;\n stddev_pop?: InputMaybe<Current_Token_Ownerships_Stddev_Pop_Order_By>;\n stddev_samp?: InputMaybe<Current_Token_Ownerships_Stddev_Samp_Order_By>;\n sum?: InputMaybe<Current_Token_Ownerships_Sum_Order_By>;\n var_pop?: InputMaybe<Current_Token_Ownerships_Var_Pop_Order_By>;\n var_samp?: InputMaybe<Current_Token_Ownerships_Var_Samp_Order_By>;\n variance?: InputMaybe<Current_Token_Ownerships_Variance_Order_By>;\n};\n\n/** aggregate avg on columns */\nexport type Current_Token_Ownerships_Avg_Fields = {\n __typename?: 'current_token_ownerships_avg_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n property_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by avg() on columns of table \"legacy_migration_v1.current_token_ownerships\" */\nexport type Current_Token_Ownerships_Avg_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n};\n\n/** Boolean expression to filter rows from the table \"legacy_migration_v1.current_token_ownerships\". All fields are combined with a logical 'AND'. */\nexport type Current_Token_Ownerships_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Token_Ownerships_Bool_Exp>>;\n _not?: InputMaybe<Current_Token_Ownerships_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Token_Ownerships_Bool_Exp>>;\n amount?: InputMaybe<Numeric_Comparison_Exp>;\n aptos_name?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n collection_data_id_hash?: InputMaybe<String_Comparison_Exp>;\n collection_name?: InputMaybe<String_Comparison_Exp>;\n creator_address?: InputMaybe<String_Comparison_Exp>;\n current_collection_data?: InputMaybe<Current_Collection_Datas_Bool_Exp>;\n current_token_data?: InputMaybe<Current_Token_Datas_Bool_Exp>;\n last_transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n name?: InputMaybe<String_Comparison_Exp>;\n owner_address?: InputMaybe<String_Comparison_Exp>;\n property_version?: InputMaybe<Numeric_Comparison_Exp>;\n table_type?: InputMaybe<String_Comparison_Exp>;\n token_data_id_hash?: InputMaybe<String_Comparison_Exp>;\n token_properties?: InputMaybe<Jsonb_Comparison_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Current_Token_Ownerships_Max_Fields = {\n __typename?: 'current_token_ownerships_max_fields';\n amount?: Maybe<Scalars['numeric']['output']>;\n collection_data_id_hash?: Maybe<Scalars['String']['output']>;\n collection_name?: Maybe<Scalars['String']['output']>;\n creator_address?: Maybe<Scalars['String']['output']>;\n last_transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n property_version?: Maybe<Scalars['numeric']['output']>;\n table_type?: Maybe<Scalars['String']['output']>;\n token_data_id_hash?: Maybe<Scalars['String']['output']>;\n};\n\n/** order by max() on columns of table \"legacy_migration_v1.current_token_ownerships\" */\nexport type Current_Token_Ownerships_Max_Order_By = {\n amount?: InputMaybe<Order_By>;\n collection_data_id_hash?: InputMaybe<Order_By>;\n collection_name?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n name?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n table_type?: InputMaybe<Order_By>;\n token_data_id_hash?: InputMaybe<Order_By>;\n};\n\n/** aggregate min on columns */\nexport type Current_Token_Ownerships_Min_Fields = {\n __typename?: 'current_token_ownerships_min_fields';\n amount?: Maybe<Scalars['numeric']['output']>;\n collection_data_id_hash?: Maybe<Scalars['String']['output']>;\n collection_name?: Maybe<Scalars['String']['output']>;\n creator_address?: Maybe<Scalars['String']['output']>;\n last_transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n property_version?: Maybe<Scalars['numeric']['output']>;\n table_type?: Maybe<Scalars['String']['output']>;\n token_data_id_hash?: Maybe<Scalars['String']['output']>;\n};\n\n/** order by min() on columns of table \"legacy_migration_v1.current_token_ownerships\" */\nexport type Current_Token_Ownerships_Min_Order_By = {\n amount?: InputMaybe<Order_By>;\n collection_data_id_hash?: InputMaybe<Order_By>;\n collection_name?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n name?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n table_type?: InputMaybe<Order_By>;\n token_data_id_hash?: InputMaybe<Order_By>;\n};\n\n/** Ordering options when selecting data from \"legacy_migration_v1.current_token_ownerships\". */\nexport type Current_Token_Ownerships_Order_By = {\n amount?: InputMaybe<Order_By>;\n aptos_name?: InputMaybe<Current_Aptos_Names_Order_By>;\n collection_data_id_hash?: InputMaybe<Order_By>;\n collection_name?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n current_collection_data?: InputMaybe<Current_Collection_Datas_Order_By>;\n current_token_data?: InputMaybe<Current_Token_Datas_Order_By>;\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n name?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n table_type?: InputMaybe<Order_By>;\n token_data_id_hash?: InputMaybe<Order_By>;\n token_properties?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"legacy_migration_v1.current_token_ownerships\" */\nexport enum Current_Token_Ownerships_Select_Column {\n /** column name */\n Amount = 'amount',\n /** column name */\n CollectionDataIdHash = 'collection_data_id_hash',\n /** column name */\n CollectionName = 'collection_name',\n /** column name */\n CreatorAddress = 'creator_address',\n /** column name */\n LastTransactionTimestamp = 'last_transaction_timestamp',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n Name = 'name',\n /** column name */\n OwnerAddress = 'owner_address',\n /** column name */\n PropertyVersion = 'property_version',\n /** column name */\n TableType = 'table_type',\n /** column name */\n TokenDataIdHash = 'token_data_id_hash',\n /** column name */\n TokenProperties = 'token_properties'\n}\n\n/** aggregate stddev on columns */\nexport type Current_Token_Ownerships_Stddev_Fields = {\n __typename?: 'current_token_ownerships_stddev_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n property_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev() on columns of table \"legacy_migration_v1.current_token_ownerships\" */\nexport type Current_Token_Ownerships_Stddev_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate stddev_pop on columns */\nexport type Current_Token_Ownerships_Stddev_Pop_Fields = {\n __typename?: 'current_token_ownerships_stddev_pop_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n property_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev_pop() on columns of table \"legacy_migration_v1.current_token_ownerships\" */\nexport type Current_Token_Ownerships_Stddev_Pop_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate stddev_samp on columns */\nexport type Current_Token_Ownerships_Stddev_Samp_Fields = {\n __typename?: 'current_token_ownerships_stddev_samp_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n property_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev_samp() on columns of table \"legacy_migration_v1.current_token_ownerships\" */\nexport type Current_Token_Ownerships_Stddev_Samp_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n};\n\n/** Streaming cursor of the table \"current_token_ownerships\" */\nexport type Current_Token_Ownerships_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Token_Ownerships_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Token_Ownerships_Stream_Cursor_Value_Input = {\n amount?: InputMaybe<Scalars['numeric']['input']>;\n collection_data_id_hash?: InputMaybe<Scalars['String']['input']>;\n collection_name?: InputMaybe<Scalars['String']['input']>;\n creator_address?: InputMaybe<Scalars['String']['input']>;\n last_transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n owner_address?: InputMaybe<Scalars['String']['input']>;\n property_version?: InputMaybe<Scalars['numeric']['input']>;\n table_type?: InputMaybe<Scalars['String']['input']>;\n token_data_id_hash?: InputMaybe<Scalars['String']['input']>;\n token_properties?: InputMaybe<Scalars['jsonb']['input']>;\n};\n\n/** aggregate sum on columns */\nexport type Current_Token_Ownerships_Sum_Fields = {\n __typename?: 'current_token_ownerships_sum_fields';\n amount?: Maybe<Scalars['numeric']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n property_version?: Maybe<Scalars['numeric']['output']>;\n};\n\n/** order by sum() on columns of table \"legacy_migration_v1.current_token_ownerships\" */\nexport type Current_Token_Ownerships_Sum_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n};\n\n/** columns and relationships of \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2 = {\n __typename?: 'current_token_ownerships_v2';\n amount: Scalars['numeric']['output'];\n /** An array relationship */\n composed_nfts: Array<Current_Token_Ownerships_V2>;\n /** An aggregate relationship */\n composed_nfts_aggregate: Current_Token_Ownerships_V2_Aggregate;\n /** An object relationship */\n current_token_data?: Maybe<Current_Token_Datas_V2>;\n is_fungible_v2?: Maybe<Scalars['Boolean']['output']>;\n is_soulbound_v2?: Maybe<Scalars['Boolean']['output']>;\n last_transaction_timestamp: Scalars['timestamp']['output'];\n last_transaction_version: Scalars['bigint']['output'];\n non_transferrable_by_owner?: Maybe<Scalars['Boolean']['output']>;\n owner_address: Scalars['String']['output'];\n property_version_v1: Scalars['numeric']['output'];\n storage_id: Scalars['String']['output'];\n table_type_v1?: Maybe<Scalars['String']['output']>;\n token_data_id: Scalars['String']['output'];\n token_properties_mutated_v1?: Maybe<Scalars['jsonb']['output']>;\n token_standard: Scalars['String']['output'];\n};\n\n\n/** columns and relationships of \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2Composed_NftsArgs = {\n distinct_on?: InputMaybe<Array<Current_Token_Ownerships_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Ownerships_V2_Order_By>>;\n where?: InputMaybe<Current_Token_Ownerships_V2_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2Composed_Nfts_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Token_Ownerships_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Ownerships_V2_Order_By>>;\n where?: InputMaybe<Current_Token_Ownerships_V2_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2Token_Properties_Mutated_V1Args = {\n path?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** aggregated selection of \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2_Aggregate = {\n __typename?: 'current_token_ownerships_v2_aggregate';\n aggregate?: Maybe<Current_Token_Ownerships_V2_Aggregate_Fields>;\n nodes: Array<Current_Token_Ownerships_V2>;\n};\n\nexport type Current_Token_Ownerships_V2_Aggregate_Bool_Exp = {\n bool_and?: InputMaybe<Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_And>;\n bool_or?: InputMaybe<Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_Or>;\n count?: InputMaybe<Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Count>;\n};\n\nexport type Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_And = {\n arguments: Current_Token_Ownerships_V2_Select_Column_Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_And_Arguments_Columns;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n filter?: InputMaybe<Current_Token_Ownerships_V2_Bool_Exp>;\n predicate: Boolean_Comparison_Exp;\n};\n\nexport type Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_Or = {\n arguments: Current_Token_Ownerships_V2_Select_Column_Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n filter?: InputMaybe<Current_Token_Ownerships_V2_Bool_Exp>;\n predicate: Boolean_Comparison_Exp;\n};\n\nexport type Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Count = {\n arguments?: InputMaybe<Array<Current_Token_Ownerships_V2_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n filter?: InputMaybe<Current_Token_Ownerships_V2_Bool_Exp>;\n predicate: Int_Comparison_Exp;\n};\n\n/** aggregate fields of \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2_Aggregate_Fields = {\n __typename?: 'current_token_ownerships_v2_aggregate_fields';\n avg?: Maybe<Current_Token_Ownerships_V2_Avg_Fields>;\n count: Scalars['Int']['output'];\n max?: Maybe<Current_Token_Ownerships_V2_Max_Fields>;\n min?: Maybe<Current_Token_Ownerships_V2_Min_Fields>;\n stddev?: Maybe<Current_Token_Ownerships_V2_Stddev_Fields>;\n stddev_pop?: Maybe<Current_Token_Ownerships_V2_Stddev_Pop_Fields>;\n stddev_samp?: Maybe<Current_Token_Ownerships_V2_Stddev_Samp_Fields>;\n sum?: Maybe<Current_Token_Ownerships_V2_Sum_Fields>;\n var_pop?: Maybe<Current_Token_Ownerships_V2_Var_Pop_Fields>;\n var_samp?: Maybe<Current_Token_Ownerships_V2_Var_Samp_Fields>;\n variance?: Maybe<Current_Token_Ownerships_V2_Variance_Fields>;\n};\n\n\n/** aggregate fields of \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Current_Token_Ownerships_V2_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** order by aggregate values of table \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2_Aggregate_Order_By = {\n avg?: InputMaybe<Current_Token_Ownerships_V2_Avg_Order_By>;\n count?: InputMaybe<Order_By>;\n max?: InputMaybe<Current_Token_Ownerships_V2_Max_Order_By>;\n min?: InputMaybe<Current_Token_Ownerships_V2_Min_Order_By>;\n stddev?: InputMaybe<Current_Token_Ownerships_V2_Stddev_Order_By>;\n stddev_pop?: InputMaybe<Current_Token_Ownerships_V2_Stddev_Pop_Order_By>;\n stddev_samp?: InputMaybe<Current_Token_Ownerships_V2_Stddev_Samp_Order_By>;\n sum?: InputMaybe<Current_Token_Ownerships_V2_Sum_Order_By>;\n var_pop?: InputMaybe<Current_Token_Ownerships_V2_Var_Pop_Order_By>;\n var_samp?: InputMaybe<Current_Token_Ownerships_V2_Var_Samp_Order_By>;\n variance?: InputMaybe<Current_Token_Ownerships_V2_Variance_Order_By>;\n};\n\n/** aggregate avg on columns */\nexport type Current_Token_Ownerships_V2_Avg_Fields = {\n __typename?: 'current_token_ownerships_v2_avg_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n property_version_v1?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by avg() on columns of table \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2_Avg_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n};\n\n/** Boolean expression to filter rows from the table \"current_token_ownerships_v2\". All fields are combined with a logical 'AND'. */\nexport type Current_Token_Ownerships_V2_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Token_Ownerships_V2_Bool_Exp>>;\n _not?: InputMaybe<Current_Token_Ownerships_V2_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Token_Ownerships_V2_Bool_Exp>>;\n amount?: InputMaybe<Numeric_Comparison_Exp>;\n composed_nfts?: InputMaybe<Current_Token_Ownerships_V2_Bool_Exp>;\n composed_nfts_aggregate?: InputMaybe<Current_Token_Ownerships_V2_Aggregate_Bool_Exp>;\n current_token_data?: InputMaybe<Current_Token_Datas_V2_Bool_Exp>;\n is_fungible_v2?: InputMaybe<Boolean_Comparison_Exp>;\n is_soulbound_v2?: InputMaybe<Boolean_Comparison_Exp>;\n last_transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n non_transferrable_by_owner?: InputMaybe<Boolean_Comparison_Exp>;\n owner_address?: InputMaybe<String_Comparison_Exp>;\n property_version_v1?: InputMaybe<Numeric_Comparison_Exp>;\n storage_id?: InputMaybe<String_Comparison_Exp>;\n table_type_v1?: InputMaybe<String_Comparison_Exp>;\n token_data_id?: InputMaybe<String_Comparison_Exp>;\n token_properties_mutated_v1?: InputMaybe<Jsonb_Comparison_Exp>;\n token_standard?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Current_Token_Ownerships_V2_Max_Fields = {\n __typename?: 'current_token_ownerships_v2_max_fields';\n amount?: Maybe<Scalars['numeric']['output']>;\n last_transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n property_version_v1?: Maybe<Scalars['numeric']['output']>;\n storage_id?: Maybe<Scalars['String']['output']>;\n table_type_v1?: Maybe<Scalars['String']['output']>;\n token_data_id?: Maybe<Scalars['String']['output']>;\n token_standard?: Maybe<Scalars['String']['output']>;\n};\n\n/** order by max() on columns of table \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2_Max_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n storage_id?: InputMaybe<Order_By>;\n table_type_v1?: InputMaybe<Order_By>;\n token_data_id?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n};\n\n/** aggregate min on columns */\nexport type Current_Token_Ownerships_V2_Min_Fields = {\n __typename?: 'current_token_ownerships_v2_min_fields';\n amount?: Maybe<Scalars['numeric']['output']>;\n last_transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n property_version_v1?: Maybe<Scalars['numeric']['output']>;\n storage_id?: Maybe<Scalars['String']['output']>;\n table_type_v1?: Maybe<Scalars['String']['output']>;\n token_data_id?: Maybe<Scalars['String']['output']>;\n token_standard?: Maybe<Scalars['String']['output']>;\n};\n\n/** order by min() on columns of table \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2_Min_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n storage_id?: InputMaybe<Order_By>;\n table_type_v1?: InputMaybe<Order_By>;\n token_data_id?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n};\n\n/** Ordering options when selecting data from \"current_token_ownerships_v2\". */\nexport type Current_Token_Ownerships_V2_Order_By = {\n amount?: InputMaybe<Order_By>;\n composed_nfts_aggregate?: InputMaybe<Current_Token_Ownerships_V2_Aggregate_Order_By>;\n current_token_data?: InputMaybe<Current_Token_Datas_V2_Order_By>;\n is_fungible_v2?: InputMaybe<Order_By>;\n is_soulbound_v2?: InputMaybe<Order_By>;\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n non_transferrable_by_owner?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n storage_id?: InputMaybe<Order_By>;\n table_type_v1?: InputMaybe<Order_By>;\n token_data_id?: InputMaybe<Order_By>;\n token_properties_mutated_v1?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"current_token_ownerships_v2\" */\nexport enum Current_Token_Ownerships_V2_Select_Column {\n /** column name */\n Amount = 'amount',\n /** column name */\n IsFungibleV2 = 'is_fungible_v2',\n /** column name */\n IsSoulboundV2 = 'is_soulbound_v2',\n /** column name */\n LastTransactionTimestamp = 'last_transaction_timestamp',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n NonTransferrableByOwner = 'non_transferrable_by_owner',\n /** column name */\n OwnerAddress = 'owner_address',\n /** column name */\n PropertyVersionV1 = 'property_version_v1',\n /** column name */\n StorageId = 'storage_id',\n /** column name */\n TableTypeV1 = 'table_type_v1',\n /** column name */\n TokenDataId = 'token_data_id',\n /** column name */\n TokenPropertiesMutatedV1 = 'token_properties_mutated_v1',\n /** column name */\n TokenStandard = 'token_standard'\n}\n\n/** select \"current_token_ownerships_v2_aggregate_bool_exp_bool_and_arguments_columns\" columns of table \"current_token_ownerships_v2\" */\nexport enum Current_Token_Ownerships_V2_Select_Column_Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_And_Arguments_Columns {\n /** column name */\n IsFungibleV2 = 'is_fungible_v2',\n /** column name */\n IsSoulboundV2 = 'is_soulbound_v2',\n /** column name */\n NonTransferrableByOwner = 'non_transferrable_by_owner'\n}\n\n/** select \"current_token_ownerships_v2_aggregate_bool_exp_bool_or_arguments_columns\" columns of table \"current_token_ownerships_v2\" */\nexport enum Current_Token_Ownerships_V2_Select_Column_Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns {\n /** column name */\n IsFungibleV2 = 'is_fungible_v2',\n /** column name */\n IsSoulboundV2 = 'is_soulbound_v2',\n /** column name */\n NonTransferrableByOwner = 'non_transferrable_by_owner'\n}\n\n/** aggregate stddev on columns */\nexport type Current_Token_Ownerships_V2_Stddev_Fields = {\n __typename?: 'current_token_ownerships_v2_stddev_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n property_version_v1?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev() on columns of table \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2_Stddev_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n};\n\n/** aggregate stddev_pop on columns */\nexport type Current_Token_Ownerships_V2_Stddev_Pop_Fields = {\n __typename?: 'current_token_ownerships_v2_stddev_pop_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n property_version_v1?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev_pop() on columns of table \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2_Stddev_Pop_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n};\n\n/** aggregate stddev_samp on columns */\nexport type Current_Token_Ownerships_V2_Stddev_Samp_Fields = {\n __typename?: 'current_token_ownerships_v2_stddev_samp_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n property_version_v1?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev_samp() on columns of table \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2_Stddev_Samp_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n};\n\n/** Streaming cursor of the table \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Token_Ownerships_V2_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Token_Ownerships_V2_Stream_Cursor_Value_Input = {\n amount?: InputMaybe<Scalars['numeric']['input']>;\n is_fungible_v2?: InputMaybe<Scalars['Boolean']['input']>;\n is_soulbound_v2?: InputMaybe<Scalars['Boolean']['input']>;\n last_transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n non_transferrable_by_owner?: InputMaybe<Scalars['Boolean']['input']>;\n owner_address?: InputMaybe<Scalars['String']['input']>;\n property_version_v1?: InputMaybe<Scalars['numeric']['input']>;\n storage_id?: InputMaybe<Scalars['String']['input']>;\n table_type_v1?: InputMaybe<Scalars['String']['input']>;\n token_data_id?: InputMaybe<Scalars['String']['input']>;\n token_properties_mutated_v1?: InputMaybe<Scalars['jsonb']['input']>;\n token_standard?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** aggregate sum on columns */\nexport type Current_Token_Ownerships_V2_Sum_Fields = {\n __typename?: 'current_token_ownerships_v2_sum_fields';\n amount?: Maybe<Scalars['numeric']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n property_version_v1?: Maybe<Scalars['numeric']['output']>;\n};\n\n/** order by sum() on columns of table \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2_Sum_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n};\n\n/** aggregate var_pop on columns */\nexport type Current_Token_Ownerships_V2_Var_Pop_Fields = {\n __typename?: 'current_token_ownerships_v2_var_pop_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n property_version_v1?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by var_pop() on columns of table \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2_Var_Pop_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n};\n\n/** aggregate var_samp on columns */\nexport type Current_Token_Ownerships_V2_Var_Samp_Fields = {\n __typename?: 'current_token_ownerships_v2_var_samp_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n property_version_v1?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by var_samp() on columns of table \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2_Var_Samp_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n};\n\n/** aggregate variance on columns */\nexport type Current_Token_Ownerships_V2_Variance_Fields = {\n __typename?: 'current_token_ownerships_v2_variance_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n property_version_v1?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by variance() on columns of table \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2_Variance_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n};\n\n/** aggregate var_pop on columns */\nexport type Current_Token_Ownerships_Var_Pop_Fields = {\n __typename?: 'current_token_ownerships_var_pop_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n property_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by var_pop() on columns of table \"legacy_migration_v1.current_token_ownerships\" */\nexport type Current_Token_Ownerships_Var_Pop_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate var_samp on columns */\nexport type Current_Token_Ownerships_Var_Samp_Fields = {\n __typename?: 'current_token_ownerships_var_samp_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n property_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by var_samp() on columns of table \"legacy_migration_v1.current_token_ownerships\" */\nexport type Current_Token_Ownerships_Var_Samp_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate variance on columns */\nexport type Current_Token_Ownerships_Variance_Fields = {\n __typename?: 'current_token_ownerships_variance_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n property_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by variance() on columns of table \"legacy_migration_v1.current_token_ownerships\" */\nexport type Current_Token_Ownerships_Variance_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n};\n\n/** columns and relationships of \"current_token_pending_claims\" */\nexport type Current_Token_Pending_Claims = {\n __typename?: 'current_token_pending_claims';\n amount: Scalars['numeric']['output'];\n collection_data_id_hash: Scalars['String']['output'];\n collection_id: Scalars['String']['output'];\n collection_name: Scalars['String']['output'];\n creator_address: Scalars['String']['output'];\n /** An object relationship */\n current_collection_data?: Maybe<Current_Collection_Datas>;\n /** An object relationship */\n current_collection_v2?: Maybe<Current_Collections_V2>;\n /** An object relationship */\n current_token_data?: Maybe<Current_Token_Datas>;\n /** An object relationship */\n current_token_data_v2?: Maybe<Current_Token_Datas_V2>;\n from_address: Scalars['String']['output'];\n last_transaction_timestamp: Scalars['timestamp']['output'];\n last_transaction_version: Scalars['bigint']['output'];\n name: Scalars['String']['output'];\n property_version: Scalars['numeric']['output'];\n table_handle: Scalars['String']['output'];\n to_address: Scalars['String']['output'];\n /** An object relationship */\n token?: Maybe<Tokens>;\n token_data_id: Scalars['String']['output'];\n token_data_id_hash: Scalars['String']['output'];\n};\n\n/** Boolean expression to filter rows from the table \"current_token_pending_claims\". All fields are combined with a logical 'AND'. */\nexport type Current_Token_Pending_Claims_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Token_Pending_Claims_Bool_Exp>>;\n _not?: InputMaybe<Current_Token_Pending_Claims_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Token_Pending_Claims_Bool_Exp>>;\n amount?: InputMaybe<Numeric_Comparison_Exp>;\n collection_data_id_hash?: InputMaybe<String_Comparison_Exp>;\n collection_id?: InputMaybe<String_Comparison_Exp>;\n collection_name?: InputMaybe<String_Comparison_Exp>;\n creator_address?: InputMaybe<String_Comparison_Exp>;\n current_collection_data?: InputMaybe<Current_Collection_Datas_Bool_Exp>;\n current_collection_v2?: InputMaybe<Current_Collections_V2_Bool_Exp>;\n current_token_data?: InputMaybe<Current_Token_Datas_Bool_Exp>;\n current_token_data_v2?: InputMaybe<Current_Token_Datas_V2_Bool_Exp>;\n from_address?: InputMaybe<String_Comparison_Exp>;\n last_transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n name?: InputMaybe<String_Comparison_Exp>;\n property_version?: InputMaybe<Numeric_Comparison_Exp>;\n table_handle?: InputMaybe<String_Comparison_Exp>;\n to_address?: InputMaybe<String_Comparison_Exp>;\n token?: InputMaybe<Tokens_Bool_Exp>;\n token_data_id?: InputMaybe<String_Comparison_Exp>;\n token_data_id_hash?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"current_token_pending_claims\". */\nexport type Current_Token_Pending_Claims_Order_By = {\n amount?: InputMaybe<Order_By>;\n collection_data_id_hash?: InputMaybe<Order_By>;\n collection_id?: InputMaybe<Order_By>;\n collection_name?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n current_collection_data?: InputMaybe<Current_Collection_Datas_Order_By>;\n current_collection_v2?: InputMaybe<Current_Collections_V2_Order_By>;\n current_token_data?: InputMaybe<Current_Token_Datas_Order_By>;\n current_token_data_v2?: InputMaybe<Current_Token_Datas_V2_Order_By>;\n from_address?: InputMaybe<Order_By>;\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n name?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n table_handle?: InputMaybe<Order_By>;\n to_address?: InputMaybe<Order_By>;\n token?: InputMaybe<Tokens_Order_By>;\n token_data_id?: InputMaybe<Order_By>;\n token_data_id_hash?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"current_token_pending_claims\" */\nexport enum Current_Token_Pending_Claims_Select_Column {\n /** column name */\n Amount = 'amount',\n /** column name */\n CollectionDataIdHash = 'collection_data_id_hash',\n /** column name */\n CollectionId = 'collection_id',\n /** column name */\n CollectionName = 'collection_name',\n /** column name */\n CreatorAddress = 'creator_address',\n /** column name */\n FromAddress = 'from_address',\n /** column name */\n LastTransactionTimestamp = 'last_transaction_timestamp',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n Name = 'name',\n /** column name */\n PropertyVersion = 'property_version',\n /** column name */\n TableHandle = 'table_handle',\n /** column name */\n ToAddress = 'to_address',\n /** column name */\n TokenDataId = 'token_data_id',\n /** column name */\n TokenDataIdHash = 'token_data_id_hash'\n}\n\n/** Streaming cursor of the table \"current_token_pending_claims\" */\nexport type Current_Token_Pending_Claims_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Token_Pending_Claims_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Token_Pending_Claims_Stream_Cursor_Value_Input = {\n amount?: InputMaybe<Scalars['numeric']['input']>;\n collection_data_id_hash?: InputMaybe<Scalars['String']['input']>;\n collection_id?: InputMaybe<Scalars['String']['input']>;\n collection_name?: InputMaybe<Scalars['String']['input']>;\n creator_address?: InputMaybe<Scalars['String']['input']>;\n from_address?: InputMaybe<Scalars['String']['input']>;\n last_transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n property_version?: InputMaybe<Scalars['numeric']['input']>;\n table_handle?: InputMaybe<Scalars['String']['input']>;\n to_address?: InputMaybe<Scalars['String']['input']>;\n token_data_id?: InputMaybe<Scalars['String']['input']>;\n token_data_id_hash?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"current_token_royalty_v1\" */\nexport type Current_Token_Royalty_V1 = {\n __typename?: 'current_token_royalty_v1';\n last_transaction_timestamp: Scalars['timestamp']['output'];\n last_transaction_version: Scalars['bigint']['output'];\n payee_address: Scalars['String']['output'];\n royalty_points_denominator: Scalars['numeric']['output'];\n royalty_points_numerator: Scalars['numeric']['output'];\n token_data_id: Scalars['String']['output'];\n};\n\n/** Boolean expression to filter rows from the table \"current_token_royalty_v1\". All fields are combined with a logical 'AND'. */\nexport type Current_Token_Royalty_V1_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Token_Royalty_V1_Bool_Exp>>;\n _not?: InputMaybe<Current_Token_Royalty_V1_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Token_Royalty_V1_Bool_Exp>>;\n last_transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n payee_address?: InputMaybe<String_Comparison_Exp>;\n royalty_points_denominator?: InputMaybe<Numeric_Comparison_Exp>;\n royalty_points_numerator?: InputMaybe<Numeric_Comparison_Exp>;\n token_data_id?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"current_token_royalty_v1\". */\nexport type Current_Token_Royalty_V1_Order_By = {\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n payee_address?: InputMaybe<Order_By>;\n royalty_points_denominator?: InputMaybe<Order_By>;\n royalty_points_numerator?: InputMaybe<Order_By>;\n token_data_id?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"current_token_royalty_v1\" */\nexport enum Current_Token_Royalty_V1_Select_Column {\n /** column name */\n LastTransactionTimestamp = 'last_transaction_timestamp',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n PayeeAddress = 'payee_address',\n /** column name */\n RoyaltyPointsDenominator = 'royalty_points_denominator',\n /** column name */\n RoyaltyPointsNumerator = 'royalty_points_numerator',\n /** column name */\n TokenDataId = 'token_data_id'\n}\n\n/** Streaming cursor of the table \"current_token_royalty_v1\" */\nexport type Current_Token_Royalty_V1_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Token_Royalty_V1_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Token_Royalty_V1_Stream_Cursor_Value_Input = {\n last_transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n payee_address?: InputMaybe<Scalars['String']['input']>;\n royalty_points_denominator?: InputMaybe<Scalars['numeric']['input']>;\n royalty_points_numerator?: InputMaybe<Scalars['numeric']['input']>;\n token_data_id?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** ordering argument of a cursor */\nexport enum Cursor_Ordering {\n /** ascending ordering of the cursor */\n Asc = 'ASC',\n /** descending ordering of the cursor */\n Desc = 'DESC'\n}\n\n/** columns and relationships of \"delegated_staking_activities\" */\nexport type Delegated_Staking_Activities = {\n __typename?: 'delegated_staking_activities';\n amount: Scalars['numeric']['output'];\n delegator_address: Scalars['String']['output'];\n event_index: Scalars['bigint']['output'];\n event_type: Scalars['String']['output'];\n pool_address: Scalars['String']['output'];\n transaction_version: Scalars['bigint']['output'];\n};\n\n/** order by aggregate values of table \"delegated_staking_activities\" */\nexport type Delegated_Staking_Activities_Aggregate_Order_By = {\n avg?: InputMaybe<Delegated_Staking_Activities_Avg_Order_By>;\n count?: InputMaybe<Order_By>;\n max?: InputMaybe<Delegated_Staking_Activities_Max_Order_By>;\n min?: InputMaybe<Delegated_Staking_Activities_Min_Order_By>;\n stddev?: InputMaybe<Delegated_Staking_Activities_Stddev_Order_By>;\n stddev_pop?: InputMaybe<Delegated_Staking_Activities_Stddev_Pop_Order_By>;\n stddev_samp?: InputMaybe<Delegated_Staking_Activities_Stddev_Samp_Order_By>;\n sum?: InputMaybe<Delegated_Staking_Activities_Sum_Order_By>;\n var_pop?: InputMaybe<Delegated_Staking_Activities_Var_Pop_Order_By>;\n var_samp?: InputMaybe<Delegated_Staking_Activities_Var_Samp_Order_By>;\n variance?: InputMaybe<Delegated_Staking_Activities_Variance_Order_By>;\n};\n\n/** order by avg() on columns of table \"delegated_staking_activities\" */\nexport type Delegated_Staking_Activities_Avg_Order_By = {\n amount?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** Boolean expression to filter rows from the table \"delegated_staking_activities\". All fields are combined with a logical 'AND'. */\nexport type Delegated_Staking_Activities_Bool_Exp = {\n _and?: InputMaybe<Array<Delegated_Staking_Activities_Bool_Exp>>;\n _not?: InputMaybe<Delegated_Staking_Activities_Bool_Exp>;\n _or?: InputMaybe<Array<Delegated_Staking_Activities_Bool_Exp>>;\n amount?: InputMaybe<Numeric_Comparison_Exp>;\n delegator_address?: InputMaybe<String_Comparison_Exp>;\n event_index?: InputMaybe<Bigint_Comparison_Exp>;\n event_type?: InputMaybe<String_Comparison_Exp>;\n pool_address?: InputMaybe<String_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** order by max() on columns of table \"delegated_staking_activities\" */\nexport type Delegated_Staking_Activities_Max_Order_By = {\n amount?: InputMaybe<Order_By>;\n delegator_address?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_type?: InputMaybe<Order_By>;\n pool_address?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** order by min() on columns of table \"delegated_staking_activities\" */\nexport type Delegated_Staking_Activities_Min_Order_By = {\n amount?: InputMaybe<Order_By>;\n delegator_address?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_type?: InputMaybe<Order_By>;\n pool_address?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** Ordering options when selecting data from \"delegated_staking_activities\". */\nexport type Delegated_Staking_Activities_Order_By = {\n amount?: InputMaybe<Order_By>;\n delegator_address?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_type?: InputMaybe<Order_By>;\n pool_address?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"delegated_staking_activities\" */\nexport enum Delegated_Staking_Activities_Select_Column {\n /** column name */\n Amount = 'amount',\n /** column name */\n DelegatorAddress = 'delegator_address',\n /** column name */\n EventIndex = 'event_index',\n /** column name */\n EventType = 'event_type',\n /** column name */\n PoolAddress = 'pool_address',\n /** column name */\n TransactionVersion = 'transaction_version'\n}\n\n/** order by stddev() on columns of table \"delegated_staking_activities\" */\nexport type Delegated_Staking_Activities_Stddev_Order_By = {\n amount?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** order by stddev_pop() on columns of table \"delegated_staking_activities\" */\nexport type Delegated_Staking_Activities_Stddev_Pop_Order_By = {\n amount?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** order by stddev_samp() on columns of table \"delegated_staking_activities\" */\nexport type Delegated_Staking_Activities_Stddev_Samp_Order_By = {\n amount?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** Streaming cursor of the table \"delegated_staking_activities\" */\nexport type Delegated_Staking_Activities_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Delegated_Staking_Activities_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Delegated_Staking_Activities_Stream_Cursor_Value_Input = {\n amount?: InputMaybe<Scalars['numeric']['input']>;\n delegator_address?: InputMaybe<Scalars['String']['input']>;\n event_index?: InputMaybe<Scalars['bigint']['input']>;\n event_type?: InputMaybe<Scalars['String']['input']>;\n pool_address?: InputMaybe<Scalars['String']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** order by sum() on columns of table \"delegated_staking_activities\" */\nexport type Delegated_Staking_Activities_Sum_Order_By = {\n amount?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** order by var_pop() on columns of table \"delegated_staking_activities\" */\nexport type Delegated_Staking_Activities_Var_Pop_Order_By = {\n amount?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** order by var_samp() on columns of table \"delegated_staking_activities\" */\nexport type Delegated_Staking_Activities_Var_Samp_Order_By = {\n amount?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** order by variance() on columns of table \"delegated_staking_activities\" */\nexport type Delegated_Staking_Activities_Variance_Order_By = {\n amount?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** columns and relationships of \"delegated_staking_pool_balances\" */\nexport type Delegated_Staking_Pool_Balances = {\n __typename?: 'delegated_staking_pool_balances';\n active_table_handle: Scalars['String']['output'];\n inactive_table_handle: Scalars['String']['output'];\n operator_commission_percentage: Scalars['numeric']['output'];\n staking_pool_address: Scalars['String']['output'];\n total_coins: Scalars['numeric']['output'];\n total_shares: Scalars['numeric']['output'];\n transaction_version: Scalars['bigint']['output'];\n};\n\n/** aggregated selection of \"delegated_staking_pool_balances\" */\nexport type Delegated_Staking_Pool_Balances_Aggregate = {\n __typename?: 'delegated_staking_pool_balances_aggregate';\n aggregate?: Maybe<Delegated_Staking_Pool_Balances_Aggregate_Fields>;\n nodes: Array<Delegated_Staking_Pool_Balances>;\n};\n\n/** aggregate fields of \"delegated_staking_pool_balances\" */\nexport type Delegated_Staking_Pool_Balances_Aggregate_Fields = {\n __typename?: 'delegated_staking_pool_balances_aggregate_fields';\n avg?: Maybe<Delegated_Staking_Pool_Balances_Avg_Fields>;\n count: Scalars['Int']['output'];\n max?: Maybe<Delegated_Staking_Pool_Balances_Max_Fields>;\n min?: Maybe<Delegated_Staking_Pool_Balances_Min_Fields>;\n stddev?: Maybe<Delegated_Staking_Pool_Balances_Stddev_Fields>;\n stddev_pop?: Maybe<Delegated_Staking_Pool_Balances_Stddev_Pop_Fields>;\n stddev_samp?: Maybe<Delegated_Staking_Pool_Balances_Stddev_Samp_Fields>;\n sum?: Maybe<Delegated_Staking_Pool_Balances_Sum_Fields>;\n var_pop?: Maybe<Delegated_Staking_Pool_Balances_Var_Pop_Fields>;\n var_samp?: Maybe<Delegated_Staking_Pool_Balances_Var_Samp_Fields>;\n variance?: Maybe<Delegated_Staking_Pool_Balances_Variance_Fields>;\n};\n\n\n/** aggregate fields of \"delegated_staking_pool_balances\" */\nexport type Delegated_Staking_Pool_Balances_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Delegated_Staking_Pool_Balances_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** aggregate avg on columns */\nexport type Delegated_Staking_Pool_Balances_Avg_Fields = {\n __typename?: 'delegated_staking_pool_balances_avg_fields';\n operator_commission_percentage?: Maybe<Scalars['Float']['output']>;\n total_coins?: Maybe<Scalars['Float']['output']>;\n total_shares?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"delegated_staking_pool_balances\". All fields are combined with a logical 'AND'. */\nexport type Delegated_Staking_Pool_Balances_Bool_Exp = {\n _and?: InputMaybe<Array<Delegated_Staking_Pool_Balances_Bool_Exp>>;\n _not?: InputMaybe<Delegated_Staking_Pool_Balances_Bool_Exp>;\n _or?: InputMaybe<Array<Delegated_Staking_Pool_Balances_Bool_Exp>>;\n active_table_handle?: InputMaybe<String_Comparison_Exp>;\n inactive_table_handle?: InputMaybe<String_Comparison_Exp>;\n operator_commission_percentage?: InputMaybe<Numeric_Comparison_Exp>;\n staking_pool_address?: InputMaybe<String_Comparison_Exp>;\n total_coins?: InputMaybe<Numeric_Comparison_Exp>;\n total_shares?: InputMaybe<Numeric_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Delegated_Staking_Pool_Balances_Max_Fields = {\n __typename?: 'delegated_staking_pool_balances_max_fields';\n active_table_handle?: Maybe<Scalars['String']['output']>;\n inactive_table_handle?: Maybe<Scalars['String']['output']>;\n operator_commission_percentage?: Maybe<Scalars['numeric']['output']>;\n staking_pool_address?: Maybe<Scalars['String']['output']>;\n total_coins?: Maybe<Scalars['numeric']['output']>;\n total_shares?: Maybe<Scalars['numeric']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregate min on columns */\nexport type Delegated_Staking_Pool_Balances_Min_Fields = {\n __typename?: 'delegated_staking_pool_balances_min_fields';\n active_table_handle?: Maybe<Scalars['String']['output']>;\n inactive_table_handle?: Maybe<Scalars['String']['output']>;\n operator_commission_percentage?: Maybe<Scalars['numeric']['output']>;\n staking_pool_address?: Maybe<Scalars['String']['output']>;\n total_coins?: Maybe<Scalars['numeric']['output']>;\n total_shares?: Maybe<Scalars['numeric']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** Ordering options when selecting data from \"delegated_staking_pool_balances\". */\nexport type Delegated_Staking_Pool_Balances_Order_By = {\n active_table_handle?: InputMaybe<Order_By>;\n inactive_table_handle?: InputMaybe<Order_By>;\n operator_commission_percentage?: InputMaybe<Order_By>;\n staking_pool_address?: InputMaybe<Order_By>;\n total_coins?: InputMaybe<Order_By>;\n total_shares?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"delegated_staking_pool_balances\" */\nexport enum Delegated_Staking_Pool_Balances_Select_Column {\n /** column name */\n ActiveTableHandle = 'active_table_handle',\n /** column name */\n InactiveTableHandle = 'inactive_table_handle',\n /** column name */\n OperatorCommissionPercentage = 'operator_commission_percentage',\n /** column name */\n StakingPoolAddress = 'staking_pool_address',\n /** column name */\n TotalCoins = 'total_coins',\n /** column name */\n TotalShares = 'total_shares',\n /** column name */\n TransactionVersion = 'transaction_version'\n}\n\n/** aggregate stddev on columns */\nexport type Delegated_Staking_Pool_Balances_Stddev_Fields = {\n __typename?: 'delegated_staking_pool_balances_stddev_fields';\n operator_commission_percentage?: Maybe<Scalars['Float']['output']>;\n total_coins?: Maybe<Scalars['Float']['output']>;\n total_shares?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_pop on columns */\nexport type Delegated_Staking_Pool_Balances_Stddev_Pop_Fields = {\n __typename?: 'delegated_staking_pool_balances_stddev_pop_fields';\n operator_commission_percentage?: Maybe<Scalars['Float']['output']>;\n total_coins?: Maybe<Scalars['Float']['output']>;\n total_shares?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_samp on columns */\nexport type Delegated_Staking_Pool_Balances_Stddev_Samp_Fields = {\n __typename?: 'delegated_staking_pool_balances_stddev_samp_fields';\n operator_commission_percentage?: Maybe<Scalars['Float']['output']>;\n total_coins?: Maybe<Scalars['Float']['output']>;\n total_shares?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Streaming cursor of the table \"delegated_staking_pool_balances\" */\nexport type Delegated_Staking_Pool_Balances_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Delegated_Staking_Pool_Balances_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Delegated_Staking_Pool_Balances_Stream_Cursor_Value_Input = {\n active_table_handle?: InputMaybe<Scalars['String']['input']>;\n inactive_table_handle?: InputMaybe<Scalars['String']['input']>;\n operator_commission_percentage?: InputMaybe<Scalars['numeric']['input']>;\n staking_pool_address?: InputMaybe<Scalars['String']['input']>;\n total_coins?: InputMaybe<Scalars['numeric']['input']>;\n total_shares?: InputMaybe<Scalars['numeric']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** aggregate sum on columns */\nexport type Delegated_Staking_Pool_Balances_Sum_Fields = {\n __typename?: 'delegated_staking_pool_balances_sum_fields';\n operator_commission_percentage?: Maybe<Scalars['numeric']['output']>;\n total_coins?: Maybe<Scalars['numeric']['output']>;\n total_shares?: Maybe<Scalars['numeric']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregate var_pop on columns */\nexport type Delegated_Staking_Pool_Balances_Var_Pop_Fields = {\n __typename?: 'delegated_staking_pool_balances_var_pop_fields';\n operator_commission_percentage?: Maybe<Scalars['Float']['output']>;\n total_coins?: Maybe<Scalars['Float']['output']>;\n total_shares?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate var_samp on columns */\nexport type Delegated_Staking_Pool_Balances_Var_Samp_Fields = {\n __typename?: 'delegated_staking_pool_balances_var_samp_fields';\n operator_commission_percentage?: Maybe<Scalars['Float']['output']>;\n total_coins?: Maybe<Scalars['Float']['output']>;\n total_shares?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate variance on columns */\nexport type Delegated_Staking_Pool_Balances_Variance_Fields = {\n __typename?: 'delegated_staking_pool_balances_variance_fields';\n operator_commission_percentage?: Maybe<Scalars['Float']['output']>;\n total_coins?: Maybe<Scalars['Float']['output']>;\n total_shares?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** columns and relationships of \"delegated_staking_pools\" */\nexport type Delegated_Staking_Pools = {\n __typename?: 'delegated_staking_pools';\n /** An object relationship */\n current_staking_pool?: Maybe<Current_Staking_Pool_Voter>;\n first_transaction_version: Scalars['bigint']['output'];\n staking_pool_address: Scalars['String']['output'];\n};\n\n/** Boolean expression to filter rows from the table \"delegated_staking_pools\". All fields are combined with a logical 'AND'. */\nexport type Delegated_Staking_Pools_Bool_Exp = {\n _and?: InputMaybe<Array<Delegated_Staking_Pools_Bool_Exp>>;\n _not?: InputMaybe<Delegated_Staking_Pools_Bool_Exp>;\n _or?: InputMaybe<Array<Delegated_Staking_Pools_Bool_Exp>>;\n current_staking_pool?: InputMaybe<Current_Staking_Pool_Voter_Bool_Exp>;\n first_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n staking_pool_address?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"delegated_staking_pools\". */\nexport type Delegated_Staking_Pools_Order_By = {\n current_staking_pool?: InputMaybe<Current_Staking_Pool_Voter_Order_By>;\n first_transaction_version?: InputMaybe<Order_By>;\n staking_pool_address?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"delegated_staking_pools\" */\nexport enum Delegated_Staking_Pools_Select_Column {\n /** column name */\n FirstTransactionVersion = 'first_transaction_version',\n /** column name */\n StakingPoolAddress = 'staking_pool_address'\n}\n\n/** Streaming cursor of the table \"delegated_staking_pools\" */\nexport type Delegated_Staking_Pools_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Delegated_Staking_Pools_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Delegated_Staking_Pools_Stream_Cursor_Value_Input = {\n first_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n staking_pool_address?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"delegator_distinct_pool\" */\nexport type Delegator_Distinct_Pool = {\n __typename?: 'delegator_distinct_pool';\n /** An object relationship */\n current_pool_balance?: Maybe<Current_Delegated_Staking_Pool_Balances>;\n delegator_address?: Maybe<Scalars['String']['output']>;\n pool_address?: Maybe<Scalars['String']['output']>;\n /** An object relationship */\n staking_pool_metadata?: Maybe<Current_Staking_Pool_Voter>;\n};\n\n/** aggregated selection of \"delegator_distinct_pool\" */\nexport type Delegator_Distinct_Pool_Aggregate = {\n __typename?: 'delegator_distinct_pool_aggregate';\n aggregate?: Maybe<Delegator_Distinct_Pool_Aggregate_Fields>;\n nodes: Array<Delegator_Distinct_Pool>;\n};\n\n/** aggregate fields of \"delegator_distinct_pool\" */\nexport type Delegator_Distinct_Pool_Aggregate_Fields = {\n __typename?: 'delegator_distinct_pool_aggregate_fields';\n count: Scalars['Int']['output'];\n max?: Maybe<Delegator_Distinct_Pool_Max_Fields>;\n min?: Maybe<Delegator_Distinct_Pool_Min_Fields>;\n};\n\n\n/** aggregate fields of \"delegator_distinct_pool\" */\nexport type Delegator_Distinct_Pool_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Delegator_Distinct_Pool_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** Boolean expression to filter rows from the table \"delegator_distinct_pool\". All fields are combined with a logical 'AND'. */\nexport type Delegator_Distinct_Pool_Bool_Exp = {\n _and?: InputMaybe<Array<Delegator_Distinct_Pool_Bool_Exp>>;\n _not?: InputMaybe<Delegator_Distinct_Pool_Bool_Exp>;\n _or?: InputMaybe<Array<Delegator_Distinct_Pool_Bool_Exp>>;\n current_pool_balance?: InputMaybe<Current_Delegated_Staking_Pool_Balances_Bool_Exp>;\n delegator_address?: InputMaybe<String_Comparison_Exp>;\n pool_address?: InputMaybe<String_Comparison_Exp>;\n staking_pool_metadata?: InputMaybe<Current_Staking_Pool_Voter_Bool_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Delegator_Distinct_Pool_Max_Fields = {\n __typename?: 'delegator_distinct_pool_max_fields';\n delegator_address?: Maybe<Scalars['String']['output']>;\n pool_address?: Maybe<Scalars['String']['output']>;\n};\n\n/** aggregate min on columns */\nexport type Delegator_Distinct_Pool_Min_Fields = {\n __typename?: 'delegator_distinct_pool_min_fields';\n delegator_address?: Maybe<Scalars['String']['output']>;\n pool_address?: Maybe<Scalars['String']['output']>;\n};\n\n/** Ordering options when selecting data from \"delegator_distinct_pool\". */\nexport type Delegator_Distinct_Pool_Order_By = {\n current_pool_balance?: InputMaybe<Current_Delegated_Staking_Pool_Balances_Order_By>;\n delegator_address?: InputMaybe<Order_By>;\n pool_address?: InputMaybe<Order_By>;\n staking_pool_metadata?: InputMaybe<Current_Staking_Pool_Voter_Order_By>;\n};\n\n/** select columns of table \"delegator_distinct_pool\" */\nexport enum Delegator_Distinct_Pool_Select_Column {\n /** column name */\n DelegatorAddress = 'delegator_address',\n /** column name */\n PoolAddress = 'pool_address'\n}\n\n/** Streaming cursor of the table \"delegator_distinct_pool\" */\nexport type Delegator_Distinct_Pool_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Delegator_Distinct_Pool_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Delegator_Distinct_Pool_Stream_Cursor_Value_Input = {\n delegator_address?: InputMaybe<Scalars['String']['input']>;\n pool_address?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"events\" */\nexport type Events = {\n __typename?: 'events';\n account_address: Scalars['String']['output'];\n creation_number: Scalars['bigint']['output'];\n data: Scalars['jsonb']['output'];\n event_index: Scalars['bigint']['output'];\n indexed_type: Scalars['String']['output'];\n sequence_number: Scalars['bigint']['output'];\n transaction_block_height: Scalars['bigint']['output'];\n transaction_version: Scalars['bigint']['output'];\n type: Scalars['String']['output'];\n};\n\n\n/** columns and relationships of \"events\" */\nexport type EventsDataArgs = {\n path?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Boolean expression to filter rows from the table \"events\". All fields are combined with a logical 'AND'. */\nexport type Events_Bool_Exp = {\n _and?: InputMaybe<Array<Events_Bool_Exp>>;\n _not?: InputMaybe<Events_Bool_Exp>;\n _or?: InputMaybe<Array<Events_Bool_Exp>>;\n account_address?: InputMaybe<String_Comparison_Exp>;\n creation_number?: InputMaybe<Bigint_Comparison_Exp>;\n data?: InputMaybe<Jsonb_Comparison_Exp>;\n event_index?: InputMaybe<Bigint_Comparison_Exp>;\n indexed_type?: InputMaybe<String_Comparison_Exp>;\n sequence_number?: InputMaybe<Bigint_Comparison_Exp>;\n transaction_block_height?: InputMaybe<Bigint_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n type?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"events\". */\nexport type Events_Order_By = {\n account_address?: InputMaybe<Order_By>;\n creation_number?: InputMaybe<Order_By>;\n data?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n indexed_type?: InputMaybe<Order_By>;\n sequence_number?: InputMaybe<Order_By>;\n transaction_block_height?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n type?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"events\" */\nexport enum Events_Select_Column {\n /** column name */\n AccountAddress = 'account_address',\n /** column name */\n CreationNumber = 'creation_number',\n /** column name */\n Data = 'data',\n /** column name */\n EventIndex = 'event_index',\n /** column name */\n IndexedType = 'indexed_type',\n /** column name */\n SequenceNumber = 'sequence_number',\n /** column name */\n TransactionBlockHeight = 'transaction_block_height',\n /** column name */\n TransactionVersion = 'transaction_version',\n /** column name */\n Type = 'type'\n}\n\n/** Streaming cursor of the table \"events\" */\nexport type Events_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Events_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Events_Stream_Cursor_Value_Input = {\n account_address?: InputMaybe<Scalars['String']['input']>;\n creation_number?: InputMaybe<Scalars['bigint']['input']>;\n data?: InputMaybe<Scalars['jsonb']['input']>;\n event_index?: InputMaybe<Scalars['bigint']['input']>;\n indexed_type?: InputMaybe<Scalars['String']['input']>;\n sequence_number?: InputMaybe<Scalars['bigint']['input']>;\n transaction_block_height?: InputMaybe<Scalars['bigint']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"fungible_asset_activities\" */\nexport type Fungible_Asset_Activities = {\n __typename?: 'fungible_asset_activities';\n amount?: Maybe<Scalars['numeric']['output']>;\n asset_type?: Maybe<Scalars['String']['output']>;\n block_height: Scalars['bigint']['output'];\n entry_function_id_str?: Maybe<Scalars['String']['output']>;\n event_index: Scalars['bigint']['output'];\n gas_fee_payer_address?: Maybe<Scalars['String']['output']>;\n is_frozen?: Maybe<Scalars['Boolean']['output']>;\n is_gas_fee: Scalars['Boolean']['output'];\n is_transaction_success: Scalars['Boolean']['output'];\n /** An object relationship */\n metadata?: Maybe<Fungible_Asset_Metadata>;\n owner_address?: Maybe<Scalars['String']['output']>;\n /** An array relationship */\n owner_aptos_names: Array<Current_Aptos_Names>;\n /** An aggregate relationship */\n owner_aptos_names_aggregate: Current_Aptos_Names_Aggregate;\n storage_id: Scalars['String']['output'];\n storage_refund_amount: Scalars['numeric']['output'];\n token_standard: Scalars['String']['output'];\n transaction_timestamp: Scalars['timestamp']['output'];\n transaction_version: Scalars['bigint']['output'];\n type: Scalars['String']['output'];\n};\n\n\n/** columns and relationships of \"fungible_asset_activities\" */\nexport type Fungible_Asset_ActivitiesOwner_Aptos_NamesArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"fungible_asset_activities\" */\nexport type Fungible_Asset_ActivitiesOwner_Aptos_Names_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n/** order by aggregate values of table \"fungible_asset_activities\" */\nexport type Fungible_Asset_Activities_Aggregate_Order_By = {\n avg?: InputMaybe<Fungible_Asset_Activities_Avg_Order_By>;\n count?: InputMaybe<Order_By>;\n max?: InputMaybe<Fungible_Asset_Activities_Max_Order_By>;\n min?: InputMaybe<Fungible_Asset_Activities_Min_Order_By>;\n stddev?: InputMaybe<Fungible_Asset_Activities_Stddev_Order_By>;\n stddev_pop?: InputMaybe<Fungible_Asset_Activities_Stddev_Pop_Order_By>;\n stddev_samp?: InputMaybe<Fungible_Asset_Activities_Stddev_Samp_Order_By>;\n sum?: InputMaybe<Fungible_Asset_Activities_Sum_Order_By>;\n var_pop?: InputMaybe<Fungible_Asset_Activities_Var_Pop_Order_By>;\n var_samp?: InputMaybe<Fungible_Asset_Activities_Var_Samp_Order_By>;\n variance?: InputMaybe<Fungible_Asset_Activities_Variance_Order_By>;\n};\n\n/** order by avg() on columns of table \"fungible_asset_activities\" */\nexport type Fungible_Asset_Activities_Avg_Order_By = {\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** Boolean expression to filter rows from the table \"fungible_asset_activities\". All fields are combined with a logical 'AND'. */\nexport type Fungible_Asset_Activities_Bool_Exp = {\n _and?: InputMaybe<Array<Fungible_Asset_Activities_Bool_Exp>>;\n _not?: InputMaybe<Fungible_Asset_Activities_Bool_Exp>;\n _or?: InputMaybe<Array<Fungible_Asset_Activities_Bool_Exp>>;\n amount?: InputMaybe<Numeric_Comparison_Exp>;\n asset_type?: InputMaybe<String_Comparison_Exp>;\n block_height?: InputMaybe<Bigint_Comparison_Exp>;\n entry_function_id_str?: InputMaybe<String_Comparison_Exp>;\n event_index?: InputMaybe<Bigint_Comparison_Exp>;\n gas_fee_payer_address?: InputMaybe<String_Comparison_Exp>;\n is_frozen?: InputMaybe<Boolean_Comparison_Exp>;\n is_gas_fee?: InputMaybe<Boolean_Comparison_Exp>;\n is_transaction_success?: InputMaybe<Boolean_Comparison_Exp>;\n metadata?: InputMaybe<Fungible_Asset_Metadata_Bool_Exp>;\n owner_address?: InputMaybe<String_Comparison_Exp>;\n owner_aptos_names?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n owner_aptos_names_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Bool_Exp>;\n storage_id?: InputMaybe<String_Comparison_Exp>;\n storage_refund_amount?: InputMaybe<Numeric_Comparison_Exp>;\n token_standard?: InputMaybe<String_Comparison_Exp>;\n transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n type?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** order by max() on columns of table \"fungible_asset_activities\" */\nexport type Fungible_Asset_Activities_Max_Order_By = {\n amount?: InputMaybe<Order_By>;\n asset_type?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n entry_function_id_str?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n gas_fee_payer_address?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n storage_id?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n type?: InputMaybe<Order_By>;\n};\n\n/** order by min() on columns of table \"fungible_asset_activities\" */\nexport type Fungible_Asset_Activities_Min_Order_By = {\n amount?: InputMaybe<Order_By>;\n asset_type?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n entry_function_id_str?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n gas_fee_payer_address?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n storage_id?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n type?: InputMaybe<Order_By>;\n};\n\n/** Ordering options when selecting data from \"fungible_asset_activities\". */\nexport type Fungible_Asset_Activities_Order_By = {\n amount?: InputMaybe<Order_By>;\n asset_type?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n entry_function_id_str?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n gas_fee_payer_address?: InputMaybe<Order_By>;\n is_frozen?: InputMaybe<Order_By>;\n is_gas_fee?: InputMaybe<Order_By>;\n is_transaction_success?: InputMaybe<Order_By>;\n metadata?: InputMaybe<Fungible_Asset_Metadata_Order_By>;\n owner_address?: InputMaybe<Order_By>;\n owner_aptos_names_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Order_By>;\n storage_id?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n type?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"fungible_asset_activities\" */\nexport enum Fungible_Asset_Activities_Select_Column {\n /** column name */\n Amount = 'amount',\n /** column name */\n AssetType = 'asset_type',\n /** column name */\n BlockHeight = 'block_height',\n /** column name */\n EntryFunctionIdStr = 'entry_function_id_str',\n /** column name */\n EventIndex = 'event_index',\n /** column name */\n GasFeePayerAddress = 'gas_fee_payer_address',\n /** column name */\n IsFrozen = 'is_frozen',\n /** column name */\n IsGasFee = 'is_gas_fee',\n /** column name */\n IsTransactionSuccess = 'is_transaction_success',\n /** column name */\n OwnerAddress = 'owner_address',\n /** column name */\n StorageId = 'storage_id',\n /** column name */\n StorageRefundAmount = 'storage_refund_amount',\n /** column name */\n TokenStandard = 'token_standard',\n /** column name */\n TransactionTimestamp = 'transaction_timestamp',\n /** column name */\n TransactionVersion = 'transaction_version',\n /** column name */\n Type = 'type'\n}\n\n/** order by stddev() on columns of table \"fungible_asset_activities\" */\nexport type Fungible_Asset_Activities_Stddev_Order_By = {\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** order by stddev_pop() on columns of table \"fungible_asset_activities\" */\nexport type Fungible_Asset_Activities_Stddev_Pop_Order_By = {\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** order by stddev_samp() on columns of table \"fungible_asset_activities\" */\nexport type Fungible_Asset_Activities_Stddev_Samp_Order_By = {\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** Streaming cursor of the table \"fungible_asset_activities\" */\nexport type Fungible_Asset_Activities_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Fungible_Asset_Activities_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Fungible_Asset_Activities_Stream_Cursor_Value_Input = {\n amount?: InputMaybe<Scalars['numeric']['input']>;\n asset_type?: InputMaybe<Scalars['String']['input']>;\n block_height?: InputMaybe<Scalars['bigint']['input']>;\n entry_function_id_str?: InputMaybe<Scalars['String']['input']>;\n event_index?: InputMaybe<Scalars['bigint']['input']>;\n gas_fee_payer_address?: InputMaybe<Scalars['String']['input']>;\n is_frozen?: InputMaybe<Scalars['Boolean']['input']>;\n is_gas_fee?: InputMaybe<Scalars['Boolean']['input']>;\n is_transaction_success?: InputMaybe<Scalars['Boolean']['input']>;\n owner_address?: InputMaybe<Scalars['String']['input']>;\n storage_id?: InputMaybe<Scalars['String']['input']>;\n storage_refund_amount?: InputMaybe<Scalars['numeric']['input']>;\n token_standard?: InputMaybe<Scalars['String']['input']>;\n transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** order by sum() on columns of table \"fungible_asset_activities\" */\nexport type Fungible_Asset_Activities_Sum_Order_By = {\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** order by var_pop() on columns of table \"fungible_asset_activities\" */\nexport type Fungible_Asset_Activities_Var_Pop_Order_By = {\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** order by var_samp() on columns of table \"fungible_asset_activities\" */\nexport type Fungible_Asset_Activities_Var_Samp_Order_By = {\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** order by variance() on columns of table \"fungible_asset_activities\" */\nexport type Fungible_Asset_Activities_Variance_Order_By = {\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** columns and relationships of \"fungible_asset_metadata\" */\nexport type Fungible_Asset_Metadata = {\n __typename?: 'fungible_asset_metadata';\n asset_type: Scalars['String']['output'];\n creator_address: Scalars['String']['output'];\n decimals: Scalars['Int']['output'];\n icon_uri?: Maybe<Scalars['String']['output']>;\n last_transaction_timestamp: Scalars['timestamp']['output'];\n last_transaction_version: Scalars['bigint']['output'];\n maximum_v2?: Maybe<Scalars['numeric']['output']>;\n name: Scalars['String']['output'];\n project_uri?: Maybe<Scalars['String']['output']>;\n supply_aggregator_table_handle_v1?: Maybe<Scalars['String']['output']>;\n supply_aggregator_table_key_v1?: Maybe<Scalars['String']['output']>;\n supply_v2?: Maybe<Scalars['numeric']['output']>;\n symbol: Scalars['String']['output'];\n token_standard: Scalars['String']['output'];\n};\n\n/** Boolean expression to filter rows from the table \"fungible_asset_metadata\". All fields are combined with a logical 'AND'. */\nexport type Fungible_Asset_Metadata_Bool_Exp = {\n _and?: InputMaybe<Array<Fungible_Asset_Metadata_Bool_Exp>>;\n _not?: InputMaybe<Fungible_Asset_Metadata_Bool_Exp>;\n _or?: InputMaybe<Array<Fungible_Asset_Metadata_Bool_Exp>>;\n asset_type?: InputMaybe<String_Comparison_Exp>;\n creator_address?: InputMaybe<String_Comparison_Exp>;\n decimals?: InputMaybe<Int_Comparison_Exp>;\n icon_uri?: InputMaybe<String_Comparison_Exp>;\n last_transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n maximum_v2?: InputMaybe<Numeric_Comparison_Exp>;\n name?: InputMaybe<String_Comparison_Exp>;\n project_uri?: InputMaybe<String_Comparison_Exp>;\n supply_aggregator_table_handle_v1?: InputMaybe<String_Comparison_Exp>;\n supply_aggregator_table_key_v1?: InputMaybe<String_Comparison_Exp>;\n supply_v2?: InputMaybe<Numeric_Comparison_Exp>;\n symbol?: InputMaybe<String_Comparison_Exp>;\n token_standard?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"fungible_asset_metadata\". */\nexport type Fungible_Asset_Metadata_Order_By = {\n asset_type?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n decimals?: InputMaybe<Order_By>;\n icon_uri?: InputMaybe<Order_By>;\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n maximum_v2?: InputMaybe<Order_By>;\n name?: InputMaybe<Order_By>;\n project_uri?: InputMaybe<Order_By>;\n supply_aggregator_table_handle_v1?: InputMaybe<Order_By>;\n supply_aggregator_table_key_v1?: InputMaybe<Order_By>;\n supply_v2?: InputMaybe<Order_By>;\n symbol?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"fungible_asset_metadata\" */\nexport enum Fungible_Asset_Metadata_Select_Column {\n /** column name */\n AssetType = 'asset_type',\n /** column name */\n CreatorAddress = 'creator_address',\n /** column name */\n Decimals = 'decimals',\n /** column name */\n IconUri = 'icon_uri',\n /** column name */\n LastTransactionTimestamp = 'last_transaction_timestamp',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n MaximumV2 = 'maximum_v2',\n /** column name */\n Name = 'name',\n /** column name */\n ProjectUri = 'project_uri',\n /** column name */\n SupplyAggregatorTableHandleV1 = 'supply_aggregator_table_handle_v1',\n /** column name */\n SupplyAggregatorTableKeyV1 = 'supply_aggregator_table_key_v1',\n /** column name */\n SupplyV2 = 'supply_v2',\n /** column name */\n Symbol = 'symbol',\n /** column name */\n TokenStandard = 'token_standard'\n}\n\n/** Streaming cursor of the table \"fungible_asset_metadata\" */\nexport type Fungible_Asset_Metadata_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Fungible_Asset_Metadata_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Fungible_Asset_Metadata_Stream_Cursor_Value_Input = {\n asset_type?: InputMaybe<Scalars['String']['input']>;\n creator_address?: InputMaybe<Scalars['String']['input']>;\n decimals?: InputMaybe<Scalars['Int']['input']>;\n icon_uri?: InputMaybe<Scalars['String']['input']>;\n last_transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n maximum_v2?: InputMaybe<Scalars['numeric']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n project_uri?: InputMaybe<Scalars['String']['input']>;\n supply_aggregator_table_handle_v1?: InputMaybe<Scalars['String']['input']>;\n supply_aggregator_table_key_v1?: InputMaybe<Scalars['String']['input']>;\n supply_v2?: InputMaybe<Scalars['numeric']['input']>;\n symbol?: InputMaybe<Scalars['String']['input']>;\n token_standard?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"indexer_status\" */\nexport type Indexer_Status = {\n __typename?: 'indexer_status';\n db: Scalars['String']['output'];\n is_indexer_up: Scalars['Boolean']['output'];\n};\n\n/** Boolean expression to filter rows from the table \"indexer_status\". All fields are combined with a logical 'AND'. */\nexport type Indexer_Status_Bool_Exp = {\n _and?: InputMaybe<Array<Indexer_Status_Bool_Exp>>;\n _not?: InputMaybe<Indexer_Status_Bool_Exp>;\n _or?: InputMaybe<Array<Indexer_Status_Bool_Exp>>;\n db?: InputMaybe<String_Comparison_Exp>;\n is_indexer_up?: InputMaybe<Boolean_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"indexer_status\". */\nexport type Indexer_Status_Order_By = {\n db?: InputMaybe<Order_By>;\n is_indexer_up?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"indexer_status\" */\nexport enum Indexer_Status_Select_Column {\n /** column name */\n Db = 'db',\n /** column name */\n IsIndexerUp = 'is_indexer_up'\n}\n\n/** Streaming cursor of the table \"indexer_status\" */\nexport type Indexer_Status_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Indexer_Status_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Indexer_Status_Stream_Cursor_Value_Input = {\n db?: InputMaybe<Scalars['String']['input']>;\n is_indexer_up?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\nexport type Jsonb_Cast_Exp = {\n String?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Boolean expression to compare columns of type \"jsonb\". All fields are combined with logical 'AND'. */\nexport type Jsonb_Comparison_Exp = {\n _cast?: InputMaybe<Jsonb_Cast_Exp>;\n /** is the column contained in the given json value */\n _contained_in?: InputMaybe<Scalars['jsonb']['input']>;\n /** does the column contain the given json value at the top level */\n _contains?: InputMaybe<Scalars['jsonb']['input']>;\n _eq?: InputMaybe<Scalars['jsonb']['input']>;\n _gt?: InputMaybe<Scalars['jsonb']['input']>;\n _gte?: InputMaybe<Scalars['jsonb']['input']>;\n /** does the string exist as a top-level key in the column */\n _has_key?: InputMaybe<Scalars['String']['input']>;\n /** do all of these strings exist as top-level keys in the column */\n _has_keys_all?: InputMaybe<Array<Scalars['String']['input']>>;\n /** do any of these strings exist as top-level keys in the column */\n _has_keys_any?: InputMaybe<Array<Scalars['String']['input']>>;\n _in?: InputMaybe<Array<Scalars['jsonb']['input']>>;\n _is_null?: InputMaybe<Scalars['Boolean']['input']>;\n _lt?: InputMaybe<Scalars['jsonb']['input']>;\n _lte?: InputMaybe<Scalars['jsonb']['input']>;\n _neq?: InputMaybe<Scalars['jsonb']['input']>;\n _nin?: InputMaybe<Array<Scalars['jsonb']['input']>>;\n};\n\n/** columns and relationships of \"processor_metadata.ledger_infos\" */\nexport type Ledger_Infos = {\n __typename?: 'ledger_infos';\n chain_id: Scalars['bigint']['output'];\n};\n\n/** Boolean expression to filter rows from the table \"processor_metadata.ledger_infos\". All fields are combined with a logical 'AND'. */\nexport type Ledger_Infos_Bool_Exp = {\n _and?: InputMaybe<Array<Ledger_Infos_Bool_Exp>>;\n _not?: InputMaybe<Ledger_Infos_Bool_Exp>;\n _or?: InputMaybe<Array<Ledger_Infos_Bool_Exp>>;\n chain_id?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"processor_metadata.ledger_infos\". */\nexport type Ledger_Infos_Order_By = {\n chain_id?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"processor_metadata.ledger_infos\" */\nexport enum Ledger_Infos_Select_Column {\n /** column name */\n ChainId = 'chain_id'\n}\n\n/** Streaming cursor of the table \"ledger_infos\" */\nexport type Ledger_Infos_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Ledger_Infos_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Ledger_Infos_Stream_Cursor_Value_Input = {\n chain_id?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** columns and relationships of \"legacy_migration_v1.move_resources\" */\nexport type Move_Resources = {\n __typename?: 'move_resources';\n address?: Maybe<Scalars['String']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregated selection of \"legacy_migration_v1.move_resources\" */\nexport type Move_Resources_Aggregate = {\n __typename?: 'move_resources_aggregate';\n aggregate?: Maybe<Move_Resources_Aggregate_Fields>;\n nodes: Array<Move_Resources>;\n};\n\n/** aggregate fields of \"legacy_migration_v1.move_resources\" */\nexport type Move_Resources_Aggregate_Fields = {\n __typename?: 'move_resources_aggregate_fields';\n avg?: Maybe<Move_Resources_Avg_Fields>;\n count: Scalars['Int']['output'];\n max?: Maybe<Move_Resources_Max_Fields>;\n min?: Maybe<Move_Resources_Min_Fields>;\n stddev?: Maybe<Move_Resources_Stddev_Fields>;\n stddev_pop?: Maybe<Move_Resources_Stddev_Pop_Fields>;\n stddev_samp?: Maybe<Move_Resources_Stddev_Samp_Fields>;\n sum?: Maybe<Move_Resources_Sum_Fields>;\n var_pop?: Maybe<Move_Resources_Var_Pop_Fields>;\n var_samp?: Maybe<Move_Resources_Var_Samp_Fields>;\n variance?: Maybe<Move_Resources_Variance_Fields>;\n};\n\n\n/** aggregate fields of \"legacy_migration_v1.move_resources\" */\nexport type Move_Resources_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Move_Resources_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** aggregate avg on columns */\nexport type Move_Resources_Avg_Fields = {\n __typename?: 'move_resources_avg_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"legacy_migration_v1.move_resources\". All fields are combined with a logical 'AND'. */\nexport type Move_Resources_Bool_Exp = {\n _and?: InputMaybe<Array<Move_Resources_Bool_Exp>>;\n _not?: InputMaybe<Move_Resources_Bool_Exp>;\n _or?: InputMaybe<Array<Move_Resources_Bool_Exp>>;\n address?: InputMaybe<String_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Move_Resources_Max_Fields = {\n __typename?: 'move_resources_max_fields';\n address?: Maybe<Scalars['String']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregate min on columns */\nexport type Move_Resources_Min_Fields = {\n __typename?: 'move_resources_min_fields';\n address?: Maybe<Scalars['String']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** Ordering options when selecting data from \"legacy_migration_v1.move_resources\". */\nexport type Move_Resources_Order_By = {\n address?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"legacy_migration_v1.move_resources\" */\nexport enum Move_Resources_Select_Column {\n /** column name */\n Address = 'address',\n /** column name */\n TransactionVersion = 'transaction_version'\n}\n\n/** aggregate stddev on columns */\nexport type Move_Resources_Stddev_Fields = {\n __typename?: 'move_resources_stddev_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_pop on columns */\nexport type Move_Resources_Stddev_Pop_Fields = {\n __typename?: 'move_resources_stddev_pop_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_samp on columns */\nexport type Move_Resources_Stddev_Samp_Fields = {\n __typename?: 'move_resources_stddev_samp_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Streaming cursor of the table \"move_resources\" */\nexport type Move_Resources_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Move_Resources_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Move_Resources_Stream_Cursor_Value_Input = {\n address?: InputMaybe<Scalars['String']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** aggregate sum on columns */\nexport type Move_Resources_Sum_Fields = {\n __typename?: 'move_resources_sum_fields';\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregate var_pop on columns */\nexport type Move_Resources_Var_Pop_Fields = {\n __typename?: 'move_resources_var_pop_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate var_samp on columns */\nexport type Move_Resources_Var_Samp_Fields = {\n __typename?: 'move_resources_var_samp_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate variance on columns */\nexport type Move_Resources_Variance_Fields = {\n __typename?: 'move_resources_variance_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** columns and relationships of \"nft_metadata_crawler.parsed_asset_uris\" */\nexport type Nft_Metadata_Crawler_Parsed_Asset_Uris = {\n __typename?: 'nft_metadata_crawler_parsed_asset_uris';\n animation_optimizer_retry_count: Scalars['Int']['output'];\n asset_uri: Scalars['String']['output'];\n cdn_animation_uri?: Maybe<Scalars['String']['output']>;\n cdn_image_uri?: Maybe<Scalars['String']['output']>;\n cdn_json_uri?: Maybe<Scalars['String']['output']>;\n image_optimizer_retry_count: Scalars['Int']['output'];\n json_parser_retry_count: Scalars['Int']['output'];\n raw_animation_uri?: Maybe<Scalars['String']['output']>;\n raw_image_uri?: Maybe<Scalars['String']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"nft_metadata_crawler.parsed_asset_uris\". All fields are combined with a logical 'AND'. */\nexport type Nft_Metadata_Crawler_Parsed_Asset_Uris_Bool_Exp = {\n _and?: InputMaybe<Array<Nft_Metadata_Crawler_Parsed_Asset_Uris_Bool_Exp>>;\n _not?: InputMaybe<Nft_Metadata_Crawler_Parsed_Asset_Uris_Bool_Exp>;\n _or?: InputMaybe<Array<Nft_Metadata_Crawler_Parsed_Asset_Uris_Bool_Exp>>;\n animation_optimizer_retry_count?: InputMaybe<Int_Comparison_Exp>;\n asset_uri?: InputMaybe<String_Comparison_Exp>;\n cdn_animation_uri?: InputMaybe<String_Comparison_Exp>;\n cdn_image_uri?: InputMaybe<String_Comparison_Exp>;\n cdn_json_uri?: InputMaybe<String_Comparison_Exp>;\n image_optimizer_retry_count?: InputMaybe<Int_Comparison_Exp>;\n json_parser_retry_count?: InputMaybe<Int_Comparison_Exp>;\n raw_animation_uri?: InputMaybe<String_Comparison_Exp>;\n raw_image_uri?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"nft_metadata_crawler.parsed_asset_uris\". */\nexport type Nft_Metadata_Crawler_Parsed_Asset_Uris_Order_By = {\n animation_optimizer_retry_count?: InputMaybe<Order_By>;\n asset_uri?: InputMaybe<Order_By>;\n cdn_animation_uri?: InputMaybe<Order_By>;\n cdn_image_uri?: InputMaybe<Order_By>;\n cdn_json_uri?: InputMaybe<Order_By>;\n image_optimizer_retry_count?: InputMaybe<Order_By>;\n json_parser_retry_count?: InputMaybe<Order_By>;\n raw_animation_uri?: InputMaybe<Order_By>;\n raw_image_uri?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"nft_metadata_crawler.parsed_asset_uris\" */\nexport enum Nft_Metadata_Crawler_Parsed_Asset_Uris_Select_Column {\n /** column name */\n AnimationOptimizerRetryCount = 'animation_optimizer_retry_count',\n /** column name */\n AssetUri = 'asset_uri',\n /** column name */\n CdnAnimationUri = 'cdn_animation_uri',\n /** column name */\n CdnImageUri = 'cdn_image_uri',\n /** column name */\n CdnJsonUri = 'cdn_json_uri',\n /** column name */\n ImageOptimizerRetryCount = 'image_optimizer_retry_count',\n /** column name */\n JsonParserRetryCount = 'json_parser_retry_count',\n /** column name */\n RawAnimationUri = 'raw_animation_uri',\n /** column name */\n RawImageUri = 'raw_image_uri'\n}\n\n/** Streaming cursor of the table \"nft_metadata_crawler_parsed_asset_uris\" */\nexport type Nft_Metadata_Crawler_Parsed_Asset_Uris_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Nft_Metadata_Crawler_Parsed_Asset_Uris_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Nft_Metadata_Crawler_Parsed_Asset_Uris_Stream_Cursor_Value_Input = {\n animation_optimizer_retry_count?: InputMaybe<Scalars['Int']['input']>;\n asset_uri?: InputMaybe<Scalars['String']['input']>;\n cdn_animation_uri?: InputMaybe<Scalars['String']['input']>;\n cdn_image_uri?: InputMaybe<Scalars['String']['input']>;\n cdn_json_uri?: InputMaybe<Scalars['String']['input']>;\n image_optimizer_retry_count?: InputMaybe<Scalars['Int']['input']>;\n json_parser_retry_count?: InputMaybe<Scalars['Int']['input']>;\n raw_animation_uri?: InputMaybe<Scalars['String']['input']>;\n raw_image_uri?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"num_active_delegator_per_pool\" */\nexport type Num_Active_Delegator_Per_Pool = {\n __typename?: 'num_active_delegator_per_pool';\n num_active_delegator?: Maybe<Scalars['bigint']['output']>;\n pool_address?: Maybe<Scalars['String']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"num_active_delegator_per_pool\". All fields are combined with a logical 'AND'. */\nexport type Num_Active_Delegator_Per_Pool_Bool_Exp = {\n _and?: InputMaybe<Array<Num_Active_Delegator_Per_Pool_Bool_Exp>>;\n _not?: InputMaybe<Num_Active_Delegator_Per_Pool_Bool_Exp>;\n _or?: InputMaybe<Array<Num_Active_Delegator_Per_Pool_Bool_Exp>>;\n num_active_delegator?: InputMaybe<Bigint_Comparison_Exp>;\n pool_address?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"num_active_delegator_per_pool\". */\nexport type Num_Active_Delegator_Per_Pool_Order_By = {\n num_active_delegator?: InputMaybe<Order_By>;\n pool_address?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"num_active_delegator_per_pool\" */\nexport enum Num_Active_Delegator_Per_Pool_Select_Column {\n /** column name */\n NumActiveDelegator = 'num_active_delegator',\n /** column name */\n PoolAddress = 'pool_address'\n}\n\n/** Streaming cursor of the table \"num_active_delegator_per_pool\" */\nexport type Num_Active_Delegator_Per_Pool_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Num_Active_Delegator_Per_Pool_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Num_Active_Delegator_Per_Pool_Stream_Cursor_Value_Input = {\n num_active_delegator?: InputMaybe<Scalars['bigint']['input']>;\n pool_address?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Boolean expression to compare columns of type \"numeric\". All fields are combined with logical 'AND'. */\nexport type Numeric_Comparison_Exp = {\n _eq?: InputMaybe<Scalars['numeric']['input']>;\n _gt?: InputMaybe<Scalars['numeric']['input']>;\n _gte?: InputMaybe<Scalars['numeric']['input']>;\n _in?: InputMaybe<Array<Scalars['numeric']['input']>>;\n _is_null?: InputMaybe<Scalars['Boolean']['input']>;\n _lt?: InputMaybe<Scalars['numeric']['input']>;\n _lte?: InputMaybe<Scalars['numeric']['input']>;\n _neq?: InputMaybe<Scalars['numeric']['input']>;\n _nin?: InputMaybe<Array<Scalars['numeric']['input']>>;\n};\n\n/** column ordering options */\nexport enum Order_By {\n /** in ascending order, nulls last */\n Asc = 'asc',\n /** in ascending order, nulls first */\n AscNullsFirst = 'asc_nulls_first',\n /** in ascending order, nulls last */\n AscNullsLast = 'asc_nulls_last',\n /** in descending order, nulls first */\n Desc = 'desc',\n /** in descending order, nulls first */\n DescNullsFirst = 'desc_nulls_first',\n /** in descending order, nulls last */\n DescNullsLast = 'desc_nulls_last'\n}\n\n/** columns and relationships of \"processor_metadata.processor_status\" */\nexport type Processor_Status = {\n __typename?: 'processor_status';\n last_success_version: Scalars['bigint']['output'];\n last_transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n last_updated: Scalars['timestamp']['output'];\n processor: Scalars['String']['output'];\n};\n\n/** Boolean expression to filter rows from the table \"processor_metadata.processor_status\". All fields are combined with a logical 'AND'. */\nexport type Processor_Status_Bool_Exp = {\n _and?: InputMaybe<Array<Processor_Status_Bool_Exp>>;\n _not?: InputMaybe<Processor_Status_Bool_Exp>;\n _or?: InputMaybe<Array<Processor_Status_Bool_Exp>>;\n last_success_version?: InputMaybe<Bigint_Comparison_Exp>;\n last_transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n last_updated?: InputMaybe<Timestamp_Comparison_Exp>;\n processor?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"processor_metadata.processor_status\". */\nexport type Processor_Status_Order_By = {\n last_success_version?: InputMaybe<Order_By>;\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_updated?: InputMaybe<Order_By>;\n processor?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"processor_metadata.processor_status\" */\nexport enum Processor_Status_Select_Column {\n /** column name */\n LastSuccessVersion = 'last_success_version',\n /** column name */\n LastTransactionTimestamp = 'last_transaction_timestamp',\n /** column name */\n LastUpdated = 'last_updated',\n /** column name */\n Processor = 'processor'\n}\n\n/** Streaming cursor of the table \"processor_status\" */\nexport type Processor_Status_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Processor_Status_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Processor_Status_Stream_Cursor_Value_Input = {\n last_success_version?: InputMaybe<Scalars['bigint']['input']>;\n last_transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n last_updated?: InputMaybe<Scalars['timestamp']['input']>;\n processor?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"proposal_votes\" */\nexport type Proposal_Votes = {\n __typename?: 'proposal_votes';\n num_votes: Scalars['numeric']['output'];\n proposal_id: Scalars['bigint']['output'];\n should_pass: Scalars['Boolean']['output'];\n staking_pool_address: Scalars['String']['output'];\n transaction_timestamp: Scalars['timestamp']['output'];\n transaction_version: Scalars['bigint']['output'];\n voter_address: Scalars['String']['output'];\n};\n\n/** aggregated selection of \"proposal_votes\" */\nexport type Proposal_Votes_Aggregate = {\n __typename?: 'proposal_votes_aggregate';\n aggregate?: Maybe<Proposal_Votes_Aggregate_Fields>;\n nodes: Array<Proposal_Votes>;\n};\n\n/** aggregate fields of \"proposal_votes\" */\nexport type Proposal_Votes_Aggregate_Fields = {\n __typename?: 'proposal_votes_aggregate_fields';\n avg?: Maybe<Proposal_Votes_Avg_Fields>;\n count: Scalars['Int']['output'];\n max?: Maybe<Proposal_Votes_Max_Fields>;\n min?: Maybe<Proposal_Votes_Min_Fields>;\n stddev?: Maybe<Proposal_Votes_Stddev_Fields>;\n stddev_pop?: Maybe<Proposal_Votes_Stddev_Pop_Fields>;\n stddev_samp?: Maybe<Proposal_Votes_Stddev_Samp_Fields>;\n sum?: Maybe<Proposal_Votes_Sum_Fields>;\n var_pop?: Maybe<Proposal_Votes_Var_Pop_Fields>;\n var_samp?: Maybe<Proposal_Votes_Var_Samp_Fields>;\n variance?: Maybe<Proposal_Votes_Variance_Fields>;\n};\n\n\n/** aggregate fields of \"proposal_votes\" */\nexport type Proposal_Votes_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Proposal_Votes_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** aggregate avg on columns */\nexport type Proposal_Votes_Avg_Fields = {\n __typename?: 'proposal_votes_avg_fields';\n num_votes?: Maybe<Scalars['Float']['output']>;\n proposal_id?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"proposal_votes\". All fields are combined with a logical 'AND'. */\nexport type Proposal_Votes_Bool_Exp = {\n _and?: InputMaybe<Array<Proposal_Votes_Bool_Exp>>;\n _not?: InputMaybe<Proposal_Votes_Bool_Exp>;\n _or?: InputMaybe<Array<Proposal_Votes_Bool_Exp>>;\n num_votes?: InputMaybe<Numeric_Comparison_Exp>;\n proposal_id?: InputMaybe<Bigint_Comparison_Exp>;\n should_pass?: InputMaybe<Boolean_Comparison_Exp>;\n staking_pool_address?: InputMaybe<String_Comparison_Exp>;\n transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n voter_address?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Proposal_Votes_Max_Fields = {\n __typename?: 'proposal_votes_max_fields';\n num_votes?: Maybe<Scalars['numeric']['output']>;\n proposal_id?: Maybe<Scalars['bigint']['output']>;\n staking_pool_address?: Maybe<Scalars['String']['output']>;\n transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n voter_address?: Maybe<Scalars['String']['output']>;\n};\n\n/** aggregate min on columns */\nexport type Proposal_Votes_Min_Fields = {\n __typename?: 'proposal_votes_min_fields';\n num_votes?: Maybe<Scalars['numeric']['output']>;\n proposal_id?: Maybe<Scalars['bigint']['output']>;\n staking_pool_address?: Maybe<Scalars['String']['output']>;\n transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n voter_address?: Maybe<Scalars['String']['output']>;\n};\n\n/** Ordering options when selecting data from \"proposal_votes\". */\nexport type Proposal_Votes_Order_By = {\n num_votes?: InputMaybe<Order_By>;\n proposal_id?: InputMaybe<Order_By>;\n should_pass?: InputMaybe<Order_By>;\n staking_pool_address?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n voter_address?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"proposal_votes\" */\nexport enum Proposal_Votes_Select_Column {\n /** column name */\n NumVotes = 'num_votes',\n /** column name */\n ProposalId = 'proposal_id',\n /** column name */\n ShouldPass = 'should_pass',\n /** column name */\n StakingPoolAddress = 'staking_pool_address',\n /** column name */\n TransactionTimestamp = 'transaction_timestamp',\n /** column name */\n TransactionVersion = 'transaction_version',\n /** column name */\n VoterAddress = 'voter_address'\n}\n\n/** aggregate stddev on columns */\nexport type Proposal_Votes_Stddev_Fields = {\n __typename?: 'proposal_votes_stddev_fields';\n num_votes?: Maybe<Scalars['Float']['output']>;\n proposal_id?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_pop on columns */\nexport type Proposal_Votes_Stddev_Pop_Fields = {\n __typename?: 'proposal_votes_stddev_pop_fields';\n num_votes?: Maybe<Scalars['Float']['output']>;\n proposal_id?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_samp on columns */\nexport type Proposal_Votes_Stddev_Samp_Fields = {\n __typename?: 'proposal_votes_stddev_samp_fields';\n num_votes?: Maybe<Scalars['Float']['output']>;\n proposal_id?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Streaming cursor of the table \"proposal_votes\" */\nexport type Proposal_Votes_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Proposal_Votes_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Proposal_Votes_Stream_Cursor_Value_Input = {\n num_votes?: InputMaybe<Scalars['numeric']['input']>;\n proposal_id?: InputMaybe<Scalars['bigint']['input']>;\n should_pass?: InputMaybe<Scalars['Boolean']['input']>;\n staking_pool_address?: InputMaybe<Scalars['String']['input']>;\n transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n voter_address?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** aggregate sum on columns */\nexport type Proposal_Votes_Sum_Fields = {\n __typename?: 'proposal_votes_sum_fields';\n num_votes?: Maybe<Scalars['numeric']['output']>;\n proposal_id?: Maybe<Scalars['bigint']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregate var_pop on columns */\nexport type Proposal_Votes_Var_Pop_Fields = {\n __typename?: 'proposal_votes_var_pop_fields';\n num_votes?: Maybe<Scalars['Float']['output']>;\n proposal_id?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate var_samp on columns */\nexport type Proposal_Votes_Var_Samp_Fields = {\n __typename?: 'proposal_votes_var_samp_fields';\n num_votes?: Maybe<Scalars['Float']['output']>;\n proposal_id?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate variance on columns */\nexport type Proposal_Votes_Variance_Fields = {\n __typename?: 'proposal_votes_variance_fields';\n num_votes?: Maybe<Scalars['Float']['output']>;\n proposal_id?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** columns and relationships of \"public_key_auth_keys\" */\nexport type Public_Key_Auth_Keys = {\n __typename?: 'public_key_auth_keys';\n account_public_key?: Maybe<Scalars['String']['output']>;\n auth_key: Scalars['String']['output'];\n is_public_key_used: Scalars['Boolean']['output'];\n last_transaction_version: Scalars['bigint']['output'];\n public_key: Scalars['String']['output'];\n public_key_type: Scalars['String']['output'];\n signature_type: Scalars['String']['output'];\n};\n\n/** aggregated selection of \"public_key_auth_keys\" */\nexport type Public_Key_Auth_Keys_Aggregate = {\n __typename?: 'public_key_auth_keys_aggregate';\n aggregate?: Maybe<Public_Key_Auth_Keys_Aggregate_Fields>;\n nodes: Array<Public_Key_Auth_Keys>;\n};\n\n/** aggregate fields of \"public_key_auth_keys\" */\nexport type Public_Key_Auth_Keys_Aggregate_Fields = {\n __typename?: 'public_key_auth_keys_aggregate_fields';\n avg?: Maybe<Public_Key_Auth_Keys_Avg_Fields>;\n count: Scalars['Int']['output'];\n max?: Maybe<Public_Key_Auth_Keys_Max_Fields>;\n min?: Maybe<Public_Key_Auth_Keys_Min_Fields>;\n stddev?: Maybe<Public_Key_Auth_Keys_Stddev_Fields>;\n stddev_pop?: Maybe<Public_Key_Auth_Keys_Stddev_Pop_Fields>;\n stddev_samp?: Maybe<Public_Key_Auth_Keys_Stddev_Samp_Fields>;\n sum?: Maybe<Public_Key_Auth_Keys_Sum_Fields>;\n var_pop?: Maybe<Public_Key_Auth_Keys_Var_Pop_Fields>;\n var_samp?: Maybe<Public_Key_Auth_Keys_Var_Samp_Fields>;\n variance?: Maybe<Public_Key_Auth_Keys_Variance_Fields>;\n};\n\n\n/** aggregate fields of \"public_key_auth_keys\" */\nexport type Public_Key_Auth_Keys_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Public_Key_Auth_Keys_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** aggregate avg on columns */\nexport type Public_Key_Auth_Keys_Avg_Fields = {\n __typename?: 'public_key_auth_keys_avg_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"public_key_auth_keys\". All fields are combined with a logical 'AND'. */\nexport type Public_Key_Auth_Keys_Bool_Exp = {\n _and?: InputMaybe<Array<Public_Key_Auth_Keys_Bool_Exp>>;\n _not?: InputMaybe<Public_Key_Auth_Keys_Bool_Exp>;\n _or?: InputMaybe<Array<Public_Key_Auth_Keys_Bool_Exp>>;\n account_public_key?: InputMaybe<String_Comparison_Exp>;\n auth_key?: InputMaybe<String_Comparison_Exp>;\n is_public_key_used?: InputMaybe<Boolean_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n public_key?: InputMaybe<String_Comparison_Exp>;\n public_key_type?: InputMaybe<String_Comparison_Exp>;\n signature_type?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Public_Key_Auth_Keys_Max_Fields = {\n __typename?: 'public_key_auth_keys_max_fields';\n account_public_key?: Maybe<Scalars['String']['output']>;\n auth_key?: Maybe<Scalars['String']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n public_key?: Maybe<Scalars['String']['output']>;\n public_key_type?: Maybe<Scalars['String']['output']>;\n signature_type?: Maybe<Scalars['String']['output']>;\n};\n\n/** aggregate min on columns */\nexport type Public_Key_Auth_Keys_Min_Fields = {\n __typename?: 'public_key_auth_keys_min_fields';\n account_public_key?: Maybe<Scalars['String']['output']>;\n auth_key?: Maybe<Scalars['String']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n public_key?: Maybe<Scalars['String']['output']>;\n public_key_type?: Maybe<Scalars['String']['output']>;\n signature_type?: Maybe<Scalars['String']['output']>;\n};\n\n/** Ordering options when selecting data from \"public_key_auth_keys\". */\nexport type Public_Key_Auth_Keys_Order_By = {\n account_public_key?: InputMaybe<Order_By>;\n auth_key?: InputMaybe<Order_By>;\n is_public_key_used?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n public_key?: InputMaybe<Order_By>;\n public_key_type?: InputMaybe<Order_By>;\n signature_type?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"public_key_auth_keys\" */\nexport enum Public_Key_Auth_Keys_Select_Column {\n /** column name */\n AccountPublicKey = 'account_public_key',\n /** column name */\n AuthKey = 'auth_key',\n /** column name */\n IsPublicKeyUsed = 'is_public_key_used',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n PublicKey = 'public_key',\n /** column name */\n PublicKeyType = 'public_key_type',\n /** column name */\n SignatureType = 'signature_type'\n}\n\n/** aggregate stddev on columns */\nexport type Public_Key_Auth_Keys_Stddev_Fields = {\n __typename?: 'public_key_auth_keys_stddev_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_pop on columns */\nexport type Public_Key_Auth_Keys_Stddev_Pop_Fields = {\n __typename?: 'public_key_auth_keys_stddev_pop_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_samp on columns */\nexport type Public_Key_Auth_Keys_Stddev_Samp_Fields = {\n __typename?: 'public_key_auth_keys_stddev_samp_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Streaming cursor of the table \"public_key_auth_keys\" */\nexport type Public_Key_Auth_Keys_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Public_Key_Auth_Keys_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Public_Key_Auth_Keys_Stream_Cursor_Value_Input = {\n account_public_key?: InputMaybe<Scalars['String']['input']>;\n auth_key?: InputMaybe<Scalars['String']['input']>;\n is_public_key_used?: InputMaybe<Scalars['Boolean']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n public_key?: InputMaybe<Scalars['String']['input']>;\n public_key_type?: InputMaybe<Scalars['String']['input']>;\n signature_type?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** aggregate sum on columns */\nexport type Public_Key_Auth_Keys_Sum_Fields = {\n __typename?: 'public_key_auth_keys_sum_fields';\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregate var_pop on columns */\nexport type Public_Key_Auth_Keys_Var_Pop_Fields = {\n __typename?: 'public_key_auth_keys_var_pop_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate var_samp on columns */\nexport type Public_Key_Auth_Keys_Var_Samp_Fields = {\n __typename?: 'public_key_auth_keys_var_samp_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate variance on columns */\nexport type Public_Key_Auth_Keys_Variance_Fields = {\n __typename?: 'public_key_auth_keys_variance_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\nexport type Query_Root = {\n __typename?: 'query_root';\n /** fetch data from the table: \"account_transactions\" */\n account_transactions: Array<Account_Transactions>;\n /** fetch aggregated fields from the table: \"account_transactions\" */\n account_transactions_aggregate: Account_Transactions_Aggregate;\n /** fetch data from the table: \"account_transactions\" using primary key columns */\n account_transactions_by_pk?: Maybe<Account_Transactions>;\n /** fetch data from the table: \"address_events_summary\" */\n address_events_summary: Array<Address_Events_Summary>;\n /** fetch data from the table: \"address_version_from_events\" */\n address_version_from_events: Array<Address_Version_From_Events>;\n /** fetch aggregated fields from the table: \"address_version_from_events\" */\n address_version_from_events_aggregate: Address_Version_From_Events_Aggregate;\n /** fetch data from the table: \"legacy_migration_v1.address_version_from_move_resources\" */\n address_version_from_move_resources: Array<Address_Version_From_Move_Resources>;\n /** fetch aggregated fields from the table: \"legacy_migration_v1.address_version_from_move_resources\" */\n address_version_from_move_resources_aggregate: Address_Version_From_Move_Resources_Aggregate;\n /** fetch data from the table: \"auth_key_account_addresses\" */\n auth_key_account_addresses: Array<Auth_Key_Account_Addresses>;\n /** fetch aggregated fields from the table: \"auth_key_account_addresses\" */\n auth_key_account_addresses_aggregate: Auth_Key_Account_Addresses_Aggregate;\n /** fetch data from the table: \"auth_key_account_addresses\" using primary key columns */\n auth_key_account_addresses_by_pk?: Maybe<Auth_Key_Account_Addresses>;\n /** fetch data from the table: \"block_metadata_transactions\" */\n block_metadata_transactions: Array<Block_Metadata_Transactions>;\n /** fetch data from the table: \"block_metadata_transactions\" using primary key columns */\n block_metadata_transactions_by_pk?: Maybe<Block_Metadata_Transactions>;\n /** An array relationship */\n coin_activities: Array<Coin_Activities>;\n /** An aggregate relationship */\n coin_activities_aggregate: Coin_Activities_Aggregate;\n /** fetch data from the table: \"legacy_migration_v1.coin_balances\" */\n coin_balances: Array<Coin_Balances>;\n /** fetch data from the table: \"legacy_migration_v1.coin_infos\" */\n coin_infos: Array<Coin_Infos>;\n /** fetch data from the table: \"coin_supply\" */\n coin_supply: Array<Coin_Supply>;\n /** fetch data from the table: \"coin_supply\" using primary key columns */\n coin_supply_by_pk?: Maybe<Coin_Supply>;\n /** fetch data from the table: \"legacy_migration_v1.collection_datas\" */\n collection_datas: Array<Collection_Datas>;\n /** fetch data from the table: \"legacy_migration_v1.current_ans_lookup\" */\n current_ans_lookup: Array<Current_Ans_Lookup>;\n /** fetch data from the table: \"current_ans_lookup_v2\" */\n current_ans_lookup_v2: Array<Current_Ans_Lookup_V2>;\n /** fetch data from the table: \"current_ans_lookup_v2\" using primary key columns */\n current_ans_lookup_v2_by_pk?: Maybe<Current_Ans_Lookup_V2>;\n /** fetch data from the table: \"current_aptos_names\" */\n current_aptos_names: Array<Current_Aptos_Names>;\n /** fetch aggregated fields from the table: \"current_aptos_names\" */\n current_aptos_names_aggregate: Current_Aptos_Names_Aggregate;\n /** fetch data from the table: \"legacy_migration_v1.current_coin_balances\" */\n current_coin_balances: Array<Current_Coin_Balances>;\n /** fetch data from the table: \"legacy_migration_v1.current_collection_datas\" */\n current_collection_datas: Array<Current_Collection_Datas>;\n /** fetch data from the table: \"current_collection_ownership_v2_view\" */\n current_collection_ownership_v2_view: Array<Current_Collection_Ownership_V2_View>;\n /** fetch aggregated fields from the table: \"current_collection_ownership_v2_view\" */\n current_collection_ownership_v2_view_aggregate: Current_Collection_Ownership_V2_View_Aggregate;\n /** fetch data from the table: \"current_collections_v2\" */\n current_collections_v2: Array<Current_Collections_V2>;\n /** fetch data from the table: \"current_collections_v2\" using primary key columns */\n current_collections_v2_by_pk?: Maybe<Current_Collections_V2>;\n /** fetch data from the table: \"current_delegated_staking_pool_balances\" */\n current_delegated_staking_pool_balances: Array<Current_Delegated_Staking_Pool_Balances>;\n /** fetch data from the table: \"current_delegated_staking_pool_balances\" using primary key columns */\n current_delegated_staking_pool_balances_by_pk?: Maybe<Current_Delegated_Staking_Pool_Balances>;\n /** fetch data from the table: \"current_delegated_voter\" */\n current_delegated_voter: Array<Current_Delegated_Voter>;\n /** fetch data from the table: \"current_delegated_voter\" using primary key columns */\n current_delegated_voter_by_pk?: Maybe<Current_Delegated_Voter>;\n /** fetch data from the table: \"current_delegator_balances\" */\n current_delegator_balances: Array<Current_Delegator_Balances>;\n /** fetch data from the table: \"current_delegator_balances\" using primary key columns */\n current_delegator_balances_by_pk?: Maybe<Current_Delegator_Balances>;\n /** fetch data from the table: \"current_fungible_asset_balances\" */\n current_fungible_asset_balances: Array<Current_Fungible_Asset_Balances>;\n /** fetch aggregated fields from the table: \"current_fungible_asset_balances\" */\n current_fungible_asset_balances_aggregate: Current_Fungible_Asset_Balances_Aggregate;\n /** fetch data from the table: \"current_fungible_asset_balances\" using primary key columns */\n current_fungible_asset_balances_by_pk?: Maybe<Current_Fungible_Asset_Balances>;\n /** fetch data from the table: \"current_objects\" */\n current_objects: Array<Current_Objects>;\n /** fetch data from the table: \"current_objects\" using primary key columns */\n current_objects_by_pk?: Maybe<Current_Objects>;\n /** fetch data from the table: \"current_staking_pool_voter\" */\n current_staking_pool_voter: Array<Current_Staking_Pool_Voter>;\n /** fetch data from the table: \"current_staking_pool_voter\" using primary key columns */\n current_staking_pool_voter_by_pk?: Maybe<Current_Staking_Pool_Voter>;\n /** fetch data from the table: \"current_table_items\" */\n current_table_items: Array<Current_Table_Items>;\n /** fetch data from the table: \"current_table_items\" using primary key columns */\n current_table_items_by_pk?: Maybe<Current_Table_Items>;\n /** fetch data from the table: \"legacy_migration_v1.current_token_datas\" */\n current_token_datas: Array<Current_Token_Datas>;\n /** fetch data from the table: \"current_token_datas_v2\" */\n current_token_datas_v2: Array<Current_Token_Datas_V2>;\n /** fetch data from the table: \"current_token_datas_v2\" using primary key columns */\n current_token_datas_v2_by_pk?: Maybe<Current_Token_Datas_V2>;\n /** fetch data from the table: \"legacy_migration_v1.current_token_ownerships\" */\n current_token_ownerships: Array<Current_Token_Ownerships>;\n /** fetch aggregated fields from the table: \"legacy_migration_v1.current_token_ownerships\" */\n current_token_ownerships_aggregate: Current_Token_Ownerships_Aggregate;\n /** fetch data from the table: \"current_token_ownerships_v2\" */\n current_token_ownerships_v2: Array<Current_Token_Ownerships_V2>;\n /** fetch aggregated fields from the table: \"current_token_ownerships_v2\" */\n current_token_ownerships_v2_aggregate: Current_Token_Ownerships_V2_Aggregate;\n /** fetch data from the table: \"current_token_ownerships_v2\" using primary key columns */\n current_token_ownerships_v2_by_pk?: Maybe<Current_Token_Ownerships_V2>;\n /** fetch data from the table: \"current_token_pending_claims\" */\n current_token_pending_claims: Array<Current_Token_Pending_Claims>;\n /** fetch data from the table: \"current_token_pending_claims\" using primary key columns */\n current_token_pending_claims_by_pk?: Maybe<Current_Token_Pending_Claims>;\n /** fetch data from the table: \"current_token_royalty_v1\" */\n current_token_royalty_v1: Array<Current_Token_Royalty_V1>;\n /** fetch data from the table: \"current_token_royalty_v1\" using primary key columns */\n current_token_royalty_v1_by_pk?: Maybe<Current_Token_Royalty_V1>;\n /** An array relationship */\n delegated_staking_activities: Array<Delegated_Staking_Activities>;\n /** fetch data from the table: \"delegated_staking_activities\" using primary key columns */\n delegated_staking_activities_by_pk?: Maybe<Delegated_Staking_Activities>;\n /** fetch data from the table: \"delegated_staking_pool_balances\" */\n delegated_staking_pool_balances: Array<Delegated_Staking_Pool_Balances>;\n /** fetch aggregated fields from the table: \"delegated_staking_pool_balances\" */\n delegated_staking_pool_balances_aggregate: Delegated_Staking_Pool_Balances_Aggregate;\n /** fetch data from the table: \"delegated_staking_pool_balances\" using primary key columns */\n delegated_staking_pool_balances_by_pk?: Maybe<Delegated_Staking_Pool_Balances>;\n /** fetch data from the table: \"delegated_staking_pools\" */\n delegated_staking_pools: Array<Delegated_Staking_Pools>;\n /** fetch data from the table: \"delegated_staking_pools\" using primary key columns */\n delegated_staking_pools_by_pk?: Maybe<Delegated_Staking_Pools>;\n /** fetch data from the table: \"delegator_distinct_pool\" */\n delegator_distinct_pool: Array<Delegator_Distinct_Pool>;\n /** fetch aggregated fields from the table: \"delegator_distinct_pool\" */\n delegator_distinct_pool_aggregate: Delegator_Distinct_Pool_Aggregate;\n /** fetch data from the table: \"events\" */\n events: Array<Events>;\n /** fetch data from the table: \"events\" using primary key columns */\n events_by_pk?: Maybe<Events>;\n /** An array relationship */\n fungible_asset_activities: Array<Fungible_Asset_Activities>;\n /** fetch data from the table: \"fungible_asset_activities\" using primary key columns */\n fungible_asset_activities_by_pk?: Maybe<Fungible_Asset_Activities>;\n /** fetch data from the table: \"fungible_asset_metadata\" */\n fungible_asset_metadata: Array<Fungible_Asset_Metadata>;\n /** fetch data from the table: \"fungible_asset_metadata\" using primary key columns */\n fungible_asset_metadata_by_pk?: Maybe<Fungible_Asset_Metadata>;\n /** fetch data from the table: \"indexer_status\" */\n indexer_status: Array<Indexer_Status>;\n /** fetch data from the table: \"indexer_status\" using primary key columns */\n indexer_status_by_pk?: Maybe<Indexer_Status>;\n /** fetch data from the table: \"processor_metadata.ledger_infos\" */\n ledger_infos: Array<Ledger_Infos>;\n /** fetch data from the table: \"processor_metadata.ledger_infos\" using primary key columns */\n ledger_infos_by_pk?: Maybe<Ledger_Infos>;\n /** fetch data from the table: \"legacy_migration_v1.move_resources\" */\n move_resources: Array<Move_Resources>;\n /** fetch aggregated fields from the table: \"legacy_migration_v1.move_resources\" */\n move_resources_aggregate: Move_Resources_Aggregate;\n /** fetch data from the table: \"nft_metadata_crawler.parsed_asset_uris\" */\n nft_metadata_crawler_parsed_asset_uris: Array<Nft_Metadata_Crawler_Parsed_Asset_Uris>;\n /** fetch data from the table: \"nft_metadata_crawler.parsed_asset_uris\" using primary key columns */\n nft_metadata_crawler_parsed_asset_uris_by_pk?: Maybe<Nft_Metadata_Crawler_Parsed_Asset_Uris>;\n /** fetch data from the table: \"num_active_delegator_per_pool\" */\n num_active_delegator_per_pool: Array<Num_Active_Delegator_Per_Pool>;\n /** fetch data from the table: \"processor_metadata.processor_status\" */\n processor_status: Array<Processor_Status>;\n /** fetch data from the table: \"processor_metadata.processor_status\" using primary key columns */\n processor_status_by_pk?: Maybe<Processor_Status>;\n /** fetch data from the table: \"proposal_votes\" */\n proposal_votes: Array<Proposal_Votes>;\n /** fetch aggregated fields from the table: \"proposal_votes\" */\n proposal_votes_aggregate: Proposal_Votes_Aggregate;\n /** fetch data from the table: \"proposal_votes\" using primary key columns */\n proposal_votes_by_pk?: Maybe<Proposal_Votes>;\n /** fetch data from the table: \"public_key_auth_keys\" */\n public_key_auth_keys: Array<Public_Key_Auth_Keys>;\n /** fetch aggregated fields from the table: \"public_key_auth_keys\" */\n public_key_auth_keys_aggregate: Public_Key_Auth_Keys_Aggregate;\n /** fetch data from the table: \"public_key_auth_keys\" using primary key columns */\n public_key_auth_keys_by_pk?: Maybe<Public_Key_Auth_Keys>;\n /** fetch data from the table: \"signatures\" */\n signatures: Array<Signatures>;\n /** fetch data from the table: \"signatures\" using primary key columns */\n signatures_by_pk?: Maybe<Signatures>;\n /** fetch data from the table: \"table_items\" */\n table_items: Array<Table_Items>;\n /** fetch data from the table: \"table_items\" using primary key columns */\n table_items_by_pk?: Maybe<Table_Items>;\n /** fetch data from the table: \"table_metadatas\" */\n table_metadatas: Array<Table_Metadatas>;\n /** fetch data from the table: \"table_metadatas\" using primary key columns */\n table_metadatas_by_pk?: Maybe<Table_Metadatas>;\n /** An array relationship */\n token_activities: Array<Token_Activities>;\n /** An aggregate relationship */\n token_activities_aggregate: Token_Activities_Aggregate;\n /** An array relationship */\n token_activities_v2: Array<Token_Activities_V2>;\n /** An aggregate relationship */\n token_activities_v2_aggregate: Token_Activities_V2_Aggregate;\n /** fetch data from the table: \"token_activities_v2\" using primary key columns */\n token_activities_v2_by_pk?: Maybe<Token_Activities_V2>;\n /** fetch data from the table: \"legacy_migration_v1.token_datas\" */\n token_datas: Array<Token_Datas>;\n /** fetch data from the table: \"legacy_migration_v1.token_ownerships\" */\n token_ownerships: Array<Token_Ownerships>;\n /** fetch data from the table: \"legacy_migration_v1.tokens\" */\n tokens: Array<Tokens>;\n /** fetch data from the table: \"user_transactions\" */\n user_transactions: Array<User_Transactions>;\n /** fetch data from the table: \"user_transactions\" using primary key columns */\n user_transactions_by_pk?: Maybe<User_Transactions>;\n};\n\n\nexport type Query_RootAccount_TransactionsArgs = {\n distinct_on?: InputMaybe<Array<Account_Transactions_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Account_Transactions_Order_By>>;\n where?: InputMaybe<Account_Transactions_Bool_Exp>;\n};\n\n\nexport type Query_RootAccount_Transactions_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Account_Transactions_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Account_Transactions_Order_By>>;\n where?: InputMaybe<Account_Transactions_Bool_Exp>;\n};\n\n\nexport type Query_RootAccount_Transactions_By_PkArgs = {\n account_address: Scalars['String']['input'];\n transaction_version: Scalars['bigint']['input'];\n};\n\n\nexport type Query_RootAddress_Events_SummaryArgs = {\n distinct_on?: InputMaybe<Array<Address_Events_Summary_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Address_Events_Summary_Order_By>>;\n where?: InputMaybe<Address_Events_Summary_Bool_Exp>;\n};\n\n\nexport type Query_RootAddress_Version_From_EventsArgs = {\n distinct_on?: InputMaybe<Array<Address_Version_From_Events_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Address_Version_From_Events_Order_By>>;\n where?: InputMaybe<Address_Version_From_Events_Bool_Exp>;\n};\n\n\nexport type Query_RootAddress_Version_From_Events_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Address_Version_From_Events_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Address_Version_From_Events_Order_By>>;\n where?: InputMaybe<Address_Version_From_Events_Bool_Exp>;\n};\n\n\nexport type Query_RootAddress_Version_From_Move_ResourcesArgs = {\n distinct_on?: InputMaybe<Array<Address_Version_From_Move_Resources_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Address_Version_From_Move_Resources_Order_By>>;\n where?: InputMaybe<Address_Version_From_Move_Resources_Bool_Exp>;\n};\n\n\nexport type Query_RootAddress_Version_From_Move_Resources_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Address_Version_From_Move_Resources_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Address_Version_From_Move_Resources_Order_By>>;\n where?: InputMaybe<Address_Version_From_Move_Resources_Bool_Exp>;\n};\n\n\nexport type Query_RootAuth_Key_Account_AddressesArgs = {\n distinct_on?: InputMaybe<Array<Auth_Key_Account_Addresses_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Auth_Key_Account_Addresses_Order_By>>;\n where?: InputMaybe<Auth_Key_Account_Addresses_Bool_Exp>;\n};\n\n\nexport type Query_RootAuth_Key_Account_Addresses_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Auth_Key_Account_Addresses_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Auth_Key_Account_Addresses_Order_By>>;\n where?: InputMaybe<Auth_Key_Account_Addresses_Bool_Exp>;\n};\n\n\nexport type Query_RootAuth_Key_Account_Addresses_By_PkArgs = {\n account_address: Scalars['String']['input'];\n};\n\n\nexport type Query_RootBlock_Metadata_TransactionsArgs = {\n distinct_on?: InputMaybe<Array<Block_Metadata_Transactions_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Block_Metadata_Transactions_Order_By>>;\n where?: InputMaybe<Block_Metadata_Transactions_Bool_Exp>;\n};\n\n\nexport type Query_RootBlock_Metadata_Transactions_By_PkArgs = {\n version: Scalars['bigint']['input'];\n};\n\n\nexport type Query_RootCoin_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Coin_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Coin_Activities_Order_By>>;\n where?: InputMaybe<Coin_Activities_Bool_Exp>;\n};\n\n\nexport type Query_RootCoin_Activities_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Coin_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Coin_Activities_Order_By>>;\n where?: InputMaybe<Coin_Activities_Bool_Exp>;\n};\n\n\nexport type Query_RootCoin_BalancesArgs = {\n distinct_on?: InputMaybe<Array<Coin_Balances_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Coin_Balances_Order_By>>;\n where?: InputMaybe<Coin_Balances_Bool_Exp>;\n};\n\n\nexport type Query_RootCoin_InfosArgs = {\n distinct_on?: InputMaybe<Array<Coin_Infos_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Coin_Infos_Order_By>>;\n where?: InputMaybe<Coin_Infos_Bool_Exp>;\n};\n\n\nexport type Query_RootCoin_SupplyArgs = {\n distinct_on?: InputMaybe<Array<Coin_Supply_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Coin_Supply_Order_By>>;\n where?: InputMaybe<Coin_Supply_Bool_Exp>;\n};\n\n\nexport type Query_RootCoin_Supply_By_PkArgs = {\n coin_type_hash: Scalars['String']['input'];\n transaction_version: Scalars['bigint']['input'];\n};\n\n\nexport type Query_RootCollection_DatasArgs = {\n distinct_on?: InputMaybe<Array<Collection_Datas_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Collection_Datas_Order_By>>;\n where?: InputMaybe<Collection_Datas_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Ans_LookupArgs = {\n distinct_on?: InputMaybe<Array<Current_Ans_Lookup_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Ans_Lookup_Order_By>>;\n where?: InputMaybe<Current_Ans_Lookup_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Ans_Lookup_V2Args = {\n distinct_on?: InputMaybe<Array<Current_Ans_Lookup_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Ans_Lookup_V2_Order_By>>;\n where?: InputMaybe<Current_Ans_Lookup_V2_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Ans_Lookup_V2_By_PkArgs = {\n domain: Scalars['String']['input'];\n subdomain: Scalars['String']['input'];\n token_standard: Scalars['String']['input'];\n};\n\n\nexport type Query_RootCurrent_Aptos_NamesArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Aptos_Names_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Coin_BalancesArgs = {\n distinct_on?: InputMaybe<Array<Current_Coin_Balances_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Coin_Balances_Order_By>>;\n where?: InputMaybe<Current_Coin_Balances_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Collection_DatasArgs = {\n distinct_on?: InputMaybe<Array<Current_Collection_Datas_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Collection_Datas_Order_By>>;\n where?: InputMaybe<Current_Collection_Datas_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Collection_Ownership_V2_ViewArgs = {\n distinct_on?: InputMaybe<Array<Current_Collection_Ownership_V2_View_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Collection_Ownership_V2_View_Order_By>>;\n where?: InputMaybe<Current_Collection_Ownership_V2_View_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Collection_Ownership_V2_View_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Collection_Ownership_V2_View_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Collection_Ownership_V2_View_Order_By>>;\n where?: InputMaybe<Current_Collection_Ownership_V2_View_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Collections_V2Args = {\n distinct_on?: InputMaybe<Array<Current_Collections_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Collections_V2_Order_By>>;\n where?: InputMaybe<Current_Collections_V2_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Collections_V2_By_PkArgs = {\n collection_id: Scalars['String']['input'];\n};\n\n\nexport type Query_RootCurrent_Delegated_Staking_Pool_BalancesArgs = {\n distinct_on?: InputMaybe<Array<Current_Delegated_Staking_Pool_Balances_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Delegated_Staking_Pool_Balances_Order_By>>;\n where?: InputMaybe<Current_Delegated_Staking_Pool_Balances_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Delegated_Staking_Pool_Balances_By_PkArgs = {\n staking_pool_address: Scalars['String']['input'];\n};\n\n\nexport type Query_RootCurrent_Delegated_VoterArgs = {\n distinct_on?: InputMaybe<Array<Current_Delegated_Voter_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Delegated_Voter_Order_By>>;\n where?: InputMaybe<Current_Delegated_Voter_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Delegated_Voter_By_PkArgs = {\n delegation_pool_address: Scalars['String']['input'];\n delegator_address: Scalars['String']['input'];\n};\n\n\nexport type Query_RootCurrent_Delegator_BalancesArgs = {\n distinct_on?: InputMaybe<Array<Current_Delegator_Balances_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Delegator_Balances_Order_By>>;\n where?: InputMaybe<Current_Delegator_Balances_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Delegator_Balances_By_PkArgs = {\n delegator_address: Scalars['String']['input'];\n pool_address: Scalars['String']['input'];\n pool_type: Scalars['String']['input'];\n table_handle: Scalars['String']['input'];\n};\n\n\nexport type Query_RootCurrent_Fungible_Asset_BalancesArgs = {\n distinct_on?: InputMaybe<Array<Current_Fungible_Asset_Balances_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Fungible_Asset_Balances_Order_By>>;\n where?: InputMaybe<Current_Fungible_Asset_Balances_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Fungible_Asset_Balances_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Fungible_Asset_Balances_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Fungible_Asset_Balances_Order_By>>;\n where?: InputMaybe<Current_Fungible_Asset_Balances_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Fungible_Asset_Balances_By_PkArgs = {\n storage_id: Scalars['String']['input'];\n};\n\n\nexport type Query_RootCurrent_ObjectsArgs = {\n distinct_on?: InputMaybe<Array<Current_Objects_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Objects_Order_By>>;\n where?: InputMaybe<Current_Objects_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Objects_By_PkArgs = {\n object_address: Scalars['String']['input'];\n};\n\n\nexport type Query_RootCurrent_Staking_Pool_VoterArgs = {\n distinct_on?: InputMaybe<Array<Current_Staking_Pool_Voter_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Staking_Pool_Voter_Order_By>>;\n where?: InputMaybe<Current_Staking_Pool_Voter_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Staking_Pool_Voter_By_PkArgs = {\n staking_pool_address: Scalars['String']['input'];\n};\n\n\nexport type Query_RootCurrent_Table_ItemsArgs = {\n distinct_on?: InputMaybe<Array<Current_Table_Items_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Table_Items_Order_By>>;\n where?: InputMaybe<Current_Table_Items_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Table_Items_By_PkArgs = {\n key_hash: Scalars['String']['input'];\n table_handle: Scalars['String']['input'];\n};\n\n\nexport type Query_RootCurrent_Token_DatasArgs = {\n distinct_on?: InputMaybe<Array<Current_Token_Datas_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Datas_Order_By>>;\n where?: InputMaybe<Current_Token_Datas_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Token_Datas_V2Args = {\n distinct_on?: InputMaybe<Array<Current_Token_Datas_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Datas_V2_Order_By>>;\n where?: InputMaybe<Current_Token_Datas_V2_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Token_Datas_V2_By_PkArgs = {\n token_data_id: Scalars['String']['input'];\n};\n\n\nexport type Query_RootCurrent_Token_OwnershipsArgs = {\n distinct_on?: InputMaybe<Array<Current_Token_Ownerships_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Ownerships_Order_By>>;\n where?: InputMaybe<Current_Token_Ownerships_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Token_Ownerships_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Token_Ownerships_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Ownerships_Order_By>>;\n where?: InputMaybe<Current_Token_Ownerships_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Token_Ownerships_V2Args = {\n distinct_on?: InputMaybe<Array<Current_Token_Ownerships_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Ownerships_V2_Order_By>>;\n where?: InputMaybe<Current_Token_Ownerships_V2_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Token_Ownerships_V2_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Token_Ownerships_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Ownerships_V2_Order_By>>;\n where?: InputMaybe<Current_Token_Ownerships_V2_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Token_Ownerships_V2_By_PkArgs = {\n owner_address: Scalars['String']['input'];\n property_version_v1: Scalars['numeric']['input'];\n storage_id: Scalars['String']['input'];\n token_data_id: Scalars['String']['input'];\n};\n\n\nexport type Query_RootCurrent_Token_Pending_ClaimsArgs = {\n distinct_on?: InputMaybe<Array<Current_Token_Pending_Claims_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Pending_Claims_Order_By>>;\n where?: InputMaybe<Current_Token_Pending_Claims_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Token_Pending_Claims_By_PkArgs = {\n from_address: Scalars['String']['input'];\n property_version: Scalars['numeric']['input'];\n to_address: Scalars['String']['input'];\n token_data_id_hash: Scalars['String']['input'];\n};\n\n\nexport type Query_RootCurrent_Token_Royalty_V1Args = {\n distinct_on?: InputMaybe<Array<Current_Token_Royalty_V1_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Royalty_V1_Order_By>>;\n where?: InputMaybe<Current_Token_Royalty_V1_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Token_Royalty_V1_By_PkArgs = {\n token_data_id: Scalars['String']['input'];\n};\n\n\nexport type Query_RootDelegated_Staking_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Delegated_Staking_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Delegated_Staking_Activities_Order_By>>;\n where?: InputMaybe<Delegated_Staking_Activities_Bool_Exp>;\n};\n\n\nexport type Query_RootDelegated_Staking_Activities_By_PkArgs = {\n event_index: Scalars['bigint']['input'];\n transaction_version: Scalars['bigint']['input'];\n};\n\n\nexport type Query_RootDelegated_Staking_Pool_BalancesArgs = {\n distinct_on?: InputMaybe<Array<Delegated_Staking_Pool_Balances_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Delegated_Staking_Pool_Balances_Order_By>>;\n where?: InputMaybe<Delegated_Staking_Pool_Balances_Bool_Exp>;\n};\n\n\nexport type Query_RootDelegated_Staking_Pool_Balances_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Delegated_Staking_Pool_Balances_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Delegated_Staking_Pool_Balances_Order_By>>;\n where?: InputMaybe<Delegated_Staking_Pool_Balances_Bool_Exp>;\n};\n\n\nexport type Query_RootDelegated_Staking_Pool_Balances_By_PkArgs = {\n staking_pool_address: Scalars['String']['input'];\n transaction_version: Scalars['bigint']['input'];\n};\n\n\nexport type Query_RootDelegated_Staking_PoolsArgs = {\n distinct_on?: InputMaybe<Array<Delegated_Staking_Pools_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Delegated_Staking_Pools_Order_By>>;\n where?: InputMaybe<Delegated_Staking_Pools_Bool_Exp>;\n};\n\n\nexport type Query_RootDelegated_Staking_Pools_By_PkArgs = {\n staking_pool_address: Scalars['String']['input'];\n};\n\n\nexport type Query_RootDelegator_Distinct_PoolArgs = {\n distinct_on?: InputMaybe<Array<Delegator_Distinct_Pool_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Delegator_Distinct_Pool_Order_By>>;\n where?: InputMaybe<Delegator_Distinct_Pool_Bool_Exp>;\n};\n\n\nexport type Query_RootDelegator_Distinct_Pool_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Delegator_Distinct_Pool_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Delegator_Distinct_Pool_Order_By>>;\n where?: InputMaybe<Delegator_Distinct_Pool_Bool_Exp>;\n};\n\n\nexport type Query_RootEventsArgs = {\n distinct_on?: InputMaybe<Array<Events_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Events_Order_By>>;\n where?: InputMaybe<Events_Bool_Exp>;\n};\n\n\nexport type Query_RootEvents_By_PkArgs = {\n event_index: Scalars['bigint']['input'];\n transaction_version: Scalars['bigint']['input'];\n};\n\n\nexport type Query_RootFungible_Asset_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Fungible_Asset_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Fungible_Asset_Activities_Order_By>>;\n where?: InputMaybe<Fungible_Asset_Activities_Bool_Exp>;\n};\n\n\nexport type Query_RootFungible_Asset_Activities_By_PkArgs = {\n event_index: Scalars['bigint']['input'];\n transaction_version: Scalars['bigint']['input'];\n};\n\n\nexport type Query_RootFungible_Asset_MetadataArgs = {\n distinct_on?: InputMaybe<Array<Fungible_Asset_Metadata_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Fungible_Asset_Metadata_Order_By>>;\n where?: InputMaybe<Fungible_Asset_Metadata_Bool_Exp>;\n};\n\n\nexport type Query_RootFungible_Asset_Metadata_By_PkArgs = {\n asset_type: Scalars['String']['input'];\n};\n\n\nexport type Query_RootIndexer_StatusArgs = {\n distinct_on?: InputMaybe<Array<Indexer_Status_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Indexer_Status_Order_By>>;\n where?: InputMaybe<Indexer_Status_Bool_Exp>;\n};\n\n\nexport type Query_RootIndexer_Status_By_PkArgs = {\n db: Scalars['String']['input'];\n};\n\n\nexport type Query_RootLedger_InfosArgs = {\n distinct_on?: InputMaybe<Array<Ledger_Infos_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Ledger_Infos_Order_By>>;\n where?: InputMaybe<Ledger_Infos_Bool_Exp>;\n};\n\n\nexport type Query_RootLedger_Infos_By_PkArgs = {\n chain_id: Scalars['bigint']['input'];\n};\n\n\nexport type Query_RootMove_ResourcesArgs = {\n distinct_on?: InputMaybe<Array<Move_Resources_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Move_Resources_Order_By>>;\n where?: InputMaybe<Move_Resources_Bool_Exp>;\n};\n\n\nexport type Query_RootMove_Resources_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Move_Resources_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Move_Resources_Order_By>>;\n where?: InputMaybe<Move_Resources_Bool_Exp>;\n};\n\n\nexport type Query_RootNft_Metadata_Crawler_Parsed_Asset_UrisArgs = {\n distinct_on?: InputMaybe<Array<Nft_Metadata_Crawler_Parsed_Asset_Uris_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Nft_Metadata_Crawler_Parsed_Asset_Uris_Order_By>>;\n where?: InputMaybe<Nft_Metadata_Crawler_Parsed_Asset_Uris_Bool_Exp>;\n};\n\n\nexport type Query_RootNft_Metadata_Crawler_Parsed_Asset_Uris_By_PkArgs = {\n asset_uri: Scalars['String']['input'];\n};\n\n\nexport type Query_RootNum_Active_Delegator_Per_PoolArgs = {\n distinct_on?: InputMaybe<Array<Num_Active_Delegator_Per_Pool_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Num_Active_Delegator_Per_Pool_Order_By>>;\n where?: InputMaybe<Num_Active_Delegator_Per_Pool_Bool_Exp>;\n};\n\n\nexport type Query_RootProcessor_StatusArgs = {\n distinct_on?: InputMaybe<Array<Processor_Status_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Processor_Status_Order_By>>;\n where?: InputMaybe<Processor_Status_Bool_Exp>;\n};\n\n\nexport type Query_RootProcessor_Status_By_PkArgs = {\n processor: Scalars['String']['input'];\n};\n\n\nexport type Query_RootProposal_VotesArgs = {\n distinct_on?: InputMaybe<Array<Proposal_Votes_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Proposal_Votes_Order_By>>;\n where?: InputMaybe<Proposal_Votes_Bool_Exp>;\n};\n\n\nexport type Query_RootProposal_Votes_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Proposal_Votes_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Proposal_Votes_Order_By>>;\n where?: InputMaybe<Proposal_Votes_Bool_Exp>;\n};\n\n\nexport type Query_RootProposal_Votes_By_PkArgs = {\n proposal_id: Scalars['bigint']['input'];\n transaction_version: Scalars['bigint']['input'];\n voter_address: Scalars['String']['input'];\n};\n\n\nexport type Query_RootPublic_Key_Auth_KeysArgs = {\n distinct_on?: InputMaybe<Array<Public_Key_Auth_Keys_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Public_Key_Auth_Keys_Order_By>>;\n where?: InputMaybe<Public_Key_Auth_Keys_Bool_Exp>;\n};\n\n\nexport type Query_RootPublic_Key_Auth_Keys_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Public_Key_Auth_Keys_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Public_Key_Auth_Keys_Order_By>>;\n where?: InputMaybe<Public_Key_Auth_Keys_Bool_Exp>;\n};\n\n\nexport type Query_RootPublic_Key_Auth_Keys_By_PkArgs = {\n auth_key: Scalars['String']['input'];\n public_key: Scalars['String']['input'];\n public_key_type: Scalars['String']['input'];\n};\n\n\nexport type Query_RootSignaturesArgs = {\n distinct_on?: InputMaybe<Array<Signatures_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Signatures_Order_By>>;\n where?: InputMaybe<Signatures_Bool_Exp>;\n};\n\n\nexport type Query_RootSignatures_By_PkArgs = {\n is_sender_primary: Scalars['Boolean']['input'];\n multi_agent_index: Scalars['bigint']['input'];\n multi_sig_index: Scalars['bigint']['input'];\n transaction_version: Scalars['bigint']['input'];\n};\n\n\nexport type Query_RootTable_ItemsArgs = {\n distinct_on?: InputMaybe<Array<Table_Items_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Table_Items_Order_By>>;\n where?: InputMaybe<Table_Items_Bool_Exp>;\n};\n\n\nexport type Query_RootTable_Items_By_PkArgs = {\n transaction_version: Scalars['bigint']['input'];\n write_set_change_index: Scalars['bigint']['input'];\n};\n\n\nexport type Query_RootTable_MetadatasArgs = {\n distinct_on?: InputMaybe<Array<Table_Metadatas_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Table_Metadatas_Order_By>>;\n where?: InputMaybe<Table_Metadatas_Bool_Exp>;\n};\n\n\nexport type Query_RootTable_Metadatas_By_PkArgs = {\n handle: Scalars['String']['input'];\n};\n\n\nexport type Query_RootToken_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Token_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_Order_By>>;\n where?: InputMaybe<Token_Activities_Bool_Exp>;\n};\n\n\nexport type Query_RootToken_Activities_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Token_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_Order_By>>;\n where?: InputMaybe<Token_Activities_Bool_Exp>;\n};\n\n\nexport type Query_RootToken_Activities_V2Args = {\n distinct_on?: InputMaybe<Array<Token_Activities_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_V2_Order_By>>;\n where?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n};\n\n\nexport type Query_RootToken_Activities_V2_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Token_Activities_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_V2_Order_By>>;\n where?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n};\n\n\nexport type Query_RootToken_Activities_V2_By_PkArgs = {\n event_index: Scalars['bigint']['input'];\n transaction_version: Scalars['bigint']['input'];\n};\n\n\nexport type Query_RootToken_DatasArgs = {\n distinct_on?: InputMaybe<Array<Token_Datas_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Datas_Order_By>>;\n where?: InputMaybe<Token_Datas_Bool_Exp>;\n};\n\n\nexport type Query_RootToken_OwnershipsArgs = {\n distinct_on?: InputMaybe<Array<Token_Ownerships_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Ownerships_Order_By>>;\n where?: InputMaybe<Token_Ownerships_Bool_Exp>;\n};\n\n\nexport type Query_RootTokensArgs = {\n distinct_on?: InputMaybe<Array<Tokens_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Tokens_Order_By>>;\n where?: InputMaybe<Tokens_Bool_Exp>;\n};\n\n\nexport type Query_RootUser_TransactionsArgs = {\n distinct_on?: InputMaybe<Array<User_Transactions_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<User_Transactions_Order_By>>;\n where?: InputMaybe<User_Transactions_Bool_Exp>;\n};\n\n\nexport type Query_RootUser_Transactions_By_PkArgs = {\n version: Scalars['bigint']['input'];\n};\n\n/** columns and relationships of \"signatures\" */\nexport type Signatures = {\n __typename?: 'signatures';\n is_sender_primary: Scalars['Boolean']['output'];\n multi_agent_index: Scalars['bigint']['output'];\n multi_sig_index: Scalars['bigint']['output'];\n public_key: Scalars['String']['output'];\n public_key_indices: Scalars['jsonb']['output'];\n signature: Scalars['String']['output'];\n signer: Scalars['String']['output'];\n threshold: Scalars['bigint']['output'];\n transaction_block_height: Scalars['bigint']['output'];\n transaction_version: Scalars['bigint']['output'];\n type: Scalars['String']['output'];\n};\n\n\n/** columns and relationships of \"signatures\" */\nexport type SignaturesPublic_Key_IndicesArgs = {\n path?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Boolean expression to filter rows from the table \"signatures\". All fields are combined with a logical 'AND'. */\nexport type Signatures_Bool_Exp = {\n _and?: InputMaybe<Array<Signatures_Bool_Exp>>;\n _not?: InputMaybe<Signatures_Bool_Exp>;\n _or?: InputMaybe<Array<Signatures_Bool_Exp>>;\n is_sender_primary?: InputMaybe<Boolean_Comparison_Exp>;\n multi_agent_index?: InputMaybe<Bigint_Comparison_Exp>;\n multi_sig_index?: InputMaybe<Bigint_Comparison_Exp>;\n public_key?: InputMaybe<String_Comparison_Exp>;\n public_key_indices?: InputMaybe<Jsonb_Comparison_Exp>;\n signature?: InputMaybe<String_Comparison_Exp>;\n signer?: InputMaybe<String_Comparison_Exp>;\n threshold?: InputMaybe<Bigint_Comparison_Exp>;\n transaction_block_height?: InputMaybe<Bigint_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n type?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"signatures\". */\nexport type Signatures_Order_By = {\n is_sender_primary?: InputMaybe<Order_By>;\n multi_agent_index?: InputMaybe<Order_By>;\n multi_sig_index?: InputMaybe<Order_By>;\n public_key?: InputMaybe<Order_By>;\n public_key_indices?: InputMaybe<Order_By>;\n signature?: InputMaybe<Order_By>;\n signer?: InputMaybe<Order_By>;\n threshold?: InputMaybe<Order_By>;\n transaction_block_height?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n type?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"signatures\" */\nexport enum Signatures_Select_Column {\n /** column name */\n IsSenderPrimary = 'is_sender_primary',\n /** column name */\n MultiAgentIndex = 'multi_agent_index',\n /** column name */\n MultiSigIndex = 'multi_sig_index',\n /** column name */\n PublicKey = 'public_key',\n /** column name */\n PublicKeyIndices = 'public_key_indices',\n /** column name */\n Signature = 'signature',\n /** column name */\n Signer = 'signer',\n /** column name */\n Threshold = 'threshold',\n /** column name */\n TransactionBlockHeight = 'transaction_block_height',\n /** column name */\n TransactionVersion = 'transaction_version',\n /** column name */\n Type = 'type'\n}\n\n/** Streaming cursor of the table \"signatures\" */\nexport type Signatures_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Signatures_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Signatures_Stream_Cursor_Value_Input = {\n is_sender_primary?: InputMaybe<Scalars['Boolean']['input']>;\n multi_agent_index?: InputMaybe<Scalars['bigint']['input']>;\n multi_sig_index?: InputMaybe<Scalars['bigint']['input']>;\n public_key?: InputMaybe<Scalars['String']['input']>;\n public_key_indices?: InputMaybe<Scalars['jsonb']['input']>;\n signature?: InputMaybe<Scalars['String']['input']>;\n signer?: InputMaybe<Scalars['String']['input']>;\n threshold?: InputMaybe<Scalars['bigint']['input']>;\n transaction_block_height?: InputMaybe<Scalars['bigint']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type Subscription_Root = {\n __typename?: 'subscription_root';\n /** fetch data from the table: \"account_transactions\" */\n account_transactions: Array<Account_Transactions>;\n /** fetch aggregated fields from the table: \"account_transactions\" */\n account_transactions_aggregate: Account_Transactions_Aggregate;\n /** fetch data from the table: \"account_transactions\" using primary key columns */\n account_transactions_by_pk?: Maybe<Account_Transactions>;\n /** fetch data from the table in a streaming manner: \"account_transactions\" */\n account_transactions_stream: Array<Account_Transactions>;\n /** fetch data from the table: \"address_events_summary\" */\n address_events_summary: Array<Address_Events_Summary>;\n /** fetch data from the table in a streaming manner: \"address_events_summary\" */\n address_events_summary_stream: Array<Address_Events_Summary>;\n /** fetch data from the table: \"address_version_from_events\" */\n address_version_from_events: Array<Address_Version_From_Events>;\n /** fetch aggregated fields from the table: \"address_version_from_events\" */\n address_version_from_events_aggregate: Address_Version_From_Events_Aggregate;\n /** fetch data from the table in a streaming manner: \"address_version_from_events\" */\n address_version_from_events_stream: Array<Address_Version_From_Events>;\n /** fetch data from the table: \"legacy_migration_v1.address_version_from_move_resources\" */\n address_version_from_move_resources: Array<Address_Version_From_Move_Resources>;\n /** fetch aggregated fields from the table: \"legacy_migration_v1.address_version_from_move_resources\" */\n address_version_from_move_resources_aggregate: Address_Version_From_Move_Resources_Aggregate;\n /** fetch data from the table in a streaming manner: \"legacy_migration_v1.address_version_from_move_resources\" */\n address_version_from_move_resources_stream: Array<Address_Version_From_Move_Resources>;\n /** fetch data from the table: \"auth_key_account_addresses\" */\n auth_key_account_addresses: Array<Auth_Key_Account_Addresses>;\n /** fetch aggregated fields from the table: \"auth_key_account_addresses\" */\n auth_key_account_addresses_aggregate: Auth_Key_Account_Addresses_Aggregate;\n /** fetch data from the table: \"auth_key_account_addresses\" using primary key columns */\n auth_key_account_addresses_by_pk?: Maybe<Auth_Key_Account_Addresses>;\n /** fetch data from the table in a streaming manner: \"auth_key_account_addresses\" */\n auth_key_account_addresses_stream: Array<Auth_Key_Account_Addresses>;\n /** fetch data from the table: \"block_metadata_transactions\" */\n block_metadata_transactions: Array<Block_Metadata_Transactions>;\n /** fetch data from the table: \"block_metadata_transactions\" using primary key columns */\n block_metadata_transactions_by_pk?: Maybe<Block_Metadata_Transactions>;\n /** fetch data from the table in a streaming manner: \"block_metadata_transactions\" */\n block_metadata_transactions_stream: Array<Block_Metadata_Transactions>;\n /** An array relationship */\n coin_activities: Array<Coin_Activities>;\n /** An aggregate relationship */\n coin_activities_aggregate: Coin_Activities_Aggregate;\n /** fetch data from the table in a streaming manner: \"legacy_migration_v1.coin_activities\" */\n coin_activities_stream: Array<Coin_Activities>;\n /** fetch data from the table: \"legacy_migration_v1.coin_balances\" */\n coin_balances: Array<Coin_Balances>;\n /** fetch data from the table in a streaming manner: \"legacy_migration_v1.coin_balances\" */\n coin_balances_stream: Array<Coin_Balances>;\n /** fetch data from the table: \"legacy_migration_v1.coin_infos\" */\n coin_infos: Array<Coin_Infos>;\n /** fetch data from the table in a streaming manner: \"legacy_migration_v1.coin_infos\" */\n coin_infos_stream: Array<Coin_Infos>;\n /** fetch data from the table: \"coin_supply\" */\n coin_supply: Array<Coin_Supply>;\n /** fetch data from the table: \"coin_supply\" using primary key columns */\n coin_supply_by_pk?: Maybe<Coin_Supply>;\n /** fetch data from the table in a streaming manner: \"coin_supply\" */\n coin_supply_stream: Array<Coin_Supply>;\n /** fetch data from the table: \"legacy_migration_v1.collection_datas\" */\n collection_datas: Array<Collection_Datas>;\n /** fetch data from the table in a streaming manner: \"legacy_migration_v1.collection_datas\" */\n collection_datas_stream: Array<Collection_Datas>;\n /** fetch data from the table: \"legacy_migration_v1.current_ans_lookup\" */\n current_ans_lookup: Array<Current_Ans_Lookup>;\n /** fetch data from the table in a streaming manner: \"legacy_migration_v1.current_ans_lookup\" */\n current_ans_lookup_stream: Array<Current_Ans_Lookup>;\n /** fetch data from the table: \"current_ans_lookup_v2\" */\n current_ans_lookup_v2: Array<Current_Ans_Lookup_V2>;\n /** fetch data from the table: \"current_ans_lookup_v2\" using primary key columns */\n current_ans_lookup_v2_by_pk?: Maybe<Current_Ans_Lookup_V2>;\n /** fetch data from the table in a streaming manner: \"current_ans_lookup_v2\" */\n current_ans_lookup_v2_stream: Array<Current_Ans_Lookup_V2>;\n /** fetch data from the table: \"current_aptos_names\" */\n current_aptos_names: Array<Current_Aptos_Names>;\n /** fetch aggregated fields from the table: \"current_aptos_names\" */\n current_aptos_names_aggregate: Current_Aptos_Names_Aggregate;\n /** fetch data from the table in a streaming manner: \"current_aptos_names\" */\n current_aptos_names_stream: Array<Current_Aptos_Names>;\n /** fetch data from the table: \"legacy_migration_v1.current_coin_balances\" */\n current_coin_balances: Array<Current_Coin_Balances>;\n /** fetch data from the table in a streaming manner: \"legacy_migration_v1.current_coin_balances\" */\n current_coin_balances_stream: Array<Current_Coin_Balances>;\n /** fetch data from the table: \"legacy_migration_v1.current_collection_datas\" */\n current_collection_datas: Array<Current_Collection_Datas>;\n /** fetch data from the table in a streaming manner: \"legacy_migration_v1.current_collection_datas\" */\n current_collection_datas_stream: Array<Current_Collection_Datas>;\n /** fetch data from the table: \"current_collection_ownership_v2_view\" */\n current_collection_ownership_v2_view: Array<Current_Collection_Ownership_V2_View>;\n /** fetch aggregated fields from the table: \"current_collection_ownership_v2_view\" */\n current_collection_ownership_v2_view_aggregate: Current_Collection_Ownership_V2_View_Aggregate;\n /** fetch data from the table in a streaming manner: \"current_collection_ownership_v2_view\" */\n current_collection_ownership_v2_view_stream: Array<Current_Collection_Ownership_V2_View>;\n /** fetch data from the table: \"current_collections_v2\" */\n current_collections_v2: Array<Current_Collections_V2>;\n /** fetch data from the table: \"current_collections_v2\" using primary key columns */\n current_collections_v2_by_pk?: Maybe<Current_Collections_V2>;\n /** fetch data from the table in a streaming manner: \"current_collections_v2\" */\n current_collections_v2_stream: Array<Current_Collections_V2>;\n /** fetch data from the table: \"current_delegated_staking_pool_balances\" */\n current_delegated_staking_pool_balances: Array<Current_Delegated_Staking_Pool_Balances>;\n /** fetch data from the table: \"current_delegated_staking_pool_balances\" using primary key columns */\n current_delegated_staking_pool_balances_by_pk?: Maybe<Current_Delegated_Staking_Pool_Balances>;\n /** fetch data from the table in a streaming manner: \"current_delegated_staking_pool_balances\" */\n current_delegated_staking_pool_balances_stream: Array<Current_Delegated_Staking_Pool_Balances>;\n /** fetch data from the table: \"current_delegated_voter\" */\n current_delegated_voter: Array<Current_Delegated_Voter>;\n /** fetch data from the table: \"current_delegated_voter\" using primary key columns */\n current_delegated_voter_by_pk?: Maybe<Current_Delegated_Voter>;\n /** fetch data from the table in a streaming manner: \"current_delegated_voter\" */\n current_delegated_voter_stream: Array<Current_Delegated_Voter>;\n /** fetch data from the table: \"current_delegator_balances\" */\n current_delegator_balances: Array<Current_Delegator_Balances>;\n /** fetch data from the table: \"current_delegator_balances\" using primary key columns */\n current_delegator_balances_by_pk?: Maybe<Current_Delegator_Balances>;\n /** fetch data from the table in a streaming manner: \"current_delegator_balances\" */\n current_delegator_balances_stream: Array<Current_Delegator_Balances>;\n /** fetch data from the table: \"current_fungible_asset_balances\" */\n current_fungible_asset_balances: Array<Current_Fungible_Asset_Balances>;\n /** fetch aggregated fields from the table: \"current_fungible_asset_balances\" */\n current_fungible_asset_balances_aggregate: Current_Fungible_Asset_Balances_Aggregate;\n /** fetch data from the table: \"current_fungible_asset_balances\" using primary key columns */\n current_fungible_asset_balances_by_pk?: Maybe<Current_Fungible_Asset_Balances>;\n /** fetch data from the table in a streaming manner: \"current_fungible_asset_balances\" */\n current_fungible_asset_balances_stream: Array<Current_Fungible_Asset_Balances>;\n /** fetch data from the table: \"current_objects\" */\n current_objects: Array<Current_Objects>;\n /** fetch data from the table: \"current_objects\" using primary key columns */\n current_objects_by_pk?: Maybe<Current_Objects>;\n /** fetch data from the table in a streaming manner: \"current_objects\" */\n current_objects_stream: Array<Current_Objects>;\n /** fetch data from the table: \"current_staking_pool_voter\" */\n current_staking_pool_voter: Array<Current_Staking_Pool_Voter>;\n /** fetch data from the table: \"current_staking_pool_voter\" using primary key columns */\n current_staking_pool_voter_by_pk?: Maybe<Current_Staking_Pool_Voter>;\n /** fetch data from the table in a streaming manner: \"current_staking_pool_voter\" */\n current_staking_pool_voter_stream: Array<Current_Staking_Pool_Voter>;\n /** fetch data from the table: \"current_table_items\" */\n current_table_items: Array<Current_Table_Items>;\n /** fetch data from the table: \"current_table_items\" using primary key columns */\n current_table_items_by_pk?: Maybe<Current_Table_Items>;\n /** fetch data from the table in a streaming manner: \"current_table_items\" */\n current_table_items_stream: Array<Current_Table_Items>;\n /** fetch data from the table: \"legacy_migration_v1.current_token_datas\" */\n current_token_datas: Array<Current_Token_Datas>;\n /** fetch data from the table in a streaming manner: \"legacy_migration_v1.current_token_datas\" */\n current_token_datas_stream: Array<Current_Token_Datas>;\n /** fetch data from the table: \"current_token_datas_v2\" */\n current_token_datas_v2: Array<Current_Token_Datas_V2>;\n /** fetch data from the table: \"current_token_datas_v2\" using primary key columns */\n current_token_datas_v2_by_pk?: Maybe<Current_Token_Datas_V2>;\n /** fetch data from the table in a streaming manner: \"current_token_datas_v2\" */\n current_token_datas_v2_stream: Array<Current_Token_Datas_V2>;\n /** fetch data from the table: \"legacy_migration_v1.current_token_ownerships\" */\n current_token_ownerships: Array<Current_Token_Ownerships>;\n /** fetch aggregated fields from the table: \"legacy_migration_v1.current_token_ownerships\" */\n current_token_ownerships_aggregate: Current_Token_Ownerships_Aggregate;\n /** fetch data from the table in a streaming manner: \"legacy_migration_v1.current_token_ownerships\" */\n current_token_ownerships_stream: Array<Current_Token_Ownerships>;\n /** fetch data from the table: \"current_token_ownerships_v2\" */\n current_token_ownerships_v2: Array<Current_Token_Ownerships_V2>;\n /** fetch aggregated fields from the table: \"current_token_ownerships_v2\" */\n current_token_ownerships_v2_aggregate: Current_Token_Ownerships_V2_Aggregate;\n /** fetch data from the table: \"current_token_ownerships_v2\" using primary key columns */\n current_token_ownerships_v2_by_pk?: Maybe<Current_Token_Ownerships_V2>;\n /** fetch data from the table in a streaming manner: \"current_token_ownerships_v2\" */\n current_token_ownerships_v2_stream: Array<Current_Token_Ownerships_V2>;\n /** fetch data from the table: \"current_token_pending_claims\" */\n current_token_pending_claims: Array<Current_Token_Pending_Claims>;\n /** fetch data from the table: \"current_token_pending_claims\" using primary key columns */\n current_token_pending_claims_by_pk?: Maybe<Current_Token_Pending_Claims>;\n /** fetch data from the table in a streaming manner: \"current_token_pending_claims\" */\n current_token_pending_claims_stream: Array<Current_Token_Pending_Claims>;\n /** fetch data from the table: \"current_token_royalty_v1\" */\n current_token_royalty_v1: Array<Current_Token_Royalty_V1>;\n /** fetch data from the table: \"current_token_royalty_v1\" using primary key columns */\n current_token_royalty_v1_by_pk?: Maybe<Current_Token_Royalty_V1>;\n /** fetch data from the table in a streaming manner: \"current_token_royalty_v1\" */\n current_token_royalty_v1_stream: Array<Current_Token_Royalty_V1>;\n /** An array relationship */\n delegated_staking_activities: Array<Delegated_Staking_Activities>;\n /** fetch data from the table: \"delegated_staking_activities\" using primary key columns */\n delegated_staking_activities_by_pk?: Maybe<Delegated_Staking_Activities>;\n /** fetch data from the table in a streaming manner: \"delegated_staking_activities\" */\n delegated_staking_activities_stream: Array<Delegated_Staking_Activities>;\n /** fetch data from the table: \"delegated_staking_pool_balances\" */\n delegated_staking_pool_balances: Array<Delegated_Staking_Pool_Balances>;\n /** fetch aggregated fields from the table: \"delegated_staking_pool_balances\" */\n delegated_staking_pool_balances_aggregate: Delegated_Staking_Pool_Balances_Aggregate;\n /** fetch data from the table: \"delegated_staking_pool_balances\" using primary key columns */\n delegated_staking_pool_balances_by_pk?: Maybe<Delegated_Staking_Pool_Balances>;\n /** fetch data from the table in a streaming manner: \"delegated_staking_pool_balances\" */\n delegated_staking_pool_balances_stream: Array<Delegated_Staking_Pool_Balances>;\n /** fetch data from the table: \"delegated_staking_pools\" */\n delegated_staking_pools: Array<Delegated_Staking_Pools>;\n /** fetch data from the table: \"delegated_staking_pools\" using primary key columns */\n delegated_staking_pools_by_pk?: Maybe<Delegated_Staking_Pools>;\n /** fetch data from the table in a streaming manner: \"delegated_staking_pools\" */\n delegated_staking_pools_stream: Array<Delegated_Staking_Pools>;\n /** fetch data from the table: \"delegator_distinct_pool\" */\n delegator_distinct_pool: Array<Delegator_Distinct_Pool>;\n /** fetch aggregated fields from the table: \"delegator_distinct_pool\" */\n delegator_distinct_pool_aggregate: Delegator_Distinct_Pool_Aggregate;\n /** fetch data from the table in a streaming manner: \"delegator_distinct_pool\" */\n delegator_distinct_pool_stream: Array<Delegator_Distinct_Pool>;\n /** fetch data from the table: \"events\" */\n events: Array<Events>;\n /** fetch data from the table: \"events\" using primary key columns */\n events_by_pk?: Maybe<Events>;\n /** fetch data from the table in a streaming manner: \"events\" */\n events_stream: Array<Events>;\n /** An array relationship */\n fungible_asset_activities: Array<Fungible_Asset_Activities>;\n /** fetch data from the table: \"fungible_asset_activities\" using primary key columns */\n fungible_asset_activities_by_pk?: Maybe<Fungible_Asset_Activities>;\n /** fetch data from the table in a streaming manner: \"fungible_asset_activities\" */\n fungible_asset_activities_stream: Array<Fungible_Asset_Activities>;\n /** fetch data from the table: \"fungible_asset_metadata\" */\n fungible_asset_metadata: Array<Fungible_Asset_Metadata>;\n /** fetch data from the table: \"fungible_asset_metadata\" using primary key columns */\n fungible_asset_metadata_by_pk?: Maybe<Fungible_Asset_Metadata>;\n /** fetch data from the table in a streaming manner: \"fungible_asset_metadata\" */\n fungible_asset_metadata_stream: Array<Fungible_Asset_Metadata>;\n /** fetch data from the table: \"indexer_status\" */\n indexer_status: Array<Indexer_Status>;\n /** fetch data from the table: \"indexer_status\" using primary key columns */\n indexer_status_by_pk?: Maybe<Indexer_Status>;\n /** fetch data from the table in a streaming manner: \"indexer_status\" */\n indexer_status_stream: Array<Indexer_Status>;\n /** fetch data from the table: \"processor_metadata.ledger_infos\" */\n ledger_infos: Array<Ledger_Infos>;\n /** fetch data from the table: \"processor_metadata.ledger_infos\" using primary key columns */\n ledger_infos_by_pk?: Maybe<Ledger_Infos>;\n /** fetch data from the table in a streaming manner: \"processor_metadata.ledger_infos\" */\n ledger_infos_stream: Array<Ledger_Infos>;\n /** fetch data from the table: \"legacy_migration_v1.move_resources\" */\n move_resources: Array<Move_Resources>;\n /** fetch aggregated fields from the table: \"legacy_migration_v1.move_resources\" */\n move_resources_aggregate: Move_Resources_Aggregate;\n /** fetch data from the table in a streaming manner: \"legacy_migration_v1.move_resources\" */\n move_resources_stream: Array<Move_Resources>;\n /** fetch data from the table: \"nft_metadata_crawler.parsed_asset_uris\" */\n nft_metadata_crawler_parsed_asset_uris: Array<Nft_Metadata_Crawler_Parsed_Asset_Uris>;\n /** fetch data from the table: \"nft_metadata_crawler.parsed_asset_uris\" using primary key columns */\n nft_metadata_crawler_parsed_asset_uris_by_pk?: Maybe<Nft_Metadata_Crawler_Parsed_Asset_Uris>;\n /** fetch data from the table in a streaming manner: \"nft_metadata_crawler.parsed_asset_uris\" */\n nft_metadata_crawler_parsed_asset_uris_stream: Array<Nft_Metadata_Crawler_Parsed_Asset_Uris>;\n /** fetch data from the table: \"num_active_delegator_per_pool\" */\n num_active_delegator_per_pool: Array<Num_Active_Delegator_Per_Pool>;\n /** fetch data from the table in a streaming manner: \"num_active_delegator_per_pool\" */\n num_active_delegator_per_pool_stream: Array<Num_Active_Delegator_Per_Pool>;\n /** fetch data from the table: \"processor_metadata.processor_status\" */\n processor_status: Array<Processor_Status>;\n /** fetch data from the table: \"processor_metadata.processor_status\" using primary key columns */\n processor_status_by_pk?: Maybe<Processor_Status>;\n /** fetch data from the table in a streaming manner: \"processor_metadata.processor_status\" */\n processor_status_stream: Array<Processor_Status>;\n /** fetch data from the table: \"proposal_votes\" */\n proposal_votes: Array<Proposal_Votes>;\n /** fetch aggregated fields from the table: \"proposal_votes\" */\n proposal_votes_aggregate: Proposal_Votes_Aggregate;\n /** fetch data from the table: \"proposal_votes\" using primary key columns */\n proposal_votes_by_pk?: Maybe<Proposal_Votes>;\n /** fetch data from the table in a streaming manner: \"proposal_votes\" */\n proposal_votes_stream: Array<Proposal_Votes>;\n /** fetch data from the table: \"public_key_auth_keys\" */\n public_key_auth_keys: Array<Public_Key_Auth_Keys>;\n /** fetch aggregated fields from the table: \"public_key_auth_keys\" */\n public_key_auth_keys_aggregate: Public_Key_Auth_Keys_Aggregate;\n /** fetch data from the table: \"public_key_auth_keys\" using primary key columns */\n public_key_auth_keys_by_pk?: Maybe<Public_Key_Auth_Keys>;\n /** fetch data from the table in a streaming manner: \"public_key_auth_keys\" */\n public_key_auth_keys_stream: Array<Public_Key_Auth_Keys>;\n /** fetch data from the table: \"signatures\" */\n signatures: Array<Signatures>;\n /** fetch data from the table: \"signatures\" using primary key columns */\n signatures_by_pk?: Maybe<Signatures>;\n /** fetch data from the table in a streaming manner: \"signatures\" */\n signatures_stream: Array<Signatures>;\n /** fetch data from the table: \"table_items\" */\n table_items: Array<Table_Items>;\n /** fetch data from the table: \"table_items\" using primary key columns */\n table_items_by_pk?: Maybe<Table_Items>;\n /** fetch data from the table in a streaming manner: \"table_items\" */\n table_items_stream: Array<Table_Items>;\n /** fetch data from the table: \"table_metadatas\" */\n table_metadatas: Array<Table_Metadatas>;\n /** fetch data from the table: \"table_metadatas\" using primary key columns */\n table_metadatas_by_pk?: Maybe<Table_Metadatas>;\n /** fetch data from the table in a streaming manner: \"table_metadatas\" */\n table_metadatas_stream: Array<Table_Metadatas>;\n /** An array relationship */\n token_activities: Array<Token_Activities>;\n /** An aggregate relationship */\n token_activities_aggregate: Token_Activities_Aggregate;\n /** fetch data from the table in a streaming manner: \"legacy_migration_v1.token_activities\" */\n token_activities_stream: Array<Token_Activities>;\n /** An array relationship */\n token_activities_v2: Array<Token_Activities_V2>;\n /** An aggregate relationship */\n token_activities_v2_aggregate: Token_Activities_V2_Aggregate;\n /** fetch data from the table: \"token_activities_v2\" using primary key columns */\n token_activities_v2_by_pk?: Maybe<Token_Activities_V2>;\n /** fetch data from the table in a streaming manner: \"token_activities_v2\" */\n token_activities_v2_stream: Array<Token_Activities_V2>;\n /** fetch data from the table: \"legacy_migration_v1.token_datas\" */\n token_datas: Array<Token_Datas>;\n /** fetch data from the table in a streaming manner: \"legacy_migration_v1.token_datas\" */\n token_datas_stream: Array<Token_Datas>;\n /** fetch data from the table: \"legacy_migration_v1.token_ownerships\" */\n token_ownerships: Array<Token_Ownerships>;\n /** fetch data from the table in a streaming manner: \"legacy_migration_v1.token_ownerships\" */\n token_ownerships_stream: Array<Token_Ownerships>;\n /** fetch data from the table: \"legacy_migration_v1.tokens\" */\n tokens: Array<Tokens>;\n /** fetch data from the table in a streaming manner: \"legacy_migration_v1.tokens\" */\n tokens_stream: Array<Tokens>;\n /** fetch data from the table: \"user_transactions\" */\n user_transactions: Array<User_Transactions>;\n /** fetch data from the table: \"user_transactions\" using primary key columns */\n user_transactions_by_pk?: Maybe<User_Transactions>;\n /** fetch data from the table in a streaming manner: \"user_transactions\" */\n user_transactions_stream: Array<User_Transactions>;\n};\n\n\nexport type Subscription_RootAccount_TransactionsArgs = {\n distinct_on?: InputMaybe<Array<Account_Transactions_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Account_Transactions_Order_By>>;\n where?: InputMaybe<Account_Transactions_Bool_Exp>;\n};\n\n\nexport type Subscription_RootAccount_Transactions_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Account_Transactions_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Account_Transactions_Order_By>>;\n where?: InputMaybe<Account_Transactions_Bool_Exp>;\n};\n\n\nexport type Subscription_RootAccount_Transactions_By_PkArgs = {\n account_address: Scalars['String']['input'];\n transaction_version: Scalars['bigint']['input'];\n};\n\n\nexport type Subscription_RootAccount_Transactions_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Account_Transactions_Stream_Cursor_Input>>;\n where?: InputMaybe<Account_Transactions_Bool_Exp>;\n};\n\n\nexport type Subscription_RootAddress_Events_SummaryArgs = {\n distinct_on?: InputMaybe<Array<Address_Events_Summary_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Address_Events_Summary_Order_By>>;\n where?: InputMaybe<Address_Events_Summary_Bool_Exp>;\n};\n\n\nexport type Subscription_RootAddress_Events_Summary_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Address_Events_Summary_Stream_Cursor_Input>>;\n where?: InputMaybe<Address_Events_Summary_Bool_Exp>;\n};\n\n\nexport type Subscription_RootAddress_Version_From_EventsArgs = {\n distinct_on?: InputMaybe<Array<Address_Version_From_Events_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Address_Version_From_Events_Order_By>>;\n where?: InputMaybe<Address_Version_From_Events_Bool_Exp>;\n};\n\n\nexport type Subscription_RootAddress_Version_From_Events_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Address_Version_From_Events_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Address_Version_From_Events_Order_By>>;\n where?: InputMaybe<Address_Version_From_Events_Bool_Exp>;\n};\n\n\nexport type Subscription_RootAddress_Version_From_Events_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Address_Version_From_Events_Stream_Cursor_Input>>;\n where?: InputMaybe<Address_Version_From_Events_Bool_Exp>;\n};\n\n\nexport type Subscription_RootAddress_Version_From_Move_ResourcesArgs = {\n distinct_on?: InputMaybe<Array<Address_Version_From_Move_Resources_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Address_Version_From_Move_Resources_Order_By>>;\n where?: InputMaybe<Address_Version_From_Move_Resources_Bool_Exp>;\n};\n\n\nexport type Subscription_RootAddress_Version_From_Move_Resources_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Address_Version_From_Move_Resources_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Address_Version_From_Move_Resources_Order_By>>;\n where?: InputMaybe<Address_Version_From_Move_Resources_Bool_Exp>;\n};\n\n\nexport type Subscription_RootAddress_Version_From_Move_Resources_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Address_Version_From_Move_Resources_Stream_Cursor_Input>>;\n where?: InputMaybe<Address_Version_From_Move_Resources_Bool_Exp>;\n};\n\n\nexport type Subscription_RootAuth_Key_Account_AddressesArgs = {\n distinct_on?: InputMaybe<Array<Auth_Key_Account_Addresses_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Auth_Key_Account_Addresses_Order_By>>;\n where?: InputMaybe<Auth_Key_Account_Addresses_Bool_Exp>;\n};\n\n\nexport type Subscription_RootAuth_Key_Account_Addresses_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Auth_Key_Account_Addresses_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Auth_Key_Account_Addresses_Order_By>>;\n where?: InputMaybe<Auth_Key_Account_Addresses_Bool_Exp>;\n};\n\n\nexport type Subscription_RootAuth_Key_Account_Addresses_By_PkArgs = {\n account_address: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootAuth_Key_Account_Addresses_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Auth_Key_Account_Addresses_Stream_Cursor_Input>>;\n where?: InputMaybe<Auth_Key_Account_Addresses_Bool_Exp>;\n};\n\n\nexport type Subscription_RootBlock_Metadata_TransactionsArgs = {\n distinct_on?: InputMaybe<Array<Block_Metadata_Transactions_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Block_Metadata_Transactions_Order_By>>;\n where?: InputMaybe<Block_Metadata_Transactions_Bool_Exp>;\n};\n\n\nexport type Subscription_RootBlock_Metadata_Transactions_By_PkArgs = {\n version: Scalars['bigint']['input'];\n};\n\n\nexport type Subscription_RootBlock_Metadata_Transactions_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Block_Metadata_Transactions_Stream_Cursor_Input>>;\n where?: InputMaybe<Block_Metadata_Transactions_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCoin_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Coin_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Coin_Activities_Order_By>>;\n where?: InputMaybe<Coin_Activities_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCoin_Activities_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Coin_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Coin_Activities_Order_By>>;\n where?: InputMaybe<Coin_Activities_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCoin_Activities_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Coin_Activities_Stream_Cursor_Input>>;\n where?: InputMaybe<Coin_Activities_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCoin_BalancesArgs = {\n distinct_on?: InputMaybe<Array<Coin_Balances_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Coin_Balances_Order_By>>;\n where?: InputMaybe<Coin_Balances_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCoin_Balances_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Coin_Balances_Stream_Cursor_Input>>;\n where?: InputMaybe<Coin_Balances_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCoin_InfosArgs = {\n distinct_on?: InputMaybe<Array<Coin_Infos_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Coin_Infos_Order_By>>;\n where?: InputMaybe<Coin_Infos_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCoin_Infos_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Coin_Infos_Stream_Cursor_Input>>;\n where?: InputMaybe<Coin_Infos_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCoin_SupplyArgs = {\n distinct_on?: InputMaybe<Array<Coin_Supply_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Coin_Supply_Order_By>>;\n where?: InputMaybe<Coin_Supply_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCoin_Supply_By_PkArgs = {\n coin_type_hash: Scalars['String']['input'];\n transaction_version: Scalars['bigint']['input'];\n};\n\n\nexport type Subscription_RootCoin_Supply_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Coin_Supply_Stream_Cursor_Input>>;\n where?: InputMaybe<Coin_Supply_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCollection_DatasArgs = {\n distinct_on?: InputMaybe<Array<Collection_Datas_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Collection_Datas_Order_By>>;\n where?: InputMaybe<Collection_Datas_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCollection_Datas_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Collection_Datas_Stream_Cursor_Input>>;\n where?: InputMaybe<Collection_Datas_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Ans_LookupArgs = {\n distinct_on?: InputMaybe<Array<Current_Ans_Lookup_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Ans_Lookup_Order_By>>;\n where?: InputMaybe<Current_Ans_Lookup_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Ans_Lookup_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Ans_Lookup_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Ans_Lookup_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Ans_Lookup_V2Args = {\n distinct_on?: InputMaybe<Array<Current_Ans_Lookup_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Ans_Lookup_V2_Order_By>>;\n where?: InputMaybe<Current_Ans_Lookup_V2_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Ans_Lookup_V2_By_PkArgs = {\n domain: Scalars['String']['input'];\n subdomain: Scalars['String']['input'];\n token_standard: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootCurrent_Ans_Lookup_V2_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Ans_Lookup_V2_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Ans_Lookup_V2_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Aptos_NamesArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Aptos_Names_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Aptos_Names_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Aptos_Names_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Coin_BalancesArgs = {\n distinct_on?: InputMaybe<Array<Current_Coin_Balances_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Coin_Balances_Order_By>>;\n where?: InputMaybe<Current_Coin_Balances_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Coin_Balances_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Coin_Balances_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Coin_Balances_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Collection_DatasArgs = {\n distinct_on?: InputMaybe<Array<Current_Collection_Datas_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Collection_Datas_Order_By>>;\n where?: InputMaybe<Current_Collection_Datas_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Collection_Datas_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Collection_Datas_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Collection_Datas_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Collection_Ownership_V2_ViewArgs = {\n distinct_on?: InputMaybe<Array<Current_Collection_Ownership_V2_View_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Collection_Ownership_V2_View_Order_By>>;\n where?: InputMaybe<Current_Collection_Ownership_V2_View_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Collection_Ownership_V2_View_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Collection_Ownership_V2_View_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Collection_Ownership_V2_View_Order_By>>;\n where?: InputMaybe<Current_Collection_Ownership_V2_View_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Collection_Ownership_V2_View_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Collection_Ownership_V2_View_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Collection_Ownership_V2_View_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Collections_V2Args = {\n distinct_on?: InputMaybe<Array<Current_Collections_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Collections_V2_Order_By>>;\n where?: InputMaybe<Current_Collections_V2_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Collections_V2_By_PkArgs = {\n collection_id: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootCurrent_Collections_V2_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Collections_V2_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Collections_V2_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Delegated_Staking_Pool_BalancesArgs = {\n distinct_on?: InputMaybe<Array<Current_Delegated_Staking_Pool_Balances_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Delegated_Staking_Pool_Balances_Order_By>>;\n where?: InputMaybe<Current_Delegated_Staking_Pool_Balances_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Delegated_Staking_Pool_Balances_By_PkArgs = {\n staking_pool_address: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootCurrent_Delegated_Staking_Pool_Balances_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Delegated_Staking_Pool_Balances_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Delegated_Staking_Pool_Balances_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Delegated_VoterArgs = {\n distinct_on?: InputMaybe<Array<Current_Delegated_Voter_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Delegated_Voter_Order_By>>;\n where?: InputMaybe<Current_Delegated_Voter_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Delegated_Voter_By_PkArgs = {\n delegation_pool_address: Scalars['String']['input'];\n delegator_address: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootCurrent_Delegated_Voter_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Delegated_Voter_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Delegated_Voter_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Delegator_BalancesArgs = {\n distinct_on?: InputMaybe<Array<Current_Delegator_Balances_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Delegator_Balances_Order_By>>;\n where?: InputMaybe<Current_Delegator_Balances_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Delegator_Balances_By_PkArgs = {\n delegator_address: Scalars['String']['input'];\n pool_address: Scalars['String']['input'];\n pool_type: Scalars['String']['input'];\n table_handle: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootCurrent_Delegator_Balances_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Delegator_Balances_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Delegator_Balances_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Fungible_Asset_BalancesArgs = {\n distinct_on?: InputMaybe<Array<Current_Fungible_Asset_Balances_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Fungible_Asset_Balances_Order_By>>;\n where?: InputMaybe<Current_Fungible_Asset_Balances_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Fungible_Asset_Balances_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Fungible_Asset_Balances_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Fungible_Asset_Balances_Order_By>>;\n where?: InputMaybe<Current_Fungible_Asset_Balances_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Fungible_Asset_Balances_By_PkArgs = {\n storage_id: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootCurrent_Fungible_Asset_Balances_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Fungible_Asset_Balances_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Fungible_Asset_Balances_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_ObjectsArgs = {\n distinct_on?: InputMaybe<Array<Current_Objects_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Objects_Order_By>>;\n where?: InputMaybe<Current_Objects_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Objects_By_PkArgs = {\n object_address: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootCurrent_Objects_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Objects_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Objects_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Staking_Pool_VoterArgs = {\n distinct_on?: InputMaybe<Array<Current_Staking_Pool_Voter_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Staking_Pool_Voter_Order_By>>;\n where?: InputMaybe<Current_Staking_Pool_Voter_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Staking_Pool_Voter_By_PkArgs = {\n staking_pool_address: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootCurrent_Staking_Pool_Voter_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Staking_Pool_Voter_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Staking_Pool_Voter_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Table_ItemsArgs = {\n distinct_on?: InputMaybe<Array<Current_Table_Items_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Table_Items_Order_By>>;\n where?: InputMaybe<Current_Table_Items_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Table_Items_By_PkArgs = {\n key_hash: Scalars['String']['input'];\n table_handle: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootCurrent_Table_Items_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Table_Items_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Table_Items_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Token_DatasArgs = {\n distinct_on?: InputMaybe<Array<Current_Token_Datas_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Datas_Order_By>>;\n where?: InputMaybe<Current_Token_Datas_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Token_Datas_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Token_Datas_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Token_Datas_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Token_Datas_V2Args = {\n distinct_on?: InputMaybe<Array<Current_Token_Datas_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Datas_V2_Order_By>>;\n where?: InputMaybe<Current_Token_Datas_V2_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Token_Datas_V2_By_PkArgs = {\n token_data_id: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootCurrent_Token_Datas_V2_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Token_Datas_V2_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Token_Datas_V2_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Token_OwnershipsArgs = {\n distinct_on?: InputMaybe<Array<Current_Token_Ownerships_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Ownerships_Order_By>>;\n where?: InputMaybe<Current_Token_Ownerships_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Token_Ownerships_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Token_Ownerships_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Ownerships_Order_By>>;\n where?: InputMaybe<Current_Token_Ownerships_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Token_Ownerships_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Token_Ownerships_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Token_Ownerships_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Token_Ownerships_V2Args = {\n distinct_on?: InputMaybe<Array<Current_Token_Ownerships_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Ownerships_V2_Order_By>>;\n where?: InputMaybe<Current_Token_Ownerships_V2_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Token_Ownerships_V2_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Token_Ownerships_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Ownerships_V2_Order_By>>;\n where?: InputMaybe<Current_Token_Ownerships_V2_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Token_Ownerships_V2_By_PkArgs = {\n owner_address: Scalars['String']['input'];\n property_version_v1: Scalars['numeric']['input'];\n storage_id: Scalars['String']['input'];\n token_data_id: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootCurrent_Token_Ownerships_V2_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Token_Ownerships_V2_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Token_Ownerships_V2_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Token_Pending_ClaimsArgs = {\n distinct_on?: InputMaybe<Array<Current_Token_Pending_Claims_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Pending_Claims_Order_By>>;\n where?: InputMaybe<Current_Token_Pending_Claims_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Token_Pending_Claims_By_PkArgs = {\n from_address: Scalars['String']['input'];\n property_version: Scalars['numeric']['input'];\n to_address: Scalars['String']['input'];\n token_data_id_hash: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootCurrent_Token_Pending_Claims_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Token_Pending_Claims_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Token_Pending_Claims_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Token_Royalty_V1Args = {\n distinct_on?: InputMaybe<Array<Current_Token_Royalty_V1_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Royalty_V1_Order_By>>;\n where?: InputMaybe<Current_Token_Royalty_V1_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Token_Royalty_V1_By_PkArgs = {\n token_data_id: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootCurrent_Token_Royalty_V1_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Token_Royalty_V1_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Token_Royalty_V1_Bool_Exp>;\n};\n\n\nexport type Subscription_RootDelegated_Staking_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Delegated_Staking_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Delegated_Staking_Activities_Order_By>>;\n where?: InputMaybe<Delegated_Staking_Activities_Bool_Exp>;\n};\n\n\nexport type Subscription_RootDelegated_Staking_Activities_By_PkArgs = {\n event_index: Scalars['bigint']['input'];\n transaction_version: Scalars['bigint']['input'];\n};\n\n\nexport type Subscription_RootDelegated_Staking_Activities_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Delegated_Staking_Activities_Stream_Cursor_Input>>;\n where?: InputMaybe<Delegated_Staking_Activities_Bool_Exp>;\n};\n\n\nexport type Subscription_RootDelegated_Staking_Pool_BalancesArgs = {\n distinct_on?: InputMaybe<Array<Delegated_Staking_Pool_Balances_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Delegated_Staking_Pool_Balances_Order_By>>;\n where?: InputMaybe<Delegated_Staking_Pool_Balances_Bool_Exp>;\n};\n\n\nexport type Subscription_RootDelegated_Staking_Pool_Balances_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Delegated_Staking_Pool_Balances_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Delegated_Staking_Pool_Balances_Order_By>>;\n where?: InputMaybe<Delegated_Staking_Pool_Balances_Bool_Exp>;\n};\n\n\nexport type Subscription_RootDelegated_Staking_Pool_Balances_By_PkArgs = {\n staking_pool_address: Scalars['String']['input'];\n transaction_version: Scalars['bigint']['input'];\n};\n\n\nexport type Subscription_RootDelegated_Staking_Pool_Balances_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Delegated_Staking_Pool_Balances_Stream_Cursor_Input>>;\n where?: InputMaybe<Delegated_Staking_Pool_Balances_Bool_Exp>;\n};\n\n\nexport type Subscription_RootDelegated_Staking_PoolsArgs = {\n distinct_on?: InputMaybe<Array<Delegated_Staking_Pools_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Delegated_Staking_Pools_Order_By>>;\n where?: InputMaybe<Delegated_Staking_Pools_Bool_Exp>;\n};\n\n\nexport type Subscription_RootDelegated_Staking_Pools_By_PkArgs = {\n staking_pool_address: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootDelegated_Staking_Pools_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Delegated_Staking_Pools_Stream_Cursor_Input>>;\n where?: InputMaybe<Delegated_Staking_Pools_Bool_Exp>;\n};\n\n\nexport type Subscription_RootDelegator_Distinct_PoolArgs = {\n distinct_on?: InputMaybe<Array<Delegator_Distinct_Pool_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Delegator_Distinct_Pool_Order_By>>;\n where?: InputMaybe<Delegator_Distinct_Pool_Bool_Exp>;\n};\n\n\nexport type Subscription_RootDelegator_Distinct_Pool_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Delegator_Distinct_Pool_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Delegator_Distinct_Pool_Order_By>>;\n where?: InputMaybe<Delegator_Distinct_Pool_Bool_Exp>;\n};\n\n\nexport type Subscription_RootDelegator_Distinct_Pool_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Delegator_Distinct_Pool_Stream_Cursor_Input>>;\n where?: InputMaybe<Delegator_Distinct_Pool_Bool_Exp>;\n};\n\n\nexport type Subscription_RootEventsArgs = {\n distinct_on?: InputMaybe<Array<Events_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Events_Order_By>>;\n where?: InputMaybe<Events_Bool_Exp>;\n};\n\n\nexport type Subscription_RootEvents_By_PkArgs = {\n event_index: Scalars['bigint']['input'];\n transaction_version: Scalars['bigint']['input'];\n};\n\n\nexport type Subscription_RootEvents_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Events_Stream_Cursor_Input>>;\n where?: InputMaybe<Events_Bool_Exp>;\n};\n\n\nexport type Subscription_RootFungible_Asset_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Fungible_Asset_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Fungible_Asset_Activities_Order_By>>;\n where?: InputMaybe<Fungible_Asset_Activities_Bool_Exp>;\n};\n\n\nexport type Subscription_RootFungible_Asset_Activities_By_PkArgs = {\n event_index: Scalars['bigint']['input'];\n transaction_version: Scalars['bigint']['input'];\n};\n\n\nexport type Subscription_RootFungible_Asset_Activities_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Fungible_Asset_Activities_Stream_Cursor_Input>>;\n where?: InputMaybe<Fungible_Asset_Activities_Bool_Exp>;\n};\n\n\nexport type Subscription_RootFungible_Asset_MetadataArgs = {\n distinct_on?: InputMaybe<Array<Fungible_Asset_Metadata_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Fungible_Asset_Metadata_Order_By>>;\n where?: InputMaybe<Fungible_Asset_Metadata_Bool_Exp>;\n};\n\n\nexport type Subscription_RootFungible_Asset_Metadata_By_PkArgs = {\n asset_type: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootFungible_Asset_Metadata_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Fungible_Asset_Metadata_Stream_Cursor_Input>>;\n where?: InputMaybe<Fungible_Asset_Metadata_Bool_Exp>;\n};\n\n\nexport type Subscription_RootIndexer_StatusArgs = {\n distinct_on?: InputMaybe<Array<Indexer_Status_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Indexer_Status_Order_By>>;\n where?: InputMaybe<Indexer_Status_Bool_Exp>;\n};\n\n\nexport type Subscription_RootIndexer_Status_By_PkArgs = {\n db: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootIndexer_Status_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Indexer_Status_Stream_Cursor_Input>>;\n where?: InputMaybe<Indexer_Status_Bool_Exp>;\n};\n\n\nexport type Subscription_RootLedger_InfosArgs = {\n distinct_on?: InputMaybe<Array<Ledger_Infos_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Ledger_Infos_Order_By>>;\n where?: InputMaybe<Ledger_Infos_Bool_Exp>;\n};\n\n\nexport type Subscription_RootLedger_Infos_By_PkArgs = {\n chain_id: Scalars['bigint']['input'];\n};\n\n\nexport type Subscription_RootLedger_Infos_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Ledger_Infos_Stream_Cursor_Input>>;\n where?: InputMaybe<Ledger_Infos_Bool_Exp>;\n};\n\n\nexport type Subscription_RootMove_ResourcesArgs = {\n distinct_on?: InputMaybe<Array<Move_Resources_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Move_Resources_Order_By>>;\n where?: InputMaybe<Move_Resources_Bool_Exp>;\n};\n\n\nexport type Subscription_RootMove_Resources_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Move_Resources_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Move_Resources_Order_By>>;\n where?: InputMaybe<Move_Resources_Bool_Exp>;\n};\n\n\nexport type Subscription_RootMove_Resources_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Move_Resources_Stream_Cursor_Input>>;\n where?: InputMaybe<Move_Resources_Bool_Exp>;\n};\n\n\nexport type Subscription_RootNft_Metadata_Crawler_Parsed_Asset_UrisArgs = {\n distinct_on?: InputMaybe<Array<Nft_Metadata_Crawler_Parsed_Asset_Uris_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Nft_Metadata_Crawler_Parsed_Asset_Uris_Order_By>>;\n where?: InputMaybe<Nft_Metadata_Crawler_Parsed_Asset_Uris_Bool_Exp>;\n};\n\n\nexport type Subscription_RootNft_Metadata_Crawler_Parsed_Asset_Uris_By_PkArgs = {\n asset_uri: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootNft_Metadata_Crawler_Parsed_Asset_Uris_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Nft_Metadata_Crawler_Parsed_Asset_Uris_Stream_Cursor_Input>>;\n where?: InputMaybe<Nft_Metadata_Crawler_Parsed_Asset_Uris_Bool_Exp>;\n};\n\n\nexport type Subscription_RootNum_Active_Delegator_Per_PoolArgs = {\n distinct_on?: InputMaybe<Array<Num_Active_Delegator_Per_Pool_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Num_Active_Delegator_Per_Pool_Order_By>>;\n where?: InputMaybe<Num_Active_Delegator_Per_Pool_Bool_Exp>;\n};\n\n\nexport type Subscription_RootNum_Active_Delegator_Per_Pool_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Num_Active_Delegator_Per_Pool_Stream_Cursor_Input>>;\n where?: InputMaybe<Num_Active_Delegator_Per_Pool_Bool_Exp>;\n};\n\n\nexport type Subscription_RootProcessor_StatusArgs = {\n distinct_on?: InputMaybe<Array<Processor_Status_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Processor_Status_Order_By>>;\n where?: InputMaybe<Processor_Status_Bool_Exp>;\n};\n\n\nexport type Subscription_RootProcessor_Status_By_PkArgs = {\n processor: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootProcessor_Status_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Processor_Status_Stream_Cursor_Input>>;\n where?: InputMaybe<Processor_Status_Bool_Exp>;\n};\n\n\nexport type Subscription_RootProposal_VotesArgs = {\n distinct_on?: InputMaybe<Array<Proposal_Votes_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Proposal_Votes_Order_By>>;\n where?: InputMaybe<Proposal_Votes_Bool_Exp>;\n};\n\n\nexport type Subscription_RootProposal_Votes_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Proposal_Votes_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Proposal_Votes_Order_By>>;\n where?: InputMaybe<Proposal_Votes_Bool_Exp>;\n};\n\n\nexport type Subscription_RootProposal_Votes_By_PkArgs = {\n proposal_id: Scalars['bigint']['input'];\n transaction_version: Scalars['bigint']['input'];\n voter_address: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootProposal_Votes_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Proposal_Votes_Stream_Cursor_Input>>;\n where?: InputMaybe<Proposal_Votes_Bool_Exp>;\n};\n\n\nexport type Subscription_RootPublic_Key_Auth_KeysArgs = {\n distinct_on?: InputMaybe<Array<Public_Key_Auth_Keys_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Public_Key_Auth_Keys_Order_By>>;\n where?: InputMaybe<Public_Key_Auth_Keys_Bool_Exp>;\n};\n\n\nexport type Subscription_RootPublic_Key_Auth_Keys_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Public_Key_Auth_Keys_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Public_Key_Auth_Keys_Order_By>>;\n where?: InputMaybe<Public_Key_Auth_Keys_Bool_Exp>;\n};\n\n\nexport type Subscription_RootPublic_Key_Auth_Keys_By_PkArgs = {\n auth_key: Scalars['String']['input'];\n public_key: Scalars['String']['input'];\n public_key_type: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootPublic_Key_Auth_Keys_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Public_Key_Auth_Keys_Stream_Cursor_Input>>;\n where?: InputMaybe<Public_Key_Auth_Keys_Bool_Exp>;\n};\n\n\nexport type Subscription_RootSignaturesArgs = {\n distinct_on?: InputMaybe<Array<Signatures_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Signatures_Order_By>>;\n where?: InputMaybe<Signatures_Bool_Exp>;\n};\n\n\nexport type Subscription_RootSignatures_By_PkArgs = {\n is_sender_primary: Scalars['Boolean']['input'];\n multi_agent_index: Scalars['bigint']['input'];\n multi_sig_index: Scalars['bigint']['input'];\n transaction_version: Scalars['bigint']['input'];\n};\n\n\nexport type Subscription_RootSignatures_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Signatures_Stream_Cursor_Input>>;\n where?: InputMaybe<Signatures_Bool_Exp>;\n};\n\n\nexport type Subscription_RootTable_ItemsArgs = {\n distinct_on?: InputMaybe<Array<Table_Items_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Table_Items_Order_By>>;\n where?: InputMaybe<Table_Items_Bool_Exp>;\n};\n\n\nexport type Subscription_RootTable_Items_By_PkArgs = {\n transaction_version: Scalars['bigint']['input'];\n write_set_change_index: Scalars['bigint']['input'];\n};\n\n\nexport type Subscription_RootTable_Items_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Table_Items_Stream_Cursor_Input>>;\n where?: InputMaybe<Table_Items_Bool_Exp>;\n};\n\n\nexport type Subscription_RootTable_MetadatasArgs = {\n distinct_on?: InputMaybe<Array<Table_Metadatas_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Table_Metadatas_Order_By>>;\n where?: InputMaybe<Table_Metadatas_Bool_Exp>;\n};\n\n\nexport type Subscription_RootTable_Metadatas_By_PkArgs = {\n handle: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootTable_Metadatas_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Table_Metadatas_Stream_Cursor_Input>>;\n where?: InputMaybe<Table_Metadatas_Bool_Exp>;\n};\n\n\nexport type Subscription_RootToken_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Token_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_Order_By>>;\n where?: InputMaybe<Token_Activities_Bool_Exp>;\n};\n\n\nexport type Subscription_RootToken_Activities_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Token_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_Order_By>>;\n where?: InputMaybe<Token_Activities_Bool_Exp>;\n};\n\n\nexport type Subscription_RootToken_Activities_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Token_Activities_Stream_Cursor_Input>>;\n where?: InputMaybe<Token_Activities_Bool_Exp>;\n};\n\n\nexport type Subscription_RootToken_Activities_V2Args = {\n distinct_on?: InputMaybe<Array<Token_Activities_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_V2_Order_By>>;\n where?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n};\n\n\nexport type Subscription_RootToken_Activities_V2_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Token_Activities_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_V2_Order_By>>;\n where?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n};\n\n\nexport type Subscription_RootToken_Activities_V2_By_PkArgs = {\n event_index: Scalars['bigint']['input'];\n transaction_version: Scalars['bigint']['input'];\n};\n\n\nexport type Subscription_RootToken_Activities_V2_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Token_Activities_V2_Stream_Cursor_Input>>;\n where?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n};\n\n\nexport type Subscription_RootToken_DatasArgs = {\n distinct_on?: InputMaybe<Array<Token_Datas_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Datas_Order_By>>;\n where?: InputMaybe<Token_Datas_Bool_Exp>;\n};\n\n\nexport type Subscription_RootToken_Datas_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Token_Datas_Stream_Cursor_Input>>;\n where?: InputMaybe<Token_Datas_Bool_Exp>;\n};\n\n\nexport type Subscription_RootToken_OwnershipsArgs = {\n distinct_on?: InputMaybe<Array<Token_Ownerships_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Ownerships_Order_By>>;\n where?: InputMaybe<Token_Ownerships_Bool_Exp>;\n};\n\n\nexport type Subscription_RootToken_Ownerships_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Token_Ownerships_Stream_Cursor_Input>>;\n where?: InputMaybe<Token_Ownerships_Bool_Exp>;\n};\n\n\nexport type Subscription_RootTokensArgs = {\n distinct_on?: InputMaybe<Array<Tokens_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Tokens_Order_By>>;\n where?: InputMaybe<Tokens_Bool_Exp>;\n};\n\n\nexport type Subscription_RootTokens_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Tokens_Stream_Cursor_Input>>;\n where?: InputMaybe<Tokens_Bool_Exp>;\n};\n\n\nexport type Subscription_RootUser_TransactionsArgs = {\n distinct_on?: InputMaybe<Array<User_Transactions_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<User_Transactions_Order_By>>;\n where?: InputMaybe<User_Transactions_Bool_Exp>;\n};\n\n\nexport type Subscription_RootUser_Transactions_By_PkArgs = {\n version: Scalars['bigint']['input'];\n};\n\n\nexport type Subscription_RootUser_Transactions_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<User_Transactions_Stream_Cursor_Input>>;\n where?: InputMaybe<User_Transactions_Bool_Exp>;\n};\n\n/** columns and relationships of \"table_items\" */\nexport type Table_Items = {\n __typename?: 'table_items';\n decoded_key: Scalars['jsonb']['output'];\n decoded_value?: Maybe<Scalars['jsonb']['output']>;\n key: Scalars['String']['output'];\n table_handle: Scalars['String']['output'];\n transaction_version: Scalars['bigint']['output'];\n write_set_change_index: Scalars['bigint']['output'];\n};\n\n\n/** columns and relationships of \"table_items\" */\nexport type Table_ItemsDecoded_KeyArgs = {\n path?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** columns and relationships of \"table_items\" */\nexport type Table_ItemsDecoded_ValueArgs = {\n path?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Boolean expression to filter rows from the table \"table_items\". All fields are combined with a logical 'AND'. */\nexport type Table_Items_Bool_Exp = {\n _and?: InputMaybe<Array<Table_Items_Bool_Exp>>;\n _not?: InputMaybe<Table_Items_Bool_Exp>;\n _or?: InputMaybe<Array<Table_Items_Bool_Exp>>;\n decoded_key?: InputMaybe<Jsonb_Comparison_Exp>;\n decoded_value?: InputMaybe<Jsonb_Comparison_Exp>;\n key?: InputMaybe<String_Comparison_Exp>;\n table_handle?: InputMaybe<String_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n write_set_change_index?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"table_items\". */\nexport type Table_Items_Order_By = {\n decoded_key?: InputMaybe<Order_By>;\n decoded_value?: InputMaybe<Order_By>;\n key?: InputMaybe<Order_By>;\n table_handle?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n write_set_change_index?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"table_items\" */\nexport enum Table_Items_Select_Column {\n /** column name */\n DecodedKey = 'decoded_key',\n /** column name */\n DecodedValue = 'decoded_value',\n /** column name */\n Key = 'key',\n /** column name */\n TableHandle = 'table_handle',\n /** column name */\n TransactionVersion = 'transaction_version',\n /** column name */\n WriteSetChangeIndex = 'write_set_change_index'\n}\n\n/** Streaming cursor of the table \"table_items\" */\nexport type Table_Items_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Table_Items_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Table_Items_Stream_Cursor_Value_Input = {\n decoded_key?: InputMaybe<Scalars['jsonb']['input']>;\n decoded_value?: InputMaybe<Scalars['jsonb']['input']>;\n key?: InputMaybe<Scalars['String']['input']>;\n table_handle?: InputMaybe<Scalars['String']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n write_set_change_index?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** columns and relationships of \"table_metadatas\" */\nexport type Table_Metadatas = {\n __typename?: 'table_metadatas';\n handle: Scalars['String']['output'];\n key_type: Scalars['String']['output'];\n value_type: Scalars['String']['output'];\n};\n\n/** Boolean expression to filter rows from the table \"table_metadatas\". All fields are combined with a logical 'AND'. */\nexport type Table_Metadatas_Bool_Exp = {\n _and?: InputMaybe<Array<Table_Metadatas_Bool_Exp>>;\n _not?: InputMaybe<Table_Metadatas_Bool_Exp>;\n _or?: InputMaybe<Array<Table_Metadatas_Bool_Exp>>;\n handle?: InputMaybe<String_Comparison_Exp>;\n key_type?: InputMaybe<String_Comparison_Exp>;\n value_type?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"table_metadatas\". */\nexport type Table_Metadatas_Order_By = {\n handle?: InputMaybe<Order_By>;\n key_type?: InputMaybe<Order_By>;\n value_type?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"table_metadatas\" */\nexport enum Table_Metadatas_Select_Column {\n /** column name */\n Handle = 'handle',\n /** column name */\n KeyType = 'key_type',\n /** column name */\n ValueType = 'value_type'\n}\n\n/** Streaming cursor of the table \"table_metadatas\" */\nexport type Table_Metadatas_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Table_Metadatas_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Table_Metadatas_Stream_Cursor_Value_Input = {\n handle?: InputMaybe<Scalars['String']['input']>;\n key_type?: InputMaybe<Scalars['String']['input']>;\n value_type?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Boolean expression to compare columns of type \"timestamp\". All fields are combined with logical 'AND'. */\nexport type Timestamp_Comparison_Exp = {\n _eq?: InputMaybe<Scalars['timestamp']['input']>;\n _gt?: InputMaybe<Scalars['timestamp']['input']>;\n _gte?: InputMaybe<Scalars['timestamp']['input']>;\n _in?: InputMaybe<Array<Scalars['timestamp']['input']>>;\n _is_null?: InputMaybe<Scalars['Boolean']['input']>;\n _lt?: InputMaybe<Scalars['timestamp']['input']>;\n _lte?: InputMaybe<Scalars['timestamp']['input']>;\n _neq?: InputMaybe<Scalars['timestamp']['input']>;\n _nin?: InputMaybe<Array<Scalars['timestamp']['input']>>;\n};\n\n/** columns and relationships of \"legacy_migration_v1.token_activities\" */\nexport type Token_Activities = {\n __typename?: 'token_activities';\n /** An array relationship */\n aptos_names_owner: Array<Current_Aptos_Names>;\n /** An aggregate relationship */\n aptos_names_owner_aggregate: Current_Aptos_Names_Aggregate;\n /** An array relationship */\n aptos_names_to: Array<Current_Aptos_Names>;\n /** An aggregate relationship */\n aptos_names_to_aggregate: Current_Aptos_Names_Aggregate;\n coin_amount?: Maybe<Scalars['String']['output']>;\n coin_type?: Maybe<Scalars['String']['output']>;\n collection_data_id_hash?: Maybe<Scalars['String']['output']>;\n collection_name?: Maybe<Scalars['String']['output']>;\n creator_address?: Maybe<Scalars['String']['output']>;\n /** An object relationship */\n current_token_data?: Maybe<Current_Token_Datas>;\n event_account_address?: Maybe<Scalars['String']['output']>;\n event_creation_number?: Maybe<Scalars['Int']['output']>;\n event_index?: Maybe<Scalars['bigint']['output']>;\n event_sequence_number?: Maybe<Scalars['Int']['output']>;\n from_address?: Maybe<Scalars['String']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n property_version?: Maybe<Scalars['numeric']['output']>;\n to_address?: Maybe<Scalars['String']['output']>;\n token_amount?: Maybe<Scalars['numeric']['output']>;\n token_data_id_hash?: Maybe<Scalars['String']['output']>;\n transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n transfer_type?: Maybe<Scalars['String']['output']>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.token_activities\" */\nexport type Token_ActivitiesAptos_Names_OwnerArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.token_activities\" */\nexport type Token_ActivitiesAptos_Names_Owner_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.token_activities\" */\nexport type Token_ActivitiesAptos_Names_ToArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.token_activities\" */\nexport type Token_ActivitiesAptos_Names_To_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n/** aggregated selection of \"legacy_migration_v1.token_activities\" */\nexport type Token_Activities_Aggregate = {\n __typename?: 'token_activities_aggregate';\n aggregate?: Maybe<Token_Activities_Aggregate_Fields>;\n nodes: Array<Token_Activities>;\n};\n\nexport type Token_Activities_Aggregate_Bool_Exp = {\n count?: InputMaybe<Token_Activities_Aggregate_Bool_Exp_Count>;\n};\n\nexport type Token_Activities_Aggregate_Bool_Exp_Count = {\n arguments?: InputMaybe<Array<Token_Activities_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n filter?: InputMaybe<Token_Activities_Bool_Exp>;\n predicate: Int_Comparison_Exp;\n};\n\n/** aggregate fields of \"legacy_migration_v1.token_activities\" */\nexport type Token_Activities_Aggregate_Fields = {\n __typename?: 'token_activities_aggregate_fields';\n avg?: Maybe<Token_Activities_Avg_Fields>;\n count: Scalars['Int']['output'];\n max?: Maybe<Token_Activities_Max_Fields>;\n min?: Maybe<Token_Activities_Min_Fields>;\n stddev?: Maybe<Token_Activities_Stddev_Fields>;\n stddev_pop?: Maybe<Token_Activities_Stddev_Pop_Fields>;\n stddev_samp?: Maybe<Token_Activities_Stddev_Samp_Fields>;\n sum?: Maybe<Token_Activities_Sum_Fields>;\n var_pop?: Maybe<Token_Activities_Var_Pop_Fields>;\n var_samp?: Maybe<Token_Activities_Var_Samp_Fields>;\n variance?: Maybe<Token_Activities_Variance_Fields>;\n};\n\n\n/** aggregate fields of \"legacy_migration_v1.token_activities\" */\nexport type Token_Activities_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Token_Activities_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** order by aggregate values of table \"legacy_migration_v1.token_activities\" */\nexport type Token_Activities_Aggregate_Order_By = {\n avg?: InputMaybe<Token_Activities_Avg_Order_By>;\n count?: InputMaybe<Order_By>;\n max?: InputMaybe<Token_Activities_Max_Order_By>;\n min?: InputMaybe<Token_Activities_Min_Order_By>;\n stddev?: InputMaybe<Token_Activities_Stddev_Order_By>;\n stddev_pop?: InputMaybe<Token_Activities_Stddev_Pop_Order_By>;\n stddev_samp?: InputMaybe<Token_Activities_Stddev_Samp_Order_By>;\n sum?: InputMaybe<Token_Activities_Sum_Order_By>;\n var_pop?: InputMaybe<Token_Activities_Var_Pop_Order_By>;\n var_samp?: InputMaybe<Token_Activities_Var_Samp_Order_By>;\n variance?: InputMaybe<Token_Activities_Variance_Order_By>;\n};\n\n/** aggregate avg on columns */\nexport type Token_Activities_Avg_Fields = {\n __typename?: 'token_activities_avg_fields';\n event_creation_number?: Maybe<Scalars['Float']['output']>;\n event_index?: Maybe<Scalars['Float']['output']>;\n event_sequence_number?: Maybe<Scalars['Float']['output']>;\n property_version?: Maybe<Scalars['Float']['output']>;\n token_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by avg() on columns of table \"legacy_migration_v1.token_activities\" */\nexport type Token_Activities_Avg_Order_By = {\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** Boolean expression to filter rows from the table \"legacy_migration_v1.token_activities\". All fields are combined with a logical 'AND'. */\nexport type Token_Activities_Bool_Exp = {\n _and?: InputMaybe<Array<Token_Activities_Bool_Exp>>;\n _not?: InputMaybe<Token_Activities_Bool_Exp>;\n _or?: InputMaybe<Array<Token_Activities_Bool_Exp>>;\n aptos_names_owner?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n aptos_names_owner_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Bool_Exp>;\n aptos_names_to?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n aptos_names_to_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Bool_Exp>;\n coin_amount?: InputMaybe<String_Comparison_Exp>;\n coin_type?: InputMaybe<String_Comparison_Exp>;\n collection_data_id_hash?: InputMaybe<String_Comparison_Exp>;\n collection_name?: InputMaybe<String_Comparison_Exp>;\n creator_address?: InputMaybe<String_Comparison_Exp>;\n current_token_data?: InputMaybe<Current_Token_Datas_Bool_Exp>;\n event_account_address?: InputMaybe<String_Comparison_Exp>;\n event_creation_number?: InputMaybe<Int_Comparison_Exp>;\n event_index?: InputMaybe<Bigint_Comparison_Exp>;\n event_sequence_number?: InputMaybe<Int_Comparison_Exp>;\n from_address?: InputMaybe<String_Comparison_Exp>;\n name?: InputMaybe<String_Comparison_Exp>;\n property_version?: InputMaybe<Numeric_Comparison_Exp>;\n to_address?: InputMaybe<String_Comparison_Exp>;\n token_amount?: InputMaybe<Numeric_Comparison_Exp>;\n token_data_id_hash?: InputMaybe<String_Comparison_Exp>;\n transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n transfer_type?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Token_Activities_Max_Fields = {\n __typename?: 'token_activities_max_fields';\n coin_amount?: Maybe<Scalars['String']['output']>;\n coin_type?: Maybe<Scalars['String']['output']>;\n collection_data_id_hash?: Maybe<Scalars['String']['output']>;\n collection_name?: Maybe<Scalars['String']['output']>;\n creator_address?: Maybe<Scalars['String']['output']>;\n event_account_address?: Maybe<Scalars['String']['output']>;\n event_creation_number?: Maybe<Scalars['Int']['output']>;\n event_index?: Maybe<Scalars['bigint']['output']>;\n event_sequence_number?: Maybe<Scalars['Int']['output']>;\n from_address?: Maybe<Scalars['String']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n property_version?: Maybe<Scalars['numeric']['output']>;\n to_address?: Maybe<Scalars['String']['output']>;\n token_amount?: Maybe<Scalars['numeric']['output']>;\n token_data_id_hash?: Maybe<Scalars['String']['output']>;\n transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n transfer_type?: Maybe<Scalars['String']['output']>;\n};\n\n/** order by max() on columns of table \"legacy_migration_v1.token_activities\" */\nexport type Token_Activities_Max_Order_By = {\n coin_amount?: InputMaybe<Order_By>;\n coin_type?: InputMaybe<Order_By>;\n collection_data_id_hash?: InputMaybe<Order_By>;\n collection_name?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n event_account_address?: InputMaybe<Order_By>;\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n from_address?: InputMaybe<Order_By>;\n name?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n to_address?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n token_data_id_hash?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n transfer_type?: InputMaybe<Order_By>;\n};\n\n/** aggregate min on columns */\nexport type Token_Activities_Min_Fields = {\n __typename?: 'token_activities_min_fields';\n coin_amount?: Maybe<Scalars['String']['output']>;\n coin_type?: Maybe<Scalars['String']['output']>;\n collection_data_id_hash?: Maybe<Scalars['String']['output']>;\n collection_name?: Maybe<Scalars['String']['output']>;\n creator_address?: Maybe<Scalars['String']['output']>;\n event_account_address?: Maybe<Scalars['String']['output']>;\n event_creation_number?: Maybe<Scalars['Int']['output']>;\n event_index?: Maybe<Scalars['bigint']['output']>;\n event_sequence_number?: Maybe<Scalars['Int']['output']>;\n from_address?: Maybe<Scalars['String']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n property_version?: Maybe<Scalars['numeric']['output']>;\n to_address?: Maybe<Scalars['String']['output']>;\n token_amount?: Maybe<Scalars['numeric']['output']>;\n token_data_id_hash?: Maybe<Scalars['String']['output']>;\n transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n transfer_type?: Maybe<Scalars['String']['output']>;\n};\n\n/** order by min() on columns of table \"legacy_migration_v1.token_activities\" */\nexport type Token_Activities_Min_Order_By = {\n coin_amount?: InputMaybe<Order_By>;\n coin_type?: InputMaybe<Order_By>;\n collection_data_id_hash?: InputMaybe<Order_By>;\n collection_name?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n event_account_address?: InputMaybe<Order_By>;\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n from_address?: InputMaybe<Order_By>;\n name?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n to_address?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n token_data_id_hash?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n transfer_type?: InputMaybe<Order_By>;\n};\n\n/** Ordering options when selecting data from \"legacy_migration_v1.token_activities\". */\nexport type Token_Activities_Order_By = {\n aptos_names_owner_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Order_By>;\n aptos_names_to_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Order_By>;\n coin_amount?: InputMaybe<Order_By>;\n coin_type?: InputMaybe<Order_By>;\n collection_data_id_hash?: InputMaybe<Order_By>;\n collection_name?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n current_token_data?: InputMaybe<Current_Token_Datas_Order_By>;\n event_account_address?: InputMaybe<Order_By>;\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n from_address?: InputMaybe<Order_By>;\n name?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n to_address?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n token_data_id_hash?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n transfer_type?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"legacy_migration_v1.token_activities\" */\nexport enum Token_Activities_Select_Column {\n /** column name */\n CoinAmount = 'coin_amount',\n /** column name */\n CoinType = 'coin_type',\n /** column name */\n CollectionDataIdHash = 'collection_data_id_hash',\n /** column name */\n CollectionName = 'collection_name',\n /** column name */\n CreatorAddress = 'creator_address',\n /** column name */\n EventAccountAddress = 'event_account_address',\n /** column name */\n EventCreationNumber = 'event_creation_number',\n /** column name */\n EventIndex = 'event_index',\n /** column name */\n EventSequenceNumber = 'event_sequence_number',\n /** column name */\n FromAddress = 'from_address',\n /** column name */\n Name = 'name',\n /** column name */\n PropertyVersion = 'property_version',\n /** column name */\n ToAddress = 'to_address',\n /** column name */\n TokenAmount = 'token_amount',\n /** column name */\n TokenDataIdHash = 'token_data_id_hash',\n /** column name */\n TransactionTimestamp = 'transaction_timestamp',\n /** column name */\n TransactionVersion = 'transaction_version',\n /** column name */\n TransferType = 'transfer_type'\n}\n\n/** aggregate stddev on columns */\nexport type Token_Activities_Stddev_Fields = {\n __typename?: 'token_activities_stddev_fields';\n event_creation_number?: Maybe<Scalars['Float']['output']>;\n event_index?: Maybe<Scalars['Float']['output']>;\n event_sequence_number?: Maybe<Scalars['Float']['output']>;\n property_version?: Maybe<Scalars['Float']['output']>;\n token_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev() on columns of table \"legacy_migration_v1.token_activities\" */\nexport type Token_Activities_Stddev_Order_By = {\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate stddev_pop on columns */\nexport type Token_Activities_Stddev_Pop_Fields = {\n __typename?: 'token_activities_stddev_pop_fields';\n event_creation_number?: Maybe<Scalars['Float']['output']>;\n event_index?: Maybe<Scalars['Float']['output']>;\n event_sequence_number?: Maybe<Scalars['Float']['output']>;\n property_version?: Maybe<Scalars['Float']['output']>;\n token_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev_pop() on columns of table \"legacy_migration_v1.token_activities\" */\nexport type Token_Activities_Stddev_Pop_Order_By = {\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate stddev_samp on columns */\nexport type Token_Activities_Stddev_Samp_Fields = {\n __typename?: 'token_activities_stddev_samp_fields';\n event_creation_number?: Maybe<Scalars['Float']['output']>;\n event_index?: Maybe<Scalars['Float']['output']>;\n event_sequence_number?: Maybe<Scalars['Float']['output']>;\n property_version?: Maybe<Scalars['Float']['output']>;\n token_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev_samp() on columns of table \"legacy_migration_v1.token_activities\" */\nexport type Token_Activities_Stddev_Samp_Order_By = {\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** Streaming cursor of the table \"token_activities\" */\nexport type Token_Activities_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Token_Activities_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Token_Activities_Stream_Cursor_Value_Input = {\n coin_amount?: InputMaybe<Scalars['String']['input']>;\n coin_type?: InputMaybe<Scalars['String']['input']>;\n collection_data_id_hash?: InputMaybe<Scalars['String']['input']>;\n collection_name?: InputMaybe<Scalars['String']['input']>;\n creator_address?: InputMaybe<Scalars['String']['input']>;\n event_account_address?: InputMaybe<Scalars['String']['input']>;\n event_creation_number?: InputMaybe<Scalars['Int']['input']>;\n event_index?: InputMaybe<Scalars['bigint']['input']>;\n event_sequence_number?: InputMaybe<Scalars['Int']['input']>;\n from_address?: InputMaybe<Scalars['String']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n property_version?: InputMaybe<Scalars['numeric']['input']>;\n to_address?: InputMaybe<Scalars['String']['input']>;\n token_amount?: InputMaybe<Scalars['numeric']['input']>;\n token_data_id_hash?: InputMaybe<Scalars['String']['input']>;\n transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n transfer_type?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** aggregate sum on columns */\nexport type Token_Activities_Sum_Fields = {\n __typename?: 'token_activities_sum_fields';\n event_creation_number?: Maybe<Scalars['Int']['output']>;\n event_index?: Maybe<Scalars['bigint']['output']>;\n event_sequence_number?: Maybe<Scalars['Int']['output']>;\n property_version?: Maybe<Scalars['numeric']['output']>;\n token_amount?: Maybe<Scalars['numeric']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** order by sum() on columns of table \"legacy_migration_v1.token_activities\" */\nexport type Token_Activities_Sum_Order_By = {\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** columns and relationships of \"token_activities_v2\" */\nexport type Token_Activities_V2 = {\n __typename?: 'token_activities_v2';\n after_value?: Maybe<Scalars['String']['output']>;\n /** An array relationship */\n aptos_names_from: Array<Current_Aptos_Names>;\n /** An aggregate relationship */\n aptos_names_from_aggregate: Current_Aptos_Names_Aggregate;\n /** An array relationship */\n aptos_names_to: Array<Current_Aptos_Names>;\n /** An aggregate relationship */\n aptos_names_to_aggregate: Current_Aptos_Names_Aggregate;\n before_value?: Maybe<Scalars['String']['output']>;\n /** An object relationship */\n current_token_data?: Maybe<Current_Token_Datas_V2>;\n entry_function_id_str?: Maybe<Scalars['String']['output']>;\n event_account_address: Scalars['String']['output'];\n event_index: Scalars['bigint']['output'];\n from_address?: Maybe<Scalars['String']['output']>;\n is_fungible_v2?: Maybe<Scalars['Boolean']['output']>;\n property_version_v1: Scalars['numeric']['output'];\n to_address?: Maybe<Scalars['String']['output']>;\n token_amount: Scalars['numeric']['output'];\n token_data_id: Scalars['String']['output'];\n token_standard: Scalars['String']['output'];\n transaction_timestamp: Scalars['timestamp']['output'];\n transaction_version: Scalars['bigint']['output'];\n type: Scalars['String']['output'];\n};\n\n\n/** columns and relationships of \"token_activities_v2\" */\nexport type Token_Activities_V2Aptos_Names_FromArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"token_activities_v2\" */\nexport type Token_Activities_V2Aptos_Names_From_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"token_activities_v2\" */\nexport type Token_Activities_V2Aptos_Names_ToArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"token_activities_v2\" */\nexport type Token_Activities_V2Aptos_Names_To_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n/** aggregated selection of \"token_activities_v2\" */\nexport type Token_Activities_V2_Aggregate = {\n __typename?: 'token_activities_v2_aggregate';\n aggregate?: Maybe<Token_Activities_V2_Aggregate_Fields>;\n nodes: Array<Token_Activities_V2>;\n};\n\nexport type Token_Activities_V2_Aggregate_Bool_Exp = {\n bool_and?: InputMaybe<Token_Activities_V2_Aggregate_Bool_Exp_Bool_And>;\n bool_or?: InputMaybe<Token_Activities_V2_Aggregate_Bool_Exp_Bool_Or>;\n count?: InputMaybe<Token_Activities_V2_Aggregate_Bool_Exp_Count>;\n};\n\nexport type Token_Activities_V2_Aggregate_Bool_Exp_Bool_And = {\n arguments: Token_Activities_V2_Select_Column_Token_Activities_V2_Aggregate_Bool_Exp_Bool_And_Arguments_Columns;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n filter?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n predicate: Boolean_Comparison_Exp;\n};\n\nexport type Token_Activities_V2_Aggregate_Bool_Exp_Bool_Or = {\n arguments: Token_Activities_V2_Select_Column_Token_Activities_V2_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n filter?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n predicate: Boolean_Comparison_Exp;\n};\n\nexport type Token_Activities_V2_Aggregate_Bool_Exp_Count = {\n arguments?: InputMaybe<Array<Token_Activities_V2_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n filter?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n predicate: Int_Comparison_Exp;\n};\n\n/** aggregate fields of \"token_activities_v2\" */\nexport type Token_Activities_V2_Aggregate_Fields = {\n __typename?: 'token_activities_v2_aggregate_fields';\n avg?: Maybe<Token_Activities_V2_Avg_Fields>;\n count: Scalars['Int']['output'];\n max?: Maybe<Token_Activities_V2_Max_Fields>;\n min?: Maybe<Token_Activities_V2_Min_Fields>;\n stddev?: Maybe<Token_Activities_V2_Stddev_Fields>;\n stddev_pop?: Maybe<Token_Activities_V2_Stddev_Pop_Fields>;\n stddev_samp?: Maybe<Token_Activities_V2_Stddev_Samp_Fields>;\n sum?: Maybe<Token_Activities_V2_Sum_Fields>;\n var_pop?: Maybe<Token_Activities_V2_Var_Pop_Fields>;\n var_samp?: Maybe<Token_Activities_V2_Var_Samp_Fields>;\n variance?: Maybe<Token_Activities_V2_Variance_Fields>;\n};\n\n\n/** aggregate fields of \"token_activities_v2\" */\nexport type Token_Activities_V2_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Token_Activities_V2_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** order by aggregate values of table \"token_activities_v2\" */\nexport type Token_Activities_V2_Aggregate_Order_By = {\n avg?: InputMaybe<Token_Activities_V2_Avg_Order_By>;\n count?: InputMaybe<Order_By>;\n max?: InputMaybe<Token_Activities_V2_Max_Order_By>;\n min?: InputMaybe<Token_Activities_V2_Min_Order_By>;\n stddev?: InputMaybe<Token_Activities_V2_Stddev_Order_By>;\n stddev_pop?: InputMaybe<Token_Activities_V2_Stddev_Pop_Order_By>;\n stddev_samp?: InputMaybe<Token_Activities_V2_Stddev_Samp_Order_By>;\n sum?: InputMaybe<Token_Activities_V2_Sum_Order_By>;\n var_pop?: InputMaybe<Token_Activities_V2_Var_Pop_Order_By>;\n var_samp?: InputMaybe<Token_Activities_V2_Var_Samp_Order_By>;\n variance?: InputMaybe<Token_Activities_V2_Variance_Order_By>;\n};\n\n/** aggregate avg on columns */\nexport type Token_Activities_V2_Avg_Fields = {\n __typename?: 'token_activities_v2_avg_fields';\n event_index?: Maybe<Scalars['Float']['output']>;\n property_version_v1?: Maybe<Scalars['Float']['output']>;\n token_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by avg() on columns of table \"token_activities_v2\" */\nexport type Token_Activities_V2_Avg_Order_By = {\n event_index?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** Boolean expression to filter rows from the table \"token_activities_v2\". All fields are combined with a logical 'AND'. */\nexport type Token_Activities_V2_Bool_Exp = {\n _and?: InputMaybe<Array<Token_Activities_V2_Bool_Exp>>;\n _not?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n _or?: InputMaybe<Array<Token_Activities_V2_Bool_Exp>>;\n after_value?: InputMaybe<String_Comparison_Exp>;\n aptos_names_from?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n aptos_names_from_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Bool_Exp>;\n aptos_names_to?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n aptos_names_to_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Bool_Exp>;\n before_value?: InputMaybe<String_Comparison_Exp>;\n current_token_data?: InputMaybe<Current_Token_Datas_V2_Bool_Exp>;\n entry_function_id_str?: InputMaybe<String_Comparison_Exp>;\n event_account_address?: InputMaybe<String_Comparison_Exp>;\n event_index?: InputMaybe<Bigint_Comparison_Exp>;\n from_address?: InputMaybe<String_Comparison_Exp>;\n is_fungible_v2?: InputMaybe<Boolean_Comparison_Exp>;\n property_version_v1?: InputMaybe<Numeric_Comparison_Exp>;\n to_address?: InputMaybe<String_Comparison_Exp>;\n token_amount?: InputMaybe<Numeric_Comparison_Exp>;\n token_data_id?: InputMaybe<String_Comparison_Exp>;\n token_standard?: InputMaybe<String_Comparison_Exp>;\n transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n type?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Token_Activities_V2_Max_Fields = {\n __typename?: 'token_activities_v2_max_fields';\n after_value?: Maybe<Scalars['String']['output']>;\n before_value?: Maybe<Scalars['String']['output']>;\n entry_function_id_str?: Maybe<Scalars['String']['output']>;\n event_account_address?: Maybe<Scalars['String']['output']>;\n event_index?: Maybe<Scalars['bigint']['output']>;\n from_address?: Maybe<Scalars['String']['output']>;\n property_version_v1?: Maybe<Scalars['numeric']['output']>;\n to_address?: Maybe<Scalars['String']['output']>;\n token_amount?: Maybe<Scalars['numeric']['output']>;\n token_data_id?: Maybe<Scalars['String']['output']>;\n token_standard?: Maybe<Scalars['String']['output']>;\n transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n type?: Maybe<Scalars['String']['output']>;\n};\n\n/** order by max() on columns of table \"token_activities_v2\" */\nexport type Token_Activities_V2_Max_Order_By = {\n after_value?: InputMaybe<Order_By>;\n before_value?: InputMaybe<Order_By>;\n entry_function_id_str?: InputMaybe<Order_By>;\n event_account_address?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n from_address?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n to_address?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n token_data_id?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n type?: InputMaybe<Order_By>;\n};\n\n/** aggregate min on columns */\nexport type Token_Activities_V2_Min_Fields = {\n __typename?: 'token_activities_v2_min_fields';\n after_value?: Maybe<Scalars['String']['output']>;\n before_value?: Maybe<Scalars['String']['output']>;\n entry_function_id_str?: Maybe<Scalars['String']['output']>;\n event_account_address?: Maybe<Scalars['String']['output']>;\n event_index?: Maybe<Scalars['bigint']['output']>;\n from_address?: Maybe<Scalars['String']['output']>;\n property_version_v1?: Maybe<Scalars['numeric']['output']>;\n to_address?: Maybe<Scalars['String']['output']>;\n token_amount?: Maybe<Scalars['numeric']['output']>;\n token_data_id?: Maybe<Scalars['String']['output']>;\n token_standard?: Maybe<Scalars['String']['output']>;\n transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n type?: Maybe<Scalars['String']['output']>;\n};\n\n/** order by min() on columns of table \"token_activities_v2\" */\nexport type Token_Activities_V2_Min_Order_By = {\n after_value?: InputMaybe<Order_By>;\n before_value?: InputMaybe<Order_By>;\n entry_function_id_str?: InputMaybe<Order_By>;\n event_account_address?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n from_address?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n to_address?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n token_data_id?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n type?: InputMaybe<Order_By>;\n};\n\n/** Ordering options when selecting data from \"token_activities_v2\". */\nexport type Token_Activities_V2_Order_By = {\n after_value?: InputMaybe<Order_By>;\n aptos_names_from_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Order_By>;\n aptos_names_to_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Order_By>;\n before_value?: InputMaybe<Order_By>;\n current_token_data?: InputMaybe<Current_Token_Datas_V2_Order_By>;\n entry_function_id_str?: InputMaybe<Order_By>;\n event_account_address?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n from_address?: InputMaybe<Order_By>;\n is_fungible_v2?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n to_address?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n token_data_id?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n type?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"token_activities_v2\" */\nexport enum Token_Activities_V2_Select_Column {\n /** column name */\n AfterValue = 'after_value',\n /** column name */\n BeforeValue = 'before_value',\n /** column name */\n EntryFunctionIdStr = 'entry_function_id_str',\n /** column name */\n EventAccountAddress = 'event_account_address',\n /** column name */\n EventIndex = 'event_index',\n /** column name */\n FromAddress = 'from_address',\n /** column name */\n IsFungibleV2 = 'is_fungible_v2',\n /** column name */\n PropertyVersionV1 = 'property_version_v1',\n /** column name */\n ToAddress = 'to_address',\n /** column name */\n TokenAmount = 'token_amount',\n /** column name */\n TokenDataId = 'token_data_id',\n /** column name */\n TokenStandard = 'token_standard',\n /** column name */\n TransactionTimestamp = 'transaction_timestamp',\n /** column name */\n TransactionVersion = 'transaction_version',\n /** column name */\n Type = 'type'\n}\n\n/** select \"token_activities_v2_aggregate_bool_exp_bool_and_arguments_columns\" columns of table \"token_activities_v2\" */\nexport enum Token_Activities_V2_Select_Column_Token_Activities_V2_Aggregate_Bool_Exp_Bool_And_Arguments_Columns {\n /** column name */\n IsFungibleV2 = 'is_fungible_v2'\n}\n\n/** select \"token_activities_v2_aggregate_bool_exp_bool_or_arguments_columns\" columns of table \"token_activities_v2\" */\nexport enum Token_Activities_V2_Select_Column_Token_Activities_V2_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns {\n /** column name */\n IsFungibleV2 = 'is_fungible_v2'\n}\n\n/** aggregate stddev on columns */\nexport type Token_Activities_V2_Stddev_Fields = {\n __typename?: 'token_activities_v2_stddev_fields';\n event_index?: Maybe<Scalars['Float']['output']>;\n property_version_v1?: Maybe<Scalars['Float']['output']>;\n token_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev() on columns of table \"token_activities_v2\" */\nexport type Token_Activities_V2_Stddev_Order_By = {\n event_index?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate stddev_pop on columns */\nexport type Token_Activities_V2_Stddev_Pop_Fields = {\n __typename?: 'token_activities_v2_stddev_pop_fields';\n event_index?: Maybe<Scalars['Float']['output']>;\n property_version_v1?: Maybe<Scalars['Float']['output']>;\n token_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev_pop() on columns of table \"token_activities_v2\" */\nexport type Token_Activities_V2_Stddev_Pop_Order_By = {\n event_index?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate stddev_samp on columns */\nexport type Token_Activities_V2_Stddev_Samp_Fields = {\n __typename?: 'token_activities_v2_stddev_samp_fields';\n event_index?: Maybe<Scalars['Float']['output']>;\n property_version_v1?: Maybe<Scalars['Float']['output']>;\n token_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev_samp() on columns of table \"token_activities_v2\" */\nexport type Token_Activities_V2_Stddev_Samp_Order_By = {\n event_index?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** Streaming cursor of the table \"token_activities_v2\" */\nexport type Token_Activities_V2_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Token_Activities_V2_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Token_Activities_V2_Stream_Cursor_Value_Input = {\n after_value?: InputMaybe<Scalars['String']['input']>;\n before_value?: InputMaybe<Scalars['String']['input']>;\n entry_function_id_str?: InputMaybe<Scalars['String']['input']>;\n event_account_address?: InputMaybe<Scalars['String']['input']>;\n event_index?: InputMaybe<Scalars['bigint']['input']>;\n from_address?: InputMaybe<Scalars['String']['input']>;\n is_fungible_v2?: InputMaybe<Scalars['Boolean']['input']>;\n property_version_v1?: InputMaybe<Scalars['numeric']['input']>;\n to_address?: InputMaybe<Scalars['String']['input']>;\n token_amount?: InputMaybe<Scalars['numeric']['input']>;\n token_data_id?: InputMaybe<Scalars['String']['input']>;\n token_standard?: InputMaybe<Scalars['String']['input']>;\n transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** aggregate sum on columns */\nexport type Token_Activities_V2_Sum_Fields = {\n __typename?: 'token_activities_v2_sum_fields';\n event_index?: Maybe<Scalars['bigint']['output']>;\n property_version_v1?: Maybe<Scalars['numeric']['output']>;\n token_amount?: Maybe<Scalars['numeric']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** order by sum() on columns of table \"token_activities_v2\" */\nexport type Token_Activities_V2_Sum_Order_By = {\n event_index?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate var_pop on columns */\nexport type Token_Activities_V2_Var_Pop_Fields = {\n __typename?: 'token_activities_v2_var_pop_fields';\n event_index?: Maybe<Scalars['Float']['output']>;\n property_version_v1?: Maybe<Scalars['Float']['output']>;\n token_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by var_pop() on columns of table \"token_activities_v2\" */\nexport type Token_Activities_V2_Var_Pop_Order_By = {\n event_index?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate var_samp on columns */\nexport type Token_Activities_V2_Var_Samp_Fields = {\n __typename?: 'token_activities_v2_var_samp_fields';\n event_index?: Maybe<Scalars['Float']['output']>;\n property_version_v1?: Maybe<Scalars['Float']['output']>;\n token_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by var_samp() on columns of table \"token_activities_v2\" */\nexport type Token_Activities_V2_Var_Samp_Order_By = {\n event_index?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate variance on columns */\nexport type Token_Activities_V2_Variance_Fields = {\n __typename?: 'token_activities_v2_variance_fields';\n event_index?: Maybe<Scalars['Float']['output']>;\n property_version_v1?: Maybe<Scalars['Float']['output']>;\n token_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by variance() on columns of table \"token_activities_v2\" */\nexport type Token_Activities_V2_Variance_Order_By = {\n event_index?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate var_pop on columns */\nexport type Token_Activities_Var_Pop_Fields = {\n __typename?: 'token_activities_var_pop_fields';\n event_creation_number?: Maybe<Scalars['Float']['output']>;\n event_index?: Maybe<Scalars['Float']['output']>;\n event_sequence_number?: Maybe<Scalars['Float']['output']>;\n property_version?: Maybe<Scalars['Float']['output']>;\n token_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by var_pop() on columns of table \"legacy_migration_v1.token_activities\" */\nexport type Token_Activities_Var_Pop_Order_By = {\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate var_samp on columns */\nexport type Token_Activities_Var_Samp_Fields = {\n __typename?: 'token_activities_var_samp_fields';\n event_creation_number?: Maybe<Scalars['Float']['output']>;\n event_index?: Maybe<Scalars['Float']['output']>;\n event_sequence_number?: Maybe<Scalars['Float']['output']>;\n property_version?: Maybe<Scalars['Float']['output']>;\n token_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by var_samp() on columns of table \"legacy_migration_v1.token_activities\" */\nexport type Token_Activities_Var_Samp_Order_By = {\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate variance on columns */\nexport type Token_Activities_Variance_Fields = {\n __typename?: 'token_activities_variance_fields';\n event_creation_number?: Maybe<Scalars['Float']['output']>;\n event_index?: Maybe<Scalars['Float']['output']>;\n event_sequence_number?: Maybe<Scalars['Float']['output']>;\n property_version?: Maybe<Scalars['Float']['output']>;\n token_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by variance() on columns of table \"legacy_migration_v1.token_activities\" */\nexport type Token_Activities_Variance_Order_By = {\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** columns and relationships of \"legacy_migration_v1.token_datas\" */\nexport type Token_Datas = {\n __typename?: 'token_datas';\n collection_data_id_hash?: Maybe<Scalars['String']['output']>;\n collection_name?: Maybe<Scalars['String']['output']>;\n creator_address?: Maybe<Scalars['String']['output']>;\n default_properties?: Maybe<Scalars['jsonb']['output']>;\n description?: Maybe<Scalars['String']['output']>;\n description_mutable?: Maybe<Scalars['Boolean']['output']>;\n largest_property_version?: Maybe<Scalars['numeric']['output']>;\n maximum?: Maybe<Scalars['numeric']['output']>;\n maximum_mutable?: Maybe<Scalars['Boolean']['output']>;\n metadata_uri?: Maybe<Scalars['String']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n payee_address?: Maybe<Scalars['String']['output']>;\n properties_mutable?: Maybe<Scalars['Boolean']['output']>;\n royalty_mutable?: Maybe<Scalars['Boolean']['output']>;\n royalty_points_denominator?: Maybe<Scalars['String']['output']>;\n royalty_points_numerator?: Maybe<Scalars['String']['output']>;\n supply?: Maybe<Scalars['numeric']['output']>;\n token_data_id_hash?: Maybe<Scalars['String']['output']>;\n transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n uri_mutable?: Maybe<Scalars['Boolean']['output']>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.token_datas\" */\nexport type Token_DatasDefault_PropertiesArgs = {\n path?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Boolean expression to filter rows from the table \"legacy_migration_v1.token_datas\". All fields are combined with a logical 'AND'. */\nexport type Token_Datas_Bool_Exp = {\n _and?: InputMaybe<Array<Token_Datas_Bool_Exp>>;\n _not?: InputMaybe<Token_Datas_Bool_Exp>;\n _or?: InputMaybe<Array<Token_Datas_Bool_Exp>>;\n collection_data_id_hash?: InputMaybe<String_Comparison_Exp>;\n collection_name?: InputMaybe<String_Comparison_Exp>;\n creator_address?: InputMaybe<String_Comparison_Exp>;\n default_properties?: InputMaybe<Jsonb_Comparison_Exp>;\n description?: InputMaybe<String_Comparison_Exp>;\n description_mutable?: InputMaybe<Boolean_Comparison_Exp>;\n largest_property_version?: InputMaybe<Numeric_Comparison_Exp>;\n maximum?: InputMaybe<Numeric_Comparison_Exp>;\n maximum_mutable?: InputMaybe<Boolean_Comparison_Exp>;\n metadata_uri?: InputMaybe<String_Comparison_Exp>;\n name?: InputMaybe<String_Comparison_Exp>;\n payee_address?: InputMaybe<String_Comparison_Exp>;\n properties_mutable?: InputMaybe<Boolean_Comparison_Exp>;\n royalty_mutable?: InputMaybe<Boolean_Comparison_Exp>;\n royalty_points_denominator?: InputMaybe<String_Comparison_Exp>;\n royalty_points_numerator?: InputMaybe<String_Comparison_Exp>;\n supply?: InputMaybe<Numeric_Comparison_Exp>;\n token_data_id_hash?: InputMaybe<String_Comparison_Exp>;\n transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n uri_mutable?: InputMaybe<Boolean_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"legacy_migration_v1.token_datas\". */\nexport type Token_Datas_Order_By = {\n collection_data_id_hash?: InputMaybe<Order_By>;\n collection_name?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n default_properties?: InputMaybe<Order_By>;\n description?: InputMaybe<Order_By>;\n description_mutable?: InputMaybe<Order_By>;\n largest_property_version?: InputMaybe<Order_By>;\n maximum?: InputMaybe<Order_By>;\n maximum_mutable?: InputMaybe<Order_By>;\n metadata_uri?: InputMaybe<Order_By>;\n name?: InputMaybe<Order_By>;\n payee_address?: InputMaybe<Order_By>;\n properties_mutable?: InputMaybe<Order_By>;\n royalty_mutable?: InputMaybe<Order_By>;\n royalty_points_denominator?: InputMaybe<Order_By>;\n royalty_points_numerator?: InputMaybe<Order_By>;\n supply?: InputMaybe<Order_By>;\n token_data_id_hash?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n uri_mutable?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"legacy_migration_v1.token_datas\" */\nexport enum Token_Datas_Select_Column {\n /** column name */\n CollectionDataIdHash = 'collection_data_id_hash',\n /** column name */\n CollectionName = 'collection_name',\n /** column name */\n CreatorAddress = 'creator_address',\n /** column name */\n DefaultProperties = 'default_properties',\n /** column name */\n Description = 'description',\n /** column name */\n DescriptionMutable = 'description_mutable',\n /** column name */\n LargestPropertyVersion = 'largest_property_version',\n /** column name */\n Maximum = 'maximum',\n /** column name */\n MaximumMutable = 'maximum_mutable',\n /** column name */\n MetadataUri = 'metadata_uri',\n /** column name */\n Name = 'name',\n /** column name */\n PayeeAddress = 'payee_address',\n /** column name */\n PropertiesMutable = 'properties_mutable',\n /** column name */\n RoyaltyMutable = 'royalty_mutable',\n /** column name */\n RoyaltyPointsDenominator = 'royalty_points_denominator',\n /** column name */\n RoyaltyPointsNumerator = 'royalty_points_numerator',\n /** column name */\n Supply = 'supply',\n /** column name */\n TokenDataIdHash = 'token_data_id_hash',\n /** column name */\n TransactionTimestamp = 'transaction_timestamp',\n /** column name */\n TransactionVersion = 'transaction_version',\n /** column name */\n UriMutable = 'uri_mutable'\n}\n\n/** Streaming cursor of the table \"token_datas\" */\nexport type Token_Datas_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Token_Datas_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Token_Datas_Stream_Cursor_Value_Input = {\n collection_data_id_hash?: InputMaybe<Scalars['String']['input']>;\n collection_name?: InputMaybe<Scalars['String']['input']>;\n creator_address?: InputMaybe<Scalars['String']['input']>;\n default_properties?: InputMaybe<Scalars['jsonb']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n description_mutable?: InputMaybe<Scalars['Boolean']['input']>;\n largest_property_version?: InputMaybe<Scalars['numeric']['input']>;\n maximum?: InputMaybe<Scalars['numeric']['input']>;\n maximum_mutable?: InputMaybe<Scalars['Boolean']['input']>;\n metadata_uri?: InputMaybe<Scalars['String']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n payee_address?: InputMaybe<Scalars['String']['input']>;\n properties_mutable?: InputMaybe<Scalars['Boolean']['input']>;\n royalty_mutable?: InputMaybe<Scalars['Boolean']['input']>;\n royalty_points_denominator?: InputMaybe<Scalars['String']['input']>;\n royalty_points_numerator?: InputMaybe<Scalars['String']['input']>;\n supply?: InputMaybe<Scalars['numeric']['input']>;\n token_data_id_hash?: InputMaybe<Scalars['String']['input']>;\n transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n uri_mutable?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** columns and relationships of \"legacy_migration_v1.token_ownerships\" */\nexport type Token_Ownerships = {\n __typename?: 'token_ownerships';\n amount?: Maybe<Scalars['numeric']['output']>;\n collection_data_id_hash?: Maybe<Scalars['String']['output']>;\n collection_name?: Maybe<Scalars['String']['output']>;\n creator_address?: Maybe<Scalars['String']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n property_version?: Maybe<Scalars['numeric']['output']>;\n table_handle?: Maybe<Scalars['String']['output']>;\n table_type?: Maybe<Scalars['String']['output']>;\n token_data_id_hash?: Maybe<Scalars['String']['output']>;\n transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"legacy_migration_v1.token_ownerships\". All fields are combined with a logical 'AND'. */\nexport type Token_Ownerships_Bool_Exp = {\n _and?: InputMaybe<Array<Token_Ownerships_Bool_Exp>>;\n _not?: InputMaybe<Token_Ownerships_Bool_Exp>;\n _or?: InputMaybe<Array<Token_Ownerships_Bool_Exp>>;\n amount?: InputMaybe<Numeric_Comparison_Exp>;\n collection_data_id_hash?: InputMaybe<String_Comparison_Exp>;\n collection_name?: InputMaybe<String_Comparison_Exp>;\n creator_address?: InputMaybe<String_Comparison_Exp>;\n name?: InputMaybe<String_Comparison_Exp>;\n owner_address?: InputMaybe<String_Comparison_Exp>;\n property_version?: InputMaybe<Numeric_Comparison_Exp>;\n table_handle?: InputMaybe<String_Comparison_Exp>;\n table_type?: InputMaybe<String_Comparison_Exp>;\n token_data_id_hash?: InputMaybe<String_Comparison_Exp>;\n transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"legacy_migration_v1.token_ownerships\". */\nexport type Token_Ownerships_Order_By = {\n amount?: InputMaybe<Order_By>;\n collection_data_id_hash?: InputMaybe<Order_By>;\n collection_name?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n name?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n table_handle?: InputMaybe<Order_By>;\n table_type?: InputMaybe<Order_By>;\n token_data_id_hash?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"legacy_migration_v1.token_ownerships\" */\nexport enum Token_Ownerships_Select_Column {\n /** column name */\n Amount = 'amount',\n /** column name */\n CollectionDataIdHash = 'collection_data_id_hash',\n /** column name */\n CollectionName = 'collection_name',\n /** column name */\n CreatorAddress = 'creator_address',\n /** column name */\n Name = 'name',\n /** column name */\n OwnerAddress = 'owner_address',\n /** column name */\n PropertyVersion = 'property_version',\n /** column name */\n TableHandle = 'table_handle',\n /** column name */\n TableType = 'table_type',\n /** column name */\n TokenDataIdHash = 'token_data_id_hash',\n /** column name */\n TransactionTimestamp = 'transaction_timestamp',\n /** column name */\n TransactionVersion = 'transaction_version'\n}\n\n/** Streaming cursor of the table \"token_ownerships\" */\nexport type Token_Ownerships_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Token_Ownerships_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Token_Ownerships_Stream_Cursor_Value_Input = {\n amount?: InputMaybe<Scalars['numeric']['input']>;\n collection_data_id_hash?: InputMaybe<Scalars['String']['input']>;\n collection_name?: InputMaybe<Scalars['String']['input']>;\n creator_address?: InputMaybe<Scalars['String']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n owner_address?: InputMaybe<Scalars['String']['input']>;\n property_version?: InputMaybe<Scalars['numeric']['input']>;\n table_handle?: InputMaybe<Scalars['String']['input']>;\n table_type?: InputMaybe<Scalars['String']['input']>;\n token_data_id_hash?: InputMaybe<Scalars['String']['input']>;\n transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** columns and relationships of \"legacy_migration_v1.tokens\" */\nexport type Tokens = {\n __typename?: 'tokens';\n collection_data_id_hash?: Maybe<Scalars['String']['output']>;\n collection_name?: Maybe<Scalars['String']['output']>;\n creator_address?: Maybe<Scalars['String']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n property_version?: Maybe<Scalars['numeric']['output']>;\n token_data_id_hash?: Maybe<Scalars['String']['output']>;\n token_properties?: Maybe<Scalars['jsonb']['output']>;\n transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.tokens\" */\nexport type TokensToken_PropertiesArgs = {\n path?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Boolean expression to filter rows from the table \"legacy_migration_v1.tokens\". All fields are combined with a logical 'AND'. */\nexport type Tokens_Bool_Exp = {\n _and?: InputMaybe<Array<Tokens_Bool_Exp>>;\n _not?: InputMaybe<Tokens_Bool_Exp>;\n _or?: InputMaybe<Array<Tokens_Bool_Exp>>;\n collection_data_id_hash?: InputMaybe<String_Comparison_Exp>;\n collection_name?: InputMaybe<String_Comparison_Exp>;\n creator_address?: InputMaybe<String_Comparison_Exp>;\n name?: InputMaybe<String_Comparison_Exp>;\n property_version?: InputMaybe<Numeric_Comparison_Exp>;\n token_data_id_hash?: InputMaybe<String_Comparison_Exp>;\n token_properties?: InputMaybe<Jsonb_Comparison_Exp>;\n transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"legacy_migration_v1.tokens\". */\nexport type Tokens_Order_By = {\n collection_data_id_hash?: InputMaybe<Order_By>;\n collection_name?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n name?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n token_data_id_hash?: InputMaybe<Order_By>;\n token_properties?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"legacy_migration_v1.tokens\" */\nexport enum Tokens_Select_Column {\n /** column name */\n CollectionDataIdHash = 'collection_data_id_hash',\n /** column name */\n CollectionName = 'collection_name',\n /** column name */\n CreatorAddress = 'creator_address',\n /** column name */\n Name = 'name',\n /** column name */\n PropertyVersion = 'property_version',\n /** column name */\n TokenDataIdHash = 'token_data_id_hash',\n /** column name */\n TokenProperties = 'token_properties',\n /** column name */\n TransactionTimestamp = 'transaction_timestamp',\n /** column name */\n TransactionVersion = 'transaction_version'\n}\n\n/** Streaming cursor of the table \"tokens\" */\nexport type Tokens_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Tokens_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Tokens_Stream_Cursor_Value_Input = {\n collection_data_id_hash?: InputMaybe<Scalars['String']['input']>;\n collection_name?: InputMaybe<Scalars['String']['input']>;\n creator_address?: InputMaybe<Scalars['String']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n property_version?: InputMaybe<Scalars['numeric']['input']>;\n token_data_id_hash?: InputMaybe<Scalars['String']['input']>;\n token_properties?: InputMaybe<Scalars['jsonb']['input']>;\n transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** columns and relationships of \"user_transactions\" */\nexport type User_Transactions = {\n __typename?: 'user_transactions';\n block_height: Scalars['bigint']['output'];\n entry_function_contract_address?: Maybe<Scalars['String']['output']>;\n entry_function_function_name?: Maybe<Scalars['String']['output']>;\n entry_function_id_str: Scalars['String']['output'];\n entry_function_module_name?: Maybe<Scalars['String']['output']>;\n epoch: Scalars['bigint']['output'];\n expiration_timestamp_secs: Scalars['timestamp']['output'];\n gas_unit_price: Scalars['numeric']['output'];\n max_gas_amount: Scalars['numeric']['output'];\n parent_signature_type: Scalars['String']['output'];\n sender: Scalars['String']['output'];\n sequence_number?: Maybe<Scalars['bigint']['output']>;\n timestamp: Scalars['timestamp']['output'];\n version: Scalars['bigint']['output'];\n};\n\n/** Boolean expression to filter rows from the table \"user_transactions\". All fields are combined with a logical 'AND'. */\nexport type User_Transactions_Bool_Exp = {\n _and?: InputMaybe<Array<User_Transactions_Bool_Exp>>;\n _not?: InputMaybe<User_Transactions_Bool_Exp>;\n _or?: InputMaybe<Array<User_Transactions_Bool_Exp>>;\n block_height?: InputMaybe<Bigint_Comparison_Exp>;\n entry_function_contract_address?: InputMaybe<String_Comparison_Exp>;\n entry_function_function_name?: InputMaybe<String_Comparison_Exp>;\n entry_function_id_str?: InputMaybe<String_Comparison_Exp>;\n entry_function_module_name?: InputMaybe<String_Comparison_Exp>;\n epoch?: InputMaybe<Bigint_Comparison_Exp>;\n expiration_timestamp_secs?: InputMaybe<Timestamp_Comparison_Exp>;\n gas_unit_price?: InputMaybe<Numeric_Comparison_Exp>;\n max_gas_amount?: InputMaybe<Numeric_Comparison_Exp>;\n parent_signature_type?: InputMaybe<String_Comparison_Exp>;\n sender?: InputMaybe<String_Comparison_Exp>;\n sequence_number?: InputMaybe<Bigint_Comparison_Exp>;\n timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n version?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"user_transactions\". */\nexport type User_Transactions_Order_By = {\n block_height?: InputMaybe<Order_By>;\n entry_function_contract_address?: InputMaybe<Order_By>;\n entry_function_function_name?: InputMaybe<Order_By>;\n entry_function_id_str?: InputMaybe<Order_By>;\n entry_function_module_name?: InputMaybe<Order_By>;\n epoch?: InputMaybe<Order_By>;\n expiration_timestamp_secs?: InputMaybe<Order_By>;\n gas_unit_price?: InputMaybe<Order_By>;\n max_gas_amount?: InputMaybe<Order_By>;\n parent_signature_type?: InputMaybe<Order_By>;\n sender?: InputMaybe<Order_By>;\n sequence_number?: InputMaybe<Order_By>;\n timestamp?: InputMaybe<Order_By>;\n version?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"user_transactions\" */\nexport enum User_Transactions_Select_Column {\n /** column name */\n BlockHeight = 'block_height',\n /** column name */\n EntryFunctionContractAddress = 'entry_function_contract_address',\n /** column name */\n EntryFunctionFunctionName = 'entry_function_function_name',\n /** column name */\n EntryFunctionIdStr = 'entry_function_id_str',\n /** column name */\n EntryFunctionModuleName = 'entry_function_module_name',\n /** column name */\n Epoch = 'epoch',\n /** column name */\n ExpirationTimestampSecs = 'expiration_timestamp_secs',\n /** column name */\n GasUnitPrice = 'gas_unit_price',\n /** column name */\n MaxGasAmount = 'max_gas_amount',\n /** column name */\n ParentSignatureType = 'parent_signature_type',\n /** column name */\n Sender = 'sender',\n /** column name */\n SequenceNumber = 'sequence_number',\n /** column name */\n Timestamp = 'timestamp',\n /** column name */\n Version = 'version'\n}\n\n/** Streaming cursor of the table \"user_transactions\" */\nexport type User_Transactions_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: User_Transactions_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type User_Transactions_Stream_Cursor_Value_Input = {\n block_height?: InputMaybe<Scalars['bigint']['input']>;\n entry_function_contract_address?: InputMaybe<Scalars['String']['input']>;\n entry_function_function_name?: InputMaybe<Scalars['String']['input']>;\n entry_function_id_str?: InputMaybe<Scalars['String']['input']>;\n entry_function_module_name?: InputMaybe<Scalars['String']['input']>;\n epoch?: InputMaybe<Scalars['bigint']['input']>;\n expiration_timestamp_secs?: InputMaybe<Scalars['timestamp']['input']>;\n gas_unit_price?: InputMaybe<Scalars['numeric']['input']>;\n max_gas_amount?: InputMaybe<Scalars['numeric']['input']>;\n parent_signature_type?: InputMaybe<Scalars['String']['input']>;\n sender?: InputMaybe<Scalars['String']['input']>;\n sequence_number?: InputMaybe<Scalars['bigint']['input']>;\n timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n version?: InputMaybe<Scalars['bigint']['input']>;\n};\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { AccountAddress, AccountAddressInput } from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\nimport {\n createPaginatedQuery,\n PaginationCursors,\n WithPagination,\n} from \"../utils/pagination.js\";\nimport {\n FungibleAssetBalanceFieldsFragment,\n FungibleAssetMetadataFieldsFragment,\n GetFungibleAssetBalancesQueryVariables,\n} from \"../operations/index.js\";\nimport { FungibleAssetBalance } from \"../types/fungibleAssets.js\";\nimport { IndexerNotInitializedError } from \"../errors/clients.js\";\nimport { normalizeFungibleAssetBalances } from \"../utils/normalize.js\";\n\nexport type FetchAccountCoinsParameters = WithPagination<\n WithNetwork<{\n /**\n * The address of the account to fetch the coin balances for.\n */\n address: AccountAddressInput;\n /**\n * Conditions for ordering the coin balance results.\n */\n orderBy?: GetFungibleAssetBalancesQueryVariables[\"order_by\"];\n /**\n * Filters for the coin balance results.\n */\n where?: GetFungibleAssetBalancesQueryVariables[\"where\"];\n }>\n>;\n\nexport type FetchAccountCoinsResult = PaginationCursors & {\n balances: FungibleAssetBalance[];\n};\n\nexport async function fetchAccountCoins(\n this: AptosJSProClient,\n {\n address,\n network,\n limit = 100,\n offset = 0,\n orderBy,\n where,\n }: FetchAccountCoinsParameters\n): Promise<FetchAccountCoinsResult> {\n const { indexer } = this.getClients({ network });\n\n if (!indexer) throw new IndexerNotInitializedError();\n\n return createPaginatedQuery({\n limit,\n offset,\n queryFn: async ({ limit, offset }) => {\n const response = await indexer.getFungibleAssetBalances({\n limit,\n offset,\n order_by: orderBy,\n where: {\n _and: [\n {\n metadata: { asset_type: { _is_null: false } },\n owner_address: {\n _eq: AccountAddress.from(address).toStringLong(),\n },\n },\n where ?? {},\n ],\n },\n });\n\n const balances = response.current_fungible_asset_balances.filter(\n (e) => e.metadata !== undefined && e.metadata !== null\n ) as (FungibleAssetBalanceFieldsFragment & {\n metadata: FungibleAssetMetadataFieldsFragment;\n })[];\n\n return {\n balances: normalizeFungibleAssetBalances(balances),\n hasNextPage: response.current_fungible_asset_balances.length === limit,\n };\n },\n });\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nexport type WithPagination<T> = T & {\n /**\n * The number of results to return per page. This value is capped at 100 results.\n *\n * @default 100\n */\n limit?: number;\n /**\n * The offset to start the query from.\n *\n * @default 0\n */\n offset?: number;\n};\n\ntype PaginationQueryFnResult<T> = T & {\n /**\n * Whether there are more results in the next page.\n */\n hasNextPage: boolean;\n /**\n * Whether there are more results in the previous page.\n * @default () => offset > 0\n */\n hasPrevPage?: boolean;\n};\n\ninterface PaginationOptions<TQueryFnResult> {\n /**\n * The number of results to return per page.\n */\n limit: number;\n /**\n * The offset to start the query from.\n */\n offset: number;\n /**\n * The query function to paginate. Must return a result with a `hasNextPage`\n * boolean and optionally a `hasPrevPage` boolean to indicate whether there\n * are more results in either direction.\n */\n queryFn: (args: {\n limit: number;\n offset: number;\n }) => Promise<PaginationQueryFnResult<TQueryFnResult>>;\n}\n\nexport interface PaginationCursors {\n /**\n * The next cursor for pagination. If there is no next page, this will be\n * undefined.\n */\n nextCursor?: number;\n /**\n * The previous cursor for pagination. If there is no previous page, this\n * will be undefined.\n */\n prevCursor?: number;\n}\n\n/**\n * Paginate a query function with a limit and offset. Strictly types the result\n * to include pagination cursors. The query function must return a result with\n * a `hasNextPage` boolean and optionally a `hasPrevPage` boolean to indicate\n * whether there are more results in either direction.\n *\n * @param queryFn - The query function to paginate.\n * @param limit - The number of results to return per page.\n * @param offset - The offset to start the query from.\n * @returns The paginated results with pagination cursors.\n */\nexport const createPaginatedQuery = async <TQueryFnResult>({\n limit,\n offset,\n queryFn,\n}: PaginationOptions<TQueryFnResult>): Promise<\n PaginationCursors & TQueryFnResult\n> => {\n const result = await queryFn({ limit, offset });\n\n // Remove the hasNextPage and hasPrevPage properties from the result.\n const { hasNextPage, hasPrevPage, ...data } = result;\n\n // Find the next and previous cursors.\n const nextCursor = hasNextPage ? offset + limit : undefined;\n const prevCursor =\n (hasPrevPage ?? offset > 0) ? Math.max(offset - limit, 0) : undefined;\n\n return { nextCursor, prevCursor, ...(data as TQueryFnResult) };\n};\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nexport interface AptosBaseErrorOptions {\n longMessage?: string;\n}\n\nexport class AptosBaseError extends Error {\n shortMessage: string;\n\n longMessage?: string;\n\n docsBaseUrl = \"https://js-pro.aptos.dev/\";\n\n override name = \"AptosJSProError\";\n\n constructor(shortMessage: string, options?: AptosBaseErrorOptions) {\n super();\n\n this.shortMessage = shortMessage;\n this.longMessage = options?.longMessage;\n }\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { AptosBaseError } from \"./base.js\";\n\nexport class IndexerNotInitializedError extends AptosBaseError {\n override name = \"IndexerNotInitializedError\";\n\n constructor() {\n super(\"The AptosJSProClient was not initialized with an indexer\", {\n longMessage:\n \"The AptosJSProClient was not initialized with an indexer. Please specify an indexer endpoint when setting up custom networks.\",\n });\n }\n}\n\nexport class SignerNotFoundError extends AptosBaseError {\n override name = \"SignerNotFoundError\";\n\n constructor() {\n super(\"The AptosJSProClient was not initialized with a signer\", {\n longMessage:\n \"The AptosJSProClient was not initialized with a signer. Please specify a signer when setting up the client.\",\n });\n }\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nexport class AptosName {\n readonly #domain?: string;\n\n readonly #subdomain?: string;\n\n constructor(name: string);\n\n constructor(domain: string, subdomain?: string | null);\n\n constructor(domain: string, subdomain?: string | null) {\n if (!domain) return;\n\n const name = [subdomain, domain].filter(Boolean).join(\".\");\n\n const normalized = name.toLowerCase().replace(/(\\.apt)$/, \"\");\n\n // ^ - Asserts the start of the string\n // (?: - Start of a non-capturing group\n // ([^.]+)\\. - Capturing group for the subdomain (if present)\n // )? - End of the non-capturing group\n // ([^.]+) - Capturing group for the domain\n // $ - Asserts the end of the string.\n const regex = /^(?:([a-zA-Z0-9-]+)\\.)?([a-zA-Z0-9-]+)$/;\n\n const match = normalized.match(regex);\n\n if (!match) return;\n\n const [, parsedSubdomain, parsedDomain] = match;\n\n this.#domain = parsedDomain;\n this.#subdomain = parsedSubdomain;\n }\n\n toString(): string {\n if (!this.#domain) return \"\";\n\n return this.noSuffix().concat(\".apt\");\n }\n\n noSuffix(): string {\n if (!this.#domain) return \"\";\n\n if (!this.#subdomain) return this.#domain;\n\n return `${this.#subdomain}.${this.#domain}`;\n }\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\nexport const APTOS_NAMES_ENDPOINT = \"https://www.aptosnames.com/api\";\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { APTOS_NAMES_ENDPOINT } from \"../constants/endpoints.js\";\n\nexport function fixBadAptosUri(uri: string) {\n const match =\n uri.match(/^https:\\/\\/aptosnames.com\\/name\\/([^/]+)$/) ??\n uri.match(\n /^https:\\/\\/aptosnames.com\\/api(?:\\/[^/]+)?\\/v\\d+\\/metadata\\/([^/]+)/\n );\n return match ? `${APTOS_NAMES_ENDPOINT}/v1/metadata/${match[1]}` : uri;\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport {\n AccountTransactionFragment,\n BaseTokenActivityFragment,\n CollectionDataFieldsFragment,\n CollectionOwnershipFragment,\n DelegatedStakingActivityFragment,\n FungibleAssetActivityFragment,\n FungibleAssetBalanceFieldsFragment,\n FungibleAssetMetadataFieldsFragment,\n PrimaryAptosNameFragment,\n TokenActivityFragment,\n TokenDataFieldsFragment,\n UserTransactionFragment,\n} from \"../operations/generated/operations.js\";\nimport {\n BaseTokenActivity,\n DelegatedStakingActivity,\n FungibleAssetActivity,\n TokenActivity,\n} from \"../types/activities.js\";\nimport {\n FungibleAssetBalance,\n FungibleAssetMetadata,\n} from \"../types/fungibleAssets.js\";\nimport { CollectionData, TokenData } from \"../types/tokens.js\";\nimport { AccountTransaction, UserTransaction } from \"../types/transactions.js\";\nimport { AptosName } from \"./names.js\";\nimport { fixBadAptosUri } from \"./tokens.js\";\n\n// normalizePrimaryAptosName\n\nexport const normalizePrimaryAptosName = (\n aptosName: PrimaryAptosNameFragment\n): AptosName | undefined =>\n aptosName.domain\n ? new AptosName(aptosName.domain, aptosName.subdomain)\n : undefined;\n\n// normalizeFungibleAssetMetadata\n\nexport const normalizeFungibleAssetMetadata = (\n metadata: FungibleAssetMetadataFieldsFragment\n): FungibleAssetMetadata => ({\n assetType: metadata.asset_type,\n creatorAddress: metadata.creator_address,\n decimals: metadata.decimals,\n iconUri: metadata.icon_uri,\n name: metadata.name,\n projectUri: metadata.project_uri,\n symbol: metadata.symbol,\n tokenStandard: metadata.token_standard,\n});\n\n// normalizeFungibleAssetBalances\n\nexport const normalizeFungibleAssetBalances = (\n balances: (FungibleAssetBalanceFieldsFragment & {\n metadata: FungibleAssetMetadataFieldsFragment;\n })[]\n): FungibleAssetBalance[] =>\n balances.map(\n (balance) =>\n ({\n amount: balance.amount,\n amountV1: balance.amount_v1,\n amountV2: balance.amount_v2,\n assetType: balance.asset_type,\n assetTypeV1: balance.asset_type_v1,\n assetTypeV2: balance.asset_type_v2,\n isFrozen: balance.is_frozen,\n isPrimary: balance.is_primary,\n lastTransactionTimestamp: balance.last_transaction_timestamp,\n lastTransactionVersion: balance.last_transaction_version,\n metadata: normalizeFungibleAssetMetadata(balance.metadata),\n ownerAddress: balance.owner_address,\n tokenStandard: balance.token_standard,\n }) satisfies FungibleAssetBalance\n );\n\n// normalizeCollectionData\n\nexport const normalizeCollectionData = (\n collectionData: CollectionDataFieldsFragment\n): CollectionData => ({\n cdnImageUri: collectionData.cdn_asset_uris?.cdn_image_uri,\n collectionId: collectionData.collection_id,\n collectionName: collectionData.collection_name,\n creatorAddress: collectionData.creator_address,\n description: collectionData.description,\n metadataUri: collectionData.uri,\n name: collectionData.collection_name,\n supply: collectionData.max_supply,\n});\n\n// normalizeCollectionOwnership\n\nexport const normalizeCollectionOwnership = (\n collectionOwnership: CollectionOwnershipFragment & {\n current_collection: CollectionDataFieldsFragment;\n }\n): CollectionData => ({\n ...normalizeCollectionData(collectionOwnership.current_collection),\n distinctTokens: collectionOwnership.distinct_tokens,\n fallbackUri: collectionOwnership.single_token_uri,\n});\n\n// normalizeTokenData\n\nexport const normalizeTokenData = (\n tokenData: TokenDataFieldsFragment\n): TokenData => {\n const fixedUri = fixBadAptosUri(tokenData.token_uri);\n return {\n cdnImageUri: tokenData.cdn_asset_uris?.cdn_image_uri,\n collection: tokenData.current_collection?.collection_name ?? \"\",\n collectionData: tokenData.current_collection\n ? normalizeCollectionData(tokenData.current_collection)\n : undefined,\n collectionId: tokenData.current_collection?.collection_id ?? \"\",\n creator: tokenData.current_collection?.creator_address ?? \"\",\n description: tokenData.description,\n isFungibleV2: tokenData.is_fungible_v2 ?? false,\n isSoulbound: false,\n lastTransactionTimestamp: tokenData.last_transaction_timestamp,\n lastTransactionVersion: tokenData.last_transaction_version,\n metadataUri: fixedUri,\n name: tokenData.token_name,\n tokenId: tokenData.token_data_id,\n tokenProperties: tokenData.token_properties,\n tokenStandard: tokenData.token_standard as \"v1\" | \"v2\",\n };\n};\n\n// normalizeBaseTokenActivity\n\nexport const normalizeBaseTokenActivity = (\n activity: BaseTokenActivityFragment\n): BaseTokenActivity => ({\n fromAddress: activity.from_address,\n toAddress: activity.to_address,\n transactionTimestamp: activity.transaction_timestamp,\n transactionVersion: activity.transaction_version,\n type: activity.type,\n eventAccountAddress: activity.event_account_address,\n eventIndex: activity.event_index,\n});\n\n// normalizeAccountTransaction\n\nexport const normalizeAccountTransaction = (\n transaction: AccountTransactionFragment\n): AccountTransaction => {\n const fungibleAssetActivities: FungibleAssetActivity[] = [];\n const tokenActivities: TokenActivity[] = [];\n const delegatedStakingActivities: DelegatedStakingActivity[] = [];\n\n transaction.fungible_asset_activities.forEach((e) => {\n if (!e.asset_type || !e.metadata) return;\n fungibleAssetActivities.push(\n normalizeFungibleAssetActivity({\n ...e,\n asset_type: e.asset_type,\n metadata: e.metadata,\n })\n );\n });\n\n transaction.token_activities_v2.forEach((e) => {\n if (!e.current_token_data) return;\n tokenActivities.push(\n normalizeTokenActivity({\n ...e,\n current_token_data: e.current_token_data,\n })\n );\n });\n\n transaction.delegated_staking_activities.forEach((e) =>\n delegatedStakingActivities.push(normalizeDelegatedStakingActivity(e))\n );\n\n return {\n accountAddress: transaction.account_address,\n transactionVersion: transaction.transaction_version,\n fungibleAssetActivities,\n tokenActivities,\n delegatedStakingActivities,\n userTransaction: transaction.user_transaction\n ? {\n sequenceNumber: transaction.user_transaction.sequence_number,\n sender: transaction.user_transaction.sender,\n entryFunction: transaction.user_transaction.entry_function_id_str,\n }\n : undefined,\n };\n};\n\n// normalizeFungibleAssetActivity\n\nexport const normalizeFungibleAssetActivity = (\n activity: FungibleAssetActivityFragment & {\n asset_type: string;\n metadata: FungibleAssetMetadataFieldsFragment;\n }\n): FungibleAssetActivity => ({\n ownerAddress: activity.owner_address,\n ownerPrimaryAptosName: activity.owner_primary_aptos_name.at(0)\n ? normalizePrimaryAptosName(activity.owner_primary_aptos_name[0])\n : undefined,\n amount: activity.amount,\n type: activity.type,\n blockHeight: activity.block_height,\n assetType: activity.asset_type,\n metadata: normalizeFungibleAssetMetadata(activity.metadata),\n entryFunctionIdStr: activity.entry_function_id_str,\n eventIndex: activity.event_index,\n isGasFee: activity.is_gas_fee,\n gasFeePayerAddress: activity.gas_fee_payer_address,\n isTransactionSuccess: activity.is_transaction_success,\n transactionTimestamp: activity.transaction_timestamp,\n transactionVersion: activity.transaction_version,\n});\n\n// normalizeTokenActivity\n\nexport const normalizeTokenActivity = (\n activity: TokenActivityFragment & {\n current_token_data: TokenDataFieldsFragment;\n }\n): TokenActivity => ({\n ...normalizeBaseTokenActivity(activity),\n primaryAptosNameFrom: activity.primary_aptos_name_from.at(0)\n ? normalizePrimaryAptosName(activity.primary_aptos_name_from[0])\n : undefined,\n primaryAptosNameTo: activity.primary_aptos_name_to.at(0)\n ? normalizePrimaryAptosName(activity.primary_aptos_name_to[0])\n : undefined,\n currentTokenData: normalizeTokenData(activity.current_token_data),\n propertyVersionV1: activity.property_version_v1,\n tokenAmount: activity.token_amount,\n tokenDataId: activity.token_data_id,\n});\n\n// normalizeDelegatedStakingActivity\n\nexport const normalizeDelegatedStakingActivity = (\n activity: DelegatedStakingActivityFragment\n): DelegatedStakingActivity => ({\n delegatorAddress: activity.delegator_address,\n eventIndex: activity.event_index,\n eventType: activity.event_type,\n poolAddress: activity.pool_address,\n transactionVersion: activity.transaction_version,\n amount: activity.amount,\n});\n\n// normalizeUserTransaction\n\nexport const normalizeUserTransaction = (\n transaction: UserTransactionFragment\n): UserTransaction => ({\n entryFunction: transaction.entry_function_id_str,\n expirationTimestampSecs: transaction.expiration_timestamp_secs,\n gasUnitPrice: transaction.gas_unit_price,\n maxGasAmount: transaction.max_gas_amount,\n parentSignatureType: transaction.parent_signature_type,\n version: transaction.version,\n timestamp: transaction.timestamp,\n sequenceNumber: transaction.sequence_number,\n sender: transaction.sender,\n});\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\nimport { Aptos } from \"@aptos-labs/ts-sdk\";\nimport { Sdk } from \"../operations/index.js\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { AccountInfo, NetworkInfo, SignerClient } from \"../types/index.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\n\nexport type GetClientsParameters = WithNetwork<object>;\n\nexport type GetClientsResult = {\n account?: AccountInfo;\n aptos: Aptos;\n indexer?: Sdk;\n network: NetworkInfo;\n signer?: SignerClient;\n};\n\nexport function getClients(\n this: AptosJSProClient,\n { network: selectedNetwork }: GetClientsParameters = {}\n): GetClientsResult {\n let aptos: Aptos = this.aptos;\n let indexer: Sdk | undefined = this.indexer;\n\n if (selectedNetwork) {\n aptos = this.createAptos(undefined, selectedNetwork);\n indexer = this.createIndexer(undefined, selectedNetwork);\n }\n\n return {\n account: this.account,\n aptos,\n indexer,\n network: selectedNetwork ?? this.network,\n signer: this.signer,\n };\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { AccountAddress, AccountAddressInput } from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\n\nexport type FetchAptBalanceParameters = WithNetwork<{\n /**\n * The address to fetch the APT balance for.\n */\n address: AccountAddressInput;\n}>;\n\nexport type FetchAptBalanceResult = bigint;\n\nexport async function fetchAptBalance(\n this: AptosJSProClient,\n { address, network }: FetchAptBalanceParameters\n): Promise<FetchAptBalanceResult> {\n const { aptos } = this.getClients({ network });\n\n const amount = await aptos.account.getAccountCoinAmount({\n accountAddress: AccountAddress.from(address).toStringLong(),\n coinType: \"0x1::aptos_coin::AptosCoin\",\n });\n\n return BigInt(amount);\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { AccountAddress, AccountAddressInput } from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\n\nexport type FetchBalanceParameters = WithNetwork<{\n /**\n * The address to fetch the asset balance for.\n */\n address: AccountAddressInput;\n /**\n * The asset to fetch the balance for. This can be a coin type or Fungible Asset metadata address.\n */\n asset: string;\n}>;\n\nexport type FetchBalanceResult = bigint;\n\nexport async function fetchBalance(\n this: AptosJSProClient,\n { address, asset, network }: FetchBalanceParameters\n): Promise<FetchBalanceResult> {\n const { aptos } = this.getClients({ network });\n\n const isCoinType = asset.includes(\"::\");\n\n const amount = await aptos.account.getAccountCoinAmount({\n accountAddress: AccountAddress.from(address).toStringLong(),\n coinType: isCoinType\n ? (asset as `${string}::${string}::${string}`)\n : undefined,\n faMetadataAddress: isCoinType\n ? undefined\n : AccountAddress.from(asset).toStringLong(),\n });\n\n return BigInt(amount);\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { ProcessorType } from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\n\nexport type FetchProcessorStatusParameters = WithNetwork<{\n processor: ProcessorType;\n}>;\n\nexport type FetchProcessorStatusResult = {\n lastSuccessVersion: number;\n lastUpdated: number;\n};\n\nexport async function fetchProcessorStatus(\n this: AptosJSProClient,\n { network, processor }: FetchProcessorStatusParameters\n): Promise<FetchProcessorStatusResult> {\n const { aptos } = this.getClients({ network });\n\n const result = await aptos.getProcessorStatus(processor);\n\n return {\n lastSuccessVersion: result.last_success_version,\n lastUpdated: result.last_updated,\n };\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { AccountAddress } from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\nimport { AptosName } from \"../utils/names.js\";\nimport { asyncTryOrDefault } from \"../utils/lib.js\";\n\nexport type FetchAddressFromNameParameters = WithNetwork<{\n /**\n * The name to fetch the address for. You can pass in an instance of `AptosName` or a `string`.\n */\n name: string | AptosName;\n}>;\n\nexport type FetchAddressFromNameResult = AccountAddress | null;\n\nexport async function fetchAddressFromName(\n this: AptosJSProClient,\n { network, name }: FetchAddressFromNameParameters\n): Promise<FetchAddressFromNameResult> {\n const { aptos } = this.getClients({ network });\n\n const address = await asyncTryOrDefault(\n () => aptos.getTargetAddress({ name: name.toString() }),\n undefined\n );\n\n return address ? AccountAddress.from(address) : null;\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\n/**\n * Tries to execute a function and returns the result. If the function throws\n * an error, returns a default value.\n */\nexport const asyncTryOrDefault = async <T, U>(\n fn: () => T,\n defaultValue: U\n): Promise<T | U> => {\n try {\n const res = await fn();\n return res;\n } catch {\n return defaultValue;\n }\n};\n\nexport function shareRequests<TParam extends string | number, TResult>(\n query: (param: TParam) => Promise<TResult>\n) {\n const pendingRequests: { [key: string]: Promise<TResult> } = {};\n return async (param: TParam) => {\n if (param in pendingRequests) {\n return pendingRequests[param] as Promise<TResult>;\n }\n const pendingRequest = query(param);\n pendingRequests[param] = pendingRequest;\n const result = await pendingRequest;\n delete pendingRequests[param];\n return result;\n };\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { AccountAddressInput } from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\nimport { AptosName } from \"../utils/names.js\";\nimport { asyncTryOrDefault } from \"../utils/lib.js\";\n\nexport type FetchNameFromAddressParameters = WithNetwork<{\n /**\n * The address to fetch the ANS name for.\n */\n address: AccountAddressInput;\n}>;\n\nexport type FetchNameFromAddressResult = AptosName | null;\n\nexport async function fetchNameFromAddress(\n this: AptosJSProClient,\n { network, address }: FetchNameFromAddressParameters\n): Promise<FetchNameFromAddressResult> {\n const { aptos } = this.getClients({ network });\n\n const name = await asyncTryOrDefault(\n () => aptos.getPrimaryName({ address }),\n undefined\n );\n\n return name ? new AptosName(name) : null;\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\n\nexport type FetchEstimatedGasPriceParameters = WithNetwork<object>;\n\nexport type FetchEstimatedGasPriceResult = {\n deprioritizedGasEstimate?: number;\n gasEstimate: number;\n prioritizedGasEstimate?: number;\n};\n\nexport async function fetchEstimatedGasPrice(\n this: AptosJSProClient,\n { network }: FetchEstimatedGasPriceParameters = {}\n): Promise<FetchEstimatedGasPriceResult> {\n const { aptos } = this.getClients({ network });\n\n const result = await aptos.getGasPriceEstimation();\n\n return {\n deprioritizedGasEstimate: result.deprioritized_gas_estimate,\n gasEstimate: result.gas_estimate,\n prioritizedGasEstimate: result.prioritized_gas_estimate,\n };\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { AnyNumber, HexInput, TransactionResponse } from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\n\nexport type FetchTransactionParameters = WithNetwork<\n | {\n transactionHash: HexInput;\n }\n | {\n ledgerVersion: AnyNumber;\n }\n>;\n\nexport type FetchTransactionResult = TransactionResponse;\n\nexport async function fetchTransaction(\n this: AptosJSProClient,\n { network, ...params }: FetchTransactionParameters\n): Promise<FetchTransactionResult> {\n const { aptos } = this.getClients({ network });\n\n if (\"ledgerVersion\" in params) {\n return aptos.getTransactionByVersion({\n ledgerVersion: params.ledgerVersion,\n });\n }\n\n return aptos.getTransactionByHash({\n transactionHash: params.transactionHash,\n });\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { AccountAddress, Aptos } from \"@aptos-labs/ts-sdk\";\nimport { MoveResource } from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\nimport { ResourceMap, ResourceType } from \"../types/resources.js\";\n\n// Helper type to extract the resource data type based on input\nexport type ExtractResourceData<T> = T extends ResourceType\n ? ResourceMap[T]\n : T extends string\n ? object\n : T;\n\n// Helper type to determine the resource type string\nexport type GetResourceTypeString<T> = T extends ResourceType\n ? T\n : T extends string\n ? T\n : string;\n\nexport type FetchResourceTypeParameters<T extends string> = WithNetwork<\n Omit<\n Parameters<Aptos[\"account\"][\"getAccountResource\"]>[0],\n \"resourceType\"\n > & {\n /**\n * The resource type to fetch. If the resource is a common type, the result may automatically be typed.\n *\n * For example, if you pass in `0x1::account::Account`, the result will be typed as:\n *\n * ```ts\n * {\n * type: \"0x1::account::Account\",\n * data: {\n * authentication_key: string;\n * coin_register_events: ResourceEventHandle;\n * guid_creation_num: string;\n * withdraw_events: ResourceEventHandle;\n * sequence_number: string;\n * // ...more fields\n * };\n * }\n * ```\n */\n resourceType: T extends object ? string : T;\n }\n>;\n\nexport type FetchResourceTypeResult<\n T extends object,\n RT extends string = string,\n> = MoveResource<T> & {\n type: RT;\n};\n\nexport async function fetchResourceType<T extends string | object>(\n this: AptosJSProClient,\n {\n network,\n accountAddress,\n ...params\n }: FetchResourceTypeParameters<T extends object ? string : T & string>\n): Promise<\n FetchResourceTypeResult<ExtractResourceData<T>, GetResourceTypeString<T>>\n> {\n const { aptos } = this.getClients({ network });\n\n const result = await aptos.getAccountResource({\n ...params,\n accountAddress: AccountAddress.from(accountAddress).toString(),\n resourceType: params.resourceType as `${string}::${string}::${string}`,\n });\n\n return result as FetchResourceTypeResult<\n ExtractResourceData<T>,\n GetResourceTypeString<T>\n >;\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { Aptos, MoveResource } from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\nimport { asyncTryOrDefault } from \"../utils/lib.js\";\n\nexport type FetchResourcesParameters = WithNetwork<\n Parameters<Aptos[\"account\"][\"getAccountResources\"]>[0]\n>;\n\nexport type FetchResourcesResult = MoveResource[];\n\nexport async function fetchResources(\n this: AptosJSProClient,\n { network, ...params }: FetchResourcesParameters\n): Promise<FetchResourcesResult> {\n const { aptos } = this.getClients({ network });\n\n const result = await asyncTryOrDefault(\n () => aptos.getAccountResources(params),\n []\n );\n\n return result;\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { RoleType } from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\n\nexport type FetchLedgerInfoParameters = WithNetwork<object>;\n\nexport type FetchLedgerInfoResult = {\n chainId: number;\n epoch: string;\n ledgerVersion: string;\n oldestLedgerVersion: string;\n ledgerTimestamp: string;\n nodeRole: RoleType;\n oldestBlockHeight: string;\n blockHeight: string;\n gitHash?: string;\n};\n\nexport async function fetchLedgerInfo(\n this: AptosJSProClient,\n { network }: FetchLedgerInfoParameters = {}\n): Promise<FetchLedgerInfoResult> {\n const { aptos } = this.getClients({ network });\n\n const result = await aptos.getLedgerInfo();\n\n return {\n chainId: result.chain_id,\n epoch: result.epoch,\n ledgerVersion: result.ledger_version,\n oldestLedgerVersion: result.oldest_ledger_version,\n ledgerTimestamp: result.ledger_timestamp,\n nodeRole: result.node_role,\n oldestBlockHeight: result.oldest_block_height,\n blockHeight: result.block_height,\n gitHash: result.git_hash,\n };\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { AptosJSProClient } from \"../client.js\";\nimport { IndexerNotInitializedError } from \"../errors/clients.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\nimport { TokenData } from \"../types/tokens.js\";\nimport {\n normalizeBaseTokenActivity,\n normalizeTokenData,\n} from \"../utils/normalize.js\";\n\nexport type FetchTokenDataParameters = WithNetwork<{\n /**\n * The token address (NFT) to fetch the token data for.\n */\n address: string;\n}>;\n\nexport type FetchTokenDataResult = TokenData | null;\n\nexport async function fetchTokenData(\n this: AptosJSProClient,\n params: FetchTokenDataParameters\n): Promise<FetchTokenDataResult> {\n const { indexer } = this.getClients({ network: params.network });\n\n if (!indexer) throw new IndexerNotInitializedError();\n\n const result = await indexer.getTokenData({ address: params.address });\n\n if (result.current_token_datas_v2.length === 0) return null;\n\n return {\n ...normalizeTokenData(result.current_token_datas_v2[0]),\n createdActivity: result.created_activity.at(0)\n ? normalizeBaseTokenActivity(result.created_activity[0])\n : undefined,\n acquiredActivity: result.acquired_activity.at(0)\n ? normalizeBaseTokenActivity(result.acquired_activity[0])\n : undefined,\n };\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { AccountAddress, AccountAddressInput } from \"@aptos-labs/ts-sdk\";\nimport { CollectionData } from \"../types/tokens.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\nimport {\n createPaginatedQuery,\n PaginationCursors,\n WithPagination,\n} from \"../utils/pagination.js\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { IndexerNotInitializedError } from \"../errors/index.js\";\nimport {\n GetAccountCollectionsQueryVariables,\n Order_By,\n} from \"../operations/index.js\";\nimport { normalizeCollectionData } from \"../utils/normalize.js\";\n\nexport type FetchAccountCollectionsParameters = WithPagination<\n WithNetwork<{\n /**\n * The address of the account to fetch the collections for.\n */\n address: AccountAddressInput;\n /**\n * Filters for the collection results.\n */\n where?: GetAccountCollectionsQueryVariables[\"where\"];\n /**\n * Conditions for ordering the collection results.\n */\n orderBy?: GetAccountCollectionsQueryVariables[\"order_by\"];\n }>\n>;\n\nexport type FetchAccountCollectionsResult = PaginationCursors & {\n collections: CollectionData[];\n};\n\nexport async function fetchAccountCollections(\n this: AptosJSProClient,\n {\n network,\n limit = 100,\n offset = 0,\n orderBy = [],\n where = [],\n ...params\n }: FetchAccountCollectionsParameters\n): Promise<FetchAccountCollectionsResult> {\n const { indexer } = this.getClients({ network });\n if (!indexer) throw new IndexerNotInitializedError();\n\n return createPaginatedQuery({\n limit,\n offset,\n queryFn: async ({ limit, offset }) => {\n const response = await indexer.getAccountCollections({\n limit,\n offset,\n address: AccountAddress.from(params.address).toStringLong(),\n where,\n order_by: [\n {\n last_transaction_version: Order_By.Desc,\n collection_id: Order_By.Desc,\n },\n ...(Array.isArray(orderBy) ? orderBy : [orderBy]),\n ],\n });\n\n const collections: CollectionData[] = [];\n\n response.current_collection_ownership_v2_view.forEach((collection) => {\n if (!collection.current_collection) return;\n\n collections.push(\n normalizeCollectionData(collection.current_collection)\n );\n });\n\n return {\n hasNextPage:\n response.current_collection_ownership_v2_view.length === limit,\n collections,\n };\n },\n });\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { AptosBaseError } from \"./base.js\";\n\nexport class SenderNotFoundError extends AptosBaseError {\n override name = \"SenderNotFoundError\";\n\n constructor() {\n super(\"No sender found\");\n }\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { Aptos, MoveValue } from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\n\nexport type FetchViewModuleParameters = WithNetwork<\n Parameters<Aptos[\"view\"]>[0]\n>;\n\nexport type FetchViewModuleResult<T extends Array<MoveValue>> = T;\n\nexport async function fetchViewModule<T extends Array<MoveValue>>(\n this: AptosJSProClient,\n params: FetchViewModuleParameters\n): Promise<FetchViewModuleResult<T>> {\n const { aptos } = this.getClients({ network: params.network });\n\n const result = await aptos.view<T>(params);\n\n return result;\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { AccountAddress } from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { FungibleAssetMetadata } from \"../types/fungibleAssets.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\nimport { normalizeFungibleAssetMetadata } from \"../utils/normalize.js\";\n\nexport type FetchFungibleAssetMetadataParameters = WithNetwork<{\n asset: string;\n}>;\n\nexport type FetchFungibleAssetMetadataResult = FungibleAssetMetadata | null;\n\nexport async function fetchFungibleAssetMetadata(\n this: AptosJSProClient,\n { network, ...params }: FetchFungibleAssetMetadataParameters\n): Promise<FetchFungibleAssetMetadataResult> {\n const { aptos } = this.getClients({ network });\n\n const result = await aptos.getFungibleAssetMetadata({\n options: {\n where: {\n asset_type: {\n _eq: params.asset.includes(\"::\")\n ? params.asset\n : AccountAddress.from(params.asset).toStringLong(),\n },\n },\n },\n });\n\n return result.at(0) ? normalizeFungibleAssetMetadata(result[0]) : null;\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { AccountAddress, AccountAddressInput } from \"@aptos-labs/ts-sdk\";\nimport { WithNetwork } from \"../types/parameters.js\";\nimport {\n createPaginatedQuery,\n PaginationCursors,\n WithPagination,\n} from \"../utils/pagination.js\";\nimport { AptosJSProClient } from \"../client.js\";\nimport {\n GetAccountTransactionsQueryVariables,\n Order_By,\n} from \"../operations/index.js\";\nimport { IndexerNotInitializedError } from \"../errors/clients.js\";\nimport { AccountTransaction } from \"../types/transactions.js\";\nimport { normalizeAccountTransaction } from \"../utils/normalize.js\";\n\nexport type FetchAccountTransactionsParameters = WithPagination<\n WithNetwork<{\n /**\n * The address of the account to fetch the transactions for.\n */\n address: AccountAddressInput;\n /**\n * Conditions for ordering the transaction results.\n */\n orderBy?: GetAccountTransactionsQueryVariables[\"order_by\"];\n /**\n * Filters for the transaction results.\n */\n where?: GetAccountTransactionsQueryVariables[\"where\"];\n /**\n * Filters for the fungible asset activities results.\n */\n fungibleAssetActivitiesWhere?: GetAccountTransactionsQueryVariables[\"fungible_asset_activities_where\"];\n /**\n * Filters for the token activities results.\n */\n tokenActivitiesWhere?: GetAccountTransactionsQueryVariables[\"token_activities_v2_where\"];\n /**\n * Conditions for ordering the fungible asset activities results.\n */\n fungibleAssetActivitiesOrderBy?: GetAccountTransactionsQueryVariables[\"fungible_asset_activities_order_by\"];\n /**\n * Conditions for ordering the token activities results.\n */\n tokenActivitiesOrderBy?: GetAccountTransactionsQueryVariables[\"token_activities_v2_order_by\"];\n }>\n>;\n\nexport type FetchAccountTransactionsResult = PaginationCursors & {\n transactions: AccountTransaction[];\n};\n\nexport async function fetchAccountTransactions(\n this: AptosJSProClient,\n {\n network,\n address,\n limit = 100,\n offset = 0,\n orderBy = [],\n where = [],\n fungibleAssetActivitiesWhere = [],\n tokenActivitiesWhere = [],\n fungibleAssetActivitiesOrderBy = [],\n tokenActivitiesOrderBy = [],\n }: FetchAccountTransactionsParameters\n): Promise<FetchAccountTransactionsResult> {\n const { indexer } = this.getClients({ network });\n if (!indexer) throw new IndexerNotInitializedError();\n\n return createPaginatedQuery({\n limit,\n offset,\n queryFn: async ({ limit, offset }) => {\n const response = await indexer.getAccountTransactions({\n address: AccountAddress.from(address).toStringLong(),\n limit,\n offset,\n order_by: [\n {\n transaction_version: Order_By.Desc,\n },\n ...(Array.isArray(orderBy) ? orderBy : [orderBy]),\n ],\n where,\n fungible_asset_activities_where: fungibleAssetActivitiesWhere,\n token_activities_v2_where: tokenActivitiesWhere,\n fungible_asset_activities_order_by: fungibleAssetActivitiesOrderBy,\n token_activities_v2_order_by: tokenActivitiesOrderBy,\n });\n\n return {\n hasNextPage: response.account_transactions.length === limit,\n transactions: response.account_transactions.map(\n normalizeAccountTransaction\n ),\n };\n },\n });\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { AccountAddress, AccountAddressInput } from \"@aptos-labs/ts-sdk\";\nimport { TokenOwnership } from \"../types/index.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\nimport {\n createPaginatedQuery,\n PaginationCursors,\n WithPagination,\n} from \"../utils/pagination.js\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { GetAccountTokenOwnershipsQueryVariables } from \"../operations/index.js\";\nimport { IndexerNotInitializedError } from \"../errors/index.js\";\nimport { normalizeTokenData } from \"../utils/normalize.js\";\n\nexport type FetchAccountTokensParameters = WithPagination<\n WithNetwork<{\n /**\n * The address of the account to fetch the tokens (NFTs) for.\n */\n address: AccountAddressInput;\n /**\n * The ID of the collection to fetch the tokens for.\n */\n collectionId?: string;\n /**\n * Conditions for ordering the token ownership results.\n */\n orderBy?: GetAccountTokenOwnershipsQueryVariables[\"order_by\"];\n /**\n * Filters for the token ownership results.\n */\n where?: GetAccountTokenOwnershipsQueryVariables[\"where\"];\n }>\n>;\n\nexport type FetchAccountTokensResult = PaginationCursors & {\n tokens: TokenOwnership[];\n};\n\nexport async function fetchAccountTokens(\n this: AptosJSProClient,\n {\n network,\n address,\n collectionId,\n limit = 100,\n offset = 0,\n orderBy = [],\n where = [],\n }: FetchAccountTokensParameters\n): Promise<FetchAccountTokensResult> {\n const { indexer } = this.getClients({ network });\n if (!indexer) throw new IndexerNotInitializedError();\n\n return createPaginatedQuery({\n limit,\n offset,\n queryFn: async ({ limit, offset }) => {\n const response = await indexer.getAccountTokenOwnerships({\n address: AccountAddress.from(address).toStringLong(),\n limit,\n offset,\n order_by: orderBy,\n where: [\n ...(collectionId\n ? [\n {\n current_token_data: {\n current_collection: {\n collection_id: { _eq: collectionId },\n },\n },\n },\n ]\n : []),\n ...(Array.isArray(where) ? where : [where]),\n ],\n });\n\n const tokens: TokenOwnership[] = [];\n\n response.current_token_ownerships_v2.forEach((token) => {\n if (\n !token.current_token_data ||\n !token.current_token_data.current_collection\n ) {\n return;\n }\n\n tokens.push({\n ...normalizeTokenData(token.current_token_data),\n amount: token.amount,\n isSoulbound: token.is_soulbound_v2 ?? false,\n ownerAddress: token.owner_address,\n });\n });\n\n return {\n hasNextPage: response.current_token_ownerships_v2.length === limit,\n tokens,\n };\n },\n });\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { Aptos, GetEventsResponse } from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\n\nexport type FetchEventsParameters = WithNetwork<\n Parameters<Aptos[\"getEvents\"]>[0]\n>;\n\nexport type FetchEventsResult = GetEventsResponse;\n\nexport async function fetchEvents(\n this: AptosJSProClient,\n { network, ...params }: FetchEventsParameters = {}\n): Promise<FetchEventsResult> {\n const { aptos } = this.getClients({ network });\n\n const result = await aptos.getEvents(params);\n\n return result;\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { WithNetwork } from \"../types/parameters.js\";\nimport {\n createPaginatedQuery,\n PaginationCursors,\n WithPagination,\n} from \"../utils/pagination.js\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { GetUserTransactionsQueryVariables } from \"../operations/index.js\";\nimport { IndexerNotInitializedError } from \"../errors/clients.js\";\nimport { UserTransaction } from \"../types/transactions.js\";\nimport { normalizeUserTransaction } from \"../utils/normalize.js\";\n\nexport type FetchUserTransactionsParameters = WithNetwork<\n WithPagination<{\n orderBy?: GetUserTransactionsQueryVariables[\"order_by\"];\n where?: GetUserTransactionsQueryVariables[\"where\"];\n }>\n>;\n\nexport type FetchUserTransactionsResult = PaginationCursors & {\n transactions: UserTransaction[];\n};\n\nexport async function fetchUserTransactions(\n this: AptosJSProClient,\n {\n network,\n limit = 100,\n offset = 0,\n orderBy = [],\n where = {},\n }: FetchUserTransactionsParameters = {}\n): Promise<FetchUserTransactionsResult> {\n const { indexer } = this.getClients({ network });\n if (!indexer) throw new IndexerNotInitializedError();\n\n return createPaginatedQuery({\n limit,\n offset,\n queryFn: async ({ limit, offset }) => {\n const response = await indexer.getUserTransactions({\n limit,\n offset,\n order_by: orderBy,\n where,\n });\n\n return {\n hasNextPage: response.user_transactions.length === limit,\n transactions: response.user_transactions.map(normalizeUserTransaction),\n };\n },\n });\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport {\n AccountAddressInput,\n Aptos,\n DEFAULT_TXN_EXP_SEC_FROM_NOW,\n InputGenerateTransactionOptions,\n MultiAgentTransaction,\n SimpleTransaction,\n} from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { SenderNotFoundError } from \"../errors/index.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\n\nexport type BuildSimpleTransactionParameters = WithNetwork<\n Omit<Parameters<Aptos[\"transaction\"][\"build\"][\"simple\"]>[0], \"sender\"> & {\n sender?: AccountAddressInput;\n }\n>;\n\nexport type BuildMultiAgentTransactionParameters = WithNetwork<\n Omit<Parameters<Aptos[\"transaction\"][\"build\"][\"multiAgent\"]>[0], \"sender\"> & {\n sender?: AccountAddressInput;\n }\n>;\n\nexport async function buildTransaction(\n this: AptosJSProClient,\n args: BuildMultiAgentTransactionParameters\n): Promise<MultiAgentTransaction>;\n\nexport async function buildTransaction(\n this: AptosJSProClient,\n args: BuildSimpleTransactionParameters\n): Promise<SimpleTransaction>;\n\nexport async function buildTransaction(\n this: AptosJSProClient,\n args: BuildSimpleTransactionParameters | BuildMultiAgentTransactionParameters\n): Promise<SimpleTransaction | MultiAgentTransaction> {\n const {\n network,\n data,\n options: transactionOptions,\n sender,\n withFeePayer,\n } = args;\n\n const { account, aptos } = this.getClients({ network });\n\n const activeAddress = sender ?? account?.address;\n\n if (!activeAddress) throw new SenderNotFoundError();\n\n const options: InputGenerateTransactionOptions = {\n ...transactionOptions,\n };\n\n // If expiration timestamp is not provided, use the default expiration timestamp\n options.expireTimestamp ??=\n Math.floor(this.getServerTime() / 1000) + DEFAULT_TXN_EXP_SEC_FROM_NOW;\n\n if (\"secondarySignerAddresses\" in args) {\n return aptos.transaction.build.multiAgent({\n data,\n options,\n secondarySignerAddresses: args.secondarySignerAddresses,\n sender: activeAddress,\n withFeePayer,\n });\n }\n\n return aptos.transaction.build.simple({\n data,\n options,\n sender: activeAddress,\n withFeePayer,\n });\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\nimport {\n PendingTransactionResponse,\n SignedTransaction,\n postAptosFullNode,\n MimeType,\n InputSubmitTransactionData,\n generateSignedTransaction,\n AnyRawTransaction,\n} from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\n\nexport type SubmitTransactionWithSignedTransactionParameters = WithNetwork<{\n transaction: SignedTransaction;\n}>;\n\nexport type SubmitTransactionWithRawTransactionParameters =\n WithNetwork<InputSubmitTransactionData>;\n\nexport type SubmitTransactionParameters =\n | SubmitTransactionWithSignedTransactionParameters\n | SubmitTransactionWithRawTransactionParameters;\n\nexport type SubmitTransactionResult = PendingTransactionResponse;\n\nexport async function submitTransaction(\n this: AptosJSProClient,\n { network, transaction, ...params }: SubmitTransactionParameters\n): Promise<SubmitTransactionResult> {\n const { aptos } = this.getClients({ network });\n\n let signedTransaction: Uint8Array;\n if (\"senderAuthenticator\" in params) {\n signedTransaction = generateSignedTransaction({\n ...params,\n transaction: transaction as AnyRawTransaction,\n });\n } else {\n signedTransaction = (transaction as SignedTransaction).bcsToBytes();\n }\n\n const { data } = await postAptosFullNode<\n Uint8Array,\n PendingTransactionResponse\n >({\n aptosConfig: aptos.config,\n body: signedTransaction,\n contentType: MimeType.BCS_SIGNED_TRANSACTION,\n originMethod: \"submitTransaction\",\n path: \"transactions\",\n });\n\n return data;\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\nimport {\n CommittedTransactionResponse,\n Aptos,\n HexInput,\n} from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\n\nexport type WaitForTransactionParameters = WithNetwork<\n Omit<\n Parameters<Aptos[\"transaction\"][\"waitForTransaction\"]>[0],\n \"transactionHash\"\n > & {\n hash: HexInput;\n }\n>;\n\nexport type WaitForTransactionResult = CommittedTransactionResponse;\n\nexport async function waitForTransaction(\n this: AptosJSProClient,\n { network, ...params }: WaitForTransactionParameters\n): Promise<WaitForTransactionResult> {\n const { aptos } = this.getClients({ network });\n\n const result = await aptos.waitForTransaction({\n ...params,\n transactionHash: params.hash,\n });\n\n return result;\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { Aptos, UserTransactionResponse } from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\n\nexport type SimulateSimpleTransactionParameters = WithNetwork<\n Parameters<Aptos[\"transaction\"][\"simulate\"][\"simple\"]>[0]\n>;\n\nexport type SimulateMultiAgentTransactionParameters = WithNetwork<\n Parameters<Aptos[\"transaction\"][\"simulate\"][\"multiAgent\"]>[0]\n>;\n\nexport type SimulateTransactionParameters =\n | SimulateSimpleTransactionParameters\n | SimulateMultiAgentTransactionParameters;\n\nexport type SimulateTransactionResult = UserTransactionResponse;\n\nexport async function simulateTransaction(\n this: AptosJSProClient,\n params: SimulateSimpleTransactionParameters\n): Promise<SimulateTransactionResult>;\n\nexport async function simulateTransaction(\n this: AptosJSProClient,\n params: SimulateMultiAgentTransactionParameters\n): Promise<SimulateTransactionResult>;\n\nexport async function simulateTransaction(\n this: AptosJSProClient,\n params: SimulateTransactionParameters\n): Promise<SimulateTransactionResult> {\n const { aptos } = this.getClients({ network: params.network });\n\n if (\"secondarySignersPublicKeys\" in params) {\n return (await aptos.transaction.simulate.multiAgent(params))[0];\n }\n\n return (await aptos.transaction.simulate.simple(params))[0];\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport {\n Account,\n AccountAuthenticator,\n AnyRawTransaction,\n} from \"@aptos-labs/ts-sdk\";\nimport { WithNetwork } from \"../types/parameters.js\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { SignerNotFoundError } from \"../errors/index.js\";\n\nexport type SignTransactionParameters = WithNetwork<{\n transaction: AnyRawTransaction;\n signer?: Account;\n}>;\n\nexport type SignTransactionResult = {\n authenticator: AccountAuthenticator;\n rawTransaction: Uint8Array;\n};\n\nexport async function signTransaction(\n this: AptosJSProClient,\n { network, ...params }: SignTransactionParameters\n) {\n const { aptos, signer } = this.getClients({ network });\n\n if (!signer) throw new SignerNotFoundError();\n\n return signer.signTransaction({\n aptos,\n transaction: params.transaction,\n signer: params.signer,\n });\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport {\n Account,\n AnyRawTransaction,\n TransactionResponse,\n} from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\nimport { SignerNotFoundError } from \"../errors/clients.js\";\nimport {\n BuildMultiAgentTransactionParameters,\n BuildSimpleTransactionParameters,\n} from \"./buildTransaction.js\";\nimport { FeePayerOrFeePayerAuthenticatorOrNeither } from \"../types/build.js\";\n\nexport type SignAndSubmitTransactionParameters = WithNetwork<\n { signer?: Account } & FeePayerOrFeePayerAuthenticatorOrNeither &\n (\n | { transaction: AnyRawTransaction }\n | BuildSimpleTransactionParameters\n | BuildMultiAgentTransactionParameters\n )\n>;\n\nexport type SignAndSubmitTransactionResult = TransactionResponse;\n\nexport async function signAndSubmitTransaction(\n this: AptosJSProClient,\n params: SignAndSubmitTransactionParameters\n): Promise<SignAndSubmitTransactionResult> {\n const { aptos, signer } = this.getClients({ network: params.network });\n if (!signer) throw new SignerNotFoundError();\n\n let transaction: AnyRawTransaction;\n if (\"data\" in params) {\n if (signer.type === \"adapter\") {\n return await signer.signAndSubmitTransaction({\n aptos,\n payload: params,\n signer: params.signer,\n });\n } else {\n transaction = await this.buildTransaction(params);\n }\n } else {\n transaction = params.transaction;\n }\n\n return signer.signAndSubmitTransaction({\n aptos,\n transaction,\n signer: params.signer,\n });\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { Network } from \"@aptos-labs/ts-sdk\";\n\nexport const getExplorerUrl = ({\n basePath = \"https://explorer.aptoslabs.com\",\n network = Network.MAINNET,\n path = \"\",\n}: {\n basePath?: string;\n network?: Network;\n path?: string;\n}) => {\n const queryParams = new URLSearchParams();\n queryParams.set(\"network\", network);\n return `${basePath}/${path}?${queryParams.toString()}`;\n};\n","/* eslint-disable headers/header-format */\n\n// MIT License\n//\n// Copyright (c) 2023-present weth, LLC\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n\n// The above copyright notice and this permission notice shall be included in all\n// copies or substantial portions of the Software.\n\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n// SOFTWARE.\n\nexport function parseUnits(value: string, decimals: number) {\n let [integer, fraction = \"0\"] = value.split(\".\");\n\n const negative = integer.startsWith(\"-\");\n if (negative) integer = integer.slice(1);\n\n // trim leading zeros.\n fraction = fraction.replace(/(0+)$/, \"\");\n\n // round off if the fraction is larger than the number of decimals.\n if (decimals === 0) {\n if (Math.round(Number(`.${fraction}`)) === 1) {\n integer = `${BigInt(integer) + BigInt(1)}`;\n }\n fraction = \"\";\n } else if (fraction.length > decimals) {\n const [left, unit, right] = [\n fraction.slice(0, decimals - 1),\n fraction.slice(decimals - 1, decimals),\n fraction.slice(decimals),\n ];\n\n const rounded = Math.round(Number(`${unit}.${right}`));\n if (rounded > 9) {\n fraction = `${BigInt(left) + BigInt(1)}0`.padStart(left.length + 1, \"0\");\n } else fraction = `${left}${rounded}`;\n\n if (fraction.length > decimals) {\n fraction = fraction.slice(1);\n integer = `${BigInt(integer) + BigInt(1)}`;\n }\n\n fraction = fraction.slice(0, decimals);\n } else {\n fraction = fraction.padEnd(decimals, \"0\");\n }\n\n return BigInt(`${negative ? \"-\" : \"\"}${integer}${fraction}`);\n}\n\nexport const parseApt = (value: string) => parseUnits(value, 8);\n\nexport const formatUnits = (value: bigint, decimals: number) => {\n let display = value.toString();\n\n const negative = display.startsWith(\"-\");\n if (negative) display = display.slice(1);\n\n display = display.padStart(decimals, \"0\");\n\n // eslint-disable-next-line prefer-const\n let [integer, fraction] = [\n display.slice(0, display.length - decimals),\n display.slice(display.length - decimals),\n ];\n fraction = fraction.replace(/(0+)$/, \"\");\n return `${negative ? \"-\" : \"\"}${integer || \"0\"}${\n fraction ? `.${fraction}` : \"\"\n }`;\n};\n\nexport const formatApt = (value: bigint) => formatUnits(value, 8);\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { Account } from \"@aptos-labs/ts-sdk\";\nimport { AccountInfo, SignerClient } from \"../types\";\n\nexport const convertAptosAccountToAccountInfo = (\n account: Account | undefined\n): AccountInfo | undefined =>\n account\n ? { address: account.accountAddress, publicKey: account.publicKey }\n : undefined;\n\nexport const convertAptosAccountToSigner = (\n account: Account | undefined\n): SignerClient | undefined =>\n account\n ? {\n type: \"custom\",\n signAndSubmitTransaction: async ({ aptos, signer, ...params }) =>\n aptos.signAndSubmitTransaction({\n signer: signer ?? account,\n ...params,\n }),\n signTransaction: async ({ signer, transaction }) => ({\n rawTransaction: transaction.rawTransaction.bcsToBytes(),\n authenticator: (signer ?? account).signTransactionWithAuthenticator(\n transaction\n ),\n }),\n }\n : undefined;\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\nimport {\n AccountAddress,\n AccountAddressInput,\n DeriveScheme,\n} from \"@aptos-labs/ts-sdk\";\nimport { sha3_256 } from \"@noble/hashes/sha3\";\n\n/**\n * Deterministically derives an object address from the source address and\n * an object: sha3_256([source | object addr | 0xFC]).\n *\n * Equivalent of `object::create_user_derived_object_address` in move.\n *\n * @param source - The source address\n * @param object - The object address\n * @returns The derived object address\n */\nexport const createUserDerivedObjectAddress = (\n source: AccountAddressInput,\n object: AccountAddressInput\n): AccountAddress => {\n const sourceBytes = AccountAddress.from(source).bcsToBytes();\n\n const objectBytes = AccountAddress.from(object).bcsToBytes();\n\n const bytes = new Uint8Array([\n ...sourceBytes,\n ...objectBytes,\n DeriveScheme.DeriveObjectAddressFromObject,\n ]);\n\n return new AccountAddress(sha3_256(bytes));\n};\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\nimport { AccountAddress, createObjectAddress } from \"@aptos-labs/ts-sdk\";\nimport { createUserDerivedObjectAddress } from \"./objects.js\";\n\n/**\n * Returns the paired Fungible Asset metadata paired for a given coin type. If the\n * coin type is Aptos Coin, it will return a special address for the metadata.\n *\n * @param coinType - The coin type (e.g. 0x1::aptos_coin::AptosCoin, 0x31::moon_coin::MoonCoin)\n * @returns The paired metadata address for the given coin type\n */\nexport const getPairedMetadata = (coinType: string) =>\n coinType === \"0x1::aptos_coin::AptosCoin\"\n ? AccountAddress.A.toStringLong()\n : createObjectAddress(AccountAddress.A, coinType).toStringLong();\n\n/**\n * Returns the associated fungible asset store for a given metadata and account address.\n *\n * @param metadata - The metadata address (e.g. 0xfa)\n * @param accountAddress - The account address\n * @returns The associated fungible asset store address\n */\nexport const getPrimaryFungibleStore = (\n accountAddress: string,\n metadata: string\n) =>\n createUserDerivedObjectAddress(\n AccountAddress.fromString(accountAddress),\n metadata\n ).toStringLong();\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport {\n AccountAddress,\n AccountAddressInput,\n WriteSetChange,\n WriteSetChangeWriteResource,\n} from \"@aptos-labs/ts-sdk\";\n\nexport function isWriteResourceChange(\n change: WriteSetChange\n): change is WriteSetChangeWriteResource {\n return change.type === \"write_resource\";\n}\n\n/**\n * More of a precaution, but we should normalize all parsed addresses to prevent\n * mismatches related to leading zeros\n * @param address\n */\nexport function normalizeAddress(address: AccountAddressInput) {\n return AccountAddress.from(address).toStringLong();\n}\n\n/**\n * The (creatorAddress, eventStreamCreationNum) pair uniquely identifies an event stream on chain\n * @param creatorAddress\n * @param creationNum\n */\nexport function serializeEventGuid(\n creatorAddress: AccountAddressInput,\n creationNum: string\n) {\n return `${normalizeAddress(creatorAddress)}_${creationNum}`;\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\n/* eslint-disable @typescript-eslint/no-explicit-any */\n/* eslint-disable @typescript-eslint/no-empty-object-type */\n\nimport { Event, WriteSetChange } from \"@aptos-labs/ts-sdk\";\n\nexport abstract class EventParser<Requires, Provides> {\n readonly kind = \"event\" as const;\n\n //! Required to preserve types in subclass\n protected __requires__!: Requires;\n protected __provides__!: Provides;\n\n abstract parse(ctx: Requires & Provides, event: Event): void;\n}\n\nexport abstract class WritesetParser<Requires, Provides> {\n readonly kind = \"writeset\" as const;\n\n //! Required to preserve types in subclass\n protected __requires__!: Requires;\n protected __provides__!: Provides;\n\n abstract parse(ctx: Requires & Provides, change: WriteSetChange): void;\n}\n\nexport type AnyParser = EventParser<any, any> | WritesetParser<any, any>;\n\ntype ParserRequires<T> =\n T extends EventParser<infer R, any>\n ? R\n : T extends WritesetParser<infer R, any>\n ? R\n : never;\n\ntype ParserProvides<T> =\n T extends EventParser<any, infer P>\n ? P\n : T extends WritesetParser<any, infer P>\n ? P\n : never;\n\ntype Merge<A, B> = Omit<A, keyof B> & B;\n\ntype InnerValidateParser<Parser, Context> = Parser extends AnyParser\n ? Context extends ParserRequires<Parser>\n ? Parser\n : {\n __error: \"❌ Missing required context\";\n required: ParserRequires<Parser>;\n provided: Context;\n }\n : never;\n\nexport type ValidateParsers<\n Parsers extends readonly AnyParser[],\n AccumContext = {},\n> = Parsers extends [infer First, ...infer Rest]\n ? InnerValidateParser<First, AccumContext> extends { __error: string }\n ? InnerValidateParser<First, AccumContext>\n : First extends AnyParser\n ? Rest extends readonly AnyParser[]\n ? ValidateParsers<\n Rest,\n Merge<AccumContext, ParserProvides<First>>\n > extends { __error: string }\n ? ValidateParsers<Rest, Merge<AccumContext, ParserProvides<First>>>\n : [\n First,\n ...ValidateParsers<\n Rest,\n Merge<AccumContext, ParserProvides<First>>\n >,\n ]\n : [First]\n : never\n : [];\n\nexport type ContextOfParsers<\n Parsers extends readonly AnyParser[],\n Accum = {},\n> = Parsers extends [infer First, ...infer Rest]\n ? First extends AnyParser\n ? Rest extends readonly AnyParser[]\n ? ContextOfParsers<Rest, Merge<Accum, ParserProvides<First>>>\n : Merge<Accum, ParserProvides<First>>\n : Accum\n : Accum;\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\nimport type { Event } from \"@aptos-labs/ts-sdk\";\nimport { normalizeAddress, serializeEventGuid } from \"../shared\";\nimport { EventParser } from \"../../../types/parsers\";\n\nexport type CoinEventParserRequiredContext = {\n coinEventGuidToCoinType: { [eventGuid: string]: string };\n};\n\nexport type CoinEventParserProvides = {\n coinBalanceChanges: {\n [accountAddress: string]: { [coinType: string]: bigint };\n };\n};\n\nexport class CoinEventParser extends EventParser<\n CoinEventParserRequiredContext,\n CoinEventParserProvides\n> {\n private applyChange(\n context: {\n coinEventGuidToCoinType: { [eventGuid: string]: string };\n coinBalanceChanges: {\n [accountAddress: string]: { [coinType: string]: bigint };\n };\n },\n accountAddress: string,\n amount: bigint,\n opts: { creationNum: string } | { coinType: string }\n ) {\n let coinType: string;\n if (\"creationNum\" in opts) {\n const eventGuid = serializeEventGuid(accountAddress, opts.creationNum);\n if (!context.coinEventGuidToCoinType[eventGuid]) return;\n coinType = context.coinEventGuidToCoinType[eventGuid];\n } else {\n coinType = opts.coinType;\n }\n\n const coinBalanceChanges = context.coinBalanceChanges[accountAddress] ?? {};\n\n if (!coinBalanceChanges[coinType]) {\n coinBalanceChanges[coinType] = amount;\n } else {\n coinBalanceChanges[coinType]! += amount;\n }\n\n context.coinBalanceChanges[accountAddress] = coinBalanceChanges;\n }\n\n override parse(\n ctx: {\n coinEventGuidToCoinType: { [eventGuid: string]: string };\n coinBalanceChanges: {\n [accountAddress: string]: { [coinType: string]: bigint };\n };\n },\n event: Event\n ) {\n switch (event.type) {\n case \"0x1::coin::DepositEvent\": {\n const accountAddress = normalizeAddress(event.guid.account_address);\n this.applyChange(ctx, accountAddress, BigInt(event.data.amount), {\n creationNum: event.guid.creation_number,\n });\n return true;\n }\n case \"0x1::coin::WithdrawEvent\": {\n const accountAddress = normalizeAddress(event.guid.account_address);\n this.applyChange(ctx, accountAddress, -BigInt(event.data.amount), {\n creationNum: event.guid.creation_number,\n });\n return true;\n }\n case \"0x1::coin::CoinDeposit\": {\n const accountAddress = normalizeAddress(event.data.account);\n this.applyChange(ctx, accountAddress, BigInt(event.data.amount), {\n coinType: event.data.coin_type,\n });\n return true;\n }\n case \"0x1::coin::CoinWithdraw\": {\n const accountAddress = normalizeAddress(event.data.account);\n this.applyChange(ctx, accountAddress, -BigInt(event.data.amount), {\n coinType: event.data.coin_type,\n });\n return true;\n }\n default:\n return false;\n }\n }\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\nimport type { WriteSetChange } from \"@aptos-labs/ts-sdk\";\nimport { isWriteResourceChange, serializeEventGuid } from \"../shared\";\nimport { WritesetParser } from \"../../../types/parsers\";\n\n/**\n * Parser for mapping a coin event guid to its coin type.\n * Useful for linking coin events to their coin type and computing the balance change.\n *\n * When a coin store is created on chain, two new event streams are assigned to the owner account\n * for that coin's deposit and withdrawal events respectively.\n *\n * If a coin balance changes, there will be a writeset change associated to the change\n * and by parsing it, we can map the event stream guids to the coin type of the coin store.\n */\nexport class CoinStoreWritesetParser extends WritesetParser<\n object,\n { coinEventGuidToCoinType: { [eventGuid: string]: string } }\n> {\n override parse(\n ctx: object & {\n coinEventGuidToCoinType: { [eventGuid: string]: string };\n },\n change: WriteSetChange\n ): void {\n if (!isWriteResourceChange(change)) return;\n\n const resource = change.data;\n\n const coinType = resource.type.match(\n new RegExp(`^0x1::coin::CoinStore<(.+)>$`)\n )?.[1];\n\n if (!coinType) return;\n\n const coinResourceData = resource.data as {\n coin: { value: string };\n deposit_events: {\n counter: string;\n guid: { id: { addr: string; creation_num: string } };\n };\n frozen: boolean;\n withdraw_events: {\n counter: string;\n guid: { id: { addr: string; creation_num: string } };\n };\n };\n\n const depositEventGuid = serializeEventGuid(\n coinResourceData.deposit_events.guid.id.addr,\n coinResourceData.deposit_events.guid.id.creation_num\n );\n const withdrawEventGuid = serializeEventGuid(\n coinResourceData.withdraw_events.guid.id.addr,\n coinResourceData.withdraw_events.guid.id.creation_num\n );\n\n ctx.coinEventGuidToCoinType[depositEventGuid] = coinType;\n ctx.coinEventGuidToCoinType[withdrawEventGuid] = coinType;\n }\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\nimport type { Event } from \"@aptos-labs/ts-sdk\";\nimport { normalizeAddress } from \"../shared\";\nimport { EventParser } from \"../../../types/parsers\";\n\nexport type FungibleAssetEventParserRequiredContext = {\n fungibleAssetStoreMetadata: { [storeAddress: string]: string };\n objectOwners: { [objectAddress: string]: string };\n};\n\nexport type FungibleAssetEventParserProvides = {\n fungibleAssetBalanceChanges: {\n [accountAddress: string]: { [assetAddress: string]: bigint };\n };\n};\n\nexport class FungibleAssetEventParser extends EventParser<\n FungibleAssetEventParserRequiredContext,\n FungibleAssetEventParserProvides\n> {\n private applyChange(\n context: FungibleAssetEventParserRequiredContext &\n FungibleAssetEventParserProvides,\n storeAddress: string,\n amount: bigint\n ) {\n const ownerAddress = context.objectOwners[storeAddress];\n const assetAddress = context.fungibleAssetStoreMetadata[storeAddress];\n\n /* c8 ignore next 5 */\n if (ownerAddress === undefined || assetAddress === undefined) {\n // This should never really happen, as changing the balance will produce\n // a writeset change including the fungible store's owner and asset.\n return;\n }\n\n const accountAssetChanges =\n context.fungibleAssetBalanceChanges[ownerAddress] ?? {};\n\n if (!accountAssetChanges[assetAddress]) {\n accountAssetChanges[assetAddress] = amount;\n } else {\n accountAssetChanges[assetAddress] += amount;\n }\n\n context.fungibleAssetBalanceChanges[ownerAddress] = accountAssetChanges;\n }\n\n override parse(\n context: FungibleAssetEventParserRequiredContext &\n FungibleAssetEventParserProvides,\n event: Event\n ) {\n switch (event.type) {\n case \"0x1::fungible_asset::Deposit\": {\n this.applyChange(\n context,\n normalizeAddress(event.data.store),\n BigInt(event.data.amount)\n );\n return true;\n }\n case \"0x1::fungible_asset::Withdraw\": {\n this.applyChange(\n context,\n normalizeAddress(event.data.store),\n -BigInt(event.data.amount)\n );\n return true;\n }\n default:\n return false;\n }\n }\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\nimport type { WriteSetChange } from \"@aptos-labs/ts-sdk\";\nimport { isWriteResourceChange, normalizeAddress } from \"../shared\";\nimport { WritesetParser } from \"../../../types/parsers\";\n\n/**\n * Parse changes in fungible stores and populate a map of the store addresses to the contained asset's metadata address.\n * Useful linking fungible store deposits and withdrawals to the contained asset.\n */\nexport class FungibleAssetStoreWritesetParser extends WritesetParser<\n object,\n { fungibleAssetStoreMetadata: { [storeAddress: string]: string } }\n> {\n override parse(\n context: object & {\n fungibleAssetStoreMetadata: { [storeAddress: string]: string };\n },\n change: WriteSetChange\n ) {\n if (\n !isWriteResourceChange(change) ||\n change.data.type !== \"0x1::fungible_asset::FungibleStore\"\n ) {\n return false;\n }\n\n const resource = change.data;\n\n const storeAddress = normalizeAddress(change.address);\n const { metadata } = resource.data as { metadata: { inner: string } };\n context.fungibleAssetStoreMetadata[storeAddress] = normalizeAddress(\n metadata.inner\n );\n\n return true;\n }\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\nimport { WriteSetChange } from \"@aptos-labs/ts-sdk\";\nimport { isWriteResourceChange, normalizeAddress } from \"../shared\";\nimport { WritesetParser } from \"../../../types/parsers\";\n\nexport class ObjectOwnersWritesetParser extends WritesetParser<\n object,\n { objectOwners: { [objectAddress: string]: string } }\n> {\n override parse(\n context: object & { objectOwners: { [objectAddress: string]: string } },\n change: WriteSetChange\n ) {\n if (\n !isWriteResourceChange(change) ||\n change.data.type !== \"0x1::object::ObjectCore\"\n ) {\n return false;\n }\n\n const resource = change.data;\n\n const objectAddress = normalizeAddress(change.address);\n const { owner } = resource.data as { owner: string };\n context.objectOwners[objectAddress] = normalizeAddress(owner);\n\n return true;\n }\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\nimport { UserTransactionResponse } from \"@aptos-labs/ts-sdk\";\nimport {\n AnyParser,\n ContextOfParsers,\n ValidateParsers,\n} from \"../../types/parsers\";\nimport { getPairedMetadata } from \"../fungibleAssets\";\nimport {\n CoinEventParser,\n CoinEventParserProvides,\n} from \"./parsers/CoinEventParser\";\nimport { CoinStoreWritesetParser } from \"./parsers/CoinStoreWritesetParser\";\nimport {\n FungibleAssetEventParser,\n FungibleAssetEventParserProvides,\n} from \"./parsers/FungibleAssetEventParser\";\nimport { FungibleAssetStoreWritesetParser } from \"./parsers/FungibleAssetStoreWritesetParser\";\nimport { ObjectOwnersWritesetParser } from \"./parsers/ObjectOwnersWritesetParser\";\n\nexport default class TransactionParser<\n Parsers extends readonly AnyParser[] = readonly AnyParser[],\n> {\n private readonly defaultContext: ContextOfParsers<Parsers>;\n\n /**\n * Creates a new TransactionParser with the given parsers and initial context. This parser takes a\n * transaction and parses it into a context which can be used to get balance changes\n *\n * @example\n * ```ts\n * const parser = new TransactionParser([\n * new CoinStoreWritesetParser(),\n * new CoinEventParser(),\n * ], {\n * coinEventGuidToCoinType: {},\n * coinBalanceChanges: {},\n * });\n * ```\n *\n * @param parsers - EventParsers and WritesetParsers to use to parse the transaction.\n * @param initial - Initial context to use for parsing.\n */\n constructor(\n public parsers: ValidateParsers<Parsers> & Parsers,\n initial: ContextOfParsers<Parsers>\n ) {\n this.defaultContext = initial;\n }\n\n parseTransaction(transaction: UserTransactionResponse) {\n const context = { ...this.defaultContext };\n\n const writesets = transaction.changes;\n\n writesets.forEach((writeset) => {\n for (const p of this.parsers) {\n if (p.kind === \"writeset\") {\n p.parse(context, writeset);\n }\n }\n });\n\n const events = transaction.events;\n events.forEach((event) => {\n for (const p of this.parsers) {\n if (p.kind === \"event\") {\n p.parse(context, event);\n }\n }\n });\n\n return context;\n }\n\n /**\n * Create a new TransactionParser with default event and writeset parsers.\n *\n * @example\n * ```ts\n * const parser = TransactionParser.create();\n * const context = parser.parseTransaction(transaction);\n * const balanceChanges = TransactionParser.getBalanceChanges(context);\n * ```\n */\n static create() {\n return new TransactionParser(\n [\n new ObjectOwnersWritesetParser(),\n new FungibleAssetStoreWritesetParser(),\n new FungibleAssetEventParser(),\n new CoinStoreWritesetParser(),\n new CoinEventParser(),\n ],\n {\n coinEventGuidToCoinType: {},\n coinBalanceChanges: {},\n fungibleAssetBalanceChanges: {},\n fungibleAssetStoreMetadata: {},\n objectOwners: {},\n }\n );\n }\n\n /**\n * Get the account balance changes for a given context. Assets will default to `CoinType` if\n * it exists for an asset, otherwise it will default to the metadata address of the fungible\n * asset store.\n */\n static getBalanceChanges(\n ctx: FungibleAssetEventParserProvides & CoinEventParserProvides\n ) {\n const balanceChanges: {\n [address: string]: {\n [asset: string]: {\n delta: bigint;\n coinType: string | undefined;\n faAddress: string;\n };\n };\n } = {};\n\n Object.entries(ctx.coinBalanceChanges).forEach(([address, changes]) =>\n Object.entries(changes).forEach(([coinType, delta]) => {\n if (!balanceChanges[address]) balanceChanges[address] = {};\n balanceChanges[address][coinType] = {\n delta,\n coinType,\n faAddress: getPairedMetadata(coinType),\n };\n })\n );\n\n Object.entries(ctx.fungibleAssetBalanceChanges).forEach(\n ([address, changes]) =>\n Object.entries(changes).forEach(([faAddress, delta]) => {\n // If the address doesn't have a balance change already, create one.\n if (!balanceChanges[address]) {\n return (balanceChanges[address] = {\n [faAddress]: {\n delta,\n faAddress,\n coinType: undefined,\n },\n });\n }\n\n // If the address already has a balance change for this fungible asset, add the delta to it.\n const pairedCoinBalanceChange = Object.entries(\n balanceChanges[address]\n ).find(([, change]) => change.faAddress === faAddress);\n\n if (pairedCoinBalanceChange) {\n const [coinType, change] = pairedCoinBalanceChange;\n balanceChanges[address][coinType] = {\n ...change,\n delta: change.delta + delta,\n };\n } else {\n balanceChanges[address][faAddress] = {\n delta,\n faAddress,\n coinType: undefined,\n };\n }\n })\n );\n\n return balanceChanges;\n }\n}\n"],"mappings":"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","names":["index_exports","__export","Account_Transactions_Select_Column","Address_Events_Summary_Select_Column","Address_Version_From_Events_Select_Column","Address_Version_From_Move_Resources_Select_Column","AptosBaseError","AptosJSProClient","AptosName","Auth_Key_Account_Addresses_Select_Column","Block_Metadata_Transactions_Select_Column","CoinEventParser","CoinStoreWritesetParser","Coin_Activities_Select_Column","Coin_Activities_Select_Column_Coin_Activities_Aggregate_Bool_Exp_Bool_And_Arguments_Columns","Coin_Activities_Select_Column_Coin_Activities_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns","Coin_Balances_Select_Column","Coin_Infos_Select_Column","Coin_Supply_Select_Column","Collection_Datas_Select_Column","Current_Ans_Lookup_Select_Column","Current_Ans_Lookup_V2_Select_Column","Current_Aptos_Names_Select_Column","Current_Aptos_Names_Select_Column_Current_Aptos_Names_Aggregate_Bool_Exp_Bool_And_Arguments_Columns","Current_Aptos_Names_Select_Column_Current_Aptos_Names_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns","Current_Coin_Balances_Select_Column","Current_Collection_Datas_Select_Column","Current_Collection_Ownership_V2_View_Select_Column","Current_Collections_V2_Select_Column","Current_Delegated_Staking_Pool_Balances_Select_Column","Current_Delegated_Voter_Select_Column","Current_Delegator_Balances_Select_Column","Current_Fungible_Asset_Balances_Select_Column","Current_Objects_Select_Column","Current_Staking_Pool_Voter_Select_Column","Current_Table_Items_Select_Column","Current_Token_Datas_Select_Column","Current_Token_Datas_V2_Select_Column","Current_Token_Ownerships_Select_Column","Current_Token_Ownerships_V2_Select_Column","Current_Token_Ownerships_V2_Select_Column_Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_And_Arguments_Columns","Current_Token_Ownerships_V2_Select_Column_Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns","Current_Token_Pending_Claims_Select_Column","Current_Token_Royalty_V1_Select_Column","Cursor_Ordering","Delegated_Staking_Activities_Select_Column","Delegated_Staking_Pool_Balances_Select_Column","Delegated_Staking_Pools_Select_Column","Delegator_Distinct_Pool_Select_Column","Events_Select_Column","FungibleAssetEventParser","FungibleAssetStoreWritesetParser","Fungible_Asset_Activities_Select_Column","Fungible_Asset_Metadata_Select_Column","IndexerNotInitializedError","Indexer_Status_Select_Column","Ledger_Infos_Select_Column","Move_Resources_Select_Column","Nft_Metadata_Crawler_Parsed_Asset_Uris_Select_Column","Num_Active_Delegator_Per_Pool_Select_Column","ObjectOwnersWritesetParser","Order_By","Processor_Status_Select_Column","Proposal_Votes_Select_Column","Public_Key_Auth_Keys_Select_Column","SenderNotFoundError","Signatures_Select_Column","SignerNotFoundError","Table_Items_Select_Column","Table_Metadatas_Select_Column","Token_Activities_Select_Column","Token_Activities_V2_Select_Column","Token_Activities_V2_Select_Column_Token_Activities_V2_Aggregate_Bool_Exp_Bool_And_Arguments_Columns","Token_Activities_V2_Select_Column_Token_Activities_V2_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns","Token_Datas_Select_Column","Token_Ownerships_Select_Column","Tokens_Select_Column","TransactionParser","User_Transactions_Select_Column","buildTransaction","convertAptosAccountToAccountInfo","convertAptosAccountToSigner","createIndexerClient","createUserDerivedObjectAddress","fetchAccountCoins","fetchAccountCollections","fetchAccountTokens","fetchAccountTransactions","fetchAddressFromName","fetchAptBalance","fetchBalance","fetchEstimatedGasPrice","fetchEvents","fetchFungibleAssetMetadata","fetchLedgerInfo","fetchNameFromAddress","fetchProcessorStatus","fetchResourceType","fetchResources","fetchTokenData","fetchTransaction","fetchUserTransactions","fetchViewModule","formatApt","formatUnits","getClients","getExplorerUrl","getPairedMetadata","getPrimaryFungibleStore","parseApt","parseUnits","signAndSubmitTransaction","signTransaction","simulateTransaction","submitTransaction","waitForTransaction","__toCommonJS","import_middleware","import_vanilla","import_ts_sdk","import_graphql_request","import_graphql_tag","CollectionDataFieldsFragmentDoc","TokenDataFieldsFragmentDoc","TokenOwnershipFieldsFragmentDoc","CollectionOwnershipFragmentDoc","PrimaryAptosNameFragmentDoc","FungibleAssetMetadataFieldsFragmentDoc","FungibleAssetActivityFragmentDoc","BaseTokenActivityFragmentDoc","TokenActivityFragmentDoc","DelegatedStakingActivityFragmentDoc","UserTransactionFragmentDoc","AccountTransactionFragmentDoc","FungibleAssetBalanceFieldsFragmentDoc","GetAccountTokensTotalDocument","GetAccountTokenOwnershipsDocument","GetCurrentTokenDataDocument","GetAccountCollectionsDocument","GetTokenDataDocument","GetActivitiesAggregateDocument","GetTokenActivitiesDocument","GetTokenAcquisitionActivityDocument","GetAccountTransactionsDocument","GetUserTransactionsDocument","GetFungibleAssetMetadataDocument","GetFungibleAssetBalancesDocument","GetDelegatedStakingRoyaltiesDocument","GetDelegatedStakingDocument","GetDelegationPoolsDocument","GetNumberOfDelegatorsDocument","defaultWrapper","action","_operationName","_operationType","_variables","getSdk","client","withWrapper","variables","requestHeaders","signal","wrappedRequestHeaders","Account_Transactions_Select_Column","Address_Events_Summary_Select_Column","Address_Version_From_Events_Select_Column","Address_Version_From_Move_Resources_Select_Column","Auth_Key_Account_Addresses_Select_Column","Block_Metadata_Transactions_Select_Column","Coin_Activities_Select_Column","Coin_Activities_Select_Column_Coin_Activities_Aggregate_Bool_Exp_Bool_And_Arguments_Columns","Coin_Activities_Select_Column_Coin_Activities_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns","Coin_Balances_Select_Column","Coin_Infos_Select_Column","Coin_Supply_Select_Column","Collection_Datas_Select_Column","Current_Ans_Lookup_Select_Column","Current_Ans_Lookup_V2_Select_Column","Current_Aptos_Names_Select_Column","Current_Aptos_Names_Select_Column_Current_Aptos_Names_Aggregate_Bool_Exp_Bool_And_Arguments_Columns","Current_Aptos_Names_Select_Column_Current_Aptos_Names_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns","Current_Coin_Balances_Select_Column","Current_Collection_Datas_Select_Column","Current_Collection_Ownership_V2_View_Select_Column","Current_Collections_V2_Select_Column","Current_Delegated_Staking_Pool_Balances_Select_Column","Current_Delegated_Voter_Select_Column","Current_Delegator_Balances_Select_Column","Current_Fungible_Asset_Balances_Select_Column","Current_Objects_Select_Column","Current_Staking_Pool_Voter_Select_Column","Current_Table_Items_Select_Column","Current_Token_Datas_Select_Column","Current_Token_Datas_V2_Select_Column","Current_Token_Ownerships_Select_Column","Current_Token_Ownerships_V2_Select_Column","Current_Token_Ownerships_V2_Select_Column_Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_And_Arguments_Columns","Current_Token_Ownerships_V2_Select_Column_Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns","Current_Token_Pending_Claims_Select_Column","Current_Token_Royalty_V1_Select_Column","Cursor_Ordering","Delegated_Staking_Activities_Select_Column","Delegated_Staking_Pool_Balances_Select_Column","Delegated_Staking_Pools_Select_Column","Delegator_Distinct_Pool_Select_Column","Events_Select_Column","Fungible_Asset_Activities_Select_Column","Fungible_Asset_Metadata_Select_Column","Indexer_Status_Select_Column","Ledger_Infos_Select_Column","Move_Resources_Select_Column","Nft_Metadata_Crawler_Parsed_Asset_Uris_Select_Column","Num_Active_Delegator_Per_Pool_Select_Column","Order_By","Processor_Status_Select_Column","Proposal_Votes_Select_Column","Public_Key_Auth_Keys_Select_Column","Signatures_Select_Column","Table_Items_Select_Column","Table_Metadatas_Select_Column","Token_Activities_Select_Column","Token_Activities_V2_Select_Column","Token_Activities_V2_Select_Column_Token_Activities_V2_Aggregate_Bool_Exp_Bool_And_Arguments_Columns","Token_Activities_V2_Select_Column_Token_Activities_V2_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns","Token_Datas_Select_Column","Token_Ownerships_Select_Column","Tokens_Select_Column","User_Transactions_Select_Column","createIndexerClient","endpoint","options","graphqlClient","getSdk","import_ts_sdk","createPaginatedQuery","limit","offset","queryFn","result","hasNextPage","hasPrevPage","data","nextCursor","prevCursor","AptosBaseError","shortMessage","options","IndexerNotInitializedError","AptosBaseError","SignerNotFoundError","_domain","_subdomain","AptosName","domain","subdomain","__privateAdd","normalized","regex","match","parsedSubdomain","parsedDomain","__privateSet","__privateGet","APTOS_NAMES_ENDPOINT","fixBadAptosUri","uri","match","APTOS_NAMES_ENDPOINT","normalizePrimaryAptosName","aptosName","AptosName","normalizeFungibleAssetMetadata","metadata","normalizeFungibleAssetBalances","balances","balance","normalizeCollectionData","collectionData","normalizeTokenData","tokenData","fixedUri","fixBadAptosUri","normalizeCollectionData","normalizeBaseTokenActivity","activity","normalizeAccountTransaction","transaction","fungibleAssetActivities","tokenActivities","delegatedStakingActivities","e","normalizeFungibleAssetActivity","normalizeTokenActivity","normalizeDelegatedStakingActivity","normalizePrimaryAptosName","normalizeFungibleAssetMetadata","normalizeUserTransaction","fetchAccountCoins","address","network","limit","offset","orderBy","where","indexer","IndexerNotInitializedError","createPaginatedQuery","response","balances","e","normalizeFungibleAssetBalances","getClients","selectedNetwork","aptos","indexer","import_ts_sdk","fetchAptBalance","address","network","aptos","amount","import_ts_sdk","fetchBalance","address","asset","network","aptos","isCoinType","amount","fetchProcessorStatus","network","processor","aptos","result","import_ts_sdk","asyncTryOrDefault","fn","defaultValue","fetchAddressFromName","network","name","aptos","address","asyncTryOrDefault","fetchNameFromAddress","network","address","aptos","name","asyncTryOrDefault","AptosName","fetchEstimatedGasPrice","network","aptos","result","fetchTransaction","network","params","aptos","import_ts_sdk","fetchResourceType","network","accountAddress","params","aptos","fetchResources","network","params","aptos","asyncTryOrDefault","fetchLedgerInfo","network","aptos","result","fetchTokenData","params","indexer","IndexerNotInitializedError","result","normalizeTokenData","normalizeBaseTokenActivity","import_ts_sdk","SenderNotFoundError","AptosBaseError","fetchAccountCollections","network","limit","offset","orderBy","where","params","indexer","IndexerNotInitializedError","createPaginatedQuery","response","collections","collection","normalizeCollectionData","fetchViewModule","params","aptos","import_ts_sdk","fetchFungibleAssetMetadata","network","params","aptos","result","normalizeFungibleAssetMetadata","import_ts_sdk","fetchAccountTransactions","network","address","limit","offset","orderBy","where","fungibleAssetActivitiesWhere","tokenActivitiesWhere","fungibleAssetActivitiesOrderBy","tokenActivitiesOrderBy","indexer","IndexerNotInitializedError","createPaginatedQuery","response","normalizeAccountTransaction","import_ts_sdk","fetchAccountTokens","network","address","collectionId","limit","offset","orderBy","where","indexer","IndexerNotInitializedError","createPaginatedQuery","response","tokens","token","normalizeTokenData","fetchEvents","network","params","aptos","fetchUserTransactions","network","limit","offset","orderBy","where","indexer","IndexerNotInitializedError","createPaginatedQuery","response","normalizeUserTransaction","import_ts_sdk","buildTransaction","args","network","data","transactionOptions","sender","withFeePayer","account","aptos","activeAddress","SenderNotFoundError","options","import_ts_sdk","submitTransaction","network","transaction","params","aptos","signedTransaction","data","waitForTransaction","network","params","aptos","simulateTransaction","params","aptos","signTransaction","network","params","aptos","signer","SignerNotFoundError","signAndSubmitTransaction","params","aptos","signer","SignerNotFoundError","transaction","_store","_aptos","_indexer","AptosJSProClient","params","__privateAdd","account","__privateGet","network","signer","config","callback","state","clientConfig","networkConfig","userProvidedConfig","apiKey","aptosConfig","indexerUrl","userProvidedOptions","authHeaders","options","createIndexerClient","__privateSet","getClients","fetchAccountTransactions","fetchAccountCollections","fetchAccountCoins","fetchAccountTokens","fetchTransaction","fetchResources","fetchResourceType","fetchProcessorStatus","fetchTokenData","fetchFungibleAssetMetadata","fetchLedgerInfo","fetchAddressFromName","fetchNameFromAddress","fetchAptBalance","fetchBalance","fetchEstimatedGasPrice","fetchViewModule","fetchEvents","fetchUserTransactions","submitTransaction","waitForTransaction","simulateTransaction","signTransaction","signAndSubmitTransaction","buildTransaction","import_ts_sdk","getExplorerUrl","basePath","network","path","queryParams","parseUnits","value","decimals","integer","fraction","negative","left","unit","right","rounded","parseApt","formatUnits","display","formatApt","convertAptosAccountToAccountInfo","account","convertAptosAccountToSigner","aptos","signer","params","transaction","import_ts_sdk","import_sha3","createUserDerivedObjectAddress","source","object","sourceBytes","objectBytes","bytes","import_ts_sdk","getPairedMetadata","coinType","getPrimaryFungibleStore","accountAddress","metadata","createUserDerivedObjectAddress","import_ts_sdk","isWriteResourceChange","change","normalizeAddress","address","serializeEventGuid","creatorAddress","creationNum","EventParser","WritesetParser","CoinEventParser","EventParser","context","accountAddress","amount","opts","coinType","eventGuid","serializeEventGuid","coinBalanceChanges","ctx","event","normalizeAddress","CoinStoreWritesetParser","WritesetParser","ctx","change","isWriteResourceChange","resource","coinType","coinResourceData","depositEventGuid","serializeEventGuid","withdrawEventGuid","FungibleAssetEventParser","EventParser","context","storeAddress","amount","ownerAddress","assetAddress","accountAssetChanges","event","normalizeAddress","FungibleAssetStoreWritesetParser","WritesetParser","context","change","isWriteResourceChange","resource","storeAddress","normalizeAddress","metadata","ObjectOwnersWritesetParser","WritesetParser","context","change","isWriteResourceChange","resource","objectAddress","normalizeAddress","owner","TransactionParser","_TransactionParser","parsers","initial","transaction","context","writeset","p","event","ObjectOwnersWritesetParser","FungibleAssetStoreWritesetParser","FungibleAssetEventParser","CoinStoreWritesetParser","CoinEventParser","ctx","balanceChanges","address","changes","coinType","delta","getPairedMetadata","faAddress","pairedCoinBalanceChange","change"]}
|
|
1
|
+
{"version":3,"sources":["../src/index.ts","../src/client.ts","../src/operations/index.ts","../src/operations/generated/sdk.ts","../src/operations/generated/types.ts","../src/queries/fetchAccountCoins.ts","../src/utils/pagination.ts","../src/errors/base.ts","../src/errors/clients.ts","../src/utils/names.ts","../src/constants/endpoints.ts","../src/utils/tokens.ts","../src/utils/normalize.ts","../src/queries/getClients.ts","../src/queries/fetchAptBalance.ts","../src/queries/fetchBalance.ts","../src/queries/fetchProcessorStatus.ts","../src/queries/fetchAddressFromName.ts","../src/utils/lib.ts","../src/queries/fetchNameFromAddress.ts","../src/queries/fetchEstimatedGasPrice.ts","../src/queries/fetchTransaction.ts","../src/queries/fetchResourceType.ts","../src/queries/fetchResources.ts","../src/queries/fetchLedgerInfo.ts","../src/queries/fetchTokenData.ts","../src/queries/fetchAccountCollections.ts","../src/errors/transactions.ts","../src/queries/fetchViewModule.ts","../src/queries/fetchFungibleAssetMetadata.ts","../src/queries/fetchAccountTransactions.ts","../src/queries/fetchAccountTokens.ts","../src/queries/fetchUserTransactions.ts","../src/mutations/buildTransaction.ts","../src/mutations/submitTransaction.ts","../src/mutations/waitForTransaction.ts","../src/mutations/simulateTransaction.ts","../src/mutations/signTransaction.ts","../src/mutations/signAndSubmitTransaction.ts","../src/utils/explorer.ts","../src/utils/units.ts","../src/utils/convert.ts","../src/utils/objects.ts","../src/utils/fungibleAssets.ts","../src/utils/transactions/shared.ts","../src/types/parsers.ts","../src/utils/transactions/parsers/CoinEventParser.ts","../src/utils/transactions/parsers/CoinStoreWritesetParser.ts","../src/utils/transactions/parsers/FungibleAssetEventParser.ts","../src/utils/transactions/parsers/FungibleAssetStoreWritesetParser.ts","../src/utils/transactions/parsers/ObjectOwnersWritesetParser.ts","../src/utils/transactions/TransactionParser.ts"],"sourcesContent":["// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nexport * from \"./client.js\";\nexport * from \"./operations/index.js\";\nexport * from \"./types/index.js\";\nexport * from \"./queries/index.js\";\nexport * from \"./utils/index.js\";\nexport * from \"./errors/index.js\";\nexport * from \"./mutations/index.js\";","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { subscribeWithSelector } from \"zustand/middleware\";\nimport { createStore, Mutate, StoreApi } from \"zustand/vanilla\";\nimport {\n Aptos,\n AptosApiType,\n AptosConfig,\n AptosSettings,\n Network,\n} from \"@aptos-labs/ts-sdk\";\nimport { GraphQLClient } from \"graphql-request\";\nimport { Sdk, createIndexerClient } from \"./operations/index.js\";\nimport { AccountInfo, NetworkInfo, SignerClient } from \"./types/index.js\";\nimport {\n getClients,\n fetchAccountCoins,\n fetchAptBalance,\n fetchBalance,\n fetchProcessorStatus,\n fetchAddressFromName,\n fetchNameFromAddress,\n fetchEstimatedGasPrice,\n fetchTransaction,\n fetchResources,\n fetchResourceType,\n fetchTokenData,\n fetchFungibleAssetMetadata,\n fetchAccountCollections,\n fetchViewModule,\n fetchLedgerInfo,\n fetchAccountTransactions,\n fetchAccountTokens,\n fetchUserTransactions,\n} from \"./queries/index.js\";\nimport {\n buildTransaction,\n signAndSubmitTransaction,\n signTransaction,\n simulateTransaction,\n submitTransaction,\n waitForTransaction,\n} from \"./mutations/index.js\";\n\ntype IndexerClientOptions = ConstructorParameters<typeof GraphQLClient>[1];\n\nexport type ClientConfigs = {\n /**\n * This will be included as `Authorization: Bearer <apiKey>` in all requests to Aptos\n * APIs. For the Aptos client this means settings AptosConfig.clientConfig.API_KEY.\n * For the indexer client, we provide a custom header.\n *\n * This argument takes precedence over the relevant argument in the configs for\n * `aptos` and `indexerClient`.\n *\n * It is okay to accept a single argument here because it is standard to use the same\n * API key for both APIs (node and indexer APIs).\n */\n apiKey?: { [network: string | Network]: string | undefined } | string;\n /**\n * Will override any Network settings if provided in this config.\n */\n aptos?: { config: AptosSettings };\n indexerClient?: { options: IndexerClientOptions };\n /**\n * A function that returns the current server time in milliseconds.\n *\n * @default Date.now\n * @returns The current server time in milliseconds\n */\n serverTime?: () => number;\n};\n\nexport type AptosJSProClientParameters = {\n account?: AccountInfo;\n config?: ClientConfigs;\n network: NetworkInfo;\n signer?: SignerClient;\n};\n\nexport type AptosJSProClientState = {\n account?: AccountInfo;\n config?: ClientConfigs;\n network: NetworkInfo;\n signer?: SignerClient;\n};\n\nexport class AptosJSProClient {\n #store: Mutate<\n StoreApi<AptosJSProClientState>,\n [[\"zustand/subscribeWithSelector\", never]]\n >;\n\n #aptos: Aptos;\n\n #indexer: Sdk | undefined;\n\n constructor(params: AptosJSProClientParameters) {\n this.#store = createStore<\n AptosJSProClientState,\n [[\"zustand/subscribeWithSelector\", never]]\n >(\n subscribeWithSelector(\n (): AptosJSProClientState => ({\n account: params.account,\n config: params.config,\n network: params.network,\n signer: params.signer,\n })\n )\n );\n this.#aptos = this.createAptos();\n this.#indexer = this.createIndexer();\n }\n\n get state() {\n return this.#store.getState();\n }\n\n get store() {\n return this.#store;\n }\n\n get signer() {\n return this.state.signer;\n }\n\n get account() {\n return this.state.account;\n }\n\n get network() {\n return this.state.network;\n }\n\n get aptos() {\n return this.#aptos;\n }\n\n get indexer() {\n return this.#indexer;\n }\n\n getServerTime = () => (this.state.config?.serverTime ?? Date.now)();\n\n getServerDate = () => new Date(this.getServerTime());\n\n setAccount = (account: AccountInfo | undefined) => {\n this.#store.setState({ ...this.state, account }, true);\n };\n\n setNetwork = (network: NetworkInfo) => {\n this.#store.setState({ ...this.state, network }, true);\n this.refreshClients();\n };\n\n setSigner = (signer: SignerClient | undefined) => {\n this.#store.setState({ ...this.state, signer }, true);\n };\n\n setConfig = (config: ClientConfigs) => {\n this.#store.setState({ ...this.state, config }, true);\n this.refreshClients();\n };\n\n onAccountChange = (callback: (account?: AccountInfo) => void) =>\n this.#store.subscribe(\n (state) => state.account,\n (account) => callback(account)\n );\n\n onNetworkChange = (callback: (network: NetworkInfo) => void) =>\n this.#store.subscribe(\n (state) => state.network,\n (network) => callback(network)\n );\n\n onSignerChange = (callback: (signer?: SignerClient) => void) =>\n this.#store.subscribe(\n (state) => state.signer,\n (signer) => callback(signer)\n );\n\n onConfigChange = (callback: (config?: ClientConfigs) => void) =>\n this.#store.subscribe(\n (state) => state.config,\n (config) => callback(config)\n );\n\n onChange = (callback: (state: AptosJSProClientState) => void) =>\n this.#store.subscribe((state) => callback(state));\n\n createNetworkConfig = (\n network: NetworkInfo = this.state.network\n ): AptosSettings => {\n if (network.network === Network.CUSTOM) {\n return {\n network: network.network,\n fullnode: network.nodeUrl,\n indexer: network.indexerUrl,\n faucet: network.faucetUrl,\n prover: network.proverUrl,\n pepper: network.pepperUrl,\n };\n }\n return network;\n };\n\n /**\n * To support V1 networks, we are case insensitive when matching the network name.\n *\n * @returns An Aptos instance\n */\n createAptos = (\n clientConfig?: AptosSettings,\n network: NetworkInfo = this.state.network\n ) => {\n const { state } = this;\n\n const networkConfig = this.createNetworkConfig(network);\n\n const userProvidedConfig = state.config?.aptos?.config ?? {};\n\n const apiKey =\n typeof state.config?.apiKey === \"string\"\n ? state.config?.apiKey\n : state.config?.apiKey?.[network.network];\n\n // Deep merge clientConfig over userProvidedConfig\n // 1. Add default networks config\n // 2. Add default state config and API_KEY\n // 3. Add clientConfig (if provided) which can\n // override the state config, API_KEY, or networks\n const aptosConfig = new AptosConfig({\n ...networkConfig,\n ...userProvidedConfig,\n ...clientConfig,\n clientConfig: {\n ...userProvidedConfig.clientConfig,\n API_KEY: apiKey,\n ...clientConfig?.clientConfig,\n },\n });\n\n return new Aptos(aptosConfig);\n };\n\n createIndexer = (\n clientConfig?: AptosSettings,\n network: NetworkInfo = this.state.network\n ): Sdk | undefined => {\n let indexerUrl: string | undefined;\n try {\n indexerUrl = this.createAptos(clientConfig, network).config.getRequestUrl(\n AptosApiType.INDEXER\n );\n } catch {\n /* empty */\n }\n\n if (indexerUrl === undefined) return undefined;\n\n const apiKey =\n typeof this.state.config?.apiKey === \"string\"\n ? this.state.config?.apiKey\n : this.state.config?.apiKey?.[network.network];\n\n const userProvidedOptions = this.state.config?.indexerClient?.options ?? {};\n const authHeaders: Record<string, string> = apiKey\n ? { Authorization: `Bearer ${apiKey}` }\n : {};\n const options = {\n ...userProvidedOptions,\n headers: {\n ...userProvidedOptions.headers,\n ...authHeaders,\n },\n };\n return createIndexerClient(indexerUrl, options);\n };\n\n private refreshClients = () => {\n this.#aptos = this.createAptos();\n this.#indexer = this.createIndexer();\n };\n\n //* Client Queries\n\n getClients = getClients;\n\n fetchAccountTransactions = fetchAccountTransactions;\n\n fetchAccountCollections = fetchAccountCollections;\n\n fetchAccountCoins = fetchAccountCoins;\n\n fetchAccountTokens = fetchAccountTokens;\n\n fetchTransaction = fetchTransaction;\n\n fetchResources = fetchResources;\n\n fetchResourceType = fetchResourceType;\n\n fetchProcessorStatus = fetchProcessorStatus;\n\n fetchTokenData = fetchTokenData;\n\n fetchFungibleAssetMetadata = fetchFungibleAssetMetadata;\n\n fetchLedgerInfo = fetchLedgerInfo;\n\n fetchAddressFromName = fetchAddressFromName;\n\n fetchNameFromAddress = fetchNameFromAddress;\n\n fetchAptBalance = fetchAptBalance;\n\n fetchBalance = fetchBalance;\n\n fetchEstimatedGasPrice = fetchEstimatedGasPrice;\n\n fetchViewModule = fetchViewModule;\n\n fetchUserTransactions = fetchUserTransactions;\n\n //* Client Mutations\n\n submitTransaction = submitTransaction;\n\n waitForTransaction = waitForTransaction;\n\n simulateTransaction = simulateTransaction;\n\n signTransaction = signTransaction;\n\n signAndSubmitTransaction = signAndSubmitTransaction;\n\n buildTransaction = buildTransaction;\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\nimport { GraphQLClient } from \"graphql-request\";\nimport { getSdk } from \"./generated/sdk.js\";\n\nexport function createIndexerClient(\n endpoint: string,\n options?: ConstructorParameters<typeof GraphQLClient>[1]\n) {\n const graphqlClient = new GraphQLClient(endpoint, options);\n return getSdk(graphqlClient);\n}\n\nexport * from \"./generated/operations.js\";\nexport * from \"./generated/types.js\";\n\nexport type { Sdk } from \"./generated/sdk.js\";\n","import * as Types from './operations.js';\n\nimport { GraphQLClient, RequestOptions } from 'graphql-request';\nimport { gql } from 'graphql-tag';\ntype GraphQLClientRequestHeaders = RequestOptions['requestHeaders'];\nexport const CollectionDataFieldsFragmentDoc = gql`\n fragment CollectionDataFields on current_collections_v2 {\n uri\n max_supply\n description\n collection_name\n collection_id\n creator_address\n cdn_asset_uris {\n cdn_image_uri\n }\n}\n `;\nexport const TokenDataFieldsFragmentDoc = gql`\n fragment TokenDataFields on current_token_datas_v2 {\n current_collection {\n ...CollectionDataFields\n }\n cdn_asset_uris {\n cdn_image_uri\n }\n last_transaction_timestamp\n last_transaction_version\n token_properties\n token_standard\n is_fungible_v2\n token_data_id\n description\n token_name\n token_uri\n}\n ${CollectionDataFieldsFragmentDoc}`;\nexport const TokenOwnershipFieldsFragmentDoc = gql`\n fragment TokenOwnershipFields on current_token_ownerships_v2 {\n current_token_data {\n ...TokenDataFields\n }\n is_soulbound_v2\n owner_address\n amount\n}\n ${TokenDataFieldsFragmentDoc}`;\nexport const CollectionOwnershipFragmentDoc = gql`\n fragment CollectionOwnership on current_collection_ownership_v2_view {\n distinct_tokens\n single_token_uri\n current_collection {\n ...CollectionDataFields\n }\n}\n ${CollectionDataFieldsFragmentDoc}`;\nexport const PrimaryAptosNameFragmentDoc = gql`\n fragment PrimaryAptosName on current_aptos_names {\n domain\n subdomain\n}\n `;\nexport const FungibleAssetMetadataFieldsFragmentDoc = gql`\n fragment FungibleAssetMetadataFields on fungible_asset_metadata {\n asset_type\n creator_address\n decimals\n icon_uri\n project_uri\n name\n symbol\n token_standard\n supply_v2\n maximum_v2\n}\n `;\nexport const FungibleAssetActivityFragmentDoc = gql`\n fragment FungibleAssetActivity on fungible_asset_activities {\n owner_primary_aptos_name: owner_aptos_names(\n where: {is_primary: {_eq: true}, is_active: {_eq: true}}\n ) {\n ...PrimaryAptosName\n }\n type\n amount\n block_height\n asset_type\n metadata {\n ...FungibleAssetMetadataFields\n }\n entry_function_id_str\n owner_address\n event_index\n is_gas_fee\n gas_fee_payer_address\n is_transaction_success\n transaction_timestamp\n transaction_version\n}\n ${PrimaryAptosNameFragmentDoc}\n${FungibleAssetMetadataFieldsFragmentDoc}`;\nexport const BaseTokenActivityFragmentDoc = gql`\n fragment BaseTokenActivity on token_activities_v2 {\n from_address\n to_address\n transaction_version\n transaction_timestamp\n type\n event_account_address\n event_index\n}\n `;\nexport const TokenActivityFragmentDoc = gql`\n fragment TokenActivity on token_activities_v2 {\n ...BaseTokenActivity\n primary_aptos_name_from: aptos_names_from(\n where: {is_primary: {_eq: true}, is_active: {_eq: true}}\n ) {\n domain\n subdomain\n }\n primary_aptos_name_to: aptos_names_to(\n where: {is_primary: {_eq: true}, is_active: {_eq: true}}\n ) {\n domain\n subdomain\n }\n token_amount\n current_token_data {\n ...TokenDataFields\n }\n property_version_v1\n token_amount\n token_data_id\n}\n ${BaseTokenActivityFragmentDoc}\n${TokenDataFieldsFragmentDoc}`;\nexport const DelegatedStakingActivityFragmentDoc = gql`\n fragment DelegatedStakingActivity on delegated_staking_activities {\n amount\n delegator_address\n event_index\n event_type\n pool_address\n transaction_version\n}\n `;\nexport const UserTransactionFragmentDoc = gql`\n fragment UserTransaction on user_transactions {\n sequence_number\n sender\n entry_function_id_str\n expiration_timestamp_secs\n gas_unit_price\n max_gas_amount\n parent_signature_type\n version\n timestamp\n}\n `;\nexport const AccountTransactionFragmentDoc = gql`\n fragment AccountTransaction on account_transactions {\n account_address\n transaction_version\n fungible_asset_activities(\n where: {asset_type: {_is_null: false}, _and: $fungible_asset_activities_where}\n order_by: $fungible_asset_activities_order_by\n ) {\n ...FungibleAssetActivity\n }\n token_activities_v2(\n where: {_and: $token_activities_v2_where}\n order_by: $token_activities_v2_order_by\n ) {\n ...TokenActivity\n }\n delegated_staking_activities(order_by: {event_index: desc}) {\n ...DelegatedStakingActivity\n }\n user_transaction {\n ...UserTransaction\n }\n}\n ${FungibleAssetActivityFragmentDoc}\n${TokenActivityFragmentDoc}\n${DelegatedStakingActivityFragmentDoc}\n${UserTransactionFragmentDoc}`;\nexport const FungibleAssetBalanceFieldsFragmentDoc = gql`\n fragment FungibleAssetBalanceFields on current_fungible_asset_balances {\n amount\n amount_v1\n amount_v2\n asset_type\n asset_type_v1\n asset_type_v2\n is_frozen\n is_primary\n last_transaction_timestamp\n last_transaction_version\n token_standard\n owner_address\n metadata {\n ...FungibleAssetMetadataFields\n }\n}\n ${FungibleAssetMetadataFieldsFragmentDoc}`;\nexport const GetAccountTokensTotalDocument = gql`\n query getAccountTokensTotal($address: String!, $where: [current_token_ownerships_v2_bool_exp!]!) {\n current_token_ownerships_v2_aggregate(\n where: {owner_address: {_eq: $address}, amount: {_gt: 0}, _and: $where}\n ) {\n aggregate {\n count\n }\n }\n}\n `;\nexport const GetAccountTokenOwnershipsDocument = gql`\n query getAccountTokenOwnerships($address: String!, $offset: Int, $limit: Int, $where: [current_token_ownerships_v2_bool_exp!]!, $order_by: [current_token_ownerships_v2_order_by!]!) {\n current_token_ownerships_v2(\n where: {owner_address: {_eq: $address}, amount: {_gt: 0}, current_token_data: {token_data_id: {_is_null: false}}, _and: $where}\n offset: $offset\n limit: $limit\n order_by: $order_by\n ) {\n ...TokenOwnershipFields\n }\n}\n ${TokenOwnershipFieldsFragmentDoc}`;\nexport const GetCurrentTokenDataDocument = gql`\n query getCurrentTokenData($tokenId: String!, $address: String!) {\n current_token_datas_v2(where: {token_data_id: {_eq: $tokenId}}) {\n token_name\n current_collection {\n collection_name\n }\n last_transaction_timestamp\n description\n token_properties\n token_uri\n cdn_asset_uris {\n cdn_image_uri\n }\n }\n created_activity: token_activities_v2(\n where: {token_data_id: {_eq: $tokenId}}\n order_by: [{transaction_version: asc}, {event_index: asc}]\n limit: 1\n ) {\n from_address\n to_address\n transaction_timestamp\n type\n transaction_version\n event_index\n event_account_address\n }\n acquired_activity: token_activities_v2(\n where: {token_data_id: {_eq: $tokenId}, to_address: {_eq: $address}}\n order_by: [{transaction_version: desc}, {event_index: desc}]\n limit: 1\n ) {\n from_address\n to_address\n transaction_timestamp\n type\n transaction_version\n event_index\n }\n}\n `;\nexport const GetAccountCollectionsDocument = gql`\n query getAccountCollections($address: String!, $offset: Int, $limit: Int, $where: [current_collection_ownership_v2_view_bool_exp!]!, $order_by: [current_collection_ownership_v2_view_order_by!]!) {\n current_collection_ownership_v2_view(\n where: {owner_address: {_eq: $address}, _and: $where}\n offset: $offset\n limit: $limit\n order_by: $order_by\n ) {\n ...CollectionOwnership\n }\n}\n ${CollectionOwnershipFragmentDoc}`;\nexport const GetTokenDataDocument = gql`\n query getTokenData($address: String!) {\n current_token_datas_v2(where: {token_data_id: {_eq: $address}}) {\n ...TokenDataFields\n }\n created_activity: token_activities_v2(\n where: {token_data_id: {_eq: $address}}\n order_by: [{transaction_version: asc}, {event_index: asc}]\n limit: 1\n ) {\n from_address\n to_address\n transaction_timestamp\n type\n transaction_version\n event_index\n event_account_address\n }\n acquired_activity: token_activities_v2(\n where: {token_data_id: {_eq: $address}}\n order_by: [{transaction_version: desc}, {event_index: desc}]\n limit: 1\n ) {\n from_address\n to_address\n transaction_timestamp\n type\n transaction_version\n event_index\n event_account_address\n }\n}\n ${TokenDataFieldsFragmentDoc}`;\nexport const GetActivitiesAggregateDocument = gql`\n query getActivitiesAggregate($account_address: String!) {\n address_events_summary(where: {account_address: {_eq: $account_address}}) {\n block_metadata {\n timestamp\n }\n num_distinct_versions\n }\n}\n `;\nexport const GetTokenActivitiesDocument = gql`\n query getTokenActivities($tokenId: String!, $offset: Int, $limit: Int) {\n token_activities_v2(\n where: {token_data_id: {_eq: $tokenId}}\n order_by: [{transaction_timestamp: desc}, {transaction_version: desc}]\n offset: $offset\n limit: $limit\n ) {\n ...TokenActivity\n }\n}\n ${TokenActivityFragmentDoc}`;\nexport const GetTokenAcquisitionActivityDocument = gql`\n query getTokenAcquisitionActivity($address: String!, $tokenId: String!) {\n token_activities_v2(\n where: {token_data_id: {_eq: $tokenId}, to_address: {_eq: $address}}\n order_by: [{transaction_timestamp: desc}, {transaction_version: desc}]\n ) {\n transaction_timestamp\n }\n}\n `;\nexport const GetAccountTransactionsDocument = gql`\n query getAccountTransactions($address: String!, $limit: Int, $offset: Int, $where: [account_transactions_bool_exp!]!, $fungible_asset_activities_where: [fungible_asset_activities_bool_exp!]!, $token_activities_v2_where: [token_activities_v2_bool_exp!]!, $order_by: [account_transactions_order_by!]!, $fungible_asset_activities_order_by: [fungible_asset_activities_order_by!]!, $token_activities_v2_order_by: [token_activities_v2_order_by!]!) {\n account_transactions(\n limit: $limit\n offset: $offset\n where: {account_address: {_eq: $address}, _and: $where}\n order_by: $order_by\n ) {\n ...AccountTransaction\n }\n}\n ${AccountTransactionFragmentDoc}`;\nexport const GetUserTransactionsDocument = gql`\n query getUserTransactions($limit: Int, $offset: Int, $where: user_transactions_bool_exp, $order_by: [user_transactions_order_by!]!) {\n user_transactions(\n limit: $limit\n offset: $offset\n where: $where\n order_by: $order_by\n ) {\n ...UserTransaction\n }\n}\n ${UserTransactionFragmentDoc}`;\nexport const GetFungibleAssetMetadataDocument = gql`\n query getFungibleAssetMetadata($type: String!) {\n fungible_asset_metadata(where: {asset_type: {_eq: $type}}) {\n asset_type\n decimals\n name\n symbol\n }\n}\n `;\nexport const GetFungibleAssetBalancesDocument = gql`\n query getFungibleAssetBalances($where: current_fungible_asset_balances_bool_exp, $order_by: [current_fungible_asset_balances_order_by!], $offset: Int, $limit: Int) {\n current_fungible_asset_balances(\n where: $where\n order_by: $order_by\n offset: $offset\n limit: $limit\n ) {\n ...FungibleAssetBalanceFields\n }\n}\n ${FungibleAssetBalanceFieldsFragmentDoc}`;\nexport const GetDelegatedStakingRoyaltiesDocument = gql`\n query getDelegatedStakingRoyalties($address: String!, $pool: String) {\n delegated_staking_activities(\n where: {delegator_address: {_eq: $address}, pool_address: {_eq: $pool}}\n order_by: {transaction_version: desc}\n ) {\n amount\n delegator_address\n event_index\n event_type\n pool_address\n transaction_version\n }\n}\n `;\nexport const GetDelegatedStakingDocument = gql`\n query getDelegatedStaking($address: String!) {\n delegator_distinct_pool(where: {delegator_address: {_eq: $address}}) {\n delegator_address\n pool_address\n current_pool_balance {\n operator_commission_percentage\n }\n staking_pool_metadata {\n operator_address\n operator_aptos_name {\n domain\n }\n }\n }\n}\n `;\nexport const GetDelegationPoolsDocument = gql`\n query getDelegationPools {\n delegated_staking_pools {\n staking_pool_address\n current_staking_pool {\n operator_address\n }\n }\n}\n `;\nexport const GetNumberOfDelegatorsDocument = gql`\n query getNumberOfDelegators($poolAddress: String) {\n num_active_delegator_per_pool(\n where: {pool_address: {_eq: $poolAddress}, num_active_delegator: {_gt: \"0\"}}\n distinct_on: pool_address\n ) {\n num_active_delegator\n }\n}\n `;\n\nexport type SdkFunctionWrapper = <T>(action: (requestHeaders?:Record<string, string>) => Promise<T>, operationName: string, operationType?: string, variables?: any) => Promise<T>;\n\n\nconst defaultWrapper: SdkFunctionWrapper = (action, _operationName, _operationType, _variables) => action();\n\nexport function getSdk(client: GraphQLClient, withWrapper: SdkFunctionWrapper = defaultWrapper) {\n return {\n getAccountTokensTotal(variables: Types.GetAccountTokensTotalQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit['signal']): Promise<Types.GetAccountTokensTotalQuery> {\n return withWrapper((wrappedRequestHeaders) => client.request<Types.GetAccountTokensTotalQuery>({ document: GetAccountTokensTotalDocument, variables, requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders }, signal }), 'getAccountTokensTotal', 'query', variables);\n },\n getAccountTokenOwnerships(variables: Types.GetAccountTokenOwnershipsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit['signal']): Promise<Types.GetAccountTokenOwnershipsQuery> {\n return withWrapper((wrappedRequestHeaders) => client.request<Types.GetAccountTokenOwnershipsQuery>({ document: GetAccountTokenOwnershipsDocument, variables, requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders }, signal }), 'getAccountTokenOwnerships', 'query', variables);\n },\n getCurrentTokenData(variables: Types.GetCurrentTokenDataQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit['signal']): Promise<Types.GetCurrentTokenDataQuery> {\n return withWrapper((wrappedRequestHeaders) => client.request<Types.GetCurrentTokenDataQuery>({ document: GetCurrentTokenDataDocument, variables, requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders }, signal }), 'getCurrentTokenData', 'query', variables);\n },\n getAccountCollections(variables: Types.GetAccountCollectionsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit['signal']): Promise<Types.GetAccountCollectionsQuery> {\n return withWrapper((wrappedRequestHeaders) => client.request<Types.GetAccountCollectionsQuery>({ document: GetAccountCollectionsDocument, variables, requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders }, signal }), 'getAccountCollections', 'query', variables);\n },\n getTokenData(variables: Types.GetTokenDataQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit['signal']): Promise<Types.GetTokenDataQuery> {\n return withWrapper((wrappedRequestHeaders) => client.request<Types.GetTokenDataQuery>({ document: GetTokenDataDocument, variables, requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders }, signal }), 'getTokenData', 'query', variables);\n },\n getActivitiesAggregate(variables: Types.GetActivitiesAggregateQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit['signal']): Promise<Types.GetActivitiesAggregateQuery> {\n return withWrapper((wrappedRequestHeaders) => client.request<Types.GetActivitiesAggregateQuery>({ document: GetActivitiesAggregateDocument, variables, requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders }, signal }), 'getActivitiesAggregate', 'query', variables);\n },\n getTokenActivities(variables: Types.GetTokenActivitiesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit['signal']): Promise<Types.GetTokenActivitiesQuery> {\n return withWrapper((wrappedRequestHeaders) => client.request<Types.GetTokenActivitiesQuery>({ document: GetTokenActivitiesDocument, variables, requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders }, signal }), 'getTokenActivities', 'query', variables);\n },\n getTokenAcquisitionActivity(variables: Types.GetTokenAcquisitionActivityQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit['signal']): Promise<Types.GetTokenAcquisitionActivityQuery> {\n return withWrapper((wrappedRequestHeaders) => client.request<Types.GetTokenAcquisitionActivityQuery>({ document: GetTokenAcquisitionActivityDocument, variables, requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders }, signal }), 'getTokenAcquisitionActivity', 'query', variables);\n },\n getAccountTransactions(variables: Types.GetAccountTransactionsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit['signal']): Promise<Types.GetAccountTransactionsQuery> {\n return withWrapper((wrappedRequestHeaders) => client.request<Types.GetAccountTransactionsQuery>({ document: GetAccountTransactionsDocument, variables, requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders }, signal }), 'getAccountTransactions', 'query', variables);\n },\n getUserTransactions(variables: Types.GetUserTransactionsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit['signal']): Promise<Types.GetUserTransactionsQuery> {\n return withWrapper((wrappedRequestHeaders) => client.request<Types.GetUserTransactionsQuery>({ document: GetUserTransactionsDocument, variables, requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders }, signal }), 'getUserTransactions', 'query', variables);\n },\n getFungibleAssetMetadata(variables: Types.GetFungibleAssetMetadataQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit['signal']): Promise<Types.GetFungibleAssetMetadataQuery> {\n return withWrapper((wrappedRequestHeaders) => client.request<Types.GetFungibleAssetMetadataQuery>({ document: GetFungibleAssetMetadataDocument, variables, requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders }, signal }), 'getFungibleAssetMetadata', 'query', variables);\n },\n getFungibleAssetBalances(variables?: Types.GetFungibleAssetBalancesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit['signal']): Promise<Types.GetFungibleAssetBalancesQuery> {\n return withWrapper((wrappedRequestHeaders) => client.request<Types.GetFungibleAssetBalancesQuery>({ document: GetFungibleAssetBalancesDocument, variables, requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders }, signal }), 'getFungibleAssetBalances', 'query', variables);\n },\n getDelegatedStakingRoyalties(variables: Types.GetDelegatedStakingRoyaltiesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit['signal']): Promise<Types.GetDelegatedStakingRoyaltiesQuery> {\n return withWrapper((wrappedRequestHeaders) => client.request<Types.GetDelegatedStakingRoyaltiesQuery>({ document: GetDelegatedStakingRoyaltiesDocument, variables, requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders }, signal }), 'getDelegatedStakingRoyalties', 'query', variables);\n },\n getDelegatedStaking(variables: Types.GetDelegatedStakingQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit['signal']): Promise<Types.GetDelegatedStakingQuery> {\n return withWrapper((wrappedRequestHeaders) => client.request<Types.GetDelegatedStakingQuery>({ document: GetDelegatedStakingDocument, variables, requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders }, signal }), 'getDelegatedStaking', 'query', variables);\n },\n getDelegationPools(variables?: Types.GetDelegationPoolsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit['signal']): Promise<Types.GetDelegationPoolsQuery> {\n return withWrapper((wrappedRequestHeaders) => client.request<Types.GetDelegationPoolsQuery>({ document: GetDelegationPoolsDocument, variables, requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders }, signal }), 'getDelegationPools', 'query', variables);\n },\n getNumberOfDelegators(variables?: Types.GetNumberOfDelegatorsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit['signal']): Promise<Types.GetNumberOfDelegatorsQuery> {\n return withWrapper((wrappedRequestHeaders) => client.request<Types.GetNumberOfDelegatorsQuery>({ document: GetNumberOfDelegatorsDocument, variables, requestHeaders: { ...requestHeaders, ...wrappedRequestHeaders }, signal }), 'getNumberOfDelegators', 'query', variables);\n }\n };\n}\nexport type Sdk = ReturnType<typeof getSdk>;","export type JSONValue = null | string | number | boolean | { [x: string]: JSONValue } | Array<JSONValue>;\nexport type Maybe<T> = T | null;\nexport type InputMaybe<T> = Maybe<T>;\nexport type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };\nexport type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };\nexport type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };\nexport type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };\nexport type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };\n/** All built-in and custom scalars, mapped to their actual values */\nexport type Scalars = {\n ID: { input: string; output: string; }\n String: { input: string; output: string; }\n Boolean: { input: boolean; output: boolean; }\n Int: { input: number; output: number; }\n Float: { input: number; output: number; }\n bigint: { input: string; output: string; }\n jsonb: { input: JSONValue; output: JSONValue; }\n numeric: { input: number; output: number; }\n timestamp: { input: string; output: string; }\n};\n\n/** Boolean expression to compare columns of type \"Boolean\". All fields are combined with logical 'AND'. */\nexport type Boolean_Comparison_Exp = {\n _eq?: InputMaybe<Scalars['Boolean']['input']>;\n _gt?: InputMaybe<Scalars['Boolean']['input']>;\n _gte?: InputMaybe<Scalars['Boolean']['input']>;\n _in?: InputMaybe<Array<Scalars['Boolean']['input']>>;\n _is_null?: InputMaybe<Scalars['Boolean']['input']>;\n _lt?: InputMaybe<Scalars['Boolean']['input']>;\n _lte?: InputMaybe<Scalars['Boolean']['input']>;\n _neq?: InputMaybe<Scalars['Boolean']['input']>;\n _nin?: InputMaybe<Array<Scalars['Boolean']['input']>>;\n};\n\n/** Boolean expression to compare columns of type \"Int\". All fields are combined with logical 'AND'. */\nexport type Int_Comparison_Exp = {\n _eq?: InputMaybe<Scalars['Int']['input']>;\n _gt?: InputMaybe<Scalars['Int']['input']>;\n _gte?: InputMaybe<Scalars['Int']['input']>;\n _in?: InputMaybe<Array<Scalars['Int']['input']>>;\n _is_null?: InputMaybe<Scalars['Boolean']['input']>;\n _lt?: InputMaybe<Scalars['Int']['input']>;\n _lte?: InputMaybe<Scalars['Int']['input']>;\n _neq?: InputMaybe<Scalars['Int']['input']>;\n _nin?: InputMaybe<Array<Scalars['Int']['input']>>;\n};\n\n/** Boolean expression to compare columns of type \"String\". All fields are combined with logical 'AND'. */\nexport type String_Comparison_Exp = {\n _eq?: InputMaybe<Scalars['String']['input']>;\n _gt?: InputMaybe<Scalars['String']['input']>;\n _gte?: InputMaybe<Scalars['String']['input']>;\n /** does the column match the given case-insensitive pattern */\n _ilike?: InputMaybe<Scalars['String']['input']>;\n _in?: InputMaybe<Array<Scalars['String']['input']>>;\n /** does the column match the given POSIX regular expression, case insensitive */\n _iregex?: InputMaybe<Scalars['String']['input']>;\n _is_null?: InputMaybe<Scalars['Boolean']['input']>;\n /** does the column match the given pattern */\n _like?: InputMaybe<Scalars['String']['input']>;\n _lt?: InputMaybe<Scalars['String']['input']>;\n _lte?: InputMaybe<Scalars['String']['input']>;\n _neq?: InputMaybe<Scalars['String']['input']>;\n /** does the column NOT match the given case-insensitive pattern */\n _nilike?: InputMaybe<Scalars['String']['input']>;\n _nin?: InputMaybe<Array<Scalars['String']['input']>>;\n /** does the column NOT match the given POSIX regular expression, case insensitive */\n _niregex?: InputMaybe<Scalars['String']['input']>;\n /** does the column NOT match the given pattern */\n _nlike?: InputMaybe<Scalars['String']['input']>;\n /** does the column NOT match the given POSIX regular expression, case sensitive */\n _nregex?: InputMaybe<Scalars['String']['input']>;\n /** does the column NOT match the given SQL regular expression */\n _nsimilar?: InputMaybe<Scalars['String']['input']>;\n /** does the column match the given POSIX regular expression, case sensitive */\n _regex?: InputMaybe<Scalars['String']['input']>;\n /** does the column match the given SQL regular expression */\n _similar?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"account_transactions\" */\nexport type Account_Transactions = {\n __typename?: 'account_transactions';\n account_address: Scalars['String']['output'];\n /** An array relationship */\n coin_activities: Array<Coin_Activities>;\n /** An aggregate relationship */\n coin_activities_aggregate: Coin_Activities_Aggregate;\n /** An array relationship */\n delegated_staking_activities: Array<Delegated_Staking_Activities>;\n /** An array relationship */\n fungible_asset_activities: Array<Fungible_Asset_Activities>;\n /** An array relationship */\n token_activities: Array<Token_Activities>;\n /** An aggregate relationship */\n token_activities_aggregate: Token_Activities_Aggregate;\n /** An array relationship */\n token_activities_v2: Array<Token_Activities_V2>;\n /** An aggregate relationship */\n token_activities_v2_aggregate: Token_Activities_V2_Aggregate;\n transaction_version: Scalars['bigint']['output'];\n /** An object relationship */\n user_transaction?: Maybe<User_Transactions>;\n};\n\n\n/** columns and relationships of \"account_transactions\" */\nexport type Account_TransactionsCoin_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Coin_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Coin_Activities_Order_By>>;\n where?: InputMaybe<Coin_Activities_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"account_transactions\" */\nexport type Account_TransactionsCoin_Activities_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Coin_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Coin_Activities_Order_By>>;\n where?: InputMaybe<Coin_Activities_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"account_transactions\" */\nexport type Account_TransactionsDelegated_Staking_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Delegated_Staking_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Delegated_Staking_Activities_Order_By>>;\n where?: InputMaybe<Delegated_Staking_Activities_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"account_transactions\" */\nexport type Account_TransactionsFungible_Asset_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Fungible_Asset_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Fungible_Asset_Activities_Order_By>>;\n where?: InputMaybe<Fungible_Asset_Activities_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"account_transactions\" */\nexport type Account_TransactionsToken_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Token_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_Order_By>>;\n where?: InputMaybe<Token_Activities_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"account_transactions\" */\nexport type Account_TransactionsToken_Activities_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Token_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_Order_By>>;\n where?: InputMaybe<Token_Activities_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"account_transactions\" */\nexport type Account_TransactionsToken_Activities_V2Args = {\n distinct_on?: InputMaybe<Array<Token_Activities_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_V2_Order_By>>;\n where?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"account_transactions\" */\nexport type Account_TransactionsToken_Activities_V2_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Token_Activities_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_V2_Order_By>>;\n where?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n};\n\n/** aggregated selection of \"account_transactions\" */\nexport type Account_Transactions_Aggregate = {\n __typename?: 'account_transactions_aggregate';\n aggregate?: Maybe<Account_Transactions_Aggregate_Fields>;\n nodes: Array<Account_Transactions>;\n};\n\n/** aggregate fields of \"account_transactions\" */\nexport type Account_Transactions_Aggregate_Fields = {\n __typename?: 'account_transactions_aggregate_fields';\n avg?: Maybe<Account_Transactions_Avg_Fields>;\n count: Scalars['Int']['output'];\n max?: Maybe<Account_Transactions_Max_Fields>;\n min?: Maybe<Account_Transactions_Min_Fields>;\n stddev?: Maybe<Account_Transactions_Stddev_Fields>;\n stddev_pop?: Maybe<Account_Transactions_Stddev_Pop_Fields>;\n stddev_samp?: Maybe<Account_Transactions_Stddev_Samp_Fields>;\n sum?: Maybe<Account_Transactions_Sum_Fields>;\n var_pop?: Maybe<Account_Transactions_Var_Pop_Fields>;\n var_samp?: Maybe<Account_Transactions_Var_Samp_Fields>;\n variance?: Maybe<Account_Transactions_Variance_Fields>;\n};\n\n\n/** aggregate fields of \"account_transactions\" */\nexport type Account_Transactions_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Account_Transactions_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** aggregate avg on columns */\nexport type Account_Transactions_Avg_Fields = {\n __typename?: 'account_transactions_avg_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"account_transactions\". All fields are combined with a logical 'AND'. */\nexport type Account_Transactions_Bool_Exp = {\n _and?: InputMaybe<Array<Account_Transactions_Bool_Exp>>;\n _not?: InputMaybe<Account_Transactions_Bool_Exp>;\n _or?: InputMaybe<Array<Account_Transactions_Bool_Exp>>;\n account_address?: InputMaybe<String_Comparison_Exp>;\n coin_activities?: InputMaybe<Coin_Activities_Bool_Exp>;\n coin_activities_aggregate?: InputMaybe<Coin_Activities_Aggregate_Bool_Exp>;\n delegated_staking_activities?: InputMaybe<Delegated_Staking_Activities_Bool_Exp>;\n fungible_asset_activities?: InputMaybe<Fungible_Asset_Activities_Bool_Exp>;\n token_activities?: InputMaybe<Token_Activities_Bool_Exp>;\n token_activities_aggregate?: InputMaybe<Token_Activities_Aggregate_Bool_Exp>;\n token_activities_v2?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n token_activities_v2_aggregate?: InputMaybe<Token_Activities_V2_Aggregate_Bool_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n user_transaction?: InputMaybe<User_Transactions_Bool_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Account_Transactions_Max_Fields = {\n __typename?: 'account_transactions_max_fields';\n account_address?: Maybe<Scalars['String']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregate min on columns */\nexport type Account_Transactions_Min_Fields = {\n __typename?: 'account_transactions_min_fields';\n account_address?: Maybe<Scalars['String']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** Ordering options when selecting data from \"account_transactions\". */\nexport type Account_Transactions_Order_By = {\n account_address?: InputMaybe<Order_By>;\n coin_activities_aggregate?: InputMaybe<Coin_Activities_Aggregate_Order_By>;\n delegated_staking_activities_aggregate?: InputMaybe<Delegated_Staking_Activities_Aggregate_Order_By>;\n fungible_asset_activities_aggregate?: InputMaybe<Fungible_Asset_Activities_Aggregate_Order_By>;\n token_activities_aggregate?: InputMaybe<Token_Activities_Aggregate_Order_By>;\n token_activities_v2_aggregate?: InputMaybe<Token_Activities_V2_Aggregate_Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n user_transaction?: InputMaybe<User_Transactions_Order_By>;\n};\n\n/** select columns of table \"account_transactions\" */\nexport enum Account_Transactions_Select_Column {\n /** column name */\n AccountAddress = 'account_address',\n /** column name */\n TransactionVersion = 'transaction_version'\n}\n\n/** aggregate stddev on columns */\nexport type Account_Transactions_Stddev_Fields = {\n __typename?: 'account_transactions_stddev_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_pop on columns */\nexport type Account_Transactions_Stddev_Pop_Fields = {\n __typename?: 'account_transactions_stddev_pop_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_samp on columns */\nexport type Account_Transactions_Stddev_Samp_Fields = {\n __typename?: 'account_transactions_stddev_samp_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Streaming cursor of the table \"account_transactions\" */\nexport type Account_Transactions_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Account_Transactions_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Account_Transactions_Stream_Cursor_Value_Input = {\n account_address?: InputMaybe<Scalars['String']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** aggregate sum on columns */\nexport type Account_Transactions_Sum_Fields = {\n __typename?: 'account_transactions_sum_fields';\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregate var_pop on columns */\nexport type Account_Transactions_Var_Pop_Fields = {\n __typename?: 'account_transactions_var_pop_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate var_samp on columns */\nexport type Account_Transactions_Var_Samp_Fields = {\n __typename?: 'account_transactions_var_samp_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate variance on columns */\nexport type Account_Transactions_Variance_Fields = {\n __typename?: 'account_transactions_variance_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** columns and relationships of \"address_events_summary\" */\nexport type Address_Events_Summary = {\n __typename?: 'address_events_summary';\n account_address?: Maybe<Scalars['String']['output']>;\n /** An object relationship */\n block_metadata?: Maybe<Block_Metadata_Transactions>;\n min_block_height?: Maybe<Scalars['bigint']['output']>;\n num_distinct_versions?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"address_events_summary\". All fields are combined with a logical 'AND'. */\nexport type Address_Events_Summary_Bool_Exp = {\n _and?: InputMaybe<Array<Address_Events_Summary_Bool_Exp>>;\n _not?: InputMaybe<Address_Events_Summary_Bool_Exp>;\n _or?: InputMaybe<Array<Address_Events_Summary_Bool_Exp>>;\n account_address?: InputMaybe<String_Comparison_Exp>;\n block_metadata?: InputMaybe<Block_Metadata_Transactions_Bool_Exp>;\n min_block_height?: InputMaybe<Bigint_Comparison_Exp>;\n num_distinct_versions?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"address_events_summary\". */\nexport type Address_Events_Summary_Order_By = {\n account_address?: InputMaybe<Order_By>;\n block_metadata?: InputMaybe<Block_Metadata_Transactions_Order_By>;\n min_block_height?: InputMaybe<Order_By>;\n num_distinct_versions?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"address_events_summary\" */\nexport enum Address_Events_Summary_Select_Column {\n /** column name */\n AccountAddress = 'account_address',\n /** column name */\n MinBlockHeight = 'min_block_height',\n /** column name */\n NumDistinctVersions = 'num_distinct_versions'\n}\n\n/** Streaming cursor of the table \"address_events_summary\" */\nexport type Address_Events_Summary_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Address_Events_Summary_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Address_Events_Summary_Stream_Cursor_Value_Input = {\n account_address?: InputMaybe<Scalars['String']['input']>;\n min_block_height?: InputMaybe<Scalars['bigint']['input']>;\n num_distinct_versions?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** columns and relationships of \"address_version_from_events\" */\nexport type Address_Version_From_Events = {\n __typename?: 'address_version_from_events';\n account_address?: Maybe<Scalars['String']['output']>;\n /** An array relationship */\n coin_activities: Array<Coin_Activities>;\n /** An aggregate relationship */\n coin_activities_aggregate: Coin_Activities_Aggregate;\n /** An array relationship */\n delegated_staking_activities: Array<Delegated_Staking_Activities>;\n /** An array relationship */\n token_activities: Array<Token_Activities>;\n /** An aggregate relationship */\n token_activities_aggregate: Token_Activities_Aggregate;\n /** An array relationship */\n token_activities_v2: Array<Token_Activities_V2>;\n /** An aggregate relationship */\n token_activities_v2_aggregate: Token_Activities_V2_Aggregate;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n\n/** columns and relationships of \"address_version_from_events\" */\nexport type Address_Version_From_EventsCoin_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Coin_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Coin_Activities_Order_By>>;\n where?: InputMaybe<Coin_Activities_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"address_version_from_events\" */\nexport type Address_Version_From_EventsCoin_Activities_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Coin_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Coin_Activities_Order_By>>;\n where?: InputMaybe<Coin_Activities_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"address_version_from_events\" */\nexport type Address_Version_From_EventsDelegated_Staking_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Delegated_Staking_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Delegated_Staking_Activities_Order_By>>;\n where?: InputMaybe<Delegated_Staking_Activities_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"address_version_from_events\" */\nexport type Address_Version_From_EventsToken_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Token_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_Order_By>>;\n where?: InputMaybe<Token_Activities_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"address_version_from_events\" */\nexport type Address_Version_From_EventsToken_Activities_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Token_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_Order_By>>;\n where?: InputMaybe<Token_Activities_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"address_version_from_events\" */\nexport type Address_Version_From_EventsToken_Activities_V2Args = {\n distinct_on?: InputMaybe<Array<Token_Activities_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_V2_Order_By>>;\n where?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"address_version_from_events\" */\nexport type Address_Version_From_EventsToken_Activities_V2_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Token_Activities_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_V2_Order_By>>;\n where?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n};\n\n/** aggregated selection of \"address_version_from_events\" */\nexport type Address_Version_From_Events_Aggregate = {\n __typename?: 'address_version_from_events_aggregate';\n aggregate?: Maybe<Address_Version_From_Events_Aggregate_Fields>;\n nodes: Array<Address_Version_From_Events>;\n};\n\n/** aggregate fields of \"address_version_from_events\" */\nexport type Address_Version_From_Events_Aggregate_Fields = {\n __typename?: 'address_version_from_events_aggregate_fields';\n avg?: Maybe<Address_Version_From_Events_Avg_Fields>;\n count: Scalars['Int']['output'];\n max?: Maybe<Address_Version_From_Events_Max_Fields>;\n min?: Maybe<Address_Version_From_Events_Min_Fields>;\n stddev?: Maybe<Address_Version_From_Events_Stddev_Fields>;\n stddev_pop?: Maybe<Address_Version_From_Events_Stddev_Pop_Fields>;\n stddev_samp?: Maybe<Address_Version_From_Events_Stddev_Samp_Fields>;\n sum?: Maybe<Address_Version_From_Events_Sum_Fields>;\n var_pop?: Maybe<Address_Version_From_Events_Var_Pop_Fields>;\n var_samp?: Maybe<Address_Version_From_Events_Var_Samp_Fields>;\n variance?: Maybe<Address_Version_From_Events_Variance_Fields>;\n};\n\n\n/** aggregate fields of \"address_version_from_events\" */\nexport type Address_Version_From_Events_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Address_Version_From_Events_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** aggregate avg on columns */\nexport type Address_Version_From_Events_Avg_Fields = {\n __typename?: 'address_version_from_events_avg_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"address_version_from_events\". All fields are combined with a logical 'AND'. */\nexport type Address_Version_From_Events_Bool_Exp = {\n _and?: InputMaybe<Array<Address_Version_From_Events_Bool_Exp>>;\n _not?: InputMaybe<Address_Version_From_Events_Bool_Exp>;\n _or?: InputMaybe<Array<Address_Version_From_Events_Bool_Exp>>;\n account_address?: InputMaybe<String_Comparison_Exp>;\n coin_activities?: InputMaybe<Coin_Activities_Bool_Exp>;\n coin_activities_aggregate?: InputMaybe<Coin_Activities_Aggregate_Bool_Exp>;\n delegated_staking_activities?: InputMaybe<Delegated_Staking_Activities_Bool_Exp>;\n token_activities?: InputMaybe<Token_Activities_Bool_Exp>;\n token_activities_aggregate?: InputMaybe<Token_Activities_Aggregate_Bool_Exp>;\n token_activities_v2?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n token_activities_v2_aggregate?: InputMaybe<Token_Activities_V2_Aggregate_Bool_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Address_Version_From_Events_Max_Fields = {\n __typename?: 'address_version_from_events_max_fields';\n account_address?: Maybe<Scalars['String']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregate min on columns */\nexport type Address_Version_From_Events_Min_Fields = {\n __typename?: 'address_version_from_events_min_fields';\n account_address?: Maybe<Scalars['String']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** Ordering options when selecting data from \"address_version_from_events\". */\nexport type Address_Version_From_Events_Order_By = {\n account_address?: InputMaybe<Order_By>;\n coin_activities_aggregate?: InputMaybe<Coin_Activities_Aggregate_Order_By>;\n delegated_staking_activities_aggregate?: InputMaybe<Delegated_Staking_Activities_Aggregate_Order_By>;\n token_activities_aggregate?: InputMaybe<Token_Activities_Aggregate_Order_By>;\n token_activities_v2_aggregate?: InputMaybe<Token_Activities_V2_Aggregate_Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"address_version_from_events\" */\nexport enum Address_Version_From_Events_Select_Column {\n /** column name */\n AccountAddress = 'account_address',\n /** column name */\n TransactionVersion = 'transaction_version'\n}\n\n/** aggregate stddev on columns */\nexport type Address_Version_From_Events_Stddev_Fields = {\n __typename?: 'address_version_from_events_stddev_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_pop on columns */\nexport type Address_Version_From_Events_Stddev_Pop_Fields = {\n __typename?: 'address_version_from_events_stddev_pop_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_samp on columns */\nexport type Address_Version_From_Events_Stddev_Samp_Fields = {\n __typename?: 'address_version_from_events_stddev_samp_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Streaming cursor of the table \"address_version_from_events\" */\nexport type Address_Version_From_Events_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Address_Version_From_Events_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Address_Version_From_Events_Stream_Cursor_Value_Input = {\n account_address?: InputMaybe<Scalars['String']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** aggregate sum on columns */\nexport type Address_Version_From_Events_Sum_Fields = {\n __typename?: 'address_version_from_events_sum_fields';\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregate var_pop on columns */\nexport type Address_Version_From_Events_Var_Pop_Fields = {\n __typename?: 'address_version_from_events_var_pop_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate var_samp on columns */\nexport type Address_Version_From_Events_Var_Samp_Fields = {\n __typename?: 'address_version_from_events_var_samp_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate variance on columns */\nexport type Address_Version_From_Events_Variance_Fields = {\n __typename?: 'address_version_from_events_variance_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** columns and relationships of \"legacy_migration_v1.address_version_from_move_resources\" */\nexport type Address_Version_From_Move_Resources = {\n __typename?: 'address_version_from_move_resources';\n address?: Maybe<Scalars['String']['output']>;\n /** An array relationship */\n coin_activities: Array<Coin_Activities>;\n /** An aggregate relationship */\n coin_activities_aggregate: Coin_Activities_Aggregate;\n /** An array relationship */\n delegated_staking_activities: Array<Delegated_Staking_Activities>;\n /** An array relationship */\n token_activities: Array<Token_Activities>;\n /** An aggregate relationship */\n token_activities_aggregate: Token_Activities_Aggregate;\n /** An array relationship */\n token_activities_v2: Array<Token_Activities_V2>;\n /** An aggregate relationship */\n token_activities_v2_aggregate: Token_Activities_V2_Aggregate;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.address_version_from_move_resources\" */\nexport type Address_Version_From_Move_ResourcesCoin_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Coin_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Coin_Activities_Order_By>>;\n where?: InputMaybe<Coin_Activities_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.address_version_from_move_resources\" */\nexport type Address_Version_From_Move_ResourcesCoin_Activities_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Coin_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Coin_Activities_Order_By>>;\n where?: InputMaybe<Coin_Activities_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.address_version_from_move_resources\" */\nexport type Address_Version_From_Move_ResourcesDelegated_Staking_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Delegated_Staking_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Delegated_Staking_Activities_Order_By>>;\n where?: InputMaybe<Delegated_Staking_Activities_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.address_version_from_move_resources\" */\nexport type Address_Version_From_Move_ResourcesToken_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Token_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_Order_By>>;\n where?: InputMaybe<Token_Activities_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.address_version_from_move_resources\" */\nexport type Address_Version_From_Move_ResourcesToken_Activities_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Token_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_Order_By>>;\n where?: InputMaybe<Token_Activities_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.address_version_from_move_resources\" */\nexport type Address_Version_From_Move_ResourcesToken_Activities_V2Args = {\n distinct_on?: InputMaybe<Array<Token_Activities_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_V2_Order_By>>;\n where?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.address_version_from_move_resources\" */\nexport type Address_Version_From_Move_ResourcesToken_Activities_V2_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Token_Activities_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_V2_Order_By>>;\n where?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n};\n\n/** aggregated selection of \"legacy_migration_v1.address_version_from_move_resources\" */\nexport type Address_Version_From_Move_Resources_Aggregate = {\n __typename?: 'address_version_from_move_resources_aggregate';\n aggregate?: Maybe<Address_Version_From_Move_Resources_Aggregate_Fields>;\n nodes: Array<Address_Version_From_Move_Resources>;\n};\n\n/** aggregate fields of \"legacy_migration_v1.address_version_from_move_resources\" */\nexport type Address_Version_From_Move_Resources_Aggregate_Fields = {\n __typename?: 'address_version_from_move_resources_aggregate_fields';\n avg?: Maybe<Address_Version_From_Move_Resources_Avg_Fields>;\n count: Scalars['Int']['output'];\n max?: Maybe<Address_Version_From_Move_Resources_Max_Fields>;\n min?: Maybe<Address_Version_From_Move_Resources_Min_Fields>;\n stddev?: Maybe<Address_Version_From_Move_Resources_Stddev_Fields>;\n stddev_pop?: Maybe<Address_Version_From_Move_Resources_Stddev_Pop_Fields>;\n stddev_samp?: Maybe<Address_Version_From_Move_Resources_Stddev_Samp_Fields>;\n sum?: Maybe<Address_Version_From_Move_Resources_Sum_Fields>;\n var_pop?: Maybe<Address_Version_From_Move_Resources_Var_Pop_Fields>;\n var_samp?: Maybe<Address_Version_From_Move_Resources_Var_Samp_Fields>;\n variance?: Maybe<Address_Version_From_Move_Resources_Variance_Fields>;\n};\n\n\n/** aggregate fields of \"legacy_migration_v1.address_version_from_move_resources\" */\nexport type Address_Version_From_Move_Resources_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Address_Version_From_Move_Resources_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** aggregate avg on columns */\nexport type Address_Version_From_Move_Resources_Avg_Fields = {\n __typename?: 'address_version_from_move_resources_avg_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"legacy_migration_v1.address_version_from_move_resources\". All fields are combined with a logical 'AND'. */\nexport type Address_Version_From_Move_Resources_Bool_Exp = {\n _and?: InputMaybe<Array<Address_Version_From_Move_Resources_Bool_Exp>>;\n _not?: InputMaybe<Address_Version_From_Move_Resources_Bool_Exp>;\n _or?: InputMaybe<Array<Address_Version_From_Move_Resources_Bool_Exp>>;\n address?: InputMaybe<String_Comparison_Exp>;\n coin_activities?: InputMaybe<Coin_Activities_Bool_Exp>;\n coin_activities_aggregate?: InputMaybe<Coin_Activities_Aggregate_Bool_Exp>;\n delegated_staking_activities?: InputMaybe<Delegated_Staking_Activities_Bool_Exp>;\n token_activities?: InputMaybe<Token_Activities_Bool_Exp>;\n token_activities_aggregate?: InputMaybe<Token_Activities_Aggregate_Bool_Exp>;\n token_activities_v2?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n token_activities_v2_aggregate?: InputMaybe<Token_Activities_V2_Aggregate_Bool_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Address_Version_From_Move_Resources_Max_Fields = {\n __typename?: 'address_version_from_move_resources_max_fields';\n address?: Maybe<Scalars['String']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregate min on columns */\nexport type Address_Version_From_Move_Resources_Min_Fields = {\n __typename?: 'address_version_from_move_resources_min_fields';\n address?: Maybe<Scalars['String']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** Ordering options when selecting data from \"legacy_migration_v1.address_version_from_move_resources\". */\nexport type Address_Version_From_Move_Resources_Order_By = {\n address?: InputMaybe<Order_By>;\n coin_activities_aggregate?: InputMaybe<Coin_Activities_Aggregate_Order_By>;\n delegated_staking_activities_aggregate?: InputMaybe<Delegated_Staking_Activities_Aggregate_Order_By>;\n token_activities_aggregate?: InputMaybe<Token_Activities_Aggregate_Order_By>;\n token_activities_v2_aggregate?: InputMaybe<Token_Activities_V2_Aggregate_Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"legacy_migration_v1.address_version_from_move_resources\" */\nexport enum Address_Version_From_Move_Resources_Select_Column {\n /** column name */\n Address = 'address',\n /** column name */\n TransactionVersion = 'transaction_version'\n}\n\n/** aggregate stddev on columns */\nexport type Address_Version_From_Move_Resources_Stddev_Fields = {\n __typename?: 'address_version_from_move_resources_stddev_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_pop on columns */\nexport type Address_Version_From_Move_Resources_Stddev_Pop_Fields = {\n __typename?: 'address_version_from_move_resources_stddev_pop_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_samp on columns */\nexport type Address_Version_From_Move_Resources_Stddev_Samp_Fields = {\n __typename?: 'address_version_from_move_resources_stddev_samp_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Streaming cursor of the table \"address_version_from_move_resources\" */\nexport type Address_Version_From_Move_Resources_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Address_Version_From_Move_Resources_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Address_Version_From_Move_Resources_Stream_Cursor_Value_Input = {\n address?: InputMaybe<Scalars['String']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** aggregate sum on columns */\nexport type Address_Version_From_Move_Resources_Sum_Fields = {\n __typename?: 'address_version_from_move_resources_sum_fields';\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregate var_pop on columns */\nexport type Address_Version_From_Move_Resources_Var_Pop_Fields = {\n __typename?: 'address_version_from_move_resources_var_pop_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate var_samp on columns */\nexport type Address_Version_From_Move_Resources_Var_Samp_Fields = {\n __typename?: 'address_version_from_move_resources_var_samp_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate variance on columns */\nexport type Address_Version_From_Move_Resources_Variance_Fields = {\n __typename?: 'address_version_from_move_resources_variance_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** columns and relationships of \"auth_key_account_addresses\" */\nexport type Auth_Key_Account_Addresses = {\n __typename?: 'auth_key_account_addresses';\n account_address: Scalars['String']['output'];\n auth_key: Scalars['String']['output'];\n is_auth_key_used: Scalars['Boolean']['output'];\n last_transaction_version: Scalars['bigint']['output'];\n};\n\n/** aggregated selection of \"auth_key_account_addresses\" */\nexport type Auth_Key_Account_Addresses_Aggregate = {\n __typename?: 'auth_key_account_addresses_aggregate';\n aggregate?: Maybe<Auth_Key_Account_Addresses_Aggregate_Fields>;\n nodes: Array<Auth_Key_Account_Addresses>;\n};\n\n/** aggregate fields of \"auth_key_account_addresses\" */\nexport type Auth_Key_Account_Addresses_Aggregate_Fields = {\n __typename?: 'auth_key_account_addresses_aggregate_fields';\n avg?: Maybe<Auth_Key_Account_Addresses_Avg_Fields>;\n count: Scalars['Int']['output'];\n max?: Maybe<Auth_Key_Account_Addresses_Max_Fields>;\n min?: Maybe<Auth_Key_Account_Addresses_Min_Fields>;\n stddev?: Maybe<Auth_Key_Account_Addresses_Stddev_Fields>;\n stddev_pop?: Maybe<Auth_Key_Account_Addresses_Stddev_Pop_Fields>;\n stddev_samp?: Maybe<Auth_Key_Account_Addresses_Stddev_Samp_Fields>;\n sum?: Maybe<Auth_Key_Account_Addresses_Sum_Fields>;\n var_pop?: Maybe<Auth_Key_Account_Addresses_Var_Pop_Fields>;\n var_samp?: Maybe<Auth_Key_Account_Addresses_Var_Samp_Fields>;\n variance?: Maybe<Auth_Key_Account_Addresses_Variance_Fields>;\n};\n\n\n/** aggregate fields of \"auth_key_account_addresses\" */\nexport type Auth_Key_Account_Addresses_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Auth_Key_Account_Addresses_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** aggregate avg on columns */\nexport type Auth_Key_Account_Addresses_Avg_Fields = {\n __typename?: 'auth_key_account_addresses_avg_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"auth_key_account_addresses\". All fields are combined with a logical 'AND'. */\nexport type Auth_Key_Account_Addresses_Bool_Exp = {\n _and?: InputMaybe<Array<Auth_Key_Account_Addresses_Bool_Exp>>;\n _not?: InputMaybe<Auth_Key_Account_Addresses_Bool_Exp>;\n _or?: InputMaybe<Array<Auth_Key_Account_Addresses_Bool_Exp>>;\n account_address?: InputMaybe<String_Comparison_Exp>;\n auth_key?: InputMaybe<String_Comparison_Exp>;\n is_auth_key_used?: InputMaybe<Boolean_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Auth_Key_Account_Addresses_Max_Fields = {\n __typename?: 'auth_key_account_addresses_max_fields';\n account_address?: Maybe<Scalars['String']['output']>;\n auth_key?: Maybe<Scalars['String']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregate min on columns */\nexport type Auth_Key_Account_Addresses_Min_Fields = {\n __typename?: 'auth_key_account_addresses_min_fields';\n account_address?: Maybe<Scalars['String']['output']>;\n auth_key?: Maybe<Scalars['String']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** Ordering options when selecting data from \"auth_key_account_addresses\". */\nexport type Auth_Key_Account_Addresses_Order_By = {\n account_address?: InputMaybe<Order_By>;\n auth_key?: InputMaybe<Order_By>;\n is_auth_key_used?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"auth_key_account_addresses\" */\nexport enum Auth_Key_Account_Addresses_Select_Column {\n /** column name */\n AccountAddress = 'account_address',\n /** column name */\n AuthKey = 'auth_key',\n /** column name */\n IsAuthKeyUsed = 'is_auth_key_used',\n /** column name */\n LastTransactionVersion = 'last_transaction_version'\n}\n\n/** aggregate stddev on columns */\nexport type Auth_Key_Account_Addresses_Stddev_Fields = {\n __typename?: 'auth_key_account_addresses_stddev_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_pop on columns */\nexport type Auth_Key_Account_Addresses_Stddev_Pop_Fields = {\n __typename?: 'auth_key_account_addresses_stddev_pop_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_samp on columns */\nexport type Auth_Key_Account_Addresses_Stddev_Samp_Fields = {\n __typename?: 'auth_key_account_addresses_stddev_samp_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Streaming cursor of the table \"auth_key_account_addresses\" */\nexport type Auth_Key_Account_Addresses_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Auth_Key_Account_Addresses_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Auth_Key_Account_Addresses_Stream_Cursor_Value_Input = {\n account_address?: InputMaybe<Scalars['String']['input']>;\n auth_key?: InputMaybe<Scalars['String']['input']>;\n is_auth_key_used?: InputMaybe<Scalars['Boolean']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** aggregate sum on columns */\nexport type Auth_Key_Account_Addresses_Sum_Fields = {\n __typename?: 'auth_key_account_addresses_sum_fields';\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregate var_pop on columns */\nexport type Auth_Key_Account_Addresses_Var_Pop_Fields = {\n __typename?: 'auth_key_account_addresses_var_pop_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate var_samp on columns */\nexport type Auth_Key_Account_Addresses_Var_Samp_Fields = {\n __typename?: 'auth_key_account_addresses_var_samp_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate variance on columns */\nexport type Auth_Key_Account_Addresses_Variance_Fields = {\n __typename?: 'auth_key_account_addresses_variance_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Boolean expression to compare columns of type \"bigint\". All fields are combined with logical 'AND'. */\nexport type Bigint_Comparison_Exp = {\n _eq?: InputMaybe<Scalars['bigint']['input']>;\n _gt?: InputMaybe<Scalars['bigint']['input']>;\n _gte?: InputMaybe<Scalars['bigint']['input']>;\n _in?: InputMaybe<Array<Scalars['bigint']['input']>>;\n _is_null?: InputMaybe<Scalars['Boolean']['input']>;\n _lt?: InputMaybe<Scalars['bigint']['input']>;\n _lte?: InputMaybe<Scalars['bigint']['input']>;\n _neq?: InputMaybe<Scalars['bigint']['input']>;\n _nin?: InputMaybe<Array<Scalars['bigint']['input']>>;\n};\n\n/** columns and relationships of \"block_metadata_transactions\" */\nexport type Block_Metadata_Transactions = {\n __typename?: 'block_metadata_transactions';\n block_height: Scalars['bigint']['output'];\n epoch: Scalars['bigint']['output'];\n failed_proposer_indices: Scalars['jsonb']['output'];\n id: Scalars['String']['output'];\n previous_block_votes_bitvec: Scalars['jsonb']['output'];\n proposer: Scalars['String']['output'];\n round: Scalars['bigint']['output'];\n timestamp: Scalars['timestamp']['output'];\n version: Scalars['bigint']['output'];\n};\n\n\n/** columns and relationships of \"block_metadata_transactions\" */\nexport type Block_Metadata_TransactionsFailed_Proposer_IndicesArgs = {\n path?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** columns and relationships of \"block_metadata_transactions\" */\nexport type Block_Metadata_TransactionsPrevious_Block_Votes_BitvecArgs = {\n path?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Boolean expression to filter rows from the table \"block_metadata_transactions\". All fields are combined with a logical 'AND'. */\nexport type Block_Metadata_Transactions_Bool_Exp = {\n _and?: InputMaybe<Array<Block_Metadata_Transactions_Bool_Exp>>;\n _not?: InputMaybe<Block_Metadata_Transactions_Bool_Exp>;\n _or?: InputMaybe<Array<Block_Metadata_Transactions_Bool_Exp>>;\n block_height?: InputMaybe<Bigint_Comparison_Exp>;\n epoch?: InputMaybe<Bigint_Comparison_Exp>;\n failed_proposer_indices?: InputMaybe<Jsonb_Comparison_Exp>;\n id?: InputMaybe<String_Comparison_Exp>;\n previous_block_votes_bitvec?: InputMaybe<Jsonb_Comparison_Exp>;\n proposer?: InputMaybe<String_Comparison_Exp>;\n round?: InputMaybe<Bigint_Comparison_Exp>;\n timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n version?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"block_metadata_transactions\". */\nexport type Block_Metadata_Transactions_Order_By = {\n block_height?: InputMaybe<Order_By>;\n epoch?: InputMaybe<Order_By>;\n failed_proposer_indices?: InputMaybe<Order_By>;\n id?: InputMaybe<Order_By>;\n previous_block_votes_bitvec?: InputMaybe<Order_By>;\n proposer?: InputMaybe<Order_By>;\n round?: InputMaybe<Order_By>;\n timestamp?: InputMaybe<Order_By>;\n version?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"block_metadata_transactions\" */\nexport enum Block_Metadata_Transactions_Select_Column {\n /** column name */\n BlockHeight = 'block_height',\n /** column name */\n Epoch = 'epoch',\n /** column name */\n FailedProposerIndices = 'failed_proposer_indices',\n /** column name */\n Id = 'id',\n /** column name */\n PreviousBlockVotesBitvec = 'previous_block_votes_bitvec',\n /** column name */\n Proposer = 'proposer',\n /** column name */\n Round = 'round',\n /** column name */\n Timestamp = 'timestamp',\n /** column name */\n Version = 'version'\n}\n\n/** Streaming cursor of the table \"block_metadata_transactions\" */\nexport type Block_Metadata_Transactions_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Block_Metadata_Transactions_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Block_Metadata_Transactions_Stream_Cursor_Value_Input = {\n block_height?: InputMaybe<Scalars['bigint']['input']>;\n epoch?: InputMaybe<Scalars['bigint']['input']>;\n failed_proposer_indices?: InputMaybe<Scalars['jsonb']['input']>;\n id?: InputMaybe<Scalars['String']['input']>;\n previous_block_votes_bitvec?: InputMaybe<Scalars['jsonb']['input']>;\n proposer?: InputMaybe<Scalars['String']['input']>;\n round?: InputMaybe<Scalars['bigint']['input']>;\n timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n version?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** columns and relationships of \"legacy_migration_v1.coin_activities\" */\nexport type Coin_Activities = {\n __typename?: 'coin_activities';\n activity_type?: Maybe<Scalars['String']['output']>;\n amount?: Maybe<Scalars['numeric']['output']>;\n /** An array relationship */\n aptos_names: Array<Current_Aptos_Names>;\n /** An aggregate relationship */\n aptos_names_aggregate: Current_Aptos_Names_Aggregate;\n block_height?: Maybe<Scalars['bigint']['output']>;\n /** An object relationship */\n coin_info?: Maybe<Coin_Infos>;\n coin_type?: Maybe<Scalars['String']['output']>;\n entry_function_id_str?: Maybe<Scalars['String']['output']>;\n event_account_address?: Maybe<Scalars['String']['output']>;\n event_creation_number?: Maybe<Scalars['Int']['output']>;\n event_index?: Maybe<Scalars['bigint']['output']>;\n event_sequence_number?: Maybe<Scalars['Int']['output']>;\n is_gas_fee?: Maybe<Scalars['Boolean']['output']>;\n is_transaction_success?: Maybe<Scalars['Boolean']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n storage_refund_amount?: Maybe<Scalars['numeric']['output']>;\n transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.coin_activities\" */\nexport type Coin_ActivitiesAptos_NamesArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.coin_activities\" */\nexport type Coin_ActivitiesAptos_Names_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n/** aggregated selection of \"legacy_migration_v1.coin_activities\" */\nexport type Coin_Activities_Aggregate = {\n __typename?: 'coin_activities_aggregate';\n aggregate?: Maybe<Coin_Activities_Aggregate_Fields>;\n nodes: Array<Coin_Activities>;\n};\n\nexport type Coin_Activities_Aggregate_Bool_Exp = {\n bool_and?: InputMaybe<Coin_Activities_Aggregate_Bool_Exp_Bool_And>;\n bool_or?: InputMaybe<Coin_Activities_Aggregate_Bool_Exp_Bool_Or>;\n count?: InputMaybe<Coin_Activities_Aggregate_Bool_Exp_Count>;\n};\n\nexport type Coin_Activities_Aggregate_Bool_Exp_Bool_And = {\n arguments: Coin_Activities_Select_Column_Coin_Activities_Aggregate_Bool_Exp_Bool_And_Arguments_Columns;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n filter?: InputMaybe<Coin_Activities_Bool_Exp>;\n predicate: Boolean_Comparison_Exp;\n};\n\nexport type Coin_Activities_Aggregate_Bool_Exp_Bool_Or = {\n arguments: Coin_Activities_Select_Column_Coin_Activities_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n filter?: InputMaybe<Coin_Activities_Bool_Exp>;\n predicate: Boolean_Comparison_Exp;\n};\n\nexport type Coin_Activities_Aggregate_Bool_Exp_Count = {\n arguments?: InputMaybe<Array<Coin_Activities_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n filter?: InputMaybe<Coin_Activities_Bool_Exp>;\n predicate: Int_Comparison_Exp;\n};\n\n/** aggregate fields of \"legacy_migration_v1.coin_activities\" */\nexport type Coin_Activities_Aggregate_Fields = {\n __typename?: 'coin_activities_aggregate_fields';\n avg?: Maybe<Coin_Activities_Avg_Fields>;\n count: Scalars['Int']['output'];\n max?: Maybe<Coin_Activities_Max_Fields>;\n min?: Maybe<Coin_Activities_Min_Fields>;\n stddev?: Maybe<Coin_Activities_Stddev_Fields>;\n stddev_pop?: Maybe<Coin_Activities_Stddev_Pop_Fields>;\n stddev_samp?: Maybe<Coin_Activities_Stddev_Samp_Fields>;\n sum?: Maybe<Coin_Activities_Sum_Fields>;\n var_pop?: Maybe<Coin_Activities_Var_Pop_Fields>;\n var_samp?: Maybe<Coin_Activities_Var_Samp_Fields>;\n variance?: Maybe<Coin_Activities_Variance_Fields>;\n};\n\n\n/** aggregate fields of \"legacy_migration_v1.coin_activities\" */\nexport type Coin_Activities_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Coin_Activities_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** order by aggregate values of table \"legacy_migration_v1.coin_activities\" */\nexport type Coin_Activities_Aggregate_Order_By = {\n avg?: InputMaybe<Coin_Activities_Avg_Order_By>;\n count?: InputMaybe<Order_By>;\n max?: InputMaybe<Coin_Activities_Max_Order_By>;\n min?: InputMaybe<Coin_Activities_Min_Order_By>;\n stddev?: InputMaybe<Coin_Activities_Stddev_Order_By>;\n stddev_pop?: InputMaybe<Coin_Activities_Stddev_Pop_Order_By>;\n stddev_samp?: InputMaybe<Coin_Activities_Stddev_Samp_Order_By>;\n sum?: InputMaybe<Coin_Activities_Sum_Order_By>;\n var_pop?: InputMaybe<Coin_Activities_Var_Pop_Order_By>;\n var_samp?: InputMaybe<Coin_Activities_Var_Samp_Order_By>;\n variance?: InputMaybe<Coin_Activities_Variance_Order_By>;\n};\n\n/** aggregate avg on columns */\nexport type Coin_Activities_Avg_Fields = {\n __typename?: 'coin_activities_avg_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n block_height?: Maybe<Scalars['Float']['output']>;\n event_creation_number?: Maybe<Scalars['Float']['output']>;\n event_index?: Maybe<Scalars['Float']['output']>;\n event_sequence_number?: Maybe<Scalars['Float']['output']>;\n storage_refund_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by avg() on columns of table \"legacy_migration_v1.coin_activities\" */\nexport type Coin_Activities_Avg_Order_By = {\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** Boolean expression to filter rows from the table \"legacy_migration_v1.coin_activities\". All fields are combined with a logical 'AND'. */\nexport type Coin_Activities_Bool_Exp = {\n _and?: InputMaybe<Array<Coin_Activities_Bool_Exp>>;\n _not?: InputMaybe<Coin_Activities_Bool_Exp>;\n _or?: InputMaybe<Array<Coin_Activities_Bool_Exp>>;\n activity_type?: InputMaybe<String_Comparison_Exp>;\n amount?: InputMaybe<Numeric_Comparison_Exp>;\n aptos_names?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n aptos_names_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Bool_Exp>;\n block_height?: InputMaybe<Bigint_Comparison_Exp>;\n coin_info?: InputMaybe<Coin_Infos_Bool_Exp>;\n coin_type?: InputMaybe<String_Comparison_Exp>;\n entry_function_id_str?: InputMaybe<String_Comparison_Exp>;\n event_account_address?: InputMaybe<String_Comparison_Exp>;\n event_creation_number?: InputMaybe<Int_Comparison_Exp>;\n event_index?: InputMaybe<Bigint_Comparison_Exp>;\n event_sequence_number?: InputMaybe<Int_Comparison_Exp>;\n is_gas_fee?: InputMaybe<Boolean_Comparison_Exp>;\n is_transaction_success?: InputMaybe<Boolean_Comparison_Exp>;\n owner_address?: InputMaybe<String_Comparison_Exp>;\n storage_refund_amount?: InputMaybe<Numeric_Comparison_Exp>;\n transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Coin_Activities_Max_Fields = {\n __typename?: 'coin_activities_max_fields';\n activity_type?: Maybe<Scalars['String']['output']>;\n amount?: Maybe<Scalars['numeric']['output']>;\n block_height?: Maybe<Scalars['bigint']['output']>;\n coin_type?: Maybe<Scalars['String']['output']>;\n entry_function_id_str?: Maybe<Scalars['String']['output']>;\n event_account_address?: Maybe<Scalars['String']['output']>;\n event_creation_number?: Maybe<Scalars['Int']['output']>;\n event_index?: Maybe<Scalars['bigint']['output']>;\n event_sequence_number?: Maybe<Scalars['Int']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n storage_refund_amount?: Maybe<Scalars['numeric']['output']>;\n transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** order by max() on columns of table \"legacy_migration_v1.coin_activities\" */\nexport type Coin_Activities_Max_Order_By = {\n activity_type?: InputMaybe<Order_By>;\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n coin_type?: InputMaybe<Order_By>;\n entry_function_id_str?: InputMaybe<Order_By>;\n event_account_address?: InputMaybe<Order_By>;\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate min on columns */\nexport type Coin_Activities_Min_Fields = {\n __typename?: 'coin_activities_min_fields';\n activity_type?: Maybe<Scalars['String']['output']>;\n amount?: Maybe<Scalars['numeric']['output']>;\n block_height?: Maybe<Scalars['bigint']['output']>;\n coin_type?: Maybe<Scalars['String']['output']>;\n entry_function_id_str?: Maybe<Scalars['String']['output']>;\n event_account_address?: Maybe<Scalars['String']['output']>;\n event_creation_number?: Maybe<Scalars['Int']['output']>;\n event_index?: Maybe<Scalars['bigint']['output']>;\n event_sequence_number?: Maybe<Scalars['Int']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n storage_refund_amount?: Maybe<Scalars['numeric']['output']>;\n transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** order by min() on columns of table \"legacy_migration_v1.coin_activities\" */\nexport type Coin_Activities_Min_Order_By = {\n activity_type?: InputMaybe<Order_By>;\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n coin_type?: InputMaybe<Order_By>;\n entry_function_id_str?: InputMaybe<Order_By>;\n event_account_address?: InputMaybe<Order_By>;\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** Ordering options when selecting data from \"legacy_migration_v1.coin_activities\". */\nexport type Coin_Activities_Order_By = {\n activity_type?: InputMaybe<Order_By>;\n amount?: InputMaybe<Order_By>;\n aptos_names_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Order_By>;\n block_height?: InputMaybe<Order_By>;\n coin_info?: InputMaybe<Coin_Infos_Order_By>;\n coin_type?: InputMaybe<Order_By>;\n entry_function_id_str?: InputMaybe<Order_By>;\n event_account_address?: InputMaybe<Order_By>;\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n is_gas_fee?: InputMaybe<Order_By>;\n is_transaction_success?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"legacy_migration_v1.coin_activities\" */\nexport enum Coin_Activities_Select_Column {\n /** column name */\n ActivityType = 'activity_type',\n /** column name */\n Amount = 'amount',\n /** column name */\n BlockHeight = 'block_height',\n /** column name */\n CoinType = 'coin_type',\n /** column name */\n EntryFunctionIdStr = 'entry_function_id_str',\n /** column name */\n EventAccountAddress = 'event_account_address',\n /** column name */\n EventCreationNumber = 'event_creation_number',\n /** column name */\n EventIndex = 'event_index',\n /** column name */\n EventSequenceNumber = 'event_sequence_number',\n /** column name */\n IsGasFee = 'is_gas_fee',\n /** column name */\n IsTransactionSuccess = 'is_transaction_success',\n /** column name */\n OwnerAddress = 'owner_address',\n /** column name */\n StorageRefundAmount = 'storage_refund_amount',\n /** column name */\n TransactionTimestamp = 'transaction_timestamp',\n /** column name */\n TransactionVersion = 'transaction_version'\n}\n\n/** select \"coin_activities_aggregate_bool_exp_bool_and_arguments_columns\" columns of table \"legacy_migration_v1.coin_activities\" */\nexport enum Coin_Activities_Select_Column_Coin_Activities_Aggregate_Bool_Exp_Bool_And_Arguments_Columns {\n /** column name */\n IsGasFee = 'is_gas_fee',\n /** column name */\n IsTransactionSuccess = 'is_transaction_success'\n}\n\n/** select \"coin_activities_aggregate_bool_exp_bool_or_arguments_columns\" columns of table \"legacy_migration_v1.coin_activities\" */\nexport enum Coin_Activities_Select_Column_Coin_Activities_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns {\n /** column name */\n IsGasFee = 'is_gas_fee',\n /** column name */\n IsTransactionSuccess = 'is_transaction_success'\n}\n\n/** aggregate stddev on columns */\nexport type Coin_Activities_Stddev_Fields = {\n __typename?: 'coin_activities_stddev_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n block_height?: Maybe<Scalars['Float']['output']>;\n event_creation_number?: Maybe<Scalars['Float']['output']>;\n event_index?: Maybe<Scalars['Float']['output']>;\n event_sequence_number?: Maybe<Scalars['Float']['output']>;\n storage_refund_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev() on columns of table \"legacy_migration_v1.coin_activities\" */\nexport type Coin_Activities_Stddev_Order_By = {\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate stddev_pop on columns */\nexport type Coin_Activities_Stddev_Pop_Fields = {\n __typename?: 'coin_activities_stddev_pop_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n block_height?: Maybe<Scalars['Float']['output']>;\n event_creation_number?: Maybe<Scalars['Float']['output']>;\n event_index?: Maybe<Scalars['Float']['output']>;\n event_sequence_number?: Maybe<Scalars['Float']['output']>;\n storage_refund_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev_pop() on columns of table \"legacy_migration_v1.coin_activities\" */\nexport type Coin_Activities_Stddev_Pop_Order_By = {\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate stddev_samp on columns */\nexport type Coin_Activities_Stddev_Samp_Fields = {\n __typename?: 'coin_activities_stddev_samp_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n block_height?: Maybe<Scalars['Float']['output']>;\n event_creation_number?: Maybe<Scalars['Float']['output']>;\n event_index?: Maybe<Scalars['Float']['output']>;\n event_sequence_number?: Maybe<Scalars['Float']['output']>;\n storage_refund_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev_samp() on columns of table \"legacy_migration_v1.coin_activities\" */\nexport type Coin_Activities_Stddev_Samp_Order_By = {\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** Streaming cursor of the table \"coin_activities\" */\nexport type Coin_Activities_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Coin_Activities_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Coin_Activities_Stream_Cursor_Value_Input = {\n activity_type?: InputMaybe<Scalars['String']['input']>;\n amount?: InputMaybe<Scalars['numeric']['input']>;\n block_height?: InputMaybe<Scalars['bigint']['input']>;\n coin_type?: InputMaybe<Scalars['String']['input']>;\n entry_function_id_str?: InputMaybe<Scalars['String']['input']>;\n event_account_address?: InputMaybe<Scalars['String']['input']>;\n event_creation_number?: InputMaybe<Scalars['Int']['input']>;\n event_index?: InputMaybe<Scalars['bigint']['input']>;\n event_sequence_number?: InputMaybe<Scalars['Int']['input']>;\n is_gas_fee?: InputMaybe<Scalars['Boolean']['input']>;\n is_transaction_success?: InputMaybe<Scalars['Boolean']['input']>;\n owner_address?: InputMaybe<Scalars['String']['input']>;\n storage_refund_amount?: InputMaybe<Scalars['numeric']['input']>;\n transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** aggregate sum on columns */\nexport type Coin_Activities_Sum_Fields = {\n __typename?: 'coin_activities_sum_fields';\n amount?: Maybe<Scalars['numeric']['output']>;\n block_height?: Maybe<Scalars['bigint']['output']>;\n event_creation_number?: Maybe<Scalars['Int']['output']>;\n event_index?: Maybe<Scalars['bigint']['output']>;\n event_sequence_number?: Maybe<Scalars['Int']['output']>;\n storage_refund_amount?: Maybe<Scalars['numeric']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** order by sum() on columns of table \"legacy_migration_v1.coin_activities\" */\nexport type Coin_Activities_Sum_Order_By = {\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate var_pop on columns */\nexport type Coin_Activities_Var_Pop_Fields = {\n __typename?: 'coin_activities_var_pop_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n block_height?: Maybe<Scalars['Float']['output']>;\n event_creation_number?: Maybe<Scalars['Float']['output']>;\n event_index?: Maybe<Scalars['Float']['output']>;\n event_sequence_number?: Maybe<Scalars['Float']['output']>;\n storage_refund_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by var_pop() on columns of table \"legacy_migration_v1.coin_activities\" */\nexport type Coin_Activities_Var_Pop_Order_By = {\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate var_samp on columns */\nexport type Coin_Activities_Var_Samp_Fields = {\n __typename?: 'coin_activities_var_samp_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n block_height?: Maybe<Scalars['Float']['output']>;\n event_creation_number?: Maybe<Scalars['Float']['output']>;\n event_index?: Maybe<Scalars['Float']['output']>;\n event_sequence_number?: Maybe<Scalars['Float']['output']>;\n storage_refund_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by var_samp() on columns of table \"legacy_migration_v1.coin_activities\" */\nexport type Coin_Activities_Var_Samp_Order_By = {\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate variance on columns */\nexport type Coin_Activities_Variance_Fields = {\n __typename?: 'coin_activities_variance_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n block_height?: Maybe<Scalars['Float']['output']>;\n event_creation_number?: Maybe<Scalars['Float']['output']>;\n event_index?: Maybe<Scalars['Float']['output']>;\n event_sequence_number?: Maybe<Scalars['Float']['output']>;\n storage_refund_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by variance() on columns of table \"legacy_migration_v1.coin_activities\" */\nexport type Coin_Activities_Variance_Order_By = {\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** columns and relationships of \"legacy_migration_v1.coin_balances\" */\nexport type Coin_Balances = {\n __typename?: 'coin_balances';\n amount?: Maybe<Scalars['numeric']['output']>;\n coin_type?: Maybe<Scalars['String']['output']>;\n coin_type_hash?: Maybe<Scalars['String']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"legacy_migration_v1.coin_balances\". All fields are combined with a logical 'AND'. */\nexport type Coin_Balances_Bool_Exp = {\n _and?: InputMaybe<Array<Coin_Balances_Bool_Exp>>;\n _not?: InputMaybe<Coin_Balances_Bool_Exp>;\n _or?: InputMaybe<Array<Coin_Balances_Bool_Exp>>;\n amount?: InputMaybe<Numeric_Comparison_Exp>;\n coin_type?: InputMaybe<String_Comparison_Exp>;\n coin_type_hash?: InputMaybe<String_Comparison_Exp>;\n owner_address?: InputMaybe<String_Comparison_Exp>;\n transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"legacy_migration_v1.coin_balances\". */\nexport type Coin_Balances_Order_By = {\n amount?: InputMaybe<Order_By>;\n coin_type?: InputMaybe<Order_By>;\n coin_type_hash?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"legacy_migration_v1.coin_balances\" */\nexport enum Coin_Balances_Select_Column {\n /** column name */\n Amount = 'amount',\n /** column name */\n CoinType = 'coin_type',\n /** column name */\n CoinTypeHash = 'coin_type_hash',\n /** column name */\n OwnerAddress = 'owner_address',\n /** column name */\n TransactionTimestamp = 'transaction_timestamp',\n /** column name */\n TransactionVersion = 'transaction_version'\n}\n\n/** Streaming cursor of the table \"coin_balances\" */\nexport type Coin_Balances_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Coin_Balances_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Coin_Balances_Stream_Cursor_Value_Input = {\n amount?: InputMaybe<Scalars['numeric']['input']>;\n coin_type?: InputMaybe<Scalars['String']['input']>;\n coin_type_hash?: InputMaybe<Scalars['String']['input']>;\n owner_address?: InputMaybe<Scalars['String']['input']>;\n transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** columns and relationships of \"legacy_migration_v1.coin_infos\" */\nexport type Coin_Infos = {\n __typename?: 'coin_infos';\n coin_type?: Maybe<Scalars['String']['output']>;\n coin_type_hash?: Maybe<Scalars['String']['output']>;\n creator_address?: Maybe<Scalars['String']['output']>;\n decimals?: Maybe<Scalars['Int']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n supply_aggregator_table_handle?: Maybe<Scalars['String']['output']>;\n supply_aggregator_table_key?: Maybe<Scalars['String']['output']>;\n symbol?: Maybe<Scalars['String']['output']>;\n transaction_created_timestamp?: Maybe<Scalars['timestamp']['output']>;\n transaction_version_created?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"legacy_migration_v1.coin_infos\". All fields are combined with a logical 'AND'. */\nexport type Coin_Infos_Bool_Exp = {\n _and?: InputMaybe<Array<Coin_Infos_Bool_Exp>>;\n _not?: InputMaybe<Coin_Infos_Bool_Exp>;\n _or?: InputMaybe<Array<Coin_Infos_Bool_Exp>>;\n coin_type?: InputMaybe<String_Comparison_Exp>;\n coin_type_hash?: InputMaybe<String_Comparison_Exp>;\n creator_address?: InputMaybe<String_Comparison_Exp>;\n decimals?: InputMaybe<Int_Comparison_Exp>;\n name?: InputMaybe<String_Comparison_Exp>;\n supply_aggregator_table_handle?: InputMaybe<String_Comparison_Exp>;\n supply_aggregator_table_key?: InputMaybe<String_Comparison_Exp>;\n symbol?: InputMaybe<String_Comparison_Exp>;\n transaction_created_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n transaction_version_created?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"legacy_migration_v1.coin_infos\". */\nexport type Coin_Infos_Order_By = {\n coin_type?: InputMaybe<Order_By>;\n coin_type_hash?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n decimals?: InputMaybe<Order_By>;\n name?: InputMaybe<Order_By>;\n supply_aggregator_table_handle?: InputMaybe<Order_By>;\n supply_aggregator_table_key?: InputMaybe<Order_By>;\n symbol?: InputMaybe<Order_By>;\n transaction_created_timestamp?: InputMaybe<Order_By>;\n transaction_version_created?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"legacy_migration_v1.coin_infos\" */\nexport enum Coin_Infos_Select_Column {\n /** column name */\n CoinType = 'coin_type',\n /** column name */\n CoinTypeHash = 'coin_type_hash',\n /** column name */\n CreatorAddress = 'creator_address',\n /** column name */\n Decimals = 'decimals',\n /** column name */\n Name = 'name',\n /** column name */\n SupplyAggregatorTableHandle = 'supply_aggregator_table_handle',\n /** column name */\n SupplyAggregatorTableKey = 'supply_aggregator_table_key',\n /** column name */\n Symbol = 'symbol',\n /** column name */\n TransactionCreatedTimestamp = 'transaction_created_timestamp',\n /** column name */\n TransactionVersionCreated = 'transaction_version_created'\n}\n\n/** Streaming cursor of the table \"coin_infos\" */\nexport type Coin_Infos_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Coin_Infos_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Coin_Infos_Stream_Cursor_Value_Input = {\n coin_type?: InputMaybe<Scalars['String']['input']>;\n coin_type_hash?: InputMaybe<Scalars['String']['input']>;\n creator_address?: InputMaybe<Scalars['String']['input']>;\n decimals?: InputMaybe<Scalars['Int']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n supply_aggregator_table_handle?: InputMaybe<Scalars['String']['input']>;\n supply_aggregator_table_key?: InputMaybe<Scalars['String']['input']>;\n symbol?: InputMaybe<Scalars['String']['input']>;\n transaction_created_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n transaction_version_created?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** columns and relationships of \"coin_supply\" */\nexport type Coin_Supply = {\n __typename?: 'coin_supply';\n coin_type: Scalars['String']['output'];\n coin_type_hash: Scalars['String']['output'];\n supply: Scalars['numeric']['output'];\n transaction_epoch: Scalars['bigint']['output'];\n transaction_timestamp: Scalars['timestamp']['output'];\n transaction_version: Scalars['bigint']['output'];\n};\n\n/** Boolean expression to filter rows from the table \"coin_supply\". All fields are combined with a logical 'AND'. */\nexport type Coin_Supply_Bool_Exp = {\n _and?: InputMaybe<Array<Coin_Supply_Bool_Exp>>;\n _not?: InputMaybe<Coin_Supply_Bool_Exp>;\n _or?: InputMaybe<Array<Coin_Supply_Bool_Exp>>;\n coin_type?: InputMaybe<String_Comparison_Exp>;\n coin_type_hash?: InputMaybe<String_Comparison_Exp>;\n supply?: InputMaybe<Numeric_Comparison_Exp>;\n transaction_epoch?: InputMaybe<Bigint_Comparison_Exp>;\n transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"coin_supply\". */\nexport type Coin_Supply_Order_By = {\n coin_type?: InputMaybe<Order_By>;\n coin_type_hash?: InputMaybe<Order_By>;\n supply?: InputMaybe<Order_By>;\n transaction_epoch?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"coin_supply\" */\nexport enum Coin_Supply_Select_Column {\n /** column name */\n CoinType = 'coin_type',\n /** column name */\n CoinTypeHash = 'coin_type_hash',\n /** column name */\n Supply = 'supply',\n /** column name */\n TransactionEpoch = 'transaction_epoch',\n /** column name */\n TransactionTimestamp = 'transaction_timestamp',\n /** column name */\n TransactionVersion = 'transaction_version'\n}\n\n/** Streaming cursor of the table \"coin_supply\" */\nexport type Coin_Supply_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Coin_Supply_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Coin_Supply_Stream_Cursor_Value_Input = {\n coin_type?: InputMaybe<Scalars['String']['input']>;\n coin_type_hash?: InputMaybe<Scalars['String']['input']>;\n supply?: InputMaybe<Scalars['numeric']['input']>;\n transaction_epoch?: InputMaybe<Scalars['bigint']['input']>;\n transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** columns and relationships of \"legacy_migration_v1.collection_datas\" */\nexport type Collection_Datas = {\n __typename?: 'collection_datas';\n collection_data_id_hash?: Maybe<Scalars['String']['output']>;\n collection_name?: Maybe<Scalars['String']['output']>;\n creator_address?: Maybe<Scalars['String']['output']>;\n description?: Maybe<Scalars['String']['output']>;\n description_mutable?: Maybe<Scalars['Boolean']['output']>;\n maximum?: Maybe<Scalars['numeric']['output']>;\n maximum_mutable?: Maybe<Scalars['Boolean']['output']>;\n metadata_uri?: Maybe<Scalars['String']['output']>;\n supply?: Maybe<Scalars['numeric']['output']>;\n table_handle?: Maybe<Scalars['String']['output']>;\n transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n uri_mutable?: Maybe<Scalars['Boolean']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"legacy_migration_v1.collection_datas\". All fields are combined with a logical 'AND'. */\nexport type Collection_Datas_Bool_Exp = {\n _and?: InputMaybe<Array<Collection_Datas_Bool_Exp>>;\n _not?: InputMaybe<Collection_Datas_Bool_Exp>;\n _or?: InputMaybe<Array<Collection_Datas_Bool_Exp>>;\n collection_data_id_hash?: InputMaybe<String_Comparison_Exp>;\n collection_name?: InputMaybe<String_Comparison_Exp>;\n creator_address?: InputMaybe<String_Comparison_Exp>;\n description?: InputMaybe<String_Comparison_Exp>;\n description_mutable?: InputMaybe<Boolean_Comparison_Exp>;\n maximum?: InputMaybe<Numeric_Comparison_Exp>;\n maximum_mutable?: InputMaybe<Boolean_Comparison_Exp>;\n metadata_uri?: InputMaybe<String_Comparison_Exp>;\n supply?: InputMaybe<Numeric_Comparison_Exp>;\n table_handle?: InputMaybe<String_Comparison_Exp>;\n transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n uri_mutable?: InputMaybe<Boolean_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"legacy_migration_v1.collection_datas\". */\nexport type Collection_Datas_Order_By = {\n collection_data_id_hash?: InputMaybe<Order_By>;\n collection_name?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n description?: InputMaybe<Order_By>;\n description_mutable?: InputMaybe<Order_By>;\n maximum?: InputMaybe<Order_By>;\n maximum_mutable?: InputMaybe<Order_By>;\n metadata_uri?: InputMaybe<Order_By>;\n supply?: InputMaybe<Order_By>;\n table_handle?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n uri_mutable?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"legacy_migration_v1.collection_datas\" */\nexport enum Collection_Datas_Select_Column {\n /** column name */\n CollectionDataIdHash = 'collection_data_id_hash',\n /** column name */\n CollectionName = 'collection_name',\n /** column name */\n CreatorAddress = 'creator_address',\n /** column name */\n Description = 'description',\n /** column name */\n DescriptionMutable = 'description_mutable',\n /** column name */\n Maximum = 'maximum',\n /** column name */\n MaximumMutable = 'maximum_mutable',\n /** column name */\n MetadataUri = 'metadata_uri',\n /** column name */\n Supply = 'supply',\n /** column name */\n TableHandle = 'table_handle',\n /** column name */\n TransactionTimestamp = 'transaction_timestamp',\n /** column name */\n TransactionVersion = 'transaction_version',\n /** column name */\n UriMutable = 'uri_mutable'\n}\n\n/** Streaming cursor of the table \"collection_datas\" */\nexport type Collection_Datas_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Collection_Datas_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Collection_Datas_Stream_Cursor_Value_Input = {\n collection_data_id_hash?: InputMaybe<Scalars['String']['input']>;\n collection_name?: InputMaybe<Scalars['String']['input']>;\n creator_address?: InputMaybe<Scalars['String']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n description_mutable?: InputMaybe<Scalars['Boolean']['input']>;\n maximum?: InputMaybe<Scalars['numeric']['input']>;\n maximum_mutable?: InputMaybe<Scalars['Boolean']['input']>;\n metadata_uri?: InputMaybe<Scalars['String']['input']>;\n supply?: InputMaybe<Scalars['numeric']['input']>;\n table_handle?: InputMaybe<Scalars['String']['input']>;\n transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n uri_mutable?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** columns and relationships of \"legacy_migration_v1.current_ans_lookup\" */\nexport type Current_Ans_Lookup = {\n __typename?: 'current_ans_lookup';\n /** An array relationship */\n all_token_ownerships: Array<Current_Token_Ownerships>;\n /** An aggregate relationship */\n all_token_ownerships_aggregate: Current_Token_Ownerships_Aggregate;\n domain?: Maybe<Scalars['String']['output']>;\n expiration_timestamp?: Maybe<Scalars['timestamp']['output']>;\n is_deleted?: Maybe<Scalars['Boolean']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n registered_address?: Maybe<Scalars['String']['output']>;\n subdomain?: Maybe<Scalars['String']['output']>;\n token_name?: Maybe<Scalars['String']['output']>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.current_ans_lookup\" */\nexport type Current_Ans_LookupAll_Token_OwnershipsArgs = {\n distinct_on?: InputMaybe<Array<Current_Token_Ownerships_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Ownerships_Order_By>>;\n where?: InputMaybe<Current_Token_Ownerships_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.current_ans_lookup\" */\nexport type Current_Ans_LookupAll_Token_Ownerships_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Token_Ownerships_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Ownerships_Order_By>>;\n where?: InputMaybe<Current_Token_Ownerships_Bool_Exp>;\n};\n\n/** Boolean expression to filter rows from the table \"legacy_migration_v1.current_ans_lookup\". All fields are combined with a logical 'AND'. */\nexport type Current_Ans_Lookup_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Ans_Lookup_Bool_Exp>>;\n _not?: InputMaybe<Current_Ans_Lookup_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Ans_Lookup_Bool_Exp>>;\n all_token_ownerships?: InputMaybe<Current_Token_Ownerships_Bool_Exp>;\n all_token_ownerships_aggregate?: InputMaybe<Current_Token_Ownerships_Aggregate_Bool_Exp>;\n domain?: InputMaybe<String_Comparison_Exp>;\n expiration_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n is_deleted?: InputMaybe<Boolean_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n registered_address?: InputMaybe<String_Comparison_Exp>;\n subdomain?: InputMaybe<String_Comparison_Exp>;\n token_name?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"legacy_migration_v1.current_ans_lookup\". */\nexport type Current_Ans_Lookup_Order_By = {\n all_token_ownerships_aggregate?: InputMaybe<Current_Token_Ownerships_Aggregate_Order_By>;\n domain?: InputMaybe<Order_By>;\n expiration_timestamp?: InputMaybe<Order_By>;\n is_deleted?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n registered_address?: InputMaybe<Order_By>;\n subdomain?: InputMaybe<Order_By>;\n token_name?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"legacy_migration_v1.current_ans_lookup\" */\nexport enum Current_Ans_Lookup_Select_Column {\n /** column name */\n Domain = 'domain',\n /** column name */\n ExpirationTimestamp = 'expiration_timestamp',\n /** column name */\n IsDeleted = 'is_deleted',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n RegisteredAddress = 'registered_address',\n /** column name */\n Subdomain = 'subdomain',\n /** column name */\n TokenName = 'token_name'\n}\n\n/** Streaming cursor of the table \"current_ans_lookup\" */\nexport type Current_Ans_Lookup_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Ans_Lookup_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Ans_Lookup_Stream_Cursor_Value_Input = {\n domain?: InputMaybe<Scalars['String']['input']>;\n expiration_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n is_deleted?: InputMaybe<Scalars['Boolean']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n registered_address?: InputMaybe<Scalars['String']['input']>;\n subdomain?: InputMaybe<Scalars['String']['input']>;\n token_name?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"current_ans_lookup_v2\" */\nexport type Current_Ans_Lookup_V2 = {\n __typename?: 'current_ans_lookup_v2';\n domain: Scalars['String']['output'];\n expiration_timestamp: Scalars['timestamp']['output'];\n is_deleted: Scalars['Boolean']['output'];\n last_transaction_version: Scalars['bigint']['output'];\n registered_address?: Maybe<Scalars['String']['output']>;\n subdomain: Scalars['String']['output'];\n token_name?: Maybe<Scalars['String']['output']>;\n token_standard: Scalars['String']['output'];\n};\n\n/** Boolean expression to filter rows from the table \"current_ans_lookup_v2\". All fields are combined with a logical 'AND'. */\nexport type Current_Ans_Lookup_V2_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Ans_Lookup_V2_Bool_Exp>>;\n _not?: InputMaybe<Current_Ans_Lookup_V2_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Ans_Lookup_V2_Bool_Exp>>;\n domain?: InputMaybe<String_Comparison_Exp>;\n expiration_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n is_deleted?: InputMaybe<Boolean_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n registered_address?: InputMaybe<String_Comparison_Exp>;\n subdomain?: InputMaybe<String_Comparison_Exp>;\n token_name?: InputMaybe<String_Comparison_Exp>;\n token_standard?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"current_ans_lookup_v2\". */\nexport type Current_Ans_Lookup_V2_Order_By = {\n domain?: InputMaybe<Order_By>;\n expiration_timestamp?: InputMaybe<Order_By>;\n is_deleted?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n registered_address?: InputMaybe<Order_By>;\n subdomain?: InputMaybe<Order_By>;\n token_name?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"current_ans_lookup_v2\" */\nexport enum Current_Ans_Lookup_V2_Select_Column {\n /** column name */\n Domain = 'domain',\n /** column name */\n ExpirationTimestamp = 'expiration_timestamp',\n /** column name */\n IsDeleted = 'is_deleted',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n RegisteredAddress = 'registered_address',\n /** column name */\n Subdomain = 'subdomain',\n /** column name */\n TokenName = 'token_name',\n /** column name */\n TokenStandard = 'token_standard'\n}\n\n/** Streaming cursor of the table \"current_ans_lookup_v2\" */\nexport type Current_Ans_Lookup_V2_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Ans_Lookup_V2_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Ans_Lookup_V2_Stream_Cursor_Value_Input = {\n domain?: InputMaybe<Scalars['String']['input']>;\n expiration_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n is_deleted?: InputMaybe<Scalars['Boolean']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n registered_address?: InputMaybe<Scalars['String']['input']>;\n subdomain?: InputMaybe<Scalars['String']['input']>;\n token_name?: InputMaybe<Scalars['String']['input']>;\n token_standard?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"current_aptos_names\" */\nexport type Current_Aptos_Names = {\n __typename?: 'current_aptos_names';\n domain?: Maybe<Scalars['String']['output']>;\n domain_expiration_timestamp?: Maybe<Scalars['timestamp']['output']>;\n domain_with_suffix?: Maybe<Scalars['String']['output']>;\n expiration_timestamp?: Maybe<Scalars['timestamp']['output']>;\n is_active?: Maybe<Scalars['Boolean']['output']>;\n /** An object relationship */\n is_domain_owner?: Maybe<Current_Aptos_Names>;\n is_primary?: Maybe<Scalars['Boolean']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n registered_address?: Maybe<Scalars['String']['output']>;\n subdomain?: Maybe<Scalars['String']['output']>;\n subdomain_expiration_policy?: Maybe<Scalars['bigint']['output']>;\n token_name?: Maybe<Scalars['String']['output']>;\n token_standard?: Maybe<Scalars['String']['output']>;\n};\n\n/** aggregated selection of \"current_aptos_names\" */\nexport type Current_Aptos_Names_Aggregate = {\n __typename?: 'current_aptos_names_aggregate';\n aggregate?: Maybe<Current_Aptos_Names_Aggregate_Fields>;\n nodes: Array<Current_Aptos_Names>;\n};\n\nexport type Current_Aptos_Names_Aggregate_Bool_Exp = {\n bool_and?: InputMaybe<Current_Aptos_Names_Aggregate_Bool_Exp_Bool_And>;\n bool_or?: InputMaybe<Current_Aptos_Names_Aggregate_Bool_Exp_Bool_Or>;\n count?: InputMaybe<Current_Aptos_Names_Aggregate_Bool_Exp_Count>;\n};\n\nexport type Current_Aptos_Names_Aggregate_Bool_Exp_Bool_And = {\n arguments: Current_Aptos_Names_Select_Column_Current_Aptos_Names_Aggregate_Bool_Exp_Bool_And_Arguments_Columns;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n filter?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n predicate: Boolean_Comparison_Exp;\n};\n\nexport type Current_Aptos_Names_Aggregate_Bool_Exp_Bool_Or = {\n arguments: Current_Aptos_Names_Select_Column_Current_Aptos_Names_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n filter?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n predicate: Boolean_Comparison_Exp;\n};\n\nexport type Current_Aptos_Names_Aggregate_Bool_Exp_Count = {\n arguments?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n filter?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n predicate: Int_Comparison_Exp;\n};\n\n/** aggregate fields of \"current_aptos_names\" */\nexport type Current_Aptos_Names_Aggregate_Fields = {\n __typename?: 'current_aptos_names_aggregate_fields';\n avg?: Maybe<Current_Aptos_Names_Avg_Fields>;\n count: Scalars['Int']['output'];\n max?: Maybe<Current_Aptos_Names_Max_Fields>;\n min?: Maybe<Current_Aptos_Names_Min_Fields>;\n stddev?: Maybe<Current_Aptos_Names_Stddev_Fields>;\n stddev_pop?: Maybe<Current_Aptos_Names_Stddev_Pop_Fields>;\n stddev_samp?: Maybe<Current_Aptos_Names_Stddev_Samp_Fields>;\n sum?: Maybe<Current_Aptos_Names_Sum_Fields>;\n var_pop?: Maybe<Current_Aptos_Names_Var_Pop_Fields>;\n var_samp?: Maybe<Current_Aptos_Names_Var_Samp_Fields>;\n variance?: Maybe<Current_Aptos_Names_Variance_Fields>;\n};\n\n\n/** aggregate fields of \"current_aptos_names\" */\nexport type Current_Aptos_Names_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** order by aggregate values of table \"current_aptos_names\" */\nexport type Current_Aptos_Names_Aggregate_Order_By = {\n avg?: InputMaybe<Current_Aptos_Names_Avg_Order_By>;\n count?: InputMaybe<Order_By>;\n max?: InputMaybe<Current_Aptos_Names_Max_Order_By>;\n min?: InputMaybe<Current_Aptos_Names_Min_Order_By>;\n stddev?: InputMaybe<Current_Aptos_Names_Stddev_Order_By>;\n stddev_pop?: InputMaybe<Current_Aptos_Names_Stddev_Pop_Order_By>;\n stddev_samp?: InputMaybe<Current_Aptos_Names_Stddev_Samp_Order_By>;\n sum?: InputMaybe<Current_Aptos_Names_Sum_Order_By>;\n var_pop?: InputMaybe<Current_Aptos_Names_Var_Pop_Order_By>;\n var_samp?: InputMaybe<Current_Aptos_Names_Var_Samp_Order_By>;\n variance?: InputMaybe<Current_Aptos_Names_Variance_Order_By>;\n};\n\n/** aggregate avg on columns */\nexport type Current_Aptos_Names_Avg_Fields = {\n __typename?: 'current_aptos_names_avg_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n subdomain_expiration_policy?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by avg() on columns of table \"current_aptos_names\" */\nexport type Current_Aptos_Names_Avg_Order_By = {\n last_transaction_version?: InputMaybe<Order_By>;\n subdomain_expiration_policy?: InputMaybe<Order_By>;\n};\n\n/** Boolean expression to filter rows from the table \"current_aptos_names\". All fields are combined with a logical 'AND'. */\nexport type Current_Aptos_Names_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Aptos_Names_Bool_Exp>>;\n _not?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Aptos_Names_Bool_Exp>>;\n domain?: InputMaybe<String_Comparison_Exp>;\n domain_expiration_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n domain_with_suffix?: InputMaybe<String_Comparison_Exp>;\n expiration_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n is_active?: InputMaybe<Boolean_Comparison_Exp>;\n is_domain_owner?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n is_primary?: InputMaybe<Boolean_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n owner_address?: InputMaybe<String_Comparison_Exp>;\n registered_address?: InputMaybe<String_Comparison_Exp>;\n subdomain?: InputMaybe<String_Comparison_Exp>;\n subdomain_expiration_policy?: InputMaybe<Bigint_Comparison_Exp>;\n token_name?: InputMaybe<String_Comparison_Exp>;\n token_standard?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Current_Aptos_Names_Max_Fields = {\n __typename?: 'current_aptos_names_max_fields';\n domain?: Maybe<Scalars['String']['output']>;\n domain_expiration_timestamp?: Maybe<Scalars['timestamp']['output']>;\n domain_with_suffix?: Maybe<Scalars['String']['output']>;\n expiration_timestamp?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n registered_address?: Maybe<Scalars['String']['output']>;\n subdomain?: Maybe<Scalars['String']['output']>;\n subdomain_expiration_policy?: Maybe<Scalars['bigint']['output']>;\n token_name?: Maybe<Scalars['String']['output']>;\n token_standard?: Maybe<Scalars['String']['output']>;\n};\n\n/** order by max() on columns of table \"current_aptos_names\" */\nexport type Current_Aptos_Names_Max_Order_By = {\n domain?: InputMaybe<Order_By>;\n domain_expiration_timestamp?: InputMaybe<Order_By>;\n domain_with_suffix?: InputMaybe<Order_By>;\n expiration_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n registered_address?: InputMaybe<Order_By>;\n subdomain?: InputMaybe<Order_By>;\n subdomain_expiration_policy?: InputMaybe<Order_By>;\n token_name?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n};\n\n/** aggregate min on columns */\nexport type Current_Aptos_Names_Min_Fields = {\n __typename?: 'current_aptos_names_min_fields';\n domain?: Maybe<Scalars['String']['output']>;\n domain_expiration_timestamp?: Maybe<Scalars['timestamp']['output']>;\n domain_with_suffix?: Maybe<Scalars['String']['output']>;\n expiration_timestamp?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n registered_address?: Maybe<Scalars['String']['output']>;\n subdomain?: Maybe<Scalars['String']['output']>;\n subdomain_expiration_policy?: Maybe<Scalars['bigint']['output']>;\n token_name?: Maybe<Scalars['String']['output']>;\n token_standard?: Maybe<Scalars['String']['output']>;\n};\n\n/** order by min() on columns of table \"current_aptos_names\" */\nexport type Current_Aptos_Names_Min_Order_By = {\n domain?: InputMaybe<Order_By>;\n domain_expiration_timestamp?: InputMaybe<Order_By>;\n domain_with_suffix?: InputMaybe<Order_By>;\n expiration_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n registered_address?: InputMaybe<Order_By>;\n subdomain?: InputMaybe<Order_By>;\n subdomain_expiration_policy?: InputMaybe<Order_By>;\n token_name?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n};\n\n/** Ordering options when selecting data from \"current_aptos_names\". */\nexport type Current_Aptos_Names_Order_By = {\n domain?: InputMaybe<Order_By>;\n domain_expiration_timestamp?: InputMaybe<Order_By>;\n domain_with_suffix?: InputMaybe<Order_By>;\n expiration_timestamp?: InputMaybe<Order_By>;\n is_active?: InputMaybe<Order_By>;\n is_domain_owner?: InputMaybe<Current_Aptos_Names_Order_By>;\n is_primary?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n registered_address?: InputMaybe<Order_By>;\n subdomain?: InputMaybe<Order_By>;\n subdomain_expiration_policy?: InputMaybe<Order_By>;\n token_name?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"current_aptos_names\" */\nexport enum Current_Aptos_Names_Select_Column {\n /** column name */\n Domain = 'domain',\n /** column name */\n DomainExpirationTimestamp = 'domain_expiration_timestamp',\n /** column name */\n DomainWithSuffix = 'domain_with_suffix',\n /** column name */\n ExpirationTimestamp = 'expiration_timestamp',\n /** column name */\n IsActive = 'is_active',\n /** column name */\n IsPrimary = 'is_primary',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n OwnerAddress = 'owner_address',\n /** column name */\n RegisteredAddress = 'registered_address',\n /** column name */\n Subdomain = 'subdomain',\n /** column name */\n SubdomainExpirationPolicy = 'subdomain_expiration_policy',\n /** column name */\n TokenName = 'token_name',\n /** column name */\n TokenStandard = 'token_standard'\n}\n\n/** select \"current_aptos_names_aggregate_bool_exp_bool_and_arguments_columns\" columns of table \"current_aptos_names\" */\nexport enum Current_Aptos_Names_Select_Column_Current_Aptos_Names_Aggregate_Bool_Exp_Bool_And_Arguments_Columns {\n /** column name */\n IsActive = 'is_active',\n /** column name */\n IsPrimary = 'is_primary'\n}\n\n/** select \"current_aptos_names_aggregate_bool_exp_bool_or_arguments_columns\" columns of table \"current_aptos_names\" */\nexport enum Current_Aptos_Names_Select_Column_Current_Aptos_Names_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns {\n /** column name */\n IsActive = 'is_active',\n /** column name */\n IsPrimary = 'is_primary'\n}\n\n/** aggregate stddev on columns */\nexport type Current_Aptos_Names_Stddev_Fields = {\n __typename?: 'current_aptos_names_stddev_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n subdomain_expiration_policy?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev() on columns of table \"current_aptos_names\" */\nexport type Current_Aptos_Names_Stddev_Order_By = {\n last_transaction_version?: InputMaybe<Order_By>;\n subdomain_expiration_policy?: InputMaybe<Order_By>;\n};\n\n/** aggregate stddev_pop on columns */\nexport type Current_Aptos_Names_Stddev_Pop_Fields = {\n __typename?: 'current_aptos_names_stddev_pop_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n subdomain_expiration_policy?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev_pop() on columns of table \"current_aptos_names\" */\nexport type Current_Aptos_Names_Stddev_Pop_Order_By = {\n last_transaction_version?: InputMaybe<Order_By>;\n subdomain_expiration_policy?: InputMaybe<Order_By>;\n};\n\n/** aggregate stddev_samp on columns */\nexport type Current_Aptos_Names_Stddev_Samp_Fields = {\n __typename?: 'current_aptos_names_stddev_samp_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n subdomain_expiration_policy?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev_samp() on columns of table \"current_aptos_names\" */\nexport type Current_Aptos_Names_Stddev_Samp_Order_By = {\n last_transaction_version?: InputMaybe<Order_By>;\n subdomain_expiration_policy?: InputMaybe<Order_By>;\n};\n\n/** Streaming cursor of the table \"current_aptos_names\" */\nexport type Current_Aptos_Names_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Aptos_Names_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Aptos_Names_Stream_Cursor_Value_Input = {\n domain?: InputMaybe<Scalars['String']['input']>;\n domain_expiration_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n domain_with_suffix?: InputMaybe<Scalars['String']['input']>;\n expiration_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n is_active?: InputMaybe<Scalars['Boolean']['input']>;\n is_primary?: InputMaybe<Scalars['Boolean']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n owner_address?: InputMaybe<Scalars['String']['input']>;\n registered_address?: InputMaybe<Scalars['String']['input']>;\n subdomain?: InputMaybe<Scalars['String']['input']>;\n subdomain_expiration_policy?: InputMaybe<Scalars['bigint']['input']>;\n token_name?: InputMaybe<Scalars['String']['input']>;\n token_standard?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** aggregate sum on columns */\nexport type Current_Aptos_Names_Sum_Fields = {\n __typename?: 'current_aptos_names_sum_fields';\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n subdomain_expiration_policy?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** order by sum() on columns of table \"current_aptos_names\" */\nexport type Current_Aptos_Names_Sum_Order_By = {\n last_transaction_version?: InputMaybe<Order_By>;\n subdomain_expiration_policy?: InputMaybe<Order_By>;\n};\n\n/** aggregate var_pop on columns */\nexport type Current_Aptos_Names_Var_Pop_Fields = {\n __typename?: 'current_aptos_names_var_pop_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n subdomain_expiration_policy?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by var_pop() on columns of table \"current_aptos_names\" */\nexport type Current_Aptos_Names_Var_Pop_Order_By = {\n last_transaction_version?: InputMaybe<Order_By>;\n subdomain_expiration_policy?: InputMaybe<Order_By>;\n};\n\n/** aggregate var_samp on columns */\nexport type Current_Aptos_Names_Var_Samp_Fields = {\n __typename?: 'current_aptos_names_var_samp_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n subdomain_expiration_policy?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by var_samp() on columns of table \"current_aptos_names\" */\nexport type Current_Aptos_Names_Var_Samp_Order_By = {\n last_transaction_version?: InputMaybe<Order_By>;\n subdomain_expiration_policy?: InputMaybe<Order_By>;\n};\n\n/** aggregate variance on columns */\nexport type Current_Aptos_Names_Variance_Fields = {\n __typename?: 'current_aptos_names_variance_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n subdomain_expiration_policy?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by variance() on columns of table \"current_aptos_names\" */\nexport type Current_Aptos_Names_Variance_Order_By = {\n last_transaction_version?: InputMaybe<Order_By>;\n subdomain_expiration_policy?: InputMaybe<Order_By>;\n};\n\n/** columns and relationships of \"legacy_migration_v1.current_coin_balances\" */\nexport type Current_Coin_Balances = {\n __typename?: 'current_coin_balances';\n amount?: Maybe<Scalars['numeric']['output']>;\n /** An object relationship */\n coin_info?: Maybe<Coin_Infos>;\n coin_type?: Maybe<Scalars['String']['output']>;\n coin_type_hash?: Maybe<Scalars['String']['output']>;\n last_transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"legacy_migration_v1.current_coin_balances\". All fields are combined with a logical 'AND'. */\nexport type Current_Coin_Balances_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Coin_Balances_Bool_Exp>>;\n _not?: InputMaybe<Current_Coin_Balances_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Coin_Balances_Bool_Exp>>;\n amount?: InputMaybe<Numeric_Comparison_Exp>;\n coin_info?: InputMaybe<Coin_Infos_Bool_Exp>;\n coin_type?: InputMaybe<String_Comparison_Exp>;\n coin_type_hash?: InputMaybe<String_Comparison_Exp>;\n last_transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n owner_address?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"legacy_migration_v1.current_coin_balances\". */\nexport type Current_Coin_Balances_Order_By = {\n amount?: InputMaybe<Order_By>;\n coin_info?: InputMaybe<Coin_Infos_Order_By>;\n coin_type?: InputMaybe<Order_By>;\n coin_type_hash?: InputMaybe<Order_By>;\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"legacy_migration_v1.current_coin_balances\" */\nexport enum Current_Coin_Balances_Select_Column {\n /** column name */\n Amount = 'amount',\n /** column name */\n CoinType = 'coin_type',\n /** column name */\n CoinTypeHash = 'coin_type_hash',\n /** column name */\n LastTransactionTimestamp = 'last_transaction_timestamp',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n OwnerAddress = 'owner_address'\n}\n\n/** Streaming cursor of the table \"current_coin_balances\" */\nexport type Current_Coin_Balances_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Coin_Balances_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Coin_Balances_Stream_Cursor_Value_Input = {\n amount?: InputMaybe<Scalars['numeric']['input']>;\n coin_type?: InputMaybe<Scalars['String']['input']>;\n coin_type_hash?: InputMaybe<Scalars['String']['input']>;\n last_transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n owner_address?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"legacy_migration_v1.current_collection_datas\" */\nexport type Current_Collection_Datas = {\n __typename?: 'current_collection_datas';\n collection_data_id_hash?: Maybe<Scalars['String']['output']>;\n collection_name?: Maybe<Scalars['String']['output']>;\n creator_address?: Maybe<Scalars['String']['output']>;\n description?: Maybe<Scalars['String']['output']>;\n description_mutable?: Maybe<Scalars['Boolean']['output']>;\n last_transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n maximum?: Maybe<Scalars['numeric']['output']>;\n maximum_mutable?: Maybe<Scalars['Boolean']['output']>;\n metadata_uri?: Maybe<Scalars['String']['output']>;\n supply?: Maybe<Scalars['numeric']['output']>;\n table_handle?: Maybe<Scalars['String']['output']>;\n uri_mutable?: Maybe<Scalars['Boolean']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"legacy_migration_v1.current_collection_datas\". All fields are combined with a logical 'AND'. */\nexport type Current_Collection_Datas_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Collection_Datas_Bool_Exp>>;\n _not?: InputMaybe<Current_Collection_Datas_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Collection_Datas_Bool_Exp>>;\n collection_data_id_hash?: InputMaybe<String_Comparison_Exp>;\n collection_name?: InputMaybe<String_Comparison_Exp>;\n creator_address?: InputMaybe<String_Comparison_Exp>;\n description?: InputMaybe<String_Comparison_Exp>;\n description_mutable?: InputMaybe<Boolean_Comparison_Exp>;\n last_transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n maximum?: InputMaybe<Numeric_Comparison_Exp>;\n maximum_mutable?: InputMaybe<Boolean_Comparison_Exp>;\n metadata_uri?: InputMaybe<String_Comparison_Exp>;\n supply?: InputMaybe<Numeric_Comparison_Exp>;\n table_handle?: InputMaybe<String_Comparison_Exp>;\n uri_mutable?: InputMaybe<Boolean_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"legacy_migration_v1.current_collection_datas\". */\nexport type Current_Collection_Datas_Order_By = {\n collection_data_id_hash?: InputMaybe<Order_By>;\n collection_name?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n description?: InputMaybe<Order_By>;\n description_mutable?: InputMaybe<Order_By>;\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n maximum?: InputMaybe<Order_By>;\n maximum_mutable?: InputMaybe<Order_By>;\n metadata_uri?: InputMaybe<Order_By>;\n supply?: InputMaybe<Order_By>;\n table_handle?: InputMaybe<Order_By>;\n uri_mutable?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"legacy_migration_v1.current_collection_datas\" */\nexport enum Current_Collection_Datas_Select_Column {\n /** column name */\n CollectionDataIdHash = 'collection_data_id_hash',\n /** column name */\n CollectionName = 'collection_name',\n /** column name */\n CreatorAddress = 'creator_address',\n /** column name */\n Description = 'description',\n /** column name */\n DescriptionMutable = 'description_mutable',\n /** column name */\n LastTransactionTimestamp = 'last_transaction_timestamp',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n Maximum = 'maximum',\n /** column name */\n MaximumMutable = 'maximum_mutable',\n /** column name */\n MetadataUri = 'metadata_uri',\n /** column name */\n Supply = 'supply',\n /** column name */\n TableHandle = 'table_handle',\n /** column name */\n UriMutable = 'uri_mutable'\n}\n\n/** Streaming cursor of the table \"current_collection_datas\" */\nexport type Current_Collection_Datas_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Collection_Datas_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Collection_Datas_Stream_Cursor_Value_Input = {\n collection_data_id_hash?: InputMaybe<Scalars['String']['input']>;\n collection_name?: InputMaybe<Scalars['String']['input']>;\n creator_address?: InputMaybe<Scalars['String']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n description_mutable?: InputMaybe<Scalars['Boolean']['input']>;\n last_transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n maximum?: InputMaybe<Scalars['numeric']['input']>;\n maximum_mutable?: InputMaybe<Scalars['Boolean']['input']>;\n metadata_uri?: InputMaybe<Scalars['String']['input']>;\n supply?: InputMaybe<Scalars['numeric']['input']>;\n table_handle?: InputMaybe<Scalars['String']['input']>;\n uri_mutable?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** columns and relationships of \"current_collection_ownership_v2_view\" */\nexport type Current_Collection_Ownership_V2_View = {\n __typename?: 'current_collection_ownership_v2_view';\n collection_id?: Maybe<Scalars['String']['output']>;\n collection_name?: Maybe<Scalars['String']['output']>;\n collection_uri?: Maybe<Scalars['String']['output']>;\n creator_address?: Maybe<Scalars['String']['output']>;\n /** An object relationship */\n current_collection?: Maybe<Current_Collections_V2>;\n distinct_tokens?: Maybe<Scalars['bigint']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n single_token_uri?: Maybe<Scalars['String']['output']>;\n};\n\n/** aggregated selection of \"current_collection_ownership_v2_view\" */\nexport type Current_Collection_Ownership_V2_View_Aggregate = {\n __typename?: 'current_collection_ownership_v2_view_aggregate';\n aggregate?: Maybe<Current_Collection_Ownership_V2_View_Aggregate_Fields>;\n nodes: Array<Current_Collection_Ownership_V2_View>;\n};\n\n/** aggregate fields of \"current_collection_ownership_v2_view\" */\nexport type Current_Collection_Ownership_V2_View_Aggregate_Fields = {\n __typename?: 'current_collection_ownership_v2_view_aggregate_fields';\n avg?: Maybe<Current_Collection_Ownership_V2_View_Avg_Fields>;\n count: Scalars['Int']['output'];\n max?: Maybe<Current_Collection_Ownership_V2_View_Max_Fields>;\n min?: Maybe<Current_Collection_Ownership_V2_View_Min_Fields>;\n stddev?: Maybe<Current_Collection_Ownership_V2_View_Stddev_Fields>;\n stddev_pop?: Maybe<Current_Collection_Ownership_V2_View_Stddev_Pop_Fields>;\n stddev_samp?: Maybe<Current_Collection_Ownership_V2_View_Stddev_Samp_Fields>;\n sum?: Maybe<Current_Collection_Ownership_V2_View_Sum_Fields>;\n var_pop?: Maybe<Current_Collection_Ownership_V2_View_Var_Pop_Fields>;\n var_samp?: Maybe<Current_Collection_Ownership_V2_View_Var_Samp_Fields>;\n variance?: Maybe<Current_Collection_Ownership_V2_View_Variance_Fields>;\n};\n\n\n/** aggregate fields of \"current_collection_ownership_v2_view\" */\nexport type Current_Collection_Ownership_V2_View_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Current_Collection_Ownership_V2_View_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** aggregate avg on columns */\nexport type Current_Collection_Ownership_V2_View_Avg_Fields = {\n __typename?: 'current_collection_ownership_v2_view_avg_fields';\n distinct_tokens?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"current_collection_ownership_v2_view\". All fields are combined with a logical 'AND'. */\nexport type Current_Collection_Ownership_V2_View_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Collection_Ownership_V2_View_Bool_Exp>>;\n _not?: InputMaybe<Current_Collection_Ownership_V2_View_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Collection_Ownership_V2_View_Bool_Exp>>;\n collection_id?: InputMaybe<String_Comparison_Exp>;\n collection_name?: InputMaybe<String_Comparison_Exp>;\n collection_uri?: InputMaybe<String_Comparison_Exp>;\n creator_address?: InputMaybe<String_Comparison_Exp>;\n current_collection?: InputMaybe<Current_Collections_V2_Bool_Exp>;\n distinct_tokens?: InputMaybe<Bigint_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n owner_address?: InputMaybe<String_Comparison_Exp>;\n single_token_uri?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Current_Collection_Ownership_V2_View_Max_Fields = {\n __typename?: 'current_collection_ownership_v2_view_max_fields';\n collection_id?: Maybe<Scalars['String']['output']>;\n collection_name?: Maybe<Scalars['String']['output']>;\n collection_uri?: Maybe<Scalars['String']['output']>;\n creator_address?: Maybe<Scalars['String']['output']>;\n distinct_tokens?: Maybe<Scalars['bigint']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n single_token_uri?: Maybe<Scalars['String']['output']>;\n};\n\n/** aggregate min on columns */\nexport type Current_Collection_Ownership_V2_View_Min_Fields = {\n __typename?: 'current_collection_ownership_v2_view_min_fields';\n collection_id?: Maybe<Scalars['String']['output']>;\n collection_name?: Maybe<Scalars['String']['output']>;\n collection_uri?: Maybe<Scalars['String']['output']>;\n creator_address?: Maybe<Scalars['String']['output']>;\n distinct_tokens?: Maybe<Scalars['bigint']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n single_token_uri?: Maybe<Scalars['String']['output']>;\n};\n\n/** Ordering options when selecting data from \"current_collection_ownership_v2_view\". */\nexport type Current_Collection_Ownership_V2_View_Order_By = {\n collection_id?: InputMaybe<Order_By>;\n collection_name?: InputMaybe<Order_By>;\n collection_uri?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n current_collection?: InputMaybe<Current_Collections_V2_Order_By>;\n distinct_tokens?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n single_token_uri?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"current_collection_ownership_v2_view\" */\nexport enum Current_Collection_Ownership_V2_View_Select_Column {\n /** column name */\n CollectionId = 'collection_id',\n /** column name */\n CollectionName = 'collection_name',\n /** column name */\n CollectionUri = 'collection_uri',\n /** column name */\n CreatorAddress = 'creator_address',\n /** column name */\n DistinctTokens = 'distinct_tokens',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n OwnerAddress = 'owner_address',\n /** column name */\n SingleTokenUri = 'single_token_uri'\n}\n\n/** aggregate stddev on columns */\nexport type Current_Collection_Ownership_V2_View_Stddev_Fields = {\n __typename?: 'current_collection_ownership_v2_view_stddev_fields';\n distinct_tokens?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_pop on columns */\nexport type Current_Collection_Ownership_V2_View_Stddev_Pop_Fields = {\n __typename?: 'current_collection_ownership_v2_view_stddev_pop_fields';\n distinct_tokens?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_samp on columns */\nexport type Current_Collection_Ownership_V2_View_Stddev_Samp_Fields = {\n __typename?: 'current_collection_ownership_v2_view_stddev_samp_fields';\n distinct_tokens?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Streaming cursor of the table \"current_collection_ownership_v2_view\" */\nexport type Current_Collection_Ownership_V2_View_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Collection_Ownership_V2_View_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Collection_Ownership_V2_View_Stream_Cursor_Value_Input = {\n collection_id?: InputMaybe<Scalars['String']['input']>;\n collection_name?: InputMaybe<Scalars['String']['input']>;\n collection_uri?: InputMaybe<Scalars['String']['input']>;\n creator_address?: InputMaybe<Scalars['String']['input']>;\n distinct_tokens?: InputMaybe<Scalars['bigint']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n owner_address?: InputMaybe<Scalars['String']['input']>;\n single_token_uri?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** aggregate sum on columns */\nexport type Current_Collection_Ownership_V2_View_Sum_Fields = {\n __typename?: 'current_collection_ownership_v2_view_sum_fields';\n distinct_tokens?: Maybe<Scalars['bigint']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregate var_pop on columns */\nexport type Current_Collection_Ownership_V2_View_Var_Pop_Fields = {\n __typename?: 'current_collection_ownership_v2_view_var_pop_fields';\n distinct_tokens?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate var_samp on columns */\nexport type Current_Collection_Ownership_V2_View_Var_Samp_Fields = {\n __typename?: 'current_collection_ownership_v2_view_var_samp_fields';\n distinct_tokens?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate variance on columns */\nexport type Current_Collection_Ownership_V2_View_Variance_Fields = {\n __typename?: 'current_collection_ownership_v2_view_variance_fields';\n distinct_tokens?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** columns and relationships of \"current_collections_v2\" */\nexport type Current_Collections_V2 = {\n __typename?: 'current_collections_v2';\n /** An object relationship */\n cdn_asset_uris?: Maybe<Nft_Metadata_Crawler_Parsed_Asset_Uris>;\n collection_id: Scalars['String']['output'];\n collection_name: Scalars['String']['output'];\n collection_properties?: Maybe<Scalars['jsonb']['output']>;\n creator_address: Scalars['String']['output'];\n current_supply: Scalars['numeric']['output'];\n description: Scalars['String']['output'];\n last_transaction_timestamp: Scalars['timestamp']['output'];\n last_transaction_version: Scalars['bigint']['output'];\n max_supply?: Maybe<Scalars['numeric']['output']>;\n mutable_description?: Maybe<Scalars['Boolean']['output']>;\n mutable_uri?: Maybe<Scalars['Boolean']['output']>;\n table_handle_v1?: Maybe<Scalars['String']['output']>;\n token_standard: Scalars['String']['output'];\n total_minted_v2?: Maybe<Scalars['numeric']['output']>;\n uri: Scalars['String']['output'];\n};\n\n\n/** columns and relationships of \"current_collections_v2\" */\nexport type Current_Collections_V2Collection_PropertiesArgs = {\n path?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Boolean expression to filter rows from the table \"current_collections_v2\". All fields are combined with a logical 'AND'. */\nexport type Current_Collections_V2_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Collections_V2_Bool_Exp>>;\n _not?: InputMaybe<Current_Collections_V2_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Collections_V2_Bool_Exp>>;\n cdn_asset_uris?: InputMaybe<Nft_Metadata_Crawler_Parsed_Asset_Uris_Bool_Exp>;\n collection_id?: InputMaybe<String_Comparison_Exp>;\n collection_name?: InputMaybe<String_Comparison_Exp>;\n collection_properties?: InputMaybe<Jsonb_Comparison_Exp>;\n creator_address?: InputMaybe<String_Comparison_Exp>;\n current_supply?: InputMaybe<Numeric_Comparison_Exp>;\n description?: InputMaybe<String_Comparison_Exp>;\n last_transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n max_supply?: InputMaybe<Numeric_Comparison_Exp>;\n mutable_description?: InputMaybe<Boolean_Comparison_Exp>;\n mutable_uri?: InputMaybe<Boolean_Comparison_Exp>;\n table_handle_v1?: InputMaybe<String_Comparison_Exp>;\n token_standard?: InputMaybe<String_Comparison_Exp>;\n total_minted_v2?: InputMaybe<Numeric_Comparison_Exp>;\n uri?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"current_collections_v2\". */\nexport type Current_Collections_V2_Order_By = {\n cdn_asset_uris?: InputMaybe<Nft_Metadata_Crawler_Parsed_Asset_Uris_Order_By>;\n collection_id?: InputMaybe<Order_By>;\n collection_name?: InputMaybe<Order_By>;\n collection_properties?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n current_supply?: InputMaybe<Order_By>;\n description?: InputMaybe<Order_By>;\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n max_supply?: InputMaybe<Order_By>;\n mutable_description?: InputMaybe<Order_By>;\n mutable_uri?: InputMaybe<Order_By>;\n table_handle_v1?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n total_minted_v2?: InputMaybe<Order_By>;\n uri?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"current_collections_v2\" */\nexport enum Current_Collections_V2_Select_Column {\n /** column name */\n CollectionId = 'collection_id',\n /** column name */\n CollectionName = 'collection_name',\n /** column name */\n CollectionProperties = 'collection_properties',\n /** column name */\n CreatorAddress = 'creator_address',\n /** column name */\n CurrentSupply = 'current_supply',\n /** column name */\n Description = 'description',\n /** column name */\n LastTransactionTimestamp = 'last_transaction_timestamp',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n MaxSupply = 'max_supply',\n /** column name */\n MutableDescription = 'mutable_description',\n /** column name */\n MutableUri = 'mutable_uri',\n /** column name */\n TableHandleV1 = 'table_handle_v1',\n /** column name */\n TokenStandard = 'token_standard',\n /** column name */\n TotalMintedV2 = 'total_minted_v2',\n /** column name */\n Uri = 'uri'\n}\n\n/** Streaming cursor of the table \"current_collections_v2\" */\nexport type Current_Collections_V2_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Collections_V2_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Collections_V2_Stream_Cursor_Value_Input = {\n collection_id?: InputMaybe<Scalars['String']['input']>;\n collection_name?: InputMaybe<Scalars['String']['input']>;\n collection_properties?: InputMaybe<Scalars['jsonb']['input']>;\n creator_address?: InputMaybe<Scalars['String']['input']>;\n current_supply?: InputMaybe<Scalars['numeric']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n last_transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n max_supply?: InputMaybe<Scalars['numeric']['input']>;\n mutable_description?: InputMaybe<Scalars['Boolean']['input']>;\n mutable_uri?: InputMaybe<Scalars['Boolean']['input']>;\n table_handle_v1?: InputMaybe<Scalars['String']['input']>;\n token_standard?: InputMaybe<Scalars['String']['input']>;\n total_minted_v2?: InputMaybe<Scalars['numeric']['input']>;\n uri?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"current_delegated_staking_pool_balances\" */\nexport type Current_Delegated_Staking_Pool_Balances = {\n __typename?: 'current_delegated_staking_pool_balances';\n active_table_handle: Scalars['String']['output'];\n inactive_table_handle: Scalars['String']['output'];\n last_transaction_version: Scalars['bigint']['output'];\n operator_commission_percentage: Scalars['numeric']['output'];\n staking_pool_address: Scalars['String']['output'];\n total_coins: Scalars['numeric']['output'];\n total_shares: Scalars['numeric']['output'];\n};\n\n/** Boolean expression to filter rows from the table \"current_delegated_staking_pool_balances\". All fields are combined with a logical 'AND'. */\nexport type Current_Delegated_Staking_Pool_Balances_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Delegated_Staking_Pool_Balances_Bool_Exp>>;\n _not?: InputMaybe<Current_Delegated_Staking_Pool_Balances_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Delegated_Staking_Pool_Balances_Bool_Exp>>;\n active_table_handle?: InputMaybe<String_Comparison_Exp>;\n inactive_table_handle?: InputMaybe<String_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n operator_commission_percentage?: InputMaybe<Numeric_Comparison_Exp>;\n staking_pool_address?: InputMaybe<String_Comparison_Exp>;\n total_coins?: InputMaybe<Numeric_Comparison_Exp>;\n total_shares?: InputMaybe<Numeric_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"current_delegated_staking_pool_balances\". */\nexport type Current_Delegated_Staking_Pool_Balances_Order_By = {\n active_table_handle?: InputMaybe<Order_By>;\n inactive_table_handle?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n operator_commission_percentage?: InputMaybe<Order_By>;\n staking_pool_address?: InputMaybe<Order_By>;\n total_coins?: InputMaybe<Order_By>;\n total_shares?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"current_delegated_staking_pool_balances\" */\nexport enum Current_Delegated_Staking_Pool_Balances_Select_Column {\n /** column name */\n ActiveTableHandle = 'active_table_handle',\n /** column name */\n InactiveTableHandle = 'inactive_table_handle',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n OperatorCommissionPercentage = 'operator_commission_percentage',\n /** column name */\n StakingPoolAddress = 'staking_pool_address',\n /** column name */\n TotalCoins = 'total_coins',\n /** column name */\n TotalShares = 'total_shares'\n}\n\n/** Streaming cursor of the table \"current_delegated_staking_pool_balances\" */\nexport type Current_Delegated_Staking_Pool_Balances_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Delegated_Staking_Pool_Balances_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Delegated_Staking_Pool_Balances_Stream_Cursor_Value_Input = {\n active_table_handle?: InputMaybe<Scalars['String']['input']>;\n inactive_table_handle?: InputMaybe<Scalars['String']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n operator_commission_percentage?: InputMaybe<Scalars['numeric']['input']>;\n staking_pool_address?: InputMaybe<Scalars['String']['input']>;\n total_coins?: InputMaybe<Scalars['numeric']['input']>;\n total_shares?: InputMaybe<Scalars['numeric']['input']>;\n};\n\n/** columns and relationships of \"current_delegated_voter\" */\nexport type Current_Delegated_Voter = {\n __typename?: 'current_delegated_voter';\n delegation_pool_address: Scalars['String']['output'];\n delegator_address: Scalars['String']['output'];\n last_transaction_timestamp: Scalars['timestamp']['output'];\n last_transaction_version: Scalars['bigint']['output'];\n pending_voter?: Maybe<Scalars['String']['output']>;\n table_handle?: Maybe<Scalars['String']['output']>;\n voter?: Maybe<Scalars['String']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"current_delegated_voter\". All fields are combined with a logical 'AND'. */\nexport type Current_Delegated_Voter_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Delegated_Voter_Bool_Exp>>;\n _not?: InputMaybe<Current_Delegated_Voter_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Delegated_Voter_Bool_Exp>>;\n delegation_pool_address?: InputMaybe<String_Comparison_Exp>;\n delegator_address?: InputMaybe<String_Comparison_Exp>;\n last_transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n pending_voter?: InputMaybe<String_Comparison_Exp>;\n table_handle?: InputMaybe<String_Comparison_Exp>;\n voter?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"current_delegated_voter\". */\nexport type Current_Delegated_Voter_Order_By = {\n delegation_pool_address?: InputMaybe<Order_By>;\n delegator_address?: InputMaybe<Order_By>;\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n pending_voter?: InputMaybe<Order_By>;\n table_handle?: InputMaybe<Order_By>;\n voter?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"current_delegated_voter\" */\nexport enum Current_Delegated_Voter_Select_Column {\n /** column name */\n DelegationPoolAddress = 'delegation_pool_address',\n /** column name */\n DelegatorAddress = 'delegator_address',\n /** column name */\n LastTransactionTimestamp = 'last_transaction_timestamp',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n PendingVoter = 'pending_voter',\n /** column name */\n TableHandle = 'table_handle',\n /** column name */\n Voter = 'voter'\n}\n\n/** Streaming cursor of the table \"current_delegated_voter\" */\nexport type Current_Delegated_Voter_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Delegated_Voter_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Delegated_Voter_Stream_Cursor_Value_Input = {\n delegation_pool_address?: InputMaybe<Scalars['String']['input']>;\n delegator_address?: InputMaybe<Scalars['String']['input']>;\n last_transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n pending_voter?: InputMaybe<Scalars['String']['input']>;\n table_handle?: InputMaybe<Scalars['String']['input']>;\n voter?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"current_delegator_balances\" */\nexport type Current_Delegator_Balances = {\n __typename?: 'current_delegator_balances';\n /** An object relationship */\n current_pool_balance?: Maybe<Current_Delegated_Staking_Pool_Balances>;\n delegator_address: Scalars['String']['output'];\n last_transaction_version: Scalars['bigint']['output'];\n parent_table_handle: Scalars['String']['output'];\n pool_address: Scalars['String']['output'];\n pool_type: Scalars['String']['output'];\n shares: Scalars['numeric']['output'];\n /** An object relationship */\n staking_pool_metadata?: Maybe<Current_Staking_Pool_Voter>;\n table_handle: Scalars['String']['output'];\n};\n\n/** Boolean expression to filter rows from the table \"current_delegator_balances\". All fields are combined with a logical 'AND'. */\nexport type Current_Delegator_Balances_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Delegator_Balances_Bool_Exp>>;\n _not?: InputMaybe<Current_Delegator_Balances_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Delegator_Balances_Bool_Exp>>;\n current_pool_balance?: InputMaybe<Current_Delegated_Staking_Pool_Balances_Bool_Exp>;\n delegator_address?: InputMaybe<String_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n parent_table_handle?: InputMaybe<String_Comparison_Exp>;\n pool_address?: InputMaybe<String_Comparison_Exp>;\n pool_type?: InputMaybe<String_Comparison_Exp>;\n shares?: InputMaybe<Numeric_Comparison_Exp>;\n staking_pool_metadata?: InputMaybe<Current_Staking_Pool_Voter_Bool_Exp>;\n table_handle?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"current_delegator_balances\". */\nexport type Current_Delegator_Balances_Order_By = {\n current_pool_balance?: InputMaybe<Current_Delegated_Staking_Pool_Balances_Order_By>;\n delegator_address?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n parent_table_handle?: InputMaybe<Order_By>;\n pool_address?: InputMaybe<Order_By>;\n pool_type?: InputMaybe<Order_By>;\n shares?: InputMaybe<Order_By>;\n staking_pool_metadata?: InputMaybe<Current_Staking_Pool_Voter_Order_By>;\n table_handle?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"current_delegator_balances\" */\nexport enum Current_Delegator_Balances_Select_Column {\n /** column name */\n DelegatorAddress = 'delegator_address',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n ParentTableHandle = 'parent_table_handle',\n /** column name */\n PoolAddress = 'pool_address',\n /** column name */\n PoolType = 'pool_type',\n /** column name */\n Shares = 'shares',\n /** column name */\n TableHandle = 'table_handle'\n}\n\n/** Streaming cursor of the table \"current_delegator_balances\" */\nexport type Current_Delegator_Balances_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Delegator_Balances_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Delegator_Balances_Stream_Cursor_Value_Input = {\n delegator_address?: InputMaybe<Scalars['String']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n parent_table_handle?: InputMaybe<Scalars['String']['input']>;\n pool_address?: InputMaybe<Scalars['String']['input']>;\n pool_type?: InputMaybe<Scalars['String']['input']>;\n shares?: InputMaybe<Scalars['numeric']['input']>;\n table_handle?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"current_fungible_asset_balances\" */\nexport type Current_Fungible_Asset_Balances = {\n __typename?: 'current_fungible_asset_balances';\n amount: Scalars['numeric']['output'];\n amount_v1?: Maybe<Scalars['numeric']['output']>;\n amount_v2?: Maybe<Scalars['numeric']['output']>;\n asset_type: Scalars['String']['output'];\n asset_type_v1?: Maybe<Scalars['String']['output']>;\n asset_type_v2?: Maybe<Scalars['String']['output']>;\n is_frozen: Scalars['Boolean']['output'];\n is_primary: Scalars['Boolean']['output'];\n last_transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_timestamp_v1?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_timestamp_v2?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n last_transaction_version_v1?: Maybe<Scalars['bigint']['output']>;\n last_transaction_version_v2?: Maybe<Scalars['bigint']['output']>;\n /** An object relationship */\n metadata?: Maybe<Fungible_Asset_Metadata>;\n owner_address: Scalars['String']['output'];\n storage_id: Scalars['String']['output'];\n token_standard: Scalars['String']['output'];\n};\n\n/** aggregated selection of \"current_fungible_asset_balances\" */\nexport type Current_Fungible_Asset_Balances_Aggregate = {\n __typename?: 'current_fungible_asset_balances_aggregate';\n aggregate?: Maybe<Current_Fungible_Asset_Balances_Aggregate_Fields>;\n nodes: Array<Current_Fungible_Asset_Balances>;\n};\n\n/** aggregate fields of \"current_fungible_asset_balances\" */\nexport type Current_Fungible_Asset_Balances_Aggregate_Fields = {\n __typename?: 'current_fungible_asset_balances_aggregate_fields';\n avg?: Maybe<Current_Fungible_Asset_Balances_Avg_Fields>;\n count: Scalars['Int']['output'];\n max?: Maybe<Current_Fungible_Asset_Balances_Max_Fields>;\n min?: Maybe<Current_Fungible_Asset_Balances_Min_Fields>;\n stddev?: Maybe<Current_Fungible_Asset_Balances_Stddev_Fields>;\n stddev_pop?: Maybe<Current_Fungible_Asset_Balances_Stddev_Pop_Fields>;\n stddev_samp?: Maybe<Current_Fungible_Asset_Balances_Stddev_Samp_Fields>;\n sum?: Maybe<Current_Fungible_Asset_Balances_Sum_Fields>;\n var_pop?: Maybe<Current_Fungible_Asset_Balances_Var_Pop_Fields>;\n var_samp?: Maybe<Current_Fungible_Asset_Balances_Var_Samp_Fields>;\n variance?: Maybe<Current_Fungible_Asset_Balances_Variance_Fields>;\n};\n\n\n/** aggregate fields of \"current_fungible_asset_balances\" */\nexport type Current_Fungible_Asset_Balances_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Current_Fungible_Asset_Balances_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** aggregate avg on columns */\nexport type Current_Fungible_Asset_Balances_Avg_Fields = {\n __typename?: 'current_fungible_asset_balances_avg_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n amount_v1?: Maybe<Scalars['Float']['output']>;\n amount_v2?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n last_transaction_version_v1?: Maybe<Scalars['Float']['output']>;\n last_transaction_version_v2?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"current_fungible_asset_balances\". All fields are combined with a logical 'AND'. */\nexport type Current_Fungible_Asset_Balances_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Fungible_Asset_Balances_Bool_Exp>>;\n _not?: InputMaybe<Current_Fungible_Asset_Balances_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Fungible_Asset_Balances_Bool_Exp>>;\n amount?: InputMaybe<Numeric_Comparison_Exp>;\n amount_v1?: InputMaybe<Numeric_Comparison_Exp>;\n amount_v2?: InputMaybe<Numeric_Comparison_Exp>;\n asset_type?: InputMaybe<String_Comparison_Exp>;\n asset_type_v1?: InputMaybe<String_Comparison_Exp>;\n asset_type_v2?: InputMaybe<String_Comparison_Exp>;\n is_frozen?: InputMaybe<Boolean_Comparison_Exp>;\n is_primary?: InputMaybe<Boolean_Comparison_Exp>;\n last_transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n last_transaction_timestamp_v1?: InputMaybe<Timestamp_Comparison_Exp>;\n last_transaction_timestamp_v2?: InputMaybe<Timestamp_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n last_transaction_version_v1?: InputMaybe<Bigint_Comparison_Exp>;\n last_transaction_version_v2?: InputMaybe<Bigint_Comparison_Exp>;\n metadata?: InputMaybe<Fungible_Asset_Metadata_Bool_Exp>;\n owner_address?: InputMaybe<String_Comparison_Exp>;\n storage_id?: InputMaybe<String_Comparison_Exp>;\n token_standard?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Current_Fungible_Asset_Balances_Max_Fields = {\n __typename?: 'current_fungible_asset_balances_max_fields';\n amount?: Maybe<Scalars['numeric']['output']>;\n amount_v1?: Maybe<Scalars['numeric']['output']>;\n amount_v2?: Maybe<Scalars['numeric']['output']>;\n asset_type?: Maybe<Scalars['String']['output']>;\n asset_type_v1?: Maybe<Scalars['String']['output']>;\n asset_type_v2?: Maybe<Scalars['String']['output']>;\n last_transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_timestamp_v1?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_timestamp_v2?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n last_transaction_version_v1?: Maybe<Scalars['bigint']['output']>;\n last_transaction_version_v2?: Maybe<Scalars['bigint']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n storage_id?: Maybe<Scalars['String']['output']>;\n token_standard?: Maybe<Scalars['String']['output']>;\n};\n\n/** aggregate min on columns */\nexport type Current_Fungible_Asset_Balances_Min_Fields = {\n __typename?: 'current_fungible_asset_balances_min_fields';\n amount?: Maybe<Scalars['numeric']['output']>;\n amount_v1?: Maybe<Scalars['numeric']['output']>;\n amount_v2?: Maybe<Scalars['numeric']['output']>;\n asset_type?: Maybe<Scalars['String']['output']>;\n asset_type_v1?: Maybe<Scalars['String']['output']>;\n asset_type_v2?: Maybe<Scalars['String']['output']>;\n last_transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_timestamp_v1?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_timestamp_v2?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n last_transaction_version_v1?: Maybe<Scalars['bigint']['output']>;\n last_transaction_version_v2?: Maybe<Scalars['bigint']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n storage_id?: Maybe<Scalars['String']['output']>;\n token_standard?: Maybe<Scalars['String']['output']>;\n};\n\n/** Ordering options when selecting data from \"current_fungible_asset_balances\". */\nexport type Current_Fungible_Asset_Balances_Order_By = {\n amount?: InputMaybe<Order_By>;\n amount_v1?: InputMaybe<Order_By>;\n amount_v2?: InputMaybe<Order_By>;\n asset_type?: InputMaybe<Order_By>;\n asset_type_v1?: InputMaybe<Order_By>;\n asset_type_v2?: InputMaybe<Order_By>;\n is_frozen?: InputMaybe<Order_By>;\n is_primary?: InputMaybe<Order_By>;\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_transaction_timestamp_v1?: InputMaybe<Order_By>;\n last_transaction_timestamp_v2?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n last_transaction_version_v1?: InputMaybe<Order_By>;\n last_transaction_version_v2?: InputMaybe<Order_By>;\n metadata?: InputMaybe<Fungible_Asset_Metadata_Order_By>;\n owner_address?: InputMaybe<Order_By>;\n storage_id?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"current_fungible_asset_balances\" */\nexport enum Current_Fungible_Asset_Balances_Select_Column {\n /** column name */\n Amount = 'amount',\n /** column name */\n AmountV1 = 'amount_v1',\n /** column name */\n AmountV2 = 'amount_v2',\n /** column name */\n AssetType = 'asset_type',\n /** column name */\n AssetTypeV1 = 'asset_type_v1',\n /** column name */\n AssetTypeV2 = 'asset_type_v2',\n /** column name */\n IsFrozen = 'is_frozen',\n /** column name */\n IsPrimary = 'is_primary',\n /** column name */\n LastTransactionTimestamp = 'last_transaction_timestamp',\n /** column name */\n LastTransactionTimestampV1 = 'last_transaction_timestamp_v1',\n /** column name */\n LastTransactionTimestampV2 = 'last_transaction_timestamp_v2',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n LastTransactionVersionV1 = 'last_transaction_version_v1',\n /** column name */\n LastTransactionVersionV2 = 'last_transaction_version_v2',\n /** column name */\n OwnerAddress = 'owner_address',\n /** column name */\n StorageId = 'storage_id',\n /** column name */\n TokenStandard = 'token_standard'\n}\n\n/** aggregate stddev on columns */\nexport type Current_Fungible_Asset_Balances_Stddev_Fields = {\n __typename?: 'current_fungible_asset_balances_stddev_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n amount_v1?: Maybe<Scalars['Float']['output']>;\n amount_v2?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n last_transaction_version_v1?: Maybe<Scalars['Float']['output']>;\n last_transaction_version_v2?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_pop on columns */\nexport type Current_Fungible_Asset_Balances_Stddev_Pop_Fields = {\n __typename?: 'current_fungible_asset_balances_stddev_pop_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n amount_v1?: Maybe<Scalars['Float']['output']>;\n amount_v2?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n last_transaction_version_v1?: Maybe<Scalars['Float']['output']>;\n last_transaction_version_v2?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_samp on columns */\nexport type Current_Fungible_Asset_Balances_Stddev_Samp_Fields = {\n __typename?: 'current_fungible_asset_balances_stddev_samp_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n amount_v1?: Maybe<Scalars['Float']['output']>;\n amount_v2?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n last_transaction_version_v1?: Maybe<Scalars['Float']['output']>;\n last_transaction_version_v2?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Streaming cursor of the table \"current_fungible_asset_balances\" */\nexport type Current_Fungible_Asset_Balances_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Fungible_Asset_Balances_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Fungible_Asset_Balances_Stream_Cursor_Value_Input = {\n amount?: InputMaybe<Scalars['numeric']['input']>;\n amount_v1?: InputMaybe<Scalars['numeric']['input']>;\n amount_v2?: InputMaybe<Scalars['numeric']['input']>;\n asset_type?: InputMaybe<Scalars['String']['input']>;\n asset_type_v1?: InputMaybe<Scalars['String']['input']>;\n asset_type_v2?: InputMaybe<Scalars['String']['input']>;\n is_frozen?: InputMaybe<Scalars['Boolean']['input']>;\n is_primary?: InputMaybe<Scalars['Boolean']['input']>;\n last_transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n last_transaction_timestamp_v1?: InputMaybe<Scalars['timestamp']['input']>;\n last_transaction_timestamp_v2?: InputMaybe<Scalars['timestamp']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n last_transaction_version_v1?: InputMaybe<Scalars['bigint']['input']>;\n last_transaction_version_v2?: InputMaybe<Scalars['bigint']['input']>;\n owner_address?: InputMaybe<Scalars['String']['input']>;\n storage_id?: InputMaybe<Scalars['String']['input']>;\n token_standard?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** aggregate sum on columns */\nexport type Current_Fungible_Asset_Balances_Sum_Fields = {\n __typename?: 'current_fungible_asset_balances_sum_fields';\n amount?: Maybe<Scalars['numeric']['output']>;\n amount_v1?: Maybe<Scalars['numeric']['output']>;\n amount_v2?: Maybe<Scalars['numeric']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n last_transaction_version_v1?: Maybe<Scalars['bigint']['output']>;\n last_transaction_version_v2?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregate var_pop on columns */\nexport type Current_Fungible_Asset_Balances_Var_Pop_Fields = {\n __typename?: 'current_fungible_asset_balances_var_pop_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n amount_v1?: Maybe<Scalars['Float']['output']>;\n amount_v2?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n last_transaction_version_v1?: Maybe<Scalars['Float']['output']>;\n last_transaction_version_v2?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate var_samp on columns */\nexport type Current_Fungible_Asset_Balances_Var_Samp_Fields = {\n __typename?: 'current_fungible_asset_balances_var_samp_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n amount_v1?: Maybe<Scalars['Float']['output']>;\n amount_v2?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n last_transaction_version_v1?: Maybe<Scalars['Float']['output']>;\n last_transaction_version_v2?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate variance on columns */\nexport type Current_Fungible_Asset_Balances_Variance_Fields = {\n __typename?: 'current_fungible_asset_balances_variance_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n amount_v1?: Maybe<Scalars['Float']['output']>;\n amount_v2?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n last_transaction_version_v1?: Maybe<Scalars['Float']['output']>;\n last_transaction_version_v2?: Maybe<Scalars['Float']['output']>;\n};\n\n/** columns and relationships of \"current_objects\" */\nexport type Current_Objects = {\n __typename?: 'current_objects';\n allow_ungated_transfer: Scalars['Boolean']['output'];\n is_deleted: Scalars['Boolean']['output'];\n last_guid_creation_num: Scalars['numeric']['output'];\n last_transaction_version: Scalars['bigint']['output'];\n object_address: Scalars['String']['output'];\n owner_address: Scalars['String']['output'];\n state_key_hash: Scalars['String']['output'];\n};\n\n/** Boolean expression to filter rows from the table \"current_objects\". All fields are combined with a logical 'AND'. */\nexport type Current_Objects_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Objects_Bool_Exp>>;\n _not?: InputMaybe<Current_Objects_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Objects_Bool_Exp>>;\n allow_ungated_transfer?: InputMaybe<Boolean_Comparison_Exp>;\n is_deleted?: InputMaybe<Boolean_Comparison_Exp>;\n last_guid_creation_num?: InputMaybe<Numeric_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n object_address?: InputMaybe<String_Comparison_Exp>;\n owner_address?: InputMaybe<String_Comparison_Exp>;\n state_key_hash?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"current_objects\". */\nexport type Current_Objects_Order_By = {\n allow_ungated_transfer?: InputMaybe<Order_By>;\n is_deleted?: InputMaybe<Order_By>;\n last_guid_creation_num?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n object_address?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n state_key_hash?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"current_objects\" */\nexport enum Current_Objects_Select_Column {\n /** column name */\n AllowUngatedTransfer = 'allow_ungated_transfer',\n /** column name */\n IsDeleted = 'is_deleted',\n /** column name */\n LastGuidCreationNum = 'last_guid_creation_num',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n ObjectAddress = 'object_address',\n /** column name */\n OwnerAddress = 'owner_address',\n /** column name */\n StateKeyHash = 'state_key_hash'\n}\n\n/** Streaming cursor of the table \"current_objects\" */\nexport type Current_Objects_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Objects_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Objects_Stream_Cursor_Value_Input = {\n allow_ungated_transfer?: InputMaybe<Scalars['Boolean']['input']>;\n is_deleted?: InputMaybe<Scalars['Boolean']['input']>;\n last_guid_creation_num?: InputMaybe<Scalars['numeric']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n object_address?: InputMaybe<Scalars['String']['input']>;\n owner_address?: InputMaybe<Scalars['String']['input']>;\n state_key_hash?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"current_staking_pool_voter\" */\nexport type Current_Staking_Pool_Voter = {\n __typename?: 'current_staking_pool_voter';\n last_transaction_version: Scalars['bigint']['output'];\n operator_address: Scalars['String']['output'];\n /** An array relationship */\n operator_aptos_name: Array<Current_Aptos_Names>;\n /** An aggregate relationship */\n operator_aptos_name_aggregate: Current_Aptos_Names_Aggregate;\n staking_pool_address: Scalars['String']['output'];\n voter_address: Scalars['String']['output'];\n};\n\n\n/** columns and relationships of \"current_staking_pool_voter\" */\nexport type Current_Staking_Pool_VoterOperator_Aptos_NameArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"current_staking_pool_voter\" */\nexport type Current_Staking_Pool_VoterOperator_Aptos_Name_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n/** Boolean expression to filter rows from the table \"current_staking_pool_voter\". All fields are combined with a logical 'AND'. */\nexport type Current_Staking_Pool_Voter_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Staking_Pool_Voter_Bool_Exp>>;\n _not?: InputMaybe<Current_Staking_Pool_Voter_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Staking_Pool_Voter_Bool_Exp>>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n operator_address?: InputMaybe<String_Comparison_Exp>;\n operator_aptos_name?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n operator_aptos_name_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Bool_Exp>;\n staking_pool_address?: InputMaybe<String_Comparison_Exp>;\n voter_address?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"current_staking_pool_voter\". */\nexport type Current_Staking_Pool_Voter_Order_By = {\n last_transaction_version?: InputMaybe<Order_By>;\n operator_address?: InputMaybe<Order_By>;\n operator_aptos_name_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Order_By>;\n staking_pool_address?: InputMaybe<Order_By>;\n voter_address?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"current_staking_pool_voter\" */\nexport enum Current_Staking_Pool_Voter_Select_Column {\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n OperatorAddress = 'operator_address',\n /** column name */\n StakingPoolAddress = 'staking_pool_address',\n /** column name */\n VoterAddress = 'voter_address'\n}\n\n/** Streaming cursor of the table \"current_staking_pool_voter\" */\nexport type Current_Staking_Pool_Voter_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Staking_Pool_Voter_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Staking_Pool_Voter_Stream_Cursor_Value_Input = {\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n operator_address?: InputMaybe<Scalars['String']['input']>;\n staking_pool_address?: InputMaybe<Scalars['String']['input']>;\n voter_address?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"current_table_items\" */\nexport type Current_Table_Items = {\n __typename?: 'current_table_items';\n decoded_key: Scalars['jsonb']['output'];\n decoded_value?: Maybe<Scalars['jsonb']['output']>;\n is_deleted: Scalars['Boolean']['output'];\n key: Scalars['String']['output'];\n key_hash: Scalars['String']['output'];\n last_transaction_version: Scalars['bigint']['output'];\n table_handle: Scalars['String']['output'];\n};\n\n\n/** columns and relationships of \"current_table_items\" */\nexport type Current_Table_ItemsDecoded_KeyArgs = {\n path?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** columns and relationships of \"current_table_items\" */\nexport type Current_Table_ItemsDecoded_ValueArgs = {\n path?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Boolean expression to filter rows from the table \"current_table_items\". All fields are combined with a logical 'AND'. */\nexport type Current_Table_Items_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Table_Items_Bool_Exp>>;\n _not?: InputMaybe<Current_Table_Items_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Table_Items_Bool_Exp>>;\n decoded_key?: InputMaybe<Jsonb_Comparison_Exp>;\n decoded_value?: InputMaybe<Jsonb_Comparison_Exp>;\n is_deleted?: InputMaybe<Boolean_Comparison_Exp>;\n key?: InputMaybe<String_Comparison_Exp>;\n key_hash?: InputMaybe<String_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n table_handle?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"current_table_items\". */\nexport type Current_Table_Items_Order_By = {\n decoded_key?: InputMaybe<Order_By>;\n decoded_value?: InputMaybe<Order_By>;\n is_deleted?: InputMaybe<Order_By>;\n key?: InputMaybe<Order_By>;\n key_hash?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n table_handle?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"current_table_items\" */\nexport enum Current_Table_Items_Select_Column {\n /** column name */\n DecodedKey = 'decoded_key',\n /** column name */\n DecodedValue = 'decoded_value',\n /** column name */\n IsDeleted = 'is_deleted',\n /** column name */\n Key = 'key',\n /** column name */\n KeyHash = 'key_hash',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n TableHandle = 'table_handle'\n}\n\n/** Streaming cursor of the table \"current_table_items\" */\nexport type Current_Table_Items_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Table_Items_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Table_Items_Stream_Cursor_Value_Input = {\n decoded_key?: InputMaybe<Scalars['jsonb']['input']>;\n decoded_value?: InputMaybe<Scalars['jsonb']['input']>;\n is_deleted?: InputMaybe<Scalars['Boolean']['input']>;\n key?: InputMaybe<Scalars['String']['input']>;\n key_hash?: InputMaybe<Scalars['String']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n table_handle?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"legacy_migration_v1.current_token_datas\" */\nexport type Current_Token_Datas = {\n __typename?: 'current_token_datas';\n collection_data_id_hash?: Maybe<Scalars['String']['output']>;\n collection_name?: Maybe<Scalars['String']['output']>;\n creator_address?: Maybe<Scalars['String']['output']>;\n /** An object relationship */\n current_collection_data?: Maybe<Current_Collection_Datas>;\n default_properties?: Maybe<Scalars['jsonb']['output']>;\n description?: Maybe<Scalars['String']['output']>;\n description_mutable?: Maybe<Scalars['Boolean']['output']>;\n largest_property_version?: Maybe<Scalars['numeric']['output']>;\n last_transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n maximum?: Maybe<Scalars['numeric']['output']>;\n maximum_mutable?: Maybe<Scalars['Boolean']['output']>;\n metadata_uri?: Maybe<Scalars['String']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n payee_address?: Maybe<Scalars['String']['output']>;\n properties_mutable?: Maybe<Scalars['Boolean']['output']>;\n royalty_mutable?: Maybe<Scalars['Boolean']['output']>;\n royalty_points_denominator?: Maybe<Scalars['numeric']['output']>;\n royalty_points_numerator?: Maybe<Scalars['numeric']['output']>;\n supply?: Maybe<Scalars['numeric']['output']>;\n token_data_id_hash?: Maybe<Scalars['String']['output']>;\n uri_mutable?: Maybe<Scalars['Boolean']['output']>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.current_token_datas\" */\nexport type Current_Token_DatasDefault_PropertiesArgs = {\n path?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Boolean expression to filter rows from the table \"legacy_migration_v1.current_token_datas\". All fields are combined with a logical 'AND'. */\nexport type Current_Token_Datas_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Token_Datas_Bool_Exp>>;\n _not?: InputMaybe<Current_Token_Datas_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Token_Datas_Bool_Exp>>;\n collection_data_id_hash?: InputMaybe<String_Comparison_Exp>;\n collection_name?: InputMaybe<String_Comparison_Exp>;\n creator_address?: InputMaybe<String_Comparison_Exp>;\n current_collection_data?: InputMaybe<Current_Collection_Datas_Bool_Exp>;\n default_properties?: InputMaybe<Jsonb_Comparison_Exp>;\n description?: InputMaybe<String_Comparison_Exp>;\n description_mutable?: InputMaybe<Boolean_Comparison_Exp>;\n largest_property_version?: InputMaybe<Numeric_Comparison_Exp>;\n last_transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n maximum?: InputMaybe<Numeric_Comparison_Exp>;\n maximum_mutable?: InputMaybe<Boolean_Comparison_Exp>;\n metadata_uri?: InputMaybe<String_Comparison_Exp>;\n name?: InputMaybe<String_Comparison_Exp>;\n payee_address?: InputMaybe<String_Comparison_Exp>;\n properties_mutable?: InputMaybe<Boolean_Comparison_Exp>;\n royalty_mutable?: InputMaybe<Boolean_Comparison_Exp>;\n royalty_points_denominator?: InputMaybe<Numeric_Comparison_Exp>;\n royalty_points_numerator?: InputMaybe<Numeric_Comparison_Exp>;\n supply?: InputMaybe<Numeric_Comparison_Exp>;\n token_data_id_hash?: InputMaybe<String_Comparison_Exp>;\n uri_mutable?: InputMaybe<Boolean_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"legacy_migration_v1.current_token_datas\". */\nexport type Current_Token_Datas_Order_By = {\n collection_data_id_hash?: InputMaybe<Order_By>;\n collection_name?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n current_collection_data?: InputMaybe<Current_Collection_Datas_Order_By>;\n default_properties?: InputMaybe<Order_By>;\n description?: InputMaybe<Order_By>;\n description_mutable?: InputMaybe<Order_By>;\n largest_property_version?: InputMaybe<Order_By>;\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n maximum?: InputMaybe<Order_By>;\n maximum_mutable?: InputMaybe<Order_By>;\n metadata_uri?: InputMaybe<Order_By>;\n name?: InputMaybe<Order_By>;\n payee_address?: InputMaybe<Order_By>;\n properties_mutable?: InputMaybe<Order_By>;\n royalty_mutable?: InputMaybe<Order_By>;\n royalty_points_denominator?: InputMaybe<Order_By>;\n royalty_points_numerator?: InputMaybe<Order_By>;\n supply?: InputMaybe<Order_By>;\n token_data_id_hash?: InputMaybe<Order_By>;\n uri_mutable?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"legacy_migration_v1.current_token_datas\" */\nexport enum Current_Token_Datas_Select_Column {\n /** column name */\n CollectionDataIdHash = 'collection_data_id_hash',\n /** column name */\n CollectionName = 'collection_name',\n /** column name */\n CreatorAddress = 'creator_address',\n /** column name */\n DefaultProperties = 'default_properties',\n /** column name */\n Description = 'description',\n /** column name */\n DescriptionMutable = 'description_mutable',\n /** column name */\n LargestPropertyVersion = 'largest_property_version',\n /** column name */\n LastTransactionTimestamp = 'last_transaction_timestamp',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n Maximum = 'maximum',\n /** column name */\n MaximumMutable = 'maximum_mutable',\n /** column name */\n MetadataUri = 'metadata_uri',\n /** column name */\n Name = 'name',\n /** column name */\n PayeeAddress = 'payee_address',\n /** column name */\n PropertiesMutable = 'properties_mutable',\n /** column name */\n RoyaltyMutable = 'royalty_mutable',\n /** column name */\n RoyaltyPointsDenominator = 'royalty_points_denominator',\n /** column name */\n RoyaltyPointsNumerator = 'royalty_points_numerator',\n /** column name */\n Supply = 'supply',\n /** column name */\n TokenDataIdHash = 'token_data_id_hash',\n /** column name */\n UriMutable = 'uri_mutable'\n}\n\n/** Streaming cursor of the table \"current_token_datas\" */\nexport type Current_Token_Datas_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Token_Datas_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Token_Datas_Stream_Cursor_Value_Input = {\n collection_data_id_hash?: InputMaybe<Scalars['String']['input']>;\n collection_name?: InputMaybe<Scalars['String']['input']>;\n creator_address?: InputMaybe<Scalars['String']['input']>;\n default_properties?: InputMaybe<Scalars['jsonb']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n description_mutable?: InputMaybe<Scalars['Boolean']['input']>;\n largest_property_version?: InputMaybe<Scalars['numeric']['input']>;\n last_transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n maximum?: InputMaybe<Scalars['numeric']['input']>;\n maximum_mutable?: InputMaybe<Scalars['Boolean']['input']>;\n metadata_uri?: InputMaybe<Scalars['String']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n payee_address?: InputMaybe<Scalars['String']['input']>;\n properties_mutable?: InputMaybe<Scalars['Boolean']['input']>;\n royalty_mutable?: InputMaybe<Scalars['Boolean']['input']>;\n royalty_points_denominator?: InputMaybe<Scalars['numeric']['input']>;\n royalty_points_numerator?: InputMaybe<Scalars['numeric']['input']>;\n supply?: InputMaybe<Scalars['numeric']['input']>;\n token_data_id_hash?: InputMaybe<Scalars['String']['input']>;\n uri_mutable?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** columns and relationships of \"current_token_datas_v2\" */\nexport type Current_Token_Datas_V2 = {\n __typename?: 'current_token_datas_v2';\n /** An object relationship */\n aptos_name?: Maybe<Current_Aptos_Names>;\n /** An object relationship */\n cdn_asset_uris?: Maybe<Nft_Metadata_Crawler_Parsed_Asset_Uris>;\n collection_id: Scalars['String']['output'];\n /** An object relationship */\n current_collection?: Maybe<Current_Collections_V2>;\n /** An object relationship */\n current_royalty_v1?: Maybe<Current_Token_Royalty_V1>;\n /** An array relationship */\n current_token_ownerships: Array<Current_Token_Ownerships_V2>;\n /** An aggregate relationship */\n current_token_ownerships_aggregate: Current_Token_Ownerships_V2_Aggregate;\n decimals?: Maybe<Scalars['bigint']['output']>;\n description: Scalars['String']['output'];\n is_deleted_v2?: Maybe<Scalars['Boolean']['output']>;\n is_fungible_v2?: Maybe<Scalars['Boolean']['output']>;\n largest_property_version_v1?: Maybe<Scalars['numeric']['output']>;\n last_transaction_timestamp: Scalars['timestamp']['output'];\n last_transaction_version: Scalars['bigint']['output'];\n maximum?: Maybe<Scalars['numeric']['output']>;\n supply?: Maybe<Scalars['numeric']['output']>;\n token_data_id: Scalars['String']['output'];\n token_name: Scalars['String']['output'];\n token_properties: Scalars['jsonb']['output'];\n token_standard: Scalars['String']['output'];\n token_uri: Scalars['String']['output'];\n};\n\n\n/** columns and relationships of \"current_token_datas_v2\" */\nexport type Current_Token_Datas_V2Current_Token_OwnershipsArgs = {\n distinct_on?: InputMaybe<Array<Current_Token_Ownerships_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Ownerships_V2_Order_By>>;\n where?: InputMaybe<Current_Token_Ownerships_V2_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"current_token_datas_v2\" */\nexport type Current_Token_Datas_V2Current_Token_Ownerships_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Token_Ownerships_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Ownerships_V2_Order_By>>;\n where?: InputMaybe<Current_Token_Ownerships_V2_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"current_token_datas_v2\" */\nexport type Current_Token_Datas_V2Token_PropertiesArgs = {\n path?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Boolean expression to filter rows from the table \"current_token_datas_v2\". All fields are combined with a logical 'AND'. */\nexport type Current_Token_Datas_V2_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Token_Datas_V2_Bool_Exp>>;\n _not?: InputMaybe<Current_Token_Datas_V2_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Token_Datas_V2_Bool_Exp>>;\n aptos_name?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n cdn_asset_uris?: InputMaybe<Nft_Metadata_Crawler_Parsed_Asset_Uris_Bool_Exp>;\n collection_id?: InputMaybe<String_Comparison_Exp>;\n current_collection?: InputMaybe<Current_Collections_V2_Bool_Exp>;\n current_royalty_v1?: InputMaybe<Current_Token_Royalty_V1_Bool_Exp>;\n current_token_ownerships?: InputMaybe<Current_Token_Ownerships_V2_Bool_Exp>;\n current_token_ownerships_aggregate?: InputMaybe<Current_Token_Ownerships_V2_Aggregate_Bool_Exp>;\n decimals?: InputMaybe<Bigint_Comparison_Exp>;\n description?: InputMaybe<String_Comparison_Exp>;\n is_deleted_v2?: InputMaybe<Boolean_Comparison_Exp>;\n is_fungible_v2?: InputMaybe<Boolean_Comparison_Exp>;\n largest_property_version_v1?: InputMaybe<Numeric_Comparison_Exp>;\n last_transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n maximum?: InputMaybe<Numeric_Comparison_Exp>;\n supply?: InputMaybe<Numeric_Comparison_Exp>;\n token_data_id?: InputMaybe<String_Comparison_Exp>;\n token_name?: InputMaybe<String_Comparison_Exp>;\n token_properties?: InputMaybe<Jsonb_Comparison_Exp>;\n token_standard?: InputMaybe<String_Comparison_Exp>;\n token_uri?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"current_token_datas_v2\". */\nexport type Current_Token_Datas_V2_Order_By = {\n aptos_name?: InputMaybe<Current_Aptos_Names_Order_By>;\n cdn_asset_uris?: InputMaybe<Nft_Metadata_Crawler_Parsed_Asset_Uris_Order_By>;\n collection_id?: InputMaybe<Order_By>;\n current_collection?: InputMaybe<Current_Collections_V2_Order_By>;\n current_royalty_v1?: InputMaybe<Current_Token_Royalty_V1_Order_By>;\n current_token_ownerships_aggregate?: InputMaybe<Current_Token_Ownerships_V2_Aggregate_Order_By>;\n decimals?: InputMaybe<Order_By>;\n description?: InputMaybe<Order_By>;\n is_deleted_v2?: InputMaybe<Order_By>;\n is_fungible_v2?: InputMaybe<Order_By>;\n largest_property_version_v1?: InputMaybe<Order_By>;\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n maximum?: InputMaybe<Order_By>;\n supply?: InputMaybe<Order_By>;\n token_data_id?: InputMaybe<Order_By>;\n token_name?: InputMaybe<Order_By>;\n token_properties?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n token_uri?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"current_token_datas_v2\" */\nexport enum Current_Token_Datas_V2_Select_Column {\n /** column name */\n CollectionId = 'collection_id',\n /** column name */\n Decimals = 'decimals',\n /** column name */\n Description = 'description',\n /** column name */\n IsDeletedV2 = 'is_deleted_v2',\n /** column name */\n IsFungibleV2 = 'is_fungible_v2',\n /** column name */\n LargestPropertyVersionV1 = 'largest_property_version_v1',\n /** column name */\n LastTransactionTimestamp = 'last_transaction_timestamp',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n Maximum = 'maximum',\n /** column name */\n Supply = 'supply',\n /** column name */\n TokenDataId = 'token_data_id',\n /** column name */\n TokenName = 'token_name',\n /** column name */\n TokenProperties = 'token_properties',\n /** column name */\n TokenStandard = 'token_standard',\n /** column name */\n TokenUri = 'token_uri'\n}\n\n/** Streaming cursor of the table \"current_token_datas_v2\" */\nexport type Current_Token_Datas_V2_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Token_Datas_V2_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Token_Datas_V2_Stream_Cursor_Value_Input = {\n collection_id?: InputMaybe<Scalars['String']['input']>;\n decimals?: InputMaybe<Scalars['bigint']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n is_deleted_v2?: InputMaybe<Scalars['Boolean']['input']>;\n is_fungible_v2?: InputMaybe<Scalars['Boolean']['input']>;\n largest_property_version_v1?: InputMaybe<Scalars['numeric']['input']>;\n last_transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n maximum?: InputMaybe<Scalars['numeric']['input']>;\n supply?: InputMaybe<Scalars['numeric']['input']>;\n token_data_id?: InputMaybe<Scalars['String']['input']>;\n token_name?: InputMaybe<Scalars['String']['input']>;\n token_properties?: InputMaybe<Scalars['jsonb']['input']>;\n token_standard?: InputMaybe<Scalars['String']['input']>;\n token_uri?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"legacy_migration_v1.current_token_ownerships\" */\nexport type Current_Token_Ownerships = {\n __typename?: 'current_token_ownerships';\n amount?: Maybe<Scalars['numeric']['output']>;\n /** An object relationship */\n aptos_name?: Maybe<Current_Aptos_Names>;\n collection_data_id_hash?: Maybe<Scalars['String']['output']>;\n collection_name?: Maybe<Scalars['String']['output']>;\n creator_address?: Maybe<Scalars['String']['output']>;\n /** An object relationship */\n current_collection_data?: Maybe<Current_Collection_Datas>;\n /** An object relationship */\n current_token_data?: Maybe<Current_Token_Datas>;\n last_transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n property_version?: Maybe<Scalars['numeric']['output']>;\n table_type?: Maybe<Scalars['String']['output']>;\n token_data_id_hash?: Maybe<Scalars['String']['output']>;\n token_properties?: Maybe<Scalars['jsonb']['output']>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.current_token_ownerships\" */\nexport type Current_Token_OwnershipsToken_PropertiesArgs = {\n path?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** aggregated selection of \"legacy_migration_v1.current_token_ownerships\" */\nexport type Current_Token_Ownerships_Aggregate = {\n __typename?: 'current_token_ownerships_aggregate';\n aggregate?: Maybe<Current_Token_Ownerships_Aggregate_Fields>;\n nodes: Array<Current_Token_Ownerships>;\n};\n\nexport type Current_Token_Ownerships_Aggregate_Bool_Exp = {\n count?: InputMaybe<Current_Token_Ownerships_Aggregate_Bool_Exp_Count>;\n};\n\nexport type Current_Token_Ownerships_Aggregate_Bool_Exp_Count = {\n arguments?: InputMaybe<Array<Current_Token_Ownerships_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n filter?: InputMaybe<Current_Token_Ownerships_Bool_Exp>;\n predicate: Int_Comparison_Exp;\n};\n\n/** aggregate fields of \"legacy_migration_v1.current_token_ownerships\" */\nexport type Current_Token_Ownerships_Aggregate_Fields = {\n __typename?: 'current_token_ownerships_aggregate_fields';\n avg?: Maybe<Current_Token_Ownerships_Avg_Fields>;\n count: Scalars['Int']['output'];\n max?: Maybe<Current_Token_Ownerships_Max_Fields>;\n min?: Maybe<Current_Token_Ownerships_Min_Fields>;\n stddev?: Maybe<Current_Token_Ownerships_Stddev_Fields>;\n stddev_pop?: Maybe<Current_Token_Ownerships_Stddev_Pop_Fields>;\n stddev_samp?: Maybe<Current_Token_Ownerships_Stddev_Samp_Fields>;\n sum?: Maybe<Current_Token_Ownerships_Sum_Fields>;\n var_pop?: Maybe<Current_Token_Ownerships_Var_Pop_Fields>;\n var_samp?: Maybe<Current_Token_Ownerships_Var_Samp_Fields>;\n variance?: Maybe<Current_Token_Ownerships_Variance_Fields>;\n};\n\n\n/** aggregate fields of \"legacy_migration_v1.current_token_ownerships\" */\nexport type Current_Token_Ownerships_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Current_Token_Ownerships_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** order by aggregate values of table \"legacy_migration_v1.current_token_ownerships\" */\nexport type Current_Token_Ownerships_Aggregate_Order_By = {\n avg?: InputMaybe<Current_Token_Ownerships_Avg_Order_By>;\n count?: InputMaybe<Order_By>;\n max?: InputMaybe<Current_Token_Ownerships_Max_Order_By>;\n min?: InputMaybe<Current_Token_Ownerships_Min_Order_By>;\n stddev?: InputMaybe<Current_Token_Ownerships_Stddev_Order_By>;\n stddev_pop?: InputMaybe<Current_Token_Ownerships_Stddev_Pop_Order_By>;\n stddev_samp?: InputMaybe<Current_Token_Ownerships_Stddev_Samp_Order_By>;\n sum?: InputMaybe<Current_Token_Ownerships_Sum_Order_By>;\n var_pop?: InputMaybe<Current_Token_Ownerships_Var_Pop_Order_By>;\n var_samp?: InputMaybe<Current_Token_Ownerships_Var_Samp_Order_By>;\n variance?: InputMaybe<Current_Token_Ownerships_Variance_Order_By>;\n};\n\n/** aggregate avg on columns */\nexport type Current_Token_Ownerships_Avg_Fields = {\n __typename?: 'current_token_ownerships_avg_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n property_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by avg() on columns of table \"legacy_migration_v1.current_token_ownerships\" */\nexport type Current_Token_Ownerships_Avg_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n};\n\n/** Boolean expression to filter rows from the table \"legacy_migration_v1.current_token_ownerships\". All fields are combined with a logical 'AND'. */\nexport type Current_Token_Ownerships_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Token_Ownerships_Bool_Exp>>;\n _not?: InputMaybe<Current_Token_Ownerships_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Token_Ownerships_Bool_Exp>>;\n amount?: InputMaybe<Numeric_Comparison_Exp>;\n aptos_name?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n collection_data_id_hash?: InputMaybe<String_Comparison_Exp>;\n collection_name?: InputMaybe<String_Comparison_Exp>;\n creator_address?: InputMaybe<String_Comparison_Exp>;\n current_collection_data?: InputMaybe<Current_Collection_Datas_Bool_Exp>;\n current_token_data?: InputMaybe<Current_Token_Datas_Bool_Exp>;\n last_transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n name?: InputMaybe<String_Comparison_Exp>;\n owner_address?: InputMaybe<String_Comparison_Exp>;\n property_version?: InputMaybe<Numeric_Comparison_Exp>;\n table_type?: InputMaybe<String_Comparison_Exp>;\n token_data_id_hash?: InputMaybe<String_Comparison_Exp>;\n token_properties?: InputMaybe<Jsonb_Comparison_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Current_Token_Ownerships_Max_Fields = {\n __typename?: 'current_token_ownerships_max_fields';\n amount?: Maybe<Scalars['numeric']['output']>;\n collection_data_id_hash?: Maybe<Scalars['String']['output']>;\n collection_name?: Maybe<Scalars['String']['output']>;\n creator_address?: Maybe<Scalars['String']['output']>;\n last_transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n property_version?: Maybe<Scalars['numeric']['output']>;\n table_type?: Maybe<Scalars['String']['output']>;\n token_data_id_hash?: Maybe<Scalars['String']['output']>;\n};\n\n/** order by max() on columns of table \"legacy_migration_v1.current_token_ownerships\" */\nexport type Current_Token_Ownerships_Max_Order_By = {\n amount?: InputMaybe<Order_By>;\n collection_data_id_hash?: InputMaybe<Order_By>;\n collection_name?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n name?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n table_type?: InputMaybe<Order_By>;\n token_data_id_hash?: InputMaybe<Order_By>;\n};\n\n/** aggregate min on columns */\nexport type Current_Token_Ownerships_Min_Fields = {\n __typename?: 'current_token_ownerships_min_fields';\n amount?: Maybe<Scalars['numeric']['output']>;\n collection_data_id_hash?: Maybe<Scalars['String']['output']>;\n collection_name?: Maybe<Scalars['String']['output']>;\n creator_address?: Maybe<Scalars['String']['output']>;\n last_transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n property_version?: Maybe<Scalars['numeric']['output']>;\n table_type?: Maybe<Scalars['String']['output']>;\n token_data_id_hash?: Maybe<Scalars['String']['output']>;\n};\n\n/** order by min() on columns of table \"legacy_migration_v1.current_token_ownerships\" */\nexport type Current_Token_Ownerships_Min_Order_By = {\n amount?: InputMaybe<Order_By>;\n collection_data_id_hash?: InputMaybe<Order_By>;\n collection_name?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n name?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n table_type?: InputMaybe<Order_By>;\n token_data_id_hash?: InputMaybe<Order_By>;\n};\n\n/** Ordering options when selecting data from \"legacy_migration_v1.current_token_ownerships\". */\nexport type Current_Token_Ownerships_Order_By = {\n amount?: InputMaybe<Order_By>;\n aptos_name?: InputMaybe<Current_Aptos_Names_Order_By>;\n collection_data_id_hash?: InputMaybe<Order_By>;\n collection_name?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n current_collection_data?: InputMaybe<Current_Collection_Datas_Order_By>;\n current_token_data?: InputMaybe<Current_Token_Datas_Order_By>;\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n name?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n table_type?: InputMaybe<Order_By>;\n token_data_id_hash?: InputMaybe<Order_By>;\n token_properties?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"legacy_migration_v1.current_token_ownerships\" */\nexport enum Current_Token_Ownerships_Select_Column {\n /** column name */\n Amount = 'amount',\n /** column name */\n CollectionDataIdHash = 'collection_data_id_hash',\n /** column name */\n CollectionName = 'collection_name',\n /** column name */\n CreatorAddress = 'creator_address',\n /** column name */\n LastTransactionTimestamp = 'last_transaction_timestamp',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n Name = 'name',\n /** column name */\n OwnerAddress = 'owner_address',\n /** column name */\n PropertyVersion = 'property_version',\n /** column name */\n TableType = 'table_type',\n /** column name */\n TokenDataIdHash = 'token_data_id_hash',\n /** column name */\n TokenProperties = 'token_properties'\n}\n\n/** aggregate stddev on columns */\nexport type Current_Token_Ownerships_Stddev_Fields = {\n __typename?: 'current_token_ownerships_stddev_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n property_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev() on columns of table \"legacy_migration_v1.current_token_ownerships\" */\nexport type Current_Token_Ownerships_Stddev_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate stddev_pop on columns */\nexport type Current_Token_Ownerships_Stddev_Pop_Fields = {\n __typename?: 'current_token_ownerships_stddev_pop_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n property_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev_pop() on columns of table \"legacy_migration_v1.current_token_ownerships\" */\nexport type Current_Token_Ownerships_Stddev_Pop_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate stddev_samp on columns */\nexport type Current_Token_Ownerships_Stddev_Samp_Fields = {\n __typename?: 'current_token_ownerships_stddev_samp_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n property_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev_samp() on columns of table \"legacy_migration_v1.current_token_ownerships\" */\nexport type Current_Token_Ownerships_Stddev_Samp_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n};\n\n/** Streaming cursor of the table \"current_token_ownerships\" */\nexport type Current_Token_Ownerships_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Token_Ownerships_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Token_Ownerships_Stream_Cursor_Value_Input = {\n amount?: InputMaybe<Scalars['numeric']['input']>;\n collection_data_id_hash?: InputMaybe<Scalars['String']['input']>;\n collection_name?: InputMaybe<Scalars['String']['input']>;\n creator_address?: InputMaybe<Scalars['String']['input']>;\n last_transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n owner_address?: InputMaybe<Scalars['String']['input']>;\n property_version?: InputMaybe<Scalars['numeric']['input']>;\n table_type?: InputMaybe<Scalars['String']['input']>;\n token_data_id_hash?: InputMaybe<Scalars['String']['input']>;\n token_properties?: InputMaybe<Scalars['jsonb']['input']>;\n};\n\n/** aggregate sum on columns */\nexport type Current_Token_Ownerships_Sum_Fields = {\n __typename?: 'current_token_ownerships_sum_fields';\n amount?: Maybe<Scalars['numeric']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n property_version?: Maybe<Scalars['numeric']['output']>;\n};\n\n/** order by sum() on columns of table \"legacy_migration_v1.current_token_ownerships\" */\nexport type Current_Token_Ownerships_Sum_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n};\n\n/** columns and relationships of \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2 = {\n __typename?: 'current_token_ownerships_v2';\n amount: Scalars['numeric']['output'];\n /** An array relationship */\n composed_nfts: Array<Current_Token_Ownerships_V2>;\n /** An aggregate relationship */\n composed_nfts_aggregate: Current_Token_Ownerships_V2_Aggregate;\n /** An object relationship */\n current_token_data?: Maybe<Current_Token_Datas_V2>;\n is_fungible_v2?: Maybe<Scalars['Boolean']['output']>;\n is_soulbound_v2?: Maybe<Scalars['Boolean']['output']>;\n last_transaction_timestamp: Scalars['timestamp']['output'];\n last_transaction_version: Scalars['bigint']['output'];\n non_transferrable_by_owner?: Maybe<Scalars['Boolean']['output']>;\n owner_address: Scalars['String']['output'];\n property_version_v1: Scalars['numeric']['output'];\n storage_id: Scalars['String']['output'];\n table_type_v1?: Maybe<Scalars['String']['output']>;\n token_data_id: Scalars['String']['output'];\n token_properties_mutated_v1?: Maybe<Scalars['jsonb']['output']>;\n token_standard: Scalars['String']['output'];\n};\n\n\n/** columns and relationships of \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2Composed_NftsArgs = {\n distinct_on?: InputMaybe<Array<Current_Token_Ownerships_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Ownerships_V2_Order_By>>;\n where?: InputMaybe<Current_Token_Ownerships_V2_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2Composed_Nfts_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Token_Ownerships_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Ownerships_V2_Order_By>>;\n where?: InputMaybe<Current_Token_Ownerships_V2_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2Token_Properties_Mutated_V1Args = {\n path?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** aggregated selection of \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2_Aggregate = {\n __typename?: 'current_token_ownerships_v2_aggregate';\n aggregate?: Maybe<Current_Token_Ownerships_V2_Aggregate_Fields>;\n nodes: Array<Current_Token_Ownerships_V2>;\n};\n\nexport type Current_Token_Ownerships_V2_Aggregate_Bool_Exp = {\n bool_and?: InputMaybe<Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_And>;\n bool_or?: InputMaybe<Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_Or>;\n count?: InputMaybe<Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Count>;\n};\n\nexport type Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_And = {\n arguments: Current_Token_Ownerships_V2_Select_Column_Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_And_Arguments_Columns;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n filter?: InputMaybe<Current_Token_Ownerships_V2_Bool_Exp>;\n predicate: Boolean_Comparison_Exp;\n};\n\nexport type Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_Or = {\n arguments: Current_Token_Ownerships_V2_Select_Column_Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n filter?: InputMaybe<Current_Token_Ownerships_V2_Bool_Exp>;\n predicate: Boolean_Comparison_Exp;\n};\n\nexport type Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Count = {\n arguments?: InputMaybe<Array<Current_Token_Ownerships_V2_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n filter?: InputMaybe<Current_Token_Ownerships_V2_Bool_Exp>;\n predicate: Int_Comparison_Exp;\n};\n\n/** aggregate fields of \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2_Aggregate_Fields = {\n __typename?: 'current_token_ownerships_v2_aggregate_fields';\n avg?: Maybe<Current_Token_Ownerships_V2_Avg_Fields>;\n count: Scalars['Int']['output'];\n max?: Maybe<Current_Token_Ownerships_V2_Max_Fields>;\n min?: Maybe<Current_Token_Ownerships_V2_Min_Fields>;\n stddev?: Maybe<Current_Token_Ownerships_V2_Stddev_Fields>;\n stddev_pop?: Maybe<Current_Token_Ownerships_V2_Stddev_Pop_Fields>;\n stddev_samp?: Maybe<Current_Token_Ownerships_V2_Stddev_Samp_Fields>;\n sum?: Maybe<Current_Token_Ownerships_V2_Sum_Fields>;\n var_pop?: Maybe<Current_Token_Ownerships_V2_Var_Pop_Fields>;\n var_samp?: Maybe<Current_Token_Ownerships_V2_Var_Samp_Fields>;\n variance?: Maybe<Current_Token_Ownerships_V2_Variance_Fields>;\n};\n\n\n/** aggregate fields of \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Current_Token_Ownerships_V2_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** order by aggregate values of table \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2_Aggregate_Order_By = {\n avg?: InputMaybe<Current_Token_Ownerships_V2_Avg_Order_By>;\n count?: InputMaybe<Order_By>;\n max?: InputMaybe<Current_Token_Ownerships_V2_Max_Order_By>;\n min?: InputMaybe<Current_Token_Ownerships_V2_Min_Order_By>;\n stddev?: InputMaybe<Current_Token_Ownerships_V2_Stddev_Order_By>;\n stddev_pop?: InputMaybe<Current_Token_Ownerships_V2_Stddev_Pop_Order_By>;\n stddev_samp?: InputMaybe<Current_Token_Ownerships_V2_Stddev_Samp_Order_By>;\n sum?: InputMaybe<Current_Token_Ownerships_V2_Sum_Order_By>;\n var_pop?: InputMaybe<Current_Token_Ownerships_V2_Var_Pop_Order_By>;\n var_samp?: InputMaybe<Current_Token_Ownerships_V2_Var_Samp_Order_By>;\n variance?: InputMaybe<Current_Token_Ownerships_V2_Variance_Order_By>;\n};\n\n/** aggregate avg on columns */\nexport type Current_Token_Ownerships_V2_Avg_Fields = {\n __typename?: 'current_token_ownerships_v2_avg_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n property_version_v1?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by avg() on columns of table \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2_Avg_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n};\n\n/** Boolean expression to filter rows from the table \"current_token_ownerships_v2\". All fields are combined with a logical 'AND'. */\nexport type Current_Token_Ownerships_V2_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Token_Ownerships_V2_Bool_Exp>>;\n _not?: InputMaybe<Current_Token_Ownerships_V2_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Token_Ownerships_V2_Bool_Exp>>;\n amount?: InputMaybe<Numeric_Comparison_Exp>;\n composed_nfts?: InputMaybe<Current_Token_Ownerships_V2_Bool_Exp>;\n composed_nfts_aggregate?: InputMaybe<Current_Token_Ownerships_V2_Aggregate_Bool_Exp>;\n current_token_data?: InputMaybe<Current_Token_Datas_V2_Bool_Exp>;\n is_fungible_v2?: InputMaybe<Boolean_Comparison_Exp>;\n is_soulbound_v2?: InputMaybe<Boolean_Comparison_Exp>;\n last_transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n non_transferrable_by_owner?: InputMaybe<Boolean_Comparison_Exp>;\n owner_address?: InputMaybe<String_Comparison_Exp>;\n property_version_v1?: InputMaybe<Numeric_Comparison_Exp>;\n storage_id?: InputMaybe<String_Comparison_Exp>;\n table_type_v1?: InputMaybe<String_Comparison_Exp>;\n token_data_id?: InputMaybe<String_Comparison_Exp>;\n token_properties_mutated_v1?: InputMaybe<Jsonb_Comparison_Exp>;\n token_standard?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Current_Token_Ownerships_V2_Max_Fields = {\n __typename?: 'current_token_ownerships_v2_max_fields';\n amount?: Maybe<Scalars['numeric']['output']>;\n last_transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n property_version_v1?: Maybe<Scalars['numeric']['output']>;\n storage_id?: Maybe<Scalars['String']['output']>;\n table_type_v1?: Maybe<Scalars['String']['output']>;\n token_data_id?: Maybe<Scalars['String']['output']>;\n token_standard?: Maybe<Scalars['String']['output']>;\n};\n\n/** order by max() on columns of table \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2_Max_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n storage_id?: InputMaybe<Order_By>;\n table_type_v1?: InputMaybe<Order_By>;\n token_data_id?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n};\n\n/** aggregate min on columns */\nexport type Current_Token_Ownerships_V2_Min_Fields = {\n __typename?: 'current_token_ownerships_v2_min_fields';\n amount?: Maybe<Scalars['numeric']['output']>;\n last_transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n property_version_v1?: Maybe<Scalars['numeric']['output']>;\n storage_id?: Maybe<Scalars['String']['output']>;\n table_type_v1?: Maybe<Scalars['String']['output']>;\n token_data_id?: Maybe<Scalars['String']['output']>;\n token_standard?: Maybe<Scalars['String']['output']>;\n};\n\n/** order by min() on columns of table \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2_Min_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n storage_id?: InputMaybe<Order_By>;\n table_type_v1?: InputMaybe<Order_By>;\n token_data_id?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n};\n\n/** Ordering options when selecting data from \"current_token_ownerships_v2\". */\nexport type Current_Token_Ownerships_V2_Order_By = {\n amount?: InputMaybe<Order_By>;\n composed_nfts_aggregate?: InputMaybe<Current_Token_Ownerships_V2_Aggregate_Order_By>;\n current_token_data?: InputMaybe<Current_Token_Datas_V2_Order_By>;\n is_fungible_v2?: InputMaybe<Order_By>;\n is_soulbound_v2?: InputMaybe<Order_By>;\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n non_transferrable_by_owner?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n storage_id?: InputMaybe<Order_By>;\n table_type_v1?: InputMaybe<Order_By>;\n token_data_id?: InputMaybe<Order_By>;\n token_properties_mutated_v1?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"current_token_ownerships_v2\" */\nexport enum Current_Token_Ownerships_V2_Select_Column {\n /** column name */\n Amount = 'amount',\n /** column name */\n IsFungibleV2 = 'is_fungible_v2',\n /** column name */\n IsSoulboundV2 = 'is_soulbound_v2',\n /** column name */\n LastTransactionTimestamp = 'last_transaction_timestamp',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n NonTransferrableByOwner = 'non_transferrable_by_owner',\n /** column name */\n OwnerAddress = 'owner_address',\n /** column name */\n PropertyVersionV1 = 'property_version_v1',\n /** column name */\n StorageId = 'storage_id',\n /** column name */\n TableTypeV1 = 'table_type_v1',\n /** column name */\n TokenDataId = 'token_data_id',\n /** column name */\n TokenPropertiesMutatedV1 = 'token_properties_mutated_v1',\n /** column name */\n TokenStandard = 'token_standard'\n}\n\n/** select \"current_token_ownerships_v2_aggregate_bool_exp_bool_and_arguments_columns\" columns of table \"current_token_ownerships_v2\" */\nexport enum Current_Token_Ownerships_V2_Select_Column_Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_And_Arguments_Columns {\n /** column name */\n IsFungibleV2 = 'is_fungible_v2',\n /** column name */\n IsSoulboundV2 = 'is_soulbound_v2',\n /** column name */\n NonTransferrableByOwner = 'non_transferrable_by_owner'\n}\n\n/** select \"current_token_ownerships_v2_aggregate_bool_exp_bool_or_arguments_columns\" columns of table \"current_token_ownerships_v2\" */\nexport enum Current_Token_Ownerships_V2_Select_Column_Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns {\n /** column name */\n IsFungibleV2 = 'is_fungible_v2',\n /** column name */\n IsSoulboundV2 = 'is_soulbound_v2',\n /** column name */\n NonTransferrableByOwner = 'non_transferrable_by_owner'\n}\n\n/** aggregate stddev on columns */\nexport type Current_Token_Ownerships_V2_Stddev_Fields = {\n __typename?: 'current_token_ownerships_v2_stddev_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n property_version_v1?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev() on columns of table \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2_Stddev_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n};\n\n/** aggregate stddev_pop on columns */\nexport type Current_Token_Ownerships_V2_Stddev_Pop_Fields = {\n __typename?: 'current_token_ownerships_v2_stddev_pop_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n property_version_v1?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev_pop() on columns of table \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2_Stddev_Pop_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n};\n\n/** aggregate stddev_samp on columns */\nexport type Current_Token_Ownerships_V2_Stddev_Samp_Fields = {\n __typename?: 'current_token_ownerships_v2_stddev_samp_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n property_version_v1?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev_samp() on columns of table \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2_Stddev_Samp_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n};\n\n/** Streaming cursor of the table \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Token_Ownerships_V2_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Token_Ownerships_V2_Stream_Cursor_Value_Input = {\n amount?: InputMaybe<Scalars['numeric']['input']>;\n is_fungible_v2?: InputMaybe<Scalars['Boolean']['input']>;\n is_soulbound_v2?: InputMaybe<Scalars['Boolean']['input']>;\n last_transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n non_transferrable_by_owner?: InputMaybe<Scalars['Boolean']['input']>;\n owner_address?: InputMaybe<Scalars['String']['input']>;\n property_version_v1?: InputMaybe<Scalars['numeric']['input']>;\n storage_id?: InputMaybe<Scalars['String']['input']>;\n table_type_v1?: InputMaybe<Scalars['String']['input']>;\n token_data_id?: InputMaybe<Scalars['String']['input']>;\n token_properties_mutated_v1?: InputMaybe<Scalars['jsonb']['input']>;\n token_standard?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** aggregate sum on columns */\nexport type Current_Token_Ownerships_V2_Sum_Fields = {\n __typename?: 'current_token_ownerships_v2_sum_fields';\n amount?: Maybe<Scalars['numeric']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n property_version_v1?: Maybe<Scalars['numeric']['output']>;\n};\n\n/** order by sum() on columns of table \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2_Sum_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n};\n\n/** aggregate var_pop on columns */\nexport type Current_Token_Ownerships_V2_Var_Pop_Fields = {\n __typename?: 'current_token_ownerships_v2_var_pop_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n property_version_v1?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by var_pop() on columns of table \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2_Var_Pop_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n};\n\n/** aggregate var_samp on columns */\nexport type Current_Token_Ownerships_V2_Var_Samp_Fields = {\n __typename?: 'current_token_ownerships_v2_var_samp_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n property_version_v1?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by var_samp() on columns of table \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2_Var_Samp_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n};\n\n/** aggregate variance on columns */\nexport type Current_Token_Ownerships_V2_Variance_Fields = {\n __typename?: 'current_token_ownerships_v2_variance_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n property_version_v1?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by variance() on columns of table \"current_token_ownerships_v2\" */\nexport type Current_Token_Ownerships_V2_Variance_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n};\n\n/** aggregate var_pop on columns */\nexport type Current_Token_Ownerships_Var_Pop_Fields = {\n __typename?: 'current_token_ownerships_var_pop_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n property_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by var_pop() on columns of table \"legacy_migration_v1.current_token_ownerships\" */\nexport type Current_Token_Ownerships_Var_Pop_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate var_samp on columns */\nexport type Current_Token_Ownerships_Var_Samp_Fields = {\n __typename?: 'current_token_ownerships_var_samp_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n property_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by var_samp() on columns of table \"legacy_migration_v1.current_token_ownerships\" */\nexport type Current_Token_Ownerships_Var_Samp_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate variance on columns */\nexport type Current_Token_Ownerships_Variance_Fields = {\n __typename?: 'current_token_ownerships_variance_fields';\n amount?: Maybe<Scalars['Float']['output']>;\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n property_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by variance() on columns of table \"legacy_migration_v1.current_token_ownerships\" */\nexport type Current_Token_Ownerships_Variance_Order_By = {\n amount?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n};\n\n/** columns and relationships of \"current_token_pending_claims\" */\nexport type Current_Token_Pending_Claims = {\n __typename?: 'current_token_pending_claims';\n amount: Scalars['numeric']['output'];\n collection_data_id_hash: Scalars['String']['output'];\n collection_id: Scalars['String']['output'];\n collection_name: Scalars['String']['output'];\n creator_address: Scalars['String']['output'];\n /** An object relationship */\n current_collection_data?: Maybe<Current_Collection_Datas>;\n /** An object relationship */\n current_collection_v2?: Maybe<Current_Collections_V2>;\n /** An object relationship */\n current_token_data?: Maybe<Current_Token_Datas>;\n /** An object relationship */\n current_token_data_v2?: Maybe<Current_Token_Datas_V2>;\n from_address: Scalars['String']['output'];\n last_transaction_timestamp: Scalars['timestamp']['output'];\n last_transaction_version: Scalars['bigint']['output'];\n name: Scalars['String']['output'];\n property_version: Scalars['numeric']['output'];\n table_handle: Scalars['String']['output'];\n to_address: Scalars['String']['output'];\n /** An object relationship */\n token?: Maybe<Tokens>;\n token_data_id: Scalars['String']['output'];\n token_data_id_hash: Scalars['String']['output'];\n};\n\n/** Boolean expression to filter rows from the table \"current_token_pending_claims\". All fields are combined with a logical 'AND'. */\nexport type Current_Token_Pending_Claims_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Token_Pending_Claims_Bool_Exp>>;\n _not?: InputMaybe<Current_Token_Pending_Claims_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Token_Pending_Claims_Bool_Exp>>;\n amount?: InputMaybe<Numeric_Comparison_Exp>;\n collection_data_id_hash?: InputMaybe<String_Comparison_Exp>;\n collection_id?: InputMaybe<String_Comparison_Exp>;\n collection_name?: InputMaybe<String_Comparison_Exp>;\n creator_address?: InputMaybe<String_Comparison_Exp>;\n current_collection_data?: InputMaybe<Current_Collection_Datas_Bool_Exp>;\n current_collection_v2?: InputMaybe<Current_Collections_V2_Bool_Exp>;\n current_token_data?: InputMaybe<Current_Token_Datas_Bool_Exp>;\n current_token_data_v2?: InputMaybe<Current_Token_Datas_V2_Bool_Exp>;\n from_address?: InputMaybe<String_Comparison_Exp>;\n last_transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n name?: InputMaybe<String_Comparison_Exp>;\n property_version?: InputMaybe<Numeric_Comparison_Exp>;\n table_handle?: InputMaybe<String_Comparison_Exp>;\n to_address?: InputMaybe<String_Comparison_Exp>;\n token?: InputMaybe<Tokens_Bool_Exp>;\n token_data_id?: InputMaybe<String_Comparison_Exp>;\n token_data_id_hash?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"current_token_pending_claims\". */\nexport type Current_Token_Pending_Claims_Order_By = {\n amount?: InputMaybe<Order_By>;\n collection_data_id_hash?: InputMaybe<Order_By>;\n collection_id?: InputMaybe<Order_By>;\n collection_name?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n current_collection_data?: InputMaybe<Current_Collection_Datas_Order_By>;\n current_collection_v2?: InputMaybe<Current_Collections_V2_Order_By>;\n current_token_data?: InputMaybe<Current_Token_Datas_Order_By>;\n current_token_data_v2?: InputMaybe<Current_Token_Datas_V2_Order_By>;\n from_address?: InputMaybe<Order_By>;\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n name?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n table_handle?: InputMaybe<Order_By>;\n to_address?: InputMaybe<Order_By>;\n token?: InputMaybe<Tokens_Order_By>;\n token_data_id?: InputMaybe<Order_By>;\n token_data_id_hash?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"current_token_pending_claims\" */\nexport enum Current_Token_Pending_Claims_Select_Column {\n /** column name */\n Amount = 'amount',\n /** column name */\n CollectionDataIdHash = 'collection_data_id_hash',\n /** column name */\n CollectionId = 'collection_id',\n /** column name */\n CollectionName = 'collection_name',\n /** column name */\n CreatorAddress = 'creator_address',\n /** column name */\n FromAddress = 'from_address',\n /** column name */\n LastTransactionTimestamp = 'last_transaction_timestamp',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n Name = 'name',\n /** column name */\n PropertyVersion = 'property_version',\n /** column name */\n TableHandle = 'table_handle',\n /** column name */\n ToAddress = 'to_address',\n /** column name */\n TokenDataId = 'token_data_id',\n /** column name */\n TokenDataIdHash = 'token_data_id_hash'\n}\n\n/** Streaming cursor of the table \"current_token_pending_claims\" */\nexport type Current_Token_Pending_Claims_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Token_Pending_Claims_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Token_Pending_Claims_Stream_Cursor_Value_Input = {\n amount?: InputMaybe<Scalars['numeric']['input']>;\n collection_data_id_hash?: InputMaybe<Scalars['String']['input']>;\n collection_id?: InputMaybe<Scalars['String']['input']>;\n collection_name?: InputMaybe<Scalars['String']['input']>;\n creator_address?: InputMaybe<Scalars['String']['input']>;\n from_address?: InputMaybe<Scalars['String']['input']>;\n last_transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n property_version?: InputMaybe<Scalars['numeric']['input']>;\n table_handle?: InputMaybe<Scalars['String']['input']>;\n to_address?: InputMaybe<Scalars['String']['input']>;\n token_data_id?: InputMaybe<Scalars['String']['input']>;\n token_data_id_hash?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"current_token_royalty_v1\" */\nexport type Current_Token_Royalty_V1 = {\n __typename?: 'current_token_royalty_v1';\n last_transaction_timestamp: Scalars['timestamp']['output'];\n last_transaction_version: Scalars['bigint']['output'];\n payee_address: Scalars['String']['output'];\n royalty_points_denominator: Scalars['numeric']['output'];\n royalty_points_numerator: Scalars['numeric']['output'];\n token_data_id: Scalars['String']['output'];\n};\n\n/** Boolean expression to filter rows from the table \"current_token_royalty_v1\". All fields are combined with a logical 'AND'. */\nexport type Current_Token_Royalty_V1_Bool_Exp = {\n _and?: InputMaybe<Array<Current_Token_Royalty_V1_Bool_Exp>>;\n _not?: InputMaybe<Current_Token_Royalty_V1_Bool_Exp>;\n _or?: InputMaybe<Array<Current_Token_Royalty_V1_Bool_Exp>>;\n last_transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n payee_address?: InputMaybe<String_Comparison_Exp>;\n royalty_points_denominator?: InputMaybe<Numeric_Comparison_Exp>;\n royalty_points_numerator?: InputMaybe<Numeric_Comparison_Exp>;\n token_data_id?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"current_token_royalty_v1\". */\nexport type Current_Token_Royalty_V1_Order_By = {\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n payee_address?: InputMaybe<Order_By>;\n royalty_points_denominator?: InputMaybe<Order_By>;\n royalty_points_numerator?: InputMaybe<Order_By>;\n token_data_id?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"current_token_royalty_v1\" */\nexport enum Current_Token_Royalty_V1_Select_Column {\n /** column name */\n LastTransactionTimestamp = 'last_transaction_timestamp',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n PayeeAddress = 'payee_address',\n /** column name */\n RoyaltyPointsDenominator = 'royalty_points_denominator',\n /** column name */\n RoyaltyPointsNumerator = 'royalty_points_numerator',\n /** column name */\n TokenDataId = 'token_data_id'\n}\n\n/** Streaming cursor of the table \"current_token_royalty_v1\" */\nexport type Current_Token_Royalty_V1_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Current_Token_Royalty_V1_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Current_Token_Royalty_V1_Stream_Cursor_Value_Input = {\n last_transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n payee_address?: InputMaybe<Scalars['String']['input']>;\n royalty_points_denominator?: InputMaybe<Scalars['numeric']['input']>;\n royalty_points_numerator?: InputMaybe<Scalars['numeric']['input']>;\n token_data_id?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** ordering argument of a cursor */\nexport enum Cursor_Ordering {\n /** ascending ordering of the cursor */\n Asc = 'ASC',\n /** descending ordering of the cursor */\n Desc = 'DESC'\n}\n\n/** columns and relationships of \"delegated_staking_activities\" */\nexport type Delegated_Staking_Activities = {\n __typename?: 'delegated_staking_activities';\n amount: Scalars['numeric']['output'];\n delegator_address: Scalars['String']['output'];\n event_index: Scalars['bigint']['output'];\n event_type: Scalars['String']['output'];\n pool_address: Scalars['String']['output'];\n transaction_version: Scalars['bigint']['output'];\n};\n\n/** order by aggregate values of table \"delegated_staking_activities\" */\nexport type Delegated_Staking_Activities_Aggregate_Order_By = {\n avg?: InputMaybe<Delegated_Staking_Activities_Avg_Order_By>;\n count?: InputMaybe<Order_By>;\n max?: InputMaybe<Delegated_Staking_Activities_Max_Order_By>;\n min?: InputMaybe<Delegated_Staking_Activities_Min_Order_By>;\n stddev?: InputMaybe<Delegated_Staking_Activities_Stddev_Order_By>;\n stddev_pop?: InputMaybe<Delegated_Staking_Activities_Stddev_Pop_Order_By>;\n stddev_samp?: InputMaybe<Delegated_Staking_Activities_Stddev_Samp_Order_By>;\n sum?: InputMaybe<Delegated_Staking_Activities_Sum_Order_By>;\n var_pop?: InputMaybe<Delegated_Staking_Activities_Var_Pop_Order_By>;\n var_samp?: InputMaybe<Delegated_Staking_Activities_Var_Samp_Order_By>;\n variance?: InputMaybe<Delegated_Staking_Activities_Variance_Order_By>;\n};\n\n/** order by avg() on columns of table \"delegated_staking_activities\" */\nexport type Delegated_Staking_Activities_Avg_Order_By = {\n amount?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** Boolean expression to filter rows from the table \"delegated_staking_activities\". All fields are combined with a logical 'AND'. */\nexport type Delegated_Staking_Activities_Bool_Exp = {\n _and?: InputMaybe<Array<Delegated_Staking_Activities_Bool_Exp>>;\n _not?: InputMaybe<Delegated_Staking_Activities_Bool_Exp>;\n _or?: InputMaybe<Array<Delegated_Staking_Activities_Bool_Exp>>;\n amount?: InputMaybe<Numeric_Comparison_Exp>;\n delegator_address?: InputMaybe<String_Comparison_Exp>;\n event_index?: InputMaybe<Bigint_Comparison_Exp>;\n event_type?: InputMaybe<String_Comparison_Exp>;\n pool_address?: InputMaybe<String_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** order by max() on columns of table \"delegated_staking_activities\" */\nexport type Delegated_Staking_Activities_Max_Order_By = {\n amount?: InputMaybe<Order_By>;\n delegator_address?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_type?: InputMaybe<Order_By>;\n pool_address?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** order by min() on columns of table \"delegated_staking_activities\" */\nexport type Delegated_Staking_Activities_Min_Order_By = {\n amount?: InputMaybe<Order_By>;\n delegator_address?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_type?: InputMaybe<Order_By>;\n pool_address?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** Ordering options when selecting data from \"delegated_staking_activities\". */\nexport type Delegated_Staking_Activities_Order_By = {\n amount?: InputMaybe<Order_By>;\n delegator_address?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_type?: InputMaybe<Order_By>;\n pool_address?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"delegated_staking_activities\" */\nexport enum Delegated_Staking_Activities_Select_Column {\n /** column name */\n Amount = 'amount',\n /** column name */\n DelegatorAddress = 'delegator_address',\n /** column name */\n EventIndex = 'event_index',\n /** column name */\n EventType = 'event_type',\n /** column name */\n PoolAddress = 'pool_address',\n /** column name */\n TransactionVersion = 'transaction_version'\n}\n\n/** order by stddev() on columns of table \"delegated_staking_activities\" */\nexport type Delegated_Staking_Activities_Stddev_Order_By = {\n amount?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** order by stddev_pop() on columns of table \"delegated_staking_activities\" */\nexport type Delegated_Staking_Activities_Stddev_Pop_Order_By = {\n amount?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** order by stddev_samp() on columns of table \"delegated_staking_activities\" */\nexport type Delegated_Staking_Activities_Stddev_Samp_Order_By = {\n amount?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** Streaming cursor of the table \"delegated_staking_activities\" */\nexport type Delegated_Staking_Activities_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Delegated_Staking_Activities_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Delegated_Staking_Activities_Stream_Cursor_Value_Input = {\n amount?: InputMaybe<Scalars['numeric']['input']>;\n delegator_address?: InputMaybe<Scalars['String']['input']>;\n event_index?: InputMaybe<Scalars['bigint']['input']>;\n event_type?: InputMaybe<Scalars['String']['input']>;\n pool_address?: InputMaybe<Scalars['String']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** order by sum() on columns of table \"delegated_staking_activities\" */\nexport type Delegated_Staking_Activities_Sum_Order_By = {\n amount?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** order by var_pop() on columns of table \"delegated_staking_activities\" */\nexport type Delegated_Staking_Activities_Var_Pop_Order_By = {\n amount?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** order by var_samp() on columns of table \"delegated_staking_activities\" */\nexport type Delegated_Staking_Activities_Var_Samp_Order_By = {\n amount?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** order by variance() on columns of table \"delegated_staking_activities\" */\nexport type Delegated_Staking_Activities_Variance_Order_By = {\n amount?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** columns and relationships of \"delegated_staking_pool_balances\" */\nexport type Delegated_Staking_Pool_Balances = {\n __typename?: 'delegated_staking_pool_balances';\n active_table_handle: Scalars['String']['output'];\n inactive_table_handle: Scalars['String']['output'];\n operator_commission_percentage: Scalars['numeric']['output'];\n staking_pool_address: Scalars['String']['output'];\n total_coins: Scalars['numeric']['output'];\n total_shares: Scalars['numeric']['output'];\n transaction_version: Scalars['bigint']['output'];\n};\n\n/** aggregated selection of \"delegated_staking_pool_balances\" */\nexport type Delegated_Staking_Pool_Balances_Aggregate = {\n __typename?: 'delegated_staking_pool_balances_aggregate';\n aggregate?: Maybe<Delegated_Staking_Pool_Balances_Aggregate_Fields>;\n nodes: Array<Delegated_Staking_Pool_Balances>;\n};\n\n/** aggregate fields of \"delegated_staking_pool_balances\" */\nexport type Delegated_Staking_Pool_Balances_Aggregate_Fields = {\n __typename?: 'delegated_staking_pool_balances_aggregate_fields';\n avg?: Maybe<Delegated_Staking_Pool_Balances_Avg_Fields>;\n count: Scalars['Int']['output'];\n max?: Maybe<Delegated_Staking_Pool_Balances_Max_Fields>;\n min?: Maybe<Delegated_Staking_Pool_Balances_Min_Fields>;\n stddev?: Maybe<Delegated_Staking_Pool_Balances_Stddev_Fields>;\n stddev_pop?: Maybe<Delegated_Staking_Pool_Balances_Stddev_Pop_Fields>;\n stddev_samp?: Maybe<Delegated_Staking_Pool_Balances_Stddev_Samp_Fields>;\n sum?: Maybe<Delegated_Staking_Pool_Balances_Sum_Fields>;\n var_pop?: Maybe<Delegated_Staking_Pool_Balances_Var_Pop_Fields>;\n var_samp?: Maybe<Delegated_Staking_Pool_Balances_Var_Samp_Fields>;\n variance?: Maybe<Delegated_Staking_Pool_Balances_Variance_Fields>;\n};\n\n\n/** aggregate fields of \"delegated_staking_pool_balances\" */\nexport type Delegated_Staking_Pool_Balances_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Delegated_Staking_Pool_Balances_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** aggregate avg on columns */\nexport type Delegated_Staking_Pool_Balances_Avg_Fields = {\n __typename?: 'delegated_staking_pool_balances_avg_fields';\n operator_commission_percentage?: Maybe<Scalars['Float']['output']>;\n total_coins?: Maybe<Scalars['Float']['output']>;\n total_shares?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"delegated_staking_pool_balances\". All fields are combined with a logical 'AND'. */\nexport type Delegated_Staking_Pool_Balances_Bool_Exp = {\n _and?: InputMaybe<Array<Delegated_Staking_Pool_Balances_Bool_Exp>>;\n _not?: InputMaybe<Delegated_Staking_Pool_Balances_Bool_Exp>;\n _or?: InputMaybe<Array<Delegated_Staking_Pool_Balances_Bool_Exp>>;\n active_table_handle?: InputMaybe<String_Comparison_Exp>;\n inactive_table_handle?: InputMaybe<String_Comparison_Exp>;\n operator_commission_percentage?: InputMaybe<Numeric_Comparison_Exp>;\n staking_pool_address?: InputMaybe<String_Comparison_Exp>;\n total_coins?: InputMaybe<Numeric_Comparison_Exp>;\n total_shares?: InputMaybe<Numeric_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Delegated_Staking_Pool_Balances_Max_Fields = {\n __typename?: 'delegated_staking_pool_balances_max_fields';\n active_table_handle?: Maybe<Scalars['String']['output']>;\n inactive_table_handle?: Maybe<Scalars['String']['output']>;\n operator_commission_percentage?: Maybe<Scalars['numeric']['output']>;\n staking_pool_address?: Maybe<Scalars['String']['output']>;\n total_coins?: Maybe<Scalars['numeric']['output']>;\n total_shares?: Maybe<Scalars['numeric']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregate min on columns */\nexport type Delegated_Staking_Pool_Balances_Min_Fields = {\n __typename?: 'delegated_staking_pool_balances_min_fields';\n active_table_handle?: Maybe<Scalars['String']['output']>;\n inactive_table_handle?: Maybe<Scalars['String']['output']>;\n operator_commission_percentage?: Maybe<Scalars['numeric']['output']>;\n staking_pool_address?: Maybe<Scalars['String']['output']>;\n total_coins?: Maybe<Scalars['numeric']['output']>;\n total_shares?: Maybe<Scalars['numeric']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** Ordering options when selecting data from \"delegated_staking_pool_balances\". */\nexport type Delegated_Staking_Pool_Balances_Order_By = {\n active_table_handle?: InputMaybe<Order_By>;\n inactive_table_handle?: InputMaybe<Order_By>;\n operator_commission_percentage?: InputMaybe<Order_By>;\n staking_pool_address?: InputMaybe<Order_By>;\n total_coins?: InputMaybe<Order_By>;\n total_shares?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"delegated_staking_pool_balances\" */\nexport enum Delegated_Staking_Pool_Balances_Select_Column {\n /** column name */\n ActiveTableHandle = 'active_table_handle',\n /** column name */\n InactiveTableHandle = 'inactive_table_handle',\n /** column name */\n OperatorCommissionPercentage = 'operator_commission_percentage',\n /** column name */\n StakingPoolAddress = 'staking_pool_address',\n /** column name */\n TotalCoins = 'total_coins',\n /** column name */\n TotalShares = 'total_shares',\n /** column name */\n TransactionVersion = 'transaction_version'\n}\n\n/** aggregate stddev on columns */\nexport type Delegated_Staking_Pool_Balances_Stddev_Fields = {\n __typename?: 'delegated_staking_pool_balances_stddev_fields';\n operator_commission_percentage?: Maybe<Scalars['Float']['output']>;\n total_coins?: Maybe<Scalars['Float']['output']>;\n total_shares?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_pop on columns */\nexport type Delegated_Staking_Pool_Balances_Stddev_Pop_Fields = {\n __typename?: 'delegated_staking_pool_balances_stddev_pop_fields';\n operator_commission_percentage?: Maybe<Scalars['Float']['output']>;\n total_coins?: Maybe<Scalars['Float']['output']>;\n total_shares?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_samp on columns */\nexport type Delegated_Staking_Pool_Balances_Stddev_Samp_Fields = {\n __typename?: 'delegated_staking_pool_balances_stddev_samp_fields';\n operator_commission_percentage?: Maybe<Scalars['Float']['output']>;\n total_coins?: Maybe<Scalars['Float']['output']>;\n total_shares?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Streaming cursor of the table \"delegated_staking_pool_balances\" */\nexport type Delegated_Staking_Pool_Balances_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Delegated_Staking_Pool_Balances_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Delegated_Staking_Pool_Balances_Stream_Cursor_Value_Input = {\n active_table_handle?: InputMaybe<Scalars['String']['input']>;\n inactive_table_handle?: InputMaybe<Scalars['String']['input']>;\n operator_commission_percentage?: InputMaybe<Scalars['numeric']['input']>;\n staking_pool_address?: InputMaybe<Scalars['String']['input']>;\n total_coins?: InputMaybe<Scalars['numeric']['input']>;\n total_shares?: InputMaybe<Scalars['numeric']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** aggregate sum on columns */\nexport type Delegated_Staking_Pool_Balances_Sum_Fields = {\n __typename?: 'delegated_staking_pool_balances_sum_fields';\n operator_commission_percentage?: Maybe<Scalars['numeric']['output']>;\n total_coins?: Maybe<Scalars['numeric']['output']>;\n total_shares?: Maybe<Scalars['numeric']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregate var_pop on columns */\nexport type Delegated_Staking_Pool_Balances_Var_Pop_Fields = {\n __typename?: 'delegated_staking_pool_balances_var_pop_fields';\n operator_commission_percentage?: Maybe<Scalars['Float']['output']>;\n total_coins?: Maybe<Scalars['Float']['output']>;\n total_shares?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate var_samp on columns */\nexport type Delegated_Staking_Pool_Balances_Var_Samp_Fields = {\n __typename?: 'delegated_staking_pool_balances_var_samp_fields';\n operator_commission_percentage?: Maybe<Scalars['Float']['output']>;\n total_coins?: Maybe<Scalars['Float']['output']>;\n total_shares?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate variance on columns */\nexport type Delegated_Staking_Pool_Balances_Variance_Fields = {\n __typename?: 'delegated_staking_pool_balances_variance_fields';\n operator_commission_percentage?: Maybe<Scalars['Float']['output']>;\n total_coins?: Maybe<Scalars['Float']['output']>;\n total_shares?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** columns and relationships of \"delegated_staking_pools\" */\nexport type Delegated_Staking_Pools = {\n __typename?: 'delegated_staking_pools';\n /** An object relationship */\n current_staking_pool?: Maybe<Current_Staking_Pool_Voter>;\n first_transaction_version: Scalars['bigint']['output'];\n staking_pool_address: Scalars['String']['output'];\n};\n\n/** Boolean expression to filter rows from the table \"delegated_staking_pools\". All fields are combined with a logical 'AND'. */\nexport type Delegated_Staking_Pools_Bool_Exp = {\n _and?: InputMaybe<Array<Delegated_Staking_Pools_Bool_Exp>>;\n _not?: InputMaybe<Delegated_Staking_Pools_Bool_Exp>;\n _or?: InputMaybe<Array<Delegated_Staking_Pools_Bool_Exp>>;\n current_staking_pool?: InputMaybe<Current_Staking_Pool_Voter_Bool_Exp>;\n first_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n staking_pool_address?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"delegated_staking_pools\". */\nexport type Delegated_Staking_Pools_Order_By = {\n current_staking_pool?: InputMaybe<Current_Staking_Pool_Voter_Order_By>;\n first_transaction_version?: InputMaybe<Order_By>;\n staking_pool_address?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"delegated_staking_pools\" */\nexport enum Delegated_Staking_Pools_Select_Column {\n /** column name */\n FirstTransactionVersion = 'first_transaction_version',\n /** column name */\n StakingPoolAddress = 'staking_pool_address'\n}\n\n/** Streaming cursor of the table \"delegated_staking_pools\" */\nexport type Delegated_Staking_Pools_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Delegated_Staking_Pools_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Delegated_Staking_Pools_Stream_Cursor_Value_Input = {\n first_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n staking_pool_address?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"delegator_distinct_pool\" */\nexport type Delegator_Distinct_Pool = {\n __typename?: 'delegator_distinct_pool';\n /** An object relationship */\n current_pool_balance?: Maybe<Current_Delegated_Staking_Pool_Balances>;\n delegator_address?: Maybe<Scalars['String']['output']>;\n pool_address?: Maybe<Scalars['String']['output']>;\n /** An object relationship */\n staking_pool_metadata?: Maybe<Current_Staking_Pool_Voter>;\n};\n\n/** aggregated selection of \"delegator_distinct_pool\" */\nexport type Delegator_Distinct_Pool_Aggregate = {\n __typename?: 'delegator_distinct_pool_aggregate';\n aggregate?: Maybe<Delegator_Distinct_Pool_Aggregate_Fields>;\n nodes: Array<Delegator_Distinct_Pool>;\n};\n\n/** aggregate fields of \"delegator_distinct_pool\" */\nexport type Delegator_Distinct_Pool_Aggregate_Fields = {\n __typename?: 'delegator_distinct_pool_aggregate_fields';\n count: Scalars['Int']['output'];\n max?: Maybe<Delegator_Distinct_Pool_Max_Fields>;\n min?: Maybe<Delegator_Distinct_Pool_Min_Fields>;\n};\n\n\n/** aggregate fields of \"delegator_distinct_pool\" */\nexport type Delegator_Distinct_Pool_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Delegator_Distinct_Pool_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** Boolean expression to filter rows from the table \"delegator_distinct_pool\". All fields are combined with a logical 'AND'. */\nexport type Delegator_Distinct_Pool_Bool_Exp = {\n _and?: InputMaybe<Array<Delegator_Distinct_Pool_Bool_Exp>>;\n _not?: InputMaybe<Delegator_Distinct_Pool_Bool_Exp>;\n _or?: InputMaybe<Array<Delegator_Distinct_Pool_Bool_Exp>>;\n current_pool_balance?: InputMaybe<Current_Delegated_Staking_Pool_Balances_Bool_Exp>;\n delegator_address?: InputMaybe<String_Comparison_Exp>;\n pool_address?: InputMaybe<String_Comparison_Exp>;\n staking_pool_metadata?: InputMaybe<Current_Staking_Pool_Voter_Bool_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Delegator_Distinct_Pool_Max_Fields = {\n __typename?: 'delegator_distinct_pool_max_fields';\n delegator_address?: Maybe<Scalars['String']['output']>;\n pool_address?: Maybe<Scalars['String']['output']>;\n};\n\n/** aggregate min on columns */\nexport type Delegator_Distinct_Pool_Min_Fields = {\n __typename?: 'delegator_distinct_pool_min_fields';\n delegator_address?: Maybe<Scalars['String']['output']>;\n pool_address?: Maybe<Scalars['String']['output']>;\n};\n\n/** Ordering options when selecting data from \"delegator_distinct_pool\". */\nexport type Delegator_Distinct_Pool_Order_By = {\n current_pool_balance?: InputMaybe<Current_Delegated_Staking_Pool_Balances_Order_By>;\n delegator_address?: InputMaybe<Order_By>;\n pool_address?: InputMaybe<Order_By>;\n staking_pool_metadata?: InputMaybe<Current_Staking_Pool_Voter_Order_By>;\n};\n\n/** select columns of table \"delegator_distinct_pool\" */\nexport enum Delegator_Distinct_Pool_Select_Column {\n /** column name */\n DelegatorAddress = 'delegator_address',\n /** column name */\n PoolAddress = 'pool_address'\n}\n\n/** Streaming cursor of the table \"delegator_distinct_pool\" */\nexport type Delegator_Distinct_Pool_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Delegator_Distinct_Pool_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Delegator_Distinct_Pool_Stream_Cursor_Value_Input = {\n delegator_address?: InputMaybe<Scalars['String']['input']>;\n pool_address?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"events\" */\nexport type Events = {\n __typename?: 'events';\n account_address: Scalars['String']['output'];\n creation_number: Scalars['bigint']['output'];\n data: Scalars['jsonb']['output'];\n event_index: Scalars['bigint']['output'];\n indexed_type: Scalars['String']['output'];\n sequence_number: Scalars['bigint']['output'];\n transaction_block_height: Scalars['bigint']['output'];\n transaction_version: Scalars['bigint']['output'];\n type: Scalars['String']['output'];\n};\n\n\n/** columns and relationships of \"events\" */\nexport type EventsDataArgs = {\n path?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Boolean expression to filter rows from the table \"events\". All fields are combined with a logical 'AND'. */\nexport type Events_Bool_Exp = {\n _and?: InputMaybe<Array<Events_Bool_Exp>>;\n _not?: InputMaybe<Events_Bool_Exp>;\n _or?: InputMaybe<Array<Events_Bool_Exp>>;\n account_address?: InputMaybe<String_Comparison_Exp>;\n creation_number?: InputMaybe<Bigint_Comparison_Exp>;\n data?: InputMaybe<Jsonb_Comparison_Exp>;\n event_index?: InputMaybe<Bigint_Comparison_Exp>;\n indexed_type?: InputMaybe<String_Comparison_Exp>;\n sequence_number?: InputMaybe<Bigint_Comparison_Exp>;\n transaction_block_height?: InputMaybe<Bigint_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n type?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"events\". */\nexport type Events_Order_By = {\n account_address?: InputMaybe<Order_By>;\n creation_number?: InputMaybe<Order_By>;\n data?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n indexed_type?: InputMaybe<Order_By>;\n sequence_number?: InputMaybe<Order_By>;\n transaction_block_height?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n type?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"events\" */\nexport enum Events_Select_Column {\n /** column name */\n AccountAddress = 'account_address',\n /** column name */\n CreationNumber = 'creation_number',\n /** column name */\n Data = 'data',\n /** column name */\n EventIndex = 'event_index',\n /** column name */\n IndexedType = 'indexed_type',\n /** column name */\n SequenceNumber = 'sequence_number',\n /** column name */\n TransactionBlockHeight = 'transaction_block_height',\n /** column name */\n TransactionVersion = 'transaction_version',\n /** column name */\n Type = 'type'\n}\n\n/** Streaming cursor of the table \"events\" */\nexport type Events_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Events_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Events_Stream_Cursor_Value_Input = {\n account_address?: InputMaybe<Scalars['String']['input']>;\n creation_number?: InputMaybe<Scalars['bigint']['input']>;\n data?: InputMaybe<Scalars['jsonb']['input']>;\n event_index?: InputMaybe<Scalars['bigint']['input']>;\n indexed_type?: InputMaybe<Scalars['String']['input']>;\n sequence_number?: InputMaybe<Scalars['bigint']['input']>;\n transaction_block_height?: InputMaybe<Scalars['bigint']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"fungible_asset_activities\" */\nexport type Fungible_Asset_Activities = {\n __typename?: 'fungible_asset_activities';\n amount?: Maybe<Scalars['numeric']['output']>;\n asset_type?: Maybe<Scalars['String']['output']>;\n block_height: Scalars['bigint']['output'];\n entry_function_id_str?: Maybe<Scalars['String']['output']>;\n event_index: Scalars['bigint']['output'];\n gas_fee_payer_address?: Maybe<Scalars['String']['output']>;\n is_frozen?: Maybe<Scalars['Boolean']['output']>;\n is_gas_fee: Scalars['Boolean']['output'];\n is_transaction_success: Scalars['Boolean']['output'];\n /** An object relationship */\n metadata?: Maybe<Fungible_Asset_Metadata>;\n owner_address?: Maybe<Scalars['String']['output']>;\n /** An array relationship */\n owner_aptos_names: Array<Current_Aptos_Names>;\n /** An aggregate relationship */\n owner_aptos_names_aggregate: Current_Aptos_Names_Aggregate;\n storage_id: Scalars['String']['output'];\n storage_refund_amount: Scalars['numeric']['output'];\n token_standard: Scalars['String']['output'];\n transaction_timestamp: Scalars['timestamp']['output'];\n transaction_version: Scalars['bigint']['output'];\n type: Scalars['String']['output'];\n};\n\n\n/** columns and relationships of \"fungible_asset_activities\" */\nexport type Fungible_Asset_ActivitiesOwner_Aptos_NamesArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"fungible_asset_activities\" */\nexport type Fungible_Asset_ActivitiesOwner_Aptos_Names_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n/** order by aggregate values of table \"fungible_asset_activities\" */\nexport type Fungible_Asset_Activities_Aggregate_Order_By = {\n avg?: InputMaybe<Fungible_Asset_Activities_Avg_Order_By>;\n count?: InputMaybe<Order_By>;\n max?: InputMaybe<Fungible_Asset_Activities_Max_Order_By>;\n min?: InputMaybe<Fungible_Asset_Activities_Min_Order_By>;\n stddev?: InputMaybe<Fungible_Asset_Activities_Stddev_Order_By>;\n stddev_pop?: InputMaybe<Fungible_Asset_Activities_Stddev_Pop_Order_By>;\n stddev_samp?: InputMaybe<Fungible_Asset_Activities_Stddev_Samp_Order_By>;\n sum?: InputMaybe<Fungible_Asset_Activities_Sum_Order_By>;\n var_pop?: InputMaybe<Fungible_Asset_Activities_Var_Pop_Order_By>;\n var_samp?: InputMaybe<Fungible_Asset_Activities_Var_Samp_Order_By>;\n variance?: InputMaybe<Fungible_Asset_Activities_Variance_Order_By>;\n};\n\n/** order by avg() on columns of table \"fungible_asset_activities\" */\nexport type Fungible_Asset_Activities_Avg_Order_By = {\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** Boolean expression to filter rows from the table \"fungible_asset_activities\". All fields are combined with a logical 'AND'. */\nexport type Fungible_Asset_Activities_Bool_Exp = {\n _and?: InputMaybe<Array<Fungible_Asset_Activities_Bool_Exp>>;\n _not?: InputMaybe<Fungible_Asset_Activities_Bool_Exp>;\n _or?: InputMaybe<Array<Fungible_Asset_Activities_Bool_Exp>>;\n amount?: InputMaybe<Numeric_Comparison_Exp>;\n asset_type?: InputMaybe<String_Comparison_Exp>;\n block_height?: InputMaybe<Bigint_Comparison_Exp>;\n entry_function_id_str?: InputMaybe<String_Comparison_Exp>;\n event_index?: InputMaybe<Bigint_Comparison_Exp>;\n gas_fee_payer_address?: InputMaybe<String_Comparison_Exp>;\n is_frozen?: InputMaybe<Boolean_Comparison_Exp>;\n is_gas_fee?: InputMaybe<Boolean_Comparison_Exp>;\n is_transaction_success?: InputMaybe<Boolean_Comparison_Exp>;\n metadata?: InputMaybe<Fungible_Asset_Metadata_Bool_Exp>;\n owner_address?: InputMaybe<String_Comparison_Exp>;\n owner_aptos_names?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n owner_aptos_names_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Bool_Exp>;\n storage_id?: InputMaybe<String_Comparison_Exp>;\n storage_refund_amount?: InputMaybe<Numeric_Comparison_Exp>;\n token_standard?: InputMaybe<String_Comparison_Exp>;\n transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n type?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** order by max() on columns of table \"fungible_asset_activities\" */\nexport type Fungible_Asset_Activities_Max_Order_By = {\n amount?: InputMaybe<Order_By>;\n asset_type?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n entry_function_id_str?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n gas_fee_payer_address?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n storage_id?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n type?: InputMaybe<Order_By>;\n};\n\n/** order by min() on columns of table \"fungible_asset_activities\" */\nexport type Fungible_Asset_Activities_Min_Order_By = {\n amount?: InputMaybe<Order_By>;\n asset_type?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n entry_function_id_str?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n gas_fee_payer_address?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n storage_id?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n type?: InputMaybe<Order_By>;\n};\n\n/** Ordering options when selecting data from \"fungible_asset_activities\". */\nexport type Fungible_Asset_Activities_Order_By = {\n amount?: InputMaybe<Order_By>;\n asset_type?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n entry_function_id_str?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n gas_fee_payer_address?: InputMaybe<Order_By>;\n is_frozen?: InputMaybe<Order_By>;\n is_gas_fee?: InputMaybe<Order_By>;\n is_transaction_success?: InputMaybe<Order_By>;\n metadata?: InputMaybe<Fungible_Asset_Metadata_Order_By>;\n owner_address?: InputMaybe<Order_By>;\n owner_aptos_names_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Order_By>;\n storage_id?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n type?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"fungible_asset_activities\" */\nexport enum Fungible_Asset_Activities_Select_Column {\n /** column name */\n Amount = 'amount',\n /** column name */\n AssetType = 'asset_type',\n /** column name */\n BlockHeight = 'block_height',\n /** column name */\n EntryFunctionIdStr = 'entry_function_id_str',\n /** column name */\n EventIndex = 'event_index',\n /** column name */\n GasFeePayerAddress = 'gas_fee_payer_address',\n /** column name */\n IsFrozen = 'is_frozen',\n /** column name */\n IsGasFee = 'is_gas_fee',\n /** column name */\n IsTransactionSuccess = 'is_transaction_success',\n /** column name */\n OwnerAddress = 'owner_address',\n /** column name */\n StorageId = 'storage_id',\n /** column name */\n StorageRefundAmount = 'storage_refund_amount',\n /** column name */\n TokenStandard = 'token_standard',\n /** column name */\n TransactionTimestamp = 'transaction_timestamp',\n /** column name */\n TransactionVersion = 'transaction_version',\n /** column name */\n Type = 'type'\n}\n\n/** order by stddev() on columns of table \"fungible_asset_activities\" */\nexport type Fungible_Asset_Activities_Stddev_Order_By = {\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** order by stddev_pop() on columns of table \"fungible_asset_activities\" */\nexport type Fungible_Asset_Activities_Stddev_Pop_Order_By = {\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** order by stddev_samp() on columns of table \"fungible_asset_activities\" */\nexport type Fungible_Asset_Activities_Stddev_Samp_Order_By = {\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** Streaming cursor of the table \"fungible_asset_activities\" */\nexport type Fungible_Asset_Activities_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Fungible_Asset_Activities_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Fungible_Asset_Activities_Stream_Cursor_Value_Input = {\n amount?: InputMaybe<Scalars['numeric']['input']>;\n asset_type?: InputMaybe<Scalars['String']['input']>;\n block_height?: InputMaybe<Scalars['bigint']['input']>;\n entry_function_id_str?: InputMaybe<Scalars['String']['input']>;\n event_index?: InputMaybe<Scalars['bigint']['input']>;\n gas_fee_payer_address?: InputMaybe<Scalars['String']['input']>;\n is_frozen?: InputMaybe<Scalars['Boolean']['input']>;\n is_gas_fee?: InputMaybe<Scalars['Boolean']['input']>;\n is_transaction_success?: InputMaybe<Scalars['Boolean']['input']>;\n owner_address?: InputMaybe<Scalars['String']['input']>;\n storage_id?: InputMaybe<Scalars['String']['input']>;\n storage_refund_amount?: InputMaybe<Scalars['numeric']['input']>;\n token_standard?: InputMaybe<Scalars['String']['input']>;\n transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** order by sum() on columns of table \"fungible_asset_activities\" */\nexport type Fungible_Asset_Activities_Sum_Order_By = {\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** order by var_pop() on columns of table \"fungible_asset_activities\" */\nexport type Fungible_Asset_Activities_Var_Pop_Order_By = {\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** order by var_samp() on columns of table \"fungible_asset_activities\" */\nexport type Fungible_Asset_Activities_Var_Samp_Order_By = {\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** order by variance() on columns of table \"fungible_asset_activities\" */\nexport type Fungible_Asset_Activities_Variance_Order_By = {\n amount?: InputMaybe<Order_By>;\n block_height?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n storage_refund_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** columns and relationships of \"fungible_asset_metadata\" */\nexport type Fungible_Asset_Metadata = {\n __typename?: 'fungible_asset_metadata';\n asset_type: Scalars['String']['output'];\n creator_address: Scalars['String']['output'];\n decimals: Scalars['Int']['output'];\n icon_uri?: Maybe<Scalars['String']['output']>;\n last_transaction_timestamp: Scalars['timestamp']['output'];\n last_transaction_version: Scalars['bigint']['output'];\n maximum_v2?: Maybe<Scalars['numeric']['output']>;\n name: Scalars['String']['output'];\n project_uri?: Maybe<Scalars['String']['output']>;\n supply_aggregator_table_handle_v1?: Maybe<Scalars['String']['output']>;\n supply_aggregator_table_key_v1?: Maybe<Scalars['String']['output']>;\n supply_v2?: Maybe<Scalars['numeric']['output']>;\n symbol: Scalars['String']['output'];\n token_standard: Scalars['String']['output'];\n};\n\n/** Boolean expression to filter rows from the table \"fungible_asset_metadata\". All fields are combined with a logical 'AND'. */\nexport type Fungible_Asset_Metadata_Bool_Exp = {\n _and?: InputMaybe<Array<Fungible_Asset_Metadata_Bool_Exp>>;\n _not?: InputMaybe<Fungible_Asset_Metadata_Bool_Exp>;\n _or?: InputMaybe<Array<Fungible_Asset_Metadata_Bool_Exp>>;\n asset_type?: InputMaybe<String_Comparison_Exp>;\n creator_address?: InputMaybe<String_Comparison_Exp>;\n decimals?: InputMaybe<Int_Comparison_Exp>;\n icon_uri?: InputMaybe<String_Comparison_Exp>;\n last_transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n maximum_v2?: InputMaybe<Numeric_Comparison_Exp>;\n name?: InputMaybe<String_Comparison_Exp>;\n project_uri?: InputMaybe<String_Comparison_Exp>;\n supply_aggregator_table_handle_v1?: InputMaybe<String_Comparison_Exp>;\n supply_aggregator_table_key_v1?: InputMaybe<String_Comparison_Exp>;\n supply_v2?: InputMaybe<Numeric_Comparison_Exp>;\n symbol?: InputMaybe<String_Comparison_Exp>;\n token_standard?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"fungible_asset_metadata\". */\nexport type Fungible_Asset_Metadata_Order_By = {\n asset_type?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n decimals?: InputMaybe<Order_By>;\n icon_uri?: InputMaybe<Order_By>;\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n maximum_v2?: InputMaybe<Order_By>;\n name?: InputMaybe<Order_By>;\n project_uri?: InputMaybe<Order_By>;\n supply_aggregator_table_handle_v1?: InputMaybe<Order_By>;\n supply_aggregator_table_key_v1?: InputMaybe<Order_By>;\n supply_v2?: InputMaybe<Order_By>;\n symbol?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"fungible_asset_metadata\" */\nexport enum Fungible_Asset_Metadata_Select_Column {\n /** column name */\n AssetType = 'asset_type',\n /** column name */\n CreatorAddress = 'creator_address',\n /** column name */\n Decimals = 'decimals',\n /** column name */\n IconUri = 'icon_uri',\n /** column name */\n LastTransactionTimestamp = 'last_transaction_timestamp',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n MaximumV2 = 'maximum_v2',\n /** column name */\n Name = 'name',\n /** column name */\n ProjectUri = 'project_uri',\n /** column name */\n SupplyAggregatorTableHandleV1 = 'supply_aggregator_table_handle_v1',\n /** column name */\n SupplyAggregatorTableKeyV1 = 'supply_aggregator_table_key_v1',\n /** column name */\n SupplyV2 = 'supply_v2',\n /** column name */\n Symbol = 'symbol',\n /** column name */\n TokenStandard = 'token_standard'\n}\n\n/** Streaming cursor of the table \"fungible_asset_metadata\" */\nexport type Fungible_Asset_Metadata_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Fungible_Asset_Metadata_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Fungible_Asset_Metadata_Stream_Cursor_Value_Input = {\n asset_type?: InputMaybe<Scalars['String']['input']>;\n creator_address?: InputMaybe<Scalars['String']['input']>;\n decimals?: InputMaybe<Scalars['Int']['input']>;\n icon_uri?: InputMaybe<Scalars['String']['input']>;\n last_transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n maximum_v2?: InputMaybe<Scalars['numeric']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n project_uri?: InputMaybe<Scalars['String']['input']>;\n supply_aggregator_table_handle_v1?: InputMaybe<Scalars['String']['input']>;\n supply_aggregator_table_key_v1?: InputMaybe<Scalars['String']['input']>;\n supply_v2?: InputMaybe<Scalars['numeric']['input']>;\n symbol?: InputMaybe<Scalars['String']['input']>;\n token_standard?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"indexer_status\" */\nexport type Indexer_Status = {\n __typename?: 'indexer_status';\n db: Scalars['String']['output'];\n is_indexer_up: Scalars['Boolean']['output'];\n};\n\n/** Boolean expression to filter rows from the table \"indexer_status\". All fields are combined with a logical 'AND'. */\nexport type Indexer_Status_Bool_Exp = {\n _and?: InputMaybe<Array<Indexer_Status_Bool_Exp>>;\n _not?: InputMaybe<Indexer_Status_Bool_Exp>;\n _or?: InputMaybe<Array<Indexer_Status_Bool_Exp>>;\n db?: InputMaybe<String_Comparison_Exp>;\n is_indexer_up?: InputMaybe<Boolean_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"indexer_status\". */\nexport type Indexer_Status_Order_By = {\n db?: InputMaybe<Order_By>;\n is_indexer_up?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"indexer_status\" */\nexport enum Indexer_Status_Select_Column {\n /** column name */\n Db = 'db',\n /** column name */\n IsIndexerUp = 'is_indexer_up'\n}\n\n/** Streaming cursor of the table \"indexer_status\" */\nexport type Indexer_Status_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Indexer_Status_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Indexer_Status_Stream_Cursor_Value_Input = {\n db?: InputMaybe<Scalars['String']['input']>;\n is_indexer_up?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\nexport type Jsonb_Cast_Exp = {\n String?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Boolean expression to compare columns of type \"jsonb\". All fields are combined with logical 'AND'. */\nexport type Jsonb_Comparison_Exp = {\n _cast?: InputMaybe<Jsonb_Cast_Exp>;\n /** is the column contained in the given json value */\n _contained_in?: InputMaybe<Scalars['jsonb']['input']>;\n /** does the column contain the given json value at the top level */\n _contains?: InputMaybe<Scalars['jsonb']['input']>;\n _eq?: InputMaybe<Scalars['jsonb']['input']>;\n _gt?: InputMaybe<Scalars['jsonb']['input']>;\n _gte?: InputMaybe<Scalars['jsonb']['input']>;\n /** does the string exist as a top-level key in the column */\n _has_key?: InputMaybe<Scalars['String']['input']>;\n /** do all of these strings exist as top-level keys in the column */\n _has_keys_all?: InputMaybe<Array<Scalars['String']['input']>>;\n /** do any of these strings exist as top-level keys in the column */\n _has_keys_any?: InputMaybe<Array<Scalars['String']['input']>>;\n _in?: InputMaybe<Array<Scalars['jsonb']['input']>>;\n _is_null?: InputMaybe<Scalars['Boolean']['input']>;\n _lt?: InputMaybe<Scalars['jsonb']['input']>;\n _lte?: InputMaybe<Scalars['jsonb']['input']>;\n _neq?: InputMaybe<Scalars['jsonb']['input']>;\n _nin?: InputMaybe<Array<Scalars['jsonb']['input']>>;\n};\n\n/** columns and relationships of \"processor_metadata.ledger_infos\" */\nexport type Ledger_Infos = {\n __typename?: 'ledger_infos';\n chain_id: Scalars['bigint']['output'];\n};\n\n/** Boolean expression to filter rows from the table \"processor_metadata.ledger_infos\". All fields are combined with a logical 'AND'. */\nexport type Ledger_Infos_Bool_Exp = {\n _and?: InputMaybe<Array<Ledger_Infos_Bool_Exp>>;\n _not?: InputMaybe<Ledger_Infos_Bool_Exp>;\n _or?: InputMaybe<Array<Ledger_Infos_Bool_Exp>>;\n chain_id?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"processor_metadata.ledger_infos\". */\nexport type Ledger_Infos_Order_By = {\n chain_id?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"processor_metadata.ledger_infos\" */\nexport enum Ledger_Infos_Select_Column {\n /** column name */\n ChainId = 'chain_id'\n}\n\n/** Streaming cursor of the table \"ledger_infos\" */\nexport type Ledger_Infos_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Ledger_Infos_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Ledger_Infos_Stream_Cursor_Value_Input = {\n chain_id?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** columns and relationships of \"legacy_migration_v1.move_resources\" */\nexport type Move_Resources = {\n __typename?: 'move_resources';\n address?: Maybe<Scalars['String']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregated selection of \"legacy_migration_v1.move_resources\" */\nexport type Move_Resources_Aggregate = {\n __typename?: 'move_resources_aggregate';\n aggregate?: Maybe<Move_Resources_Aggregate_Fields>;\n nodes: Array<Move_Resources>;\n};\n\n/** aggregate fields of \"legacy_migration_v1.move_resources\" */\nexport type Move_Resources_Aggregate_Fields = {\n __typename?: 'move_resources_aggregate_fields';\n avg?: Maybe<Move_Resources_Avg_Fields>;\n count: Scalars['Int']['output'];\n max?: Maybe<Move_Resources_Max_Fields>;\n min?: Maybe<Move_Resources_Min_Fields>;\n stddev?: Maybe<Move_Resources_Stddev_Fields>;\n stddev_pop?: Maybe<Move_Resources_Stddev_Pop_Fields>;\n stddev_samp?: Maybe<Move_Resources_Stddev_Samp_Fields>;\n sum?: Maybe<Move_Resources_Sum_Fields>;\n var_pop?: Maybe<Move_Resources_Var_Pop_Fields>;\n var_samp?: Maybe<Move_Resources_Var_Samp_Fields>;\n variance?: Maybe<Move_Resources_Variance_Fields>;\n};\n\n\n/** aggregate fields of \"legacy_migration_v1.move_resources\" */\nexport type Move_Resources_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Move_Resources_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** aggregate avg on columns */\nexport type Move_Resources_Avg_Fields = {\n __typename?: 'move_resources_avg_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"legacy_migration_v1.move_resources\". All fields are combined with a logical 'AND'. */\nexport type Move_Resources_Bool_Exp = {\n _and?: InputMaybe<Array<Move_Resources_Bool_Exp>>;\n _not?: InputMaybe<Move_Resources_Bool_Exp>;\n _or?: InputMaybe<Array<Move_Resources_Bool_Exp>>;\n address?: InputMaybe<String_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Move_Resources_Max_Fields = {\n __typename?: 'move_resources_max_fields';\n address?: Maybe<Scalars['String']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregate min on columns */\nexport type Move_Resources_Min_Fields = {\n __typename?: 'move_resources_min_fields';\n address?: Maybe<Scalars['String']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** Ordering options when selecting data from \"legacy_migration_v1.move_resources\". */\nexport type Move_Resources_Order_By = {\n address?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"legacy_migration_v1.move_resources\" */\nexport enum Move_Resources_Select_Column {\n /** column name */\n Address = 'address',\n /** column name */\n TransactionVersion = 'transaction_version'\n}\n\n/** aggregate stddev on columns */\nexport type Move_Resources_Stddev_Fields = {\n __typename?: 'move_resources_stddev_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_pop on columns */\nexport type Move_Resources_Stddev_Pop_Fields = {\n __typename?: 'move_resources_stddev_pop_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_samp on columns */\nexport type Move_Resources_Stddev_Samp_Fields = {\n __typename?: 'move_resources_stddev_samp_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Streaming cursor of the table \"move_resources\" */\nexport type Move_Resources_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Move_Resources_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Move_Resources_Stream_Cursor_Value_Input = {\n address?: InputMaybe<Scalars['String']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** aggregate sum on columns */\nexport type Move_Resources_Sum_Fields = {\n __typename?: 'move_resources_sum_fields';\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregate var_pop on columns */\nexport type Move_Resources_Var_Pop_Fields = {\n __typename?: 'move_resources_var_pop_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate var_samp on columns */\nexport type Move_Resources_Var_Samp_Fields = {\n __typename?: 'move_resources_var_samp_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate variance on columns */\nexport type Move_Resources_Variance_Fields = {\n __typename?: 'move_resources_variance_fields';\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** columns and relationships of \"nft_metadata_crawler.parsed_asset_uris\" */\nexport type Nft_Metadata_Crawler_Parsed_Asset_Uris = {\n __typename?: 'nft_metadata_crawler_parsed_asset_uris';\n animation_optimizer_retry_count: Scalars['Int']['output'];\n asset_uri: Scalars['String']['output'];\n cdn_animation_uri?: Maybe<Scalars['String']['output']>;\n cdn_image_uri?: Maybe<Scalars['String']['output']>;\n cdn_json_uri?: Maybe<Scalars['String']['output']>;\n image_optimizer_retry_count: Scalars['Int']['output'];\n json_parser_retry_count: Scalars['Int']['output'];\n raw_animation_uri?: Maybe<Scalars['String']['output']>;\n raw_image_uri?: Maybe<Scalars['String']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"nft_metadata_crawler.parsed_asset_uris\". All fields are combined with a logical 'AND'. */\nexport type Nft_Metadata_Crawler_Parsed_Asset_Uris_Bool_Exp = {\n _and?: InputMaybe<Array<Nft_Metadata_Crawler_Parsed_Asset_Uris_Bool_Exp>>;\n _not?: InputMaybe<Nft_Metadata_Crawler_Parsed_Asset_Uris_Bool_Exp>;\n _or?: InputMaybe<Array<Nft_Metadata_Crawler_Parsed_Asset_Uris_Bool_Exp>>;\n animation_optimizer_retry_count?: InputMaybe<Int_Comparison_Exp>;\n asset_uri?: InputMaybe<String_Comparison_Exp>;\n cdn_animation_uri?: InputMaybe<String_Comparison_Exp>;\n cdn_image_uri?: InputMaybe<String_Comparison_Exp>;\n cdn_json_uri?: InputMaybe<String_Comparison_Exp>;\n image_optimizer_retry_count?: InputMaybe<Int_Comparison_Exp>;\n json_parser_retry_count?: InputMaybe<Int_Comparison_Exp>;\n raw_animation_uri?: InputMaybe<String_Comparison_Exp>;\n raw_image_uri?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"nft_metadata_crawler.parsed_asset_uris\". */\nexport type Nft_Metadata_Crawler_Parsed_Asset_Uris_Order_By = {\n animation_optimizer_retry_count?: InputMaybe<Order_By>;\n asset_uri?: InputMaybe<Order_By>;\n cdn_animation_uri?: InputMaybe<Order_By>;\n cdn_image_uri?: InputMaybe<Order_By>;\n cdn_json_uri?: InputMaybe<Order_By>;\n image_optimizer_retry_count?: InputMaybe<Order_By>;\n json_parser_retry_count?: InputMaybe<Order_By>;\n raw_animation_uri?: InputMaybe<Order_By>;\n raw_image_uri?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"nft_metadata_crawler.parsed_asset_uris\" */\nexport enum Nft_Metadata_Crawler_Parsed_Asset_Uris_Select_Column {\n /** column name */\n AnimationOptimizerRetryCount = 'animation_optimizer_retry_count',\n /** column name */\n AssetUri = 'asset_uri',\n /** column name */\n CdnAnimationUri = 'cdn_animation_uri',\n /** column name */\n CdnImageUri = 'cdn_image_uri',\n /** column name */\n CdnJsonUri = 'cdn_json_uri',\n /** column name */\n ImageOptimizerRetryCount = 'image_optimizer_retry_count',\n /** column name */\n JsonParserRetryCount = 'json_parser_retry_count',\n /** column name */\n RawAnimationUri = 'raw_animation_uri',\n /** column name */\n RawImageUri = 'raw_image_uri'\n}\n\n/** Streaming cursor of the table \"nft_metadata_crawler_parsed_asset_uris\" */\nexport type Nft_Metadata_Crawler_Parsed_Asset_Uris_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Nft_Metadata_Crawler_Parsed_Asset_Uris_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Nft_Metadata_Crawler_Parsed_Asset_Uris_Stream_Cursor_Value_Input = {\n animation_optimizer_retry_count?: InputMaybe<Scalars['Int']['input']>;\n asset_uri?: InputMaybe<Scalars['String']['input']>;\n cdn_animation_uri?: InputMaybe<Scalars['String']['input']>;\n cdn_image_uri?: InputMaybe<Scalars['String']['input']>;\n cdn_json_uri?: InputMaybe<Scalars['String']['input']>;\n image_optimizer_retry_count?: InputMaybe<Scalars['Int']['input']>;\n json_parser_retry_count?: InputMaybe<Scalars['Int']['input']>;\n raw_animation_uri?: InputMaybe<Scalars['String']['input']>;\n raw_image_uri?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"num_active_delegator_per_pool\" */\nexport type Num_Active_Delegator_Per_Pool = {\n __typename?: 'num_active_delegator_per_pool';\n num_active_delegator?: Maybe<Scalars['bigint']['output']>;\n pool_address?: Maybe<Scalars['String']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"num_active_delegator_per_pool\". All fields are combined with a logical 'AND'. */\nexport type Num_Active_Delegator_Per_Pool_Bool_Exp = {\n _and?: InputMaybe<Array<Num_Active_Delegator_Per_Pool_Bool_Exp>>;\n _not?: InputMaybe<Num_Active_Delegator_Per_Pool_Bool_Exp>;\n _or?: InputMaybe<Array<Num_Active_Delegator_Per_Pool_Bool_Exp>>;\n num_active_delegator?: InputMaybe<Bigint_Comparison_Exp>;\n pool_address?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"num_active_delegator_per_pool\". */\nexport type Num_Active_Delegator_Per_Pool_Order_By = {\n num_active_delegator?: InputMaybe<Order_By>;\n pool_address?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"num_active_delegator_per_pool\" */\nexport enum Num_Active_Delegator_Per_Pool_Select_Column {\n /** column name */\n NumActiveDelegator = 'num_active_delegator',\n /** column name */\n PoolAddress = 'pool_address'\n}\n\n/** Streaming cursor of the table \"num_active_delegator_per_pool\" */\nexport type Num_Active_Delegator_Per_Pool_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Num_Active_Delegator_Per_Pool_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Num_Active_Delegator_Per_Pool_Stream_Cursor_Value_Input = {\n num_active_delegator?: InputMaybe<Scalars['bigint']['input']>;\n pool_address?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Boolean expression to compare columns of type \"numeric\". All fields are combined with logical 'AND'. */\nexport type Numeric_Comparison_Exp = {\n _eq?: InputMaybe<Scalars['numeric']['input']>;\n _gt?: InputMaybe<Scalars['numeric']['input']>;\n _gte?: InputMaybe<Scalars['numeric']['input']>;\n _in?: InputMaybe<Array<Scalars['numeric']['input']>>;\n _is_null?: InputMaybe<Scalars['Boolean']['input']>;\n _lt?: InputMaybe<Scalars['numeric']['input']>;\n _lte?: InputMaybe<Scalars['numeric']['input']>;\n _neq?: InputMaybe<Scalars['numeric']['input']>;\n _nin?: InputMaybe<Array<Scalars['numeric']['input']>>;\n};\n\n/** column ordering options */\nexport enum Order_By {\n /** in ascending order, nulls last */\n Asc = 'asc',\n /** in ascending order, nulls first */\n AscNullsFirst = 'asc_nulls_first',\n /** in ascending order, nulls last */\n AscNullsLast = 'asc_nulls_last',\n /** in descending order, nulls first */\n Desc = 'desc',\n /** in descending order, nulls first */\n DescNullsFirst = 'desc_nulls_first',\n /** in descending order, nulls last */\n DescNullsLast = 'desc_nulls_last'\n}\n\n/** columns and relationships of \"processor_metadata.processor_status\" */\nexport type Processor_Status = {\n __typename?: 'processor_status';\n last_success_version: Scalars['bigint']['output'];\n last_transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n last_updated: Scalars['timestamp']['output'];\n processor: Scalars['String']['output'];\n};\n\n/** Boolean expression to filter rows from the table \"processor_metadata.processor_status\". All fields are combined with a logical 'AND'. */\nexport type Processor_Status_Bool_Exp = {\n _and?: InputMaybe<Array<Processor_Status_Bool_Exp>>;\n _not?: InputMaybe<Processor_Status_Bool_Exp>;\n _or?: InputMaybe<Array<Processor_Status_Bool_Exp>>;\n last_success_version?: InputMaybe<Bigint_Comparison_Exp>;\n last_transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n last_updated?: InputMaybe<Timestamp_Comparison_Exp>;\n processor?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"processor_metadata.processor_status\". */\nexport type Processor_Status_Order_By = {\n last_success_version?: InputMaybe<Order_By>;\n last_transaction_timestamp?: InputMaybe<Order_By>;\n last_updated?: InputMaybe<Order_By>;\n processor?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"processor_metadata.processor_status\" */\nexport enum Processor_Status_Select_Column {\n /** column name */\n LastSuccessVersion = 'last_success_version',\n /** column name */\n LastTransactionTimestamp = 'last_transaction_timestamp',\n /** column name */\n LastUpdated = 'last_updated',\n /** column name */\n Processor = 'processor'\n}\n\n/** Streaming cursor of the table \"processor_status\" */\nexport type Processor_Status_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Processor_Status_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Processor_Status_Stream_Cursor_Value_Input = {\n last_success_version?: InputMaybe<Scalars['bigint']['input']>;\n last_transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n last_updated?: InputMaybe<Scalars['timestamp']['input']>;\n processor?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** columns and relationships of \"proposal_votes\" */\nexport type Proposal_Votes = {\n __typename?: 'proposal_votes';\n num_votes: Scalars['numeric']['output'];\n proposal_id: Scalars['bigint']['output'];\n should_pass: Scalars['Boolean']['output'];\n staking_pool_address: Scalars['String']['output'];\n transaction_timestamp: Scalars['timestamp']['output'];\n transaction_version: Scalars['bigint']['output'];\n voter_address: Scalars['String']['output'];\n};\n\n/** aggregated selection of \"proposal_votes\" */\nexport type Proposal_Votes_Aggregate = {\n __typename?: 'proposal_votes_aggregate';\n aggregate?: Maybe<Proposal_Votes_Aggregate_Fields>;\n nodes: Array<Proposal_Votes>;\n};\n\n/** aggregate fields of \"proposal_votes\" */\nexport type Proposal_Votes_Aggregate_Fields = {\n __typename?: 'proposal_votes_aggregate_fields';\n avg?: Maybe<Proposal_Votes_Avg_Fields>;\n count: Scalars['Int']['output'];\n max?: Maybe<Proposal_Votes_Max_Fields>;\n min?: Maybe<Proposal_Votes_Min_Fields>;\n stddev?: Maybe<Proposal_Votes_Stddev_Fields>;\n stddev_pop?: Maybe<Proposal_Votes_Stddev_Pop_Fields>;\n stddev_samp?: Maybe<Proposal_Votes_Stddev_Samp_Fields>;\n sum?: Maybe<Proposal_Votes_Sum_Fields>;\n var_pop?: Maybe<Proposal_Votes_Var_Pop_Fields>;\n var_samp?: Maybe<Proposal_Votes_Var_Samp_Fields>;\n variance?: Maybe<Proposal_Votes_Variance_Fields>;\n};\n\n\n/** aggregate fields of \"proposal_votes\" */\nexport type Proposal_Votes_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Proposal_Votes_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** aggregate avg on columns */\nexport type Proposal_Votes_Avg_Fields = {\n __typename?: 'proposal_votes_avg_fields';\n num_votes?: Maybe<Scalars['Float']['output']>;\n proposal_id?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"proposal_votes\". All fields are combined with a logical 'AND'. */\nexport type Proposal_Votes_Bool_Exp = {\n _and?: InputMaybe<Array<Proposal_Votes_Bool_Exp>>;\n _not?: InputMaybe<Proposal_Votes_Bool_Exp>;\n _or?: InputMaybe<Array<Proposal_Votes_Bool_Exp>>;\n num_votes?: InputMaybe<Numeric_Comparison_Exp>;\n proposal_id?: InputMaybe<Bigint_Comparison_Exp>;\n should_pass?: InputMaybe<Boolean_Comparison_Exp>;\n staking_pool_address?: InputMaybe<String_Comparison_Exp>;\n transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n voter_address?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Proposal_Votes_Max_Fields = {\n __typename?: 'proposal_votes_max_fields';\n num_votes?: Maybe<Scalars['numeric']['output']>;\n proposal_id?: Maybe<Scalars['bigint']['output']>;\n staking_pool_address?: Maybe<Scalars['String']['output']>;\n transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n voter_address?: Maybe<Scalars['String']['output']>;\n};\n\n/** aggregate min on columns */\nexport type Proposal_Votes_Min_Fields = {\n __typename?: 'proposal_votes_min_fields';\n num_votes?: Maybe<Scalars['numeric']['output']>;\n proposal_id?: Maybe<Scalars['bigint']['output']>;\n staking_pool_address?: Maybe<Scalars['String']['output']>;\n transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n voter_address?: Maybe<Scalars['String']['output']>;\n};\n\n/** Ordering options when selecting data from \"proposal_votes\". */\nexport type Proposal_Votes_Order_By = {\n num_votes?: InputMaybe<Order_By>;\n proposal_id?: InputMaybe<Order_By>;\n should_pass?: InputMaybe<Order_By>;\n staking_pool_address?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n voter_address?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"proposal_votes\" */\nexport enum Proposal_Votes_Select_Column {\n /** column name */\n NumVotes = 'num_votes',\n /** column name */\n ProposalId = 'proposal_id',\n /** column name */\n ShouldPass = 'should_pass',\n /** column name */\n StakingPoolAddress = 'staking_pool_address',\n /** column name */\n TransactionTimestamp = 'transaction_timestamp',\n /** column name */\n TransactionVersion = 'transaction_version',\n /** column name */\n VoterAddress = 'voter_address'\n}\n\n/** aggregate stddev on columns */\nexport type Proposal_Votes_Stddev_Fields = {\n __typename?: 'proposal_votes_stddev_fields';\n num_votes?: Maybe<Scalars['Float']['output']>;\n proposal_id?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_pop on columns */\nexport type Proposal_Votes_Stddev_Pop_Fields = {\n __typename?: 'proposal_votes_stddev_pop_fields';\n num_votes?: Maybe<Scalars['Float']['output']>;\n proposal_id?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_samp on columns */\nexport type Proposal_Votes_Stddev_Samp_Fields = {\n __typename?: 'proposal_votes_stddev_samp_fields';\n num_votes?: Maybe<Scalars['Float']['output']>;\n proposal_id?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Streaming cursor of the table \"proposal_votes\" */\nexport type Proposal_Votes_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Proposal_Votes_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Proposal_Votes_Stream_Cursor_Value_Input = {\n num_votes?: InputMaybe<Scalars['numeric']['input']>;\n proposal_id?: InputMaybe<Scalars['bigint']['input']>;\n should_pass?: InputMaybe<Scalars['Boolean']['input']>;\n staking_pool_address?: InputMaybe<Scalars['String']['input']>;\n transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n voter_address?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** aggregate sum on columns */\nexport type Proposal_Votes_Sum_Fields = {\n __typename?: 'proposal_votes_sum_fields';\n num_votes?: Maybe<Scalars['numeric']['output']>;\n proposal_id?: Maybe<Scalars['bigint']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregate var_pop on columns */\nexport type Proposal_Votes_Var_Pop_Fields = {\n __typename?: 'proposal_votes_var_pop_fields';\n num_votes?: Maybe<Scalars['Float']['output']>;\n proposal_id?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate var_samp on columns */\nexport type Proposal_Votes_Var_Samp_Fields = {\n __typename?: 'proposal_votes_var_samp_fields';\n num_votes?: Maybe<Scalars['Float']['output']>;\n proposal_id?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate variance on columns */\nexport type Proposal_Votes_Variance_Fields = {\n __typename?: 'proposal_votes_variance_fields';\n num_votes?: Maybe<Scalars['Float']['output']>;\n proposal_id?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** columns and relationships of \"public_key_auth_keys\" */\nexport type Public_Key_Auth_Keys = {\n __typename?: 'public_key_auth_keys';\n account_public_key?: Maybe<Scalars['String']['output']>;\n auth_key: Scalars['String']['output'];\n is_public_key_used: Scalars['Boolean']['output'];\n last_transaction_version: Scalars['bigint']['output'];\n public_key: Scalars['String']['output'];\n public_key_type: Scalars['String']['output'];\n signature_type: Scalars['String']['output'];\n};\n\n/** aggregated selection of \"public_key_auth_keys\" */\nexport type Public_Key_Auth_Keys_Aggregate = {\n __typename?: 'public_key_auth_keys_aggregate';\n aggregate?: Maybe<Public_Key_Auth_Keys_Aggregate_Fields>;\n nodes: Array<Public_Key_Auth_Keys>;\n};\n\n/** aggregate fields of \"public_key_auth_keys\" */\nexport type Public_Key_Auth_Keys_Aggregate_Fields = {\n __typename?: 'public_key_auth_keys_aggregate_fields';\n avg?: Maybe<Public_Key_Auth_Keys_Avg_Fields>;\n count: Scalars['Int']['output'];\n max?: Maybe<Public_Key_Auth_Keys_Max_Fields>;\n min?: Maybe<Public_Key_Auth_Keys_Min_Fields>;\n stddev?: Maybe<Public_Key_Auth_Keys_Stddev_Fields>;\n stddev_pop?: Maybe<Public_Key_Auth_Keys_Stddev_Pop_Fields>;\n stddev_samp?: Maybe<Public_Key_Auth_Keys_Stddev_Samp_Fields>;\n sum?: Maybe<Public_Key_Auth_Keys_Sum_Fields>;\n var_pop?: Maybe<Public_Key_Auth_Keys_Var_Pop_Fields>;\n var_samp?: Maybe<Public_Key_Auth_Keys_Var_Samp_Fields>;\n variance?: Maybe<Public_Key_Auth_Keys_Variance_Fields>;\n};\n\n\n/** aggregate fields of \"public_key_auth_keys\" */\nexport type Public_Key_Auth_Keys_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Public_Key_Auth_Keys_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** aggregate avg on columns */\nexport type Public_Key_Auth_Keys_Avg_Fields = {\n __typename?: 'public_key_auth_keys_avg_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"public_key_auth_keys\". All fields are combined with a logical 'AND'. */\nexport type Public_Key_Auth_Keys_Bool_Exp = {\n _and?: InputMaybe<Array<Public_Key_Auth_Keys_Bool_Exp>>;\n _not?: InputMaybe<Public_Key_Auth_Keys_Bool_Exp>;\n _or?: InputMaybe<Array<Public_Key_Auth_Keys_Bool_Exp>>;\n account_public_key?: InputMaybe<String_Comparison_Exp>;\n auth_key?: InputMaybe<String_Comparison_Exp>;\n is_public_key_used?: InputMaybe<Boolean_Comparison_Exp>;\n last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n public_key?: InputMaybe<String_Comparison_Exp>;\n public_key_type?: InputMaybe<String_Comparison_Exp>;\n signature_type?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Public_Key_Auth_Keys_Max_Fields = {\n __typename?: 'public_key_auth_keys_max_fields';\n account_public_key?: Maybe<Scalars['String']['output']>;\n auth_key?: Maybe<Scalars['String']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n public_key?: Maybe<Scalars['String']['output']>;\n public_key_type?: Maybe<Scalars['String']['output']>;\n signature_type?: Maybe<Scalars['String']['output']>;\n};\n\n/** aggregate min on columns */\nexport type Public_Key_Auth_Keys_Min_Fields = {\n __typename?: 'public_key_auth_keys_min_fields';\n account_public_key?: Maybe<Scalars['String']['output']>;\n auth_key?: Maybe<Scalars['String']['output']>;\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n public_key?: Maybe<Scalars['String']['output']>;\n public_key_type?: Maybe<Scalars['String']['output']>;\n signature_type?: Maybe<Scalars['String']['output']>;\n};\n\n/** Ordering options when selecting data from \"public_key_auth_keys\". */\nexport type Public_Key_Auth_Keys_Order_By = {\n account_public_key?: InputMaybe<Order_By>;\n auth_key?: InputMaybe<Order_By>;\n is_public_key_used?: InputMaybe<Order_By>;\n last_transaction_version?: InputMaybe<Order_By>;\n public_key?: InputMaybe<Order_By>;\n public_key_type?: InputMaybe<Order_By>;\n signature_type?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"public_key_auth_keys\" */\nexport enum Public_Key_Auth_Keys_Select_Column {\n /** column name */\n AccountPublicKey = 'account_public_key',\n /** column name */\n AuthKey = 'auth_key',\n /** column name */\n IsPublicKeyUsed = 'is_public_key_used',\n /** column name */\n LastTransactionVersion = 'last_transaction_version',\n /** column name */\n PublicKey = 'public_key',\n /** column name */\n PublicKeyType = 'public_key_type',\n /** column name */\n SignatureType = 'signature_type'\n}\n\n/** aggregate stddev on columns */\nexport type Public_Key_Auth_Keys_Stddev_Fields = {\n __typename?: 'public_key_auth_keys_stddev_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_pop on columns */\nexport type Public_Key_Auth_Keys_Stddev_Pop_Fields = {\n __typename?: 'public_key_auth_keys_stddev_pop_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate stddev_samp on columns */\nexport type Public_Key_Auth_Keys_Stddev_Samp_Fields = {\n __typename?: 'public_key_auth_keys_stddev_samp_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** Streaming cursor of the table \"public_key_auth_keys\" */\nexport type Public_Key_Auth_Keys_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Public_Key_Auth_Keys_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Public_Key_Auth_Keys_Stream_Cursor_Value_Input = {\n account_public_key?: InputMaybe<Scalars['String']['input']>;\n auth_key?: InputMaybe<Scalars['String']['input']>;\n is_public_key_used?: InputMaybe<Scalars['Boolean']['input']>;\n last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n public_key?: InputMaybe<Scalars['String']['input']>;\n public_key_type?: InputMaybe<Scalars['String']['input']>;\n signature_type?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** aggregate sum on columns */\nexport type Public_Key_Auth_Keys_Sum_Fields = {\n __typename?: 'public_key_auth_keys_sum_fields';\n last_transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** aggregate var_pop on columns */\nexport type Public_Key_Auth_Keys_Var_Pop_Fields = {\n __typename?: 'public_key_auth_keys_var_pop_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate var_samp on columns */\nexport type Public_Key_Auth_Keys_Var_Samp_Fields = {\n __typename?: 'public_key_auth_keys_var_samp_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** aggregate variance on columns */\nexport type Public_Key_Auth_Keys_Variance_Fields = {\n __typename?: 'public_key_auth_keys_variance_fields';\n last_transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\nexport type Query_Root = {\n __typename?: 'query_root';\n /** fetch data from the table: \"account_transactions\" */\n account_transactions: Array<Account_Transactions>;\n /** fetch aggregated fields from the table: \"account_transactions\" */\n account_transactions_aggregate: Account_Transactions_Aggregate;\n /** fetch data from the table: \"account_transactions\" using primary key columns */\n account_transactions_by_pk?: Maybe<Account_Transactions>;\n /** fetch data from the table: \"address_events_summary\" */\n address_events_summary: Array<Address_Events_Summary>;\n /** fetch data from the table: \"address_version_from_events\" */\n address_version_from_events: Array<Address_Version_From_Events>;\n /** fetch aggregated fields from the table: \"address_version_from_events\" */\n address_version_from_events_aggregate: Address_Version_From_Events_Aggregate;\n /** fetch data from the table: \"legacy_migration_v1.address_version_from_move_resources\" */\n address_version_from_move_resources: Array<Address_Version_From_Move_Resources>;\n /** fetch aggregated fields from the table: \"legacy_migration_v1.address_version_from_move_resources\" */\n address_version_from_move_resources_aggregate: Address_Version_From_Move_Resources_Aggregate;\n /** fetch data from the table: \"auth_key_account_addresses\" */\n auth_key_account_addresses: Array<Auth_Key_Account_Addresses>;\n /** fetch aggregated fields from the table: \"auth_key_account_addresses\" */\n auth_key_account_addresses_aggregate: Auth_Key_Account_Addresses_Aggregate;\n /** fetch data from the table: \"auth_key_account_addresses\" using primary key columns */\n auth_key_account_addresses_by_pk?: Maybe<Auth_Key_Account_Addresses>;\n /** fetch data from the table: \"block_metadata_transactions\" */\n block_metadata_transactions: Array<Block_Metadata_Transactions>;\n /** fetch data from the table: \"block_metadata_transactions\" using primary key columns */\n block_metadata_transactions_by_pk?: Maybe<Block_Metadata_Transactions>;\n /** An array relationship */\n coin_activities: Array<Coin_Activities>;\n /** An aggregate relationship */\n coin_activities_aggregate: Coin_Activities_Aggregate;\n /** fetch data from the table: \"legacy_migration_v1.coin_balances\" */\n coin_balances: Array<Coin_Balances>;\n /** fetch data from the table: \"legacy_migration_v1.coin_infos\" */\n coin_infos: Array<Coin_Infos>;\n /** fetch data from the table: \"coin_supply\" */\n coin_supply: Array<Coin_Supply>;\n /** fetch data from the table: \"coin_supply\" using primary key columns */\n coin_supply_by_pk?: Maybe<Coin_Supply>;\n /** fetch data from the table: \"legacy_migration_v1.collection_datas\" */\n collection_datas: Array<Collection_Datas>;\n /** fetch data from the table: \"legacy_migration_v1.current_ans_lookup\" */\n current_ans_lookup: Array<Current_Ans_Lookup>;\n /** fetch data from the table: \"current_ans_lookup_v2\" */\n current_ans_lookup_v2: Array<Current_Ans_Lookup_V2>;\n /** fetch data from the table: \"current_ans_lookup_v2\" using primary key columns */\n current_ans_lookup_v2_by_pk?: Maybe<Current_Ans_Lookup_V2>;\n /** fetch data from the table: \"current_aptos_names\" */\n current_aptos_names: Array<Current_Aptos_Names>;\n /** fetch aggregated fields from the table: \"current_aptos_names\" */\n current_aptos_names_aggregate: Current_Aptos_Names_Aggregate;\n /** fetch data from the table: \"legacy_migration_v1.current_coin_balances\" */\n current_coin_balances: Array<Current_Coin_Balances>;\n /** fetch data from the table: \"legacy_migration_v1.current_collection_datas\" */\n current_collection_datas: Array<Current_Collection_Datas>;\n /** fetch data from the table: \"current_collection_ownership_v2_view\" */\n current_collection_ownership_v2_view: Array<Current_Collection_Ownership_V2_View>;\n /** fetch aggregated fields from the table: \"current_collection_ownership_v2_view\" */\n current_collection_ownership_v2_view_aggregate: Current_Collection_Ownership_V2_View_Aggregate;\n /** fetch data from the table: \"current_collections_v2\" */\n current_collections_v2: Array<Current_Collections_V2>;\n /** fetch data from the table: \"current_collections_v2\" using primary key columns */\n current_collections_v2_by_pk?: Maybe<Current_Collections_V2>;\n /** fetch data from the table: \"current_delegated_staking_pool_balances\" */\n current_delegated_staking_pool_balances: Array<Current_Delegated_Staking_Pool_Balances>;\n /** fetch data from the table: \"current_delegated_staking_pool_balances\" using primary key columns */\n current_delegated_staking_pool_balances_by_pk?: Maybe<Current_Delegated_Staking_Pool_Balances>;\n /** fetch data from the table: \"current_delegated_voter\" */\n current_delegated_voter: Array<Current_Delegated_Voter>;\n /** fetch data from the table: \"current_delegated_voter\" using primary key columns */\n current_delegated_voter_by_pk?: Maybe<Current_Delegated_Voter>;\n /** fetch data from the table: \"current_delegator_balances\" */\n current_delegator_balances: Array<Current_Delegator_Balances>;\n /** fetch data from the table: \"current_delegator_balances\" using primary key columns */\n current_delegator_balances_by_pk?: Maybe<Current_Delegator_Balances>;\n /** fetch data from the table: \"current_fungible_asset_balances\" */\n current_fungible_asset_balances: Array<Current_Fungible_Asset_Balances>;\n /** fetch aggregated fields from the table: \"current_fungible_asset_balances\" */\n current_fungible_asset_balances_aggregate: Current_Fungible_Asset_Balances_Aggregate;\n /** fetch data from the table: \"current_fungible_asset_balances\" using primary key columns */\n current_fungible_asset_balances_by_pk?: Maybe<Current_Fungible_Asset_Balances>;\n /** fetch data from the table: \"current_objects\" */\n current_objects: Array<Current_Objects>;\n /** fetch data from the table: \"current_objects\" using primary key columns */\n current_objects_by_pk?: Maybe<Current_Objects>;\n /** fetch data from the table: \"current_staking_pool_voter\" */\n current_staking_pool_voter: Array<Current_Staking_Pool_Voter>;\n /** fetch data from the table: \"current_staking_pool_voter\" using primary key columns */\n current_staking_pool_voter_by_pk?: Maybe<Current_Staking_Pool_Voter>;\n /** fetch data from the table: \"current_table_items\" */\n current_table_items: Array<Current_Table_Items>;\n /** fetch data from the table: \"current_table_items\" using primary key columns */\n current_table_items_by_pk?: Maybe<Current_Table_Items>;\n /** fetch data from the table: \"legacy_migration_v1.current_token_datas\" */\n current_token_datas: Array<Current_Token_Datas>;\n /** fetch data from the table: \"current_token_datas_v2\" */\n current_token_datas_v2: Array<Current_Token_Datas_V2>;\n /** fetch data from the table: \"current_token_datas_v2\" using primary key columns */\n current_token_datas_v2_by_pk?: Maybe<Current_Token_Datas_V2>;\n /** fetch data from the table: \"legacy_migration_v1.current_token_ownerships\" */\n current_token_ownerships: Array<Current_Token_Ownerships>;\n /** fetch aggregated fields from the table: \"legacy_migration_v1.current_token_ownerships\" */\n current_token_ownerships_aggregate: Current_Token_Ownerships_Aggregate;\n /** fetch data from the table: \"current_token_ownerships_v2\" */\n current_token_ownerships_v2: Array<Current_Token_Ownerships_V2>;\n /** fetch aggregated fields from the table: \"current_token_ownerships_v2\" */\n current_token_ownerships_v2_aggregate: Current_Token_Ownerships_V2_Aggregate;\n /** fetch data from the table: \"current_token_ownerships_v2\" using primary key columns */\n current_token_ownerships_v2_by_pk?: Maybe<Current_Token_Ownerships_V2>;\n /** fetch data from the table: \"current_token_pending_claims\" */\n current_token_pending_claims: Array<Current_Token_Pending_Claims>;\n /** fetch data from the table: \"current_token_pending_claims\" using primary key columns */\n current_token_pending_claims_by_pk?: Maybe<Current_Token_Pending_Claims>;\n /** fetch data from the table: \"current_token_royalty_v1\" */\n current_token_royalty_v1: Array<Current_Token_Royalty_V1>;\n /** fetch data from the table: \"current_token_royalty_v1\" using primary key columns */\n current_token_royalty_v1_by_pk?: Maybe<Current_Token_Royalty_V1>;\n /** An array relationship */\n delegated_staking_activities: Array<Delegated_Staking_Activities>;\n /** fetch data from the table: \"delegated_staking_activities\" using primary key columns */\n delegated_staking_activities_by_pk?: Maybe<Delegated_Staking_Activities>;\n /** fetch data from the table: \"delegated_staking_pool_balances\" */\n delegated_staking_pool_balances: Array<Delegated_Staking_Pool_Balances>;\n /** fetch aggregated fields from the table: \"delegated_staking_pool_balances\" */\n delegated_staking_pool_balances_aggregate: Delegated_Staking_Pool_Balances_Aggregate;\n /** fetch data from the table: \"delegated_staking_pool_balances\" using primary key columns */\n delegated_staking_pool_balances_by_pk?: Maybe<Delegated_Staking_Pool_Balances>;\n /** fetch data from the table: \"delegated_staking_pools\" */\n delegated_staking_pools: Array<Delegated_Staking_Pools>;\n /** fetch data from the table: \"delegated_staking_pools\" using primary key columns */\n delegated_staking_pools_by_pk?: Maybe<Delegated_Staking_Pools>;\n /** fetch data from the table: \"delegator_distinct_pool\" */\n delegator_distinct_pool: Array<Delegator_Distinct_Pool>;\n /** fetch aggregated fields from the table: \"delegator_distinct_pool\" */\n delegator_distinct_pool_aggregate: Delegator_Distinct_Pool_Aggregate;\n /** fetch data from the table: \"events\" */\n events: Array<Events>;\n /** fetch data from the table: \"events\" using primary key columns */\n events_by_pk?: Maybe<Events>;\n /** An array relationship */\n fungible_asset_activities: Array<Fungible_Asset_Activities>;\n /** fetch data from the table: \"fungible_asset_activities\" using primary key columns */\n fungible_asset_activities_by_pk?: Maybe<Fungible_Asset_Activities>;\n /** fetch data from the table: \"fungible_asset_metadata\" */\n fungible_asset_metadata: Array<Fungible_Asset_Metadata>;\n /** fetch data from the table: \"fungible_asset_metadata\" using primary key columns */\n fungible_asset_metadata_by_pk?: Maybe<Fungible_Asset_Metadata>;\n /** fetch data from the table: \"indexer_status\" */\n indexer_status: Array<Indexer_Status>;\n /** fetch data from the table: \"indexer_status\" using primary key columns */\n indexer_status_by_pk?: Maybe<Indexer_Status>;\n /** fetch data from the table: \"processor_metadata.ledger_infos\" */\n ledger_infos: Array<Ledger_Infos>;\n /** fetch data from the table: \"processor_metadata.ledger_infos\" using primary key columns */\n ledger_infos_by_pk?: Maybe<Ledger_Infos>;\n /** fetch data from the table: \"legacy_migration_v1.move_resources\" */\n move_resources: Array<Move_Resources>;\n /** fetch aggregated fields from the table: \"legacy_migration_v1.move_resources\" */\n move_resources_aggregate: Move_Resources_Aggregate;\n /** fetch data from the table: \"nft_metadata_crawler.parsed_asset_uris\" */\n nft_metadata_crawler_parsed_asset_uris: Array<Nft_Metadata_Crawler_Parsed_Asset_Uris>;\n /** fetch data from the table: \"nft_metadata_crawler.parsed_asset_uris\" using primary key columns */\n nft_metadata_crawler_parsed_asset_uris_by_pk?: Maybe<Nft_Metadata_Crawler_Parsed_Asset_Uris>;\n /** fetch data from the table: \"num_active_delegator_per_pool\" */\n num_active_delegator_per_pool: Array<Num_Active_Delegator_Per_Pool>;\n /** fetch data from the table: \"processor_metadata.processor_status\" */\n processor_status: Array<Processor_Status>;\n /** fetch data from the table: \"processor_metadata.processor_status\" using primary key columns */\n processor_status_by_pk?: Maybe<Processor_Status>;\n /** fetch data from the table: \"proposal_votes\" */\n proposal_votes: Array<Proposal_Votes>;\n /** fetch aggregated fields from the table: \"proposal_votes\" */\n proposal_votes_aggregate: Proposal_Votes_Aggregate;\n /** fetch data from the table: \"proposal_votes\" using primary key columns */\n proposal_votes_by_pk?: Maybe<Proposal_Votes>;\n /** fetch data from the table: \"public_key_auth_keys\" */\n public_key_auth_keys: Array<Public_Key_Auth_Keys>;\n /** fetch aggregated fields from the table: \"public_key_auth_keys\" */\n public_key_auth_keys_aggregate: Public_Key_Auth_Keys_Aggregate;\n /** fetch data from the table: \"public_key_auth_keys\" using primary key columns */\n public_key_auth_keys_by_pk?: Maybe<Public_Key_Auth_Keys>;\n /** fetch data from the table: \"signatures\" */\n signatures: Array<Signatures>;\n /** fetch data from the table: \"signatures\" using primary key columns */\n signatures_by_pk?: Maybe<Signatures>;\n /** fetch data from the table: \"table_items\" */\n table_items: Array<Table_Items>;\n /** fetch data from the table: \"table_items\" using primary key columns */\n table_items_by_pk?: Maybe<Table_Items>;\n /** fetch data from the table: \"table_metadatas\" */\n table_metadatas: Array<Table_Metadatas>;\n /** fetch data from the table: \"table_metadatas\" using primary key columns */\n table_metadatas_by_pk?: Maybe<Table_Metadatas>;\n /** An array relationship */\n token_activities: Array<Token_Activities>;\n /** An aggregate relationship */\n token_activities_aggregate: Token_Activities_Aggregate;\n /** An array relationship */\n token_activities_v2: Array<Token_Activities_V2>;\n /** An aggregate relationship */\n token_activities_v2_aggregate: Token_Activities_V2_Aggregate;\n /** fetch data from the table: \"token_activities_v2\" using primary key columns */\n token_activities_v2_by_pk?: Maybe<Token_Activities_V2>;\n /** fetch data from the table: \"legacy_migration_v1.token_datas\" */\n token_datas: Array<Token_Datas>;\n /** fetch data from the table: \"legacy_migration_v1.token_ownerships\" */\n token_ownerships: Array<Token_Ownerships>;\n /** fetch data from the table: \"legacy_migration_v1.tokens\" */\n tokens: Array<Tokens>;\n /** fetch data from the table: \"user_transactions\" */\n user_transactions: Array<User_Transactions>;\n /** fetch data from the table: \"user_transactions\" using primary key columns */\n user_transactions_by_pk?: Maybe<User_Transactions>;\n};\n\n\nexport type Query_RootAccount_TransactionsArgs = {\n distinct_on?: InputMaybe<Array<Account_Transactions_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Account_Transactions_Order_By>>;\n where?: InputMaybe<Account_Transactions_Bool_Exp>;\n};\n\n\nexport type Query_RootAccount_Transactions_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Account_Transactions_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Account_Transactions_Order_By>>;\n where?: InputMaybe<Account_Transactions_Bool_Exp>;\n};\n\n\nexport type Query_RootAccount_Transactions_By_PkArgs = {\n account_address: Scalars['String']['input'];\n transaction_version: Scalars['bigint']['input'];\n};\n\n\nexport type Query_RootAddress_Events_SummaryArgs = {\n distinct_on?: InputMaybe<Array<Address_Events_Summary_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Address_Events_Summary_Order_By>>;\n where?: InputMaybe<Address_Events_Summary_Bool_Exp>;\n};\n\n\nexport type Query_RootAddress_Version_From_EventsArgs = {\n distinct_on?: InputMaybe<Array<Address_Version_From_Events_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Address_Version_From_Events_Order_By>>;\n where?: InputMaybe<Address_Version_From_Events_Bool_Exp>;\n};\n\n\nexport type Query_RootAddress_Version_From_Events_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Address_Version_From_Events_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Address_Version_From_Events_Order_By>>;\n where?: InputMaybe<Address_Version_From_Events_Bool_Exp>;\n};\n\n\nexport type Query_RootAddress_Version_From_Move_ResourcesArgs = {\n distinct_on?: InputMaybe<Array<Address_Version_From_Move_Resources_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Address_Version_From_Move_Resources_Order_By>>;\n where?: InputMaybe<Address_Version_From_Move_Resources_Bool_Exp>;\n};\n\n\nexport type Query_RootAddress_Version_From_Move_Resources_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Address_Version_From_Move_Resources_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Address_Version_From_Move_Resources_Order_By>>;\n where?: InputMaybe<Address_Version_From_Move_Resources_Bool_Exp>;\n};\n\n\nexport type Query_RootAuth_Key_Account_AddressesArgs = {\n distinct_on?: InputMaybe<Array<Auth_Key_Account_Addresses_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Auth_Key_Account_Addresses_Order_By>>;\n where?: InputMaybe<Auth_Key_Account_Addresses_Bool_Exp>;\n};\n\n\nexport type Query_RootAuth_Key_Account_Addresses_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Auth_Key_Account_Addresses_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Auth_Key_Account_Addresses_Order_By>>;\n where?: InputMaybe<Auth_Key_Account_Addresses_Bool_Exp>;\n};\n\n\nexport type Query_RootAuth_Key_Account_Addresses_By_PkArgs = {\n account_address: Scalars['String']['input'];\n};\n\n\nexport type Query_RootBlock_Metadata_TransactionsArgs = {\n distinct_on?: InputMaybe<Array<Block_Metadata_Transactions_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Block_Metadata_Transactions_Order_By>>;\n where?: InputMaybe<Block_Metadata_Transactions_Bool_Exp>;\n};\n\n\nexport type Query_RootBlock_Metadata_Transactions_By_PkArgs = {\n version: Scalars['bigint']['input'];\n};\n\n\nexport type Query_RootCoin_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Coin_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Coin_Activities_Order_By>>;\n where?: InputMaybe<Coin_Activities_Bool_Exp>;\n};\n\n\nexport type Query_RootCoin_Activities_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Coin_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Coin_Activities_Order_By>>;\n where?: InputMaybe<Coin_Activities_Bool_Exp>;\n};\n\n\nexport type Query_RootCoin_BalancesArgs = {\n distinct_on?: InputMaybe<Array<Coin_Balances_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Coin_Balances_Order_By>>;\n where?: InputMaybe<Coin_Balances_Bool_Exp>;\n};\n\n\nexport type Query_RootCoin_InfosArgs = {\n distinct_on?: InputMaybe<Array<Coin_Infos_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Coin_Infos_Order_By>>;\n where?: InputMaybe<Coin_Infos_Bool_Exp>;\n};\n\n\nexport type Query_RootCoin_SupplyArgs = {\n distinct_on?: InputMaybe<Array<Coin_Supply_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Coin_Supply_Order_By>>;\n where?: InputMaybe<Coin_Supply_Bool_Exp>;\n};\n\n\nexport type Query_RootCoin_Supply_By_PkArgs = {\n coin_type_hash: Scalars['String']['input'];\n transaction_version: Scalars['bigint']['input'];\n};\n\n\nexport type Query_RootCollection_DatasArgs = {\n distinct_on?: InputMaybe<Array<Collection_Datas_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Collection_Datas_Order_By>>;\n where?: InputMaybe<Collection_Datas_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Ans_LookupArgs = {\n distinct_on?: InputMaybe<Array<Current_Ans_Lookup_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Ans_Lookup_Order_By>>;\n where?: InputMaybe<Current_Ans_Lookup_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Ans_Lookup_V2Args = {\n distinct_on?: InputMaybe<Array<Current_Ans_Lookup_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Ans_Lookup_V2_Order_By>>;\n where?: InputMaybe<Current_Ans_Lookup_V2_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Ans_Lookup_V2_By_PkArgs = {\n domain: Scalars['String']['input'];\n subdomain: Scalars['String']['input'];\n token_standard: Scalars['String']['input'];\n};\n\n\nexport type Query_RootCurrent_Aptos_NamesArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Aptos_Names_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Coin_BalancesArgs = {\n distinct_on?: InputMaybe<Array<Current_Coin_Balances_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Coin_Balances_Order_By>>;\n where?: InputMaybe<Current_Coin_Balances_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Collection_DatasArgs = {\n distinct_on?: InputMaybe<Array<Current_Collection_Datas_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Collection_Datas_Order_By>>;\n where?: InputMaybe<Current_Collection_Datas_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Collection_Ownership_V2_ViewArgs = {\n distinct_on?: InputMaybe<Array<Current_Collection_Ownership_V2_View_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Collection_Ownership_V2_View_Order_By>>;\n where?: InputMaybe<Current_Collection_Ownership_V2_View_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Collection_Ownership_V2_View_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Collection_Ownership_V2_View_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Collection_Ownership_V2_View_Order_By>>;\n where?: InputMaybe<Current_Collection_Ownership_V2_View_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Collections_V2Args = {\n distinct_on?: InputMaybe<Array<Current_Collections_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Collections_V2_Order_By>>;\n where?: InputMaybe<Current_Collections_V2_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Collections_V2_By_PkArgs = {\n collection_id: Scalars['String']['input'];\n};\n\n\nexport type Query_RootCurrent_Delegated_Staking_Pool_BalancesArgs = {\n distinct_on?: InputMaybe<Array<Current_Delegated_Staking_Pool_Balances_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Delegated_Staking_Pool_Balances_Order_By>>;\n where?: InputMaybe<Current_Delegated_Staking_Pool_Balances_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Delegated_Staking_Pool_Balances_By_PkArgs = {\n staking_pool_address: Scalars['String']['input'];\n};\n\n\nexport type Query_RootCurrent_Delegated_VoterArgs = {\n distinct_on?: InputMaybe<Array<Current_Delegated_Voter_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Delegated_Voter_Order_By>>;\n where?: InputMaybe<Current_Delegated_Voter_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Delegated_Voter_By_PkArgs = {\n delegation_pool_address: Scalars['String']['input'];\n delegator_address: Scalars['String']['input'];\n};\n\n\nexport type Query_RootCurrent_Delegator_BalancesArgs = {\n distinct_on?: InputMaybe<Array<Current_Delegator_Balances_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Delegator_Balances_Order_By>>;\n where?: InputMaybe<Current_Delegator_Balances_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Delegator_Balances_By_PkArgs = {\n delegator_address: Scalars['String']['input'];\n pool_address: Scalars['String']['input'];\n pool_type: Scalars['String']['input'];\n table_handle: Scalars['String']['input'];\n};\n\n\nexport type Query_RootCurrent_Fungible_Asset_BalancesArgs = {\n distinct_on?: InputMaybe<Array<Current_Fungible_Asset_Balances_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Fungible_Asset_Balances_Order_By>>;\n where?: InputMaybe<Current_Fungible_Asset_Balances_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Fungible_Asset_Balances_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Fungible_Asset_Balances_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Fungible_Asset_Balances_Order_By>>;\n where?: InputMaybe<Current_Fungible_Asset_Balances_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Fungible_Asset_Balances_By_PkArgs = {\n storage_id: Scalars['String']['input'];\n};\n\n\nexport type Query_RootCurrent_ObjectsArgs = {\n distinct_on?: InputMaybe<Array<Current_Objects_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Objects_Order_By>>;\n where?: InputMaybe<Current_Objects_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Objects_By_PkArgs = {\n object_address: Scalars['String']['input'];\n};\n\n\nexport type Query_RootCurrent_Staking_Pool_VoterArgs = {\n distinct_on?: InputMaybe<Array<Current_Staking_Pool_Voter_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Staking_Pool_Voter_Order_By>>;\n where?: InputMaybe<Current_Staking_Pool_Voter_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Staking_Pool_Voter_By_PkArgs = {\n staking_pool_address: Scalars['String']['input'];\n};\n\n\nexport type Query_RootCurrent_Table_ItemsArgs = {\n distinct_on?: InputMaybe<Array<Current_Table_Items_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Table_Items_Order_By>>;\n where?: InputMaybe<Current_Table_Items_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Table_Items_By_PkArgs = {\n key_hash: Scalars['String']['input'];\n table_handle: Scalars['String']['input'];\n};\n\n\nexport type Query_RootCurrent_Token_DatasArgs = {\n distinct_on?: InputMaybe<Array<Current_Token_Datas_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Datas_Order_By>>;\n where?: InputMaybe<Current_Token_Datas_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Token_Datas_V2Args = {\n distinct_on?: InputMaybe<Array<Current_Token_Datas_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Datas_V2_Order_By>>;\n where?: InputMaybe<Current_Token_Datas_V2_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Token_Datas_V2_By_PkArgs = {\n token_data_id: Scalars['String']['input'];\n};\n\n\nexport type Query_RootCurrent_Token_OwnershipsArgs = {\n distinct_on?: InputMaybe<Array<Current_Token_Ownerships_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Ownerships_Order_By>>;\n where?: InputMaybe<Current_Token_Ownerships_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Token_Ownerships_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Token_Ownerships_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Ownerships_Order_By>>;\n where?: InputMaybe<Current_Token_Ownerships_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Token_Ownerships_V2Args = {\n distinct_on?: InputMaybe<Array<Current_Token_Ownerships_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Ownerships_V2_Order_By>>;\n where?: InputMaybe<Current_Token_Ownerships_V2_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Token_Ownerships_V2_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Token_Ownerships_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Ownerships_V2_Order_By>>;\n where?: InputMaybe<Current_Token_Ownerships_V2_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Token_Ownerships_V2_By_PkArgs = {\n owner_address: Scalars['String']['input'];\n property_version_v1: Scalars['numeric']['input'];\n storage_id: Scalars['String']['input'];\n token_data_id: Scalars['String']['input'];\n};\n\n\nexport type Query_RootCurrent_Token_Pending_ClaimsArgs = {\n distinct_on?: InputMaybe<Array<Current_Token_Pending_Claims_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Pending_Claims_Order_By>>;\n where?: InputMaybe<Current_Token_Pending_Claims_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Token_Pending_Claims_By_PkArgs = {\n from_address: Scalars['String']['input'];\n property_version: Scalars['numeric']['input'];\n to_address: Scalars['String']['input'];\n token_data_id_hash: Scalars['String']['input'];\n};\n\n\nexport type Query_RootCurrent_Token_Royalty_V1Args = {\n distinct_on?: InputMaybe<Array<Current_Token_Royalty_V1_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Royalty_V1_Order_By>>;\n where?: InputMaybe<Current_Token_Royalty_V1_Bool_Exp>;\n};\n\n\nexport type Query_RootCurrent_Token_Royalty_V1_By_PkArgs = {\n token_data_id: Scalars['String']['input'];\n};\n\n\nexport type Query_RootDelegated_Staking_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Delegated_Staking_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Delegated_Staking_Activities_Order_By>>;\n where?: InputMaybe<Delegated_Staking_Activities_Bool_Exp>;\n};\n\n\nexport type Query_RootDelegated_Staking_Activities_By_PkArgs = {\n event_index: Scalars['bigint']['input'];\n transaction_version: Scalars['bigint']['input'];\n};\n\n\nexport type Query_RootDelegated_Staking_Pool_BalancesArgs = {\n distinct_on?: InputMaybe<Array<Delegated_Staking_Pool_Balances_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Delegated_Staking_Pool_Balances_Order_By>>;\n where?: InputMaybe<Delegated_Staking_Pool_Balances_Bool_Exp>;\n};\n\n\nexport type Query_RootDelegated_Staking_Pool_Balances_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Delegated_Staking_Pool_Balances_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Delegated_Staking_Pool_Balances_Order_By>>;\n where?: InputMaybe<Delegated_Staking_Pool_Balances_Bool_Exp>;\n};\n\n\nexport type Query_RootDelegated_Staking_Pool_Balances_By_PkArgs = {\n staking_pool_address: Scalars['String']['input'];\n transaction_version: Scalars['bigint']['input'];\n};\n\n\nexport type Query_RootDelegated_Staking_PoolsArgs = {\n distinct_on?: InputMaybe<Array<Delegated_Staking_Pools_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Delegated_Staking_Pools_Order_By>>;\n where?: InputMaybe<Delegated_Staking_Pools_Bool_Exp>;\n};\n\n\nexport type Query_RootDelegated_Staking_Pools_By_PkArgs = {\n staking_pool_address: Scalars['String']['input'];\n};\n\n\nexport type Query_RootDelegator_Distinct_PoolArgs = {\n distinct_on?: InputMaybe<Array<Delegator_Distinct_Pool_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Delegator_Distinct_Pool_Order_By>>;\n where?: InputMaybe<Delegator_Distinct_Pool_Bool_Exp>;\n};\n\n\nexport type Query_RootDelegator_Distinct_Pool_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Delegator_Distinct_Pool_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Delegator_Distinct_Pool_Order_By>>;\n where?: InputMaybe<Delegator_Distinct_Pool_Bool_Exp>;\n};\n\n\nexport type Query_RootEventsArgs = {\n distinct_on?: InputMaybe<Array<Events_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Events_Order_By>>;\n where?: InputMaybe<Events_Bool_Exp>;\n};\n\n\nexport type Query_RootEvents_By_PkArgs = {\n event_index: Scalars['bigint']['input'];\n transaction_version: Scalars['bigint']['input'];\n};\n\n\nexport type Query_RootFungible_Asset_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Fungible_Asset_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Fungible_Asset_Activities_Order_By>>;\n where?: InputMaybe<Fungible_Asset_Activities_Bool_Exp>;\n};\n\n\nexport type Query_RootFungible_Asset_Activities_By_PkArgs = {\n event_index: Scalars['bigint']['input'];\n transaction_version: Scalars['bigint']['input'];\n};\n\n\nexport type Query_RootFungible_Asset_MetadataArgs = {\n distinct_on?: InputMaybe<Array<Fungible_Asset_Metadata_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Fungible_Asset_Metadata_Order_By>>;\n where?: InputMaybe<Fungible_Asset_Metadata_Bool_Exp>;\n};\n\n\nexport type Query_RootFungible_Asset_Metadata_By_PkArgs = {\n asset_type: Scalars['String']['input'];\n};\n\n\nexport type Query_RootIndexer_StatusArgs = {\n distinct_on?: InputMaybe<Array<Indexer_Status_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Indexer_Status_Order_By>>;\n where?: InputMaybe<Indexer_Status_Bool_Exp>;\n};\n\n\nexport type Query_RootIndexer_Status_By_PkArgs = {\n db: Scalars['String']['input'];\n};\n\n\nexport type Query_RootLedger_InfosArgs = {\n distinct_on?: InputMaybe<Array<Ledger_Infos_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Ledger_Infos_Order_By>>;\n where?: InputMaybe<Ledger_Infos_Bool_Exp>;\n};\n\n\nexport type Query_RootLedger_Infos_By_PkArgs = {\n chain_id: Scalars['bigint']['input'];\n};\n\n\nexport type Query_RootMove_ResourcesArgs = {\n distinct_on?: InputMaybe<Array<Move_Resources_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Move_Resources_Order_By>>;\n where?: InputMaybe<Move_Resources_Bool_Exp>;\n};\n\n\nexport type Query_RootMove_Resources_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Move_Resources_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Move_Resources_Order_By>>;\n where?: InputMaybe<Move_Resources_Bool_Exp>;\n};\n\n\nexport type Query_RootNft_Metadata_Crawler_Parsed_Asset_UrisArgs = {\n distinct_on?: InputMaybe<Array<Nft_Metadata_Crawler_Parsed_Asset_Uris_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Nft_Metadata_Crawler_Parsed_Asset_Uris_Order_By>>;\n where?: InputMaybe<Nft_Metadata_Crawler_Parsed_Asset_Uris_Bool_Exp>;\n};\n\n\nexport type Query_RootNft_Metadata_Crawler_Parsed_Asset_Uris_By_PkArgs = {\n asset_uri: Scalars['String']['input'];\n};\n\n\nexport type Query_RootNum_Active_Delegator_Per_PoolArgs = {\n distinct_on?: InputMaybe<Array<Num_Active_Delegator_Per_Pool_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Num_Active_Delegator_Per_Pool_Order_By>>;\n where?: InputMaybe<Num_Active_Delegator_Per_Pool_Bool_Exp>;\n};\n\n\nexport type Query_RootProcessor_StatusArgs = {\n distinct_on?: InputMaybe<Array<Processor_Status_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Processor_Status_Order_By>>;\n where?: InputMaybe<Processor_Status_Bool_Exp>;\n};\n\n\nexport type Query_RootProcessor_Status_By_PkArgs = {\n processor: Scalars['String']['input'];\n};\n\n\nexport type Query_RootProposal_VotesArgs = {\n distinct_on?: InputMaybe<Array<Proposal_Votes_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Proposal_Votes_Order_By>>;\n where?: InputMaybe<Proposal_Votes_Bool_Exp>;\n};\n\n\nexport type Query_RootProposal_Votes_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Proposal_Votes_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Proposal_Votes_Order_By>>;\n where?: InputMaybe<Proposal_Votes_Bool_Exp>;\n};\n\n\nexport type Query_RootProposal_Votes_By_PkArgs = {\n proposal_id: Scalars['bigint']['input'];\n transaction_version: Scalars['bigint']['input'];\n voter_address: Scalars['String']['input'];\n};\n\n\nexport type Query_RootPublic_Key_Auth_KeysArgs = {\n distinct_on?: InputMaybe<Array<Public_Key_Auth_Keys_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Public_Key_Auth_Keys_Order_By>>;\n where?: InputMaybe<Public_Key_Auth_Keys_Bool_Exp>;\n};\n\n\nexport type Query_RootPublic_Key_Auth_Keys_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Public_Key_Auth_Keys_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Public_Key_Auth_Keys_Order_By>>;\n where?: InputMaybe<Public_Key_Auth_Keys_Bool_Exp>;\n};\n\n\nexport type Query_RootPublic_Key_Auth_Keys_By_PkArgs = {\n auth_key: Scalars['String']['input'];\n public_key: Scalars['String']['input'];\n public_key_type: Scalars['String']['input'];\n};\n\n\nexport type Query_RootSignaturesArgs = {\n distinct_on?: InputMaybe<Array<Signatures_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Signatures_Order_By>>;\n where?: InputMaybe<Signatures_Bool_Exp>;\n};\n\n\nexport type Query_RootSignatures_By_PkArgs = {\n is_sender_primary: Scalars['Boolean']['input'];\n multi_agent_index: Scalars['bigint']['input'];\n multi_sig_index: Scalars['bigint']['input'];\n transaction_version: Scalars['bigint']['input'];\n};\n\n\nexport type Query_RootTable_ItemsArgs = {\n distinct_on?: InputMaybe<Array<Table_Items_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Table_Items_Order_By>>;\n where?: InputMaybe<Table_Items_Bool_Exp>;\n};\n\n\nexport type Query_RootTable_Items_By_PkArgs = {\n transaction_version: Scalars['bigint']['input'];\n write_set_change_index: Scalars['bigint']['input'];\n};\n\n\nexport type Query_RootTable_MetadatasArgs = {\n distinct_on?: InputMaybe<Array<Table_Metadatas_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Table_Metadatas_Order_By>>;\n where?: InputMaybe<Table_Metadatas_Bool_Exp>;\n};\n\n\nexport type Query_RootTable_Metadatas_By_PkArgs = {\n handle: Scalars['String']['input'];\n};\n\n\nexport type Query_RootToken_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Token_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_Order_By>>;\n where?: InputMaybe<Token_Activities_Bool_Exp>;\n};\n\n\nexport type Query_RootToken_Activities_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Token_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_Order_By>>;\n where?: InputMaybe<Token_Activities_Bool_Exp>;\n};\n\n\nexport type Query_RootToken_Activities_V2Args = {\n distinct_on?: InputMaybe<Array<Token_Activities_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_V2_Order_By>>;\n where?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n};\n\n\nexport type Query_RootToken_Activities_V2_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Token_Activities_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_V2_Order_By>>;\n where?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n};\n\n\nexport type Query_RootToken_Activities_V2_By_PkArgs = {\n event_index: Scalars['bigint']['input'];\n transaction_version: Scalars['bigint']['input'];\n};\n\n\nexport type Query_RootToken_DatasArgs = {\n distinct_on?: InputMaybe<Array<Token_Datas_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Datas_Order_By>>;\n where?: InputMaybe<Token_Datas_Bool_Exp>;\n};\n\n\nexport type Query_RootToken_OwnershipsArgs = {\n distinct_on?: InputMaybe<Array<Token_Ownerships_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Ownerships_Order_By>>;\n where?: InputMaybe<Token_Ownerships_Bool_Exp>;\n};\n\n\nexport type Query_RootTokensArgs = {\n distinct_on?: InputMaybe<Array<Tokens_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Tokens_Order_By>>;\n where?: InputMaybe<Tokens_Bool_Exp>;\n};\n\n\nexport type Query_RootUser_TransactionsArgs = {\n distinct_on?: InputMaybe<Array<User_Transactions_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<User_Transactions_Order_By>>;\n where?: InputMaybe<User_Transactions_Bool_Exp>;\n};\n\n\nexport type Query_RootUser_Transactions_By_PkArgs = {\n version: Scalars['bigint']['input'];\n};\n\n/** columns and relationships of \"signatures\" */\nexport type Signatures = {\n __typename?: 'signatures';\n is_sender_primary: Scalars['Boolean']['output'];\n multi_agent_index: Scalars['bigint']['output'];\n multi_sig_index: Scalars['bigint']['output'];\n public_key: Scalars['String']['output'];\n public_key_indices: Scalars['jsonb']['output'];\n signature: Scalars['String']['output'];\n signer: Scalars['String']['output'];\n threshold: Scalars['bigint']['output'];\n transaction_block_height: Scalars['bigint']['output'];\n transaction_version: Scalars['bigint']['output'];\n type: Scalars['String']['output'];\n};\n\n\n/** columns and relationships of \"signatures\" */\nexport type SignaturesPublic_Key_IndicesArgs = {\n path?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Boolean expression to filter rows from the table \"signatures\". All fields are combined with a logical 'AND'. */\nexport type Signatures_Bool_Exp = {\n _and?: InputMaybe<Array<Signatures_Bool_Exp>>;\n _not?: InputMaybe<Signatures_Bool_Exp>;\n _or?: InputMaybe<Array<Signatures_Bool_Exp>>;\n is_sender_primary?: InputMaybe<Boolean_Comparison_Exp>;\n multi_agent_index?: InputMaybe<Bigint_Comparison_Exp>;\n multi_sig_index?: InputMaybe<Bigint_Comparison_Exp>;\n public_key?: InputMaybe<String_Comparison_Exp>;\n public_key_indices?: InputMaybe<Jsonb_Comparison_Exp>;\n signature?: InputMaybe<String_Comparison_Exp>;\n signer?: InputMaybe<String_Comparison_Exp>;\n threshold?: InputMaybe<Bigint_Comparison_Exp>;\n transaction_block_height?: InputMaybe<Bigint_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n type?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"signatures\". */\nexport type Signatures_Order_By = {\n is_sender_primary?: InputMaybe<Order_By>;\n multi_agent_index?: InputMaybe<Order_By>;\n multi_sig_index?: InputMaybe<Order_By>;\n public_key?: InputMaybe<Order_By>;\n public_key_indices?: InputMaybe<Order_By>;\n signature?: InputMaybe<Order_By>;\n signer?: InputMaybe<Order_By>;\n threshold?: InputMaybe<Order_By>;\n transaction_block_height?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n type?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"signatures\" */\nexport enum Signatures_Select_Column {\n /** column name */\n IsSenderPrimary = 'is_sender_primary',\n /** column name */\n MultiAgentIndex = 'multi_agent_index',\n /** column name */\n MultiSigIndex = 'multi_sig_index',\n /** column name */\n PublicKey = 'public_key',\n /** column name */\n PublicKeyIndices = 'public_key_indices',\n /** column name */\n Signature = 'signature',\n /** column name */\n Signer = 'signer',\n /** column name */\n Threshold = 'threshold',\n /** column name */\n TransactionBlockHeight = 'transaction_block_height',\n /** column name */\n TransactionVersion = 'transaction_version',\n /** column name */\n Type = 'type'\n}\n\n/** Streaming cursor of the table \"signatures\" */\nexport type Signatures_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Signatures_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Signatures_Stream_Cursor_Value_Input = {\n is_sender_primary?: InputMaybe<Scalars['Boolean']['input']>;\n multi_agent_index?: InputMaybe<Scalars['bigint']['input']>;\n multi_sig_index?: InputMaybe<Scalars['bigint']['input']>;\n public_key?: InputMaybe<Scalars['String']['input']>;\n public_key_indices?: InputMaybe<Scalars['jsonb']['input']>;\n signature?: InputMaybe<Scalars['String']['input']>;\n signer?: InputMaybe<Scalars['String']['input']>;\n threshold?: InputMaybe<Scalars['bigint']['input']>;\n transaction_block_height?: InputMaybe<Scalars['bigint']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type Subscription_Root = {\n __typename?: 'subscription_root';\n /** fetch data from the table: \"account_transactions\" */\n account_transactions: Array<Account_Transactions>;\n /** fetch aggregated fields from the table: \"account_transactions\" */\n account_transactions_aggregate: Account_Transactions_Aggregate;\n /** fetch data from the table: \"account_transactions\" using primary key columns */\n account_transactions_by_pk?: Maybe<Account_Transactions>;\n /** fetch data from the table in a streaming manner: \"account_transactions\" */\n account_transactions_stream: Array<Account_Transactions>;\n /** fetch data from the table: \"address_events_summary\" */\n address_events_summary: Array<Address_Events_Summary>;\n /** fetch data from the table in a streaming manner: \"address_events_summary\" */\n address_events_summary_stream: Array<Address_Events_Summary>;\n /** fetch data from the table: \"address_version_from_events\" */\n address_version_from_events: Array<Address_Version_From_Events>;\n /** fetch aggregated fields from the table: \"address_version_from_events\" */\n address_version_from_events_aggregate: Address_Version_From_Events_Aggregate;\n /** fetch data from the table in a streaming manner: \"address_version_from_events\" */\n address_version_from_events_stream: Array<Address_Version_From_Events>;\n /** fetch data from the table: \"legacy_migration_v1.address_version_from_move_resources\" */\n address_version_from_move_resources: Array<Address_Version_From_Move_Resources>;\n /** fetch aggregated fields from the table: \"legacy_migration_v1.address_version_from_move_resources\" */\n address_version_from_move_resources_aggregate: Address_Version_From_Move_Resources_Aggregate;\n /** fetch data from the table in a streaming manner: \"legacy_migration_v1.address_version_from_move_resources\" */\n address_version_from_move_resources_stream: Array<Address_Version_From_Move_Resources>;\n /** fetch data from the table: \"auth_key_account_addresses\" */\n auth_key_account_addresses: Array<Auth_Key_Account_Addresses>;\n /** fetch aggregated fields from the table: \"auth_key_account_addresses\" */\n auth_key_account_addresses_aggregate: Auth_Key_Account_Addresses_Aggregate;\n /** fetch data from the table: \"auth_key_account_addresses\" using primary key columns */\n auth_key_account_addresses_by_pk?: Maybe<Auth_Key_Account_Addresses>;\n /** fetch data from the table in a streaming manner: \"auth_key_account_addresses\" */\n auth_key_account_addresses_stream: Array<Auth_Key_Account_Addresses>;\n /** fetch data from the table: \"block_metadata_transactions\" */\n block_metadata_transactions: Array<Block_Metadata_Transactions>;\n /** fetch data from the table: \"block_metadata_transactions\" using primary key columns */\n block_metadata_transactions_by_pk?: Maybe<Block_Metadata_Transactions>;\n /** fetch data from the table in a streaming manner: \"block_metadata_transactions\" */\n block_metadata_transactions_stream: Array<Block_Metadata_Transactions>;\n /** An array relationship */\n coin_activities: Array<Coin_Activities>;\n /** An aggregate relationship */\n coin_activities_aggregate: Coin_Activities_Aggregate;\n /** fetch data from the table in a streaming manner: \"legacy_migration_v1.coin_activities\" */\n coin_activities_stream: Array<Coin_Activities>;\n /** fetch data from the table: \"legacy_migration_v1.coin_balances\" */\n coin_balances: Array<Coin_Balances>;\n /** fetch data from the table in a streaming manner: \"legacy_migration_v1.coin_balances\" */\n coin_balances_stream: Array<Coin_Balances>;\n /** fetch data from the table: \"legacy_migration_v1.coin_infos\" */\n coin_infos: Array<Coin_Infos>;\n /** fetch data from the table in a streaming manner: \"legacy_migration_v1.coin_infos\" */\n coin_infos_stream: Array<Coin_Infos>;\n /** fetch data from the table: \"coin_supply\" */\n coin_supply: Array<Coin_Supply>;\n /** fetch data from the table: \"coin_supply\" using primary key columns */\n coin_supply_by_pk?: Maybe<Coin_Supply>;\n /** fetch data from the table in a streaming manner: \"coin_supply\" */\n coin_supply_stream: Array<Coin_Supply>;\n /** fetch data from the table: \"legacy_migration_v1.collection_datas\" */\n collection_datas: Array<Collection_Datas>;\n /** fetch data from the table in a streaming manner: \"legacy_migration_v1.collection_datas\" */\n collection_datas_stream: Array<Collection_Datas>;\n /** fetch data from the table: \"legacy_migration_v1.current_ans_lookup\" */\n current_ans_lookup: Array<Current_Ans_Lookup>;\n /** fetch data from the table in a streaming manner: \"legacy_migration_v1.current_ans_lookup\" */\n current_ans_lookup_stream: Array<Current_Ans_Lookup>;\n /** fetch data from the table: \"current_ans_lookup_v2\" */\n current_ans_lookup_v2: Array<Current_Ans_Lookup_V2>;\n /** fetch data from the table: \"current_ans_lookup_v2\" using primary key columns */\n current_ans_lookup_v2_by_pk?: Maybe<Current_Ans_Lookup_V2>;\n /** fetch data from the table in a streaming manner: \"current_ans_lookup_v2\" */\n current_ans_lookup_v2_stream: Array<Current_Ans_Lookup_V2>;\n /** fetch data from the table: \"current_aptos_names\" */\n current_aptos_names: Array<Current_Aptos_Names>;\n /** fetch aggregated fields from the table: \"current_aptos_names\" */\n current_aptos_names_aggregate: Current_Aptos_Names_Aggregate;\n /** fetch data from the table in a streaming manner: \"current_aptos_names\" */\n current_aptos_names_stream: Array<Current_Aptos_Names>;\n /** fetch data from the table: \"legacy_migration_v1.current_coin_balances\" */\n current_coin_balances: Array<Current_Coin_Balances>;\n /** fetch data from the table in a streaming manner: \"legacy_migration_v1.current_coin_balances\" */\n current_coin_balances_stream: Array<Current_Coin_Balances>;\n /** fetch data from the table: \"legacy_migration_v1.current_collection_datas\" */\n current_collection_datas: Array<Current_Collection_Datas>;\n /** fetch data from the table in a streaming manner: \"legacy_migration_v1.current_collection_datas\" */\n current_collection_datas_stream: Array<Current_Collection_Datas>;\n /** fetch data from the table: \"current_collection_ownership_v2_view\" */\n current_collection_ownership_v2_view: Array<Current_Collection_Ownership_V2_View>;\n /** fetch aggregated fields from the table: \"current_collection_ownership_v2_view\" */\n current_collection_ownership_v2_view_aggregate: Current_Collection_Ownership_V2_View_Aggregate;\n /** fetch data from the table in a streaming manner: \"current_collection_ownership_v2_view\" */\n current_collection_ownership_v2_view_stream: Array<Current_Collection_Ownership_V2_View>;\n /** fetch data from the table: \"current_collections_v2\" */\n current_collections_v2: Array<Current_Collections_V2>;\n /** fetch data from the table: \"current_collections_v2\" using primary key columns */\n current_collections_v2_by_pk?: Maybe<Current_Collections_V2>;\n /** fetch data from the table in a streaming manner: \"current_collections_v2\" */\n current_collections_v2_stream: Array<Current_Collections_V2>;\n /** fetch data from the table: \"current_delegated_staking_pool_balances\" */\n current_delegated_staking_pool_balances: Array<Current_Delegated_Staking_Pool_Balances>;\n /** fetch data from the table: \"current_delegated_staking_pool_balances\" using primary key columns */\n current_delegated_staking_pool_balances_by_pk?: Maybe<Current_Delegated_Staking_Pool_Balances>;\n /** fetch data from the table in a streaming manner: \"current_delegated_staking_pool_balances\" */\n current_delegated_staking_pool_balances_stream: Array<Current_Delegated_Staking_Pool_Balances>;\n /** fetch data from the table: \"current_delegated_voter\" */\n current_delegated_voter: Array<Current_Delegated_Voter>;\n /** fetch data from the table: \"current_delegated_voter\" using primary key columns */\n current_delegated_voter_by_pk?: Maybe<Current_Delegated_Voter>;\n /** fetch data from the table in a streaming manner: \"current_delegated_voter\" */\n current_delegated_voter_stream: Array<Current_Delegated_Voter>;\n /** fetch data from the table: \"current_delegator_balances\" */\n current_delegator_balances: Array<Current_Delegator_Balances>;\n /** fetch data from the table: \"current_delegator_balances\" using primary key columns */\n current_delegator_balances_by_pk?: Maybe<Current_Delegator_Balances>;\n /** fetch data from the table in a streaming manner: \"current_delegator_balances\" */\n current_delegator_balances_stream: Array<Current_Delegator_Balances>;\n /** fetch data from the table: \"current_fungible_asset_balances\" */\n current_fungible_asset_balances: Array<Current_Fungible_Asset_Balances>;\n /** fetch aggregated fields from the table: \"current_fungible_asset_balances\" */\n current_fungible_asset_balances_aggregate: Current_Fungible_Asset_Balances_Aggregate;\n /** fetch data from the table: \"current_fungible_asset_balances\" using primary key columns */\n current_fungible_asset_balances_by_pk?: Maybe<Current_Fungible_Asset_Balances>;\n /** fetch data from the table in a streaming manner: \"current_fungible_asset_balances\" */\n current_fungible_asset_balances_stream: Array<Current_Fungible_Asset_Balances>;\n /** fetch data from the table: \"current_objects\" */\n current_objects: Array<Current_Objects>;\n /** fetch data from the table: \"current_objects\" using primary key columns */\n current_objects_by_pk?: Maybe<Current_Objects>;\n /** fetch data from the table in a streaming manner: \"current_objects\" */\n current_objects_stream: Array<Current_Objects>;\n /** fetch data from the table: \"current_staking_pool_voter\" */\n current_staking_pool_voter: Array<Current_Staking_Pool_Voter>;\n /** fetch data from the table: \"current_staking_pool_voter\" using primary key columns */\n current_staking_pool_voter_by_pk?: Maybe<Current_Staking_Pool_Voter>;\n /** fetch data from the table in a streaming manner: \"current_staking_pool_voter\" */\n current_staking_pool_voter_stream: Array<Current_Staking_Pool_Voter>;\n /** fetch data from the table: \"current_table_items\" */\n current_table_items: Array<Current_Table_Items>;\n /** fetch data from the table: \"current_table_items\" using primary key columns */\n current_table_items_by_pk?: Maybe<Current_Table_Items>;\n /** fetch data from the table in a streaming manner: \"current_table_items\" */\n current_table_items_stream: Array<Current_Table_Items>;\n /** fetch data from the table: \"legacy_migration_v1.current_token_datas\" */\n current_token_datas: Array<Current_Token_Datas>;\n /** fetch data from the table in a streaming manner: \"legacy_migration_v1.current_token_datas\" */\n current_token_datas_stream: Array<Current_Token_Datas>;\n /** fetch data from the table: \"current_token_datas_v2\" */\n current_token_datas_v2: Array<Current_Token_Datas_V2>;\n /** fetch data from the table: \"current_token_datas_v2\" using primary key columns */\n current_token_datas_v2_by_pk?: Maybe<Current_Token_Datas_V2>;\n /** fetch data from the table in a streaming manner: \"current_token_datas_v2\" */\n current_token_datas_v2_stream: Array<Current_Token_Datas_V2>;\n /** fetch data from the table: \"legacy_migration_v1.current_token_ownerships\" */\n current_token_ownerships: Array<Current_Token_Ownerships>;\n /** fetch aggregated fields from the table: \"legacy_migration_v1.current_token_ownerships\" */\n current_token_ownerships_aggregate: Current_Token_Ownerships_Aggregate;\n /** fetch data from the table in a streaming manner: \"legacy_migration_v1.current_token_ownerships\" */\n current_token_ownerships_stream: Array<Current_Token_Ownerships>;\n /** fetch data from the table: \"current_token_ownerships_v2\" */\n current_token_ownerships_v2: Array<Current_Token_Ownerships_V2>;\n /** fetch aggregated fields from the table: \"current_token_ownerships_v2\" */\n current_token_ownerships_v2_aggregate: Current_Token_Ownerships_V2_Aggregate;\n /** fetch data from the table: \"current_token_ownerships_v2\" using primary key columns */\n current_token_ownerships_v2_by_pk?: Maybe<Current_Token_Ownerships_V2>;\n /** fetch data from the table in a streaming manner: \"current_token_ownerships_v2\" */\n current_token_ownerships_v2_stream: Array<Current_Token_Ownerships_V2>;\n /** fetch data from the table: \"current_token_pending_claims\" */\n current_token_pending_claims: Array<Current_Token_Pending_Claims>;\n /** fetch data from the table: \"current_token_pending_claims\" using primary key columns */\n current_token_pending_claims_by_pk?: Maybe<Current_Token_Pending_Claims>;\n /** fetch data from the table in a streaming manner: \"current_token_pending_claims\" */\n current_token_pending_claims_stream: Array<Current_Token_Pending_Claims>;\n /** fetch data from the table: \"current_token_royalty_v1\" */\n current_token_royalty_v1: Array<Current_Token_Royalty_V1>;\n /** fetch data from the table: \"current_token_royalty_v1\" using primary key columns */\n current_token_royalty_v1_by_pk?: Maybe<Current_Token_Royalty_V1>;\n /** fetch data from the table in a streaming manner: \"current_token_royalty_v1\" */\n current_token_royalty_v1_stream: Array<Current_Token_Royalty_V1>;\n /** An array relationship */\n delegated_staking_activities: Array<Delegated_Staking_Activities>;\n /** fetch data from the table: \"delegated_staking_activities\" using primary key columns */\n delegated_staking_activities_by_pk?: Maybe<Delegated_Staking_Activities>;\n /** fetch data from the table in a streaming manner: \"delegated_staking_activities\" */\n delegated_staking_activities_stream: Array<Delegated_Staking_Activities>;\n /** fetch data from the table: \"delegated_staking_pool_balances\" */\n delegated_staking_pool_balances: Array<Delegated_Staking_Pool_Balances>;\n /** fetch aggregated fields from the table: \"delegated_staking_pool_balances\" */\n delegated_staking_pool_balances_aggregate: Delegated_Staking_Pool_Balances_Aggregate;\n /** fetch data from the table: \"delegated_staking_pool_balances\" using primary key columns */\n delegated_staking_pool_balances_by_pk?: Maybe<Delegated_Staking_Pool_Balances>;\n /** fetch data from the table in a streaming manner: \"delegated_staking_pool_balances\" */\n delegated_staking_pool_balances_stream: Array<Delegated_Staking_Pool_Balances>;\n /** fetch data from the table: \"delegated_staking_pools\" */\n delegated_staking_pools: Array<Delegated_Staking_Pools>;\n /** fetch data from the table: \"delegated_staking_pools\" using primary key columns */\n delegated_staking_pools_by_pk?: Maybe<Delegated_Staking_Pools>;\n /** fetch data from the table in a streaming manner: \"delegated_staking_pools\" */\n delegated_staking_pools_stream: Array<Delegated_Staking_Pools>;\n /** fetch data from the table: \"delegator_distinct_pool\" */\n delegator_distinct_pool: Array<Delegator_Distinct_Pool>;\n /** fetch aggregated fields from the table: \"delegator_distinct_pool\" */\n delegator_distinct_pool_aggregate: Delegator_Distinct_Pool_Aggregate;\n /** fetch data from the table in a streaming manner: \"delegator_distinct_pool\" */\n delegator_distinct_pool_stream: Array<Delegator_Distinct_Pool>;\n /** fetch data from the table: \"events\" */\n events: Array<Events>;\n /** fetch data from the table: \"events\" using primary key columns */\n events_by_pk?: Maybe<Events>;\n /** fetch data from the table in a streaming manner: \"events\" */\n events_stream: Array<Events>;\n /** An array relationship */\n fungible_asset_activities: Array<Fungible_Asset_Activities>;\n /** fetch data from the table: \"fungible_asset_activities\" using primary key columns */\n fungible_asset_activities_by_pk?: Maybe<Fungible_Asset_Activities>;\n /** fetch data from the table in a streaming manner: \"fungible_asset_activities\" */\n fungible_asset_activities_stream: Array<Fungible_Asset_Activities>;\n /** fetch data from the table: \"fungible_asset_metadata\" */\n fungible_asset_metadata: Array<Fungible_Asset_Metadata>;\n /** fetch data from the table: \"fungible_asset_metadata\" using primary key columns */\n fungible_asset_metadata_by_pk?: Maybe<Fungible_Asset_Metadata>;\n /** fetch data from the table in a streaming manner: \"fungible_asset_metadata\" */\n fungible_asset_metadata_stream: Array<Fungible_Asset_Metadata>;\n /** fetch data from the table: \"indexer_status\" */\n indexer_status: Array<Indexer_Status>;\n /** fetch data from the table: \"indexer_status\" using primary key columns */\n indexer_status_by_pk?: Maybe<Indexer_Status>;\n /** fetch data from the table in a streaming manner: \"indexer_status\" */\n indexer_status_stream: Array<Indexer_Status>;\n /** fetch data from the table: \"processor_metadata.ledger_infos\" */\n ledger_infos: Array<Ledger_Infos>;\n /** fetch data from the table: \"processor_metadata.ledger_infos\" using primary key columns */\n ledger_infos_by_pk?: Maybe<Ledger_Infos>;\n /** fetch data from the table in a streaming manner: \"processor_metadata.ledger_infos\" */\n ledger_infos_stream: Array<Ledger_Infos>;\n /** fetch data from the table: \"legacy_migration_v1.move_resources\" */\n move_resources: Array<Move_Resources>;\n /** fetch aggregated fields from the table: \"legacy_migration_v1.move_resources\" */\n move_resources_aggregate: Move_Resources_Aggregate;\n /** fetch data from the table in a streaming manner: \"legacy_migration_v1.move_resources\" */\n move_resources_stream: Array<Move_Resources>;\n /** fetch data from the table: \"nft_metadata_crawler.parsed_asset_uris\" */\n nft_metadata_crawler_parsed_asset_uris: Array<Nft_Metadata_Crawler_Parsed_Asset_Uris>;\n /** fetch data from the table: \"nft_metadata_crawler.parsed_asset_uris\" using primary key columns */\n nft_metadata_crawler_parsed_asset_uris_by_pk?: Maybe<Nft_Metadata_Crawler_Parsed_Asset_Uris>;\n /** fetch data from the table in a streaming manner: \"nft_metadata_crawler.parsed_asset_uris\" */\n nft_metadata_crawler_parsed_asset_uris_stream: Array<Nft_Metadata_Crawler_Parsed_Asset_Uris>;\n /** fetch data from the table: \"num_active_delegator_per_pool\" */\n num_active_delegator_per_pool: Array<Num_Active_Delegator_Per_Pool>;\n /** fetch data from the table in a streaming manner: \"num_active_delegator_per_pool\" */\n num_active_delegator_per_pool_stream: Array<Num_Active_Delegator_Per_Pool>;\n /** fetch data from the table: \"processor_metadata.processor_status\" */\n processor_status: Array<Processor_Status>;\n /** fetch data from the table: \"processor_metadata.processor_status\" using primary key columns */\n processor_status_by_pk?: Maybe<Processor_Status>;\n /** fetch data from the table in a streaming manner: \"processor_metadata.processor_status\" */\n processor_status_stream: Array<Processor_Status>;\n /** fetch data from the table: \"proposal_votes\" */\n proposal_votes: Array<Proposal_Votes>;\n /** fetch aggregated fields from the table: \"proposal_votes\" */\n proposal_votes_aggregate: Proposal_Votes_Aggregate;\n /** fetch data from the table: \"proposal_votes\" using primary key columns */\n proposal_votes_by_pk?: Maybe<Proposal_Votes>;\n /** fetch data from the table in a streaming manner: \"proposal_votes\" */\n proposal_votes_stream: Array<Proposal_Votes>;\n /** fetch data from the table: \"public_key_auth_keys\" */\n public_key_auth_keys: Array<Public_Key_Auth_Keys>;\n /** fetch aggregated fields from the table: \"public_key_auth_keys\" */\n public_key_auth_keys_aggregate: Public_Key_Auth_Keys_Aggregate;\n /** fetch data from the table: \"public_key_auth_keys\" using primary key columns */\n public_key_auth_keys_by_pk?: Maybe<Public_Key_Auth_Keys>;\n /** fetch data from the table in a streaming manner: \"public_key_auth_keys\" */\n public_key_auth_keys_stream: Array<Public_Key_Auth_Keys>;\n /** fetch data from the table: \"signatures\" */\n signatures: Array<Signatures>;\n /** fetch data from the table: \"signatures\" using primary key columns */\n signatures_by_pk?: Maybe<Signatures>;\n /** fetch data from the table in a streaming manner: \"signatures\" */\n signatures_stream: Array<Signatures>;\n /** fetch data from the table: \"table_items\" */\n table_items: Array<Table_Items>;\n /** fetch data from the table: \"table_items\" using primary key columns */\n table_items_by_pk?: Maybe<Table_Items>;\n /** fetch data from the table in a streaming manner: \"table_items\" */\n table_items_stream: Array<Table_Items>;\n /** fetch data from the table: \"table_metadatas\" */\n table_metadatas: Array<Table_Metadatas>;\n /** fetch data from the table: \"table_metadatas\" using primary key columns */\n table_metadatas_by_pk?: Maybe<Table_Metadatas>;\n /** fetch data from the table in a streaming manner: \"table_metadatas\" */\n table_metadatas_stream: Array<Table_Metadatas>;\n /** An array relationship */\n token_activities: Array<Token_Activities>;\n /** An aggregate relationship */\n token_activities_aggregate: Token_Activities_Aggregate;\n /** fetch data from the table in a streaming manner: \"legacy_migration_v1.token_activities\" */\n token_activities_stream: Array<Token_Activities>;\n /** An array relationship */\n token_activities_v2: Array<Token_Activities_V2>;\n /** An aggregate relationship */\n token_activities_v2_aggregate: Token_Activities_V2_Aggregate;\n /** fetch data from the table: \"token_activities_v2\" using primary key columns */\n token_activities_v2_by_pk?: Maybe<Token_Activities_V2>;\n /** fetch data from the table in a streaming manner: \"token_activities_v2\" */\n token_activities_v2_stream: Array<Token_Activities_V2>;\n /** fetch data from the table: \"legacy_migration_v1.token_datas\" */\n token_datas: Array<Token_Datas>;\n /** fetch data from the table in a streaming manner: \"legacy_migration_v1.token_datas\" */\n token_datas_stream: Array<Token_Datas>;\n /** fetch data from the table: \"legacy_migration_v1.token_ownerships\" */\n token_ownerships: Array<Token_Ownerships>;\n /** fetch data from the table in a streaming manner: \"legacy_migration_v1.token_ownerships\" */\n token_ownerships_stream: Array<Token_Ownerships>;\n /** fetch data from the table: \"legacy_migration_v1.tokens\" */\n tokens: Array<Tokens>;\n /** fetch data from the table in a streaming manner: \"legacy_migration_v1.tokens\" */\n tokens_stream: Array<Tokens>;\n /** fetch data from the table: \"user_transactions\" */\n user_transactions: Array<User_Transactions>;\n /** fetch data from the table: \"user_transactions\" using primary key columns */\n user_transactions_by_pk?: Maybe<User_Transactions>;\n /** fetch data from the table in a streaming manner: \"user_transactions\" */\n user_transactions_stream: Array<User_Transactions>;\n};\n\n\nexport type Subscription_RootAccount_TransactionsArgs = {\n distinct_on?: InputMaybe<Array<Account_Transactions_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Account_Transactions_Order_By>>;\n where?: InputMaybe<Account_Transactions_Bool_Exp>;\n};\n\n\nexport type Subscription_RootAccount_Transactions_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Account_Transactions_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Account_Transactions_Order_By>>;\n where?: InputMaybe<Account_Transactions_Bool_Exp>;\n};\n\n\nexport type Subscription_RootAccount_Transactions_By_PkArgs = {\n account_address: Scalars['String']['input'];\n transaction_version: Scalars['bigint']['input'];\n};\n\n\nexport type Subscription_RootAccount_Transactions_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Account_Transactions_Stream_Cursor_Input>>;\n where?: InputMaybe<Account_Transactions_Bool_Exp>;\n};\n\n\nexport type Subscription_RootAddress_Events_SummaryArgs = {\n distinct_on?: InputMaybe<Array<Address_Events_Summary_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Address_Events_Summary_Order_By>>;\n where?: InputMaybe<Address_Events_Summary_Bool_Exp>;\n};\n\n\nexport type Subscription_RootAddress_Events_Summary_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Address_Events_Summary_Stream_Cursor_Input>>;\n where?: InputMaybe<Address_Events_Summary_Bool_Exp>;\n};\n\n\nexport type Subscription_RootAddress_Version_From_EventsArgs = {\n distinct_on?: InputMaybe<Array<Address_Version_From_Events_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Address_Version_From_Events_Order_By>>;\n where?: InputMaybe<Address_Version_From_Events_Bool_Exp>;\n};\n\n\nexport type Subscription_RootAddress_Version_From_Events_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Address_Version_From_Events_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Address_Version_From_Events_Order_By>>;\n where?: InputMaybe<Address_Version_From_Events_Bool_Exp>;\n};\n\n\nexport type Subscription_RootAddress_Version_From_Events_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Address_Version_From_Events_Stream_Cursor_Input>>;\n where?: InputMaybe<Address_Version_From_Events_Bool_Exp>;\n};\n\n\nexport type Subscription_RootAddress_Version_From_Move_ResourcesArgs = {\n distinct_on?: InputMaybe<Array<Address_Version_From_Move_Resources_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Address_Version_From_Move_Resources_Order_By>>;\n where?: InputMaybe<Address_Version_From_Move_Resources_Bool_Exp>;\n};\n\n\nexport type Subscription_RootAddress_Version_From_Move_Resources_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Address_Version_From_Move_Resources_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Address_Version_From_Move_Resources_Order_By>>;\n where?: InputMaybe<Address_Version_From_Move_Resources_Bool_Exp>;\n};\n\n\nexport type Subscription_RootAddress_Version_From_Move_Resources_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Address_Version_From_Move_Resources_Stream_Cursor_Input>>;\n where?: InputMaybe<Address_Version_From_Move_Resources_Bool_Exp>;\n};\n\n\nexport type Subscription_RootAuth_Key_Account_AddressesArgs = {\n distinct_on?: InputMaybe<Array<Auth_Key_Account_Addresses_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Auth_Key_Account_Addresses_Order_By>>;\n where?: InputMaybe<Auth_Key_Account_Addresses_Bool_Exp>;\n};\n\n\nexport type Subscription_RootAuth_Key_Account_Addresses_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Auth_Key_Account_Addresses_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Auth_Key_Account_Addresses_Order_By>>;\n where?: InputMaybe<Auth_Key_Account_Addresses_Bool_Exp>;\n};\n\n\nexport type Subscription_RootAuth_Key_Account_Addresses_By_PkArgs = {\n account_address: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootAuth_Key_Account_Addresses_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Auth_Key_Account_Addresses_Stream_Cursor_Input>>;\n where?: InputMaybe<Auth_Key_Account_Addresses_Bool_Exp>;\n};\n\n\nexport type Subscription_RootBlock_Metadata_TransactionsArgs = {\n distinct_on?: InputMaybe<Array<Block_Metadata_Transactions_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Block_Metadata_Transactions_Order_By>>;\n where?: InputMaybe<Block_Metadata_Transactions_Bool_Exp>;\n};\n\n\nexport type Subscription_RootBlock_Metadata_Transactions_By_PkArgs = {\n version: Scalars['bigint']['input'];\n};\n\n\nexport type Subscription_RootBlock_Metadata_Transactions_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Block_Metadata_Transactions_Stream_Cursor_Input>>;\n where?: InputMaybe<Block_Metadata_Transactions_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCoin_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Coin_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Coin_Activities_Order_By>>;\n where?: InputMaybe<Coin_Activities_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCoin_Activities_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Coin_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Coin_Activities_Order_By>>;\n where?: InputMaybe<Coin_Activities_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCoin_Activities_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Coin_Activities_Stream_Cursor_Input>>;\n where?: InputMaybe<Coin_Activities_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCoin_BalancesArgs = {\n distinct_on?: InputMaybe<Array<Coin_Balances_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Coin_Balances_Order_By>>;\n where?: InputMaybe<Coin_Balances_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCoin_Balances_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Coin_Balances_Stream_Cursor_Input>>;\n where?: InputMaybe<Coin_Balances_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCoin_InfosArgs = {\n distinct_on?: InputMaybe<Array<Coin_Infos_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Coin_Infos_Order_By>>;\n where?: InputMaybe<Coin_Infos_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCoin_Infos_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Coin_Infos_Stream_Cursor_Input>>;\n where?: InputMaybe<Coin_Infos_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCoin_SupplyArgs = {\n distinct_on?: InputMaybe<Array<Coin_Supply_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Coin_Supply_Order_By>>;\n where?: InputMaybe<Coin_Supply_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCoin_Supply_By_PkArgs = {\n coin_type_hash: Scalars['String']['input'];\n transaction_version: Scalars['bigint']['input'];\n};\n\n\nexport type Subscription_RootCoin_Supply_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Coin_Supply_Stream_Cursor_Input>>;\n where?: InputMaybe<Coin_Supply_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCollection_DatasArgs = {\n distinct_on?: InputMaybe<Array<Collection_Datas_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Collection_Datas_Order_By>>;\n where?: InputMaybe<Collection_Datas_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCollection_Datas_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Collection_Datas_Stream_Cursor_Input>>;\n where?: InputMaybe<Collection_Datas_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Ans_LookupArgs = {\n distinct_on?: InputMaybe<Array<Current_Ans_Lookup_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Ans_Lookup_Order_By>>;\n where?: InputMaybe<Current_Ans_Lookup_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Ans_Lookup_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Ans_Lookup_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Ans_Lookup_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Ans_Lookup_V2Args = {\n distinct_on?: InputMaybe<Array<Current_Ans_Lookup_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Ans_Lookup_V2_Order_By>>;\n where?: InputMaybe<Current_Ans_Lookup_V2_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Ans_Lookup_V2_By_PkArgs = {\n domain: Scalars['String']['input'];\n subdomain: Scalars['String']['input'];\n token_standard: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootCurrent_Ans_Lookup_V2_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Ans_Lookup_V2_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Ans_Lookup_V2_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Aptos_NamesArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Aptos_Names_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Aptos_Names_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Aptos_Names_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Coin_BalancesArgs = {\n distinct_on?: InputMaybe<Array<Current_Coin_Balances_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Coin_Balances_Order_By>>;\n where?: InputMaybe<Current_Coin_Balances_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Coin_Balances_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Coin_Balances_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Coin_Balances_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Collection_DatasArgs = {\n distinct_on?: InputMaybe<Array<Current_Collection_Datas_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Collection_Datas_Order_By>>;\n where?: InputMaybe<Current_Collection_Datas_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Collection_Datas_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Collection_Datas_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Collection_Datas_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Collection_Ownership_V2_ViewArgs = {\n distinct_on?: InputMaybe<Array<Current_Collection_Ownership_V2_View_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Collection_Ownership_V2_View_Order_By>>;\n where?: InputMaybe<Current_Collection_Ownership_V2_View_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Collection_Ownership_V2_View_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Collection_Ownership_V2_View_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Collection_Ownership_V2_View_Order_By>>;\n where?: InputMaybe<Current_Collection_Ownership_V2_View_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Collection_Ownership_V2_View_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Collection_Ownership_V2_View_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Collection_Ownership_V2_View_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Collections_V2Args = {\n distinct_on?: InputMaybe<Array<Current_Collections_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Collections_V2_Order_By>>;\n where?: InputMaybe<Current_Collections_V2_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Collections_V2_By_PkArgs = {\n collection_id: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootCurrent_Collections_V2_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Collections_V2_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Collections_V2_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Delegated_Staking_Pool_BalancesArgs = {\n distinct_on?: InputMaybe<Array<Current_Delegated_Staking_Pool_Balances_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Delegated_Staking_Pool_Balances_Order_By>>;\n where?: InputMaybe<Current_Delegated_Staking_Pool_Balances_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Delegated_Staking_Pool_Balances_By_PkArgs = {\n staking_pool_address: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootCurrent_Delegated_Staking_Pool_Balances_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Delegated_Staking_Pool_Balances_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Delegated_Staking_Pool_Balances_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Delegated_VoterArgs = {\n distinct_on?: InputMaybe<Array<Current_Delegated_Voter_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Delegated_Voter_Order_By>>;\n where?: InputMaybe<Current_Delegated_Voter_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Delegated_Voter_By_PkArgs = {\n delegation_pool_address: Scalars['String']['input'];\n delegator_address: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootCurrent_Delegated_Voter_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Delegated_Voter_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Delegated_Voter_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Delegator_BalancesArgs = {\n distinct_on?: InputMaybe<Array<Current_Delegator_Balances_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Delegator_Balances_Order_By>>;\n where?: InputMaybe<Current_Delegator_Balances_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Delegator_Balances_By_PkArgs = {\n delegator_address: Scalars['String']['input'];\n pool_address: Scalars['String']['input'];\n pool_type: Scalars['String']['input'];\n table_handle: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootCurrent_Delegator_Balances_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Delegator_Balances_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Delegator_Balances_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Fungible_Asset_BalancesArgs = {\n distinct_on?: InputMaybe<Array<Current_Fungible_Asset_Balances_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Fungible_Asset_Balances_Order_By>>;\n where?: InputMaybe<Current_Fungible_Asset_Balances_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Fungible_Asset_Balances_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Fungible_Asset_Balances_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Fungible_Asset_Balances_Order_By>>;\n where?: InputMaybe<Current_Fungible_Asset_Balances_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Fungible_Asset_Balances_By_PkArgs = {\n storage_id: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootCurrent_Fungible_Asset_Balances_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Fungible_Asset_Balances_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Fungible_Asset_Balances_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_ObjectsArgs = {\n distinct_on?: InputMaybe<Array<Current_Objects_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Objects_Order_By>>;\n where?: InputMaybe<Current_Objects_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Objects_By_PkArgs = {\n object_address: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootCurrent_Objects_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Objects_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Objects_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Staking_Pool_VoterArgs = {\n distinct_on?: InputMaybe<Array<Current_Staking_Pool_Voter_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Staking_Pool_Voter_Order_By>>;\n where?: InputMaybe<Current_Staking_Pool_Voter_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Staking_Pool_Voter_By_PkArgs = {\n staking_pool_address: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootCurrent_Staking_Pool_Voter_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Staking_Pool_Voter_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Staking_Pool_Voter_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Table_ItemsArgs = {\n distinct_on?: InputMaybe<Array<Current_Table_Items_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Table_Items_Order_By>>;\n where?: InputMaybe<Current_Table_Items_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Table_Items_By_PkArgs = {\n key_hash: Scalars['String']['input'];\n table_handle: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootCurrent_Table_Items_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Table_Items_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Table_Items_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Token_DatasArgs = {\n distinct_on?: InputMaybe<Array<Current_Token_Datas_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Datas_Order_By>>;\n where?: InputMaybe<Current_Token_Datas_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Token_Datas_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Token_Datas_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Token_Datas_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Token_Datas_V2Args = {\n distinct_on?: InputMaybe<Array<Current_Token_Datas_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Datas_V2_Order_By>>;\n where?: InputMaybe<Current_Token_Datas_V2_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Token_Datas_V2_By_PkArgs = {\n token_data_id: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootCurrent_Token_Datas_V2_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Token_Datas_V2_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Token_Datas_V2_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Token_OwnershipsArgs = {\n distinct_on?: InputMaybe<Array<Current_Token_Ownerships_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Ownerships_Order_By>>;\n where?: InputMaybe<Current_Token_Ownerships_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Token_Ownerships_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Token_Ownerships_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Ownerships_Order_By>>;\n where?: InputMaybe<Current_Token_Ownerships_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Token_Ownerships_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Token_Ownerships_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Token_Ownerships_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Token_Ownerships_V2Args = {\n distinct_on?: InputMaybe<Array<Current_Token_Ownerships_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Ownerships_V2_Order_By>>;\n where?: InputMaybe<Current_Token_Ownerships_V2_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Token_Ownerships_V2_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Token_Ownerships_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Ownerships_V2_Order_By>>;\n where?: InputMaybe<Current_Token_Ownerships_V2_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Token_Ownerships_V2_By_PkArgs = {\n owner_address: Scalars['String']['input'];\n property_version_v1: Scalars['numeric']['input'];\n storage_id: Scalars['String']['input'];\n token_data_id: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootCurrent_Token_Ownerships_V2_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Token_Ownerships_V2_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Token_Ownerships_V2_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Token_Pending_ClaimsArgs = {\n distinct_on?: InputMaybe<Array<Current_Token_Pending_Claims_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Pending_Claims_Order_By>>;\n where?: InputMaybe<Current_Token_Pending_Claims_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Token_Pending_Claims_By_PkArgs = {\n from_address: Scalars['String']['input'];\n property_version: Scalars['numeric']['input'];\n to_address: Scalars['String']['input'];\n token_data_id_hash: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootCurrent_Token_Pending_Claims_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Token_Pending_Claims_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Token_Pending_Claims_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Token_Royalty_V1Args = {\n distinct_on?: InputMaybe<Array<Current_Token_Royalty_V1_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Token_Royalty_V1_Order_By>>;\n where?: InputMaybe<Current_Token_Royalty_V1_Bool_Exp>;\n};\n\n\nexport type Subscription_RootCurrent_Token_Royalty_V1_By_PkArgs = {\n token_data_id: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootCurrent_Token_Royalty_V1_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Current_Token_Royalty_V1_Stream_Cursor_Input>>;\n where?: InputMaybe<Current_Token_Royalty_V1_Bool_Exp>;\n};\n\n\nexport type Subscription_RootDelegated_Staking_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Delegated_Staking_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Delegated_Staking_Activities_Order_By>>;\n where?: InputMaybe<Delegated_Staking_Activities_Bool_Exp>;\n};\n\n\nexport type Subscription_RootDelegated_Staking_Activities_By_PkArgs = {\n event_index: Scalars['bigint']['input'];\n transaction_version: Scalars['bigint']['input'];\n};\n\n\nexport type Subscription_RootDelegated_Staking_Activities_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Delegated_Staking_Activities_Stream_Cursor_Input>>;\n where?: InputMaybe<Delegated_Staking_Activities_Bool_Exp>;\n};\n\n\nexport type Subscription_RootDelegated_Staking_Pool_BalancesArgs = {\n distinct_on?: InputMaybe<Array<Delegated_Staking_Pool_Balances_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Delegated_Staking_Pool_Balances_Order_By>>;\n where?: InputMaybe<Delegated_Staking_Pool_Balances_Bool_Exp>;\n};\n\n\nexport type Subscription_RootDelegated_Staking_Pool_Balances_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Delegated_Staking_Pool_Balances_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Delegated_Staking_Pool_Balances_Order_By>>;\n where?: InputMaybe<Delegated_Staking_Pool_Balances_Bool_Exp>;\n};\n\n\nexport type Subscription_RootDelegated_Staking_Pool_Balances_By_PkArgs = {\n staking_pool_address: Scalars['String']['input'];\n transaction_version: Scalars['bigint']['input'];\n};\n\n\nexport type Subscription_RootDelegated_Staking_Pool_Balances_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Delegated_Staking_Pool_Balances_Stream_Cursor_Input>>;\n where?: InputMaybe<Delegated_Staking_Pool_Balances_Bool_Exp>;\n};\n\n\nexport type Subscription_RootDelegated_Staking_PoolsArgs = {\n distinct_on?: InputMaybe<Array<Delegated_Staking_Pools_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Delegated_Staking_Pools_Order_By>>;\n where?: InputMaybe<Delegated_Staking_Pools_Bool_Exp>;\n};\n\n\nexport type Subscription_RootDelegated_Staking_Pools_By_PkArgs = {\n staking_pool_address: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootDelegated_Staking_Pools_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Delegated_Staking_Pools_Stream_Cursor_Input>>;\n where?: InputMaybe<Delegated_Staking_Pools_Bool_Exp>;\n};\n\n\nexport type Subscription_RootDelegator_Distinct_PoolArgs = {\n distinct_on?: InputMaybe<Array<Delegator_Distinct_Pool_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Delegator_Distinct_Pool_Order_By>>;\n where?: InputMaybe<Delegator_Distinct_Pool_Bool_Exp>;\n};\n\n\nexport type Subscription_RootDelegator_Distinct_Pool_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Delegator_Distinct_Pool_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Delegator_Distinct_Pool_Order_By>>;\n where?: InputMaybe<Delegator_Distinct_Pool_Bool_Exp>;\n};\n\n\nexport type Subscription_RootDelegator_Distinct_Pool_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Delegator_Distinct_Pool_Stream_Cursor_Input>>;\n where?: InputMaybe<Delegator_Distinct_Pool_Bool_Exp>;\n};\n\n\nexport type Subscription_RootEventsArgs = {\n distinct_on?: InputMaybe<Array<Events_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Events_Order_By>>;\n where?: InputMaybe<Events_Bool_Exp>;\n};\n\n\nexport type Subscription_RootEvents_By_PkArgs = {\n event_index: Scalars['bigint']['input'];\n transaction_version: Scalars['bigint']['input'];\n};\n\n\nexport type Subscription_RootEvents_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Events_Stream_Cursor_Input>>;\n where?: InputMaybe<Events_Bool_Exp>;\n};\n\n\nexport type Subscription_RootFungible_Asset_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Fungible_Asset_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Fungible_Asset_Activities_Order_By>>;\n where?: InputMaybe<Fungible_Asset_Activities_Bool_Exp>;\n};\n\n\nexport type Subscription_RootFungible_Asset_Activities_By_PkArgs = {\n event_index: Scalars['bigint']['input'];\n transaction_version: Scalars['bigint']['input'];\n};\n\n\nexport type Subscription_RootFungible_Asset_Activities_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Fungible_Asset_Activities_Stream_Cursor_Input>>;\n where?: InputMaybe<Fungible_Asset_Activities_Bool_Exp>;\n};\n\n\nexport type Subscription_RootFungible_Asset_MetadataArgs = {\n distinct_on?: InputMaybe<Array<Fungible_Asset_Metadata_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Fungible_Asset_Metadata_Order_By>>;\n where?: InputMaybe<Fungible_Asset_Metadata_Bool_Exp>;\n};\n\n\nexport type Subscription_RootFungible_Asset_Metadata_By_PkArgs = {\n asset_type: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootFungible_Asset_Metadata_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Fungible_Asset_Metadata_Stream_Cursor_Input>>;\n where?: InputMaybe<Fungible_Asset_Metadata_Bool_Exp>;\n};\n\n\nexport type Subscription_RootIndexer_StatusArgs = {\n distinct_on?: InputMaybe<Array<Indexer_Status_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Indexer_Status_Order_By>>;\n where?: InputMaybe<Indexer_Status_Bool_Exp>;\n};\n\n\nexport type Subscription_RootIndexer_Status_By_PkArgs = {\n db: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootIndexer_Status_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Indexer_Status_Stream_Cursor_Input>>;\n where?: InputMaybe<Indexer_Status_Bool_Exp>;\n};\n\n\nexport type Subscription_RootLedger_InfosArgs = {\n distinct_on?: InputMaybe<Array<Ledger_Infos_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Ledger_Infos_Order_By>>;\n where?: InputMaybe<Ledger_Infos_Bool_Exp>;\n};\n\n\nexport type Subscription_RootLedger_Infos_By_PkArgs = {\n chain_id: Scalars['bigint']['input'];\n};\n\n\nexport type Subscription_RootLedger_Infos_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Ledger_Infos_Stream_Cursor_Input>>;\n where?: InputMaybe<Ledger_Infos_Bool_Exp>;\n};\n\n\nexport type Subscription_RootMove_ResourcesArgs = {\n distinct_on?: InputMaybe<Array<Move_Resources_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Move_Resources_Order_By>>;\n where?: InputMaybe<Move_Resources_Bool_Exp>;\n};\n\n\nexport type Subscription_RootMove_Resources_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Move_Resources_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Move_Resources_Order_By>>;\n where?: InputMaybe<Move_Resources_Bool_Exp>;\n};\n\n\nexport type Subscription_RootMove_Resources_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Move_Resources_Stream_Cursor_Input>>;\n where?: InputMaybe<Move_Resources_Bool_Exp>;\n};\n\n\nexport type Subscription_RootNft_Metadata_Crawler_Parsed_Asset_UrisArgs = {\n distinct_on?: InputMaybe<Array<Nft_Metadata_Crawler_Parsed_Asset_Uris_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Nft_Metadata_Crawler_Parsed_Asset_Uris_Order_By>>;\n where?: InputMaybe<Nft_Metadata_Crawler_Parsed_Asset_Uris_Bool_Exp>;\n};\n\n\nexport type Subscription_RootNft_Metadata_Crawler_Parsed_Asset_Uris_By_PkArgs = {\n asset_uri: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootNft_Metadata_Crawler_Parsed_Asset_Uris_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Nft_Metadata_Crawler_Parsed_Asset_Uris_Stream_Cursor_Input>>;\n where?: InputMaybe<Nft_Metadata_Crawler_Parsed_Asset_Uris_Bool_Exp>;\n};\n\n\nexport type Subscription_RootNum_Active_Delegator_Per_PoolArgs = {\n distinct_on?: InputMaybe<Array<Num_Active_Delegator_Per_Pool_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Num_Active_Delegator_Per_Pool_Order_By>>;\n where?: InputMaybe<Num_Active_Delegator_Per_Pool_Bool_Exp>;\n};\n\n\nexport type Subscription_RootNum_Active_Delegator_Per_Pool_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Num_Active_Delegator_Per_Pool_Stream_Cursor_Input>>;\n where?: InputMaybe<Num_Active_Delegator_Per_Pool_Bool_Exp>;\n};\n\n\nexport type Subscription_RootProcessor_StatusArgs = {\n distinct_on?: InputMaybe<Array<Processor_Status_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Processor_Status_Order_By>>;\n where?: InputMaybe<Processor_Status_Bool_Exp>;\n};\n\n\nexport type Subscription_RootProcessor_Status_By_PkArgs = {\n processor: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootProcessor_Status_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Processor_Status_Stream_Cursor_Input>>;\n where?: InputMaybe<Processor_Status_Bool_Exp>;\n};\n\n\nexport type Subscription_RootProposal_VotesArgs = {\n distinct_on?: InputMaybe<Array<Proposal_Votes_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Proposal_Votes_Order_By>>;\n where?: InputMaybe<Proposal_Votes_Bool_Exp>;\n};\n\n\nexport type Subscription_RootProposal_Votes_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Proposal_Votes_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Proposal_Votes_Order_By>>;\n where?: InputMaybe<Proposal_Votes_Bool_Exp>;\n};\n\n\nexport type Subscription_RootProposal_Votes_By_PkArgs = {\n proposal_id: Scalars['bigint']['input'];\n transaction_version: Scalars['bigint']['input'];\n voter_address: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootProposal_Votes_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Proposal_Votes_Stream_Cursor_Input>>;\n where?: InputMaybe<Proposal_Votes_Bool_Exp>;\n};\n\n\nexport type Subscription_RootPublic_Key_Auth_KeysArgs = {\n distinct_on?: InputMaybe<Array<Public_Key_Auth_Keys_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Public_Key_Auth_Keys_Order_By>>;\n where?: InputMaybe<Public_Key_Auth_Keys_Bool_Exp>;\n};\n\n\nexport type Subscription_RootPublic_Key_Auth_Keys_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Public_Key_Auth_Keys_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Public_Key_Auth_Keys_Order_By>>;\n where?: InputMaybe<Public_Key_Auth_Keys_Bool_Exp>;\n};\n\n\nexport type Subscription_RootPublic_Key_Auth_Keys_By_PkArgs = {\n auth_key: Scalars['String']['input'];\n public_key: Scalars['String']['input'];\n public_key_type: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootPublic_Key_Auth_Keys_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Public_Key_Auth_Keys_Stream_Cursor_Input>>;\n where?: InputMaybe<Public_Key_Auth_Keys_Bool_Exp>;\n};\n\n\nexport type Subscription_RootSignaturesArgs = {\n distinct_on?: InputMaybe<Array<Signatures_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Signatures_Order_By>>;\n where?: InputMaybe<Signatures_Bool_Exp>;\n};\n\n\nexport type Subscription_RootSignatures_By_PkArgs = {\n is_sender_primary: Scalars['Boolean']['input'];\n multi_agent_index: Scalars['bigint']['input'];\n multi_sig_index: Scalars['bigint']['input'];\n transaction_version: Scalars['bigint']['input'];\n};\n\n\nexport type Subscription_RootSignatures_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Signatures_Stream_Cursor_Input>>;\n where?: InputMaybe<Signatures_Bool_Exp>;\n};\n\n\nexport type Subscription_RootTable_ItemsArgs = {\n distinct_on?: InputMaybe<Array<Table_Items_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Table_Items_Order_By>>;\n where?: InputMaybe<Table_Items_Bool_Exp>;\n};\n\n\nexport type Subscription_RootTable_Items_By_PkArgs = {\n transaction_version: Scalars['bigint']['input'];\n write_set_change_index: Scalars['bigint']['input'];\n};\n\n\nexport type Subscription_RootTable_Items_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Table_Items_Stream_Cursor_Input>>;\n where?: InputMaybe<Table_Items_Bool_Exp>;\n};\n\n\nexport type Subscription_RootTable_MetadatasArgs = {\n distinct_on?: InputMaybe<Array<Table_Metadatas_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Table_Metadatas_Order_By>>;\n where?: InputMaybe<Table_Metadatas_Bool_Exp>;\n};\n\n\nexport type Subscription_RootTable_Metadatas_By_PkArgs = {\n handle: Scalars['String']['input'];\n};\n\n\nexport type Subscription_RootTable_Metadatas_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Table_Metadatas_Stream_Cursor_Input>>;\n where?: InputMaybe<Table_Metadatas_Bool_Exp>;\n};\n\n\nexport type Subscription_RootToken_ActivitiesArgs = {\n distinct_on?: InputMaybe<Array<Token_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_Order_By>>;\n where?: InputMaybe<Token_Activities_Bool_Exp>;\n};\n\n\nexport type Subscription_RootToken_Activities_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Token_Activities_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_Order_By>>;\n where?: InputMaybe<Token_Activities_Bool_Exp>;\n};\n\n\nexport type Subscription_RootToken_Activities_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Token_Activities_Stream_Cursor_Input>>;\n where?: InputMaybe<Token_Activities_Bool_Exp>;\n};\n\n\nexport type Subscription_RootToken_Activities_V2Args = {\n distinct_on?: InputMaybe<Array<Token_Activities_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_V2_Order_By>>;\n where?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n};\n\n\nexport type Subscription_RootToken_Activities_V2_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Token_Activities_V2_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Activities_V2_Order_By>>;\n where?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n};\n\n\nexport type Subscription_RootToken_Activities_V2_By_PkArgs = {\n event_index: Scalars['bigint']['input'];\n transaction_version: Scalars['bigint']['input'];\n};\n\n\nexport type Subscription_RootToken_Activities_V2_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Token_Activities_V2_Stream_Cursor_Input>>;\n where?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n};\n\n\nexport type Subscription_RootToken_DatasArgs = {\n distinct_on?: InputMaybe<Array<Token_Datas_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Datas_Order_By>>;\n where?: InputMaybe<Token_Datas_Bool_Exp>;\n};\n\n\nexport type Subscription_RootToken_Datas_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Token_Datas_Stream_Cursor_Input>>;\n where?: InputMaybe<Token_Datas_Bool_Exp>;\n};\n\n\nexport type Subscription_RootToken_OwnershipsArgs = {\n distinct_on?: InputMaybe<Array<Token_Ownerships_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Token_Ownerships_Order_By>>;\n where?: InputMaybe<Token_Ownerships_Bool_Exp>;\n};\n\n\nexport type Subscription_RootToken_Ownerships_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Token_Ownerships_Stream_Cursor_Input>>;\n where?: InputMaybe<Token_Ownerships_Bool_Exp>;\n};\n\n\nexport type Subscription_RootTokensArgs = {\n distinct_on?: InputMaybe<Array<Tokens_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Tokens_Order_By>>;\n where?: InputMaybe<Tokens_Bool_Exp>;\n};\n\n\nexport type Subscription_RootTokens_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<Tokens_Stream_Cursor_Input>>;\n where?: InputMaybe<Tokens_Bool_Exp>;\n};\n\n\nexport type Subscription_RootUser_TransactionsArgs = {\n distinct_on?: InputMaybe<Array<User_Transactions_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<User_Transactions_Order_By>>;\n where?: InputMaybe<User_Transactions_Bool_Exp>;\n};\n\n\nexport type Subscription_RootUser_Transactions_By_PkArgs = {\n version: Scalars['bigint']['input'];\n};\n\n\nexport type Subscription_RootUser_Transactions_StreamArgs = {\n batch_size: Scalars['Int']['input'];\n cursor: Array<InputMaybe<User_Transactions_Stream_Cursor_Input>>;\n where?: InputMaybe<User_Transactions_Bool_Exp>;\n};\n\n/** columns and relationships of \"table_items\" */\nexport type Table_Items = {\n __typename?: 'table_items';\n decoded_key: Scalars['jsonb']['output'];\n decoded_value?: Maybe<Scalars['jsonb']['output']>;\n key: Scalars['String']['output'];\n table_handle: Scalars['String']['output'];\n transaction_version: Scalars['bigint']['output'];\n write_set_change_index: Scalars['bigint']['output'];\n};\n\n\n/** columns and relationships of \"table_items\" */\nexport type Table_ItemsDecoded_KeyArgs = {\n path?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** columns and relationships of \"table_items\" */\nexport type Table_ItemsDecoded_ValueArgs = {\n path?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Boolean expression to filter rows from the table \"table_items\". All fields are combined with a logical 'AND'. */\nexport type Table_Items_Bool_Exp = {\n _and?: InputMaybe<Array<Table_Items_Bool_Exp>>;\n _not?: InputMaybe<Table_Items_Bool_Exp>;\n _or?: InputMaybe<Array<Table_Items_Bool_Exp>>;\n decoded_key?: InputMaybe<Jsonb_Comparison_Exp>;\n decoded_value?: InputMaybe<Jsonb_Comparison_Exp>;\n key?: InputMaybe<String_Comparison_Exp>;\n table_handle?: InputMaybe<String_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n write_set_change_index?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"table_items\". */\nexport type Table_Items_Order_By = {\n decoded_key?: InputMaybe<Order_By>;\n decoded_value?: InputMaybe<Order_By>;\n key?: InputMaybe<Order_By>;\n table_handle?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n write_set_change_index?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"table_items\" */\nexport enum Table_Items_Select_Column {\n /** column name */\n DecodedKey = 'decoded_key',\n /** column name */\n DecodedValue = 'decoded_value',\n /** column name */\n Key = 'key',\n /** column name */\n TableHandle = 'table_handle',\n /** column name */\n TransactionVersion = 'transaction_version',\n /** column name */\n WriteSetChangeIndex = 'write_set_change_index'\n}\n\n/** Streaming cursor of the table \"table_items\" */\nexport type Table_Items_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Table_Items_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Table_Items_Stream_Cursor_Value_Input = {\n decoded_key?: InputMaybe<Scalars['jsonb']['input']>;\n decoded_value?: InputMaybe<Scalars['jsonb']['input']>;\n key?: InputMaybe<Scalars['String']['input']>;\n table_handle?: InputMaybe<Scalars['String']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n write_set_change_index?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** columns and relationships of \"table_metadatas\" */\nexport type Table_Metadatas = {\n __typename?: 'table_metadatas';\n handle: Scalars['String']['output'];\n key_type: Scalars['String']['output'];\n value_type: Scalars['String']['output'];\n};\n\n/** Boolean expression to filter rows from the table \"table_metadatas\". All fields are combined with a logical 'AND'. */\nexport type Table_Metadatas_Bool_Exp = {\n _and?: InputMaybe<Array<Table_Metadatas_Bool_Exp>>;\n _not?: InputMaybe<Table_Metadatas_Bool_Exp>;\n _or?: InputMaybe<Array<Table_Metadatas_Bool_Exp>>;\n handle?: InputMaybe<String_Comparison_Exp>;\n key_type?: InputMaybe<String_Comparison_Exp>;\n value_type?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"table_metadatas\". */\nexport type Table_Metadatas_Order_By = {\n handle?: InputMaybe<Order_By>;\n key_type?: InputMaybe<Order_By>;\n value_type?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"table_metadatas\" */\nexport enum Table_Metadatas_Select_Column {\n /** column name */\n Handle = 'handle',\n /** column name */\n KeyType = 'key_type',\n /** column name */\n ValueType = 'value_type'\n}\n\n/** Streaming cursor of the table \"table_metadatas\" */\nexport type Table_Metadatas_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Table_Metadatas_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Table_Metadatas_Stream_Cursor_Value_Input = {\n handle?: InputMaybe<Scalars['String']['input']>;\n key_type?: InputMaybe<Scalars['String']['input']>;\n value_type?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Boolean expression to compare columns of type \"timestamp\". All fields are combined with logical 'AND'. */\nexport type Timestamp_Comparison_Exp = {\n _eq?: InputMaybe<Scalars['timestamp']['input']>;\n _gt?: InputMaybe<Scalars['timestamp']['input']>;\n _gte?: InputMaybe<Scalars['timestamp']['input']>;\n _in?: InputMaybe<Array<Scalars['timestamp']['input']>>;\n _is_null?: InputMaybe<Scalars['Boolean']['input']>;\n _lt?: InputMaybe<Scalars['timestamp']['input']>;\n _lte?: InputMaybe<Scalars['timestamp']['input']>;\n _neq?: InputMaybe<Scalars['timestamp']['input']>;\n _nin?: InputMaybe<Array<Scalars['timestamp']['input']>>;\n};\n\n/** columns and relationships of \"legacy_migration_v1.token_activities\" */\nexport type Token_Activities = {\n __typename?: 'token_activities';\n /** An array relationship */\n aptos_names_owner: Array<Current_Aptos_Names>;\n /** An aggregate relationship */\n aptos_names_owner_aggregate: Current_Aptos_Names_Aggregate;\n /** An array relationship */\n aptos_names_to: Array<Current_Aptos_Names>;\n /** An aggregate relationship */\n aptos_names_to_aggregate: Current_Aptos_Names_Aggregate;\n coin_amount?: Maybe<Scalars['String']['output']>;\n coin_type?: Maybe<Scalars['String']['output']>;\n collection_data_id_hash?: Maybe<Scalars['String']['output']>;\n collection_name?: Maybe<Scalars['String']['output']>;\n creator_address?: Maybe<Scalars['String']['output']>;\n /** An object relationship */\n current_token_data?: Maybe<Current_Token_Datas>;\n event_account_address?: Maybe<Scalars['String']['output']>;\n event_creation_number?: Maybe<Scalars['Int']['output']>;\n event_index?: Maybe<Scalars['bigint']['output']>;\n event_sequence_number?: Maybe<Scalars['Int']['output']>;\n from_address?: Maybe<Scalars['String']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n property_version?: Maybe<Scalars['numeric']['output']>;\n to_address?: Maybe<Scalars['String']['output']>;\n token_amount?: Maybe<Scalars['numeric']['output']>;\n token_data_id_hash?: Maybe<Scalars['String']['output']>;\n transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n transfer_type?: Maybe<Scalars['String']['output']>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.token_activities\" */\nexport type Token_ActivitiesAptos_Names_OwnerArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.token_activities\" */\nexport type Token_ActivitiesAptos_Names_Owner_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.token_activities\" */\nexport type Token_ActivitiesAptos_Names_ToArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.token_activities\" */\nexport type Token_ActivitiesAptos_Names_To_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n/** aggregated selection of \"legacy_migration_v1.token_activities\" */\nexport type Token_Activities_Aggregate = {\n __typename?: 'token_activities_aggregate';\n aggregate?: Maybe<Token_Activities_Aggregate_Fields>;\n nodes: Array<Token_Activities>;\n};\n\nexport type Token_Activities_Aggregate_Bool_Exp = {\n count?: InputMaybe<Token_Activities_Aggregate_Bool_Exp_Count>;\n};\n\nexport type Token_Activities_Aggregate_Bool_Exp_Count = {\n arguments?: InputMaybe<Array<Token_Activities_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n filter?: InputMaybe<Token_Activities_Bool_Exp>;\n predicate: Int_Comparison_Exp;\n};\n\n/** aggregate fields of \"legacy_migration_v1.token_activities\" */\nexport type Token_Activities_Aggregate_Fields = {\n __typename?: 'token_activities_aggregate_fields';\n avg?: Maybe<Token_Activities_Avg_Fields>;\n count: Scalars['Int']['output'];\n max?: Maybe<Token_Activities_Max_Fields>;\n min?: Maybe<Token_Activities_Min_Fields>;\n stddev?: Maybe<Token_Activities_Stddev_Fields>;\n stddev_pop?: Maybe<Token_Activities_Stddev_Pop_Fields>;\n stddev_samp?: Maybe<Token_Activities_Stddev_Samp_Fields>;\n sum?: Maybe<Token_Activities_Sum_Fields>;\n var_pop?: Maybe<Token_Activities_Var_Pop_Fields>;\n var_samp?: Maybe<Token_Activities_Var_Samp_Fields>;\n variance?: Maybe<Token_Activities_Variance_Fields>;\n};\n\n\n/** aggregate fields of \"legacy_migration_v1.token_activities\" */\nexport type Token_Activities_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Token_Activities_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** order by aggregate values of table \"legacy_migration_v1.token_activities\" */\nexport type Token_Activities_Aggregate_Order_By = {\n avg?: InputMaybe<Token_Activities_Avg_Order_By>;\n count?: InputMaybe<Order_By>;\n max?: InputMaybe<Token_Activities_Max_Order_By>;\n min?: InputMaybe<Token_Activities_Min_Order_By>;\n stddev?: InputMaybe<Token_Activities_Stddev_Order_By>;\n stddev_pop?: InputMaybe<Token_Activities_Stddev_Pop_Order_By>;\n stddev_samp?: InputMaybe<Token_Activities_Stddev_Samp_Order_By>;\n sum?: InputMaybe<Token_Activities_Sum_Order_By>;\n var_pop?: InputMaybe<Token_Activities_Var_Pop_Order_By>;\n var_samp?: InputMaybe<Token_Activities_Var_Samp_Order_By>;\n variance?: InputMaybe<Token_Activities_Variance_Order_By>;\n};\n\n/** aggregate avg on columns */\nexport type Token_Activities_Avg_Fields = {\n __typename?: 'token_activities_avg_fields';\n event_creation_number?: Maybe<Scalars['Float']['output']>;\n event_index?: Maybe<Scalars['Float']['output']>;\n event_sequence_number?: Maybe<Scalars['Float']['output']>;\n property_version?: Maybe<Scalars['Float']['output']>;\n token_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by avg() on columns of table \"legacy_migration_v1.token_activities\" */\nexport type Token_Activities_Avg_Order_By = {\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** Boolean expression to filter rows from the table \"legacy_migration_v1.token_activities\". All fields are combined with a logical 'AND'. */\nexport type Token_Activities_Bool_Exp = {\n _and?: InputMaybe<Array<Token_Activities_Bool_Exp>>;\n _not?: InputMaybe<Token_Activities_Bool_Exp>;\n _or?: InputMaybe<Array<Token_Activities_Bool_Exp>>;\n aptos_names_owner?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n aptos_names_owner_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Bool_Exp>;\n aptos_names_to?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n aptos_names_to_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Bool_Exp>;\n coin_amount?: InputMaybe<String_Comparison_Exp>;\n coin_type?: InputMaybe<String_Comparison_Exp>;\n collection_data_id_hash?: InputMaybe<String_Comparison_Exp>;\n collection_name?: InputMaybe<String_Comparison_Exp>;\n creator_address?: InputMaybe<String_Comparison_Exp>;\n current_token_data?: InputMaybe<Current_Token_Datas_Bool_Exp>;\n event_account_address?: InputMaybe<String_Comparison_Exp>;\n event_creation_number?: InputMaybe<Int_Comparison_Exp>;\n event_index?: InputMaybe<Bigint_Comparison_Exp>;\n event_sequence_number?: InputMaybe<Int_Comparison_Exp>;\n from_address?: InputMaybe<String_Comparison_Exp>;\n name?: InputMaybe<String_Comparison_Exp>;\n property_version?: InputMaybe<Numeric_Comparison_Exp>;\n to_address?: InputMaybe<String_Comparison_Exp>;\n token_amount?: InputMaybe<Numeric_Comparison_Exp>;\n token_data_id_hash?: InputMaybe<String_Comparison_Exp>;\n transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n transfer_type?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Token_Activities_Max_Fields = {\n __typename?: 'token_activities_max_fields';\n coin_amount?: Maybe<Scalars['String']['output']>;\n coin_type?: Maybe<Scalars['String']['output']>;\n collection_data_id_hash?: Maybe<Scalars['String']['output']>;\n collection_name?: Maybe<Scalars['String']['output']>;\n creator_address?: Maybe<Scalars['String']['output']>;\n event_account_address?: Maybe<Scalars['String']['output']>;\n event_creation_number?: Maybe<Scalars['Int']['output']>;\n event_index?: Maybe<Scalars['bigint']['output']>;\n event_sequence_number?: Maybe<Scalars['Int']['output']>;\n from_address?: Maybe<Scalars['String']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n property_version?: Maybe<Scalars['numeric']['output']>;\n to_address?: Maybe<Scalars['String']['output']>;\n token_amount?: Maybe<Scalars['numeric']['output']>;\n token_data_id_hash?: Maybe<Scalars['String']['output']>;\n transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n transfer_type?: Maybe<Scalars['String']['output']>;\n};\n\n/** order by max() on columns of table \"legacy_migration_v1.token_activities\" */\nexport type Token_Activities_Max_Order_By = {\n coin_amount?: InputMaybe<Order_By>;\n coin_type?: InputMaybe<Order_By>;\n collection_data_id_hash?: InputMaybe<Order_By>;\n collection_name?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n event_account_address?: InputMaybe<Order_By>;\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n from_address?: InputMaybe<Order_By>;\n name?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n to_address?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n token_data_id_hash?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n transfer_type?: InputMaybe<Order_By>;\n};\n\n/** aggregate min on columns */\nexport type Token_Activities_Min_Fields = {\n __typename?: 'token_activities_min_fields';\n coin_amount?: Maybe<Scalars['String']['output']>;\n coin_type?: Maybe<Scalars['String']['output']>;\n collection_data_id_hash?: Maybe<Scalars['String']['output']>;\n collection_name?: Maybe<Scalars['String']['output']>;\n creator_address?: Maybe<Scalars['String']['output']>;\n event_account_address?: Maybe<Scalars['String']['output']>;\n event_creation_number?: Maybe<Scalars['Int']['output']>;\n event_index?: Maybe<Scalars['bigint']['output']>;\n event_sequence_number?: Maybe<Scalars['Int']['output']>;\n from_address?: Maybe<Scalars['String']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n property_version?: Maybe<Scalars['numeric']['output']>;\n to_address?: Maybe<Scalars['String']['output']>;\n token_amount?: Maybe<Scalars['numeric']['output']>;\n token_data_id_hash?: Maybe<Scalars['String']['output']>;\n transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n transfer_type?: Maybe<Scalars['String']['output']>;\n};\n\n/** order by min() on columns of table \"legacy_migration_v1.token_activities\" */\nexport type Token_Activities_Min_Order_By = {\n coin_amount?: InputMaybe<Order_By>;\n coin_type?: InputMaybe<Order_By>;\n collection_data_id_hash?: InputMaybe<Order_By>;\n collection_name?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n event_account_address?: InputMaybe<Order_By>;\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n from_address?: InputMaybe<Order_By>;\n name?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n to_address?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n token_data_id_hash?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n transfer_type?: InputMaybe<Order_By>;\n};\n\n/** Ordering options when selecting data from \"legacy_migration_v1.token_activities\". */\nexport type Token_Activities_Order_By = {\n aptos_names_owner_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Order_By>;\n aptos_names_to_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Order_By>;\n coin_amount?: InputMaybe<Order_By>;\n coin_type?: InputMaybe<Order_By>;\n collection_data_id_hash?: InputMaybe<Order_By>;\n collection_name?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n current_token_data?: InputMaybe<Current_Token_Datas_Order_By>;\n event_account_address?: InputMaybe<Order_By>;\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n from_address?: InputMaybe<Order_By>;\n name?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n to_address?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n token_data_id_hash?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n transfer_type?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"legacy_migration_v1.token_activities\" */\nexport enum Token_Activities_Select_Column {\n /** column name */\n CoinAmount = 'coin_amount',\n /** column name */\n CoinType = 'coin_type',\n /** column name */\n CollectionDataIdHash = 'collection_data_id_hash',\n /** column name */\n CollectionName = 'collection_name',\n /** column name */\n CreatorAddress = 'creator_address',\n /** column name */\n EventAccountAddress = 'event_account_address',\n /** column name */\n EventCreationNumber = 'event_creation_number',\n /** column name */\n EventIndex = 'event_index',\n /** column name */\n EventSequenceNumber = 'event_sequence_number',\n /** column name */\n FromAddress = 'from_address',\n /** column name */\n Name = 'name',\n /** column name */\n PropertyVersion = 'property_version',\n /** column name */\n ToAddress = 'to_address',\n /** column name */\n TokenAmount = 'token_amount',\n /** column name */\n TokenDataIdHash = 'token_data_id_hash',\n /** column name */\n TransactionTimestamp = 'transaction_timestamp',\n /** column name */\n TransactionVersion = 'transaction_version',\n /** column name */\n TransferType = 'transfer_type'\n}\n\n/** aggregate stddev on columns */\nexport type Token_Activities_Stddev_Fields = {\n __typename?: 'token_activities_stddev_fields';\n event_creation_number?: Maybe<Scalars['Float']['output']>;\n event_index?: Maybe<Scalars['Float']['output']>;\n event_sequence_number?: Maybe<Scalars['Float']['output']>;\n property_version?: Maybe<Scalars['Float']['output']>;\n token_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev() on columns of table \"legacy_migration_v1.token_activities\" */\nexport type Token_Activities_Stddev_Order_By = {\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate stddev_pop on columns */\nexport type Token_Activities_Stddev_Pop_Fields = {\n __typename?: 'token_activities_stddev_pop_fields';\n event_creation_number?: Maybe<Scalars['Float']['output']>;\n event_index?: Maybe<Scalars['Float']['output']>;\n event_sequence_number?: Maybe<Scalars['Float']['output']>;\n property_version?: Maybe<Scalars['Float']['output']>;\n token_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev_pop() on columns of table \"legacy_migration_v1.token_activities\" */\nexport type Token_Activities_Stddev_Pop_Order_By = {\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate stddev_samp on columns */\nexport type Token_Activities_Stddev_Samp_Fields = {\n __typename?: 'token_activities_stddev_samp_fields';\n event_creation_number?: Maybe<Scalars['Float']['output']>;\n event_index?: Maybe<Scalars['Float']['output']>;\n event_sequence_number?: Maybe<Scalars['Float']['output']>;\n property_version?: Maybe<Scalars['Float']['output']>;\n token_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev_samp() on columns of table \"legacy_migration_v1.token_activities\" */\nexport type Token_Activities_Stddev_Samp_Order_By = {\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** Streaming cursor of the table \"token_activities\" */\nexport type Token_Activities_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Token_Activities_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Token_Activities_Stream_Cursor_Value_Input = {\n coin_amount?: InputMaybe<Scalars['String']['input']>;\n coin_type?: InputMaybe<Scalars['String']['input']>;\n collection_data_id_hash?: InputMaybe<Scalars['String']['input']>;\n collection_name?: InputMaybe<Scalars['String']['input']>;\n creator_address?: InputMaybe<Scalars['String']['input']>;\n event_account_address?: InputMaybe<Scalars['String']['input']>;\n event_creation_number?: InputMaybe<Scalars['Int']['input']>;\n event_index?: InputMaybe<Scalars['bigint']['input']>;\n event_sequence_number?: InputMaybe<Scalars['Int']['input']>;\n from_address?: InputMaybe<Scalars['String']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n property_version?: InputMaybe<Scalars['numeric']['input']>;\n to_address?: InputMaybe<Scalars['String']['input']>;\n token_amount?: InputMaybe<Scalars['numeric']['input']>;\n token_data_id_hash?: InputMaybe<Scalars['String']['input']>;\n transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n transfer_type?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** aggregate sum on columns */\nexport type Token_Activities_Sum_Fields = {\n __typename?: 'token_activities_sum_fields';\n event_creation_number?: Maybe<Scalars['Int']['output']>;\n event_index?: Maybe<Scalars['bigint']['output']>;\n event_sequence_number?: Maybe<Scalars['Int']['output']>;\n property_version?: Maybe<Scalars['numeric']['output']>;\n token_amount?: Maybe<Scalars['numeric']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** order by sum() on columns of table \"legacy_migration_v1.token_activities\" */\nexport type Token_Activities_Sum_Order_By = {\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** columns and relationships of \"token_activities_v2\" */\nexport type Token_Activities_V2 = {\n __typename?: 'token_activities_v2';\n after_value?: Maybe<Scalars['String']['output']>;\n /** An array relationship */\n aptos_names_from: Array<Current_Aptos_Names>;\n /** An aggregate relationship */\n aptos_names_from_aggregate: Current_Aptos_Names_Aggregate;\n /** An array relationship */\n aptos_names_to: Array<Current_Aptos_Names>;\n /** An aggregate relationship */\n aptos_names_to_aggregate: Current_Aptos_Names_Aggregate;\n before_value?: Maybe<Scalars['String']['output']>;\n /** An object relationship */\n current_token_data?: Maybe<Current_Token_Datas_V2>;\n entry_function_id_str?: Maybe<Scalars['String']['output']>;\n event_account_address: Scalars['String']['output'];\n event_index: Scalars['bigint']['output'];\n from_address?: Maybe<Scalars['String']['output']>;\n is_fungible_v2?: Maybe<Scalars['Boolean']['output']>;\n property_version_v1: Scalars['numeric']['output'];\n to_address?: Maybe<Scalars['String']['output']>;\n token_amount: Scalars['numeric']['output'];\n token_data_id: Scalars['String']['output'];\n token_standard: Scalars['String']['output'];\n transaction_timestamp: Scalars['timestamp']['output'];\n transaction_version: Scalars['bigint']['output'];\n type: Scalars['String']['output'];\n};\n\n\n/** columns and relationships of \"token_activities_v2\" */\nexport type Token_Activities_V2Aptos_Names_FromArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"token_activities_v2\" */\nexport type Token_Activities_V2Aptos_Names_From_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"token_activities_v2\" */\nexport type Token_Activities_V2Aptos_Names_ToArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n\n/** columns and relationships of \"token_activities_v2\" */\nexport type Token_Activities_V2Aptos_Names_To_AggregateArgs = {\n distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;\n where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n};\n\n/** aggregated selection of \"token_activities_v2\" */\nexport type Token_Activities_V2_Aggregate = {\n __typename?: 'token_activities_v2_aggregate';\n aggregate?: Maybe<Token_Activities_V2_Aggregate_Fields>;\n nodes: Array<Token_Activities_V2>;\n};\n\nexport type Token_Activities_V2_Aggregate_Bool_Exp = {\n bool_and?: InputMaybe<Token_Activities_V2_Aggregate_Bool_Exp_Bool_And>;\n bool_or?: InputMaybe<Token_Activities_V2_Aggregate_Bool_Exp_Bool_Or>;\n count?: InputMaybe<Token_Activities_V2_Aggregate_Bool_Exp_Count>;\n};\n\nexport type Token_Activities_V2_Aggregate_Bool_Exp_Bool_And = {\n arguments: Token_Activities_V2_Select_Column_Token_Activities_V2_Aggregate_Bool_Exp_Bool_And_Arguments_Columns;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n filter?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n predicate: Boolean_Comparison_Exp;\n};\n\nexport type Token_Activities_V2_Aggregate_Bool_Exp_Bool_Or = {\n arguments: Token_Activities_V2_Select_Column_Token_Activities_V2_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n filter?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n predicate: Boolean_Comparison_Exp;\n};\n\nexport type Token_Activities_V2_Aggregate_Bool_Exp_Count = {\n arguments?: InputMaybe<Array<Token_Activities_V2_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n filter?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n predicate: Int_Comparison_Exp;\n};\n\n/** aggregate fields of \"token_activities_v2\" */\nexport type Token_Activities_V2_Aggregate_Fields = {\n __typename?: 'token_activities_v2_aggregate_fields';\n avg?: Maybe<Token_Activities_V2_Avg_Fields>;\n count: Scalars['Int']['output'];\n max?: Maybe<Token_Activities_V2_Max_Fields>;\n min?: Maybe<Token_Activities_V2_Min_Fields>;\n stddev?: Maybe<Token_Activities_V2_Stddev_Fields>;\n stddev_pop?: Maybe<Token_Activities_V2_Stddev_Pop_Fields>;\n stddev_samp?: Maybe<Token_Activities_V2_Stddev_Samp_Fields>;\n sum?: Maybe<Token_Activities_V2_Sum_Fields>;\n var_pop?: Maybe<Token_Activities_V2_Var_Pop_Fields>;\n var_samp?: Maybe<Token_Activities_V2_Var_Samp_Fields>;\n variance?: Maybe<Token_Activities_V2_Variance_Fields>;\n};\n\n\n/** aggregate fields of \"token_activities_v2\" */\nexport type Token_Activities_V2_Aggregate_FieldsCountArgs = {\n columns?: InputMaybe<Array<Token_Activities_V2_Select_Column>>;\n distinct?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** order by aggregate values of table \"token_activities_v2\" */\nexport type Token_Activities_V2_Aggregate_Order_By = {\n avg?: InputMaybe<Token_Activities_V2_Avg_Order_By>;\n count?: InputMaybe<Order_By>;\n max?: InputMaybe<Token_Activities_V2_Max_Order_By>;\n min?: InputMaybe<Token_Activities_V2_Min_Order_By>;\n stddev?: InputMaybe<Token_Activities_V2_Stddev_Order_By>;\n stddev_pop?: InputMaybe<Token_Activities_V2_Stddev_Pop_Order_By>;\n stddev_samp?: InputMaybe<Token_Activities_V2_Stddev_Samp_Order_By>;\n sum?: InputMaybe<Token_Activities_V2_Sum_Order_By>;\n var_pop?: InputMaybe<Token_Activities_V2_Var_Pop_Order_By>;\n var_samp?: InputMaybe<Token_Activities_V2_Var_Samp_Order_By>;\n variance?: InputMaybe<Token_Activities_V2_Variance_Order_By>;\n};\n\n/** aggregate avg on columns */\nexport type Token_Activities_V2_Avg_Fields = {\n __typename?: 'token_activities_v2_avg_fields';\n event_index?: Maybe<Scalars['Float']['output']>;\n property_version_v1?: Maybe<Scalars['Float']['output']>;\n token_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by avg() on columns of table \"token_activities_v2\" */\nexport type Token_Activities_V2_Avg_Order_By = {\n event_index?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** Boolean expression to filter rows from the table \"token_activities_v2\". All fields are combined with a logical 'AND'. */\nexport type Token_Activities_V2_Bool_Exp = {\n _and?: InputMaybe<Array<Token_Activities_V2_Bool_Exp>>;\n _not?: InputMaybe<Token_Activities_V2_Bool_Exp>;\n _or?: InputMaybe<Array<Token_Activities_V2_Bool_Exp>>;\n after_value?: InputMaybe<String_Comparison_Exp>;\n aptos_names_from?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n aptos_names_from_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Bool_Exp>;\n aptos_names_to?: InputMaybe<Current_Aptos_Names_Bool_Exp>;\n aptos_names_to_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Bool_Exp>;\n before_value?: InputMaybe<String_Comparison_Exp>;\n current_token_data?: InputMaybe<Current_Token_Datas_V2_Bool_Exp>;\n entry_function_id_str?: InputMaybe<String_Comparison_Exp>;\n event_account_address?: InputMaybe<String_Comparison_Exp>;\n event_index?: InputMaybe<Bigint_Comparison_Exp>;\n from_address?: InputMaybe<String_Comparison_Exp>;\n is_fungible_v2?: InputMaybe<Boolean_Comparison_Exp>;\n property_version_v1?: InputMaybe<Numeric_Comparison_Exp>;\n to_address?: InputMaybe<String_Comparison_Exp>;\n token_amount?: InputMaybe<Numeric_Comparison_Exp>;\n token_data_id?: InputMaybe<String_Comparison_Exp>;\n token_standard?: InputMaybe<String_Comparison_Exp>;\n transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n type?: InputMaybe<String_Comparison_Exp>;\n};\n\n/** aggregate max on columns */\nexport type Token_Activities_V2_Max_Fields = {\n __typename?: 'token_activities_v2_max_fields';\n after_value?: Maybe<Scalars['String']['output']>;\n before_value?: Maybe<Scalars['String']['output']>;\n entry_function_id_str?: Maybe<Scalars['String']['output']>;\n event_account_address?: Maybe<Scalars['String']['output']>;\n event_index?: Maybe<Scalars['bigint']['output']>;\n from_address?: Maybe<Scalars['String']['output']>;\n property_version_v1?: Maybe<Scalars['numeric']['output']>;\n to_address?: Maybe<Scalars['String']['output']>;\n token_amount?: Maybe<Scalars['numeric']['output']>;\n token_data_id?: Maybe<Scalars['String']['output']>;\n token_standard?: Maybe<Scalars['String']['output']>;\n transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n type?: Maybe<Scalars['String']['output']>;\n};\n\n/** order by max() on columns of table \"token_activities_v2\" */\nexport type Token_Activities_V2_Max_Order_By = {\n after_value?: InputMaybe<Order_By>;\n before_value?: InputMaybe<Order_By>;\n entry_function_id_str?: InputMaybe<Order_By>;\n event_account_address?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n from_address?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n to_address?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n token_data_id?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n type?: InputMaybe<Order_By>;\n};\n\n/** aggregate min on columns */\nexport type Token_Activities_V2_Min_Fields = {\n __typename?: 'token_activities_v2_min_fields';\n after_value?: Maybe<Scalars['String']['output']>;\n before_value?: Maybe<Scalars['String']['output']>;\n entry_function_id_str?: Maybe<Scalars['String']['output']>;\n event_account_address?: Maybe<Scalars['String']['output']>;\n event_index?: Maybe<Scalars['bigint']['output']>;\n from_address?: Maybe<Scalars['String']['output']>;\n property_version_v1?: Maybe<Scalars['numeric']['output']>;\n to_address?: Maybe<Scalars['String']['output']>;\n token_amount?: Maybe<Scalars['numeric']['output']>;\n token_data_id?: Maybe<Scalars['String']['output']>;\n token_standard?: Maybe<Scalars['String']['output']>;\n transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n type?: Maybe<Scalars['String']['output']>;\n};\n\n/** order by min() on columns of table \"token_activities_v2\" */\nexport type Token_Activities_V2_Min_Order_By = {\n after_value?: InputMaybe<Order_By>;\n before_value?: InputMaybe<Order_By>;\n entry_function_id_str?: InputMaybe<Order_By>;\n event_account_address?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n from_address?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n to_address?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n token_data_id?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n type?: InputMaybe<Order_By>;\n};\n\n/** Ordering options when selecting data from \"token_activities_v2\". */\nexport type Token_Activities_V2_Order_By = {\n after_value?: InputMaybe<Order_By>;\n aptos_names_from_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Order_By>;\n aptos_names_to_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Order_By>;\n before_value?: InputMaybe<Order_By>;\n current_token_data?: InputMaybe<Current_Token_Datas_V2_Order_By>;\n entry_function_id_str?: InputMaybe<Order_By>;\n event_account_address?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n from_address?: InputMaybe<Order_By>;\n is_fungible_v2?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n to_address?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n token_data_id?: InputMaybe<Order_By>;\n token_standard?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n type?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"token_activities_v2\" */\nexport enum Token_Activities_V2_Select_Column {\n /** column name */\n AfterValue = 'after_value',\n /** column name */\n BeforeValue = 'before_value',\n /** column name */\n EntryFunctionIdStr = 'entry_function_id_str',\n /** column name */\n EventAccountAddress = 'event_account_address',\n /** column name */\n EventIndex = 'event_index',\n /** column name */\n FromAddress = 'from_address',\n /** column name */\n IsFungibleV2 = 'is_fungible_v2',\n /** column name */\n PropertyVersionV1 = 'property_version_v1',\n /** column name */\n ToAddress = 'to_address',\n /** column name */\n TokenAmount = 'token_amount',\n /** column name */\n TokenDataId = 'token_data_id',\n /** column name */\n TokenStandard = 'token_standard',\n /** column name */\n TransactionTimestamp = 'transaction_timestamp',\n /** column name */\n TransactionVersion = 'transaction_version',\n /** column name */\n Type = 'type'\n}\n\n/** select \"token_activities_v2_aggregate_bool_exp_bool_and_arguments_columns\" columns of table \"token_activities_v2\" */\nexport enum Token_Activities_V2_Select_Column_Token_Activities_V2_Aggregate_Bool_Exp_Bool_And_Arguments_Columns {\n /** column name */\n IsFungibleV2 = 'is_fungible_v2'\n}\n\n/** select \"token_activities_v2_aggregate_bool_exp_bool_or_arguments_columns\" columns of table \"token_activities_v2\" */\nexport enum Token_Activities_V2_Select_Column_Token_Activities_V2_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns {\n /** column name */\n IsFungibleV2 = 'is_fungible_v2'\n}\n\n/** aggregate stddev on columns */\nexport type Token_Activities_V2_Stddev_Fields = {\n __typename?: 'token_activities_v2_stddev_fields';\n event_index?: Maybe<Scalars['Float']['output']>;\n property_version_v1?: Maybe<Scalars['Float']['output']>;\n token_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev() on columns of table \"token_activities_v2\" */\nexport type Token_Activities_V2_Stddev_Order_By = {\n event_index?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate stddev_pop on columns */\nexport type Token_Activities_V2_Stddev_Pop_Fields = {\n __typename?: 'token_activities_v2_stddev_pop_fields';\n event_index?: Maybe<Scalars['Float']['output']>;\n property_version_v1?: Maybe<Scalars['Float']['output']>;\n token_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev_pop() on columns of table \"token_activities_v2\" */\nexport type Token_Activities_V2_Stddev_Pop_Order_By = {\n event_index?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate stddev_samp on columns */\nexport type Token_Activities_V2_Stddev_Samp_Fields = {\n __typename?: 'token_activities_v2_stddev_samp_fields';\n event_index?: Maybe<Scalars['Float']['output']>;\n property_version_v1?: Maybe<Scalars['Float']['output']>;\n token_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by stddev_samp() on columns of table \"token_activities_v2\" */\nexport type Token_Activities_V2_Stddev_Samp_Order_By = {\n event_index?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** Streaming cursor of the table \"token_activities_v2\" */\nexport type Token_Activities_V2_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Token_Activities_V2_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Token_Activities_V2_Stream_Cursor_Value_Input = {\n after_value?: InputMaybe<Scalars['String']['input']>;\n before_value?: InputMaybe<Scalars['String']['input']>;\n entry_function_id_str?: InputMaybe<Scalars['String']['input']>;\n event_account_address?: InputMaybe<Scalars['String']['input']>;\n event_index?: InputMaybe<Scalars['bigint']['input']>;\n from_address?: InputMaybe<Scalars['String']['input']>;\n is_fungible_v2?: InputMaybe<Scalars['Boolean']['input']>;\n property_version_v1?: InputMaybe<Scalars['numeric']['input']>;\n to_address?: InputMaybe<Scalars['String']['input']>;\n token_amount?: InputMaybe<Scalars['numeric']['input']>;\n token_data_id?: InputMaybe<Scalars['String']['input']>;\n token_standard?: InputMaybe<Scalars['String']['input']>;\n transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** aggregate sum on columns */\nexport type Token_Activities_V2_Sum_Fields = {\n __typename?: 'token_activities_v2_sum_fields';\n event_index?: Maybe<Scalars['bigint']['output']>;\n property_version_v1?: Maybe<Scalars['numeric']['output']>;\n token_amount?: Maybe<Scalars['numeric']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** order by sum() on columns of table \"token_activities_v2\" */\nexport type Token_Activities_V2_Sum_Order_By = {\n event_index?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate var_pop on columns */\nexport type Token_Activities_V2_Var_Pop_Fields = {\n __typename?: 'token_activities_v2_var_pop_fields';\n event_index?: Maybe<Scalars['Float']['output']>;\n property_version_v1?: Maybe<Scalars['Float']['output']>;\n token_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by var_pop() on columns of table \"token_activities_v2\" */\nexport type Token_Activities_V2_Var_Pop_Order_By = {\n event_index?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate var_samp on columns */\nexport type Token_Activities_V2_Var_Samp_Fields = {\n __typename?: 'token_activities_v2_var_samp_fields';\n event_index?: Maybe<Scalars['Float']['output']>;\n property_version_v1?: Maybe<Scalars['Float']['output']>;\n token_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by var_samp() on columns of table \"token_activities_v2\" */\nexport type Token_Activities_V2_Var_Samp_Order_By = {\n event_index?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate variance on columns */\nexport type Token_Activities_V2_Variance_Fields = {\n __typename?: 'token_activities_v2_variance_fields';\n event_index?: Maybe<Scalars['Float']['output']>;\n property_version_v1?: Maybe<Scalars['Float']['output']>;\n token_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by variance() on columns of table \"token_activities_v2\" */\nexport type Token_Activities_V2_Variance_Order_By = {\n event_index?: InputMaybe<Order_By>;\n property_version_v1?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate var_pop on columns */\nexport type Token_Activities_Var_Pop_Fields = {\n __typename?: 'token_activities_var_pop_fields';\n event_creation_number?: Maybe<Scalars['Float']['output']>;\n event_index?: Maybe<Scalars['Float']['output']>;\n event_sequence_number?: Maybe<Scalars['Float']['output']>;\n property_version?: Maybe<Scalars['Float']['output']>;\n token_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by var_pop() on columns of table \"legacy_migration_v1.token_activities\" */\nexport type Token_Activities_Var_Pop_Order_By = {\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate var_samp on columns */\nexport type Token_Activities_Var_Samp_Fields = {\n __typename?: 'token_activities_var_samp_fields';\n event_creation_number?: Maybe<Scalars['Float']['output']>;\n event_index?: Maybe<Scalars['Float']['output']>;\n event_sequence_number?: Maybe<Scalars['Float']['output']>;\n property_version?: Maybe<Scalars['Float']['output']>;\n token_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by var_samp() on columns of table \"legacy_migration_v1.token_activities\" */\nexport type Token_Activities_Var_Samp_Order_By = {\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** aggregate variance on columns */\nexport type Token_Activities_Variance_Fields = {\n __typename?: 'token_activities_variance_fields';\n event_creation_number?: Maybe<Scalars['Float']['output']>;\n event_index?: Maybe<Scalars['Float']['output']>;\n event_sequence_number?: Maybe<Scalars['Float']['output']>;\n property_version?: Maybe<Scalars['Float']['output']>;\n token_amount?: Maybe<Scalars['Float']['output']>;\n transaction_version?: Maybe<Scalars['Float']['output']>;\n};\n\n/** order by variance() on columns of table \"legacy_migration_v1.token_activities\" */\nexport type Token_Activities_Variance_Order_By = {\n event_creation_number?: InputMaybe<Order_By>;\n event_index?: InputMaybe<Order_By>;\n event_sequence_number?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n token_amount?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** columns and relationships of \"legacy_migration_v1.token_datas\" */\nexport type Token_Datas = {\n __typename?: 'token_datas';\n collection_data_id_hash?: Maybe<Scalars['String']['output']>;\n collection_name?: Maybe<Scalars['String']['output']>;\n creator_address?: Maybe<Scalars['String']['output']>;\n default_properties?: Maybe<Scalars['jsonb']['output']>;\n description?: Maybe<Scalars['String']['output']>;\n description_mutable?: Maybe<Scalars['Boolean']['output']>;\n largest_property_version?: Maybe<Scalars['numeric']['output']>;\n maximum?: Maybe<Scalars['numeric']['output']>;\n maximum_mutable?: Maybe<Scalars['Boolean']['output']>;\n metadata_uri?: Maybe<Scalars['String']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n payee_address?: Maybe<Scalars['String']['output']>;\n properties_mutable?: Maybe<Scalars['Boolean']['output']>;\n royalty_mutable?: Maybe<Scalars['Boolean']['output']>;\n royalty_points_denominator?: Maybe<Scalars['String']['output']>;\n royalty_points_numerator?: Maybe<Scalars['String']['output']>;\n supply?: Maybe<Scalars['numeric']['output']>;\n token_data_id_hash?: Maybe<Scalars['String']['output']>;\n transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n uri_mutable?: Maybe<Scalars['Boolean']['output']>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.token_datas\" */\nexport type Token_DatasDefault_PropertiesArgs = {\n path?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Boolean expression to filter rows from the table \"legacy_migration_v1.token_datas\". All fields are combined with a logical 'AND'. */\nexport type Token_Datas_Bool_Exp = {\n _and?: InputMaybe<Array<Token_Datas_Bool_Exp>>;\n _not?: InputMaybe<Token_Datas_Bool_Exp>;\n _or?: InputMaybe<Array<Token_Datas_Bool_Exp>>;\n collection_data_id_hash?: InputMaybe<String_Comparison_Exp>;\n collection_name?: InputMaybe<String_Comparison_Exp>;\n creator_address?: InputMaybe<String_Comparison_Exp>;\n default_properties?: InputMaybe<Jsonb_Comparison_Exp>;\n description?: InputMaybe<String_Comparison_Exp>;\n description_mutable?: InputMaybe<Boolean_Comparison_Exp>;\n largest_property_version?: InputMaybe<Numeric_Comparison_Exp>;\n maximum?: InputMaybe<Numeric_Comparison_Exp>;\n maximum_mutable?: InputMaybe<Boolean_Comparison_Exp>;\n metadata_uri?: InputMaybe<String_Comparison_Exp>;\n name?: InputMaybe<String_Comparison_Exp>;\n payee_address?: InputMaybe<String_Comparison_Exp>;\n properties_mutable?: InputMaybe<Boolean_Comparison_Exp>;\n royalty_mutable?: InputMaybe<Boolean_Comparison_Exp>;\n royalty_points_denominator?: InputMaybe<String_Comparison_Exp>;\n royalty_points_numerator?: InputMaybe<String_Comparison_Exp>;\n supply?: InputMaybe<Numeric_Comparison_Exp>;\n token_data_id_hash?: InputMaybe<String_Comparison_Exp>;\n transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n uri_mutable?: InputMaybe<Boolean_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"legacy_migration_v1.token_datas\". */\nexport type Token_Datas_Order_By = {\n collection_data_id_hash?: InputMaybe<Order_By>;\n collection_name?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n default_properties?: InputMaybe<Order_By>;\n description?: InputMaybe<Order_By>;\n description_mutable?: InputMaybe<Order_By>;\n largest_property_version?: InputMaybe<Order_By>;\n maximum?: InputMaybe<Order_By>;\n maximum_mutable?: InputMaybe<Order_By>;\n metadata_uri?: InputMaybe<Order_By>;\n name?: InputMaybe<Order_By>;\n payee_address?: InputMaybe<Order_By>;\n properties_mutable?: InputMaybe<Order_By>;\n royalty_mutable?: InputMaybe<Order_By>;\n royalty_points_denominator?: InputMaybe<Order_By>;\n royalty_points_numerator?: InputMaybe<Order_By>;\n supply?: InputMaybe<Order_By>;\n token_data_id_hash?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n uri_mutable?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"legacy_migration_v1.token_datas\" */\nexport enum Token_Datas_Select_Column {\n /** column name */\n CollectionDataIdHash = 'collection_data_id_hash',\n /** column name */\n CollectionName = 'collection_name',\n /** column name */\n CreatorAddress = 'creator_address',\n /** column name */\n DefaultProperties = 'default_properties',\n /** column name */\n Description = 'description',\n /** column name */\n DescriptionMutable = 'description_mutable',\n /** column name */\n LargestPropertyVersion = 'largest_property_version',\n /** column name */\n Maximum = 'maximum',\n /** column name */\n MaximumMutable = 'maximum_mutable',\n /** column name */\n MetadataUri = 'metadata_uri',\n /** column name */\n Name = 'name',\n /** column name */\n PayeeAddress = 'payee_address',\n /** column name */\n PropertiesMutable = 'properties_mutable',\n /** column name */\n RoyaltyMutable = 'royalty_mutable',\n /** column name */\n RoyaltyPointsDenominator = 'royalty_points_denominator',\n /** column name */\n RoyaltyPointsNumerator = 'royalty_points_numerator',\n /** column name */\n Supply = 'supply',\n /** column name */\n TokenDataIdHash = 'token_data_id_hash',\n /** column name */\n TransactionTimestamp = 'transaction_timestamp',\n /** column name */\n TransactionVersion = 'transaction_version',\n /** column name */\n UriMutable = 'uri_mutable'\n}\n\n/** Streaming cursor of the table \"token_datas\" */\nexport type Token_Datas_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Token_Datas_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Token_Datas_Stream_Cursor_Value_Input = {\n collection_data_id_hash?: InputMaybe<Scalars['String']['input']>;\n collection_name?: InputMaybe<Scalars['String']['input']>;\n creator_address?: InputMaybe<Scalars['String']['input']>;\n default_properties?: InputMaybe<Scalars['jsonb']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n description_mutable?: InputMaybe<Scalars['Boolean']['input']>;\n largest_property_version?: InputMaybe<Scalars['numeric']['input']>;\n maximum?: InputMaybe<Scalars['numeric']['input']>;\n maximum_mutable?: InputMaybe<Scalars['Boolean']['input']>;\n metadata_uri?: InputMaybe<Scalars['String']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n payee_address?: InputMaybe<Scalars['String']['input']>;\n properties_mutable?: InputMaybe<Scalars['Boolean']['input']>;\n royalty_mutable?: InputMaybe<Scalars['Boolean']['input']>;\n royalty_points_denominator?: InputMaybe<Scalars['String']['input']>;\n royalty_points_numerator?: InputMaybe<Scalars['String']['input']>;\n supply?: InputMaybe<Scalars['numeric']['input']>;\n token_data_id_hash?: InputMaybe<Scalars['String']['input']>;\n transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n uri_mutable?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** columns and relationships of \"legacy_migration_v1.token_ownerships\" */\nexport type Token_Ownerships = {\n __typename?: 'token_ownerships';\n amount?: Maybe<Scalars['numeric']['output']>;\n collection_data_id_hash?: Maybe<Scalars['String']['output']>;\n collection_name?: Maybe<Scalars['String']['output']>;\n creator_address?: Maybe<Scalars['String']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n owner_address?: Maybe<Scalars['String']['output']>;\n property_version?: Maybe<Scalars['numeric']['output']>;\n table_handle?: Maybe<Scalars['String']['output']>;\n table_type?: Maybe<Scalars['String']['output']>;\n token_data_id_hash?: Maybe<Scalars['String']['output']>;\n transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n/** Boolean expression to filter rows from the table \"legacy_migration_v1.token_ownerships\". All fields are combined with a logical 'AND'. */\nexport type Token_Ownerships_Bool_Exp = {\n _and?: InputMaybe<Array<Token_Ownerships_Bool_Exp>>;\n _not?: InputMaybe<Token_Ownerships_Bool_Exp>;\n _or?: InputMaybe<Array<Token_Ownerships_Bool_Exp>>;\n amount?: InputMaybe<Numeric_Comparison_Exp>;\n collection_data_id_hash?: InputMaybe<String_Comparison_Exp>;\n collection_name?: InputMaybe<String_Comparison_Exp>;\n creator_address?: InputMaybe<String_Comparison_Exp>;\n name?: InputMaybe<String_Comparison_Exp>;\n owner_address?: InputMaybe<String_Comparison_Exp>;\n property_version?: InputMaybe<Numeric_Comparison_Exp>;\n table_handle?: InputMaybe<String_Comparison_Exp>;\n table_type?: InputMaybe<String_Comparison_Exp>;\n token_data_id_hash?: InputMaybe<String_Comparison_Exp>;\n transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"legacy_migration_v1.token_ownerships\". */\nexport type Token_Ownerships_Order_By = {\n amount?: InputMaybe<Order_By>;\n collection_data_id_hash?: InputMaybe<Order_By>;\n collection_name?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n name?: InputMaybe<Order_By>;\n owner_address?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n table_handle?: InputMaybe<Order_By>;\n table_type?: InputMaybe<Order_By>;\n token_data_id_hash?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"legacy_migration_v1.token_ownerships\" */\nexport enum Token_Ownerships_Select_Column {\n /** column name */\n Amount = 'amount',\n /** column name */\n CollectionDataIdHash = 'collection_data_id_hash',\n /** column name */\n CollectionName = 'collection_name',\n /** column name */\n CreatorAddress = 'creator_address',\n /** column name */\n Name = 'name',\n /** column name */\n OwnerAddress = 'owner_address',\n /** column name */\n PropertyVersion = 'property_version',\n /** column name */\n TableHandle = 'table_handle',\n /** column name */\n TableType = 'table_type',\n /** column name */\n TokenDataIdHash = 'token_data_id_hash',\n /** column name */\n TransactionTimestamp = 'transaction_timestamp',\n /** column name */\n TransactionVersion = 'transaction_version'\n}\n\n/** Streaming cursor of the table \"token_ownerships\" */\nexport type Token_Ownerships_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Token_Ownerships_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Token_Ownerships_Stream_Cursor_Value_Input = {\n amount?: InputMaybe<Scalars['numeric']['input']>;\n collection_data_id_hash?: InputMaybe<Scalars['String']['input']>;\n collection_name?: InputMaybe<Scalars['String']['input']>;\n creator_address?: InputMaybe<Scalars['String']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n owner_address?: InputMaybe<Scalars['String']['input']>;\n property_version?: InputMaybe<Scalars['numeric']['input']>;\n table_handle?: InputMaybe<Scalars['String']['input']>;\n table_type?: InputMaybe<Scalars['String']['input']>;\n token_data_id_hash?: InputMaybe<Scalars['String']['input']>;\n transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** columns and relationships of \"legacy_migration_v1.tokens\" */\nexport type Tokens = {\n __typename?: 'tokens';\n collection_data_id_hash?: Maybe<Scalars['String']['output']>;\n collection_name?: Maybe<Scalars['String']['output']>;\n creator_address?: Maybe<Scalars['String']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n property_version?: Maybe<Scalars['numeric']['output']>;\n token_data_id_hash?: Maybe<Scalars['String']['output']>;\n token_properties?: Maybe<Scalars['jsonb']['output']>;\n transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;\n transaction_version?: Maybe<Scalars['bigint']['output']>;\n};\n\n\n/** columns and relationships of \"legacy_migration_v1.tokens\" */\nexport type TokensToken_PropertiesArgs = {\n path?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Boolean expression to filter rows from the table \"legacy_migration_v1.tokens\". All fields are combined with a logical 'AND'. */\nexport type Tokens_Bool_Exp = {\n _and?: InputMaybe<Array<Tokens_Bool_Exp>>;\n _not?: InputMaybe<Tokens_Bool_Exp>;\n _or?: InputMaybe<Array<Tokens_Bool_Exp>>;\n collection_data_id_hash?: InputMaybe<String_Comparison_Exp>;\n collection_name?: InputMaybe<String_Comparison_Exp>;\n creator_address?: InputMaybe<String_Comparison_Exp>;\n name?: InputMaybe<String_Comparison_Exp>;\n property_version?: InputMaybe<Numeric_Comparison_Exp>;\n token_data_id_hash?: InputMaybe<String_Comparison_Exp>;\n token_properties?: InputMaybe<Jsonb_Comparison_Exp>;\n transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n transaction_version?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"legacy_migration_v1.tokens\". */\nexport type Tokens_Order_By = {\n collection_data_id_hash?: InputMaybe<Order_By>;\n collection_name?: InputMaybe<Order_By>;\n creator_address?: InputMaybe<Order_By>;\n name?: InputMaybe<Order_By>;\n property_version?: InputMaybe<Order_By>;\n token_data_id_hash?: InputMaybe<Order_By>;\n token_properties?: InputMaybe<Order_By>;\n transaction_timestamp?: InputMaybe<Order_By>;\n transaction_version?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"legacy_migration_v1.tokens\" */\nexport enum Tokens_Select_Column {\n /** column name */\n CollectionDataIdHash = 'collection_data_id_hash',\n /** column name */\n CollectionName = 'collection_name',\n /** column name */\n CreatorAddress = 'creator_address',\n /** column name */\n Name = 'name',\n /** column name */\n PropertyVersion = 'property_version',\n /** column name */\n TokenDataIdHash = 'token_data_id_hash',\n /** column name */\n TokenProperties = 'token_properties',\n /** column name */\n TransactionTimestamp = 'transaction_timestamp',\n /** column name */\n TransactionVersion = 'transaction_version'\n}\n\n/** Streaming cursor of the table \"tokens\" */\nexport type Tokens_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: Tokens_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type Tokens_Stream_Cursor_Value_Input = {\n collection_data_id_hash?: InputMaybe<Scalars['String']['input']>;\n collection_name?: InputMaybe<Scalars['String']['input']>;\n creator_address?: InputMaybe<Scalars['String']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n property_version?: InputMaybe<Scalars['numeric']['input']>;\n token_data_id_hash?: InputMaybe<Scalars['String']['input']>;\n token_properties?: InputMaybe<Scalars['jsonb']['input']>;\n transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n transaction_version?: InputMaybe<Scalars['bigint']['input']>;\n};\n\n/** columns and relationships of \"user_transactions\" */\nexport type User_Transactions = {\n __typename?: 'user_transactions';\n block_height: Scalars['bigint']['output'];\n entry_function_contract_address?: Maybe<Scalars['String']['output']>;\n entry_function_function_name?: Maybe<Scalars['String']['output']>;\n entry_function_id_str: Scalars['String']['output'];\n entry_function_module_name?: Maybe<Scalars['String']['output']>;\n epoch: Scalars['bigint']['output'];\n expiration_timestamp_secs: Scalars['timestamp']['output'];\n gas_unit_price: Scalars['numeric']['output'];\n max_gas_amount: Scalars['numeric']['output'];\n parent_signature_type: Scalars['String']['output'];\n sender: Scalars['String']['output'];\n sequence_number?: Maybe<Scalars['bigint']['output']>;\n timestamp: Scalars['timestamp']['output'];\n version: Scalars['bigint']['output'];\n};\n\n/** Boolean expression to filter rows from the table \"user_transactions\". All fields are combined with a logical 'AND'. */\nexport type User_Transactions_Bool_Exp = {\n _and?: InputMaybe<Array<User_Transactions_Bool_Exp>>;\n _not?: InputMaybe<User_Transactions_Bool_Exp>;\n _or?: InputMaybe<Array<User_Transactions_Bool_Exp>>;\n block_height?: InputMaybe<Bigint_Comparison_Exp>;\n entry_function_contract_address?: InputMaybe<String_Comparison_Exp>;\n entry_function_function_name?: InputMaybe<String_Comparison_Exp>;\n entry_function_id_str?: InputMaybe<String_Comparison_Exp>;\n entry_function_module_name?: InputMaybe<String_Comparison_Exp>;\n epoch?: InputMaybe<Bigint_Comparison_Exp>;\n expiration_timestamp_secs?: InputMaybe<Timestamp_Comparison_Exp>;\n gas_unit_price?: InputMaybe<Numeric_Comparison_Exp>;\n max_gas_amount?: InputMaybe<Numeric_Comparison_Exp>;\n parent_signature_type?: InputMaybe<String_Comparison_Exp>;\n sender?: InputMaybe<String_Comparison_Exp>;\n sequence_number?: InputMaybe<Bigint_Comparison_Exp>;\n timestamp?: InputMaybe<Timestamp_Comparison_Exp>;\n version?: InputMaybe<Bigint_Comparison_Exp>;\n};\n\n/** Ordering options when selecting data from \"user_transactions\". */\nexport type User_Transactions_Order_By = {\n block_height?: InputMaybe<Order_By>;\n entry_function_contract_address?: InputMaybe<Order_By>;\n entry_function_function_name?: InputMaybe<Order_By>;\n entry_function_id_str?: InputMaybe<Order_By>;\n entry_function_module_name?: InputMaybe<Order_By>;\n epoch?: InputMaybe<Order_By>;\n expiration_timestamp_secs?: InputMaybe<Order_By>;\n gas_unit_price?: InputMaybe<Order_By>;\n max_gas_amount?: InputMaybe<Order_By>;\n parent_signature_type?: InputMaybe<Order_By>;\n sender?: InputMaybe<Order_By>;\n sequence_number?: InputMaybe<Order_By>;\n timestamp?: InputMaybe<Order_By>;\n version?: InputMaybe<Order_By>;\n};\n\n/** select columns of table \"user_transactions\" */\nexport enum User_Transactions_Select_Column {\n /** column name */\n BlockHeight = 'block_height',\n /** column name */\n EntryFunctionContractAddress = 'entry_function_contract_address',\n /** column name */\n EntryFunctionFunctionName = 'entry_function_function_name',\n /** column name */\n EntryFunctionIdStr = 'entry_function_id_str',\n /** column name */\n EntryFunctionModuleName = 'entry_function_module_name',\n /** column name */\n Epoch = 'epoch',\n /** column name */\n ExpirationTimestampSecs = 'expiration_timestamp_secs',\n /** column name */\n GasUnitPrice = 'gas_unit_price',\n /** column name */\n MaxGasAmount = 'max_gas_amount',\n /** column name */\n ParentSignatureType = 'parent_signature_type',\n /** column name */\n Sender = 'sender',\n /** column name */\n SequenceNumber = 'sequence_number',\n /** column name */\n Timestamp = 'timestamp',\n /** column name */\n Version = 'version'\n}\n\n/** Streaming cursor of the table \"user_transactions\" */\nexport type User_Transactions_Stream_Cursor_Input = {\n /** Stream column input with initial value */\n initial_value: User_Transactions_Stream_Cursor_Value_Input;\n /** cursor ordering */\n ordering?: InputMaybe<Cursor_Ordering>;\n};\n\n/** Initial value of the column from where the streaming should start */\nexport type User_Transactions_Stream_Cursor_Value_Input = {\n block_height?: InputMaybe<Scalars['bigint']['input']>;\n entry_function_contract_address?: InputMaybe<Scalars['String']['input']>;\n entry_function_function_name?: InputMaybe<Scalars['String']['input']>;\n entry_function_id_str?: InputMaybe<Scalars['String']['input']>;\n entry_function_module_name?: InputMaybe<Scalars['String']['input']>;\n epoch?: InputMaybe<Scalars['bigint']['input']>;\n expiration_timestamp_secs?: InputMaybe<Scalars['timestamp']['input']>;\n gas_unit_price?: InputMaybe<Scalars['numeric']['input']>;\n max_gas_amount?: InputMaybe<Scalars['numeric']['input']>;\n parent_signature_type?: InputMaybe<Scalars['String']['input']>;\n sender?: InputMaybe<Scalars['String']['input']>;\n sequence_number?: InputMaybe<Scalars['bigint']['input']>;\n timestamp?: InputMaybe<Scalars['timestamp']['input']>;\n version?: InputMaybe<Scalars['bigint']['input']>;\n};\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { AccountAddress, AccountAddressInput } from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\nimport {\n createPaginatedQuery,\n PaginationCursors,\n WithPagination,\n} from \"../utils/pagination.js\";\nimport {\n FungibleAssetBalanceFieldsFragment,\n FungibleAssetMetadataFieldsFragment,\n GetFungibleAssetBalancesQueryVariables,\n} from \"../operations/index.js\";\nimport { FungibleAssetBalance } from \"../types/fungibleAssets.js\";\nimport { IndexerNotInitializedError } from \"../errors/clients.js\";\nimport { normalizeFungibleAssetBalances } from \"../utils/normalize.js\";\n\nexport type FetchAccountCoinsParameters = WithPagination<\n WithNetwork<{\n /**\n * The address of the account to fetch the coin balances for.\n */\n address: AccountAddressInput;\n /**\n * Conditions for ordering the coin balance results.\n */\n orderBy?: GetFungibleAssetBalancesQueryVariables[\"order_by\"];\n /**\n * Filters for the coin balance results.\n */\n where?: GetFungibleAssetBalancesQueryVariables[\"where\"];\n }>\n>;\n\nexport type FetchAccountCoinsResult = PaginationCursors & {\n balances: FungibleAssetBalance[];\n};\n\nexport async function fetchAccountCoins(\n this: AptosJSProClient,\n {\n address,\n network,\n limit = 100,\n offset = 0,\n orderBy,\n where,\n }: FetchAccountCoinsParameters\n): Promise<FetchAccountCoinsResult> {\n const { indexer } = this.getClients({ network });\n\n if (!indexer) throw new IndexerNotInitializedError();\n\n return createPaginatedQuery({\n limit,\n offset,\n queryFn: async ({ limit, offset }) => {\n const response = await indexer.getFungibleAssetBalances({\n limit,\n offset,\n order_by: orderBy,\n where: {\n _and: [\n {\n metadata: { asset_type: { _is_null: false } },\n owner_address: {\n _eq: AccountAddress.from(address).toStringLong(),\n },\n },\n where ?? {},\n ],\n },\n });\n\n const balances = response.current_fungible_asset_balances.filter(\n (e) => e.metadata !== undefined && e.metadata !== null\n ) as (FungibleAssetBalanceFieldsFragment & {\n metadata: FungibleAssetMetadataFieldsFragment;\n })[];\n\n return {\n balances: normalizeFungibleAssetBalances(balances),\n hasNextPage: response.current_fungible_asset_balances.length === limit,\n };\n },\n });\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nexport type WithPagination<T> = T & {\n /**\n * The number of results to return per page. This value is capped at 100 results.\n *\n * @default 100\n */\n limit?: number;\n /**\n * The offset to start the query from.\n *\n * @default 0\n */\n offset?: number;\n};\n\ntype PaginationQueryFnResult<T> = T & {\n /**\n * Whether there are more results in the next page.\n */\n hasNextPage: boolean;\n /**\n * Whether there are more results in the previous page.\n * @default () => offset > 0\n */\n hasPrevPage?: boolean;\n};\n\ninterface PaginationOptions<TQueryFnResult> {\n /**\n * The number of results to return per page.\n */\n limit: number;\n /**\n * The offset to start the query from.\n */\n offset: number;\n /**\n * The query function to paginate. Must return a result with a `hasNextPage`\n * boolean and optionally a `hasPrevPage` boolean to indicate whether there\n * are more results in either direction.\n */\n queryFn: (args: {\n limit: number;\n offset: number;\n }) => Promise<PaginationQueryFnResult<TQueryFnResult>>;\n}\n\nexport interface PaginationCursors {\n /**\n * The next cursor for pagination. If there is no next page, this will be\n * undefined.\n */\n nextCursor?: number;\n /**\n * The previous cursor for pagination. If there is no previous page, this\n * will be undefined.\n */\n prevCursor?: number;\n}\n\n/**\n * Paginate a query function with a limit and offset. Strictly types the result\n * to include pagination cursors. The query function must return a result with\n * a `hasNextPage` boolean and optionally a `hasPrevPage` boolean to indicate\n * whether there are more results in either direction.\n *\n * @param queryFn - The query function to paginate.\n * @param limit - The number of results to return per page.\n * @param offset - The offset to start the query from.\n * @returns The paginated results with pagination cursors.\n */\nexport const createPaginatedQuery = async <TQueryFnResult>({\n limit,\n offset,\n queryFn,\n}: PaginationOptions<TQueryFnResult>): Promise<\n PaginationCursors & TQueryFnResult\n> => {\n const result = await queryFn({ limit, offset });\n\n // Remove the hasNextPage and hasPrevPage properties from the result.\n const { hasNextPage, hasPrevPage, ...data } = result;\n\n // Find the next and previous cursors.\n const nextCursor = hasNextPage ? offset + limit : undefined;\n const prevCursor =\n (hasPrevPage ?? offset > 0) ? Math.max(offset - limit, 0) : undefined;\n\n return { nextCursor, prevCursor, ...(data as TQueryFnResult) };\n};\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nexport interface AptosBaseErrorOptions {\n longMessage?: string;\n}\n\nexport class AptosBaseError extends Error {\n shortMessage: string;\n\n longMessage?: string;\n\n docsBaseUrl = \"https://js-pro.aptos.dev/\";\n\n override name = \"AptosJSProError\";\n\n constructor(shortMessage: string, options?: AptosBaseErrorOptions) {\n super();\n\n this.shortMessage = shortMessage;\n this.longMessage = options?.longMessage;\n }\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { AptosBaseError } from \"./base.js\";\n\nexport class IndexerNotInitializedError extends AptosBaseError {\n override name = \"IndexerNotInitializedError\";\n\n constructor() {\n super(\"The AptosJSProClient was not initialized with an indexer\", {\n longMessage:\n \"The AptosJSProClient was not initialized with an indexer. Please specify an indexer endpoint when setting up custom networks.\",\n });\n }\n}\n\nexport class SignerNotFoundError extends AptosBaseError {\n override name = \"SignerNotFoundError\";\n\n constructor() {\n super(\"The AptosJSProClient was not initialized with a signer\", {\n longMessage:\n \"The AptosJSProClient was not initialized with a signer. Please specify a signer when setting up the client.\",\n });\n }\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nexport class AptosName {\n readonly #domain?: string;\n\n readonly #subdomain?: string;\n\n constructor(name: string);\n\n constructor(domain: string, subdomain?: string | null);\n\n constructor(domain: string, subdomain?: string | null) {\n if (!domain) return;\n\n const name = [subdomain, domain].filter(Boolean).join(\".\");\n\n const normalized = name.toLowerCase().replace(/(\\.apt)$/, \"\");\n\n // ^ - Asserts the start of the string\n // (?: - Start of a non-capturing group\n // ([^.]+)\\. - Capturing group for the subdomain (if present)\n // )? - End of the non-capturing group\n // ([^.]+) - Capturing group for the domain\n // $ - Asserts the end of the string.\n const regex = /^(?:([a-zA-Z0-9-]+)\\.)?([a-zA-Z0-9-]+)$/;\n\n const match = normalized.match(regex);\n\n if (!match) return;\n\n const [, parsedSubdomain, parsedDomain] = match;\n\n this.#domain = parsedDomain;\n this.#subdomain = parsedSubdomain;\n }\n\n toString(): string {\n if (!this.#domain) return \"\";\n\n return this.noSuffix().concat(\".apt\");\n }\n\n noSuffix(): string {\n if (!this.#domain) return \"\";\n\n if (!this.#subdomain) return this.#domain;\n\n return `${this.#subdomain}.${this.#domain}`;\n }\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\nexport const APTOS_NAMES_ENDPOINT = \"https://www.aptosnames.com/api\";\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { APTOS_NAMES_ENDPOINT } from \"../constants/endpoints.js\";\n\nexport function fixBadAptosUri(uri: string) {\n const match =\n uri.match(/^https:\\/\\/aptosnames.com\\/name\\/([^/]+)$/) ??\n uri.match(\n /^https:\\/\\/aptosnames.com\\/api(?:\\/[^/]+)?\\/v\\d+\\/metadata\\/([^/]+)/\n );\n return match ? `${APTOS_NAMES_ENDPOINT}/v1/metadata/${match[1]}` : uri;\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport {\n AccountTransactionFragment,\n BaseTokenActivityFragment,\n CollectionDataFieldsFragment,\n CollectionOwnershipFragment,\n DelegatedStakingActivityFragment,\n FungibleAssetActivityFragment,\n FungibleAssetBalanceFieldsFragment,\n FungibleAssetMetadataFieldsFragment,\n PrimaryAptosNameFragment,\n TokenActivityFragment,\n TokenDataFieldsFragment,\n UserTransactionFragment,\n} from \"../operations/generated/operations.js\";\nimport {\n BaseTokenActivity,\n DelegatedStakingActivity,\n FungibleAssetActivity,\n TokenActivity,\n} from \"../types/activities.js\";\nimport {\n FungibleAssetBalance,\n FungibleAssetMetadata,\n} from \"../types/fungibleAssets.js\";\nimport { CollectionData, TokenData } from \"../types/tokens.js\";\nimport { AccountTransaction, UserTransaction } from \"../types/transactions.js\";\nimport { AptosName } from \"./names.js\";\nimport { fixBadAptosUri } from \"./tokens.js\";\n\n// normalizePrimaryAptosName\n\nexport const normalizePrimaryAptosName = (\n aptosName: PrimaryAptosNameFragment\n): AptosName | undefined =>\n aptosName.domain\n ? new AptosName(aptosName.domain, aptosName.subdomain)\n : undefined;\n\n// normalizeFungibleAssetMetadata\n\nexport const normalizeFungibleAssetMetadata = (\n metadata: FungibleAssetMetadataFieldsFragment\n): FungibleAssetMetadata => ({\n assetType: metadata.asset_type,\n creatorAddress: metadata.creator_address,\n decimals: metadata.decimals,\n iconUri: metadata.icon_uri,\n name: metadata.name,\n projectUri: metadata.project_uri,\n symbol: metadata.symbol,\n tokenStandard: metadata.token_standard,\n});\n\n// normalizeFungibleAssetBalances\n\nexport const normalizeFungibleAssetBalances = (\n balances: (FungibleAssetBalanceFieldsFragment & {\n metadata: FungibleAssetMetadataFieldsFragment;\n })[]\n): FungibleAssetBalance[] =>\n balances.map(\n (balance) =>\n ({\n amount: balance.amount,\n amountV1: balance.amount_v1,\n amountV2: balance.amount_v2,\n assetType: balance.asset_type,\n assetTypeV1: balance.asset_type_v1,\n assetTypeV2: balance.asset_type_v2,\n isFrozen: balance.is_frozen,\n isPrimary: balance.is_primary,\n lastTransactionTimestamp: balance.last_transaction_timestamp,\n lastTransactionVersion: balance.last_transaction_version,\n metadata: normalizeFungibleAssetMetadata(balance.metadata),\n ownerAddress: balance.owner_address,\n tokenStandard: balance.token_standard,\n }) satisfies FungibleAssetBalance\n );\n\n// normalizeCollectionData\n\nexport const normalizeCollectionData = (\n collectionData: CollectionDataFieldsFragment\n): CollectionData => ({\n cdnImageUri: collectionData.cdn_asset_uris?.cdn_image_uri,\n collectionId: collectionData.collection_id,\n collectionName: collectionData.collection_name,\n creatorAddress: collectionData.creator_address,\n description: collectionData.description,\n metadataUri: collectionData.uri,\n name: collectionData.collection_name,\n supply: collectionData.max_supply,\n});\n\n// normalizeCollectionOwnership\n\nexport const normalizeCollectionOwnership = (\n collectionOwnership: CollectionOwnershipFragment & {\n current_collection: CollectionDataFieldsFragment;\n }\n): CollectionData => ({\n ...normalizeCollectionData(collectionOwnership.current_collection),\n distinctTokens: collectionOwnership.distinct_tokens,\n fallbackUri: collectionOwnership.single_token_uri,\n});\n\n// normalizeTokenData\n\nexport const normalizeTokenData = (\n tokenData: TokenDataFieldsFragment\n): TokenData => {\n const fixedUri = fixBadAptosUri(tokenData.token_uri);\n return {\n cdnImageUri: tokenData.cdn_asset_uris?.cdn_image_uri,\n collection: tokenData.current_collection?.collection_name ?? \"\",\n collectionData: tokenData.current_collection\n ? normalizeCollectionData(tokenData.current_collection)\n : undefined,\n collectionId: tokenData.current_collection?.collection_id ?? \"\",\n creator: tokenData.current_collection?.creator_address ?? \"\",\n description: tokenData.description,\n isFungibleV2: tokenData.is_fungible_v2 ?? false,\n isSoulbound: false,\n lastTransactionTimestamp: tokenData.last_transaction_timestamp,\n lastTransactionVersion: tokenData.last_transaction_version,\n metadataUri: fixedUri,\n name: tokenData.token_name,\n tokenId: tokenData.token_data_id,\n tokenProperties: tokenData.token_properties,\n tokenStandard: tokenData.token_standard as \"v1\" | \"v2\",\n };\n};\n\n// normalizeBaseTokenActivity\n\nexport const normalizeBaseTokenActivity = (\n activity: BaseTokenActivityFragment\n): BaseTokenActivity => ({\n fromAddress: activity.from_address,\n toAddress: activity.to_address,\n transactionTimestamp: activity.transaction_timestamp,\n transactionVersion: activity.transaction_version,\n type: activity.type,\n eventAccountAddress: activity.event_account_address,\n eventIndex: activity.event_index,\n});\n\n// normalizeAccountTransaction\n\nexport const normalizeAccountTransaction = (\n transaction: AccountTransactionFragment\n): AccountTransaction => {\n const fungibleAssetActivities: FungibleAssetActivity[] = [];\n const tokenActivities: TokenActivity[] = [];\n const delegatedStakingActivities: DelegatedStakingActivity[] = [];\n\n transaction.fungible_asset_activities.forEach((e) => {\n if (!e.asset_type || !e.metadata) return;\n fungibleAssetActivities.push(\n normalizeFungibleAssetActivity({\n ...e,\n asset_type: e.asset_type,\n metadata: e.metadata,\n })\n );\n });\n\n transaction.token_activities_v2.forEach((e) => {\n if (!e.current_token_data) return;\n tokenActivities.push(\n normalizeTokenActivity({\n ...e,\n current_token_data: e.current_token_data,\n })\n );\n });\n\n transaction.delegated_staking_activities.forEach((e) =>\n delegatedStakingActivities.push(normalizeDelegatedStakingActivity(e))\n );\n\n return {\n accountAddress: transaction.account_address,\n transactionVersion: transaction.transaction_version,\n fungibleAssetActivities,\n tokenActivities,\n delegatedStakingActivities,\n userTransaction: transaction.user_transaction\n ? {\n sequenceNumber: transaction.user_transaction.sequence_number,\n sender: transaction.user_transaction.sender,\n entryFunction: transaction.user_transaction.entry_function_id_str,\n }\n : undefined,\n };\n};\n\n// normalizeFungibleAssetActivity\n\nexport const normalizeFungibleAssetActivity = (\n activity: FungibleAssetActivityFragment & {\n asset_type: string;\n metadata: FungibleAssetMetadataFieldsFragment;\n }\n): FungibleAssetActivity => ({\n ownerAddress: activity.owner_address,\n ownerPrimaryAptosName: activity.owner_primary_aptos_name.at(0)\n ? normalizePrimaryAptosName(activity.owner_primary_aptos_name[0])\n : undefined,\n amount: activity.amount,\n type: activity.type,\n blockHeight: activity.block_height,\n assetType: activity.asset_type,\n metadata: normalizeFungibleAssetMetadata(activity.metadata),\n entryFunctionIdStr: activity.entry_function_id_str,\n eventIndex: activity.event_index,\n isGasFee: activity.is_gas_fee,\n gasFeePayerAddress: activity.gas_fee_payer_address,\n isTransactionSuccess: activity.is_transaction_success,\n transactionTimestamp: activity.transaction_timestamp,\n transactionVersion: activity.transaction_version,\n});\n\n// normalizeTokenActivity\n\nexport const normalizeTokenActivity = (\n activity: TokenActivityFragment & {\n current_token_data: TokenDataFieldsFragment;\n }\n): TokenActivity => ({\n ...normalizeBaseTokenActivity(activity),\n primaryAptosNameFrom: activity.primary_aptos_name_from.at(0)\n ? normalizePrimaryAptosName(activity.primary_aptos_name_from[0])\n : undefined,\n primaryAptosNameTo: activity.primary_aptos_name_to.at(0)\n ? normalizePrimaryAptosName(activity.primary_aptos_name_to[0])\n : undefined,\n currentTokenData: normalizeTokenData(activity.current_token_data),\n propertyVersionV1: activity.property_version_v1,\n tokenAmount: activity.token_amount,\n tokenDataId: activity.token_data_id,\n});\n\n// normalizeDelegatedStakingActivity\n\nexport const normalizeDelegatedStakingActivity = (\n activity: DelegatedStakingActivityFragment\n): DelegatedStakingActivity => ({\n delegatorAddress: activity.delegator_address,\n eventIndex: activity.event_index,\n eventType: activity.event_type,\n poolAddress: activity.pool_address,\n transactionVersion: activity.transaction_version,\n amount: activity.amount,\n});\n\n// normalizeUserTransaction\n\nexport const normalizeUserTransaction = (\n transaction: UserTransactionFragment\n): UserTransaction => ({\n entryFunction: transaction.entry_function_id_str,\n expirationTimestampSecs: transaction.expiration_timestamp_secs,\n gasUnitPrice: transaction.gas_unit_price,\n maxGasAmount: transaction.max_gas_amount,\n parentSignatureType: transaction.parent_signature_type,\n version: transaction.version,\n timestamp: transaction.timestamp,\n sequenceNumber: transaction.sequence_number,\n sender: transaction.sender,\n});\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\nimport { Aptos } from \"@aptos-labs/ts-sdk\";\nimport { Sdk } from \"../operations/index.js\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { AccountInfo, NetworkInfo, SignerClient } from \"../types/index.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\n\nexport type GetClientsParameters = WithNetwork<object>;\n\nexport type GetClientsResult = {\n account?: AccountInfo;\n aptos: Aptos;\n indexer?: Sdk;\n network: NetworkInfo;\n signer?: SignerClient;\n};\n\nexport function getClients(\n this: AptosJSProClient,\n { network: selectedNetwork }: GetClientsParameters = {}\n): GetClientsResult {\n let aptos: Aptos = this.aptos;\n let indexer: Sdk | undefined = this.indexer;\n\n if (selectedNetwork) {\n aptos = this.createAptos(undefined, selectedNetwork);\n indexer = this.createIndexer(undefined, selectedNetwork);\n }\n\n return {\n account: this.account,\n aptos,\n indexer,\n network: selectedNetwork ?? this.network,\n signer: this.signer,\n };\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { AccountAddress, AccountAddressInput } from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\n\nexport type FetchAptBalanceParameters = WithNetwork<{\n /**\n * The address to fetch the APT balance for.\n */\n address: AccountAddressInput;\n}>;\n\nexport type FetchAptBalanceResult = bigint;\n\nexport async function fetchAptBalance(\n this: AptosJSProClient,\n { address, network }: FetchAptBalanceParameters\n): Promise<FetchAptBalanceResult> {\n const { aptos } = this.getClients({ network });\n\n const amount = await aptos.account.getAccountCoinAmount({\n accountAddress: AccountAddress.from(address).toStringLong(),\n coinType: \"0x1::aptos_coin::AptosCoin\",\n });\n\n return BigInt(amount);\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { AccountAddress, AccountAddressInput } from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\n\nexport type FetchBalanceParameters = WithNetwork<{\n /**\n * The address to fetch the asset balance for.\n */\n address: AccountAddressInput;\n /**\n * The asset to fetch the balance for. This can be a coin type or Fungible Asset metadata address.\n */\n asset: string;\n}>;\n\nexport type FetchBalanceResult = bigint;\n\nexport async function fetchBalance(\n this: AptosJSProClient,\n { address, asset, network }: FetchBalanceParameters\n): Promise<FetchBalanceResult> {\n const { aptos } = this.getClients({ network });\n\n const isCoinType = asset.includes(\"::\");\n\n const amount = await aptos.account.getAccountCoinAmount({\n accountAddress: AccountAddress.from(address).toStringLong(),\n coinType: isCoinType\n ? (asset as `${string}::${string}::${string}`)\n : undefined,\n faMetadataAddress: isCoinType\n ? undefined\n : AccountAddress.from(asset).toStringLong(),\n });\n\n return BigInt(amount);\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { ProcessorType } from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\n\nexport type FetchProcessorStatusParameters = WithNetwork<{\n processor: ProcessorType;\n}>;\n\nexport type FetchProcessorStatusResult = {\n lastSuccessVersion: number;\n lastUpdated: number;\n};\n\nexport async function fetchProcessorStatus(\n this: AptosJSProClient,\n { network, processor }: FetchProcessorStatusParameters\n): Promise<FetchProcessorStatusResult> {\n const { aptos } = this.getClients({ network });\n\n const result = await aptos.getProcessorStatus(processor);\n\n return {\n lastSuccessVersion: result.last_success_version,\n lastUpdated: result.last_updated,\n };\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { AccountAddress } from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\nimport { AptosName } from \"../utils/names.js\";\nimport { asyncTryOrDefault } from \"../utils/lib.js\";\n\nexport type FetchAddressFromNameParameters = WithNetwork<{\n /**\n * The name to fetch the address for. You can pass in an instance of `AptosName` or a `string`.\n */\n name: string | AptosName;\n}>;\n\nexport type FetchAddressFromNameResult = AccountAddress | null;\n\nexport async function fetchAddressFromName(\n this: AptosJSProClient,\n { network, name }: FetchAddressFromNameParameters\n): Promise<FetchAddressFromNameResult> {\n const { aptos } = this.getClients({ network });\n\n const address = await asyncTryOrDefault(\n () => aptos.getTargetAddress({ name: name.toString() }),\n undefined\n );\n\n return address ? AccountAddress.from(address) : null;\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\n/**\n * Tries to execute a function and returns the result. If the function throws\n * an error, returns a default value.\n */\nexport const asyncTryOrDefault = async <T, U>(\n fn: () => T,\n defaultValue: U\n): Promise<T | U> => {\n try {\n const res = await fn();\n return res;\n } catch {\n return defaultValue;\n }\n};\n\nexport function shareRequests<TParam extends string | number, TResult>(\n query: (param: TParam) => Promise<TResult>\n) {\n const pendingRequests: { [key: string]: Promise<TResult> } = {};\n return async (param: TParam) => {\n if (param in pendingRequests) {\n return pendingRequests[param] as Promise<TResult>;\n }\n const pendingRequest = query(param);\n pendingRequests[param] = pendingRequest;\n const result = await pendingRequest;\n delete pendingRequests[param];\n return result;\n };\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { AccountAddressInput } from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\nimport { AptosName } from \"../utils/names.js\";\nimport { asyncTryOrDefault } from \"../utils/lib.js\";\n\nexport type FetchNameFromAddressParameters = WithNetwork<{\n /**\n * The address to fetch the ANS name for.\n */\n address: AccountAddressInput;\n}>;\n\nexport type FetchNameFromAddressResult = AptosName | null;\n\nexport async function fetchNameFromAddress(\n this: AptosJSProClient,\n { network, address }: FetchNameFromAddressParameters\n): Promise<FetchNameFromAddressResult> {\n const { aptos } = this.getClients({ network });\n\n const name = await asyncTryOrDefault(\n () => aptos.getPrimaryName({ address }),\n undefined\n );\n\n return name ? new AptosName(name) : null;\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\n\nexport type FetchEstimatedGasPriceParameters = WithNetwork<object>;\n\nexport type FetchEstimatedGasPriceResult = {\n deprioritizedGasEstimate?: number;\n gasEstimate: number;\n prioritizedGasEstimate?: number;\n};\n\nexport async function fetchEstimatedGasPrice(\n this: AptosJSProClient,\n { network }: FetchEstimatedGasPriceParameters = {}\n): Promise<FetchEstimatedGasPriceResult> {\n const { aptos } = this.getClients({ network });\n\n const result = await aptos.getGasPriceEstimation();\n\n return {\n deprioritizedGasEstimate: result.deprioritized_gas_estimate,\n gasEstimate: result.gas_estimate,\n prioritizedGasEstimate: result.prioritized_gas_estimate,\n };\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { AnyNumber, HexInput, TransactionResponse } from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\n\nexport type FetchTransactionParameters = WithNetwork<\n | {\n transactionHash: HexInput;\n }\n | {\n ledgerVersion: AnyNumber;\n }\n>;\n\nexport type FetchTransactionResult = TransactionResponse;\n\nexport async function fetchTransaction(\n this: AptosJSProClient,\n { network, ...params }: FetchTransactionParameters\n): Promise<FetchTransactionResult> {\n const { aptos } = this.getClients({ network });\n\n if (\"ledgerVersion\" in params) {\n return aptos.getTransactionByVersion({\n ledgerVersion: params.ledgerVersion,\n });\n }\n\n return aptos.getTransactionByHash({\n transactionHash: params.transactionHash,\n });\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { AccountAddress, Aptos } from \"@aptos-labs/ts-sdk\";\nimport { MoveResource } from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\nimport { ResourceMap, ResourceType } from \"../types/resources.js\";\n\n// Helper type to extract the resource data type based on input\nexport type ExtractResourceData<T> = T extends ResourceType\n ? ResourceMap[T]\n : T extends string\n ? object\n : T;\n\n// Helper type to determine the resource type string\nexport type GetResourceTypeString<T> = T extends ResourceType\n ? T\n : T extends string\n ? T\n : string;\n\nexport type FetchResourceTypeParameters<T extends string> = WithNetwork<\n Omit<\n Parameters<Aptos[\"account\"][\"getAccountResource\"]>[0],\n \"resourceType\"\n > & {\n /**\n * The resource type to fetch. If the resource is a common type, the result may automatically be typed.\n *\n * For example, if you pass in `0x1::account::Account`, the result will be typed as:\n *\n * ```ts\n * {\n * type: \"0x1::account::Account\",\n * data: {\n * authentication_key: string;\n * coin_register_events: ResourceEventHandle;\n * guid_creation_num: string;\n * withdraw_events: ResourceEventHandle;\n * sequence_number: string;\n * // ...more fields\n * };\n * }\n * ```\n */\n resourceType: T extends object ? string : T;\n }\n>;\n\nexport type FetchResourceTypeResult<\n T extends object,\n RT extends string = string,\n> = MoveResource<T> & {\n type: RT;\n};\n\nexport async function fetchResourceType<T extends string | object>(\n this: AptosJSProClient,\n {\n network,\n accountAddress,\n ...params\n }: FetchResourceTypeParameters<T extends object ? string : T & string>\n): Promise<\n FetchResourceTypeResult<ExtractResourceData<T>, GetResourceTypeString<T>>\n> {\n const { aptos } = this.getClients({ network });\n\n const result = await aptos.getAccountResource({\n ...params,\n accountAddress: AccountAddress.from(accountAddress).toString(),\n resourceType: params.resourceType as `${string}::${string}::${string}`,\n });\n\n return result as FetchResourceTypeResult<\n ExtractResourceData<T>,\n GetResourceTypeString<T>\n >;\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { Aptos, MoveResource } from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\nimport { asyncTryOrDefault } from \"../utils/lib.js\";\n\nexport type FetchResourcesParameters = WithNetwork<\n Parameters<Aptos[\"account\"][\"getAccountResources\"]>[0]\n>;\n\nexport type FetchResourcesResult = MoveResource[];\n\nexport async function fetchResources(\n this: AptosJSProClient,\n { network, ...params }: FetchResourcesParameters\n): Promise<FetchResourcesResult> {\n const { aptos } = this.getClients({ network });\n\n const result = await asyncTryOrDefault(\n () => aptos.getAccountResources(params),\n []\n );\n\n return result;\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { RoleType } from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\n\nexport type FetchLedgerInfoParameters = WithNetwork<object>;\n\nexport type FetchLedgerInfoResult = {\n chainId: number;\n epoch: string;\n ledgerVersion: string;\n oldestLedgerVersion: string;\n ledgerTimestamp: string;\n nodeRole: RoleType;\n oldestBlockHeight: string;\n blockHeight: string;\n gitHash?: string;\n};\n\nexport async function fetchLedgerInfo(\n this: AptosJSProClient,\n { network }: FetchLedgerInfoParameters = {}\n): Promise<FetchLedgerInfoResult> {\n const { aptos } = this.getClients({ network });\n\n const result = await aptos.getLedgerInfo();\n\n return {\n chainId: result.chain_id,\n epoch: result.epoch,\n ledgerVersion: result.ledger_version,\n oldestLedgerVersion: result.oldest_ledger_version,\n ledgerTimestamp: result.ledger_timestamp,\n nodeRole: result.node_role,\n oldestBlockHeight: result.oldest_block_height,\n blockHeight: result.block_height,\n gitHash: result.git_hash,\n };\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { AptosJSProClient } from \"../client.js\";\nimport { IndexerNotInitializedError } from \"../errors/clients.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\nimport { TokenData } from \"../types/tokens.js\";\nimport {\n normalizeBaseTokenActivity,\n normalizeTokenData,\n} from \"../utils/normalize.js\";\n\nexport type FetchTokenDataParameters = WithNetwork<{\n /**\n * The token address (NFT) to fetch the token data for.\n */\n address: string;\n}>;\n\nexport type FetchTokenDataResult = TokenData | null;\n\nexport async function fetchTokenData(\n this: AptosJSProClient,\n params: FetchTokenDataParameters\n): Promise<FetchTokenDataResult> {\n const { indexer } = this.getClients({ network: params.network });\n\n if (!indexer) throw new IndexerNotInitializedError();\n\n const result = await indexer.getTokenData({ address: params.address });\n\n if (result.current_token_datas_v2.length === 0) return null;\n\n return {\n ...normalizeTokenData(result.current_token_datas_v2[0]),\n createdActivity: result.created_activity.at(0)\n ? normalizeBaseTokenActivity(result.created_activity[0])\n : undefined,\n acquiredActivity: result.acquired_activity.at(0)\n ? normalizeBaseTokenActivity(result.acquired_activity[0])\n : undefined,\n };\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { AccountAddress, AccountAddressInput } from \"@aptos-labs/ts-sdk\";\nimport { CollectionData } from \"../types/tokens.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\nimport {\n createPaginatedQuery,\n PaginationCursors,\n WithPagination,\n} from \"../utils/pagination.js\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { IndexerNotInitializedError } from \"../errors/index.js\";\nimport {\n GetAccountCollectionsQueryVariables,\n Order_By,\n} from \"../operations/index.js\";\nimport { normalizeCollectionData } from \"../utils/normalize.js\";\n\nexport type FetchAccountCollectionsParameters = WithPagination<\n WithNetwork<{\n /**\n * The address of the account to fetch the collections for.\n */\n address: AccountAddressInput;\n /**\n * Filters for the collection results.\n */\n where?: GetAccountCollectionsQueryVariables[\"where\"];\n /**\n * Conditions for ordering the collection results.\n */\n orderBy?: GetAccountCollectionsQueryVariables[\"order_by\"];\n }>\n>;\n\nexport type FetchAccountCollectionsResult = PaginationCursors & {\n collections: CollectionData[];\n};\n\nexport async function fetchAccountCollections(\n this: AptosJSProClient,\n {\n network,\n limit = 100,\n offset = 0,\n orderBy = [],\n where = [],\n ...params\n }: FetchAccountCollectionsParameters\n): Promise<FetchAccountCollectionsResult> {\n const { indexer } = this.getClients({ network });\n if (!indexer) throw new IndexerNotInitializedError();\n\n return createPaginatedQuery({\n limit,\n offset,\n queryFn: async ({ limit, offset }) => {\n const response = await indexer.getAccountCollections({\n limit,\n offset,\n address: AccountAddress.from(params.address).toStringLong(),\n where,\n order_by: [\n {\n last_transaction_version: Order_By.Desc,\n collection_id: Order_By.Desc,\n },\n ...(Array.isArray(orderBy) ? orderBy : [orderBy]),\n ],\n });\n\n const collections: CollectionData[] = [];\n\n response.current_collection_ownership_v2_view.forEach((collection) => {\n if (!collection.current_collection) return;\n\n collections.push(\n normalizeCollectionData(collection.current_collection)\n );\n });\n\n return {\n hasNextPage:\n response.current_collection_ownership_v2_view.length === limit,\n collections,\n };\n },\n });\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { AptosBaseError } from \"./base.js\";\n\nexport class SenderNotFoundError extends AptosBaseError {\n override name = \"SenderNotFoundError\";\n\n constructor() {\n super(\"No sender found\");\n }\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { Aptos, MoveValue } from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\n\nexport type FetchViewModuleParameters = WithNetwork<\n Parameters<Aptos[\"view\"]>[0]\n>;\n\nexport type FetchViewModuleResult<T extends Array<MoveValue>> = T;\n\nexport async function fetchViewModule<T extends Array<MoveValue>>(\n this: AptosJSProClient,\n params: FetchViewModuleParameters\n): Promise<FetchViewModuleResult<T>> {\n const { aptos } = this.getClients({ network: params.network });\n\n const result = await aptos.view<T>(params);\n\n return result;\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { AccountAddress } from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { FungibleAssetMetadata } from \"../types/fungibleAssets.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\nimport { normalizeFungibleAssetMetadata } from \"../utils/normalize.js\";\n\nexport type FetchFungibleAssetMetadataParameters = WithNetwork<{\n asset: string;\n}>;\n\nexport type FetchFungibleAssetMetadataResult = FungibleAssetMetadata | null;\n\nexport async function fetchFungibleAssetMetadata(\n this: AptosJSProClient,\n { network, ...params }: FetchFungibleAssetMetadataParameters\n): Promise<FetchFungibleAssetMetadataResult> {\n const { aptos } = this.getClients({ network });\n\n const result = await aptos.getFungibleAssetMetadata({\n options: {\n where: {\n asset_type: {\n _eq: params.asset.includes(\"::\")\n ? params.asset\n : AccountAddress.from(params.asset).toStringLong(),\n },\n },\n },\n });\n\n return result.at(0) ? normalizeFungibleAssetMetadata(result[0]) : null;\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { AccountAddress, AccountAddressInput } from \"@aptos-labs/ts-sdk\";\nimport { WithNetwork } from \"../types/parameters.js\";\nimport {\n createPaginatedQuery,\n PaginationCursors,\n WithPagination,\n} from \"../utils/pagination.js\";\nimport { AptosJSProClient } from \"../client.js\";\nimport {\n GetAccountTransactionsQueryVariables,\n Order_By,\n} from \"../operations/index.js\";\nimport { IndexerNotInitializedError } from \"../errors/clients.js\";\nimport { AccountTransaction } from \"../types/transactions.js\";\nimport { normalizeAccountTransaction } from \"../utils/normalize.js\";\n\nexport type FetchAccountTransactionsParameters = WithPagination<\n WithNetwork<{\n /**\n * The address of the account to fetch the transactions for.\n */\n address: AccountAddressInput;\n /**\n * Conditions for ordering the transaction results.\n */\n orderBy?: GetAccountTransactionsQueryVariables[\"order_by\"];\n /**\n * Filters for the transaction results.\n */\n where?: GetAccountTransactionsQueryVariables[\"where\"];\n /**\n * Filters for the fungible asset activities results.\n */\n fungibleAssetActivitiesWhere?: GetAccountTransactionsQueryVariables[\"fungible_asset_activities_where\"];\n /**\n * Filters for the token activities results.\n */\n tokenActivitiesWhere?: GetAccountTransactionsQueryVariables[\"token_activities_v2_where\"];\n /**\n * Conditions for ordering the fungible asset activities results.\n */\n fungibleAssetActivitiesOrderBy?: GetAccountTransactionsQueryVariables[\"fungible_asset_activities_order_by\"];\n /**\n * Conditions for ordering the token activities results.\n */\n tokenActivitiesOrderBy?: GetAccountTransactionsQueryVariables[\"token_activities_v2_order_by\"];\n }>\n>;\n\nexport type FetchAccountTransactionsResult = PaginationCursors & {\n transactions: AccountTransaction[];\n};\n\nexport async function fetchAccountTransactions(\n this: AptosJSProClient,\n {\n network,\n address,\n limit = 100,\n offset = 0,\n orderBy = [],\n where = [],\n fungibleAssetActivitiesWhere = [],\n tokenActivitiesWhere = [],\n fungibleAssetActivitiesOrderBy = [],\n tokenActivitiesOrderBy = [],\n }: FetchAccountTransactionsParameters\n): Promise<FetchAccountTransactionsResult> {\n const { indexer } = this.getClients({ network });\n if (!indexer) throw new IndexerNotInitializedError();\n\n return createPaginatedQuery({\n limit,\n offset,\n queryFn: async ({ limit, offset }) => {\n const response = await indexer.getAccountTransactions({\n address: AccountAddress.from(address).toStringLong(),\n limit,\n offset,\n order_by: [\n {\n transaction_version: Order_By.Desc,\n },\n ...(Array.isArray(orderBy) ? orderBy : [orderBy]),\n ],\n where,\n fungible_asset_activities_where: fungibleAssetActivitiesWhere,\n token_activities_v2_where: tokenActivitiesWhere,\n fungible_asset_activities_order_by: fungibleAssetActivitiesOrderBy,\n token_activities_v2_order_by: tokenActivitiesOrderBy,\n });\n\n return {\n hasNextPage: response.account_transactions.length === limit,\n transactions: response.account_transactions.map(\n normalizeAccountTransaction\n ),\n };\n },\n });\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { AccountAddress, AccountAddressInput } from \"@aptos-labs/ts-sdk\";\nimport { TokenOwnership } from \"../types/index.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\nimport {\n createPaginatedQuery,\n PaginationCursors,\n WithPagination,\n} from \"../utils/pagination.js\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { GetAccountTokenOwnershipsQueryVariables } from \"../operations/index.js\";\nimport { IndexerNotInitializedError } from \"../errors/index.js\";\nimport { normalizeTokenData } from \"../utils/normalize.js\";\n\nexport type FetchAccountTokensParameters = WithPagination<\n WithNetwork<{\n /**\n * The address of the account to fetch the tokens (NFTs) for.\n */\n address: AccountAddressInput;\n /**\n * The ID of the collection to fetch the tokens for.\n */\n collectionId?: string;\n /**\n * Conditions for ordering the token ownership results.\n */\n orderBy?: GetAccountTokenOwnershipsQueryVariables[\"order_by\"];\n /**\n * Filters for the token ownership results.\n */\n where?: GetAccountTokenOwnershipsQueryVariables[\"where\"];\n }>\n>;\n\nexport type FetchAccountTokensResult = PaginationCursors & {\n tokens: TokenOwnership[];\n};\n\nexport async function fetchAccountTokens(\n this: AptosJSProClient,\n {\n network,\n address,\n collectionId,\n limit = 100,\n offset = 0,\n orderBy = [],\n where = [],\n }: FetchAccountTokensParameters\n): Promise<FetchAccountTokensResult> {\n const { indexer } = this.getClients({ network });\n if (!indexer) throw new IndexerNotInitializedError();\n\n return createPaginatedQuery({\n limit,\n offset,\n queryFn: async ({ limit, offset }) => {\n const response = await indexer.getAccountTokenOwnerships({\n address: AccountAddress.from(address).toStringLong(),\n limit,\n offset,\n order_by: orderBy,\n where: [\n ...(collectionId\n ? [\n {\n current_token_data: {\n current_collection: {\n collection_id: { _eq: collectionId },\n },\n },\n },\n ]\n : []),\n ...(Array.isArray(where) ? where : [where]),\n ],\n });\n\n const tokens: TokenOwnership[] = [];\n\n response.current_token_ownerships_v2.forEach((token) => {\n if (\n !token.current_token_data ||\n !token.current_token_data.current_collection\n ) {\n return;\n }\n\n tokens.push({\n ...normalizeTokenData(token.current_token_data),\n amount: token.amount,\n isSoulbound: token.is_soulbound_v2 ?? false,\n ownerAddress: token.owner_address,\n });\n });\n\n return {\n hasNextPage: response.current_token_ownerships_v2.length === limit,\n tokens,\n };\n },\n });\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { WithNetwork } from \"../types/parameters.js\";\nimport {\n createPaginatedQuery,\n PaginationCursors,\n WithPagination,\n} from \"../utils/pagination.js\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { GetUserTransactionsQueryVariables } from \"../operations/index.js\";\nimport { IndexerNotInitializedError } from \"../errors/clients.js\";\nimport { UserTransaction } from \"../types/transactions.js\";\nimport { normalizeUserTransaction } from \"../utils/normalize.js\";\n\nexport type FetchUserTransactionsParameters = WithNetwork<\n WithPagination<{\n orderBy?: GetUserTransactionsQueryVariables[\"order_by\"];\n where?: GetUserTransactionsQueryVariables[\"where\"];\n }>\n>;\n\nexport type FetchUserTransactionsResult = PaginationCursors & {\n transactions: UserTransaction[];\n};\n\nexport async function fetchUserTransactions(\n this: AptosJSProClient,\n {\n network,\n limit = 100,\n offset = 0,\n orderBy = [],\n where = {},\n }: FetchUserTransactionsParameters = {}\n): Promise<FetchUserTransactionsResult> {\n const { indexer } = this.getClients({ network });\n if (!indexer) throw new IndexerNotInitializedError();\n\n return createPaginatedQuery({\n limit,\n offset,\n queryFn: async ({ limit, offset }) => {\n const response = await indexer.getUserTransactions({\n limit,\n offset,\n order_by: orderBy,\n where,\n });\n\n return {\n hasNextPage: response.user_transactions.length === limit,\n transactions: response.user_transactions.map(normalizeUserTransaction),\n };\n },\n });\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport {\n AccountAddressInput,\n Aptos,\n DEFAULT_TXN_EXP_SEC_FROM_NOW,\n InputGenerateTransactionOptions,\n MultiAgentTransaction,\n SimpleTransaction,\n} from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { SenderNotFoundError } from \"../errors/index.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\n\nexport type BuildSimpleTransactionParameters = WithNetwork<\n Omit<Parameters<Aptos[\"transaction\"][\"build\"][\"simple\"]>[0], \"sender\"> & {\n sender?: AccountAddressInput;\n }\n>;\n\nexport type BuildMultiAgentTransactionParameters = WithNetwork<\n Omit<Parameters<Aptos[\"transaction\"][\"build\"][\"multiAgent\"]>[0], \"sender\"> & {\n sender?: AccountAddressInput;\n }\n>;\n\nexport async function buildTransaction(\n this: AptosJSProClient,\n args: BuildMultiAgentTransactionParameters\n): Promise<MultiAgentTransaction>;\n\nexport async function buildTransaction(\n this: AptosJSProClient,\n args: BuildSimpleTransactionParameters\n): Promise<SimpleTransaction>;\n\nexport async function buildTransaction(\n this: AptosJSProClient,\n args: BuildSimpleTransactionParameters | BuildMultiAgentTransactionParameters\n): Promise<SimpleTransaction | MultiAgentTransaction> {\n const {\n network,\n data,\n options: transactionOptions,\n sender,\n withFeePayer,\n } = args;\n\n const { account, aptos } = this.getClients({ network });\n\n const activeAddress = sender ?? account?.address;\n\n if (!activeAddress) throw new SenderNotFoundError();\n\n const options: InputGenerateTransactionOptions = {\n ...transactionOptions,\n };\n\n // If expiration timestamp is not provided, use the default expiration timestamp\n options.expireTimestamp ??=\n Math.floor(this.getServerTime() / 1000) + DEFAULT_TXN_EXP_SEC_FROM_NOW;\n\n if (\"secondarySignerAddresses\" in args) {\n return aptos.transaction.build.multiAgent({\n data,\n options,\n secondarySignerAddresses: args.secondarySignerAddresses,\n sender: activeAddress,\n withFeePayer,\n });\n }\n\n return aptos.transaction.build.simple({\n data,\n options,\n sender: activeAddress,\n withFeePayer,\n });\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\nimport {\n PendingTransactionResponse,\n SignedTransaction,\n postAptosFullNode,\n MimeType,\n InputSubmitTransactionData,\n generateSignedTransaction,\n AnyRawTransaction,\n} from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\n\nexport type SubmitTransactionWithSignedTransactionParameters = WithNetwork<{\n transaction: SignedTransaction;\n}>;\n\nexport type SubmitTransactionWithRawTransactionParameters =\n WithNetwork<InputSubmitTransactionData>;\n\nexport type SubmitTransactionParameters =\n | SubmitTransactionWithSignedTransactionParameters\n | SubmitTransactionWithRawTransactionParameters;\n\nexport type SubmitTransactionResult = PendingTransactionResponse;\n\nexport async function submitTransaction(\n this: AptosJSProClient,\n { network, transaction, ...params }: SubmitTransactionParameters\n): Promise<SubmitTransactionResult> {\n const { aptos } = this.getClients({ network });\n\n let signedTransaction: Uint8Array;\n if (\"senderAuthenticator\" in params) {\n signedTransaction = generateSignedTransaction({\n ...params,\n transaction: transaction as AnyRawTransaction,\n });\n } else {\n signedTransaction = (transaction as SignedTransaction).bcsToBytes();\n }\n\n const { data } = await postAptosFullNode<\n Uint8Array,\n PendingTransactionResponse\n >({\n aptosConfig: aptos.config,\n body: signedTransaction,\n contentType: MimeType.BCS_SIGNED_TRANSACTION,\n originMethod: \"submitTransaction\",\n path: \"transactions\",\n });\n\n return data;\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\nimport {\n CommittedTransactionResponse,\n Aptos,\n HexInput,\n} from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\n\nexport type WaitForTransactionParameters = WithNetwork<\n Omit<\n Parameters<Aptos[\"transaction\"][\"waitForTransaction\"]>[0],\n \"transactionHash\"\n > & {\n hash: HexInput;\n }\n>;\n\nexport type WaitForTransactionResult = CommittedTransactionResponse;\n\nexport async function waitForTransaction(\n this: AptosJSProClient,\n { network, ...params }: WaitForTransactionParameters\n): Promise<WaitForTransactionResult> {\n const { aptos } = this.getClients({ network });\n\n const result = await aptos.waitForTransaction({\n ...params,\n transactionHash: params.hash,\n });\n\n return result;\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { Aptos, UserTransactionResponse } from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\n\nexport type SimulateSimpleTransactionParameters = WithNetwork<\n Parameters<Aptos[\"transaction\"][\"simulate\"][\"simple\"]>[0]\n>;\n\nexport type SimulateMultiAgentTransactionParameters = WithNetwork<\n Parameters<Aptos[\"transaction\"][\"simulate\"][\"multiAgent\"]>[0]\n>;\n\nexport type SimulateTransactionParameters =\n | SimulateSimpleTransactionParameters\n | SimulateMultiAgentTransactionParameters;\n\nexport type SimulateTransactionResult = UserTransactionResponse;\n\nexport async function simulateTransaction(\n this: AptosJSProClient,\n params: SimulateSimpleTransactionParameters\n): Promise<SimulateTransactionResult>;\n\nexport async function simulateTransaction(\n this: AptosJSProClient,\n params: SimulateMultiAgentTransactionParameters\n): Promise<SimulateTransactionResult>;\n\nexport async function simulateTransaction(\n this: AptosJSProClient,\n params: SimulateTransactionParameters\n): Promise<SimulateTransactionResult> {\n const { aptos } = this.getClients({ network: params.network });\n\n if (\"secondarySignersPublicKeys\" in params) {\n return (await aptos.transaction.simulate.multiAgent(params))[0];\n }\n\n return (await aptos.transaction.simulate.simple(params))[0];\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport {\n Account,\n AccountAuthenticator,\n AnyRawTransaction,\n} from \"@aptos-labs/ts-sdk\";\nimport { WithNetwork } from \"../types/parameters.js\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { SignerNotFoundError } from \"../errors/index.js\";\n\nexport type SignTransactionParameters = WithNetwork<{\n transaction: AnyRawTransaction;\n signer?: Account;\n}>;\n\nexport type SignTransactionResult = {\n authenticator: AccountAuthenticator;\n rawTransaction: Uint8Array;\n};\n\nexport async function signTransaction(\n this: AptosJSProClient,\n { network, ...params }: SignTransactionParameters\n) {\n const { aptos, signer } = this.getClients({ network });\n\n if (!signer) throw new SignerNotFoundError();\n\n return signer.signTransaction({\n aptos,\n transaction: params.transaction,\n signer: params.signer,\n });\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport {\n Account,\n AnyRawTransaction,\n TransactionResponse,\n} from \"@aptos-labs/ts-sdk\";\nimport { AptosJSProClient } from \"../client.js\";\nimport { WithNetwork } from \"../types/parameters.js\";\nimport { SignerNotFoundError } from \"../errors/clients.js\";\nimport {\n BuildMultiAgentTransactionParameters,\n BuildSimpleTransactionParameters,\n} from \"./buildTransaction.js\";\nimport { FeePayerOrFeePayerAuthenticatorOrNeither } from \"../types/build.js\";\n\nexport type SignAndSubmitTransactionParameters = WithNetwork<\n { signer?: Account } & FeePayerOrFeePayerAuthenticatorOrNeither &\n (\n | { transaction: AnyRawTransaction }\n | BuildSimpleTransactionParameters\n | BuildMultiAgentTransactionParameters\n )\n>;\n\nexport type SignAndSubmitTransactionResult = TransactionResponse;\n\nexport async function signAndSubmitTransaction(\n this: AptosJSProClient,\n params: SignAndSubmitTransactionParameters\n): Promise<SignAndSubmitTransactionResult> {\n const { aptos, signer } = this.getClients({ network: params.network });\n if (!signer) throw new SignerNotFoundError();\n\n let transaction: AnyRawTransaction;\n if (\"data\" in params) {\n if (signer.type === \"adapter\") {\n return await signer.signAndSubmitTransaction({\n aptos,\n payload: params,\n signer: params.signer,\n });\n } else {\n transaction = await this.buildTransaction(params);\n }\n } else {\n transaction = params.transaction;\n }\n\n return signer.signAndSubmitTransaction({\n aptos,\n transaction,\n signer: params.signer,\n });\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { Network } from \"@aptos-labs/ts-sdk\";\n\nexport const getExplorerUrl = ({\n basePath = \"https://explorer.aptoslabs.com\",\n network = Network.MAINNET,\n path = \"\",\n}: {\n basePath?: string;\n network?: Network;\n path?: string;\n}) => {\n const queryParams = new URLSearchParams();\n queryParams.set(\"network\", network);\n return `${basePath}/${path}?${queryParams.toString()}`;\n};\n","/* eslint-disable headers/header-format */\n\n// MIT License\n//\n// Copyright (c) 2023-present weth, LLC\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n\n// The above copyright notice and this permission notice shall be included in all\n// copies or substantial portions of the Software.\n\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n// SOFTWARE.\n\nexport function parseUnits(value: string, decimals: number) {\n let [integer, fraction = \"0\"] = value.split(\".\");\n\n const negative = integer.startsWith(\"-\");\n if (negative) integer = integer.slice(1);\n\n // trim leading zeros.\n fraction = fraction.replace(/(0+)$/, \"\");\n\n // round off if the fraction is larger than the number of decimals.\n if (decimals === 0) {\n if (Math.round(Number(`.${fraction}`)) === 1) {\n integer = `${BigInt(integer) + BigInt(1)}`;\n }\n fraction = \"\";\n } else if (fraction.length > decimals) {\n const [left, unit, right] = [\n fraction.slice(0, decimals - 1),\n fraction.slice(decimals - 1, decimals),\n fraction.slice(decimals),\n ];\n\n const rounded = Math.round(Number(`${unit}.${right}`));\n if (rounded > 9) {\n fraction = `${BigInt(left) + BigInt(1)}0`.padStart(left.length + 1, \"0\");\n } else fraction = `${left}${rounded}`;\n\n if (fraction.length > decimals) {\n fraction = fraction.slice(1);\n integer = `${BigInt(integer) + BigInt(1)}`;\n }\n\n fraction = fraction.slice(0, decimals);\n } else {\n fraction = fraction.padEnd(decimals, \"0\");\n }\n\n return BigInt(`${negative ? \"-\" : \"\"}${integer}${fraction}`);\n}\n\nexport const parseApt = (value: string) => parseUnits(value, 8);\n\nexport const formatUnits = (value: bigint, decimals: number) => {\n let display = value.toString();\n\n const negative = display.startsWith(\"-\");\n if (negative) display = display.slice(1);\n\n display = display.padStart(decimals, \"0\");\n\n // eslint-disable-next-line prefer-const\n let [integer, fraction] = [\n display.slice(0, display.length - decimals),\n display.slice(display.length - decimals),\n ];\n fraction = fraction.replace(/(0+)$/, \"\");\n return `${negative ? \"-\" : \"\"}${integer || \"0\"}${\n fraction ? `.${fraction}` : \"\"\n }`;\n};\n\nexport const formatApt = (value: bigint) => formatUnits(value, 8);\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport { Account } from \"@aptos-labs/ts-sdk\";\nimport { AccountInfo, SignerClient } from \"../types\";\n\nexport const convertAptosAccountToAccountInfo = (\n account: Account | undefined\n): AccountInfo | undefined =>\n account\n ? { address: account.accountAddress, publicKey: account.publicKey }\n : undefined;\n\nexport const convertAptosAccountToSigner = (\n account: Account | undefined\n): SignerClient | undefined =>\n account\n ? {\n type: \"custom\",\n signAndSubmitTransaction: async ({ aptos, signer, ...params }) =>\n aptos.signAndSubmitTransaction({\n signer: signer ?? account,\n ...params,\n }),\n signTransaction: async ({ signer, transaction }) => ({\n rawTransaction: transaction.rawTransaction.bcsToBytes(),\n authenticator: (signer ?? account).signTransactionWithAuthenticator(\n transaction\n ),\n }),\n }\n : undefined;\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\nimport {\n AccountAddress,\n AccountAddressInput,\n DeriveScheme,\n} from \"@aptos-labs/ts-sdk\";\nimport { sha3_256 } from \"@noble/hashes/sha3\";\n\n/**\n * Deterministically derives an object address from the source address and\n * an object: sha3_256([source | object addr | 0xFC]).\n *\n * Equivalent of `object::create_user_derived_object_address` in move.\n *\n * @param source - The source address\n * @param object - The object address\n * @returns The derived object address\n */\nexport const createUserDerivedObjectAddress = (\n source: AccountAddressInput,\n object: AccountAddressInput\n): AccountAddress => {\n const sourceBytes = AccountAddress.from(source).bcsToBytes();\n\n const objectBytes = AccountAddress.from(object).bcsToBytes();\n\n const bytes = new Uint8Array([\n ...sourceBytes,\n ...objectBytes,\n DeriveScheme.DeriveObjectAddressFromObject,\n ]);\n\n return new AccountAddress(sha3_256(bytes));\n};\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\nimport { AccountAddress, createObjectAddress } from \"@aptos-labs/ts-sdk\";\nimport { createUserDerivedObjectAddress } from \"./objects.js\";\n\n/**\n * Returns the paired Fungible Asset metadata paired for a given coin type. If the\n * coin type is Aptos Coin, it will return a special address for the metadata.\n *\n * @param coinType - The coin type (e.g. 0x1::aptos_coin::AptosCoin, 0x31::moon_coin::MoonCoin)\n * @returns The paired metadata address for the given coin type\n */\nexport const getPairedMetadata = (coinType: string) =>\n coinType === \"0x1::aptos_coin::AptosCoin\"\n ? AccountAddress.A.toStringLong()\n : createObjectAddress(AccountAddress.A, coinType).toStringLong();\n\n/**\n * Returns the associated fungible asset store for a given metadata and account address.\n *\n * @param metadata - The metadata address (e.g. 0xfa)\n * @param accountAddress - The account address\n * @returns The associated fungible asset store address\n */\nexport const getPrimaryFungibleStore = (\n accountAddress: string,\n metadata: string\n) =>\n createUserDerivedObjectAddress(\n AccountAddress.fromString(accountAddress),\n metadata\n ).toStringLong();\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\nimport {\n AccountAddress,\n AccountAddressInput,\n WriteSetChange,\n WriteSetChangeWriteResource,\n} from \"@aptos-labs/ts-sdk\";\n\nexport function isWriteResourceChange(\n change: WriteSetChange\n): change is WriteSetChangeWriteResource {\n return change.type === \"write_resource\";\n}\n\n/**\n * More of a precaution, but we should normalize all parsed addresses to prevent\n * mismatches related to leading zeros\n * @param address\n */\nexport function normalizeAddress(address: AccountAddressInput) {\n return AccountAddress.from(address).toStringLong();\n}\n\n/**\n * The (creatorAddress, eventStreamCreationNum) pair uniquely identifies an event stream on chain\n * @param creatorAddress\n * @param creationNum\n */\nexport function serializeEventGuid(\n creatorAddress: AccountAddressInput,\n creationNum: string\n) {\n return `${normalizeAddress(creatorAddress)}_${creationNum}`;\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\n\n/* eslint-disable @typescript-eslint/no-explicit-any */\n/* eslint-disable @typescript-eslint/no-empty-object-type */\n\nimport { Event, WriteSetChange } from \"@aptos-labs/ts-sdk\";\n\nexport abstract class EventParser<Requires, Provides> {\n readonly kind = \"event\" as const;\n\n //! Required to preserve types in subclass\n protected __requires__!: Requires;\n protected __provides__!: Provides;\n\n abstract parse(ctx: Requires & Provides, event: Event): void;\n}\n\nexport abstract class WritesetParser<Requires, Provides> {\n readonly kind = \"writeset\" as const;\n\n //! Required to preserve types in subclass\n protected __requires__!: Requires;\n protected __provides__!: Provides;\n\n abstract parse(ctx: Requires & Provides, change: WriteSetChange): void;\n}\n\nexport type AnyParser = EventParser<any, any> | WritesetParser<any, any>;\n\ntype ParserRequires<T> =\n T extends EventParser<infer R, any>\n ? R\n : T extends WritesetParser<infer R, any>\n ? R\n : never;\n\ntype ParserProvides<T> =\n T extends EventParser<any, infer P>\n ? P\n : T extends WritesetParser<any, infer P>\n ? P\n : never;\n\ntype Merge<A, B> = Omit<A, keyof B> & B;\n\ntype InnerValidateParser<Parser, Context> = Parser extends AnyParser\n ? Context extends ParserRequires<Parser>\n ? Parser\n : {\n __error: \"❌ Missing required context\";\n required: ParserRequires<Parser>;\n provided: Context;\n }\n : never;\n\nexport type ValidateParsers<\n Parsers extends readonly AnyParser[],\n AccumContext = {},\n> = Parsers extends [infer First, ...infer Rest]\n ? InnerValidateParser<First, AccumContext> extends { __error: string }\n ? InnerValidateParser<First, AccumContext>\n : First extends AnyParser\n ? Rest extends readonly AnyParser[]\n ? ValidateParsers<\n Rest,\n Merge<AccumContext, ParserProvides<First>>\n > extends { __error: string }\n ? ValidateParsers<Rest, Merge<AccumContext, ParserProvides<First>>>\n : [\n First,\n ...ValidateParsers<\n Rest,\n Merge<AccumContext, ParserProvides<First>>\n >,\n ]\n : [First]\n : never\n : [];\n\nexport type ContextOfParsers<\n Parsers extends readonly AnyParser[],\n Accum = {},\n> = Parsers extends [infer First, ...infer Rest]\n ? First extends AnyParser\n ? Rest extends readonly AnyParser[]\n ? ContextOfParsers<Rest, Merge<Accum, ParserProvides<First>>>\n : Merge<Accum, ParserProvides<First>>\n : Accum\n : Accum;\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\nimport type { Event } from \"@aptos-labs/ts-sdk\";\nimport { normalizeAddress, serializeEventGuid } from \"../shared\";\nimport { EventParser } from \"../../../types/parsers\";\n\nexport type CoinEventParserRequiredContext = {\n coinEventGuidToCoinType: { [eventGuid: string]: string };\n};\n\nexport type CoinEventParserProvides = {\n coinBalanceChanges: {\n [accountAddress: string]: { [coinType: string]: bigint };\n };\n};\n\nexport class CoinEventParser extends EventParser<\n CoinEventParserRequiredContext,\n CoinEventParserProvides\n> {\n private applyChange(\n context: {\n coinEventGuidToCoinType: { [eventGuid: string]: string };\n coinBalanceChanges: {\n [accountAddress: string]: { [coinType: string]: bigint };\n };\n },\n accountAddress: string,\n amount: bigint,\n opts: { creationNum: string } | { coinType: string }\n ) {\n let coinType: string;\n if (\"creationNum\" in opts) {\n const eventGuid = serializeEventGuid(accountAddress, opts.creationNum);\n if (!context.coinEventGuidToCoinType[eventGuid]) return;\n coinType = context.coinEventGuidToCoinType[eventGuid];\n } else {\n coinType = opts.coinType;\n }\n\n const coinBalanceChanges = context.coinBalanceChanges[accountAddress] ?? {};\n\n if (!coinBalanceChanges[coinType]) {\n coinBalanceChanges[coinType] = amount;\n } else {\n coinBalanceChanges[coinType]! += amount;\n }\n\n context.coinBalanceChanges[accountAddress] = coinBalanceChanges;\n }\n\n override parse(\n ctx: {\n coinEventGuidToCoinType: { [eventGuid: string]: string };\n coinBalanceChanges: {\n [accountAddress: string]: { [coinType: string]: bigint };\n };\n },\n event: Event\n ) {\n switch (event.type) {\n case \"0x1::coin::DepositEvent\": {\n const accountAddress = normalizeAddress(event.guid.account_address);\n this.applyChange(ctx, accountAddress, BigInt(event.data.amount), {\n creationNum: event.guid.creation_number,\n });\n return true;\n }\n case \"0x1::coin::WithdrawEvent\": {\n const accountAddress = normalizeAddress(event.guid.account_address);\n this.applyChange(ctx, accountAddress, -BigInt(event.data.amount), {\n creationNum: event.guid.creation_number,\n });\n return true;\n }\n case \"0x1::coin::CoinDeposit\": {\n const accountAddress = normalizeAddress(event.data.account);\n this.applyChange(ctx, accountAddress, BigInt(event.data.amount), {\n coinType: event.data.coin_type,\n });\n return true;\n }\n case \"0x1::coin::CoinWithdraw\": {\n const accountAddress = normalizeAddress(event.data.account);\n this.applyChange(ctx, accountAddress, -BigInt(event.data.amount), {\n coinType: event.data.coin_type,\n });\n return true;\n }\n default:\n return false;\n }\n }\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\nimport type { WriteSetChange } from \"@aptos-labs/ts-sdk\";\nimport { isWriteResourceChange, serializeEventGuid } from \"../shared\";\nimport { WritesetParser } from \"../../../types/parsers\";\n\n/**\n * Parser for mapping a coin event guid to its coin type.\n * Useful for linking coin events to their coin type and computing the balance change.\n *\n * When a coin store is created on chain, two new event streams are assigned to the owner account\n * for that coin's deposit and withdrawal events respectively.\n *\n * If a coin balance changes, there will be a writeset change associated to the change\n * and by parsing it, we can map the event stream guids to the coin type of the coin store.\n */\nexport class CoinStoreWritesetParser extends WritesetParser<\n object,\n { coinEventGuidToCoinType: { [eventGuid: string]: string } }\n> {\n override parse(\n ctx: object & {\n coinEventGuidToCoinType: { [eventGuid: string]: string };\n },\n change: WriteSetChange\n ): void {\n if (!isWriteResourceChange(change)) return;\n\n const resource = change.data;\n\n const coinType = resource.type.match(\n new RegExp(`^0x1::coin::CoinStore<(.+)>$`)\n )?.[1];\n\n if (!coinType) return;\n\n const coinResourceData = resource.data as {\n coin: { value: string };\n deposit_events: {\n counter: string;\n guid: { id: { addr: string; creation_num: string } };\n };\n frozen: boolean;\n withdraw_events: {\n counter: string;\n guid: { id: { addr: string; creation_num: string } };\n };\n };\n\n const depositEventGuid = serializeEventGuid(\n coinResourceData.deposit_events.guid.id.addr,\n coinResourceData.deposit_events.guid.id.creation_num\n );\n const withdrawEventGuid = serializeEventGuid(\n coinResourceData.withdraw_events.guid.id.addr,\n coinResourceData.withdraw_events.guid.id.creation_num\n );\n\n ctx.coinEventGuidToCoinType[depositEventGuid] = coinType;\n ctx.coinEventGuidToCoinType[withdrawEventGuid] = coinType;\n }\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\nimport type { Event } from \"@aptos-labs/ts-sdk\";\nimport { normalizeAddress } from \"../shared\";\nimport { EventParser } from \"../../../types/parsers\";\n\nexport type FungibleAssetEventParserRequiredContext = {\n fungibleAssetStoreMetadata: { [storeAddress: string]: string };\n objectOwners: { [objectAddress: string]: string };\n};\n\nexport type FungibleAssetEventParserProvides = {\n fungibleAssetBalanceChanges: {\n [accountAddress: string]: { [assetAddress: string]: bigint };\n };\n};\n\nexport class FungibleAssetEventParser extends EventParser<\n FungibleAssetEventParserRequiredContext,\n FungibleAssetEventParserProvides\n> {\n private applyChange(\n context: FungibleAssetEventParserRequiredContext &\n FungibleAssetEventParserProvides,\n storeAddress: string,\n amount: bigint\n ) {\n const ownerAddress = context.objectOwners[storeAddress];\n const assetAddress = context.fungibleAssetStoreMetadata[storeAddress];\n\n /* c8 ignore next 5 */\n if (ownerAddress === undefined || assetAddress === undefined) {\n // This should never really happen, as changing the balance will produce\n // a writeset change including the fungible store's owner and asset.\n return;\n }\n\n const accountAssetChanges =\n context.fungibleAssetBalanceChanges[ownerAddress] ?? {};\n\n if (!accountAssetChanges[assetAddress]) {\n accountAssetChanges[assetAddress] = amount;\n } else {\n accountAssetChanges[assetAddress] += amount;\n }\n\n context.fungibleAssetBalanceChanges[ownerAddress] = accountAssetChanges;\n }\n\n override parse(\n context: FungibleAssetEventParserRequiredContext &\n FungibleAssetEventParserProvides,\n event: Event\n ) {\n switch (event.type) {\n case \"0x1::fungible_asset::Deposit\": {\n this.applyChange(\n context,\n normalizeAddress(event.data.store),\n BigInt(event.data.amount)\n );\n return true;\n }\n case \"0x1::fungible_asset::Withdraw\": {\n this.applyChange(\n context,\n normalizeAddress(event.data.store),\n -BigInt(event.data.amount)\n );\n return true;\n }\n default:\n return false;\n }\n }\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\nimport type { WriteSetChange } from \"@aptos-labs/ts-sdk\";\nimport { isWriteResourceChange, normalizeAddress } from \"../shared\";\nimport { WritesetParser } from \"../../../types/parsers\";\n\n/**\n * Parse changes in fungible stores and populate a map of the store addresses to the contained asset's metadata address.\n * Useful linking fungible store deposits and withdrawals to the contained asset.\n */\nexport class FungibleAssetStoreWritesetParser extends WritesetParser<\n object,\n { fungibleAssetStoreMetadata: { [storeAddress: string]: string } }\n> {\n override parse(\n context: object & {\n fungibleAssetStoreMetadata: { [storeAddress: string]: string };\n },\n change: WriteSetChange\n ) {\n if (\n !isWriteResourceChange(change) ||\n change.data.type !== \"0x1::fungible_asset::FungibleStore\"\n ) {\n return false;\n }\n\n const resource = change.data;\n\n const storeAddress = normalizeAddress(change.address);\n const { metadata } = resource.data as { metadata: { inner: string } };\n context.fungibleAssetStoreMetadata[storeAddress] = normalizeAddress(\n metadata.inner\n );\n\n return true;\n }\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\nimport { WriteSetChange } from \"@aptos-labs/ts-sdk\";\nimport { isWriteResourceChange, normalizeAddress } from \"../shared\";\nimport { WritesetParser } from \"../../../types/parsers\";\n\nexport class ObjectOwnersWritesetParser extends WritesetParser<\n object,\n { objectOwners: { [objectAddress: string]: string } }\n> {\n override parse(\n context: object & { objectOwners: { [objectAddress: string]: string } },\n change: WriteSetChange\n ) {\n if (\n !isWriteResourceChange(change) ||\n change.data.type !== \"0x1::object::ObjectCore\"\n ) {\n return false;\n }\n\n const resource = change.data;\n\n const objectAddress = normalizeAddress(change.address);\n const { owner } = resource.data as { owner: string };\n context.objectOwners[objectAddress] = normalizeAddress(owner);\n\n return true;\n }\n}\n","// Copyright © Aptos\n// SPDX-License-Identifier: Apache-2.0\nimport { UserTransactionResponse } from \"@aptos-labs/ts-sdk\";\nimport {\n AnyParser,\n ContextOfParsers,\n ValidateParsers,\n} from \"../../types/parsers\";\nimport { getPairedMetadata } from \"../fungibleAssets\";\nimport {\n CoinEventParser,\n CoinEventParserProvides,\n} from \"./parsers/CoinEventParser\";\nimport { CoinStoreWritesetParser } from \"./parsers/CoinStoreWritesetParser\";\nimport {\n FungibleAssetEventParser,\n FungibleAssetEventParserProvides,\n} from \"./parsers/FungibleAssetEventParser\";\nimport { FungibleAssetStoreWritesetParser } from \"./parsers/FungibleAssetStoreWritesetParser\";\nimport { ObjectOwnersWritesetParser } from \"./parsers/ObjectOwnersWritesetParser\";\n\nexport default class TransactionParser<\n Parsers extends readonly AnyParser[] = readonly AnyParser[],\n> {\n private readonly defaultContext: ContextOfParsers<Parsers>;\n\n /**\n * Creates a new TransactionParser with the given parsers and initial context. This parser takes a\n * transaction and parses it into a context which can be used to get balance changes\n *\n * @example\n * ```ts\n * const parser = new TransactionParser([\n * new CoinStoreWritesetParser(),\n * new CoinEventParser(),\n * ], {\n * coinEventGuidToCoinType: {},\n * coinBalanceChanges: {},\n * });\n * ```\n *\n * @param parsers - EventParsers and WritesetParsers to use to parse the transaction.\n * @param initial - Initial context to use for parsing.\n */\n constructor(\n public parsers: ValidateParsers<Parsers> & Parsers,\n initial: ContextOfParsers<Parsers>\n ) {\n this.defaultContext = initial;\n }\n\n parseTransaction(transaction: UserTransactionResponse) {\n const context = { ...this.defaultContext };\n\n const writesets = transaction.changes;\n\n writesets.forEach((writeset) => {\n for (const p of this.parsers) {\n if (p.kind === \"writeset\") {\n p.parse(context, writeset);\n }\n }\n });\n\n const events = transaction.events;\n events.forEach((event) => {\n for (const p of this.parsers) {\n if (p.kind === \"event\") {\n p.parse(context, event);\n }\n }\n });\n\n return context;\n }\n\n /**\n * Create a new TransactionParser with default event and writeset parsers.\n *\n * @example\n * ```ts\n * const parser = TransactionParser.create();\n * const context = parser.parseTransaction(transaction);\n * const balanceChanges = TransactionParser.getBalanceChanges(context);\n * ```\n */\n static create() {\n return new TransactionParser(\n [\n new ObjectOwnersWritesetParser(),\n new FungibleAssetStoreWritesetParser(),\n new FungibleAssetEventParser(),\n new CoinStoreWritesetParser(),\n new CoinEventParser(),\n ],\n {\n coinEventGuidToCoinType: {},\n coinBalanceChanges: {},\n fungibleAssetBalanceChanges: {},\n fungibleAssetStoreMetadata: {},\n objectOwners: {},\n }\n );\n }\n\n /**\n * Get the account balance changes for a given context. Assets will default to `CoinType` if\n * it exists for an asset, otherwise it will default to the metadata address of the fungible\n * asset store.\n */\n static getBalanceChanges(\n ctx: FungibleAssetEventParserProvides & CoinEventParserProvides\n ) {\n const balanceChanges: {\n [address: string]: {\n [asset: string]: {\n delta: bigint;\n coinType: string | undefined;\n faAddress: string;\n };\n };\n } = {};\n\n Object.entries(ctx.coinBalanceChanges).forEach(([address, changes]) =>\n Object.entries(changes).forEach(([coinType, delta]) => {\n if (!balanceChanges[address]) balanceChanges[address] = {};\n balanceChanges[address][coinType] = {\n delta,\n coinType,\n faAddress: getPairedMetadata(coinType),\n };\n })\n );\n\n Object.entries(ctx.fungibleAssetBalanceChanges).forEach(\n ([address, changes]) =>\n Object.entries(changes).forEach(([faAddress, delta]) => {\n // If the address doesn't have a balance change already, create one.\n if (!balanceChanges[address]) {\n return (balanceChanges[address] = {\n [faAddress]: {\n delta,\n faAddress,\n coinType: undefined,\n },\n });\n }\n\n // If the address already has a balance change for this fungible asset, add the delta to it.\n const pairedCoinBalanceChange = Object.entries(\n balanceChanges[address]\n ).find(([, change]) => change.faAddress === faAddress);\n\n if (pairedCoinBalanceChange) {\n const [coinType, change] = pairedCoinBalanceChange;\n balanceChanges[address][coinType] = {\n ...change,\n delta: change.delta + delta,\n };\n } else {\n balanceChanges[address][faAddress] = {\n delta,\n faAddress,\n coinType: undefined,\n };\n }\n })\n );\n\n return balanceChanges;\n }\n}\n"],"mappings":"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","names":["index_exports","__export","Account_Transactions_Select_Column","Address_Events_Summary_Select_Column","Address_Version_From_Events_Select_Column","Address_Version_From_Move_Resources_Select_Column","AptosBaseError","AptosJSProClient","AptosName","Auth_Key_Account_Addresses_Select_Column","Block_Metadata_Transactions_Select_Column","CoinEventParser","CoinStoreWritesetParser","Coin_Activities_Select_Column","Coin_Activities_Select_Column_Coin_Activities_Aggregate_Bool_Exp_Bool_And_Arguments_Columns","Coin_Activities_Select_Column_Coin_Activities_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns","Coin_Balances_Select_Column","Coin_Infos_Select_Column","Coin_Supply_Select_Column","Collection_Datas_Select_Column","Current_Ans_Lookup_Select_Column","Current_Ans_Lookup_V2_Select_Column","Current_Aptos_Names_Select_Column","Current_Aptos_Names_Select_Column_Current_Aptos_Names_Aggregate_Bool_Exp_Bool_And_Arguments_Columns","Current_Aptos_Names_Select_Column_Current_Aptos_Names_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns","Current_Coin_Balances_Select_Column","Current_Collection_Datas_Select_Column","Current_Collection_Ownership_V2_View_Select_Column","Current_Collections_V2_Select_Column","Current_Delegated_Staking_Pool_Balances_Select_Column","Current_Delegated_Voter_Select_Column","Current_Delegator_Balances_Select_Column","Current_Fungible_Asset_Balances_Select_Column","Current_Objects_Select_Column","Current_Staking_Pool_Voter_Select_Column","Current_Table_Items_Select_Column","Current_Token_Datas_Select_Column","Current_Token_Datas_V2_Select_Column","Current_Token_Ownerships_Select_Column","Current_Token_Ownerships_V2_Select_Column","Current_Token_Ownerships_V2_Select_Column_Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_And_Arguments_Columns","Current_Token_Ownerships_V2_Select_Column_Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns","Current_Token_Pending_Claims_Select_Column","Current_Token_Royalty_V1_Select_Column","Cursor_Ordering","Delegated_Staking_Activities_Select_Column","Delegated_Staking_Pool_Balances_Select_Column","Delegated_Staking_Pools_Select_Column","Delegator_Distinct_Pool_Select_Column","Events_Select_Column","FungibleAssetEventParser","FungibleAssetStoreWritesetParser","Fungible_Asset_Activities_Select_Column","Fungible_Asset_Metadata_Select_Column","IndexerNotInitializedError","Indexer_Status_Select_Column","Ledger_Infos_Select_Column","Move_Resources_Select_Column","Nft_Metadata_Crawler_Parsed_Asset_Uris_Select_Column","Num_Active_Delegator_Per_Pool_Select_Column","ObjectOwnersWritesetParser","Order_By","Processor_Status_Select_Column","Proposal_Votes_Select_Column","Public_Key_Auth_Keys_Select_Column","SenderNotFoundError","Signatures_Select_Column","SignerNotFoundError","Table_Items_Select_Column","Table_Metadatas_Select_Column","Token_Activities_Select_Column","Token_Activities_V2_Select_Column","Token_Activities_V2_Select_Column_Token_Activities_V2_Aggregate_Bool_Exp_Bool_And_Arguments_Columns","Token_Activities_V2_Select_Column_Token_Activities_V2_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns","Token_Datas_Select_Column","Token_Ownerships_Select_Column","Tokens_Select_Column","TransactionParser","User_Transactions_Select_Column","buildTransaction","convertAptosAccountToAccountInfo","convertAptosAccountToSigner","createIndexerClient","createUserDerivedObjectAddress","fetchAccountCoins","fetchAccountCollections","fetchAccountTokens","fetchAccountTransactions","fetchAddressFromName","fetchAptBalance","fetchBalance","fetchEstimatedGasPrice","fetchFungibleAssetMetadata","fetchLedgerInfo","fetchNameFromAddress","fetchProcessorStatus","fetchResourceType","fetchResources","fetchTokenData","fetchTransaction","fetchUserTransactions","fetchViewModule","formatApt","formatUnits","getClients","getExplorerUrl","getPairedMetadata","getPrimaryFungibleStore","parseApt","parseUnits","signAndSubmitTransaction","signTransaction","simulateTransaction","submitTransaction","waitForTransaction","__toCommonJS","import_middleware","import_vanilla","import_ts_sdk","import_graphql_request","import_graphql_tag","CollectionDataFieldsFragmentDoc","TokenDataFieldsFragmentDoc","TokenOwnershipFieldsFragmentDoc","CollectionOwnershipFragmentDoc","PrimaryAptosNameFragmentDoc","FungibleAssetMetadataFieldsFragmentDoc","FungibleAssetActivityFragmentDoc","BaseTokenActivityFragmentDoc","TokenActivityFragmentDoc","DelegatedStakingActivityFragmentDoc","UserTransactionFragmentDoc","AccountTransactionFragmentDoc","FungibleAssetBalanceFieldsFragmentDoc","GetAccountTokensTotalDocument","GetAccountTokenOwnershipsDocument","GetCurrentTokenDataDocument","GetAccountCollectionsDocument","GetTokenDataDocument","GetActivitiesAggregateDocument","GetTokenActivitiesDocument","GetTokenAcquisitionActivityDocument","GetAccountTransactionsDocument","GetUserTransactionsDocument","GetFungibleAssetMetadataDocument","GetFungibleAssetBalancesDocument","GetDelegatedStakingRoyaltiesDocument","GetDelegatedStakingDocument","GetDelegationPoolsDocument","GetNumberOfDelegatorsDocument","defaultWrapper","action","_operationName","_operationType","_variables","getSdk","client","withWrapper","variables","requestHeaders","signal","wrappedRequestHeaders","Account_Transactions_Select_Column","Address_Events_Summary_Select_Column","Address_Version_From_Events_Select_Column","Address_Version_From_Move_Resources_Select_Column","Auth_Key_Account_Addresses_Select_Column","Block_Metadata_Transactions_Select_Column","Coin_Activities_Select_Column","Coin_Activities_Select_Column_Coin_Activities_Aggregate_Bool_Exp_Bool_And_Arguments_Columns","Coin_Activities_Select_Column_Coin_Activities_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns","Coin_Balances_Select_Column","Coin_Infos_Select_Column","Coin_Supply_Select_Column","Collection_Datas_Select_Column","Current_Ans_Lookup_Select_Column","Current_Ans_Lookup_V2_Select_Column","Current_Aptos_Names_Select_Column","Current_Aptos_Names_Select_Column_Current_Aptos_Names_Aggregate_Bool_Exp_Bool_And_Arguments_Columns","Current_Aptos_Names_Select_Column_Current_Aptos_Names_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns","Current_Coin_Balances_Select_Column","Current_Collection_Datas_Select_Column","Current_Collection_Ownership_V2_View_Select_Column","Current_Collections_V2_Select_Column","Current_Delegated_Staking_Pool_Balances_Select_Column","Current_Delegated_Voter_Select_Column","Current_Delegator_Balances_Select_Column","Current_Fungible_Asset_Balances_Select_Column","Current_Objects_Select_Column","Current_Staking_Pool_Voter_Select_Column","Current_Table_Items_Select_Column","Current_Token_Datas_Select_Column","Current_Token_Datas_V2_Select_Column","Current_Token_Ownerships_Select_Column","Current_Token_Ownerships_V2_Select_Column","Current_Token_Ownerships_V2_Select_Column_Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_And_Arguments_Columns","Current_Token_Ownerships_V2_Select_Column_Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns","Current_Token_Pending_Claims_Select_Column","Current_Token_Royalty_V1_Select_Column","Cursor_Ordering","Delegated_Staking_Activities_Select_Column","Delegated_Staking_Pool_Balances_Select_Column","Delegated_Staking_Pools_Select_Column","Delegator_Distinct_Pool_Select_Column","Events_Select_Column","Fungible_Asset_Activities_Select_Column","Fungible_Asset_Metadata_Select_Column","Indexer_Status_Select_Column","Ledger_Infos_Select_Column","Move_Resources_Select_Column","Nft_Metadata_Crawler_Parsed_Asset_Uris_Select_Column","Num_Active_Delegator_Per_Pool_Select_Column","Order_By","Processor_Status_Select_Column","Proposal_Votes_Select_Column","Public_Key_Auth_Keys_Select_Column","Signatures_Select_Column","Table_Items_Select_Column","Table_Metadatas_Select_Column","Token_Activities_Select_Column","Token_Activities_V2_Select_Column","Token_Activities_V2_Select_Column_Token_Activities_V2_Aggregate_Bool_Exp_Bool_And_Arguments_Columns","Token_Activities_V2_Select_Column_Token_Activities_V2_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns","Token_Datas_Select_Column","Token_Ownerships_Select_Column","Tokens_Select_Column","User_Transactions_Select_Column","createIndexerClient","endpoint","options","graphqlClient","getSdk","import_ts_sdk","createPaginatedQuery","limit","offset","queryFn","result","hasNextPage","hasPrevPage","data","nextCursor","prevCursor","AptosBaseError","shortMessage","options","IndexerNotInitializedError","AptosBaseError","SignerNotFoundError","_domain","_subdomain","AptosName","domain","subdomain","__privateAdd","normalized","regex","match","parsedSubdomain","parsedDomain","__privateSet","__privateGet","APTOS_NAMES_ENDPOINT","fixBadAptosUri","uri","match","APTOS_NAMES_ENDPOINT","normalizePrimaryAptosName","aptosName","AptosName","normalizeFungibleAssetMetadata","metadata","normalizeFungibleAssetBalances","balances","balance","normalizeCollectionData","collectionData","normalizeTokenData","tokenData","fixedUri","fixBadAptosUri","normalizeCollectionData","normalizeBaseTokenActivity","activity","normalizeAccountTransaction","transaction","fungibleAssetActivities","tokenActivities","delegatedStakingActivities","e","normalizeFungibleAssetActivity","normalizeTokenActivity","normalizeDelegatedStakingActivity","normalizePrimaryAptosName","normalizeFungibleAssetMetadata","normalizeUserTransaction","fetchAccountCoins","address","network","limit","offset","orderBy","where","indexer","IndexerNotInitializedError","createPaginatedQuery","response","balances","e","normalizeFungibleAssetBalances","getClients","selectedNetwork","aptos","indexer","import_ts_sdk","fetchAptBalance","address","network","aptos","amount","import_ts_sdk","fetchBalance","address","asset","network","aptos","isCoinType","amount","fetchProcessorStatus","network","processor","aptos","result","import_ts_sdk","asyncTryOrDefault","fn","defaultValue","fetchAddressFromName","network","name","aptos","address","asyncTryOrDefault","fetchNameFromAddress","network","address","aptos","name","asyncTryOrDefault","AptosName","fetchEstimatedGasPrice","network","aptos","result","fetchTransaction","network","params","aptos","import_ts_sdk","fetchResourceType","network","accountAddress","params","aptos","fetchResources","network","params","aptos","asyncTryOrDefault","fetchLedgerInfo","network","aptos","result","fetchTokenData","params","indexer","IndexerNotInitializedError","result","normalizeTokenData","normalizeBaseTokenActivity","import_ts_sdk","SenderNotFoundError","AptosBaseError","fetchAccountCollections","network","limit","offset","orderBy","where","params","indexer","IndexerNotInitializedError","createPaginatedQuery","response","collections","collection","normalizeCollectionData","fetchViewModule","params","aptos","import_ts_sdk","fetchFungibleAssetMetadata","network","params","aptos","result","normalizeFungibleAssetMetadata","import_ts_sdk","fetchAccountTransactions","network","address","limit","offset","orderBy","where","fungibleAssetActivitiesWhere","tokenActivitiesWhere","fungibleAssetActivitiesOrderBy","tokenActivitiesOrderBy","indexer","IndexerNotInitializedError","createPaginatedQuery","response","normalizeAccountTransaction","import_ts_sdk","fetchAccountTokens","network","address","collectionId","limit","offset","orderBy","where","indexer","IndexerNotInitializedError","createPaginatedQuery","response","tokens","token","normalizeTokenData","fetchUserTransactions","network","limit","offset","orderBy","where","indexer","IndexerNotInitializedError","createPaginatedQuery","response","normalizeUserTransaction","import_ts_sdk","buildTransaction","args","network","data","transactionOptions","sender","withFeePayer","account","aptos","activeAddress","SenderNotFoundError","options","import_ts_sdk","submitTransaction","network","transaction","params","aptos","signedTransaction","data","waitForTransaction","network","params","aptos","simulateTransaction","params","aptos","signTransaction","network","params","aptos","signer","SignerNotFoundError","signAndSubmitTransaction","params","aptos","signer","SignerNotFoundError","transaction","_store","_aptos","_indexer","AptosJSProClient","params","__privateAdd","account","__privateGet","network","signer","config","callback","state","clientConfig","networkConfig","userProvidedConfig","apiKey","aptosConfig","indexerUrl","userProvidedOptions","authHeaders","options","createIndexerClient","__privateSet","getClients","fetchAccountTransactions","fetchAccountCollections","fetchAccountCoins","fetchAccountTokens","fetchTransaction","fetchResources","fetchResourceType","fetchProcessorStatus","fetchTokenData","fetchFungibleAssetMetadata","fetchLedgerInfo","fetchAddressFromName","fetchNameFromAddress","fetchAptBalance","fetchBalance","fetchEstimatedGasPrice","fetchViewModule","fetchUserTransactions","submitTransaction","waitForTransaction","simulateTransaction","signTransaction","signAndSubmitTransaction","buildTransaction","import_ts_sdk","getExplorerUrl","basePath","network","path","queryParams","parseUnits","value","decimals","integer","fraction","negative","left","unit","right","rounded","parseApt","formatUnits","display","formatApt","convertAptosAccountToAccountInfo","account","convertAptosAccountToSigner","aptos","signer","params","transaction","import_ts_sdk","import_sha3","createUserDerivedObjectAddress","source","object","sourceBytes","objectBytes","bytes","import_ts_sdk","getPairedMetadata","coinType","getPrimaryFungibleStore","accountAddress","metadata","createUserDerivedObjectAddress","import_ts_sdk","isWriteResourceChange","change","normalizeAddress","address","serializeEventGuid","creatorAddress","creationNum","EventParser","WritesetParser","CoinEventParser","EventParser","context","accountAddress","amount","opts","coinType","eventGuid","serializeEventGuid","coinBalanceChanges","ctx","event","normalizeAddress","CoinStoreWritesetParser","WritesetParser","ctx","change","isWriteResourceChange","resource","coinType","coinResourceData","depositEventGuid","serializeEventGuid","withdrawEventGuid","FungibleAssetEventParser","EventParser","context","storeAddress","amount","ownerAddress","assetAddress","accountAssetChanges","event","normalizeAddress","FungibleAssetStoreWritesetParser","WritesetParser","context","change","isWriteResourceChange","resource","storeAddress","normalizeAddress","metadata","ObjectOwnersWritesetParser","WritesetParser","context","change","isWriteResourceChange","resource","objectAddress","normalizeAddress","owner","TransactionParser","_TransactionParser","parsers","initial","transaction","context","writeset","p","event","ObjectOwnersWritesetParser","FungibleAssetStoreWritesetParser","FungibleAssetEventParser","CoinStoreWritesetParser","CoinEventParser","ctx","balanceChanges","address","changes","coinType","delta","getPairedMetadata","faAddress","pairedCoinBalanceChange","change"]}
|