import { TypedDocumentNode } from '@graphql-typed-document-node/core'; type Maybe = T | null; type InputMaybe = Maybe; type Exact = { [K in keyof T]: T[K]; }; type MakeOptional = Omit & { [SubKey in K]?: Maybe; }; type MakeMaybe = Omit & { [SubKey in K]: Maybe; }; type MakeEmpty = { [_ in K]?: never; }; type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never; }; /** All built-in and custom scalars, mapped to their actual values */ type Scalars = { ID: { input: string; output: string; }; String: { input: string; output: string; }; Boolean: { input: boolean; output: boolean; }; Int: { input: number; output: number; }; Float: { input: number; output: number; }; BigFloat: { input: string; output: string; }; BigInt: { input: string; output: string; }; Cursor: { input: string; output: string; }; Date: { input: string; output: string; }; Datetime: { input: string; output: string; }; JSON: { input: any; output: any; }; }; type GqlAssetTransfer = GqlNode & { decimals: Maybe; /** Reads a single `Wallet` that is related to this `AssetTransfer`. */ from: Maybe; fromId: Scalars['String']['output']; id: Scalars['String']['output']; /** Reads a single `Nft` that is related to this `AssetTransfer`. */ nft: Maybe; nftId: Maybe; /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ nodeId: Scalars['ID']['output']; /** Reads and enables pagination through a set of `OrderTransaction`. */ orderTransactions: GqlOrderTransactionsConnection; /** Reads and enables pagination through a set of `Order`. */ ordersByOrderTransactionAssetTransferIdAndOrderId: GqlAssetTransferOrdersByOrderTransactionAssetTransferIdAndOrderIdManyToManyConnection; /** Reads a single `Wallet` that is related to this `AssetTransfer`. */ to: Maybe; toId: Maybe; /** Reads a single `TokenContract` that is related to this `AssetTransfer`. */ token: Maybe; tokenId: Maybe; /** Reads a single `Transaction` that is related to this `AssetTransfer`. */ transaction: Maybe; transactionBlockNumber: Scalars['BigFloat']['output']; transactionId: Scalars['String']['output']; type: Scalars['String']['output']; value: Scalars['BigFloat']['output']; }; type GqlAssetTransferorderTransactionsArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlAssetTransferordersByOrderTransactionAssetTransferIdAndOrderIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlAssetTransferAggregates = { /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ average: Maybe; /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ distinctCount: Maybe; keys: Maybe>; /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ max: Maybe; /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ min: Maybe; /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ stddevPopulation: Maybe; /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ stddevSample: Maybe; /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ sum: Maybe; /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ variancePopulation: Maybe; /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ varianceSample: Maybe; }; /** A filter to be used against aggregates of `AssetTransfer` object types. */ type GqlAssetTransferAggregatesFilter = { /** Mean average aggregate over matching `AssetTransfer` objects. */ average?: InputMaybe; /** Distinct count aggregate over matching `AssetTransfer` objects. */ distinctCount?: InputMaybe; /** A filter that must pass for the relevant `AssetTransfer` object to be included within the aggregate. */ filter?: InputMaybe; /** Maximum aggregate over matching `AssetTransfer` objects. */ max?: InputMaybe; /** Minimum aggregate over matching `AssetTransfer` objects. */ min?: InputMaybe; /** Population standard deviation aggregate over matching `AssetTransfer` objects. */ stddevPopulation?: InputMaybe; /** Sample standard deviation aggregate over matching `AssetTransfer` objects. */ stddevSample?: InputMaybe; /** Sum aggregate over matching `AssetTransfer` objects. */ sum?: InputMaybe; /** Population variance aggregate over matching `AssetTransfer` objects. */ variancePopulation?: InputMaybe; /** Sample variance aggregate over matching `AssetTransfer` objects. */ varianceSample?: InputMaybe; }; type GqlAssetTransferAverageAggregateFilter = { decimals?: InputMaybe; transactionBlockNumber?: InputMaybe; value?: InputMaybe; }; type GqlAssetTransferAverageAggregates = { /** Mean average of decimals across the matching connection */ decimals: Maybe; /** Mean average of transactionBlockNumber across the matching connection */ transactionBlockNumber: Maybe; /** Mean average of value across the matching connection */ value: Maybe; }; type GqlAssetTransferDistinctCountAggregateFilter = { _blockRange?: InputMaybe; _id?: InputMaybe; decimals?: InputMaybe; fromId?: InputMaybe; id?: InputMaybe; nftId?: InputMaybe; toId?: InputMaybe; tokenId?: InputMaybe; transactionBlockNumber?: InputMaybe; transactionId?: InputMaybe; type?: InputMaybe; value?: InputMaybe; }; type GqlAssetTransferDistinctCountAggregates = { /** Distinct count of _blockRange across the matching connection */ _blockRange: Maybe; /** Distinct count of _id across the matching connection */ _id: Maybe; /** Distinct count of decimals across the matching connection */ decimals: Maybe; /** Distinct count of fromId across the matching connection */ fromId: Maybe; /** Distinct count of id across the matching connection */ id: Maybe; /** Distinct count of nftId across the matching connection */ nftId: Maybe; /** Distinct count of toId across the matching connection */ toId: Maybe; /** Distinct count of tokenId across the matching connection */ tokenId: Maybe; /** Distinct count of transactionBlockNumber across the matching connection */ transactionBlockNumber: Maybe; /** Distinct count of transactionId across the matching connection */ transactionId: Maybe; /** Distinct count of type across the matching connection */ type: Maybe; /** Distinct count of value across the matching connection */ value: Maybe; }; /** A filter to be used against `AssetTransfer` object types. All fields are combined with a logical ‘and.’ */ type GqlAssetTransferFilter = { /** Checks for all expressions in this list. */ and?: InputMaybe>; /** Filter by the object’s `decimals` field. */ decimals?: InputMaybe; /** Filter by the object’s `from` relation. */ from?: InputMaybe; /** Filter by the object’s `fromId` field. */ fromId?: InputMaybe; /** Filter by the object’s `id` field. */ id?: InputMaybe; /** Filter by the object’s `nft` relation. */ nft?: InputMaybe; /** A related `nft` exists. */ nftExists?: InputMaybe; /** Filter by the object’s `nftId` field. */ nftId?: InputMaybe; /** Negates the expression. */ not?: InputMaybe; /** Checks for any expressions in this list. */ or?: InputMaybe>; /** Filter by the object’s `orderTransactions` relation. */ orderTransactions?: InputMaybe; /** Some related `orderTransactions` exist. */ orderTransactionsExist?: InputMaybe; /** Filter by the object’s `to` relation. */ to?: InputMaybe; /** A related `to` exists. */ toExists?: InputMaybe; /** Filter by the object’s `toId` field. */ toId?: InputMaybe; /** Filter by the object’s `token` relation. */ token?: InputMaybe; /** A related `token` exists. */ tokenExists?: InputMaybe; /** Filter by the object’s `tokenId` field. */ tokenId?: InputMaybe; /** Filter by the object’s `transaction` relation. */ transaction?: InputMaybe; /** Filter by the object’s `transactionBlockNumber` field. */ transactionBlockNumber?: InputMaybe; /** Filter by the object’s `transactionId` field. */ transactionId?: InputMaybe; /** Filter by the object’s `type` field. */ type?: InputMaybe; /** Filter by the object’s `value` field. */ value?: InputMaybe; }; type GqlAssetTransferMaxAggregateFilter = { decimals?: InputMaybe; transactionBlockNumber?: InputMaybe; value?: InputMaybe; }; type GqlAssetTransferMaxAggregates = { /** Maximum of decimals across the matching connection */ decimals: Maybe; /** Maximum of transactionBlockNumber across the matching connection */ transactionBlockNumber: Maybe; /** Maximum of value across the matching connection */ value: Maybe; }; type GqlAssetTransferMinAggregateFilter = { decimals?: InputMaybe; transactionBlockNumber?: InputMaybe; value?: InputMaybe; }; type GqlAssetTransferMinAggregates = { /** Minimum of decimals across the matching connection */ decimals: Maybe; /** Minimum of transactionBlockNumber across the matching connection */ transactionBlockNumber: Maybe; /** Minimum of value across the matching connection */ value: Maybe; }; /** A connection to a list of `Order` values, with data from `OrderTransaction`. */ type GqlAssetTransferOrdersByOrderTransactionAssetTransferIdAndOrderIdManyToManyConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `Order`, info from the `OrderTransaction`, and the cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `Order` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `Order` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `Order` values, with data from `OrderTransaction`. */ type GqlAssetTransferOrdersByOrderTransactionAssetTransferIdAndOrderIdManyToManyConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `Order` edge in the connection, with data from `OrderTransaction`. */ type GqlAssetTransferOrdersByOrderTransactionAssetTransferIdAndOrderIdManyToManyEdge = { /** A cursor for use in pagination. */ cursor: Maybe; /** The `Order` at the end of the edge. */ node: Maybe; /** Reads and enables pagination through a set of `OrderTransaction`. */ orderTransactions: GqlOrderTransactionsConnection; }; /** A `Order` edge in the connection, with data from `OrderTransaction`. */ type GqlAssetTransferOrdersByOrderTransactionAssetTransferIdAndOrderIdManyToManyEdgeorderTransactionsArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlAssetTransferPayload = { _entity: Maybe; id: Scalars['ID']['output']; mutation_type: GqlMutationType; }; type GqlAssetTransferPayload_entityArgs = { distinct?: InputMaybe>>; }; type GqlAssetTransferStddevPopulationAggregateFilter = { decimals?: InputMaybe; transactionBlockNumber?: InputMaybe; value?: InputMaybe; }; type GqlAssetTransferStddevPopulationAggregates = { /** Population standard deviation of decimals across the matching connection */ decimals: Maybe; /** Population standard deviation of transactionBlockNumber across the matching connection */ transactionBlockNumber: Maybe; /** Population standard deviation of value across the matching connection */ value: Maybe; }; type GqlAssetTransferStddevSampleAggregateFilter = { decimals?: InputMaybe; transactionBlockNumber?: InputMaybe; value?: InputMaybe; }; type GqlAssetTransferStddevSampleAggregates = { /** Sample standard deviation of decimals across the matching connection */ decimals: Maybe; /** Sample standard deviation of transactionBlockNumber across the matching connection */ transactionBlockNumber: Maybe; /** Sample standard deviation of value across the matching connection */ value: Maybe; }; type GqlAssetTransferSumAggregateFilter = { decimals?: InputMaybe; transactionBlockNumber?: InputMaybe; value?: InputMaybe; }; type GqlAssetTransferSumAggregates = { /** Sum of decimals across the matching connection */ decimals: Scalars['BigInt']['output']; /** Sum of transactionBlockNumber across the matching connection */ transactionBlockNumber: Scalars['BigFloat']['output']; /** Sum of value across the matching connection */ value: Scalars['BigFloat']['output']; }; /** A filter to be used against many `OrderTransaction` object types. All fields are combined with a logical ‘and.’ */ type GqlAssetTransferToManyOrderTransactionFilter = { /** Aggregates across related `OrderTransaction` match the filter criteria. */ aggregates?: InputMaybe; /** Every related `OrderTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ every?: InputMaybe; /** No related `OrderTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ none?: InputMaybe; /** Some related `OrderTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ some?: InputMaybe; }; type GqlAssetTransferVariancePopulationAggregateFilter = { decimals?: InputMaybe; transactionBlockNumber?: InputMaybe; value?: InputMaybe; }; type GqlAssetTransferVariancePopulationAggregates = { /** Population variance of decimals across the matching connection */ decimals: Maybe; /** Population variance of transactionBlockNumber across the matching connection */ transactionBlockNumber: Maybe; /** Population variance of value across the matching connection */ value: Maybe; }; type GqlAssetTransferVarianceSampleAggregateFilter = { decimals?: InputMaybe; transactionBlockNumber?: InputMaybe; value?: InputMaybe; }; type GqlAssetTransferVarianceSampleAggregates = { /** Sample variance of decimals across the matching connection */ decimals: Maybe; /** Sample variance of transactionBlockNumber across the matching connection */ transactionBlockNumber: Maybe; /** Sample variance of value across the matching connection */ value: Maybe; }; /** A connection to a list of `AssetTransfer` values. */ type GqlAssetTransfersConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `AssetTransfer` and cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `AssetTransfer` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `AssetTransfer` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `AssetTransfer` values. */ type GqlAssetTransfersConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `AssetTransfer` edge in the connection. */ type GqlAssetTransfersEdge = { /** A cursor for use in pagination. */ cursor: Maybe; /** The `AssetTransfer` at the end of the edge. */ node: Maybe; }; /** Grouping methods for `AssetTransfer` for usage during aggregation. */ declare enum GqlAssetTransfersGroupBy { DECIMALS = "DECIMALS", FROM_ID = "FROM_ID", ID = "ID", NFT_ID = "NFT_ID", TOKEN_ID = "TOKEN_ID", TO_ID = "TO_ID", TRANSACTION_BLOCK_NUMBER = "TRANSACTION_BLOCK_NUMBER", TRANSACTION_ID = "TRANSACTION_ID", TYPE = "TYPE", VALUE = "VALUE" } type GqlAssetTransfersHavingAverageInput = { decimals?: InputMaybe; transactionBlockNumber?: InputMaybe; value?: InputMaybe; }; type GqlAssetTransfersHavingDistinctCountInput = { decimals?: InputMaybe; transactionBlockNumber?: InputMaybe; value?: InputMaybe; }; /** Conditions for `AssetTransfer` aggregates. */ type GqlAssetTransfersHavingInput = { AND?: InputMaybe>; OR?: InputMaybe>; average?: InputMaybe; distinctCount?: InputMaybe; max?: InputMaybe; min?: InputMaybe; stddevPopulation?: InputMaybe; stddevSample?: InputMaybe; sum?: InputMaybe; variancePopulation?: InputMaybe; varianceSample?: InputMaybe; }; type GqlAssetTransfersHavingMaxInput = { decimals?: InputMaybe; transactionBlockNumber?: InputMaybe; value?: InputMaybe; }; type GqlAssetTransfersHavingMinInput = { decimals?: InputMaybe; transactionBlockNumber?: InputMaybe; value?: InputMaybe; }; type GqlAssetTransfersHavingStddevPopulationInput = { decimals?: InputMaybe; transactionBlockNumber?: InputMaybe; value?: InputMaybe; }; type GqlAssetTransfersHavingStddevSampleInput = { decimals?: InputMaybe; transactionBlockNumber?: InputMaybe; value?: InputMaybe; }; type GqlAssetTransfersHavingSumInput = { decimals?: InputMaybe; transactionBlockNumber?: InputMaybe; value?: InputMaybe; }; type GqlAssetTransfersHavingVariancePopulationInput = { decimals?: InputMaybe; transactionBlockNumber?: InputMaybe; value?: InputMaybe; }; type GqlAssetTransfersHavingVarianceSampleInput = { decimals?: InputMaybe; transactionBlockNumber?: InputMaybe; value?: InputMaybe; }; /** Methods to use when ordering `AssetTransfer`. */ declare enum GqlAssetTransfersOrderBy { DECIMALS_ASC = "DECIMALS_ASC", DECIMALS_DESC = "DECIMALS_DESC", FROM_ID_ASC = "FROM_ID_ASC", FROM_ID_DESC = "FROM_ID_DESC", ID_ASC = "ID_ASC", ID_DESC = "ID_DESC", NATURAL = "NATURAL", NFT_BY_NFT_ID__COLLECTION_ID_ASC = "NFT_BY_NFT_ID__COLLECTION_ID_ASC", NFT_BY_NFT_ID__COLLECTION_ID_DESC = "NFT_BY_NFT_ID__COLLECTION_ID_DESC", NFT_BY_NFT_ID__ID_ASC = "NFT_BY_NFT_ID__ID_ASC", NFT_BY_NFT_ID__ID_DESC = "NFT_BY_NFT_ID__ID_DESC", NFT_BY_NFT_ID__METADATA_ASC = "NFT_BY_NFT_ID__METADATA_ASC", NFT_BY_NFT_ID__METADATA_DESC = "NFT_BY_NFT_ID__METADATA_DESC", NFT_BY_NFT_ID__TOKEN_ID_ASC = "NFT_BY_NFT_ID__TOKEN_ID_ASC", NFT_BY_NFT_ID__TOKEN_ID_DESC = "NFT_BY_NFT_ID__TOKEN_ID_DESC", NFT_ID_ASC = "NFT_ID_ASC", NFT_ID_DESC = "NFT_ID_DESC", ORDER_TRANSACTIONS_AVERAGE_ASSET_TRANSFER_ID_ASC = "ORDER_TRANSACTIONS_AVERAGE_ASSET_TRANSFER_ID_ASC", ORDER_TRANSACTIONS_AVERAGE_ASSET_TRANSFER_ID_DESC = "ORDER_TRANSACTIONS_AVERAGE_ASSET_TRANSFER_ID_DESC", ORDER_TRANSACTIONS_AVERAGE_BLOCK_RANGE_ASC = "ORDER_TRANSACTIONS_AVERAGE_BLOCK_RANGE_ASC", ORDER_TRANSACTIONS_AVERAGE_BLOCK_RANGE_DESC = "ORDER_TRANSACTIONS_AVERAGE_BLOCK_RANGE_DESC", ORDER_TRANSACTIONS_AVERAGE_ID_ASC = "ORDER_TRANSACTIONS_AVERAGE_ID_ASC", ORDER_TRANSACTIONS_AVERAGE_ID_DESC = "ORDER_TRANSACTIONS_AVERAGE_ID_DESC", ORDER_TRANSACTIONS_AVERAGE_ORDER_ID_ASC = "ORDER_TRANSACTIONS_AVERAGE_ORDER_ID_ASC", ORDER_TRANSACTIONS_AVERAGE_ORDER_ID_DESC = "ORDER_TRANSACTIONS_AVERAGE_ORDER_ID_DESC", ORDER_TRANSACTIONS_BY_ASSET_TRANSFER_ID__COUNT_ASC = "ORDER_TRANSACTIONS_BY_ASSET_TRANSFER_ID__COUNT_ASC", ORDER_TRANSACTIONS_BY_ASSET_TRANSFER_ID__COUNT_DESC = "ORDER_TRANSACTIONS_BY_ASSET_TRANSFER_ID__COUNT_DESC", ORDER_TRANSACTIONS_COUNT_ASC = "ORDER_TRANSACTIONS_COUNT_ASC", ORDER_TRANSACTIONS_COUNT_DESC = "ORDER_TRANSACTIONS_COUNT_DESC", ORDER_TRANSACTIONS_DISTINCT_COUNT_ASSET_TRANSFER_ID_ASC = "ORDER_TRANSACTIONS_DISTINCT_COUNT_ASSET_TRANSFER_ID_ASC", ORDER_TRANSACTIONS_DISTINCT_COUNT_ASSET_TRANSFER_ID_DESC = "ORDER_TRANSACTIONS_DISTINCT_COUNT_ASSET_TRANSFER_ID_DESC", ORDER_TRANSACTIONS_DISTINCT_COUNT_BLOCK_RANGE_ASC = "ORDER_TRANSACTIONS_DISTINCT_COUNT_BLOCK_RANGE_ASC", ORDER_TRANSACTIONS_DISTINCT_COUNT_BLOCK_RANGE_DESC = "ORDER_TRANSACTIONS_DISTINCT_COUNT_BLOCK_RANGE_DESC", ORDER_TRANSACTIONS_DISTINCT_COUNT_ID_ASC = "ORDER_TRANSACTIONS_DISTINCT_COUNT_ID_ASC", ORDER_TRANSACTIONS_DISTINCT_COUNT_ID_DESC = "ORDER_TRANSACTIONS_DISTINCT_COUNT_ID_DESC", ORDER_TRANSACTIONS_DISTINCT_COUNT_ORDER_ID_ASC = "ORDER_TRANSACTIONS_DISTINCT_COUNT_ORDER_ID_ASC", ORDER_TRANSACTIONS_DISTINCT_COUNT_ORDER_ID_DESC = "ORDER_TRANSACTIONS_DISTINCT_COUNT_ORDER_ID_DESC", ORDER_TRANSACTIONS_MAX_ASSET_TRANSFER_ID_ASC = "ORDER_TRANSACTIONS_MAX_ASSET_TRANSFER_ID_ASC", ORDER_TRANSACTIONS_MAX_ASSET_TRANSFER_ID_DESC = "ORDER_TRANSACTIONS_MAX_ASSET_TRANSFER_ID_DESC", ORDER_TRANSACTIONS_MAX_BLOCK_RANGE_ASC = "ORDER_TRANSACTIONS_MAX_BLOCK_RANGE_ASC", ORDER_TRANSACTIONS_MAX_BLOCK_RANGE_DESC = "ORDER_TRANSACTIONS_MAX_BLOCK_RANGE_DESC", ORDER_TRANSACTIONS_MAX_ID_ASC = "ORDER_TRANSACTIONS_MAX_ID_ASC", ORDER_TRANSACTIONS_MAX_ID_DESC = "ORDER_TRANSACTIONS_MAX_ID_DESC", ORDER_TRANSACTIONS_MAX_ORDER_ID_ASC = "ORDER_TRANSACTIONS_MAX_ORDER_ID_ASC", ORDER_TRANSACTIONS_MAX_ORDER_ID_DESC = "ORDER_TRANSACTIONS_MAX_ORDER_ID_DESC", ORDER_TRANSACTIONS_MIN_ASSET_TRANSFER_ID_ASC = "ORDER_TRANSACTIONS_MIN_ASSET_TRANSFER_ID_ASC", ORDER_TRANSACTIONS_MIN_ASSET_TRANSFER_ID_DESC = "ORDER_TRANSACTIONS_MIN_ASSET_TRANSFER_ID_DESC", ORDER_TRANSACTIONS_MIN_BLOCK_RANGE_ASC = "ORDER_TRANSACTIONS_MIN_BLOCK_RANGE_ASC", ORDER_TRANSACTIONS_MIN_BLOCK_RANGE_DESC = "ORDER_TRANSACTIONS_MIN_BLOCK_RANGE_DESC", ORDER_TRANSACTIONS_MIN_ID_ASC = "ORDER_TRANSACTIONS_MIN_ID_ASC", ORDER_TRANSACTIONS_MIN_ID_DESC = "ORDER_TRANSACTIONS_MIN_ID_DESC", ORDER_TRANSACTIONS_MIN_ORDER_ID_ASC = "ORDER_TRANSACTIONS_MIN_ORDER_ID_ASC", ORDER_TRANSACTIONS_MIN_ORDER_ID_DESC = "ORDER_TRANSACTIONS_MIN_ORDER_ID_DESC", ORDER_TRANSACTIONS_STDDEV_POPULATION_ASSET_TRANSFER_ID_ASC = "ORDER_TRANSACTIONS_STDDEV_POPULATION_ASSET_TRANSFER_ID_ASC", ORDER_TRANSACTIONS_STDDEV_POPULATION_ASSET_TRANSFER_ID_DESC = "ORDER_TRANSACTIONS_STDDEV_POPULATION_ASSET_TRANSFER_ID_DESC", ORDER_TRANSACTIONS_STDDEV_POPULATION_BLOCK_RANGE_ASC = "ORDER_TRANSACTIONS_STDDEV_POPULATION_BLOCK_RANGE_ASC", ORDER_TRANSACTIONS_STDDEV_POPULATION_BLOCK_RANGE_DESC = "ORDER_TRANSACTIONS_STDDEV_POPULATION_BLOCK_RANGE_DESC", ORDER_TRANSACTIONS_STDDEV_POPULATION_ID_ASC = "ORDER_TRANSACTIONS_STDDEV_POPULATION_ID_ASC", ORDER_TRANSACTIONS_STDDEV_POPULATION_ID_DESC = "ORDER_TRANSACTIONS_STDDEV_POPULATION_ID_DESC", ORDER_TRANSACTIONS_STDDEV_POPULATION_ORDER_ID_ASC = "ORDER_TRANSACTIONS_STDDEV_POPULATION_ORDER_ID_ASC", ORDER_TRANSACTIONS_STDDEV_POPULATION_ORDER_ID_DESC = "ORDER_TRANSACTIONS_STDDEV_POPULATION_ORDER_ID_DESC", ORDER_TRANSACTIONS_STDDEV_SAMPLE_ASSET_TRANSFER_ID_ASC = "ORDER_TRANSACTIONS_STDDEV_SAMPLE_ASSET_TRANSFER_ID_ASC", ORDER_TRANSACTIONS_STDDEV_SAMPLE_ASSET_TRANSFER_ID_DESC = "ORDER_TRANSACTIONS_STDDEV_SAMPLE_ASSET_TRANSFER_ID_DESC", ORDER_TRANSACTIONS_STDDEV_SAMPLE_BLOCK_RANGE_ASC = "ORDER_TRANSACTIONS_STDDEV_SAMPLE_BLOCK_RANGE_ASC", ORDER_TRANSACTIONS_STDDEV_SAMPLE_BLOCK_RANGE_DESC = "ORDER_TRANSACTIONS_STDDEV_SAMPLE_BLOCK_RANGE_DESC", ORDER_TRANSACTIONS_STDDEV_SAMPLE_ID_ASC = "ORDER_TRANSACTIONS_STDDEV_SAMPLE_ID_ASC", ORDER_TRANSACTIONS_STDDEV_SAMPLE_ID_DESC = "ORDER_TRANSACTIONS_STDDEV_SAMPLE_ID_DESC", ORDER_TRANSACTIONS_STDDEV_SAMPLE_ORDER_ID_ASC = "ORDER_TRANSACTIONS_STDDEV_SAMPLE_ORDER_ID_ASC", ORDER_TRANSACTIONS_STDDEV_SAMPLE_ORDER_ID_DESC = "ORDER_TRANSACTIONS_STDDEV_SAMPLE_ORDER_ID_DESC", ORDER_TRANSACTIONS_SUM_ASSET_TRANSFER_ID_ASC = "ORDER_TRANSACTIONS_SUM_ASSET_TRANSFER_ID_ASC", ORDER_TRANSACTIONS_SUM_ASSET_TRANSFER_ID_DESC = "ORDER_TRANSACTIONS_SUM_ASSET_TRANSFER_ID_DESC", ORDER_TRANSACTIONS_SUM_BLOCK_RANGE_ASC = "ORDER_TRANSACTIONS_SUM_BLOCK_RANGE_ASC", ORDER_TRANSACTIONS_SUM_BLOCK_RANGE_DESC = "ORDER_TRANSACTIONS_SUM_BLOCK_RANGE_DESC", ORDER_TRANSACTIONS_SUM_ID_ASC = "ORDER_TRANSACTIONS_SUM_ID_ASC", ORDER_TRANSACTIONS_SUM_ID_DESC = "ORDER_TRANSACTIONS_SUM_ID_DESC", ORDER_TRANSACTIONS_SUM_ORDER_ID_ASC = "ORDER_TRANSACTIONS_SUM_ORDER_ID_ASC", ORDER_TRANSACTIONS_SUM_ORDER_ID_DESC = "ORDER_TRANSACTIONS_SUM_ORDER_ID_DESC", ORDER_TRANSACTIONS_VARIANCE_POPULATION_ASSET_TRANSFER_ID_ASC = "ORDER_TRANSACTIONS_VARIANCE_POPULATION_ASSET_TRANSFER_ID_ASC", ORDER_TRANSACTIONS_VARIANCE_POPULATION_ASSET_TRANSFER_ID_DESC = "ORDER_TRANSACTIONS_VARIANCE_POPULATION_ASSET_TRANSFER_ID_DESC", ORDER_TRANSACTIONS_VARIANCE_POPULATION_BLOCK_RANGE_ASC = "ORDER_TRANSACTIONS_VARIANCE_POPULATION_BLOCK_RANGE_ASC", ORDER_TRANSACTIONS_VARIANCE_POPULATION_BLOCK_RANGE_DESC = "ORDER_TRANSACTIONS_VARIANCE_POPULATION_BLOCK_RANGE_DESC", ORDER_TRANSACTIONS_VARIANCE_POPULATION_ID_ASC = "ORDER_TRANSACTIONS_VARIANCE_POPULATION_ID_ASC", ORDER_TRANSACTIONS_VARIANCE_POPULATION_ID_DESC = "ORDER_TRANSACTIONS_VARIANCE_POPULATION_ID_DESC", ORDER_TRANSACTIONS_VARIANCE_POPULATION_ORDER_ID_ASC = "ORDER_TRANSACTIONS_VARIANCE_POPULATION_ORDER_ID_ASC", ORDER_TRANSACTIONS_VARIANCE_POPULATION_ORDER_ID_DESC = "ORDER_TRANSACTIONS_VARIANCE_POPULATION_ORDER_ID_DESC", ORDER_TRANSACTIONS_VARIANCE_SAMPLE_ASSET_TRANSFER_ID_ASC = "ORDER_TRANSACTIONS_VARIANCE_SAMPLE_ASSET_TRANSFER_ID_ASC", ORDER_TRANSACTIONS_VARIANCE_SAMPLE_ASSET_TRANSFER_ID_DESC = "ORDER_TRANSACTIONS_VARIANCE_SAMPLE_ASSET_TRANSFER_ID_DESC", ORDER_TRANSACTIONS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC = "ORDER_TRANSACTIONS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC", ORDER_TRANSACTIONS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC = "ORDER_TRANSACTIONS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC", ORDER_TRANSACTIONS_VARIANCE_SAMPLE_ID_ASC = "ORDER_TRANSACTIONS_VARIANCE_SAMPLE_ID_ASC", ORDER_TRANSACTIONS_VARIANCE_SAMPLE_ID_DESC = "ORDER_TRANSACTIONS_VARIANCE_SAMPLE_ID_DESC", ORDER_TRANSACTIONS_VARIANCE_SAMPLE_ORDER_ID_ASC = "ORDER_TRANSACTIONS_VARIANCE_SAMPLE_ORDER_ID_ASC", ORDER_TRANSACTIONS_VARIANCE_SAMPLE_ORDER_ID_DESC = "ORDER_TRANSACTIONS_VARIANCE_SAMPLE_ORDER_ID_DESC", PRIMARY_KEY_ASC = "PRIMARY_KEY_ASC", PRIMARY_KEY_DESC = "PRIMARY_KEY_DESC", TOKEN_CONTRACT_BY_TOKEN_ID__DECIMALS_ASC = "TOKEN_CONTRACT_BY_TOKEN_ID__DECIMALS_ASC", TOKEN_CONTRACT_BY_TOKEN_ID__DECIMALS_DESC = "TOKEN_CONTRACT_BY_TOKEN_ID__DECIMALS_DESC", TOKEN_CONTRACT_BY_TOKEN_ID__ICON_URL_ASC = "TOKEN_CONTRACT_BY_TOKEN_ID__ICON_URL_ASC", TOKEN_CONTRACT_BY_TOKEN_ID__ICON_URL_DESC = "TOKEN_CONTRACT_BY_TOKEN_ID__ICON_URL_DESC", TOKEN_CONTRACT_BY_TOKEN_ID__ID_ASC = "TOKEN_CONTRACT_BY_TOKEN_ID__ID_ASC", TOKEN_CONTRACT_BY_TOKEN_ID__ID_DESC = "TOKEN_CONTRACT_BY_TOKEN_ID__ID_DESC", TOKEN_CONTRACT_BY_TOKEN_ID__NAME_ASC = "TOKEN_CONTRACT_BY_TOKEN_ID__NAME_ASC", TOKEN_CONTRACT_BY_TOKEN_ID__NAME_DESC = "TOKEN_CONTRACT_BY_TOKEN_ID__NAME_DESC", TOKEN_CONTRACT_BY_TOKEN_ID__SYMBOL_ASC = "TOKEN_CONTRACT_BY_TOKEN_ID__SYMBOL_ASC", TOKEN_CONTRACT_BY_TOKEN_ID__SYMBOL_DESC = "TOKEN_CONTRACT_BY_TOKEN_ID__SYMBOL_DESC", TOKEN_CONTRACT_BY_TOKEN_ID__TYPE_ASC = "TOKEN_CONTRACT_BY_TOKEN_ID__TYPE_ASC", TOKEN_CONTRACT_BY_TOKEN_ID__TYPE_DESC = "TOKEN_CONTRACT_BY_TOKEN_ID__TYPE_DESC", TOKEN_ID_ASC = "TOKEN_ID_ASC", TOKEN_ID_DESC = "TOKEN_ID_DESC", TO_ID_ASC = "TO_ID_ASC", TO_ID_DESC = "TO_ID_DESC", TRANSACTION_BLOCK_NUMBER_ASC = "TRANSACTION_BLOCK_NUMBER_ASC", TRANSACTION_BLOCK_NUMBER_DESC = "TRANSACTION_BLOCK_NUMBER_DESC", TRANSACTION_BY_TRANSACTION_ID__BLOCK_HASH_ASC = "TRANSACTION_BY_TRANSACTION_ID__BLOCK_HASH_ASC", TRANSACTION_BY_TRANSACTION_ID__BLOCK_HASH_DESC = "TRANSACTION_BY_TRANSACTION_ID__BLOCK_HASH_DESC", TRANSACTION_BY_TRANSACTION_ID__BLOCK_NUMBER_ASC = "TRANSACTION_BY_TRANSACTION_ID__BLOCK_NUMBER_ASC", TRANSACTION_BY_TRANSACTION_ID__BLOCK_NUMBER_DESC = "TRANSACTION_BY_TRANSACTION_ID__BLOCK_NUMBER_DESC", TRANSACTION_BY_TRANSACTION_ID__DATE_ASC = "TRANSACTION_BY_TRANSACTION_ID__DATE_ASC", TRANSACTION_BY_TRANSACTION_ID__DATE_DESC = "TRANSACTION_BY_TRANSACTION_ID__DATE_DESC", TRANSACTION_BY_TRANSACTION_ID__FEES_ASC = "TRANSACTION_BY_TRANSACTION_ID__FEES_ASC", TRANSACTION_BY_TRANSACTION_ID__FEES_DESC = "TRANSACTION_BY_TRANSACTION_ID__FEES_DESC", TRANSACTION_BY_TRANSACTION_ID__GAS_PRICE_ASC = "TRANSACTION_BY_TRANSACTION_ID__GAS_PRICE_ASC", TRANSACTION_BY_TRANSACTION_ID__GAS_PRICE_DESC = "TRANSACTION_BY_TRANSACTION_ID__GAS_PRICE_DESC", TRANSACTION_BY_TRANSACTION_ID__GAS_USED_ASC = "TRANSACTION_BY_TRANSACTION_ID__GAS_USED_ASC", TRANSACTION_BY_TRANSACTION_ID__GAS_USED_DESC = "TRANSACTION_BY_TRANSACTION_ID__GAS_USED_DESC", TRANSACTION_BY_TRANSACTION_ID__ID_ASC = "TRANSACTION_BY_TRANSACTION_ID__ID_ASC", TRANSACTION_BY_TRANSACTION_ID__ID_DESC = "TRANSACTION_BY_TRANSACTION_ID__ID_DESC", TRANSACTION_BY_TRANSACTION_ID__SUCCESS_ASC = "TRANSACTION_BY_TRANSACTION_ID__SUCCESS_ASC", TRANSACTION_BY_TRANSACTION_ID__SUCCESS_DESC = "TRANSACTION_BY_TRANSACTION_ID__SUCCESS_DESC", TRANSACTION_ID_ASC = "TRANSACTION_ID_ASC", TRANSACTION_ID_DESC = "TRANSACTION_ID_DESC", TYPE_ASC = "TYPE_ASC", TYPE_DESC = "TYPE_DESC", VALUE_ASC = "VALUE_ASC", VALUE_DESC = "VALUE_DESC", WALLET_BY_FROM_ID__BALANCE_ASC = "WALLET_BY_FROM_ID__BALANCE_ASC", WALLET_BY_FROM_ID__BALANCE_DESC = "WALLET_BY_FROM_ID__BALANCE_DESC", WALLET_BY_FROM_ID__ID_ASC = "WALLET_BY_FROM_ID__ID_ASC", WALLET_BY_FROM_ID__ID_DESC = "WALLET_BY_FROM_ID__ID_DESC", WALLET_BY_TO_ID__BALANCE_ASC = "WALLET_BY_TO_ID__BALANCE_ASC", WALLET_BY_TO_ID__BALANCE_DESC = "WALLET_BY_TO_ID__BALANCE_DESC", WALLET_BY_TO_ID__ID_ASC = "WALLET_BY_TO_ID__ID_ASC", WALLET_BY_TO_ID__ID_DESC = "WALLET_BY_TO_ID__ID_DESC" } /** A filter to be used against BigFloat fields. All fields are combined with a logical ‘and.’ */ type GqlBigFloatFilter = { /** Not equal to the specified value, treating null like an ordinary value. */ distinctFrom?: InputMaybe; /** Equal to the specified value. */ equalTo?: InputMaybe; /** Greater than the specified value. */ greaterThan?: InputMaybe; /** Greater than or equal to the specified value. */ greaterThanOrEqualTo?: InputMaybe; /** Included in the specified list. */ in?: InputMaybe>; /** Is null (if `true` is specified) or is not null (if `false` is specified). */ isNull?: InputMaybe; /** Less than the specified value. */ lessThan?: InputMaybe; /** Less than or equal to the specified value. */ lessThanOrEqualTo?: InputMaybe; /** Equal to the specified value, treating null like an ordinary value. */ notDistinctFrom?: InputMaybe; /** Not equal to the specified value. */ notEqualTo?: InputMaybe; /** Not included in the specified list. */ notIn?: InputMaybe>; }; /** A filter to be used against BigInt fields. All fields are combined with a logical ‘and.’ */ type GqlBigIntFilter = { /** Not equal to the specified value, treating null like an ordinary value. */ distinctFrom?: InputMaybe; /** Equal to the specified value. */ equalTo?: InputMaybe; /** Greater than the specified value. */ greaterThan?: InputMaybe; /** Greater than or equal to the specified value. */ greaterThanOrEqualTo?: InputMaybe; /** Included in the specified list. */ in?: InputMaybe>; /** Is null (if `true` is specified) or is not null (if `false` is specified). */ isNull?: InputMaybe; /** Less than the specified value. */ lessThan?: InputMaybe; /** Less than or equal to the specified value. */ lessThanOrEqualTo?: InputMaybe; /** Equal to the specified value, treating null like an ordinary value. */ notDistinctFrom?: InputMaybe; /** Not equal to the specified value. */ notEqualTo?: InputMaybe; /** Not included in the specified list. */ notIn?: InputMaybe>; }; /** A filter to be used against Boolean fields. All fields are combined with a logical ‘and.’ */ type GqlBooleanFilter = { /** Not equal to the specified value, treating null like an ordinary value. */ distinctFrom?: InputMaybe; /** Equal to the specified value. */ equalTo?: InputMaybe; /** Greater than the specified value. */ greaterThan?: InputMaybe; /** Greater than or equal to the specified value. */ greaterThanOrEqualTo?: InputMaybe; /** Included in the specified list. */ in?: InputMaybe>; /** Is null (if `true` is specified) or is not null (if `false` is specified). */ isNull?: InputMaybe; /** Less than the specified value. */ lessThan?: InputMaybe; /** Less than or equal to the specified value. */ lessThanOrEqualTo?: InputMaybe; /** Equal to the specified value, treating null like an ordinary value. */ notDistinctFrom?: InputMaybe; /** Not equal to the specified value. */ notEqualTo?: InputMaybe; /** Not included in the specified list. */ notIn?: InputMaybe>; }; /** A filter to be used against Datetime fields. All fields are combined with a logical ‘and.’ */ type GqlDatetimeFilter = { /** Not equal to the specified value, treating null like an ordinary value. */ distinctFrom?: InputMaybe; /** Equal to the specified value. */ equalTo?: InputMaybe; /** Greater than the specified value. */ greaterThan?: InputMaybe; /** Greater than or equal to the specified value. */ greaterThanOrEqualTo?: InputMaybe; /** Included in the specified list. */ in?: InputMaybe>; /** Is null (if `true` is specified) or is not null (if `false` is specified). */ isNull?: InputMaybe; /** Less than the specified value. */ lessThan?: InputMaybe; /** Less than or equal to the specified value. */ lessThanOrEqualTo?: InputMaybe; /** Equal to the specified value, treating null like an ordinary value. */ notDistinctFrom?: InputMaybe; /** Not equal to the specified value. */ notEqualTo?: InputMaybe; /** Not included in the specified list. */ notIn?: InputMaybe>; }; type GqlHavingBigfloatFilter = { equalTo?: InputMaybe; greaterThan?: InputMaybe; greaterThanOrEqualTo?: InputMaybe; lessThan?: InputMaybe; lessThanOrEqualTo?: InputMaybe; notEqualTo?: InputMaybe; }; type GqlHavingDatetimeFilter = { equalTo?: InputMaybe; greaterThan?: InputMaybe; greaterThanOrEqualTo?: InputMaybe; lessThan?: InputMaybe; lessThanOrEqualTo?: InputMaybe; notEqualTo?: InputMaybe; }; type GqlHavingIntFilter = { equalTo?: InputMaybe; greaterThan?: InputMaybe; greaterThanOrEqualTo?: InputMaybe; lessThan?: InputMaybe; lessThanOrEqualTo?: InputMaybe; notEqualTo?: InputMaybe; }; /** A filter to be used against Int fields. All fields are combined with a logical ‘and.’ */ type GqlIntFilter = { /** Not equal to the specified value, treating null like an ordinary value. */ distinctFrom?: InputMaybe; /** Equal to the specified value. */ equalTo?: InputMaybe; /** Greater than the specified value. */ greaterThan?: InputMaybe; /** Greater than or equal to the specified value. */ greaterThanOrEqualTo?: InputMaybe; /** Included in the specified list. */ in?: InputMaybe>; /** Is null (if `true` is specified) or is not null (if `false` is specified). */ isNull?: InputMaybe; /** Less than the specified value. */ lessThan?: InputMaybe; /** Less than or equal to the specified value. */ lessThanOrEqualTo?: InputMaybe; /** Equal to the specified value, treating null like an ordinary value. */ notDistinctFrom?: InputMaybe; /** Not equal to the specified value. */ notEqualTo?: InputMaybe; /** Not included in the specified list. */ notIn?: InputMaybe>; }; /** A filter to be used against JSON fields. All fields are combined with a logical ‘and.’ */ type GqlJSONFilter = { /** Contained by the specified JSON. */ containedBy?: InputMaybe; /** Contains the specified JSON. */ contains?: InputMaybe; /** Contains all of the specified keys. */ containsAllKeys?: InputMaybe>; /** Contains any of the specified keys. */ containsAnyKeys?: InputMaybe>; /** Contains the specified key. */ containsKey?: InputMaybe; /** Not equal to the specified value, treating null like an ordinary value. */ distinctFrom?: InputMaybe; /** Equal to the specified value. */ equalTo?: InputMaybe; /** Greater than the specified value. */ greaterThan?: InputMaybe; /** Greater than or equal to the specified value. */ greaterThanOrEqualTo?: InputMaybe; /** Included in the specified list. */ in?: InputMaybe>; /** Is null (if `true` is specified) or is not null (if `false` is specified). */ isNull?: InputMaybe; /** Less than the specified value. */ lessThan?: InputMaybe; /** Less than or equal to the specified value. */ lessThanOrEqualTo?: InputMaybe; /** Equal to the specified value, treating null like an ordinary value. */ notDistinctFrom?: InputMaybe; /** Not equal to the specified value. */ notEqualTo?: InputMaybe; /** Not included in the specified list. */ notIn?: InputMaybe>; }; declare enum GqlMutationType { DELETE = "DELETE", INSERT = "INSERT", UPDATE = "UPDATE" } type GqlNft = GqlNode & { /** Reads and enables pagination through a set of `AssetTransfer`. */ assetTransfers: GqlAssetTransfersConnection; /** Reads a single `TokenContract` that is related to this `Nft`. */ collection: Maybe; collectionId: Scalars['String']['output']; id: Scalars['String']['output']; metadata: Scalars['JSON']['output']; /** Reads and enables pagination through a set of `NftBalance`. */ nftBalances: GqlNftBalancesConnection; /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ nodeId: Scalars['ID']['output']; /** Reads and enables pagination through a set of `TokenContract`. */ tokenContractsByAssetTransferNftIdAndTokenId: GqlNftTokenContractsByAssetTransferNftIdAndTokenIdManyToManyConnection; tokenId: Scalars['BigFloat']['output']; /** Reads and enables pagination through a set of `Transaction`. */ transactionsByAssetTransferNftIdAndTransactionId: GqlNftTransactionsByAssetTransferNftIdAndTransactionIdManyToManyConnection; /** Reads and enables pagination through a set of `Wallet`. */ walletsByAssetTransferNftIdAndFromId: GqlNftWalletsByAssetTransferNftIdAndFromIdManyToManyConnection; /** Reads and enables pagination through a set of `Wallet`. */ walletsByAssetTransferNftIdAndToId: GqlNftWalletsByAssetTransferNftIdAndToIdManyToManyConnection; /** Reads and enables pagination through a set of `Wallet`. */ walletsByNftBalanceNftIdAndWalletId: GqlNftWalletsByNftBalanceNftIdAndWalletIdManyToManyConnection; }; type GqlNftassetTransfersArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlNftnftBalancesArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlNfttokenContractsByAssetTransferNftIdAndTokenIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlNfttransactionsByAssetTransferNftIdAndTransactionIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlNftwalletsByAssetTransferNftIdAndFromIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlNftwalletsByAssetTransferNftIdAndToIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlNftwalletsByNftBalanceNftIdAndWalletIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlNftAggregates = { /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ average: Maybe; /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ distinctCount: Maybe; keys: Maybe>; /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ max: Maybe; /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ min: Maybe; /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ stddevPopulation: Maybe; /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ stddevSample: Maybe; /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ sum: Maybe; /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ variancePopulation: Maybe; /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ varianceSample: Maybe; }; /** A filter to be used against aggregates of `Nft` object types. */ type GqlNftAggregatesFilter = { /** Mean average aggregate over matching `Nft` objects. */ average?: InputMaybe; /** Distinct count aggregate over matching `Nft` objects. */ distinctCount?: InputMaybe; /** A filter that must pass for the relevant `Nft` object to be included within the aggregate. */ filter?: InputMaybe; /** Maximum aggregate over matching `Nft` objects. */ max?: InputMaybe; /** Minimum aggregate over matching `Nft` objects. */ min?: InputMaybe; /** Population standard deviation aggregate over matching `Nft` objects. */ stddevPopulation?: InputMaybe; /** Sample standard deviation aggregate over matching `Nft` objects. */ stddevSample?: InputMaybe; /** Sum aggregate over matching `Nft` objects. */ sum?: InputMaybe; /** Population variance aggregate over matching `Nft` objects. */ variancePopulation?: InputMaybe; /** Sample variance aggregate over matching `Nft` objects. */ varianceSample?: InputMaybe; }; type GqlNftAverageAggregateFilter = { tokenId?: InputMaybe; }; type GqlNftAverageAggregates = { /** Mean average of tokenId across the matching connection */ tokenId: Maybe; }; type GqlNftBalance = GqlNode & { balance: Scalars['BigFloat']['output']; id: Scalars['String']['output']; /** Reads a single `Nft` that is related to this `NftBalance`. */ nft: Maybe; nftId: Scalars['String']['output']; nftTokenId: Scalars['BigFloat']['output']; /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ nodeId: Scalars['ID']['output']; /** Reads a single `Wallet` that is related to this `NftBalance`. */ wallet: Maybe; walletId: Scalars['String']['output']; }; type GqlNftBalanceAggregates = { /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ average: Maybe; /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ distinctCount: Maybe; keys: Maybe>; /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ max: Maybe; /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ min: Maybe; /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ stddevPopulation: Maybe; /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ stddevSample: Maybe; /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ sum: Maybe; /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ variancePopulation: Maybe; /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ varianceSample: Maybe; }; /** A filter to be used against aggregates of `NftBalance` object types. */ type GqlNftBalanceAggregatesFilter = { /** Mean average aggregate over matching `NftBalance` objects. */ average?: InputMaybe; /** Distinct count aggregate over matching `NftBalance` objects. */ distinctCount?: InputMaybe; /** A filter that must pass for the relevant `NftBalance` object to be included within the aggregate. */ filter?: InputMaybe; /** Maximum aggregate over matching `NftBalance` objects. */ max?: InputMaybe; /** Minimum aggregate over matching `NftBalance` objects. */ min?: InputMaybe; /** Population standard deviation aggregate over matching `NftBalance` objects. */ stddevPopulation?: InputMaybe; /** Sample standard deviation aggregate over matching `NftBalance` objects. */ stddevSample?: InputMaybe; /** Sum aggregate over matching `NftBalance` objects. */ sum?: InputMaybe; /** Population variance aggregate over matching `NftBalance` objects. */ variancePopulation?: InputMaybe; /** Sample variance aggregate over matching `NftBalance` objects. */ varianceSample?: InputMaybe; }; type GqlNftBalanceAverageAggregateFilter = { balance?: InputMaybe; nftTokenId?: InputMaybe; }; type GqlNftBalanceAverageAggregates = { /** Mean average of balance across the matching connection */ balance: Maybe; /** Mean average of nftTokenId across the matching connection */ nftTokenId: Maybe; }; type GqlNftBalanceDistinctCountAggregateFilter = { _blockRange?: InputMaybe; _id?: InputMaybe; balance?: InputMaybe; id?: InputMaybe; nftId?: InputMaybe; nftTokenId?: InputMaybe; walletId?: InputMaybe; }; type GqlNftBalanceDistinctCountAggregates = { /** Distinct count of _blockRange across the matching connection */ _blockRange: Maybe; /** Distinct count of _id across the matching connection */ _id: Maybe; /** Distinct count of balance across the matching connection */ balance: Maybe; /** Distinct count of id across the matching connection */ id: Maybe; /** Distinct count of nftId across the matching connection */ nftId: Maybe; /** Distinct count of nftTokenId across the matching connection */ nftTokenId: Maybe; /** Distinct count of walletId across the matching connection */ walletId: Maybe; }; /** A filter to be used against `NftBalance` object types. All fields are combined with a logical ‘and.’ */ type GqlNftBalanceFilter = { /** Checks for all expressions in this list. */ and?: InputMaybe>; /** Filter by the object’s `balance` field. */ balance?: InputMaybe; /** Filter by the object’s `id` field. */ id?: InputMaybe; /** Filter by the object’s `nft` relation. */ nft?: InputMaybe; /** Filter by the object’s `nftId` field. */ nftId?: InputMaybe; /** Filter by the object’s `nftTokenId` field. */ nftTokenId?: InputMaybe; /** Negates the expression. */ not?: InputMaybe; /** Checks for any expressions in this list. */ or?: InputMaybe>; /** Filter by the object’s `wallet` relation. */ wallet?: InputMaybe; /** Filter by the object’s `walletId` field. */ walletId?: InputMaybe; }; type GqlNftBalanceMaxAggregateFilter = { balance?: InputMaybe; nftTokenId?: InputMaybe; }; type GqlNftBalanceMaxAggregates = { /** Maximum of balance across the matching connection */ balance: Maybe; /** Maximum of nftTokenId across the matching connection */ nftTokenId: Maybe; }; type GqlNftBalanceMinAggregateFilter = { balance?: InputMaybe; nftTokenId?: InputMaybe; }; type GqlNftBalanceMinAggregates = { /** Minimum of balance across the matching connection */ balance: Maybe; /** Minimum of nftTokenId across the matching connection */ nftTokenId: Maybe; }; type GqlNftBalancePayload = { _entity: Maybe; id: Scalars['ID']['output']; mutation_type: GqlMutationType; }; type GqlNftBalancePayload_entityArgs = { distinct?: InputMaybe>>; }; type GqlNftBalanceStddevPopulationAggregateFilter = { balance?: InputMaybe; nftTokenId?: InputMaybe; }; type GqlNftBalanceStddevPopulationAggregates = { /** Population standard deviation of balance across the matching connection */ balance: Maybe; /** Population standard deviation of nftTokenId across the matching connection */ nftTokenId: Maybe; }; type GqlNftBalanceStddevSampleAggregateFilter = { balance?: InputMaybe; nftTokenId?: InputMaybe; }; type GqlNftBalanceStddevSampleAggregates = { /** Sample standard deviation of balance across the matching connection */ balance: Maybe; /** Sample standard deviation of nftTokenId across the matching connection */ nftTokenId: Maybe; }; type GqlNftBalanceSumAggregateFilter = { balance?: InputMaybe; nftTokenId?: InputMaybe; }; type GqlNftBalanceSumAggregates = { /** Sum of balance across the matching connection */ balance: Scalars['BigFloat']['output']; /** Sum of nftTokenId across the matching connection */ nftTokenId: Scalars['BigFloat']['output']; }; type GqlNftBalanceVariancePopulationAggregateFilter = { balance?: InputMaybe; nftTokenId?: InputMaybe; }; type GqlNftBalanceVariancePopulationAggregates = { /** Population variance of balance across the matching connection */ balance: Maybe; /** Population variance of nftTokenId across the matching connection */ nftTokenId: Maybe; }; type GqlNftBalanceVarianceSampleAggregateFilter = { balance?: InputMaybe; nftTokenId?: InputMaybe; }; type GqlNftBalanceVarianceSampleAggregates = { /** Sample variance of balance across the matching connection */ balance: Maybe; /** Sample variance of nftTokenId across the matching connection */ nftTokenId: Maybe; }; /** A connection to a list of `NftBalance` values. */ type GqlNftBalancesConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `NftBalance` and cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `NftBalance` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `NftBalance` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `NftBalance` values. */ type GqlNftBalancesConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `NftBalance` edge in the connection. */ type GqlNftBalancesEdge = { /** A cursor for use in pagination. */ cursor: Maybe; /** The `NftBalance` at the end of the edge. */ node: Maybe; }; /** Grouping methods for `NftBalance` for usage during aggregation. */ declare enum GqlNftBalancesGroupBy { BALANCE = "BALANCE", ID = "ID", NFT_ID = "NFT_ID", NFT_TOKEN_ID = "NFT_TOKEN_ID", WALLET_ID = "WALLET_ID" } type GqlNftBalancesHavingAverageInput = { balance?: InputMaybe; nftTokenId?: InputMaybe; }; type GqlNftBalancesHavingDistinctCountInput = { balance?: InputMaybe; nftTokenId?: InputMaybe; }; /** Conditions for `NftBalance` aggregates. */ type GqlNftBalancesHavingInput = { AND?: InputMaybe>; OR?: InputMaybe>; average?: InputMaybe; distinctCount?: InputMaybe; max?: InputMaybe; min?: InputMaybe; stddevPopulation?: InputMaybe; stddevSample?: InputMaybe; sum?: InputMaybe; variancePopulation?: InputMaybe; varianceSample?: InputMaybe; }; type GqlNftBalancesHavingMaxInput = { balance?: InputMaybe; nftTokenId?: InputMaybe; }; type GqlNftBalancesHavingMinInput = { balance?: InputMaybe; nftTokenId?: InputMaybe; }; type GqlNftBalancesHavingStddevPopulationInput = { balance?: InputMaybe; nftTokenId?: InputMaybe; }; type GqlNftBalancesHavingStddevSampleInput = { balance?: InputMaybe; nftTokenId?: InputMaybe; }; type GqlNftBalancesHavingSumInput = { balance?: InputMaybe; nftTokenId?: InputMaybe; }; type GqlNftBalancesHavingVariancePopulationInput = { balance?: InputMaybe; nftTokenId?: InputMaybe; }; type GqlNftBalancesHavingVarianceSampleInput = { balance?: InputMaybe; nftTokenId?: InputMaybe; }; /** Methods to use when ordering `NftBalance`. */ declare enum GqlNftBalancesOrderBy { BALANCE_ASC = "BALANCE_ASC", BALANCE_DESC = "BALANCE_DESC", ID_ASC = "ID_ASC", ID_DESC = "ID_DESC", NATURAL = "NATURAL", NFT_BY_NFT_ID__COLLECTION_ID_ASC = "NFT_BY_NFT_ID__COLLECTION_ID_ASC", NFT_BY_NFT_ID__COLLECTION_ID_DESC = "NFT_BY_NFT_ID__COLLECTION_ID_DESC", NFT_BY_NFT_ID__ID_ASC = "NFT_BY_NFT_ID__ID_ASC", NFT_BY_NFT_ID__ID_DESC = "NFT_BY_NFT_ID__ID_DESC", NFT_BY_NFT_ID__METADATA_ASC = "NFT_BY_NFT_ID__METADATA_ASC", NFT_BY_NFT_ID__METADATA_DESC = "NFT_BY_NFT_ID__METADATA_DESC", NFT_BY_NFT_ID__TOKEN_ID_ASC = "NFT_BY_NFT_ID__TOKEN_ID_ASC", NFT_BY_NFT_ID__TOKEN_ID_DESC = "NFT_BY_NFT_ID__TOKEN_ID_DESC", NFT_ID_ASC = "NFT_ID_ASC", NFT_ID_DESC = "NFT_ID_DESC", NFT_TOKEN_ID_ASC = "NFT_TOKEN_ID_ASC", NFT_TOKEN_ID_DESC = "NFT_TOKEN_ID_DESC", PRIMARY_KEY_ASC = "PRIMARY_KEY_ASC", PRIMARY_KEY_DESC = "PRIMARY_KEY_DESC", WALLET_BY_WALLET_ID__BALANCE_ASC = "WALLET_BY_WALLET_ID__BALANCE_ASC", WALLET_BY_WALLET_ID__BALANCE_DESC = "WALLET_BY_WALLET_ID__BALANCE_DESC", WALLET_BY_WALLET_ID__ID_ASC = "WALLET_BY_WALLET_ID__ID_ASC", WALLET_BY_WALLET_ID__ID_DESC = "WALLET_BY_WALLET_ID__ID_DESC", WALLET_ID_ASC = "WALLET_ID_ASC", WALLET_ID_DESC = "WALLET_ID_DESC" } type GqlNftDistinctCountAggregateFilter = { _blockRange?: InputMaybe; _id?: InputMaybe; collectionId?: InputMaybe; id?: InputMaybe; metadata?: InputMaybe; tokenId?: InputMaybe; }; type GqlNftDistinctCountAggregates = { /** Distinct count of _blockRange across the matching connection */ _blockRange: Maybe; /** Distinct count of _id across the matching connection */ _id: Maybe; /** Distinct count of collectionId across the matching connection */ collectionId: Maybe; /** Distinct count of id across the matching connection */ id: Maybe; /** Distinct count of metadata across the matching connection */ metadata: Maybe; /** Distinct count of tokenId across the matching connection */ tokenId: Maybe; }; /** A filter to be used against `Nft` object types. All fields are combined with a logical ‘and.’ */ type GqlNftFilter = { /** Checks for all expressions in this list. */ and?: InputMaybe>; /** Filter by the object’s `assetTransfers` relation. */ assetTransfers?: InputMaybe; /** Some related `assetTransfers` exist. */ assetTransfersExist?: InputMaybe; /** Filter by the object’s `collection` relation. */ collection?: InputMaybe; /** Filter by the object’s `collectionId` field. */ collectionId?: InputMaybe; /** Filter by the object’s `id` field. */ id?: InputMaybe; /** Filter by the object’s `metadata` field. */ metadata?: InputMaybe; /** Filter by the object’s `nftBalances` relation. */ nftBalances?: InputMaybe; /** Some related `nftBalances` exist. */ nftBalancesExist?: InputMaybe; /** Negates the expression. */ not?: InputMaybe; /** Checks for any expressions in this list. */ or?: InputMaybe>; /** Filter by the object’s `tokenId` field. */ tokenId?: InputMaybe; }; type GqlNftMaxAggregateFilter = { tokenId?: InputMaybe; }; type GqlNftMaxAggregates = { /** Maximum of tokenId across the matching connection */ tokenId: Maybe; }; type GqlNftMinAggregateFilter = { tokenId?: InputMaybe; }; type GqlNftMinAggregates = { /** Minimum of tokenId across the matching connection */ tokenId: Maybe; }; type GqlNftPayload = { _entity: Maybe; id: Scalars['ID']['output']; mutation_type: GqlMutationType; }; type GqlNftPayload_entityArgs = { distinct?: InputMaybe>>; }; type GqlNftStddevPopulationAggregateFilter = { tokenId?: InputMaybe; }; type GqlNftStddevPopulationAggregates = { /** Population standard deviation of tokenId across the matching connection */ tokenId: Maybe; }; type GqlNftStddevSampleAggregateFilter = { tokenId?: InputMaybe; }; type GqlNftStddevSampleAggregates = { /** Sample standard deviation of tokenId across the matching connection */ tokenId: Maybe; }; type GqlNftSumAggregateFilter = { tokenId?: InputMaybe; }; type GqlNftSumAggregates = { /** Sum of tokenId across the matching connection */ tokenId: Scalars['BigFloat']['output']; }; /** A filter to be used against many `AssetTransfer` object types. All fields are combined with a logical ‘and.’ */ type GqlNftToManyAssetTransferFilter = { /** Aggregates across related `AssetTransfer` match the filter criteria. */ aggregates?: InputMaybe; /** Every related `AssetTransfer` matches the filter criteria. All fields are combined with a logical ‘and.’ */ every?: InputMaybe; /** No related `AssetTransfer` matches the filter criteria. All fields are combined with a logical ‘and.’ */ none?: InputMaybe; /** Some related `AssetTransfer` matches the filter criteria. All fields are combined with a logical ‘and.’ */ some?: InputMaybe; }; /** A filter to be used against many `NftBalance` object types. All fields are combined with a logical ‘and.’ */ type GqlNftToManyNftBalanceFilter = { /** Aggregates across related `NftBalance` match the filter criteria. */ aggregates?: InputMaybe; /** Every related `NftBalance` matches the filter criteria. All fields are combined with a logical ‘and.’ */ every?: InputMaybe; /** No related `NftBalance` matches the filter criteria. All fields are combined with a logical ‘and.’ */ none?: InputMaybe; /** Some related `NftBalance` matches the filter criteria. All fields are combined with a logical ‘and.’ */ some?: InputMaybe; }; /** A connection to a list of `TokenContract` values, with data from `AssetTransfer`. */ type GqlNftTokenContractsByAssetTransferNftIdAndTokenIdManyToManyConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `TokenContract`, info from the `AssetTransfer`, and the cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `TokenContract` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `TokenContract` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `TokenContract` values, with data from `AssetTransfer`. */ type GqlNftTokenContractsByAssetTransferNftIdAndTokenIdManyToManyConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `TokenContract` edge in the connection, with data from `AssetTransfer`. */ type GqlNftTokenContractsByAssetTransferNftIdAndTokenIdManyToManyEdge = { /** Reads and enables pagination through a set of `AssetTransfer`. */ assetTransfersByTokenId: GqlAssetTransfersConnection; /** A cursor for use in pagination. */ cursor: Maybe; /** The `TokenContract` at the end of the edge. */ node: Maybe; }; /** A `TokenContract` edge in the connection, with data from `AssetTransfer`. */ type GqlNftTokenContractsByAssetTransferNftIdAndTokenIdManyToManyEdgeassetTransfersByTokenIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; /** A connection to a list of `Transaction` values, with data from `AssetTransfer`. */ type GqlNftTransactionsByAssetTransferNftIdAndTransactionIdManyToManyConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `Transaction`, info from the `AssetTransfer`, and the cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `Transaction` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `Transaction` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `Transaction` values, with data from `AssetTransfer`. */ type GqlNftTransactionsByAssetTransferNftIdAndTransactionIdManyToManyConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `Transaction` edge in the connection, with data from `AssetTransfer`. */ type GqlNftTransactionsByAssetTransferNftIdAndTransactionIdManyToManyEdge = { /** Reads and enables pagination through a set of `AssetTransfer`. */ assetTransfers: GqlAssetTransfersConnection; /** A cursor for use in pagination. */ cursor: Maybe; /** The `Transaction` at the end of the edge. */ node: Maybe; }; /** A `Transaction` edge in the connection, with data from `AssetTransfer`. */ type GqlNftTransactionsByAssetTransferNftIdAndTransactionIdManyToManyEdgeassetTransfersArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlNftVariancePopulationAggregateFilter = { tokenId?: InputMaybe; }; type GqlNftVariancePopulationAggregates = { /** Population variance of tokenId across the matching connection */ tokenId: Maybe; }; type GqlNftVarianceSampleAggregateFilter = { tokenId?: InputMaybe; }; type GqlNftVarianceSampleAggregates = { /** Sample variance of tokenId across the matching connection */ tokenId: Maybe; }; /** A connection to a list of `Wallet` values, with data from `AssetTransfer`. */ type GqlNftWalletsByAssetTransferNftIdAndFromIdManyToManyConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `Wallet`, info from the `AssetTransfer`, and the cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `Wallet` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `Wallet` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `Wallet` values, with data from `AssetTransfer`. */ type GqlNftWalletsByAssetTransferNftIdAndFromIdManyToManyConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `Wallet` edge in the connection, with data from `AssetTransfer`. */ type GqlNftWalletsByAssetTransferNftIdAndFromIdManyToManyEdge = { /** Reads and enables pagination through a set of `AssetTransfer`. */ assetTransfersByFromId: GqlAssetTransfersConnection; /** A cursor for use in pagination. */ cursor: Maybe; /** The `Wallet` at the end of the edge. */ node: Maybe; }; /** A `Wallet` edge in the connection, with data from `AssetTransfer`. */ type GqlNftWalletsByAssetTransferNftIdAndFromIdManyToManyEdgeassetTransfersByFromIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; /** A connection to a list of `Wallet` values, with data from `AssetTransfer`. */ type GqlNftWalletsByAssetTransferNftIdAndToIdManyToManyConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `Wallet`, info from the `AssetTransfer`, and the cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `Wallet` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `Wallet` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `Wallet` values, with data from `AssetTransfer`. */ type GqlNftWalletsByAssetTransferNftIdAndToIdManyToManyConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `Wallet` edge in the connection, with data from `AssetTransfer`. */ type GqlNftWalletsByAssetTransferNftIdAndToIdManyToManyEdge = { /** Reads and enables pagination through a set of `AssetTransfer`. */ assetTransfersByToId: GqlAssetTransfersConnection; /** A cursor for use in pagination. */ cursor: Maybe; /** The `Wallet` at the end of the edge. */ node: Maybe; }; /** A `Wallet` edge in the connection, with data from `AssetTransfer`. */ type GqlNftWalletsByAssetTransferNftIdAndToIdManyToManyEdgeassetTransfersByToIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; /** A connection to a list of `Wallet` values, with data from `NftBalance`. */ type GqlNftWalletsByNftBalanceNftIdAndWalletIdManyToManyConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `Wallet`, info from the `NftBalance`, and the cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `Wallet` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `Wallet` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `Wallet` values, with data from `NftBalance`. */ type GqlNftWalletsByNftBalanceNftIdAndWalletIdManyToManyConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `Wallet` edge in the connection, with data from `NftBalance`. */ type GqlNftWalletsByNftBalanceNftIdAndWalletIdManyToManyEdge = { /** A cursor for use in pagination. */ cursor: Maybe; /** Reads and enables pagination through a set of `NftBalance`. */ nfts: GqlNftBalancesConnection; /** The `Wallet` at the end of the edge. */ node: Maybe; }; /** A `Wallet` edge in the connection, with data from `NftBalance`. */ type GqlNftWalletsByNftBalanceNftIdAndWalletIdManyToManyEdgenftsArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; /** A connection to a list of `Nft` values. */ type GqlNftsConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `Nft` and cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `Nft` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `Nft` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `Nft` values. */ type GqlNftsConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `Nft` edge in the connection. */ type GqlNftsEdge = { /** A cursor for use in pagination. */ cursor: Maybe; /** The `Nft` at the end of the edge. */ node: Maybe; }; /** Grouping methods for `Nft` for usage during aggregation. */ declare enum GqlNftsGroupBy { COLLECTION_ID = "COLLECTION_ID", ID = "ID", METADATA = "METADATA", TOKEN_ID = "TOKEN_ID" } type GqlNftsHavingAverageInput = { tokenId?: InputMaybe; }; type GqlNftsHavingDistinctCountInput = { tokenId?: InputMaybe; }; /** Conditions for `Nft` aggregates. */ type GqlNftsHavingInput = { AND?: InputMaybe>; OR?: InputMaybe>; average?: InputMaybe; distinctCount?: InputMaybe; max?: InputMaybe; min?: InputMaybe; stddevPopulation?: InputMaybe; stddevSample?: InputMaybe; sum?: InputMaybe; variancePopulation?: InputMaybe; varianceSample?: InputMaybe; }; type GqlNftsHavingMaxInput = { tokenId?: InputMaybe; }; type GqlNftsHavingMinInput = { tokenId?: InputMaybe; }; type GqlNftsHavingStddevPopulationInput = { tokenId?: InputMaybe; }; type GqlNftsHavingStddevSampleInput = { tokenId?: InputMaybe; }; type GqlNftsHavingSumInput = { tokenId?: InputMaybe; }; type GqlNftsHavingVariancePopulationInput = { tokenId?: InputMaybe; }; type GqlNftsHavingVarianceSampleInput = { tokenId?: InputMaybe; }; /** Methods to use when ordering `Nft`. */ declare enum GqlNftsOrderBy { ASSET_TRANSFERS_AVERAGE_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_AVERAGE_BLOCK_RANGE_ASC", ASSET_TRANSFERS_AVERAGE_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_AVERAGE_BLOCK_RANGE_DESC", ASSET_TRANSFERS_AVERAGE_DECIMALS_ASC = "ASSET_TRANSFERS_AVERAGE_DECIMALS_ASC", ASSET_TRANSFERS_AVERAGE_DECIMALS_DESC = "ASSET_TRANSFERS_AVERAGE_DECIMALS_DESC", ASSET_TRANSFERS_AVERAGE_FROM_ID_ASC = "ASSET_TRANSFERS_AVERAGE_FROM_ID_ASC", ASSET_TRANSFERS_AVERAGE_FROM_ID_DESC = "ASSET_TRANSFERS_AVERAGE_FROM_ID_DESC", ASSET_TRANSFERS_AVERAGE_ID_ASC = "ASSET_TRANSFERS_AVERAGE_ID_ASC", ASSET_TRANSFERS_AVERAGE_ID_DESC = "ASSET_TRANSFERS_AVERAGE_ID_DESC", ASSET_TRANSFERS_AVERAGE_NFT_ID_ASC = "ASSET_TRANSFERS_AVERAGE_NFT_ID_ASC", ASSET_TRANSFERS_AVERAGE_NFT_ID_DESC = "ASSET_TRANSFERS_AVERAGE_NFT_ID_DESC", ASSET_TRANSFERS_AVERAGE_TOKEN_ID_ASC = "ASSET_TRANSFERS_AVERAGE_TOKEN_ID_ASC", ASSET_TRANSFERS_AVERAGE_TOKEN_ID_DESC = "ASSET_TRANSFERS_AVERAGE_TOKEN_ID_DESC", ASSET_TRANSFERS_AVERAGE_TO_ID_ASC = "ASSET_TRANSFERS_AVERAGE_TO_ID_ASC", ASSET_TRANSFERS_AVERAGE_TO_ID_DESC = "ASSET_TRANSFERS_AVERAGE_TO_ID_DESC", ASSET_TRANSFERS_AVERAGE_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_AVERAGE_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_AVERAGE_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_AVERAGE_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_AVERAGE_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_AVERAGE_TRANSACTION_ID_ASC", ASSET_TRANSFERS_AVERAGE_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_AVERAGE_TRANSACTION_ID_DESC", ASSET_TRANSFERS_AVERAGE_TYPE_ASC = "ASSET_TRANSFERS_AVERAGE_TYPE_ASC", ASSET_TRANSFERS_AVERAGE_TYPE_DESC = "ASSET_TRANSFERS_AVERAGE_TYPE_DESC", ASSET_TRANSFERS_AVERAGE_VALUE_ASC = "ASSET_TRANSFERS_AVERAGE_VALUE_ASC", ASSET_TRANSFERS_AVERAGE_VALUE_DESC = "ASSET_TRANSFERS_AVERAGE_VALUE_DESC", ASSET_TRANSFERS_BY_NFT_ID__COUNT_ASC = "ASSET_TRANSFERS_BY_NFT_ID__COUNT_ASC", ASSET_TRANSFERS_BY_NFT_ID__COUNT_DESC = "ASSET_TRANSFERS_BY_NFT_ID__COUNT_DESC", ASSET_TRANSFERS_COUNT_ASC = "ASSET_TRANSFERS_COUNT_ASC", ASSET_TRANSFERS_COUNT_DESC = "ASSET_TRANSFERS_COUNT_DESC", ASSET_TRANSFERS_DISTINCT_COUNT_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_DISTINCT_COUNT_BLOCK_RANGE_ASC", ASSET_TRANSFERS_DISTINCT_COUNT_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_DISTINCT_COUNT_BLOCK_RANGE_DESC", ASSET_TRANSFERS_DISTINCT_COUNT_DECIMALS_ASC = "ASSET_TRANSFERS_DISTINCT_COUNT_DECIMALS_ASC", ASSET_TRANSFERS_DISTINCT_COUNT_DECIMALS_DESC = "ASSET_TRANSFERS_DISTINCT_COUNT_DECIMALS_DESC", ASSET_TRANSFERS_DISTINCT_COUNT_FROM_ID_ASC = "ASSET_TRANSFERS_DISTINCT_COUNT_FROM_ID_ASC", ASSET_TRANSFERS_DISTINCT_COUNT_FROM_ID_DESC = "ASSET_TRANSFERS_DISTINCT_COUNT_FROM_ID_DESC", ASSET_TRANSFERS_DISTINCT_COUNT_ID_ASC = "ASSET_TRANSFERS_DISTINCT_COUNT_ID_ASC", ASSET_TRANSFERS_DISTINCT_COUNT_ID_DESC = "ASSET_TRANSFERS_DISTINCT_COUNT_ID_DESC", ASSET_TRANSFERS_DISTINCT_COUNT_NFT_ID_ASC = "ASSET_TRANSFERS_DISTINCT_COUNT_NFT_ID_ASC", ASSET_TRANSFERS_DISTINCT_COUNT_NFT_ID_DESC = "ASSET_TRANSFERS_DISTINCT_COUNT_NFT_ID_DESC", ASSET_TRANSFERS_DISTINCT_COUNT_TOKEN_ID_ASC = "ASSET_TRANSFERS_DISTINCT_COUNT_TOKEN_ID_ASC", ASSET_TRANSFERS_DISTINCT_COUNT_TOKEN_ID_DESC = "ASSET_TRANSFERS_DISTINCT_COUNT_TOKEN_ID_DESC", ASSET_TRANSFERS_DISTINCT_COUNT_TO_ID_ASC = "ASSET_TRANSFERS_DISTINCT_COUNT_TO_ID_ASC", ASSET_TRANSFERS_DISTINCT_COUNT_TO_ID_DESC = "ASSET_TRANSFERS_DISTINCT_COUNT_TO_ID_DESC", ASSET_TRANSFERS_DISTINCT_COUNT_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_DISTINCT_COUNT_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_DISTINCT_COUNT_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_DISTINCT_COUNT_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_DISTINCT_COUNT_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_DISTINCT_COUNT_TRANSACTION_ID_ASC", ASSET_TRANSFERS_DISTINCT_COUNT_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_DISTINCT_COUNT_TRANSACTION_ID_DESC", ASSET_TRANSFERS_DISTINCT_COUNT_TYPE_ASC = "ASSET_TRANSFERS_DISTINCT_COUNT_TYPE_ASC", ASSET_TRANSFERS_DISTINCT_COUNT_TYPE_DESC = "ASSET_TRANSFERS_DISTINCT_COUNT_TYPE_DESC", ASSET_TRANSFERS_DISTINCT_COUNT_VALUE_ASC = "ASSET_TRANSFERS_DISTINCT_COUNT_VALUE_ASC", ASSET_TRANSFERS_DISTINCT_COUNT_VALUE_DESC = "ASSET_TRANSFERS_DISTINCT_COUNT_VALUE_DESC", ASSET_TRANSFERS_MAX_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_MAX_BLOCK_RANGE_ASC", ASSET_TRANSFERS_MAX_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_MAX_BLOCK_RANGE_DESC", ASSET_TRANSFERS_MAX_DECIMALS_ASC = "ASSET_TRANSFERS_MAX_DECIMALS_ASC", ASSET_TRANSFERS_MAX_DECIMALS_DESC = "ASSET_TRANSFERS_MAX_DECIMALS_DESC", ASSET_TRANSFERS_MAX_FROM_ID_ASC = "ASSET_TRANSFERS_MAX_FROM_ID_ASC", ASSET_TRANSFERS_MAX_FROM_ID_DESC = "ASSET_TRANSFERS_MAX_FROM_ID_DESC", ASSET_TRANSFERS_MAX_ID_ASC = "ASSET_TRANSFERS_MAX_ID_ASC", ASSET_TRANSFERS_MAX_ID_DESC = "ASSET_TRANSFERS_MAX_ID_DESC", ASSET_TRANSFERS_MAX_NFT_ID_ASC = "ASSET_TRANSFERS_MAX_NFT_ID_ASC", ASSET_TRANSFERS_MAX_NFT_ID_DESC = "ASSET_TRANSFERS_MAX_NFT_ID_DESC", ASSET_TRANSFERS_MAX_TOKEN_ID_ASC = "ASSET_TRANSFERS_MAX_TOKEN_ID_ASC", ASSET_TRANSFERS_MAX_TOKEN_ID_DESC = "ASSET_TRANSFERS_MAX_TOKEN_ID_DESC", ASSET_TRANSFERS_MAX_TO_ID_ASC = "ASSET_TRANSFERS_MAX_TO_ID_ASC", ASSET_TRANSFERS_MAX_TO_ID_DESC = "ASSET_TRANSFERS_MAX_TO_ID_DESC", ASSET_TRANSFERS_MAX_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_MAX_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_MAX_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_MAX_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_MAX_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_MAX_TRANSACTION_ID_ASC", ASSET_TRANSFERS_MAX_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_MAX_TRANSACTION_ID_DESC", ASSET_TRANSFERS_MAX_TYPE_ASC = "ASSET_TRANSFERS_MAX_TYPE_ASC", ASSET_TRANSFERS_MAX_TYPE_DESC = "ASSET_TRANSFERS_MAX_TYPE_DESC", ASSET_TRANSFERS_MAX_VALUE_ASC = "ASSET_TRANSFERS_MAX_VALUE_ASC", ASSET_TRANSFERS_MAX_VALUE_DESC = "ASSET_TRANSFERS_MAX_VALUE_DESC", ASSET_TRANSFERS_MIN_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_MIN_BLOCK_RANGE_ASC", ASSET_TRANSFERS_MIN_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_MIN_BLOCK_RANGE_DESC", ASSET_TRANSFERS_MIN_DECIMALS_ASC = "ASSET_TRANSFERS_MIN_DECIMALS_ASC", ASSET_TRANSFERS_MIN_DECIMALS_DESC = "ASSET_TRANSFERS_MIN_DECIMALS_DESC", ASSET_TRANSFERS_MIN_FROM_ID_ASC = "ASSET_TRANSFERS_MIN_FROM_ID_ASC", ASSET_TRANSFERS_MIN_FROM_ID_DESC = "ASSET_TRANSFERS_MIN_FROM_ID_DESC", ASSET_TRANSFERS_MIN_ID_ASC = "ASSET_TRANSFERS_MIN_ID_ASC", ASSET_TRANSFERS_MIN_ID_DESC = "ASSET_TRANSFERS_MIN_ID_DESC", ASSET_TRANSFERS_MIN_NFT_ID_ASC = "ASSET_TRANSFERS_MIN_NFT_ID_ASC", ASSET_TRANSFERS_MIN_NFT_ID_DESC = "ASSET_TRANSFERS_MIN_NFT_ID_DESC", ASSET_TRANSFERS_MIN_TOKEN_ID_ASC = "ASSET_TRANSFERS_MIN_TOKEN_ID_ASC", ASSET_TRANSFERS_MIN_TOKEN_ID_DESC = "ASSET_TRANSFERS_MIN_TOKEN_ID_DESC", ASSET_TRANSFERS_MIN_TO_ID_ASC = "ASSET_TRANSFERS_MIN_TO_ID_ASC", ASSET_TRANSFERS_MIN_TO_ID_DESC = "ASSET_TRANSFERS_MIN_TO_ID_DESC", ASSET_TRANSFERS_MIN_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_MIN_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_MIN_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_MIN_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_MIN_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_MIN_TRANSACTION_ID_ASC", ASSET_TRANSFERS_MIN_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_MIN_TRANSACTION_ID_DESC", ASSET_TRANSFERS_MIN_TYPE_ASC = "ASSET_TRANSFERS_MIN_TYPE_ASC", ASSET_TRANSFERS_MIN_TYPE_DESC = "ASSET_TRANSFERS_MIN_TYPE_DESC", ASSET_TRANSFERS_MIN_VALUE_ASC = "ASSET_TRANSFERS_MIN_VALUE_ASC", ASSET_TRANSFERS_MIN_VALUE_DESC = "ASSET_TRANSFERS_MIN_VALUE_DESC", ASSET_TRANSFERS_STDDEV_POPULATION_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_STDDEV_POPULATION_BLOCK_RANGE_ASC", ASSET_TRANSFERS_STDDEV_POPULATION_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_STDDEV_POPULATION_BLOCK_RANGE_DESC", ASSET_TRANSFERS_STDDEV_POPULATION_DECIMALS_ASC = "ASSET_TRANSFERS_STDDEV_POPULATION_DECIMALS_ASC", ASSET_TRANSFERS_STDDEV_POPULATION_DECIMALS_DESC = "ASSET_TRANSFERS_STDDEV_POPULATION_DECIMALS_DESC", ASSET_TRANSFERS_STDDEV_POPULATION_FROM_ID_ASC = "ASSET_TRANSFERS_STDDEV_POPULATION_FROM_ID_ASC", ASSET_TRANSFERS_STDDEV_POPULATION_FROM_ID_DESC = "ASSET_TRANSFERS_STDDEV_POPULATION_FROM_ID_DESC", ASSET_TRANSFERS_STDDEV_POPULATION_ID_ASC = "ASSET_TRANSFERS_STDDEV_POPULATION_ID_ASC", ASSET_TRANSFERS_STDDEV_POPULATION_ID_DESC = "ASSET_TRANSFERS_STDDEV_POPULATION_ID_DESC", ASSET_TRANSFERS_STDDEV_POPULATION_NFT_ID_ASC = "ASSET_TRANSFERS_STDDEV_POPULATION_NFT_ID_ASC", ASSET_TRANSFERS_STDDEV_POPULATION_NFT_ID_DESC = "ASSET_TRANSFERS_STDDEV_POPULATION_NFT_ID_DESC", ASSET_TRANSFERS_STDDEV_POPULATION_TOKEN_ID_ASC = "ASSET_TRANSFERS_STDDEV_POPULATION_TOKEN_ID_ASC", ASSET_TRANSFERS_STDDEV_POPULATION_TOKEN_ID_DESC = "ASSET_TRANSFERS_STDDEV_POPULATION_TOKEN_ID_DESC", ASSET_TRANSFERS_STDDEV_POPULATION_TO_ID_ASC = "ASSET_TRANSFERS_STDDEV_POPULATION_TO_ID_ASC", ASSET_TRANSFERS_STDDEV_POPULATION_TO_ID_DESC = "ASSET_TRANSFERS_STDDEV_POPULATION_TO_ID_DESC", ASSET_TRANSFERS_STDDEV_POPULATION_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_STDDEV_POPULATION_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_STDDEV_POPULATION_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_STDDEV_POPULATION_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_STDDEV_POPULATION_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_STDDEV_POPULATION_TRANSACTION_ID_ASC", ASSET_TRANSFERS_STDDEV_POPULATION_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_STDDEV_POPULATION_TRANSACTION_ID_DESC", ASSET_TRANSFERS_STDDEV_POPULATION_TYPE_ASC = "ASSET_TRANSFERS_STDDEV_POPULATION_TYPE_ASC", ASSET_TRANSFERS_STDDEV_POPULATION_TYPE_DESC = "ASSET_TRANSFERS_STDDEV_POPULATION_TYPE_DESC", ASSET_TRANSFERS_STDDEV_POPULATION_VALUE_ASC = "ASSET_TRANSFERS_STDDEV_POPULATION_VALUE_ASC", ASSET_TRANSFERS_STDDEV_POPULATION_VALUE_DESC = "ASSET_TRANSFERS_STDDEV_POPULATION_VALUE_DESC", ASSET_TRANSFERS_STDDEV_SAMPLE_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_STDDEV_SAMPLE_BLOCK_RANGE_ASC", ASSET_TRANSFERS_STDDEV_SAMPLE_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_STDDEV_SAMPLE_BLOCK_RANGE_DESC", ASSET_TRANSFERS_STDDEV_SAMPLE_DECIMALS_ASC = "ASSET_TRANSFERS_STDDEV_SAMPLE_DECIMALS_ASC", ASSET_TRANSFERS_STDDEV_SAMPLE_DECIMALS_DESC = "ASSET_TRANSFERS_STDDEV_SAMPLE_DECIMALS_DESC", ASSET_TRANSFERS_STDDEV_SAMPLE_FROM_ID_ASC = "ASSET_TRANSFERS_STDDEV_SAMPLE_FROM_ID_ASC", ASSET_TRANSFERS_STDDEV_SAMPLE_FROM_ID_DESC = "ASSET_TRANSFERS_STDDEV_SAMPLE_FROM_ID_DESC", ASSET_TRANSFERS_STDDEV_SAMPLE_ID_ASC = "ASSET_TRANSFERS_STDDEV_SAMPLE_ID_ASC", ASSET_TRANSFERS_STDDEV_SAMPLE_ID_DESC = "ASSET_TRANSFERS_STDDEV_SAMPLE_ID_DESC", ASSET_TRANSFERS_STDDEV_SAMPLE_NFT_ID_ASC = "ASSET_TRANSFERS_STDDEV_SAMPLE_NFT_ID_ASC", ASSET_TRANSFERS_STDDEV_SAMPLE_NFT_ID_DESC = "ASSET_TRANSFERS_STDDEV_SAMPLE_NFT_ID_DESC", ASSET_TRANSFERS_STDDEV_SAMPLE_TOKEN_ID_ASC = "ASSET_TRANSFERS_STDDEV_SAMPLE_TOKEN_ID_ASC", ASSET_TRANSFERS_STDDEV_SAMPLE_TOKEN_ID_DESC = "ASSET_TRANSFERS_STDDEV_SAMPLE_TOKEN_ID_DESC", ASSET_TRANSFERS_STDDEV_SAMPLE_TO_ID_ASC = "ASSET_TRANSFERS_STDDEV_SAMPLE_TO_ID_ASC", ASSET_TRANSFERS_STDDEV_SAMPLE_TO_ID_DESC = "ASSET_TRANSFERS_STDDEV_SAMPLE_TO_ID_DESC", ASSET_TRANSFERS_STDDEV_SAMPLE_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_STDDEV_SAMPLE_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_STDDEV_SAMPLE_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_STDDEV_SAMPLE_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_STDDEV_SAMPLE_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_STDDEV_SAMPLE_TRANSACTION_ID_ASC", ASSET_TRANSFERS_STDDEV_SAMPLE_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_STDDEV_SAMPLE_TRANSACTION_ID_DESC", ASSET_TRANSFERS_STDDEV_SAMPLE_TYPE_ASC = "ASSET_TRANSFERS_STDDEV_SAMPLE_TYPE_ASC", ASSET_TRANSFERS_STDDEV_SAMPLE_TYPE_DESC = "ASSET_TRANSFERS_STDDEV_SAMPLE_TYPE_DESC", ASSET_TRANSFERS_STDDEV_SAMPLE_VALUE_ASC = "ASSET_TRANSFERS_STDDEV_SAMPLE_VALUE_ASC", ASSET_TRANSFERS_STDDEV_SAMPLE_VALUE_DESC = "ASSET_TRANSFERS_STDDEV_SAMPLE_VALUE_DESC", ASSET_TRANSFERS_SUM_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_SUM_BLOCK_RANGE_ASC", ASSET_TRANSFERS_SUM_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_SUM_BLOCK_RANGE_DESC", ASSET_TRANSFERS_SUM_DECIMALS_ASC = "ASSET_TRANSFERS_SUM_DECIMALS_ASC", ASSET_TRANSFERS_SUM_DECIMALS_DESC = "ASSET_TRANSFERS_SUM_DECIMALS_DESC", ASSET_TRANSFERS_SUM_FROM_ID_ASC = "ASSET_TRANSFERS_SUM_FROM_ID_ASC", ASSET_TRANSFERS_SUM_FROM_ID_DESC = "ASSET_TRANSFERS_SUM_FROM_ID_DESC", ASSET_TRANSFERS_SUM_ID_ASC = "ASSET_TRANSFERS_SUM_ID_ASC", ASSET_TRANSFERS_SUM_ID_DESC = "ASSET_TRANSFERS_SUM_ID_DESC", ASSET_TRANSFERS_SUM_NFT_ID_ASC = "ASSET_TRANSFERS_SUM_NFT_ID_ASC", ASSET_TRANSFERS_SUM_NFT_ID_DESC = "ASSET_TRANSFERS_SUM_NFT_ID_DESC", ASSET_TRANSFERS_SUM_TOKEN_ID_ASC = "ASSET_TRANSFERS_SUM_TOKEN_ID_ASC", ASSET_TRANSFERS_SUM_TOKEN_ID_DESC = "ASSET_TRANSFERS_SUM_TOKEN_ID_DESC", ASSET_TRANSFERS_SUM_TO_ID_ASC = "ASSET_TRANSFERS_SUM_TO_ID_ASC", ASSET_TRANSFERS_SUM_TO_ID_DESC = "ASSET_TRANSFERS_SUM_TO_ID_DESC", ASSET_TRANSFERS_SUM_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_SUM_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_SUM_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_SUM_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_SUM_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_SUM_TRANSACTION_ID_ASC", ASSET_TRANSFERS_SUM_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_SUM_TRANSACTION_ID_DESC", ASSET_TRANSFERS_SUM_TYPE_ASC = "ASSET_TRANSFERS_SUM_TYPE_ASC", ASSET_TRANSFERS_SUM_TYPE_DESC = "ASSET_TRANSFERS_SUM_TYPE_DESC", ASSET_TRANSFERS_SUM_VALUE_ASC = "ASSET_TRANSFERS_SUM_VALUE_ASC", ASSET_TRANSFERS_SUM_VALUE_DESC = "ASSET_TRANSFERS_SUM_VALUE_DESC", ASSET_TRANSFERS_VARIANCE_POPULATION_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_VARIANCE_POPULATION_BLOCK_RANGE_ASC", ASSET_TRANSFERS_VARIANCE_POPULATION_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_VARIANCE_POPULATION_BLOCK_RANGE_DESC", ASSET_TRANSFERS_VARIANCE_POPULATION_DECIMALS_ASC = "ASSET_TRANSFERS_VARIANCE_POPULATION_DECIMALS_ASC", ASSET_TRANSFERS_VARIANCE_POPULATION_DECIMALS_DESC = "ASSET_TRANSFERS_VARIANCE_POPULATION_DECIMALS_DESC", ASSET_TRANSFERS_VARIANCE_POPULATION_FROM_ID_ASC = "ASSET_TRANSFERS_VARIANCE_POPULATION_FROM_ID_ASC", ASSET_TRANSFERS_VARIANCE_POPULATION_FROM_ID_DESC = "ASSET_TRANSFERS_VARIANCE_POPULATION_FROM_ID_DESC", ASSET_TRANSFERS_VARIANCE_POPULATION_ID_ASC = "ASSET_TRANSFERS_VARIANCE_POPULATION_ID_ASC", ASSET_TRANSFERS_VARIANCE_POPULATION_ID_DESC = "ASSET_TRANSFERS_VARIANCE_POPULATION_ID_DESC", ASSET_TRANSFERS_VARIANCE_POPULATION_NFT_ID_ASC = "ASSET_TRANSFERS_VARIANCE_POPULATION_NFT_ID_ASC", ASSET_TRANSFERS_VARIANCE_POPULATION_NFT_ID_DESC = "ASSET_TRANSFERS_VARIANCE_POPULATION_NFT_ID_DESC", ASSET_TRANSFERS_VARIANCE_POPULATION_TOKEN_ID_ASC = "ASSET_TRANSFERS_VARIANCE_POPULATION_TOKEN_ID_ASC", ASSET_TRANSFERS_VARIANCE_POPULATION_TOKEN_ID_DESC = "ASSET_TRANSFERS_VARIANCE_POPULATION_TOKEN_ID_DESC", ASSET_TRANSFERS_VARIANCE_POPULATION_TO_ID_ASC = "ASSET_TRANSFERS_VARIANCE_POPULATION_TO_ID_ASC", ASSET_TRANSFERS_VARIANCE_POPULATION_TO_ID_DESC = "ASSET_TRANSFERS_VARIANCE_POPULATION_TO_ID_DESC", ASSET_TRANSFERS_VARIANCE_POPULATION_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_VARIANCE_POPULATION_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_VARIANCE_POPULATION_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_VARIANCE_POPULATION_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_VARIANCE_POPULATION_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_VARIANCE_POPULATION_TRANSACTION_ID_ASC", ASSET_TRANSFERS_VARIANCE_POPULATION_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_VARIANCE_POPULATION_TRANSACTION_ID_DESC", ASSET_TRANSFERS_VARIANCE_POPULATION_TYPE_ASC = "ASSET_TRANSFERS_VARIANCE_POPULATION_TYPE_ASC", ASSET_TRANSFERS_VARIANCE_POPULATION_TYPE_DESC = "ASSET_TRANSFERS_VARIANCE_POPULATION_TYPE_DESC", ASSET_TRANSFERS_VARIANCE_POPULATION_VALUE_ASC = "ASSET_TRANSFERS_VARIANCE_POPULATION_VALUE_ASC", ASSET_TRANSFERS_VARIANCE_POPULATION_VALUE_DESC = "ASSET_TRANSFERS_VARIANCE_POPULATION_VALUE_DESC", ASSET_TRANSFERS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC", ASSET_TRANSFERS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC", ASSET_TRANSFERS_VARIANCE_SAMPLE_DECIMALS_ASC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_DECIMALS_ASC", ASSET_TRANSFERS_VARIANCE_SAMPLE_DECIMALS_DESC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_DECIMALS_DESC", ASSET_TRANSFERS_VARIANCE_SAMPLE_FROM_ID_ASC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_FROM_ID_ASC", ASSET_TRANSFERS_VARIANCE_SAMPLE_FROM_ID_DESC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_FROM_ID_DESC", ASSET_TRANSFERS_VARIANCE_SAMPLE_ID_ASC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_ID_ASC", ASSET_TRANSFERS_VARIANCE_SAMPLE_ID_DESC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_ID_DESC", ASSET_TRANSFERS_VARIANCE_SAMPLE_NFT_ID_ASC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_NFT_ID_ASC", ASSET_TRANSFERS_VARIANCE_SAMPLE_NFT_ID_DESC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_NFT_ID_DESC", ASSET_TRANSFERS_VARIANCE_SAMPLE_TOKEN_ID_ASC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_TOKEN_ID_ASC", ASSET_TRANSFERS_VARIANCE_SAMPLE_TOKEN_ID_DESC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_TOKEN_ID_DESC", ASSET_TRANSFERS_VARIANCE_SAMPLE_TO_ID_ASC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_TO_ID_ASC", ASSET_TRANSFERS_VARIANCE_SAMPLE_TO_ID_DESC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_TO_ID_DESC", ASSET_TRANSFERS_VARIANCE_SAMPLE_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_VARIANCE_SAMPLE_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_VARIANCE_SAMPLE_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_TRANSACTION_ID_ASC", ASSET_TRANSFERS_VARIANCE_SAMPLE_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_TRANSACTION_ID_DESC", ASSET_TRANSFERS_VARIANCE_SAMPLE_TYPE_ASC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_TYPE_ASC", ASSET_TRANSFERS_VARIANCE_SAMPLE_TYPE_DESC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_TYPE_DESC", ASSET_TRANSFERS_VARIANCE_SAMPLE_VALUE_ASC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_VALUE_ASC", ASSET_TRANSFERS_VARIANCE_SAMPLE_VALUE_DESC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_VALUE_DESC", COLLECTION_ID_ASC = "COLLECTION_ID_ASC", COLLECTION_ID_DESC = "COLLECTION_ID_DESC", ID_ASC = "ID_ASC", ID_DESC = "ID_DESC", METADATA_ASC = "METADATA_ASC", METADATA_DESC = "METADATA_DESC", NATURAL = "NATURAL", NFT_BALANCES_AVERAGE_BALANCE_ASC = "NFT_BALANCES_AVERAGE_BALANCE_ASC", NFT_BALANCES_AVERAGE_BALANCE_DESC = "NFT_BALANCES_AVERAGE_BALANCE_DESC", NFT_BALANCES_AVERAGE_BLOCK_RANGE_ASC = "NFT_BALANCES_AVERAGE_BLOCK_RANGE_ASC", NFT_BALANCES_AVERAGE_BLOCK_RANGE_DESC = "NFT_BALANCES_AVERAGE_BLOCK_RANGE_DESC", NFT_BALANCES_AVERAGE_ID_ASC = "NFT_BALANCES_AVERAGE_ID_ASC", NFT_BALANCES_AVERAGE_ID_DESC = "NFT_BALANCES_AVERAGE_ID_DESC", NFT_BALANCES_AVERAGE_NFT_ID_ASC = "NFT_BALANCES_AVERAGE_NFT_ID_ASC", NFT_BALANCES_AVERAGE_NFT_ID_DESC = "NFT_BALANCES_AVERAGE_NFT_ID_DESC", NFT_BALANCES_AVERAGE_NFT_TOKEN_ID_ASC = "NFT_BALANCES_AVERAGE_NFT_TOKEN_ID_ASC", NFT_BALANCES_AVERAGE_NFT_TOKEN_ID_DESC = "NFT_BALANCES_AVERAGE_NFT_TOKEN_ID_DESC", NFT_BALANCES_AVERAGE_WALLET_ID_ASC = "NFT_BALANCES_AVERAGE_WALLET_ID_ASC", NFT_BALANCES_AVERAGE_WALLET_ID_DESC = "NFT_BALANCES_AVERAGE_WALLET_ID_DESC", NFT_BALANCES_BY_NFT_ID__COUNT_ASC = "NFT_BALANCES_BY_NFT_ID__COUNT_ASC", NFT_BALANCES_BY_NFT_ID__COUNT_DESC = "NFT_BALANCES_BY_NFT_ID__COUNT_DESC", NFT_BALANCES_COUNT_ASC = "NFT_BALANCES_COUNT_ASC", NFT_BALANCES_COUNT_DESC = "NFT_BALANCES_COUNT_DESC", NFT_BALANCES_DISTINCT_COUNT_BALANCE_ASC = "NFT_BALANCES_DISTINCT_COUNT_BALANCE_ASC", NFT_BALANCES_DISTINCT_COUNT_BALANCE_DESC = "NFT_BALANCES_DISTINCT_COUNT_BALANCE_DESC", NFT_BALANCES_DISTINCT_COUNT_BLOCK_RANGE_ASC = "NFT_BALANCES_DISTINCT_COUNT_BLOCK_RANGE_ASC", NFT_BALANCES_DISTINCT_COUNT_BLOCK_RANGE_DESC = "NFT_BALANCES_DISTINCT_COUNT_BLOCK_RANGE_DESC", NFT_BALANCES_DISTINCT_COUNT_ID_ASC = "NFT_BALANCES_DISTINCT_COUNT_ID_ASC", NFT_BALANCES_DISTINCT_COUNT_ID_DESC = "NFT_BALANCES_DISTINCT_COUNT_ID_DESC", NFT_BALANCES_DISTINCT_COUNT_NFT_ID_ASC = "NFT_BALANCES_DISTINCT_COUNT_NFT_ID_ASC", NFT_BALANCES_DISTINCT_COUNT_NFT_ID_DESC = "NFT_BALANCES_DISTINCT_COUNT_NFT_ID_DESC", NFT_BALANCES_DISTINCT_COUNT_NFT_TOKEN_ID_ASC = "NFT_BALANCES_DISTINCT_COUNT_NFT_TOKEN_ID_ASC", NFT_BALANCES_DISTINCT_COUNT_NFT_TOKEN_ID_DESC = "NFT_BALANCES_DISTINCT_COUNT_NFT_TOKEN_ID_DESC", NFT_BALANCES_DISTINCT_COUNT_WALLET_ID_ASC = "NFT_BALANCES_DISTINCT_COUNT_WALLET_ID_ASC", NFT_BALANCES_DISTINCT_COUNT_WALLET_ID_DESC = "NFT_BALANCES_DISTINCT_COUNT_WALLET_ID_DESC", NFT_BALANCES_MAX_BALANCE_ASC = "NFT_BALANCES_MAX_BALANCE_ASC", NFT_BALANCES_MAX_BALANCE_DESC = "NFT_BALANCES_MAX_BALANCE_DESC", NFT_BALANCES_MAX_BLOCK_RANGE_ASC = "NFT_BALANCES_MAX_BLOCK_RANGE_ASC", NFT_BALANCES_MAX_BLOCK_RANGE_DESC = "NFT_BALANCES_MAX_BLOCK_RANGE_DESC", NFT_BALANCES_MAX_ID_ASC = "NFT_BALANCES_MAX_ID_ASC", NFT_BALANCES_MAX_ID_DESC = "NFT_BALANCES_MAX_ID_DESC", NFT_BALANCES_MAX_NFT_ID_ASC = "NFT_BALANCES_MAX_NFT_ID_ASC", NFT_BALANCES_MAX_NFT_ID_DESC = "NFT_BALANCES_MAX_NFT_ID_DESC", NFT_BALANCES_MAX_NFT_TOKEN_ID_ASC = "NFT_BALANCES_MAX_NFT_TOKEN_ID_ASC", NFT_BALANCES_MAX_NFT_TOKEN_ID_DESC = "NFT_BALANCES_MAX_NFT_TOKEN_ID_DESC", NFT_BALANCES_MAX_WALLET_ID_ASC = "NFT_BALANCES_MAX_WALLET_ID_ASC", NFT_BALANCES_MAX_WALLET_ID_DESC = "NFT_BALANCES_MAX_WALLET_ID_DESC", NFT_BALANCES_MIN_BALANCE_ASC = "NFT_BALANCES_MIN_BALANCE_ASC", NFT_BALANCES_MIN_BALANCE_DESC = "NFT_BALANCES_MIN_BALANCE_DESC", NFT_BALANCES_MIN_BLOCK_RANGE_ASC = "NFT_BALANCES_MIN_BLOCK_RANGE_ASC", NFT_BALANCES_MIN_BLOCK_RANGE_DESC = "NFT_BALANCES_MIN_BLOCK_RANGE_DESC", NFT_BALANCES_MIN_ID_ASC = "NFT_BALANCES_MIN_ID_ASC", NFT_BALANCES_MIN_ID_DESC = "NFT_BALANCES_MIN_ID_DESC", NFT_BALANCES_MIN_NFT_ID_ASC = "NFT_BALANCES_MIN_NFT_ID_ASC", NFT_BALANCES_MIN_NFT_ID_DESC = "NFT_BALANCES_MIN_NFT_ID_DESC", NFT_BALANCES_MIN_NFT_TOKEN_ID_ASC = "NFT_BALANCES_MIN_NFT_TOKEN_ID_ASC", NFT_BALANCES_MIN_NFT_TOKEN_ID_DESC = "NFT_BALANCES_MIN_NFT_TOKEN_ID_DESC", NFT_BALANCES_MIN_WALLET_ID_ASC = "NFT_BALANCES_MIN_WALLET_ID_ASC", NFT_BALANCES_MIN_WALLET_ID_DESC = "NFT_BALANCES_MIN_WALLET_ID_DESC", NFT_BALANCES_STDDEV_POPULATION_BALANCE_ASC = "NFT_BALANCES_STDDEV_POPULATION_BALANCE_ASC", NFT_BALANCES_STDDEV_POPULATION_BALANCE_DESC = "NFT_BALANCES_STDDEV_POPULATION_BALANCE_DESC", NFT_BALANCES_STDDEV_POPULATION_BLOCK_RANGE_ASC = "NFT_BALANCES_STDDEV_POPULATION_BLOCK_RANGE_ASC", NFT_BALANCES_STDDEV_POPULATION_BLOCK_RANGE_DESC = "NFT_BALANCES_STDDEV_POPULATION_BLOCK_RANGE_DESC", NFT_BALANCES_STDDEV_POPULATION_ID_ASC = "NFT_BALANCES_STDDEV_POPULATION_ID_ASC", NFT_BALANCES_STDDEV_POPULATION_ID_DESC = "NFT_BALANCES_STDDEV_POPULATION_ID_DESC", NFT_BALANCES_STDDEV_POPULATION_NFT_ID_ASC = "NFT_BALANCES_STDDEV_POPULATION_NFT_ID_ASC", NFT_BALANCES_STDDEV_POPULATION_NFT_ID_DESC = "NFT_BALANCES_STDDEV_POPULATION_NFT_ID_DESC", NFT_BALANCES_STDDEV_POPULATION_NFT_TOKEN_ID_ASC = "NFT_BALANCES_STDDEV_POPULATION_NFT_TOKEN_ID_ASC", NFT_BALANCES_STDDEV_POPULATION_NFT_TOKEN_ID_DESC = "NFT_BALANCES_STDDEV_POPULATION_NFT_TOKEN_ID_DESC", NFT_BALANCES_STDDEV_POPULATION_WALLET_ID_ASC = "NFT_BALANCES_STDDEV_POPULATION_WALLET_ID_ASC", NFT_BALANCES_STDDEV_POPULATION_WALLET_ID_DESC = "NFT_BALANCES_STDDEV_POPULATION_WALLET_ID_DESC", NFT_BALANCES_STDDEV_SAMPLE_BALANCE_ASC = "NFT_BALANCES_STDDEV_SAMPLE_BALANCE_ASC", NFT_BALANCES_STDDEV_SAMPLE_BALANCE_DESC = "NFT_BALANCES_STDDEV_SAMPLE_BALANCE_DESC", NFT_BALANCES_STDDEV_SAMPLE_BLOCK_RANGE_ASC = "NFT_BALANCES_STDDEV_SAMPLE_BLOCK_RANGE_ASC", NFT_BALANCES_STDDEV_SAMPLE_BLOCK_RANGE_DESC = "NFT_BALANCES_STDDEV_SAMPLE_BLOCK_RANGE_DESC", NFT_BALANCES_STDDEV_SAMPLE_ID_ASC = "NFT_BALANCES_STDDEV_SAMPLE_ID_ASC", NFT_BALANCES_STDDEV_SAMPLE_ID_DESC = "NFT_BALANCES_STDDEV_SAMPLE_ID_DESC", NFT_BALANCES_STDDEV_SAMPLE_NFT_ID_ASC = "NFT_BALANCES_STDDEV_SAMPLE_NFT_ID_ASC", NFT_BALANCES_STDDEV_SAMPLE_NFT_ID_DESC = "NFT_BALANCES_STDDEV_SAMPLE_NFT_ID_DESC", NFT_BALANCES_STDDEV_SAMPLE_NFT_TOKEN_ID_ASC = "NFT_BALANCES_STDDEV_SAMPLE_NFT_TOKEN_ID_ASC", NFT_BALANCES_STDDEV_SAMPLE_NFT_TOKEN_ID_DESC = "NFT_BALANCES_STDDEV_SAMPLE_NFT_TOKEN_ID_DESC", NFT_BALANCES_STDDEV_SAMPLE_WALLET_ID_ASC = "NFT_BALANCES_STDDEV_SAMPLE_WALLET_ID_ASC", NFT_BALANCES_STDDEV_SAMPLE_WALLET_ID_DESC = "NFT_BALANCES_STDDEV_SAMPLE_WALLET_ID_DESC", NFT_BALANCES_SUM_BALANCE_ASC = "NFT_BALANCES_SUM_BALANCE_ASC", NFT_BALANCES_SUM_BALANCE_DESC = "NFT_BALANCES_SUM_BALANCE_DESC", NFT_BALANCES_SUM_BLOCK_RANGE_ASC = "NFT_BALANCES_SUM_BLOCK_RANGE_ASC", NFT_BALANCES_SUM_BLOCK_RANGE_DESC = "NFT_BALANCES_SUM_BLOCK_RANGE_DESC", NFT_BALANCES_SUM_ID_ASC = "NFT_BALANCES_SUM_ID_ASC", NFT_BALANCES_SUM_ID_DESC = "NFT_BALANCES_SUM_ID_DESC", NFT_BALANCES_SUM_NFT_ID_ASC = "NFT_BALANCES_SUM_NFT_ID_ASC", NFT_BALANCES_SUM_NFT_ID_DESC = "NFT_BALANCES_SUM_NFT_ID_DESC", NFT_BALANCES_SUM_NFT_TOKEN_ID_ASC = "NFT_BALANCES_SUM_NFT_TOKEN_ID_ASC", NFT_BALANCES_SUM_NFT_TOKEN_ID_DESC = "NFT_BALANCES_SUM_NFT_TOKEN_ID_DESC", NFT_BALANCES_SUM_WALLET_ID_ASC = "NFT_BALANCES_SUM_WALLET_ID_ASC", NFT_BALANCES_SUM_WALLET_ID_DESC = "NFT_BALANCES_SUM_WALLET_ID_DESC", NFT_BALANCES_VARIANCE_POPULATION_BALANCE_ASC = "NFT_BALANCES_VARIANCE_POPULATION_BALANCE_ASC", NFT_BALANCES_VARIANCE_POPULATION_BALANCE_DESC = "NFT_BALANCES_VARIANCE_POPULATION_BALANCE_DESC", NFT_BALANCES_VARIANCE_POPULATION_BLOCK_RANGE_ASC = "NFT_BALANCES_VARIANCE_POPULATION_BLOCK_RANGE_ASC", NFT_BALANCES_VARIANCE_POPULATION_BLOCK_RANGE_DESC = "NFT_BALANCES_VARIANCE_POPULATION_BLOCK_RANGE_DESC", NFT_BALANCES_VARIANCE_POPULATION_ID_ASC = "NFT_BALANCES_VARIANCE_POPULATION_ID_ASC", NFT_BALANCES_VARIANCE_POPULATION_ID_DESC = "NFT_BALANCES_VARIANCE_POPULATION_ID_DESC", NFT_BALANCES_VARIANCE_POPULATION_NFT_ID_ASC = "NFT_BALANCES_VARIANCE_POPULATION_NFT_ID_ASC", NFT_BALANCES_VARIANCE_POPULATION_NFT_ID_DESC = "NFT_BALANCES_VARIANCE_POPULATION_NFT_ID_DESC", NFT_BALANCES_VARIANCE_POPULATION_NFT_TOKEN_ID_ASC = "NFT_BALANCES_VARIANCE_POPULATION_NFT_TOKEN_ID_ASC", NFT_BALANCES_VARIANCE_POPULATION_NFT_TOKEN_ID_DESC = "NFT_BALANCES_VARIANCE_POPULATION_NFT_TOKEN_ID_DESC", NFT_BALANCES_VARIANCE_POPULATION_WALLET_ID_ASC = "NFT_BALANCES_VARIANCE_POPULATION_WALLET_ID_ASC", NFT_BALANCES_VARIANCE_POPULATION_WALLET_ID_DESC = "NFT_BALANCES_VARIANCE_POPULATION_WALLET_ID_DESC", NFT_BALANCES_VARIANCE_SAMPLE_BALANCE_ASC = "NFT_BALANCES_VARIANCE_SAMPLE_BALANCE_ASC", NFT_BALANCES_VARIANCE_SAMPLE_BALANCE_DESC = "NFT_BALANCES_VARIANCE_SAMPLE_BALANCE_DESC", NFT_BALANCES_VARIANCE_SAMPLE_BLOCK_RANGE_ASC = "NFT_BALANCES_VARIANCE_SAMPLE_BLOCK_RANGE_ASC", NFT_BALANCES_VARIANCE_SAMPLE_BLOCK_RANGE_DESC = "NFT_BALANCES_VARIANCE_SAMPLE_BLOCK_RANGE_DESC", NFT_BALANCES_VARIANCE_SAMPLE_ID_ASC = "NFT_BALANCES_VARIANCE_SAMPLE_ID_ASC", NFT_BALANCES_VARIANCE_SAMPLE_ID_DESC = "NFT_BALANCES_VARIANCE_SAMPLE_ID_DESC", NFT_BALANCES_VARIANCE_SAMPLE_NFT_ID_ASC = "NFT_BALANCES_VARIANCE_SAMPLE_NFT_ID_ASC", NFT_BALANCES_VARIANCE_SAMPLE_NFT_ID_DESC = "NFT_BALANCES_VARIANCE_SAMPLE_NFT_ID_DESC", NFT_BALANCES_VARIANCE_SAMPLE_NFT_TOKEN_ID_ASC = "NFT_BALANCES_VARIANCE_SAMPLE_NFT_TOKEN_ID_ASC", NFT_BALANCES_VARIANCE_SAMPLE_NFT_TOKEN_ID_DESC = "NFT_BALANCES_VARIANCE_SAMPLE_NFT_TOKEN_ID_DESC", NFT_BALANCES_VARIANCE_SAMPLE_WALLET_ID_ASC = "NFT_BALANCES_VARIANCE_SAMPLE_WALLET_ID_ASC", NFT_BALANCES_VARIANCE_SAMPLE_WALLET_ID_DESC = "NFT_BALANCES_VARIANCE_SAMPLE_WALLET_ID_DESC", PRIMARY_KEY_ASC = "PRIMARY_KEY_ASC", PRIMARY_KEY_DESC = "PRIMARY_KEY_DESC", TOKEN_CONTRACT_BY_COLLECTION_ID__DECIMALS_ASC = "TOKEN_CONTRACT_BY_COLLECTION_ID__DECIMALS_ASC", TOKEN_CONTRACT_BY_COLLECTION_ID__DECIMALS_DESC = "TOKEN_CONTRACT_BY_COLLECTION_ID__DECIMALS_DESC", TOKEN_CONTRACT_BY_COLLECTION_ID__ICON_URL_ASC = "TOKEN_CONTRACT_BY_COLLECTION_ID__ICON_URL_ASC", TOKEN_CONTRACT_BY_COLLECTION_ID__ICON_URL_DESC = "TOKEN_CONTRACT_BY_COLLECTION_ID__ICON_URL_DESC", TOKEN_CONTRACT_BY_COLLECTION_ID__ID_ASC = "TOKEN_CONTRACT_BY_COLLECTION_ID__ID_ASC", TOKEN_CONTRACT_BY_COLLECTION_ID__ID_DESC = "TOKEN_CONTRACT_BY_COLLECTION_ID__ID_DESC", TOKEN_CONTRACT_BY_COLLECTION_ID__NAME_ASC = "TOKEN_CONTRACT_BY_COLLECTION_ID__NAME_ASC", TOKEN_CONTRACT_BY_COLLECTION_ID__NAME_DESC = "TOKEN_CONTRACT_BY_COLLECTION_ID__NAME_DESC", TOKEN_CONTRACT_BY_COLLECTION_ID__SYMBOL_ASC = "TOKEN_CONTRACT_BY_COLLECTION_ID__SYMBOL_ASC", TOKEN_CONTRACT_BY_COLLECTION_ID__SYMBOL_DESC = "TOKEN_CONTRACT_BY_COLLECTION_ID__SYMBOL_DESC", TOKEN_CONTRACT_BY_COLLECTION_ID__TYPE_ASC = "TOKEN_CONTRACT_BY_COLLECTION_ID__TYPE_ASC", TOKEN_CONTRACT_BY_COLLECTION_ID__TYPE_DESC = "TOKEN_CONTRACT_BY_COLLECTION_ID__TYPE_DESC", TOKEN_ID_ASC = "TOKEN_ID_ASC", TOKEN_ID_DESC = "TOKEN_ID_DESC" } /** An object with a globally unique `ID`. */ type GqlNode = { /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ nodeId: Scalars['ID']['output']; }; /** Options for ordering null values in a specific direction. */ declare enum GqlNullOrder { /** Order null values first. */ NULLS_FIRST = "NULLS_FIRST", /** Order null values last. */ NULLS_LAST = "NULLS_LAST" } type GqlOrder = GqlNode & { /** Reads and enables pagination through a set of `AssetTransfer`. */ assetTransfersByOrderTransactionOrderIdAndAssetTransferId: GqlOrderAssetTransfersByOrderTransactionOrderIdAndAssetTransferIdManyToManyConnection; createdAt: Scalars['Datetime']['output']; id: Scalars['String']['output']; items: Scalars['JSON']['output']; /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ nodeId: Scalars['ID']['output']; /** Reads and enables pagination through a set of `OrderTransaction`. */ orderTransactions: GqlOrderTransactionsConnection; price: Scalars['Int']['output']; }; type GqlOrderassetTransfersByOrderTransactionOrderIdAndAssetTransferIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlOrderorderTransactionsArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlOrderAggregates = { /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ average: Maybe; /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ distinctCount: Maybe; keys: Maybe>; /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ max: Maybe; /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ min: Maybe; /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ stddevPopulation: Maybe; /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ stddevSample: Maybe; /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ sum: Maybe; /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ variancePopulation: Maybe; /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ varianceSample: Maybe; }; /** A connection to a list of `AssetTransfer` values, with data from `OrderTransaction`. */ type GqlOrderAssetTransfersByOrderTransactionOrderIdAndAssetTransferIdManyToManyConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `AssetTransfer`, info from the `OrderTransaction`, and the cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `AssetTransfer` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `AssetTransfer` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `AssetTransfer` values, with data from `OrderTransaction`. */ type GqlOrderAssetTransfersByOrderTransactionOrderIdAndAssetTransferIdManyToManyConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `AssetTransfer` edge in the connection, with data from `OrderTransaction`. */ type GqlOrderAssetTransfersByOrderTransactionOrderIdAndAssetTransferIdManyToManyEdge = { /** A cursor for use in pagination. */ cursor: Maybe; /** The `AssetTransfer` at the end of the edge. */ node: Maybe; /** Reads and enables pagination through a set of `OrderTransaction`. */ orderTransactions: GqlOrderTransactionsConnection; }; /** A `AssetTransfer` edge in the connection, with data from `OrderTransaction`. */ type GqlOrderAssetTransfersByOrderTransactionOrderIdAndAssetTransferIdManyToManyEdgeorderTransactionsArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlOrderAverageAggregates = { /** Mean average of price across the matching connection */ price: Maybe; }; type GqlOrderDistinctCountAggregates = { /** Distinct count of _blockRange across the matching connection */ _blockRange: Maybe; /** Distinct count of _id across the matching connection */ _id: Maybe; /** Distinct count of createdAt across the matching connection */ createdAt: Maybe; /** Distinct count of id across the matching connection */ id: Maybe; /** Distinct count of items across the matching connection */ items: Maybe; /** Distinct count of price across the matching connection */ price: Maybe; }; /** A filter to be used against `Order` object types. All fields are combined with a logical ‘and.’ */ type GqlOrderFilter = { /** Checks for all expressions in this list. */ and?: InputMaybe>; /** Filter by the object’s `createdAt` field. */ createdAt?: InputMaybe; /** Filter by the object’s `id` field. */ id?: InputMaybe; /** Filter by the object’s `items` field. */ items?: InputMaybe; /** Negates the expression. */ not?: InputMaybe; /** Checks for any expressions in this list. */ or?: InputMaybe>; /** Filter by the object’s `orderTransactions` relation. */ orderTransactions?: InputMaybe; /** Some related `orderTransactions` exist. */ orderTransactionsExist?: InputMaybe; /** Filter by the object’s `price` field. */ price?: InputMaybe; }; type GqlOrderMaxAggregates = { /** Maximum of price across the matching connection */ price: Maybe; }; type GqlOrderMinAggregates = { /** Minimum of price across the matching connection */ price: Maybe; }; type GqlOrderPayload = { _entity: Maybe; id: Scalars['ID']['output']; mutation_type: GqlMutationType; }; type GqlOrderPayload_entityArgs = { distinct?: InputMaybe>>; }; type GqlOrderStddevPopulationAggregates = { /** Population standard deviation of price across the matching connection */ price: Maybe; }; type GqlOrderStddevSampleAggregates = { /** Sample standard deviation of price across the matching connection */ price: Maybe; }; type GqlOrderSumAggregates = { /** Sum of price across the matching connection */ price: Scalars['BigInt']['output']; }; /** A filter to be used against many `OrderTransaction` object types. All fields are combined with a logical ‘and.’ */ type GqlOrderToManyOrderTransactionFilter = { /** Aggregates across related `OrderTransaction` match the filter criteria. */ aggregates?: InputMaybe; /** Every related `OrderTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ every?: InputMaybe; /** No related `OrderTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ none?: InputMaybe; /** Some related `OrderTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ some?: InputMaybe; }; type GqlOrderTransaction = GqlNode & { /** Reads a single `AssetTransfer` that is related to this `OrderTransaction`. */ assetTransfer: Maybe; assetTransferId: Scalars['String']['output']; id: Scalars['String']['output']; /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ nodeId: Scalars['ID']['output']; /** Reads a single `Order` that is related to this `OrderTransaction`. */ order: Maybe; orderId: Scalars['String']['output']; }; type GqlOrderTransactionAggregates = { /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ distinctCount: Maybe; keys: Maybe>; }; /** A filter to be used against aggregates of `OrderTransaction` object types. */ type GqlOrderTransactionAggregatesFilter = { /** Distinct count aggregate over matching `OrderTransaction` objects. */ distinctCount?: InputMaybe; /** A filter that must pass for the relevant `OrderTransaction` object to be included within the aggregate. */ filter?: InputMaybe; }; type GqlOrderTransactionDistinctCountAggregateFilter = { _blockRange?: InputMaybe; _id?: InputMaybe; assetTransferId?: InputMaybe; id?: InputMaybe; orderId?: InputMaybe; }; type GqlOrderTransactionDistinctCountAggregates = { /** Distinct count of _blockRange across the matching connection */ _blockRange: Maybe; /** Distinct count of _id across the matching connection */ _id: Maybe; /** Distinct count of assetTransferId across the matching connection */ assetTransferId: Maybe; /** Distinct count of id across the matching connection */ id: Maybe; /** Distinct count of orderId across the matching connection */ orderId: Maybe; }; /** A filter to be used against `OrderTransaction` object types. All fields are combined with a logical ‘and.’ */ type GqlOrderTransactionFilter = { /** Checks for all expressions in this list. */ and?: InputMaybe>; /** Filter by the object’s `assetTransfer` relation. */ assetTransfer?: InputMaybe; /** Filter by the object’s `assetTransferId` field. */ assetTransferId?: InputMaybe; /** Filter by the object’s `id` field. */ id?: InputMaybe; /** Negates the expression. */ not?: InputMaybe; /** Checks for any expressions in this list. */ or?: InputMaybe>; /** Filter by the object’s `order` relation. */ order?: InputMaybe; /** Filter by the object’s `orderId` field. */ orderId?: InputMaybe; }; type GqlOrderTransactionPayload = { _entity: Maybe; id: Scalars['ID']['output']; mutation_type: GqlMutationType; }; type GqlOrderTransactionPayload_entityArgs = { distinct?: InputMaybe>>; }; /** A connection to a list of `OrderTransaction` values. */ type GqlOrderTransactionsConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `OrderTransaction` and cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `OrderTransaction` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `OrderTransaction` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `OrderTransaction` values. */ type GqlOrderTransactionsConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `OrderTransaction` edge in the connection. */ type GqlOrderTransactionsEdge = { /** A cursor for use in pagination. */ cursor: Maybe; /** The `OrderTransaction` at the end of the edge. */ node: Maybe; }; /** Grouping methods for `OrderTransaction` for usage during aggregation. */ declare enum GqlOrderTransactionsGroupBy { ASSET_TRANSFER_ID = "ASSET_TRANSFER_ID", ID = "ID", ORDER_ID = "ORDER_ID" } /** Conditions for `OrderTransaction` aggregates. */ type GqlOrderTransactionsHavingInput = { AND?: InputMaybe>; OR?: InputMaybe>; }; /** Methods to use when ordering `OrderTransaction`. */ declare enum GqlOrderTransactionsOrderBy { ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__DECIMALS_ASC = "ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__DECIMALS_ASC", ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__DECIMALS_DESC = "ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__DECIMALS_DESC", ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__FROM_ID_ASC = "ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__FROM_ID_ASC", ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__FROM_ID_DESC = "ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__FROM_ID_DESC", ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__ID_ASC = "ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__ID_ASC", ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__ID_DESC = "ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__ID_DESC", ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__NFT_ID_ASC = "ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__NFT_ID_ASC", ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__NFT_ID_DESC = "ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__NFT_ID_DESC", ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__TOKEN_ID_ASC = "ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__TOKEN_ID_ASC", ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__TOKEN_ID_DESC = "ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__TOKEN_ID_DESC", ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__TO_ID_ASC = "ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__TO_ID_ASC", ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__TO_ID_DESC = "ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__TO_ID_DESC", ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__TRANSACTION_ID_ASC = "ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__TRANSACTION_ID_ASC", ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__TRANSACTION_ID_DESC = "ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__TRANSACTION_ID_DESC", ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__TYPE_ASC = "ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__TYPE_ASC", ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__TYPE_DESC = "ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__TYPE_DESC", ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__VALUE_ASC = "ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__VALUE_ASC", ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__VALUE_DESC = "ASSET_TRANSFER_BY_ASSET_TRANSFER_ID__VALUE_DESC", ASSET_TRANSFER_ID_ASC = "ASSET_TRANSFER_ID_ASC", ASSET_TRANSFER_ID_DESC = "ASSET_TRANSFER_ID_DESC", ID_ASC = "ID_ASC", ID_DESC = "ID_DESC", NATURAL = "NATURAL", ORDER_BY_ORDER_ID__CREATED_AT_ASC = "ORDER_BY_ORDER_ID__CREATED_AT_ASC", ORDER_BY_ORDER_ID__CREATED_AT_DESC = "ORDER_BY_ORDER_ID__CREATED_AT_DESC", ORDER_BY_ORDER_ID__ID_ASC = "ORDER_BY_ORDER_ID__ID_ASC", ORDER_BY_ORDER_ID__ID_DESC = "ORDER_BY_ORDER_ID__ID_DESC", ORDER_BY_ORDER_ID__ITEMS_ASC = "ORDER_BY_ORDER_ID__ITEMS_ASC", ORDER_BY_ORDER_ID__ITEMS_DESC = "ORDER_BY_ORDER_ID__ITEMS_DESC", ORDER_BY_ORDER_ID__PRICE_ASC = "ORDER_BY_ORDER_ID__PRICE_ASC", ORDER_BY_ORDER_ID__PRICE_DESC = "ORDER_BY_ORDER_ID__PRICE_DESC", ORDER_ID_ASC = "ORDER_ID_ASC", ORDER_ID_DESC = "ORDER_ID_DESC", PRIMARY_KEY_ASC = "PRIMARY_KEY_ASC", PRIMARY_KEY_DESC = "PRIMARY_KEY_DESC" } type GqlOrderVariancePopulationAggregates = { /** Population variance of price across the matching connection */ price: Maybe; }; type GqlOrderVarianceSampleAggregates = { /** Sample variance of price across the matching connection */ price: Maybe; }; /** A connection to a list of `Order` values. */ type GqlOrdersConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `Order` and cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `Order` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `Order` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `Order` values. */ type GqlOrdersConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `Order` edge in the connection. */ type GqlOrdersEdge = { /** A cursor for use in pagination. */ cursor: Maybe; /** The `Order` at the end of the edge. */ node: Maybe; }; /** Grouping methods for `Order` for usage during aggregation. */ declare enum GqlOrdersGroupBy { CREATED_AT = "CREATED_AT", CREATED_AT_TRUNCATED_TO_DAY = "CREATED_AT_TRUNCATED_TO_DAY", CREATED_AT_TRUNCATED_TO_HOUR = "CREATED_AT_TRUNCATED_TO_HOUR", ID = "ID", ITEMS = "ITEMS", PRICE = "PRICE" } type GqlOrdersHavingAverageInput = { createdAt?: InputMaybe; price?: InputMaybe; }; type GqlOrdersHavingDistinctCountInput = { createdAt?: InputMaybe; price?: InputMaybe; }; /** Conditions for `Order` aggregates. */ type GqlOrdersHavingInput = { AND?: InputMaybe>; OR?: InputMaybe>; average?: InputMaybe; distinctCount?: InputMaybe; max?: InputMaybe; min?: InputMaybe; stddevPopulation?: InputMaybe; stddevSample?: InputMaybe; sum?: InputMaybe; variancePopulation?: InputMaybe; varianceSample?: InputMaybe; }; type GqlOrdersHavingMaxInput = { createdAt?: InputMaybe; price?: InputMaybe; }; type GqlOrdersHavingMinInput = { createdAt?: InputMaybe; price?: InputMaybe; }; type GqlOrdersHavingStddevPopulationInput = { createdAt?: InputMaybe; price?: InputMaybe; }; type GqlOrdersHavingStddevSampleInput = { createdAt?: InputMaybe; price?: InputMaybe; }; type GqlOrdersHavingSumInput = { createdAt?: InputMaybe; price?: InputMaybe; }; type GqlOrdersHavingVariancePopulationInput = { createdAt?: InputMaybe; price?: InputMaybe; }; type GqlOrdersHavingVarianceSampleInput = { createdAt?: InputMaybe; price?: InputMaybe; }; /** Methods to use when ordering `Order`. */ declare enum GqlOrdersOrderBy { CREATED_AT_ASC = "CREATED_AT_ASC", CREATED_AT_DESC = "CREATED_AT_DESC", ID_ASC = "ID_ASC", ID_DESC = "ID_DESC", ITEMS_ASC = "ITEMS_ASC", ITEMS_DESC = "ITEMS_DESC", NATURAL = "NATURAL", ORDER_TRANSACTIONS_AVERAGE_ASSET_TRANSFER_ID_ASC = "ORDER_TRANSACTIONS_AVERAGE_ASSET_TRANSFER_ID_ASC", ORDER_TRANSACTIONS_AVERAGE_ASSET_TRANSFER_ID_DESC = "ORDER_TRANSACTIONS_AVERAGE_ASSET_TRANSFER_ID_DESC", ORDER_TRANSACTIONS_AVERAGE_BLOCK_RANGE_ASC = "ORDER_TRANSACTIONS_AVERAGE_BLOCK_RANGE_ASC", ORDER_TRANSACTIONS_AVERAGE_BLOCK_RANGE_DESC = "ORDER_TRANSACTIONS_AVERAGE_BLOCK_RANGE_DESC", ORDER_TRANSACTIONS_AVERAGE_ID_ASC = "ORDER_TRANSACTIONS_AVERAGE_ID_ASC", ORDER_TRANSACTIONS_AVERAGE_ID_DESC = "ORDER_TRANSACTIONS_AVERAGE_ID_DESC", ORDER_TRANSACTIONS_AVERAGE_ORDER_ID_ASC = "ORDER_TRANSACTIONS_AVERAGE_ORDER_ID_ASC", ORDER_TRANSACTIONS_AVERAGE_ORDER_ID_DESC = "ORDER_TRANSACTIONS_AVERAGE_ORDER_ID_DESC", ORDER_TRANSACTIONS_BY_ORDER_ID__COUNT_ASC = "ORDER_TRANSACTIONS_BY_ORDER_ID__COUNT_ASC", ORDER_TRANSACTIONS_BY_ORDER_ID__COUNT_DESC = "ORDER_TRANSACTIONS_BY_ORDER_ID__COUNT_DESC", ORDER_TRANSACTIONS_COUNT_ASC = "ORDER_TRANSACTIONS_COUNT_ASC", ORDER_TRANSACTIONS_COUNT_DESC = "ORDER_TRANSACTIONS_COUNT_DESC", ORDER_TRANSACTIONS_DISTINCT_COUNT_ASSET_TRANSFER_ID_ASC = "ORDER_TRANSACTIONS_DISTINCT_COUNT_ASSET_TRANSFER_ID_ASC", ORDER_TRANSACTIONS_DISTINCT_COUNT_ASSET_TRANSFER_ID_DESC = "ORDER_TRANSACTIONS_DISTINCT_COUNT_ASSET_TRANSFER_ID_DESC", ORDER_TRANSACTIONS_DISTINCT_COUNT_BLOCK_RANGE_ASC = "ORDER_TRANSACTIONS_DISTINCT_COUNT_BLOCK_RANGE_ASC", ORDER_TRANSACTIONS_DISTINCT_COUNT_BLOCK_RANGE_DESC = "ORDER_TRANSACTIONS_DISTINCT_COUNT_BLOCK_RANGE_DESC", ORDER_TRANSACTIONS_DISTINCT_COUNT_ID_ASC = "ORDER_TRANSACTIONS_DISTINCT_COUNT_ID_ASC", ORDER_TRANSACTIONS_DISTINCT_COUNT_ID_DESC = "ORDER_TRANSACTIONS_DISTINCT_COUNT_ID_DESC", ORDER_TRANSACTIONS_DISTINCT_COUNT_ORDER_ID_ASC = "ORDER_TRANSACTIONS_DISTINCT_COUNT_ORDER_ID_ASC", ORDER_TRANSACTIONS_DISTINCT_COUNT_ORDER_ID_DESC = "ORDER_TRANSACTIONS_DISTINCT_COUNT_ORDER_ID_DESC", ORDER_TRANSACTIONS_MAX_ASSET_TRANSFER_ID_ASC = "ORDER_TRANSACTIONS_MAX_ASSET_TRANSFER_ID_ASC", ORDER_TRANSACTIONS_MAX_ASSET_TRANSFER_ID_DESC = "ORDER_TRANSACTIONS_MAX_ASSET_TRANSFER_ID_DESC", ORDER_TRANSACTIONS_MAX_BLOCK_RANGE_ASC = "ORDER_TRANSACTIONS_MAX_BLOCK_RANGE_ASC", ORDER_TRANSACTIONS_MAX_BLOCK_RANGE_DESC = "ORDER_TRANSACTIONS_MAX_BLOCK_RANGE_DESC", ORDER_TRANSACTIONS_MAX_ID_ASC = "ORDER_TRANSACTIONS_MAX_ID_ASC", ORDER_TRANSACTIONS_MAX_ID_DESC = "ORDER_TRANSACTIONS_MAX_ID_DESC", ORDER_TRANSACTIONS_MAX_ORDER_ID_ASC = "ORDER_TRANSACTIONS_MAX_ORDER_ID_ASC", ORDER_TRANSACTIONS_MAX_ORDER_ID_DESC = "ORDER_TRANSACTIONS_MAX_ORDER_ID_DESC", ORDER_TRANSACTIONS_MIN_ASSET_TRANSFER_ID_ASC = "ORDER_TRANSACTIONS_MIN_ASSET_TRANSFER_ID_ASC", ORDER_TRANSACTIONS_MIN_ASSET_TRANSFER_ID_DESC = "ORDER_TRANSACTIONS_MIN_ASSET_TRANSFER_ID_DESC", ORDER_TRANSACTIONS_MIN_BLOCK_RANGE_ASC = "ORDER_TRANSACTIONS_MIN_BLOCK_RANGE_ASC", ORDER_TRANSACTIONS_MIN_BLOCK_RANGE_DESC = "ORDER_TRANSACTIONS_MIN_BLOCK_RANGE_DESC", ORDER_TRANSACTIONS_MIN_ID_ASC = "ORDER_TRANSACTIONS_MIN_ID_ASC", ORDER_TRANSACTIONS_MIN_ID_DESC = "ORDER_TRANSACTIONS_MIN_ID_DESC", ORDER_TRANSACTIONS_MIN_ORDER_ID_ASC = "ORDER_TRANSACTIONS_MIN_ORDER_ID_ASC", ORDER_TRANSACTIONS_MIN_ORDER_ID_DESC = "ORDER_TRANSACTIONS_MIN_ORDER_ID_DESC", ORDER_TRANSACTIONS_STDDEV_POPULATION_ASSET_TRANSFER_ID_ASC = "ORDER_TRANSACTIONS_STDDEV_POPULATION_ASSET_TRANSFER_ID_ASC", ORDER_TRANSACTIONS_STDDEV_POPULATION_ASSET_TRANSFER_ID_DESC = "ORDER_TRANSACTIONS_STDDEV_POPULATION_ASSET_TRANSFER_ID_DESC", ORDER_TRANSACTIONS_STDDEV_POPULATION_BLOCK_RANGE_ASC = "ORDER_TRANSACTIONS_STDDEV_POPULATION_BLOCK_RANGE_ASC", ORDER_TRANSACTIONS_STDDEV_POPULATION_BLOCK_RANGE_DESC = "ORDER_TRANSACTIONS_STDDEV_POPULATION_BLOCK_RANGE_DESC", ORDER_TRANSACTIONS_STDDEV_POPULATION_ID_ASC = "ORDER_TRANSACTIONS_STDDEV_POPULATION_ID_ASC", ORDER_TRANSACTIONS_STDDEV_POPULATION_ID_DESC = "ORDER_TRANSACTIONS_STDDEV_POPULATION_ID_DESC", ORDER_TRANSACTIONS_STDDEV_POPULATION_ORDER_ID_ASC = "ORDER_TRANSACTIONS_STDDEV_POPULATION_ORDER_ID_ASC", ORDER_TRANSACTIONS_STDDEV_POPULATION_ORDER_ID_DESC = "ORDER_TRANSACTIONS_STDDEV_POPULATION_ORDER_ID_DESC", ORDER_TRANSACTIONS_STDDEV_SAMPLE_ASSET_TRANSFER_ID_ASC = "ORDER_TRANSACTIONS_STDDEV_SAMPLE_ASSET_TRANSFER_ID_ASC", ORDER_TRANSACTIONS_STDDEV_SAMPLE_ASSET_TRANSFER_ID_DESC = "ORDER_TRANSACTIONS_STDDEV_SAMPLE_ASSET_TRANSFER_ID_DESC", ORDER_TRANSACTIONS_STDDEV_SAMPLE_BLOCK_RANGE_ASC = "ORDER_TRANSACTIONS_STDDEV_SAMPLE_BLOCK_RANGE_ASC", ORDER_TRANSACTIONS_STDDEV_SAMPLE_BLOCK_RANGE_DESC = "ORDER_TRANSACTIONS_STDDEV_SAMPLE_BLOCK_RANGE_DESC", ORDER_TRANSACTIONS_STDDEV_SAMPLE_ID_ASC = "ORDER_TRANSACTIONS_STDDEV_SAMPLE_ID_ASC", ORDER_TRANSACTIONS_STDDEV_SAMPLE_ID_DESC = "ORDER_TRANSACTIONS_STDDEV_SAMPLE_ID_DESC", ORDER_TRANSACTIONS_STDDEV_SAMPLE_ORDER_ID_ASC = "ORDER_TRANSACTIONS_STDDEV_SAMPLE_ORDER_ID_ASC", ORDER_TRANSACTIONS_STDDEV_SAMPLE_ORDER_ID_DESC = "ORDER_TRANSACTIONS_STDDEV_SAMPLE_ORDER_ID_DESC", ORDER_TRANSACTIONS_SUM_ASSET_TRANSFER_ID_ASC = "ORDER_TRANSACTIONS_SUM_ASSET_TRANSFER_ID_ASC", ORDER_TRANSACTIONS_SUM_ASSET_TRANSFER_ID_DESC = "ORDER_TRANSACTIONS_SUM_ASSET_TRANSFER_ID_DESC", ORDER_TRANSACTIONS_SUM_BLOCK_RANGE_ASC = "ORDER_TRANSACTIONS_SUM_BLOCK_RANGE_ASC", ORDER_TRANSACTIONS_SUM_BLOCK_RANGE_DESC = "ORDER_TRANSACTIONS_SUM_BLOCK_RANGE_DESC", ORDER_TRANSACTIONS_SUM_ID_ASC = "ORDER_TRANSACTIONS_SUM_ID_ASC", ORDER_TRANSACTIONS_SUM_ID_DESC = "ORDER_TRANSACTIONS_SUM_ID_DESC", ORDER_TRANSACTIONS_SUM_ORDER_ID_ASC = "ORDER_TRANSACTIONS_SUM_ORDER_ID_ASC", ORDER_TRANSACTIONS_SUM_ORDER_ID_DESC = "ORDER_TRANSACTIONS_SUM_ORDER_ID_DESC", ORDER_TRANSACTIONS_VARIANCE_POPULATION_ASSET_TRANSFER_ID_ASC = "ORDER_TRANSACTIONS_VARIANCE_POPULATION_ASSET_TRANSFER_ID_ASC", ORDER_TRANSACTIONS_VARIANCE_POPULATION_ASSET_TRANSFER_ID_DESC = "ORDER_TRANSACTIONS_VARIANCE_POPULATION_ASSET_TRANSFER_ID_DESC", ORDER_TRANSACTIONS_VARIANCE_POPULATION_BLOCK_RANGE_ASC = "ORDER_TRANSACTIONS_VARIANCE_POPULATION_BLOCK_RANGE_ASC", ORDER_TRANSACTIONS_VARIANCE_POPULATION_BLOCK_RANGE_DESC = "ORDER_TRANSACTIONS_VARIANCE_POPULATION_BLOCK_RANGE_DESC", ORDER_TRANSACTIONS_VARIANCE_POPULATION_ID_ASC = "ORDER_TRANSACTIONS_VARIANCE_POPULATION_ID_ASC", ORDER_TRANSACTIONS_VARIANCE_POPULATION_ID_DESC = "ORDER_TRANSACTIONS_VARIANCE_POPULATION_ID_DESC", ORDER_TRANSACTIONS_VARIANCE_POPULATION_ORDER_ID_ASC = "ORDER_TRANSACTIONS_VARIANCE_POPULATION_ORDER_ID_ASC", ORDER_TRANSACTIONS_VARIANCE_POPULATION_ORDER_ID_DESC = "ORDER_TRANSACTIONS_VARIANCE_POPULATION_ORDER_ID_DESC", ORDER_TRANSACTIONS_VARIANCE_SAMPLE_ASSET_TRANSFER_ID_ASC = "ORDER_TRANSACTIONS_VARIANCE_SAMPLE_ASSET_TRANSFER_ID_ASC", ORDER_TRANSACTIONS_VARIANCE_SAMPLE_ASSET_TRANSFER_ID_DESC = "ORDER_TRANSACTIONS_VARIANCE_SAMPLE_ASSET_TRANSFER_ID_DESC", ORDER_TRANSACTIONS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC = "ORDER_TRANSACTIONS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC", ORDER_TRANSACTIONS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC = "ORDER_TRANSACTIONS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC", ORDER_TRANSACTIONS_VARIANCE_SAMPLE_ID_ASC = "ORDER_TRANSACTIONS_VARIANCE_SAMPLE_ID_ASC", ORDER_TRANSACTIONS_VARIANCE_SAMPLE_ID_DESC = "ORDER_TRANSACTIONS_VARIANCE_SAMPLE_ID_DESC", ORDER_TRANSACTIONS_VARIANCE_SAMPLE_ORDER_ID_ASC = "ORDER_TRANSACTIONS_VARIANCE_SAMPLE_ORDER_ID_ASC", ORDER_TRANSACTIONS_VARIANCE_SAMPLE_ORDER_ID_DESC = "ORDER_TRANSACTIONS_VARIANCE_SAMPLE_ORDER_ID_DESC", PRICE_ASC = "PRICE_ASC", PRICE_DESC = "PRICE_DESC", PRIMARY_KEY_ASC = "PRIMARY_KEY_ASC", PRIMARY_KEY_DESC = "PRIMARY_KEY_DESC" } /** Information about pagination in a connection. */ type GqlPageInfo = { /** When paginating forwards, the cursor to continue. */ endCursor: Maybe; /** When paginating forwards, are there more items? */ hasNextPage: Scalars['Boolean']['output']; /** When paginating backwards, are there more items? */ hasPreviousPage: Scalars['Boolean']['output']; /** When paginating backwards, the cursor to continue. */ startCursor: Maybe; }; /** The root query type which gives access points into the data universe. */ type GqlQuery = GqlNode & { _metadata: Maybe; _metadatas: Maybe; assetTransfer: Maybe; /** Reads a single `AssetTransfer` using its globally unique `ID`. */ assetTransferByNodeId: Maybe; /** Reads and enables pagination through a set of `AssetTransfer`. */ assetTransfers: Maybe; nft: Maybe; nftBalance: Maybe; /** Reads a single `NftBalance` using its globally unique `ID`. */ nftBalanceByNodeId: Maybe; /** Reads and enables pagination through a set of `NftBalance`. */ nftBalances: Maybe; /** Reads a single `Nft` using its globally unique `ID`. */ nftByNodeId: Maybe; /** Reads and enables pagination through a set of `Nft`. */ nfts: Maybe; /** Fetches an object given its globally unique `ID`. */ node: Maybe; /** The root query type must be a `Node` to work well with Relay 1 mutations. This just resolves to `query`. */ nodeId: Scalars['ID']['output']; order: Maybe; /** Reads a single `Order` using its globally unique `ID`. */ orderByNodeId: Maybe; orderTransaction: Maybe; /** Reads a single `OrderTransaction` using its globally unique `ID`. */ orderTransactionByNodeId: Maybe; /** Reads and enables pagination through a set of `OrderTransaction`. */ orderTransactions: Maybe; /** Reads and enables pagination through a set of `Order`. */ orders: Maybe; /** * Exposes the root query type nested one level down. This is helpful for Relay 1 * which can only query top level fields if they are in a particular form. */ query: GqlQuery; tokenBalance: Maybe; /** Reads a single `TokenBalance` using its globally unique `ID`. */ tokenBalanceByNodeId: Maybe; /** Reads and enables pagination through a set of `TokenBalance`. */ tokenBalances: Maybe; tokenContract: Maybe; /** Reads a single `TokenContract` using its globally unique `ID`. */ tokenContractByNodeId: Maybe; /** Reads and enables pagination through a set of `TokenContract`. */ tokenContracts: Maybe; transaction: Maybe; /** Reads a single `Transaction` using its globally unique `ID`. */ transactionByNodeId: Maybe; /** Reads and enables pagination through a set of `Transaction`. */ transactions: Maybe; wallet: Maybe; /** Reads a single `Wallet` using its globally unique `ID`. */ walletByNodeId: Maybe; /** Reads and enables pagination through a set of `Wallet`. */ wallets: Maybe; whitelistedAddress: Maybe; /** Reads a single `WhitelistedAddress` using its globally unique `ID`. */ whitelistedAddressByNodeId: Maybe; /** Reads and enables pagination through a set of `WhitelistedAddress`. */ whitelistedAddresses: Maybe; }; /** The root query type which gives access points into the data universe. */ type GqlQuery_metadataArgs = { chainId?: InputMaybe; }; /** The root query type which gives access points into the data universe. */ type GqlQuery_metadatasArgs = { after?: InputMaybe; before?: InputMaybe; }; /** The root query type which gives access points into the data universe. */ type GqlQueryassetTransferArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; /** The root query type which gives access points into the data universe. */ type GqlQueryassetTransferByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; /** The root query type which gives access points into the data universe. */ type GqlQueryassetTransfersArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; /** The root query type which gives access points into the data universe. */ type GqlQuerynftArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; /** The root query type which gives access points into the data universe. */ type GqlQuerynftBalanceArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; /** The root query type which gives access points into the data universe. */ type GqlQuerynftBalanceByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; /** The root query type which gives access points into the data universe. */ type GqlQuerynftBalancesArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; /** The root query type which gives access points into the data universe. */ type GqlQuerynftByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; /** The root query type which gives access points into the data universe. */ type GqlQuerynftsArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; /** The root query type which gives access points into the data universe. */ type GqlQuerynodeArgs = { nodeId: Scalars['ID']['input']; }; /** The root query type which gives access points into the data universe. */ type GqlQueryorderArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; /** The root query type which gives access points into the data universe. */ type GqlQueryorderByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; /** The root query type which gives access points into the data universe. */ type GqlQueryorderTransactionArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; /** The root query type which gives access points into the data universe. */ type GqlQueryorderTransactionByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; /** The root query type which gives access points into the data universe. */ type GqlQueryorderTransactionsArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; /** The root query type which gives access points into the data universe. */ type GqlQueryordersArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; /** The root query type which gives access points into the data universe. */ type GqlQuerytokenBalanceArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; /** The root query type which gives access points into the data universe. */ type GqlQuerytokenBalanceByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; /** The root query type which gives access points into the data universe. */ type GqlQuerytokenBalancesArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; /** The root query type which gives access points into the data universe. */ type GqlQuerytokenContractArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; /** The root query type which gives access points into the data universe. */ type GqlQuerytokenContractByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; /** The root query type which gives access points into the data universe. */ type GqlQuerytokenContractsArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; /** The root query type which gives access points into the data universe. */ type GqlQuerytransactionArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; /** The root query type which gives access points into the data universe. */ type GqlQuerytransactionByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; /** The root query type which gives access points into the data universe. */ type GqlQuerytransactionsArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; /** The root query type which gives access points into the data universe. */ type GqlQuerywalletArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; /** The root query type which gives access points into the data universe. */ type GqlQuerywalletByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; /** The root query type which gives access points into the data universe. */ type GqlQuerywalletsArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; /** The root query type which gives access points into the data universe. */ type GqlQuerywhitelistedAddressArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; /** The root query type which gives access points into the data universe. */ type GqlQuerywhitelistedAddressByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; /** The root query type which gives access points into the data universe. */ type GqlQuerywhitelistedAddressesArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; /** A filter to be used against String fields. All fields are combined with a logical ‘and.’ */ type GqlStringFilter = { /** Not equal to the specified value, treating null like an ordinary value. */ distinctFrom?: InputMaybe; /** Not equal to the specified value, treating null like an ordinary value (case-insensitive). */ distinctFromInsensitive?: InputMaybe; /** Ends with the specified string (case-sensitive). */ endsWith?: InputMaybe; /** Ends with the specified string (case-insensitive). */ endsWithInsensitive?: InputMaybe; /** Equal to the specified value. */ equalTo?: InputMaybe; /** Equal to the specified value (case-insensitive). */ equalToInsensitive?: InputMaybe; /** Greater than the specified value. */ greaterThan?: InputMaybe; /** Greater than the specified value (case-insensitive). */ greaterThanInsensitive?: InputMaybe; /** Greater than or equal to the specified value. */ greaterThanOrEqualTo?: InputMaybe; /** Greater than or equal to the specified value (case-insensitive). */ greaterThanOrEqualToInsensitive?: InputMaybe; /** Included in the specified list. */ in?: InputMaybe>; /** Included in the specified list (case-insensitive). */ inInsensitive?: InputMaybe>; /** Contains the specified string (case-sensitive). */ includes?: InputMaybe; /** Contains the specified string (case-insensitive). */ includesInsensitive?: InputMaybe; /** Is null (if `true` is specified) or is not null (if `false` is specified). */ isNull?: InputMaybe; /** Less than the specified value. */ lessThan?: InputMaybe; /** Less than the specified value (case-insensitive). */ lessThanInsensitive?: InputMaybe; /** Less than or equal to the specified value. */ lessThanOrEqualTo?: InputMaybe; /** Less than or equal to the specified value (case-insensitive). */ lessThanOrEqualToInsensitive?: InputMaybe; /** Matches the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. */ like?: InputMaybe; /** Matches the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. */ likeInsensitive?: InputMaybe; /** Equal to the specified value, treating null like an ordinary value. */ notDistinctFrom?: InputMaybe; /** Equal to the specified value, treating null like an ordinary value (case-insensitive). */ notDistinctFromInsensitive?: InputMaybe; /** Does not end with the specified string (case-sensitive). */ notEndsWith?: InputMaybe; /** Does not end with the specified string (case-insensitive). */ notEndsWithInsensitive?: InputMaybe; /** Not equal to the specified value. */ notEqualTo?: InputMaybe; /** Not equal to the specified value (case-insensitive). */ notEqualToInsensitive?: InputMaybe; /** Not included in the specified list. */ notIn?: InputMaybe>; /** Not included in the specified list (case-insensitive). */ notInInsensitive?: InputMaybe>; /** Does not contain the specified string (case-sensitive). */ notIncludes?: InputMaybe; /** Does not contain the specified string (case-insensitive). */ notIncludesInsensitive?: InputMaybe; /** Does not match the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. */ notLike?: InputMaybe; /** Does not match the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. */ notLikeInsensitive?: InputMaybe; /** Does not start with the specified string (case-sensitive). */ notStartsWith?: InputMaybe; /** Does not start with the specified string (case-insensitive). */ notStartsWithInsensitive?: InputMaybe; /** Starts with the specified string (case-sensitive). */ startsWith?: InputMaybe; /** Starts with the specified string (case-insensitive). */ startsWithInsensitive?: InputMaybe; }; /** The root subscription type: contains realtime events you can subscribe to with the `subscription` operation. */ type GqlSubscription = { assetTransfers: Maybe; nftBalances: Maybe; nfts: Maybe; orderTransactions: Maybe; orders: Maybe; tokenBalances: Maybe; tokenContracts: Maybe; transactions: Maybe; wallets: Maybe; whitelistedAddresses: Maybe; }; /** The root subscription type: contains realtime events you can subscribe to with the `subscription` operation. */ type GqlSubscriptionassetTransfersArgs = { id?: InputMaybe>; mutation?: InputMaybe>; }; /** The root subscription type: contains realtime events you can subscribe to with the `subscription` operation. */ type GqlSubscriptionnftBalancesArgs = { id?: InputMaybe>; mutation?: InputMaybe>; }; /** The root subscription type: contains realtime events you can subscribe to with the `subscription` operation. */ type GqlSubscriptionnftsArgs = { id?: InputMaybe>; mutation?: InputMaybe>; }; /** The root subscription type: contains realtime events you can subscribe to with the `subscription` operation. */ type GqlSubscriptionorderTransactionsArgs = { id?: InputMaybe>; mutation?: InputMaybe>; }; /** The root subscription type: contains realtime events you can subscribe to with the `subscription` operation. */ type GqlSubscriptionordersArgs = { id?: InputMaybe>; mutation?: InputMaybe>; }; /** The root subscription type: contains realtime events you can subscribe to with the `subscription` operation. */ type GqlSubscriptiontokenBalancesArgs = { id?: InputMaybe>; mutation?: InputMaybe>; }; /** The root subscription type: contains realtime events you can subscribe to with the `subscription` operation. */ type GqlSubscriptiontokenContractsArgs = { id?: InputMaybe>; mutation?: InputMaybe>; }; /** The root subscription type: contains realtime events you can subscribe to with the `subscription` operation. */ type GqlSubscriptiontransactionsArgs = { id?: InputMaybe>; mutation?: InputMaybe>; }; /** The root subscription type: contains realtime events you can subscribe to with the `subscription` operation. */ type GqlSubscriptionwalletsArgs = { id?: InputMaybe>; mutation?: InputMaybe>; }; /** The root subscription type: contains realtime events you can subscribe to with the `subscription` operation. */ type GqlSubscriptionwhitelistedAddressesArgs = { id?: InputMaybe>; mutation?: InputMaybe>; }; type GqlTableEstimate = { estimate: Maybe; table: Maybe; }; type GqlTokenBalance = GqlNode & { balance: Scalars['BigFloat']['output']; id: Scalars['String']['output']; /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ nodeId: Scalars['ID']['output']; /** Reads a single `TokenContract` that is related to this `TokenBalance`. */ token: Maybe; tokenId: Scalars['String']['output']; tokenName: Maybe; tokenSymbol: Maybe; /** Reads a single `Wallet` that is related to this `TokenBalance`. */ wallet: Maybe; walletId: Scalars['String']['output']; }; type GqlTokenBalanceAggregates = { /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ average: Maybe; /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ distinctCount: Maybe; keys: Maybe>; /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ max: Maybe; /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ min: Maybe; /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ stddevPopulation: Maybe; /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ stddevSample: Maybe; /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ sum: Maybe; /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ variancePopulation: Maybe; /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ varianceSample: Maybe; }; /** A filter to be used against aggregates of `TokenBalance` object types. */ type GqlTokenBalanceAggregatesFilter = { /** Mean average aggregate over matching `TokenBalance` objects. */ average?: InputMaybe; /** Distinct count aggregate over matching `TokenBalance` objects. */ distinctCount?: InputMaybe; /** A filter that must pass for the relevant `TokenBalance` object to be included within the aggregate. */ filter?: InputMaybe; /** Maximum aggregate over matching `TokenBalance` objects. */ max?: InputMaybe; /** Minimum aggregate over matching `TokenBalance` objects. */ min?: InputMaybe; /** Population standard deviation aggregate over matching `TokenBalance` objects. */ stddevPopulation?: InputMaybe; /** Sample standard deviation aggregate over matching `TokenBalance` objects. */ stddevSample?: InputMaybe; /** Sum aggregate over matching `TokenBalance` objects. */ sum?: InputMaybe; /** Population variance aggregate over matching `TokenBalance` objects. */ variancePopulation?: InputMaybe; /** Sample variance aggregate over matching `TokenBalance` objects. */ varianceSample?: InputMaybe; }; type GqlTokenBalanceAverageAggregateFilter = { balance?: InputMaybe; }; type GqlTokenBalanceAverageAggregates = { /** Mean average of balance across the matching connection */ balance: Maybe; }; type GqlTokenBalanceDistinctCountAggregateFilter = { _blockRange?: InputMaybe; _id?: InputMaybe; balance?: InputMaybe; id?: InputMaybe; tokenId?: InputMaybe; tokenName?: InputMaybe; tokenSymbol?: InputMaybe; walletId?: InputMaybe; }; type GqlTokenBalanceDistinctCountAggregates = { /** Distinct count of _blockRange across the matching connection */ _blockRange: Maybe; /** Distinct count of _id across the matching connection */ _id: Maybe; /** Distinct count of balance across the matching connection */ balance: Maybe; /** Distinct count of id across the matching connection */ id: Maybe; /** Distinct count of tokenId across the matching connection */ tokenId: Maybe; /** Distinct count of tokenName across the matching connection */ tokenName: Maybe; /** Distinct count of tokenSymbol across the matching connection */ tokenSymbol: Maybe; /** Distinct count of walletId across the matching connection */ walletId: Maybe; }; /** A filter to be used against `TokenBalance` object types. All fields are combined with a logical ‘and.’ */ type GqlTokenBalanceFilter = { /** Checks for all expressions in this list. */ and?: InputMaybe>; /** Filter by the object’s `balance` field. */ balance?: InputMaybe; /** Filter by the object’s `id` field. */ id?: InputMaybe; /** Negates the expression. */ not?: InputMaybe; /** Checks for any expressions in this list. */ or?: InputMaybe>; /** Filter by the object’s `token` relation. */ token?: InputMaybe; /** Filter by the object’s `tokenId` field. */ tokenId?: InputMaybe; /** Filter by the object’s `tokenName` field. */ tokenName?: InputMaybe; /** Filter by the object’s `tokenSymbol` field. */ tokenSymbol?: InputMaybe; /** Filter by the object’s `wallet` relation. */ wallet?: InputMaybe; /** Filter by the object’s `walletId` field. */ walletId?: InputMaybe; }; type GqlTokenBalanceMaxAggregateFilter = { balance?: InputMaybe; }; type GqlTokenBalanceMaxAggregates = { /** Maximum of balance across the matching connection */ balance: Maybe; }; type GqlTokenBalanceMinAggregateFilter = { balance?: InputMaybe; }; type GqlTokenBalanceMinAggregates = { /** Minimum of balance across the matching connection */ balance: Maybe; }; type GqlTokenBalancePayload = { _entity: Maybe; id: Scalars['ID']['output']; mutation_type: GqlMutationType; }; type GqlTokenBalancePayload_entityArgs = { distinct?: InputMaybe>>; }; type GqlTokenBalanceStddevPopulationAggregateFilter = { balance?: InputMaybe; }; type GqlTokenBalanceStddevPopulationAggregates = { /** Population standard deviation of balance across the matching connection */ balance: Maybe; }; type GqlTokenBalanceStddevSampleAggregateFilter = { balance?: InputMaybe; }; type GqlTokenBalanceStddevSampleAggregates = { /** Sample standard deviation of balance across the matching connection */ balance: Maybe; }; type GqlTokenBalanceSumAggregateFilter = { balance?: InputMaybe; }; type GqlTokenBalanceSumAggregates = { /** Sum of balance across the matching connection */ balance: Scalars['BigFloat']['output']; }; type GqlTokenBalanceVariancePopulationAggregateFilter = { balance?: InputMaybe; }; type GqlTokenBalanceVariancePopulationAggregates = { /** Population variance of balance across the matching connection */ balance: Maybe; }; type GqlTokenBalanceVarianceSampleAggregateFilter = { balance?: InputMaybe; }; type GqlTokenBalanceVarianceSampleAggregates = { /** Sample variance of balance across the matching connection */ balance: Maybe; }; /** A connection to a list of `TokenBalance` values. */ type GqlTokenBalancesConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `TokenBalance` and cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `TokenBalance` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `TokenBalance` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `TokenBalance` values. */ type GqlTokenBalancesConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `TokenBalance` edge in the connection. */ type GqlTokenBalancesEdge = { /** A cursor for use in pagination. */ cursor: Maybe; /** The `TokenBalance` at the end of the edge. */ node: Maybe; }; /** Grouping methods for `TokenBalance` for usage during aggregation. */ declare enum GqlTokenBalancesGroupBy { BALANCE = "BALANCE", ID = "ID", TOKEN_ID = "TOKEN_ID", TOKEN_NAME = "TOKEN_NAME", TOKEN_SYMBOL = "TOKEN_SYMBOL", WALLET_ID = "WALLET_ID" } type GqlTokenBalancesHavingAverageInput = { balance?: InputMaybe; }; type GqlTokenBalancesHavingDistinctCountInput = { balance?: InputMaybe; }; /** Conditions for `TokenBalance` aggregates. */ type GqlTokenBalancesHavingInput = { AND?: InputMaybe>; OR?: InputMaybe>; average?: InputMaybe; distinctCount?: InputMaybe; max?: InputMaybe; min?: InputMaybe; stddevPopulation?: InputMaybe; stddevSample?: InputMaybe; sum?: InputMaybe; variancePopulation?: InputMaybe; varianceSample?: InputMaybe; }; type GqlTokenBalancesHavingMaxInput = { balance?: InputMaybe; }; type GqlTokenBalancesHavingMinInput = { balance?: InputMaybe; }; type GqlTokenBalancesHavingStddevPopulationInput = { balance?: InputMaybe; }; type GqlTokenBalancesHavingStddevSampleInput = { balance?: InputMaybe; }; type GqlTokenBalancesHavingSumInput = { balance?: InputMaybe; }; type GqlTokenBalancesHavingVariancePopulationInput = { balance?: InputMaybe; }; type GqlTokenBalancesHavingVarianceSampleInput = { balance?: InputMaybe; }; /** Methods to use when ordering `TokenBalance`. */ declare enum GqlTokenBalancesOrderBy { BALANCE_ASC = "BALANCE_ASC", BALANCE_DESC = "BALANCE_DESC", ID_ASC = "ID_ASC", ID_DESC = "ID_DESC", NATURAL = "NATURAL", PRIMARY_KEY_ASC = "PRIMARY_KEY_ASC", PRIMARY_KEY_DESC = "PRIMARY_KEY_DESC", TOKEN_CONTRACT_BY_TOKEN_ID__DECIMALS_ASC = "TOKEN_CONTRACT_BY_TOKEN_ID__DECIMALS_ASC", TOKEN_CONTRACT_BY_TOKEN_ID__DECIMALS_DESC = "TOKEN_CONTRACT_BY_TOKEN_ID__DECIMALS_DESC", TOKEN_CONTRACT_BY_TOKEN_ID__ICON_URL_ASC = "TOKEN_CONTRACT_BY_TOKEN_ID__ICON_URL_ASC", TOKEN_CONTRACT_BY_TOKEN_ID__ICON_URL_DESC = "TOKEN_CONTRACT_BY_TOKEN_ID__ICON_URL_DESC", TOKEN_CONTRACT_BY_TOKEN_ID__ID_ASC = "TOKEN_CONTRACT_BY_TOKEN_ID__ID_ASC", TOKEN_CONTRACT_BY_TOKEN_ID__ID_DESC = "TOKEN_CONTRACT_BY_TOKEN_ID__ID_DESC", TOKEN_CONTRACT_BY_TOKEN_ID__NAME_ASC = "TOKEN_CONTRACT_BY_TOKEN_ID__NAME_ASC", TOKEN_CONTRACT_BY_TOKEN_ID__NAME_DESC = "TOKEN_CONTRACT_BY_TOKEN_ID__NAME_DESC", TOKEN_CONTRACT_BY_TOKEN_ID__SYMBOL_ASC = "TOKEN_CONTRACT_BY_TOKEN_ID__SYMBOL_ASC", TOKEN_CONTRACT_BY_TOKEN_ID__SYMBOL_DESC = "TOKEN_CONTRACT_BY_TOKEN_ID__SYMBOL_DESC", TOKEN_CONTRACT_BY_TOKEN_ID__TYPE_ASC = "TOKEN_CONTRACT_BY_TOKEN_ID__TYPE_ASC", TOKEN_CONTRACT_BY_TOKEN_ID__TYPE_DESC = "TOKEN_CONTRACT_BY_TOKEN_ID__TYPE_DESC", TOKEN_ID_ASC = "TOKEN_ID_ASC", TOKEN_ID_DESC = "TOKEN_ID_DESC", TOKEN_NAME_ASC = "TOKEN_NAME_ASC", TOKEN_NAME_DESC = "TOKEN_NAME_DESC", TOKEN_SYMBOL_ASC = "TOKEN_SYMBOL_ASC", TOKEN_SYMBOL_DESC = "TOKEN_SYMBOL_DESC", WALLET_BY_WALLET_ID__BALANCE_ASC = "WALLET_BY_WALLET_ID__BALANCE_ASC", WALLET_BY_WALLET_ID__BALANCE_DESC = "WALLET_BY_WALLET_ID__BALANCE_DESC", WALLET_BY_WALLET_ID__ID_ASC = "WALLET_BY_WALLET_ID__ID_ASC", WALLET_BY_WALLET_ID__ID_DESC = "WALLET_BY_WALLET_ID__ID_DESC", WALLET_ID_ASC = "WALLET_ID_ASC", WALLET_ID_DESC = "WALLET_ID_DESC" } type GqlTokenContract = GqlNode & { /** Reads and enables pagination through a set of `AssetTransfer`. */ assetTransfersByTokenId: GqlAssetTransfersConnection; decimals: Maybe; iconUrl: Maybe; id: Scalars['String']['output']; name: Maybe; /** Reads and enables pagination through a set of `Nft`. */ nftsByAssetTransferTokenIdAndNftId: GqlTokenContractNftsByAssetTransferTokenIdAndNftIdManyToManyConnection; /** Reads and enables pagination through a set of `Nft`. */ nftsByCollectionId: GqlNftsConnection; /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ nodeId: Scalars['ID']['output']; symbol: Maybe; /** Reads and enables pagination through a set of `TokenBalance`. */ tokenBalancesByTokenId: GqlTokenBalancesConnection; /** Reads and enables pagination through a set of `Transaction`. */ transactionsByAssetTransferTokenIdAndTransactionId: GqlTokenContractTransactionsByAssetTransferTokenIdAndTransactionIdManyToManyConnection; type: Scalars['String']['output']; /** Reads and enables pagination through a set of `Wallet`. */ walletsByAssetTransferTokenIdAndFromId: GqlTokenContractWalletsByAssetTransferTokenIdAndFromIdManyToManyConnection; /** Reads and enables pagination through a set of `Wallet`. */ walletsByAssetTransferTokenIdAndToId: GqlTokenContractWalletsByAssetTransferTokenIdAndToIdManyToManyConnection; /** Reads and enables pagination through a set of `Wallet`. */ walletsByTokenBalanceTokenIdAndWalletId: GqlTokenContractWalletsByTokenBalanceTokenIdAndWalletIdManyToManyConnection; }; type GqlTokenContractassetTransfersByTokenIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlTokenContractnftsByAssetTransferTokenIdAndNftIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlTokenContractnftsByCollectionIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlTokenContracttokenBalancesByTokenIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlTokenContracttransactionsByAssetTransferTokenIdAndTransactionIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlTokenContractwalletsByAssetTransferTokenIdAndFromIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlTokenContractwalletsByAssetTransferTokenIdAndToIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlTokenContractwalletsByTokenBalanceTokenIdAndWalletIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlTokenContractAggregates = { /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ average: Maybe; /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ distinctCount: Maybe; keys: Maybe>; /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ max: Maybe; /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ min: Maybe; /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ stddevPopulation: Maybe; /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ stddevSample: Maybe; /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ sum: Maybe; /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ variancePopulation: Maybe; /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ varianceSample: Maybe; }; type GqlTokenContractAverageAggregates = { /** Mean average of decimals across the matching connection */ decimals: Maybe; }; type GqlTokenContractDistinctCountAggregates = { /** Distinct count of _blockRange across the matching connection */ _blockRange: Maybe; /** Distinct count of _id across the matching connection */ _id: Maybe; /** Distinct count of decimals across the matching connection */ decimals: Maybe; /** Distinct count of iconUrl across the matching connection */ iconUrl: Maybe; /** Distinct count of id across the matching connection */ id: Maybe; /** Distinct count of name across the matching connection */ name: Maybe; /** Distinct count of symbol across the matching connection */ symbol: Maybe; /** Distinct count of type across the matching connection */ type: Maybe; }; /** A filter to be used against `TokenContract` object types. All fields are combined with a logical ‘and.’ */ type GqlTokenContractFilter = { /** Checks for all expressions in this list. */ and?: InputMaybe>; /** Filter by the object’s `assetTransfersByTokenId` relation. */ assetTransfersByTokenId?: InputMaybe; /** Some related `assetTransfersByTokenId` exist. */ assetTransfersByTokenIdExist?: InputMaybe; /** Filter by the object’s `decimals` field. */ decimals?: InputMaybe; /** Filter by the object’s `iconUrl` field. */ iconUrl?: InputMaybe; /** Filter by the object’s `id` field. */ id?: InputMaybe; /** Filter by the object’s `name` field. */ name?: InputMaybe; /** Filter by the object’s `nftsByCollectionId` relation. */ nftsByCollectionId?: InputMaybe; /** Some related `nftsByCollectionId` exist. */ nftsByCollectionIdExist?: InputMaybe; /** Negates the expression. */ not?: InputMaybe; /** Checks for any expressions in this list. */ or?: InputMaybe>; /** Filter by the object’s `symbol` field. */ symbol?: InputMaybe; /** Filter by the object’s `tokenBalancesByTokenId` relation. */ tokenBalancesByTokenId?: InputMaybe; /** Some related `tokenBalancesByTokenId` exist. */ tokenBalancesByTokenIdExist?: InputMaybe; /** Filter by the object’s `type` field. */ type?: InputMaybe; }; type GqlTokenContractMaxAggregates = { /** Maximum of decimals across the matching connection */ decimals: Maybe; }; type GqlTokenContractMinAggregates = { /** Minimum of decimals across the matching connection */ decimals: Maybe; }; /** A connection to a list of `Nft` values, with data from `AssetTransfer`. */ type GqlTokenContractNftsByAssetTransferTokenIdAndNftIdManyToManyConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `Nft`, info from the `AssetTransfer`, and the cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `Nft` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `Nft` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `Nft` values, with data from `AssetTransfer`. */ type GqlTokenContractNftsByAssetTransferTokenIdAndNftIdManyToManyConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `Nft` edge in the connection, with data from `AssetTransfer`. */ type GqlTokenContractNftsByAssetTransferTokenIdAndNftIdManyToManyEdge = { /** Reads and enables pagination through a set of `AssetTransfer`. */ assetTransfers: GqlAssetTransfersConnection; /** A cursor for use in pagination. */ cursor: Maybe; /** The `Nft` at the end of the edge. */ node: Maybe; }; /** A `Nft` edge in the connection, with data from `AssetTransfer`. */ type GqlTokenContractNftsByAssetTransferTokenIdAndNftIdManyToManyEdgeassetTransfersArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlTokenContractPayload = { _entity: Maybe; id: Scalars['ID']['output']; mutation_type: GqlMutationType; }; type GqlTokenContractPayload_entityArgs = { distinct?: InputMaybe>>; }; type GqlTokenContractStddevPopulationAggregates = { /** Population standard deviation of decimals across the matching connection */ decimals: Maybe; }; type GqlTokenContractStddevSampleAggregates = { /** Sample standard deviation of decimals across the matching connection */ decimals: Maybe; }; type GqlTokenContractSumAggregates = { /** Sum of decimals across the matching connection */ decimals: Scalars['BigInt']['output']; }; /** A filter to be used against many `AssetTransfer` object types. All fields are combined with a logical ‘and.’ */ type GqlTokenContractToManyAssetTransferFilter = { /** Aggregates across related `AssetTransfer` match the filter criteria. */ aggregates?: InputMaybe; /** Every related `AssetTransfer` matches the filter criteria. All fields are combined with a logical ‘and.’ */ every?: InputMaybe; /** No related `AssetTransfer` matches the filter criteria. All fields are combined with a logical ‘and.’ */ none?: InputMaybe; /** Some related `AssetTransfer` matches the filter criteria. All fields are combined with a logical ‘and.’ */ some?: InputMaybe; }; /** A filter to be used against many `Nft` object types. All fields are combined with a logical ‘and.’ */ type GqlTokenContractToManyNftFilter = { /** Aggregates across related `Nft` match the filter criteria. */ aggregates?: InputMaybe; /** Every related `Nft` matches the filter criteria. All fields are combined with a logical ‘and.’ */ every?: InputMaybe; /** No related `Nft` matches the filter criteria. All fields are combined with a logical ‘and.’ */ none?: InputMaybe; /** Some related `Nft` matches the filter criteria. All fields are combined with a logical ‘and.’ */ some?: InputMaybe; }; /** A filter to be used against many `TokenBalance` object types. All fields are combined with a logical ‘and.’ */ type GqlTokenContractToManyTokenBalanceFilter = { /** Aggregates across related `TokenBalance` match the filter criteria. */ aggregates?: InputMaybe; /** Every related `TokenBalance` matches the filter criteria. All fields are combined with a logical ‘and.’ */ every?: InputMaybe; /** No related `TokenBalance` matches the filter criteria. All fields are combined with a logical ‘and.’ */ none?: InputMaybe; /** Some related `TokenBalance` matches the filter criteria. All fields are combined with a logical ‘and.’ */ some?: InputMaybe; }; /** A connection to a list of `Transaction` values, with data from `AssetTransfer`. */ type GqlTokenContractTransactionsByAssetTransferTokenIdAndTransactionIdManyToManyConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `Transaction`, info from the `AssetTransfer`, and the cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `Transaction` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `Transaction` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `Transaction` values, with data from `AssetTransfer`. */ type GqlTokenContractTransactionsByAssetTransferTokenIdAndTransactionIdManyToManyConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `Transaction` edge in the connection, with data from `AssetTransfer`. */ type GqlTokenContractTransactionsByAssetTransferTokenIdAndTransactionIdManyToManyEdge = { /** Reads and enables pagination through a set of `AssetTransfer`. */ assetTransfers: GqlAssetTransfersConnection; /** A cursor for use in pagination. */ cursor: Maybe; /** The `Transaction` at the end of the edge. */ node: Maybe; }; /** A `Transaction` edge in the connection, with data from `AssetTransfer`. */ type GqlTokenContractTransactionsByAssetTransferTokenIdAndTransactionIdManyToManyEdgeassetTransfersArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlTokenContractVariancePopulationAggregates = { /** Population variance of decimals across the matching connection */ decimals: Maybe; }; type GqlTokenContractVarianceSampleAggregates = { /** Sample variance of decimals across the matching connection */ decimals: Maybe; }; /** A connection to a list of `Wallet` values, with data from `AssetTransfer`. */ type GqlTokenContractWalletsByAssetTransferTokenIdAndFromIdManyToManyConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `Wallet`, info from the `AssetTransfer`, and the cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `Wallet` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `Wallet` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `Wallet` values, with data from `AssetTransfer`. */ type GqlTokenContractWalletsByAssetTransferTokenIdAndFromIdManyToManyConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `Wallet` edge in the connection, with data from `AssetTransfer`. */ type GqlTokenContractWalletsByAssetTransferTokenIdAndFromIdManyToManyEdge = { /** Reads and enables pagination through a set of `AssetTransfer`. */ assetTransfersByFromId: GqlAssetTransfersConnection; /** A cursor for use in pagination. */ cursor: Maybe; /** The `Wallet` at the end of the edge. */ node: Maybe; }; /** A `Wallet` edge in the connection, with data from `AssetTransfer`. */ type GqlTokenContractWalletsByAssetTransferTokenIdAndFromIdManyToManyEdgeassetTransfersByFromIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; /** A connection to a list of `Wallet` values, with data from `AssetTransfer`. */ type GqlTokenContractWalletsByAssetTransferTokenIdAndToIdManyToManyConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `Wallet`, info from the `AssetTransfer`, and the cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `Wallet` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `Wallet` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `Wallet` values, with data from `AssetTransfer`. */ type GqlTokenContractWalletsByAssetTransferTokenIdAndToIdManyToManyConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `Wallet` edge in the connection, with data from `AssetTransfer`. */ type GqlTokenContractWalletsByAssetTransferTokenIdAndToIdManyToManyEdge = { /** Reads and enables pagination through a set of `AssetTransfer`. */ assetTransfersByToId: GqlAssetTransfersConnection; /** A cursor for use in pagination. */ cursor: Maybe; /** The `Wallet` at the end of the edge. */ node: Maybe; }; /** A `Wallet` edge in the connection, with data from `AssetTransfer`. */ type GqlTokenContractWalletsByAssetTransferTokenIdAndToIdManyToManyEdgeassetTransfersByToIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; /** A connection to a list of `Wallet` values, with data from `TokenBalance`. */ type GqlTokenContractWalletsByTokenBalanceTokenIdAndWalletIdManyToManyConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `Wallet`, info from the `TokenBalance`, and the cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `Wallet` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `Wallet` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `Wallet` values, with data from `TokenBalance`. */ type GqlTokenContractWalletsByTokenBalanceTokenIdAndWalletIdManyToManyConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `Wallet` edge in the connection, with data from `TokenBalance`. */ type GqlTokenContractWalletsByTokenBalanceTokenIdAndWalletIdManyToManyEdge = { /** A cursor for use in pagination. */ cursor: Maybe; /** The `Wallet` at the end of the edge. */ node: Maybe; /** Reads and enables pagination through a set of `TokenBalance`. */ tokens: GqlTokenBalancesConnection; }; /** A `Wallet` edge in the connection, with data from `TokenBalance`. */ type GqlTokenContractWalletsByTokenBalanceTokenIdAndWalletIdManyToManyEdgetokensArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; /** A connection to a list of `TokenContract` values. */ type GqlTokenContractsConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `TokenContract` and cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `TokenContract` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `TokenContract` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `TokenContract` values. */ type GqlTokenContractsConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `TokenContract` edge in the connection. */ type GqlTokenContractsEdge = { /** A cursor for use in pagination. */ cursor: Maybe; /** The `TokenContract` at the end of the edge. */ node: Maybe; }; /** Grouping methods for `TokenContract` for usage during aggregation. */ declare enum GqlTokenContractsGroupBy { DECIMALS = "DECIMALS", ICON_URL = "ICON_URL", ID = "ID", NAME = "NAME", SYMBOL = "SYMBOL", TYPE = "TYPE" } type GqlTokenContractsHavingAverageInput = { decimals?: InputMaybe; }; type GqlTokenContractsHavingDistinctCountInput = { decimals?: InputMaybe; }; /** Conditions for `TokenContract` aggregates. */ type GqlTokenContractsHavingInput = { AND?: InputMaybe>; OR?: InputMaybe>; average?: InputMaybe; distinctCount?: InputMaybe; max?: InputMaybe; min?: InputMaybe; stddevPopulation?: InputMaybe; stddevSample?: InputMaybe; sum?: InputMaybe; variancePopulation?: InputMaybe; varianceSample?: InputMaybe; }; type GqlTokenContractsHavingMaxInput = { decimals?: InputMaybe; }; type GqlTokenContractsHavingMinInput = { decimals?: InputMaybe; }; type GqlTokenContractsHavingStddevPopulationInput = { decimals?: InputMaybe; }; type GqlTokenContractsHavingStddevSampleInput = { decimals?: InputMaybe; }; type GqlTokenContractsHavingSumInput = { decimals?: InputMaybe; }; type GqlTokenContractsHavingVariancePopulationInput = { decimals?: InputMaybe; }; type GqlTokenContractsHavingVarianceSampleInput = { decimals?: InputMaybe; }; /** Methods to use when ordering `TokenContract`. */ declare enum GqlTokenContractsOrderBy { ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_BLOCK_RANGE_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_BLOCK_RANGE_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_DECIMALS_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_DECIMALS_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_DECIMALS_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_DECIMALS_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_FROM_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_FROM_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_FROM_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_FROM_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_NFT_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_NFT_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_NFT_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_NFT_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_TOKEN_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_TOKEN_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_TOKEN_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_TOKEN_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_TO_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_TO_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_TO_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_TO_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_TRANSACTION_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_TRANSACTION_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_TYPE_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_TYPE_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_TYPE_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_TYPE_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_VALUE_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_VALUE_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_VALUE_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_AVERAGE_VALUE_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_COUNT_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_COUNT_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_COUNT_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_COUNT_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_DECIMALS_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_DECIMALS_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_DECIMALS_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_DECIMALS_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_FROM_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_FROM_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_FROM_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_FROM_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_NFT_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_NFT_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_NFT_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_NFT_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_TOKEN_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_TOKEN_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_TOKEN_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_TOKEN_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_TO_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_TO_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_TO_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_TO_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_TRANSACTION_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_TRANSACTION_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_TYPE_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_TYPE_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_TYPE_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_TYPE_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_VALUE_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_VALUE_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_VALUE_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_DISTINCT_COUNT_VALUE_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_MAX_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_MAX_BLOCK_RANGE_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_MAX_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_MAX_BLOCK_RANGE_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_MAX_DECIMALS_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_MAX_DECIMALS_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_MAX_DECIMALS_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_MAX_DECIMALS_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_MAX_FROM_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_MAX_FROM_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_MAX_FROM_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_MAX_FROM_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_MAX_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_MAX_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_MAX_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_MAX_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_MAX_NFT_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_MAX_NFT_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_MAX_NFT_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_MAX_NFT_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_MAX_TOKEN_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_MAX_TOKEN_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_MAX_TOKEN_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_MAX_TOKEN_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_MAX_TO_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_MAX_TO_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_MAX_TO_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_MAX_TO_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_MAX_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_MAX_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_MAX_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_MAX_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_MAX_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_MAX_TRANSACTION_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_MAX_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_MAX_TRANSACTION_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_MAX_TYPE_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_MAX_TYPE_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_MAX_TYPE_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_MAX_TYPE_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_MAX_VALUE_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_MAX_VALUE_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_MAX_VALUE_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_MAX_VALUE_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_MIN_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_MIN_BLOCK_RANGE_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_MIN_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_MIN_BLOCK_RANGE_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_MIN_DECIMALS_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_MIN_DECIMALS_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_MIN_DECIMALS_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_MIN_DECIMALS_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_MIN_FROM_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_MIN_FROM_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_MIN_FROM_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_MIN_FROM_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_MIN_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_MIN_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_MIN_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_MIN_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_MIN_NFT_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_MIN_NFT_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_MIN_NFT_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_MIN_NFT_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_MIN_TOKEN_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_MIN_TOKEN_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_MIN_TOKEN_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_MIN_TOKEN_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_MIN_TO_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_MIN_TO_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_MIN_TO_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_MIN_TO_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_MIN_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_MIN_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_MIN_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_MIN_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_MIN_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_MIN_TRANSACTION_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_MIN_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_MIN_TRANSACTION_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_MIN_TYPE_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_MIN_TYPE_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_MIN_TYPE_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_MIN_TYPE_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_MIN_VALUE_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_MIN_VALUE_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_MIN_VALUE_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_MIN_VALUE_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_DECIMALS_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_DECIMALS_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_DECIMALS_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_DECIMALS_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_FROM_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_FROM_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_FROM_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_FROM_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_NFT_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_NFT_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_NFT_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_NFT_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_TOKEN_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_TOKEN_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_TOKEN_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_TOKEN_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_TO_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_TO_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_TO_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_TO_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_TRANSACTION_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_TRANSACTION_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_TYPE_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_TYPE_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_TYPE_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_TYPE_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_VALUE_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_VALUE_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_VALUE_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_POPULATION_VALUE_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_DECIMALS_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_DECIMALS_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_DECIMALS_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_DECIMALS_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_FROM_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_FROM_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_FROM_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_FROM_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_NFT_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_NFT_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_NFT_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_NFT_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_TOKEN_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_TOKEN_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_TOKEN_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_TOKEN_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_TO_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_TO_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_TO_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_TO_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_TRANSACTION_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_TRANSACTION_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_TYPE_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_TYPE_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_TYPE_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_TYPE_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_VALUE_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_VALUE_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_VALUE_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_STDDEV_SAMPLE_VALUE_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_SUM_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_SUM_BLOCK_RANGE_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_SUM_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_SUM_BLOCK_RANGE_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_SUM_DECIMALS_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_SUM_DECIMALS_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_SUM_DECIMALS_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_SUM_DECIMALS_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_SUM_FROM_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_SUM_FROM_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_SUM_FROM_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_SUM_FROM_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_SUM_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_SUM_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_SUM_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_SUM_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_SUM_NFT_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_SUM_NFT_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_SUM_NFT_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_SUM_NFT_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_SUM_TOKEN_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_SUM_TOKEN_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_SUM_TOKEN_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_SUM_TOKEN_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_SUM_TO_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_SUM_TO_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_SUM_TO_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_SUM_TO_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_SUM_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_SUM_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_SUM_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_SUM_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_SUM_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_SUM_TRANSACTION_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_SUM_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_SUM_TRANSACTION_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_SUM_TYPE_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_SUM_TYPE_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_SUM_TYPE_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_SUM_TYPE_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_SUM_VALUE_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_SUM_VALUE_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_SUM_VALUE_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_SUM_VALUE_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_DECIMALS_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_DECIMALS_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_DECIMALS_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_DECIMALS_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_FROM_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_FROM_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_FROM_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_FROM_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_NFT_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_NFT_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_NFT_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_NFT_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_TOKEN_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_TOKEN_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_TOKEN_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_TOKEN_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_TO_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_TO_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_TO_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_TO_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_TRANSACTION_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_TRANSACTION_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_TYPE_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_TYPE_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_TYPE_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_TYPE_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_VALUE_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_VALUE_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_VALUE_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_POPULATION_VALUE_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_DECIMALS_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_DECIMALS_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_DECIMALS_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_DECIMALS_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_FROM_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_FROM_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_FROM_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_FROM_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_NFT_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_NFT_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_NFT_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_NFT_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_TOKEN_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_TOKEN_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_TOKEN_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_TOKEN_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_TO_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_TO_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_TO_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_TO_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_TRANSACTION_ID_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_TRANSACTION_ID_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_TYPE_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_TYPE_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_TYPE_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_TYPE_DESC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_VALUE_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_VALUE_ASC", ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_VALUE_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID_VARIANCE_SAMPLE_VALUE_DESC", ASSET_TRANSFERS_BY_TOKEN_ID__COUNT_ASC = "ASSET_TRANSFERS_BY_TOKEN_ID__COUNT_ASC", ASSET_TRANSFERS_BY_TOKEN_ID__COUNT_DESC = "ASSET_TRANSFERS_BY_TOKEN_ID__COUNT_DESC", DECIMALS_ASC = "DECIMALS_ASC", DECIMALS_DESC = "DECIMALS_DESC", ICON_URL_ASC = "ICON_URL_ASC", ICON_URL_DESC = "ICON_URL_DESC", ID_ASC = "ID_ASC", ID_DESC = "ID_DESC", NAME_ASC = "NAME_ASC", NAME_DESC = "NAME_DESC", NATURAL = "NATURAL", NFTS_BY_COLLECTION_ID_AVERAGE_BLOCK_RANGE_ASC = "NFTS_BY_COLLECTION_ID_AVERAGE_BLOCK_RANGE_ASC", NFTS_BY_COLLECTION_ID_AVERAGE_BLOCK_RANGE_DESC = "NFTS_BY_COLLECTION_ID_AVERAGE_BLOCK_RANGE_DESC", NFTS_BY_COLLECTION_ID_AVERAGE_COLLECTION_ID_ASC = "NFTS_BY_COLLECTION_ID_AVERAGE_COLLECTION_ID_ASC", NFTS_BY_COLLECTION_ID_AVERAGE_COLLECTION_ID_DESC = "NFTS_BY_COLLECTION_ID_AVERAGE_COLLECTION_ID_DESC", NFTS_BY_COLLECTION_ID_AVERAGE_ID_ASC = "NFTS_BY_COLLECTION_ID_AVERAGE_ID_ASC", NFTS_BY_COLLECTION_ID_AVERAGE_ID_DESC = "NFTS_BY_COLLECTION_ID_AVERAGE_ID_DESC", NFTS_BY_COLLECTION_ID_AVERAGE_METADATA_ASC = "NFTS_BY_COLLECTION_ID_AVERAGE_METADATA_ASC", NFTS_BY_COLLECTION_ID_AVERAGE_METADATA_DESC = "NFTS_BY_COLLECTION_ID_AVERAGE_METADATA_DESC", NFTS_BY_COLLECTION_ID_AVERAGE_TOKEN_ID_ASC = "NFTS_BY_COLLECTION_ID_AVERAGE_TOKEN_ID_ASC", NFTS_BY_COLLECTION_ID_AVERAGE_TOKEN_ID_DESC = "NFTS_BY_COLLECTION_ID_AVERAGE_TOKEN_ID_DESC", NFTS_BY_COLLECTION_ID_COUNT_ASC = "NFTS_BY_COLLECTION_ID_COUNT_ASC", NFTS_BY_COLLECTION_ID_COUNT_DESC = "NFTS_BY_COLLECTION_ID_COUNT_DESC", NFTS_BY_COLLECTION_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC = "NFTS_BY_COLLECTION_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC", NFTS_BY_COLLECTION_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC = "NFTS_BY_COLLECTION_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC", NFTS_BY_COLLECTION_ID_DISTINCT_COUNT_COLLECTION_ID_ASC = "NFTS_BY_COLLECTION_ID_DISTINCT_COUNT_COLLECTION_ID_ASC", NFTS_BY_COLLECTION_ID_DISTINCT_COUNT_COLLECTION_ID_DESC = "NFTS_BY_COLLECTION_ID_DISTINCT_COUNT_COLLECTION_ID_DESC", NFTS_BY_COLLECTION_ID_DISTINCT_COUNT_ID_ASC = "NFTS_BY_COLLECTION_ID_DISTINCT_COUNT_ID_ASC", NFTS_BY_COLLECTION_ID_DISTINCT_COUNT_ID_DESC = "NFTS_BY_COLLECTION_ID_DISTINCT_COUNT_ID_DESC", NFTS_BY_COLLECTION_ID_DISTINCT_COUNT_METADATA_ASC = "NFTS_BY_COLLECTION_ID_DISTINCT_COUNT_METADATA_ASC", NFTS_BY_COLLECTION_ID_DISTINCT_COUNT_METADATA_DESC = "NFTS_BY_COLLECTION_ID_DISTINCT_COUNT_METADATA_DESC", NFTS_BY_COLLECTION_ID_DISTINCT_COUNT_TOKEN_ID_ASC = "NFTS_BY_COLLECTION_ID_DISTINCT_COUNT_TOKEN_ID_ASC", NFTS_BY_COLLECTION_ID_DISTINCT_COUNT_TOKEN_ID_DESC = "NFTS_BY_COLLECTION_ID_DISTINCT_COUNT_TOKEN_ID_DESC", NFTS_BY_COLLECTION_ID_MAX_BLOCK_RANGE_ASC = "NFTS_BY_COLLECTION_ID_MAX_BLOCK_RANGE_ASC", NFTS_BY_COLLECTION_ID_MAX_BLOCK_RANGE_DESC = "NFTS_BY_COLLECTION_ID_MAX_BLOCK_RANGE_DESC", NFTS_BY_COLLECTION_ID_MAX_COLLECTION_ID_ASC = "NFTS_BY_COLLECTION_ID_MAX_COLLECTION_ID_ASC", NFTS_BY_COLLECTION_ID_MAX_COLLECTION_ID_DESC = "NFTS_BY_COLLECTION_ID_MAX_COLLECTION_ID_DESC", NFTS_BY_COLLECTION_ID_MAX_ID_ASC = "NFTS_BY_COLLECTION_ID_MAX_ID_ASC", NFTS_BY_COLLECTION_ID_MAX_ID_DESC = "NFTS_BY_COLLECTION_ID_MAX_ID_DESC", NFTS_BY_COLLECTION_ID_MAX_METADATA_ASC = "NFTS_BY_COLLECTION_ID_MAX_METADATA_ASC", NFTS_BY_COLLECTION_ID_MAX_METADATA_DESC = "NFTS_BY_COLLECTION_ID_MAX_METADATA_DESC", NFTS_BY_COLLECTION_ID_MAX_TOKEN_ID_ASC = "NFTS_BY_COLLECTION_ID_MAX_TOKEN_ID_ASC", NFTS_BY_COLLECTION_ID_MAX_TOKEN_ID_DESC = "NFTS_BY_COLLECTION_ID_MAX_TOKEN_ID_DESC", NFTS_BY_COLLECTION_ID_MIN_BLOCK_RANGE_ASC = "NFTS_BY_COLLECTION_ID_MIN_BLOCK_RANGE_ASC", NFTS_BY_COLLECTION_ID_MIN_BLOCK_RANGE_DESC = "NFTS_BY_COLLECTION_ID_MIN_BLOCK_RANGE_DESC", NFTS_BY_COLLECTION_ID_MIN_COLLECTION_ID_ASC = "NFTS_BY_COLLECTION_ID_MIN_COLLECTION_ID_ASC", NFTS_BY_COLLECTION_ID_MIN_COLLECTION_ID_DESC = "NFTS_BY_COLLECTION_ID_MIN_COLLECTION_ID_DESC", NFTS_BY_COLLECTION_ID_MIN_ID_ASC = "NFTS_BY_COLLECTION_ID_MIN_ID_ASC", NFTS_BY_COLLECTION_ID_MIN_ID_DESC = "NFTS_BY_COLLECTION_ID_MIN_ID_DESC", NFTS_BY_COLLECTION_ID_MIN_METADATA_ASC = "NFTS_BY_COLLECTION_ID_MIN_METADATA_ASC", NFTS_BY_COLLECTION_ID_MIN_METADATA_DESC = "NFTS_BY_COLLECTION_ID_MIN_METADATA_DESC", NFTS_BY_COLLECTION_ID_MIN_TOKEN_ID_ASC = "NFTS_BY_COLLECTION_ID_MIN_TOKEN_ID_ASC", NFTS_BY_COLLECTION_ID_MIN_TOKEN_ID_DESC = "NFTS_BY_COLLECTION_ID_MIN_TOKEN_ID_DESC", NFTS_BY_COLLECTION_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC = "NFTS_BY_COLLECTION_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC", NFTS_BY_COLLECTION_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC = "NFTS_BY_COLLECTION_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC", NFTS_BY_COLLECTION_ID_STDDEV_POPULATION_COLLECTION_ID_ASC = "NFTS_BY_COLLECTION_ID_STDDEV_POPULATION_COLLECTION_ID_ASC", NFTS_BY_COLLECTION_ID_STDDEV_POPULATION_COLLECTION_ID_DESC = "NFTS_BY_COLLECTION_ID_STDDEV_POPULATION_COLLECTION_ID_DESC", NFTS_BY_COLLECTION_ID_STDDEV_POPULATION_ID_ASC = "NFTS_BY_COLLECTION_ID_STDDEV_POPULATION_ID_ASC", NFTS_BY_COLLECTION_ID_STDDEV_POPULATION_ID_DESC = "NFTS_BY_COLLECTION_ID_STDDEV_POPULATION_ID_DESC", NFTS_BY_COLLECTION_ID_STDDEV_POPULATION_METADATA_ASC = "NFTS_BY_COLLECTION_ID_STDDEV_POPULATION_METADATA_ASC", NFTS_BY_COLLECTION_ID_STDDEV_POPULATION_METADATA_DESC = "NFTS_BY_COLLECTION_ID_STDDEV_POPULATION_METADATA_DESC", NFTS_BY_COLLECTION_ID_STDDEV_POPULATION_TOKEN_ID_ASC = "NFTS_BY_COLLECTION_ID_STDDEV_POPULATION_TOKEN_ID_ASC", NFTS_BY_COLLECTION_ID_STDDEV_POPULATION_TOKEN_ID_DESC = "NFTS_BY_COLLECTION_ID_STDDEV_POPULATION_TOKEN_ID_DESC", NFTS_BY_COLLECTION_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC = "NFTS_BY_COLLECTION_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC", NFTS_BY_COLLECTION_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC = "NFTS_BY_COLLECTION_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC", NFTS_BY_COLLECTION_ID_STDDEV_SAMPLE_COLLECTION_ID_ASC = "NFTS_BY_COLLECTION_ID_STDDEV_SAMPLE_COLLECTION_ID_ASC", NFTS_BY_COLLECTION_ID_STDDEV_SAMPLE_COLLECTION_ID_DESC = "NFTS_BY_COLLECTION_ID_STDDEV_SAMPLE_COLLECTION_ID_DESC", NFTS_BY_COLLECTION_ID_STDDEV_SAMPLE_ID_ASC = "NFTS_BY_COLLECTION_ID_STDDEV_SAMPLE_ID_ASC", NFTS_BY_COLLECTION_ID_STDDEV_SAMPLE_ID_DESC = "NFTS_BY_COLLECTION_ID_STDDEV_SAMPLE_ID_DESC", NFTS_BY_COLLECTION_ID_STDDEV_SAMPLE_METADATA_ASC = "NFTS_BY_COLLECTION_ID_STDDEV_SAMPLE_METADATA_ASC", NFTS_BY_COLLECTION_ID_STDDEV_SAMPLE_METADATA_DESC = "NFTS_BY_COLLECTION_ID_STDDEV_SAMPLE_METADATA_DESC", NFTS_BY_COLLECTION_ID_STDDEV_SAMPLE_TOKEN_ID_ASC = "NFTS_BY_COLLECTION_ID_STDDEV_SAMPLE_TOKEN_ID_ASC", NFTS_BY_COLLECTION_ID_STDDEV_SAMPLE_TOKEN_ID_DESC = "NFTS_BY_COLLECTION_ID_STDDEV_SAMPLE_TOKEN_ID_DESC", NFTS_BY_COLLECTION_ID_SUM_BLOCK_RANGE_ASC = "NFTS_BY_COLLECTION_ID_SUM_BLOCK_RANGE_ASC", NFTS_BY_COLLECTION_ID_SUM_BLOCK_RANGE_DESC = "NFTS_BY_COLLECTION_ID_SUM_BLOCK_RANGE_DESC", NFTS_BY_COLLECTION_ID_SUM_COLLECTION_ID_ASC = "NFTS_BY_COLLECTION_ID_SUM_COLLECTION_ID_ASC", NFTS_BY_COLLECTION_ID_SUM_COLLECTION_ID_DESC = "NFTS_BY_COLLECTION_ID_SUM_COLLECTION_ID_DESC", NFTS_BY_COLLECTION_ID_SUM_ID_ASC = "NFTS_BY_COLLECTION_ID_SUM_ID_ASC", NFTS_BY_COLLECTION_ID_SUM_ID_DESC = "NFTS_BY_COLLECTION_ID_SUM_ID_DESC", NFTS_BY_COLLECTION_ID_SUM_METADATA_ASC = "NFTS_BY_COLLECTION_ID_SUM_METADATA_ASC", NFTS_BY_COLLECTION_ID_SUM_METADATA_DESC = "NFTS_BY_COLLECTION_ID_SUM_METADATA_DESC", NFTS_BY_COLLECTION_ID_SUM_TOKEN_ID_ASC = "NFTS_BY_COLLECTION_ID_SUM_TOKEN_ID_ASC", NFTS_BY_COLLECTION_ID_SUM_TOKEN_ID_DESC = "NFTS_BY_COLLECTION_ID_SUM_TOKEN_ID_DESC", NFTS_BY_COLLECTION_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC = "NFTS_BY_COLLECTION_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC", NFTS_BY_COLLECTION_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC = "NFTS_BY_COLLECTION_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC", NFTS_BY_COLLECTION_ID_VARIANCE_POPULATION_COLLECTION_ID_ASC = "NFTS_BY_COLLECTION_ID_VARIANCE_POPULATION_COLLECTION_ID_ASC", NFTS_BY_COLLECTION_ID_VARIANCE_POPULATION_COLLECTION_ID_DESC = "NFTS_BY_COLLECTION_ID_VARIANCE_POPULATION_COLLECTION_ID_DESC", NFTS_BY_COLLECTION_ID_VARIANCE_POPULATION_ID_ASC = "NFTS_BY_COLLECTION_ID_VARIANCE_POPULATION_ID_ASC", NFTS_BY_COLLECTION_ID_VARIANCE_POPULATION_ID_DESC = "NFTS_BY_COLLECTION_ID_VARIANCE_POPULATION_ID_DESC", NFTS_BY_COLLECTION_ID_VARIANCE_POPULATION_METADATA_ASC = "NFTS_BY_COLLECTION_ID_VARIANCE_POPULATION_METADATA_ASC", NFTS_BY_COLLECTION_ID_VARIANCE_POPULATION_METADATA_DESC = "NFTS_BY_COLLECTION_ID_VARIANCE_POPULATION_METADATA_DESC", NFTS_BY_COLLECTION_ID_VARIANCE_POPULATION_TOKEN_ID_ASC = "NFTS_BY_COLLECTION_ID_VARIANCE_POPULATION_TOKEN_ID_ASC", NFTS_BY_COLLECTION_ID_VARIANCE_POPULATION_TOKEN_ID_DESC = "NFTS_BY_COLLECTION_ID_VARIANCE_POPULATION_TOKEN_ID_DESC", NFTS_BY_COLLECTION_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC = "NFTS_BY_COLLECTION_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC", NFTS_BY_COLLECTION_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC = "NFTS_BY_COLLECTION_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC", NFTS_BY_COLLECTION_ID_VARIANCE_SAMPLE_COLLECTION_ID_ASC = "NFTS_BY_COLLECTION_ID_VARIANCE_SAMPLE_COLLECTION_ID_ASC", NFTS_BY_COLLECTION_ID_VARIANCE_SAMPLE_COLLECTION_ID_DESC = "NFTS_BY_COLLECTION_ID_VARIANCE_SAMPLE_COLLECTION_ID_DESC", NFTS_BY_COLLECTION_ID_VARIANCE_SAMPLE_ID_ASC = "NFTS_BY_COLLECTION_ID_VARIANCE_SAMPLE_ID_ASC", NFTS_BY_COLLECTION_ID_VARIANCE_SAMPLE_ID_DESC = "NFTS_BY_COLLECTION_ID_VARIANCE_SAMPLE_ID_DESC", NFTS_BY_COLLECTION_ID_VARIANCE_SAMPLE_METADATA_ASC = "NFTS_BY_COLLECTION_ID_VARIANCE_SAMPLE_METADATA_ASC", NFTS_BY_COLLECTION_ID_VARIANCE_SAMPLE_METADATA_DESC = "NFTS_BY_COLLECTION_ID_VARIANCE_SAMPLE_METADATA_DESC", NFTS_BY_COLLECTION_ID_VARIANCE_SAMPLE_TOKEN_ID_ASC = "NFTS_BY_COLLECTION_ID_VARIANCE_SAMPLE_TOKEN_ID_ASC", NFTS_BY_COLLECTION_ID_VARIANCE_SAMPLE_TOKEN_ID_DESC = "NFTS_BY_COLLECTION_ID_VARIANCE_SAMPLE_TOKEN_ID_DESC", NFTS_BY_COLLECTION_ID__COUNT_ASC = "NFTS_BY_COLLECTION_ID__COUNT_ASC", NFTS_BY_COLLECTION_ID__COUNT_DESC = "NFTS_BY_COLLECTION_ID__COUNT_DESC", PRIMARY_KEY_ASC = "PRIMARY_KEY_ASC", PRIMARY_KEY_DESC = "PRIMARY_KEY_DESC", SYMBOL_ASC = "SYMBOL_ASC", SYMBOL_DESC = "SYMBOL_DESC", TOKEN_BALANCES_BY_TOKEN_ID_AVERAGE_BALANCE_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_AVERAGE_BALANCE_ASC", TOKEN_BALANCES_BY_TOKEN_ID_AVERAGE_BALANCE_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_AVERAGE_BALANCE_DESC", TOKEN_BALANCES_BY_TOKEN_ID_AVERAGE_BLOCK_RANGE_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_AVERAGE_BLOCK_RANGE_ASC", TOKEN_BALANCES_BY_TOKEN_ID_AVERAGE_BLOCK_RANGE_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_AVERAGE_BLOCK_RANGE_DESC", TOKEN_BALANCES_BY_TOKEN_ID_AVERAGE_ID_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_AVERAGE_ID_ASC", TOKEN_BALANCES_BY_TOKEN_ID_AVERAGE_ID_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_AVERAGE_ID_DESC", TOKEN_BALANCES_BY_TOKEN_ID_AVERAGE_TOKEN_ID_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_AVERAGE_TOKEN_ID_ASC", TOKEN_BALANCES_BY_TOKEN_ID_AVERAGE_TOKEN_ID_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_AVERAGE_TOKEN_ID_DESC", TOKEN_BALANCES_BY_TOKEN_ID_AVERAGE_TOKEN_NAME_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_AVERAGE_TOKEN_NAME_ASC", TOKEN_BALANCES_BY_TOKEN_ID_AVERAGE_TOKEN_NAME_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_AVERAGE_TOKEN_NAME_DESC", TOKEN_BALANCES_BY_TOKEN_ID_AVERAGE_TOKEN_SYMBOL_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_AVERAGE_TOKEN_SYMBOL_ASC", TOKEN_BALANCES_BY_TOKEN_ID_AVERAGE_TOKEN_SYMBOL_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_AVERAGE_TOKEN_SYMBOL_DESC", TOKEN_BALANCES_BY_TOKEN_ID_AVERAGE_WALLET_ID_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_AVERAGE_WALLET_ID_ASC", TOKEN_BALANCES_BY_TOKEN_ID_AVERAGE_WALLET_ID_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_AVERAGE_WALLET_ID_DESC", TOKEN_BALANCES_BY_TOKEN_ID_COUNT_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_COUNT_ASC", TOKEN_BALANCES_BY_TOKEN_ID_COUNT_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_COUNT_DESC", TOKEN_BALANCES_BY_TOKEN_ID_DISTINCT_COUNT_BALANCE_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_DISTINCT_COUNT_BALANCE_ASC", TOKEN_BALANCES_BY_TOKEN_ID_DISTINCT_COUNT_BALANCE_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_DISTINCT_COUNT_BALANCE_DESC", TOKEN_BALANCES_BY_TOKEN_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC", TOKEN_BALANCES_BY_TOKEN_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC", TOKEN_BALANCES_BY_TOKEN_ID_DISTINCT_COUNT_ID_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_DISTINCT_COUNT_ID_ASC", TOKEN_BALANCES_BY_TOKEN_ID_DISTINCT_COUNT_ID_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_DISTINCT_COUNT_ID_DESC", TOKEN_BALANCES_BY_TOKEN_ID_DISTINCT_COUNT_TOKEN_ID_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_DISTINCT_COUNT_TOKEN_ID_ASC", TOKEN_BALANCES_BY_TOKEN_ID_DISTINCT_COUNT_TOKEN_ID_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_DISTINCT_COUNT_TOKEN_ID_DESC", TOKEN_BALANCES_BY_TOKEN_ID_DISTINCT_COUNT_TOKEN_NAME_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_DISTINCT_COUNT_TOKEN_NAME_ASC", TOKEN_BALANCES_BY_TOKEN_ID_DISTINCT_COUNT_TOKEN_NAME_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_DISTINCT_COUNT_TOKEN_NAME_DESC", TOKEN_BALANCES_BY_TOKEN_ID_DISTINCT_COUNT_TOKEN_SYMBOL_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_DISTINCT_COUNT_TOKEN_SYMBOL_ASC", TOKEN_BALANCES_BY_TOKEN_ID_DISTINCT_COUNT_TOKEN_SYMBOL_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_DISTINCT_COUNT_TOKEN_SYMBOL_DESC", TOKEN_BALANCES_BY_TOKEN_ID_DISTINCT_COUNT_WALLET_ID_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_DISTINCT_COUNT_WALLET_ID_ASC", TOKEN_BALANCES_BY_TOKEN_ID_DISTINCT_COUNT_WALLET_ID_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_DISTINCT_COUNT_WALLET_ID_DESC", TOKEN_BALANCES_BY_TOKEN_ID_MAX_BALANCE_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_MAX_BALANCE_ASC", TOKEN_BALANCES_BY_TOKEN_ID_MAX_BALANCE_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_MAX_BALANCE_DESC", TOKEN_BALANCES_BY_TOKEN_ID_MAX_BLOCK_RANGE_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_MAX_BLOCK_RANGE_ASC", TOKEN_BALANCES_BY_TOKEN_ID_MAX_BLOCK_RANGE_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_MAX_BLOCK_RANGE_DESC", TOKEN_BALANCES_BY_TOKEN_ID_MAX_ID_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_MAX_ID_ASC", TOKEN_BALANCES_BY_TOKEN_ID_MAX_ID_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_MAX_ID_DESC", TOKEN_BALANCES_BY_TOKEN_ID_MAX_TOKEN_ID_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_MAX_TOKEN_ID_ASC", TOKEN_BALANCES_BY_TOKEN_ID_MAX_TOKEN_ID_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_MAX_TOKEN_ID_DESC", TOKEN_BALANCES_BY_TOKEN_ID_MAX_TOKEN_NAME_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_MAX_TOKEN_NAME_ASC", TOKEN_BALANCES_BY_TOKEN_ID_MAX_TOKEN_NAME_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_MAX_TOKEN_NAME_DESC", TOKEN_BALANCES_BY_TOKEN_ID_MAX_TOKEN_SYMBOL_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_MAX_TOKEN_SYMBOL_ASC", TOKEN_BALANCES_BY_TOKEN_ID_MAX_TOKEN_SYMBOL_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_MAX_TOKEN_SYMBOL_DESC", TOKEN_BALANCES_BY_TOKEN_ID_MAX_WALLET_ID_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_MAX_WALLET_ID_ASC", TOKEN_BALANCES_BY_TOKEN_ID_MAX_WALLET_ID_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_MAX_WALLET_ID_DESC", TOKEN_BALANCES_BY_TOKEN_ID_MIN_BALANCE_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_MIN_BALANCE_ASC", TOKEN_BALANCES_BY_TOKEN_ID_MIN_BALANCE_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_MIN_BALANCE_DESC", TOKEN_BALANCES_BY_TOKEN_ID_MIN_BLOCK_RANGE_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_MIN_BLOCK_RANGE_ASC", TOKEN_BALANCES_BY_TOKEN_ID_MIN_BLOCK_RANGE_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_MIN_BLOCK_RANGE_DESC", TOKEN_BALANCES_BY_TOKEN_ID_MIN_ID_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_MIN_ID_ASC", TOKEN_BALANCES_BY_TOKEN_ID_MIN_ID_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_MIN_ID_DESC", TOKEN_BALANCES_BY_TOKEN_ID_MIN_TOKEN_ID_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_MIN_TOKEN_ID_ASC", TOKEN_BALANCES_BY_TOKEN_ID_MIN_TOKEN_ID_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_MIN_TOKEN_ID_DESC", TOKEN_BALANCES_BY_TOKEN_ID_MIN_TOKEN_NAME_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_MIN_TOKEN_NAME_ASC", TOKEN_BALANCES_BY_TOKEN_ID_MIN_TOKEN_NAME_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_MIN_TOKEN_NAME_DESC", TOKEN_BALANCES_BY_TOKEN_ID_MIN_TOKEN_SYMBOL_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_MIN_TOKEN_SYMBOL_ASC", TOKEN_BALANCES_BY_TOKEN_ID_MIN_TOKEN_SYMBOL_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_MIN_TOKEN_SYMBOL_DESC", TOKEN_BALANCES_BY_TOKEN_ID_MIN_WALLET_ID_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_MIN_WALLET_ID_ASC", TOKEN_BALANCES_BY_TOKEN_ID_MIN_WALLET_ID_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_MIN_WALLET_ID_DESC", TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_POPULATION_BALANCE_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_POPULATION_BALANCE_ASC", TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_POPULATION_BALANCE_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_POPULATION_BALANCE_DESC", TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC", TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC", TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_POPULATION_ID_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_POPULATION_ID_ASC", TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_POPULATION_ID_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_POPULATION_ID_DESC", TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_POPULATION_TOKEN_ID_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_POPULATION_TOKEN_ID_ASC", TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_POPULATION_TOKEN_ID_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_POPULATION_TOKEN_ID_DESC", TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_POPULATION_TOKEN_NAME_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_POPULATION_TOKEN_NAME_ASC", TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_POPULATION_TOKEN_NAME_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_POPULATION_TOKEN_NAME_DESC", TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_POPULATION_TOKEN_SYMBOL_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_POPULATION_TOKEN_SYMBOL_ASC", TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_POPULATION_TOKEN_SYMBOL_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_POPULATION_TOKEN_SYMBOL_DESC", TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_POPULATION_WALLET_ID_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_POPULATION_WALLET_ID_ASC", TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_POPULATION_WALLET_ID_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_POPULATION_WALLET_ID_DESC", TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_SAMPLE_BALANCE_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_SAMPLE_BALANCE_ASC", TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_SAMPLE_BALANCE_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_SAMPLE_BALANCE_DESC", TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC", TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC", TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_SAMPLE_ID_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_SAMPLE_ID_ASC", TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_SAMPLE_ID_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_SAMPLE_ID_DESC", TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_SAMPLE_TOKEN_ID_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_SAMPLE_TOKEN_ID_ASC", TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_SAMPLE_TOKEN_ID_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_SAMPLE_TOKEN_ID_DESC", TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_SAMPLE_TOKEN_NAME_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_SAMPLE_TOKEN_NAME_ASC", TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_SAMPLE_TOKEN_NAME_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_SAMPLE_TOKEN_NAME_DESC", TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_SAMPLE_TOKEN_SYMBOL_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_SAMPLE_TOKEN_SYMBOL_ASC", TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_SAMPLE_TOKEN_SYMBOL_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_SAMPLE_TOKEN_SYMBOL_DESC", TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_SAMPLE_WALLET_ID_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_SAMPLE_WALLET_ID_ASC", TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_SAMPLE_WALLET_ID_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_STDDEV_SAMPLE_WALLET_ID_DESC", TOKEN_BALANCES_BY_TOKEN_ID_SUM_BALANCE_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_SUM_BALANCE_ASC", TOKEN_BALANCES_BY_TOKEN_ID_SUM_BALANCE_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_SUM_BALANCE_DESC", TOKEN_BALANCES_BY_TOKEN_ID_SUM_BLOCK_RANGE_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_SUM_BLOCK_RANGE_ASC", TOKEN_BALANCES_BY_TOKEN_ID_SUM_BLOCK_RANGE_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_SUM_BLOCK_RANGE_DESC", TOKEN_BALANCES_BY_TOKEN_ID_SUM_ID_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_SUM_ID_ASC", TOKEN_BALANCES_BY_TOKEN_ID_SUM_ID_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_SUM_ID_DESC", TOKEN_BALANCES_BY_TOKEN_ID_SUM_TOKEN_ID_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_SUM_TOKEN_ID_ASC", TOKEN_BALANCES_BY_TOKEN_ID_SUM_TOKEN_ID_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_SUM_TOKEN_ID_DESC", TOKEN_BALANCES_BY_TOKEN_ID_SUM_TOKEN_NAME_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_SUM_TOKEN_NAME_ASC", TOKEN_BALANCES_BY_TOKEN_ID_SUM_TOKEN_NAME_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_SUM_TOKEN_NAME_DESC", TOKEN_BALANCES_BY_TOKEN_ID_SUM_TOKEN_SYMBOL_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_SUM_TOKEN_SYMBOL_ASC", TOKEN_BALANCES_BY_TOKEN_ID_SUM_TOKEN_SYMBOL_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_SUM_TOKEN_SYMBOL_DESC", TOKEN_BALANCES_BY_TOKEN_ID_SUM_WALLET_ID_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_SUM_WALLET_ID_ASC", TOKEN_BALANCES_BY_TOKEN_ID_SUM_WALLET_ID_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_SUM_WALLET_ID_DESC", TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_POPULATION_BALANCE_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_POPULATION_BALANCE_ASC", TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_POPULATION_BALANCE_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_POPULATION_BALANCE_DESC", TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC", TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC", TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_POPULATION_ID_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_POPULATION_ID_ASC", TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_POPULATION_ID_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_POPULATION_ID_DESC", TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_POPULATION_TOKEN_ID_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_POPULATION_TOKEN_ID_ASC", TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_POPULATION_TOKEN_ID_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_POPULATION_TOKEN_ID_DESC", TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_POPULATION_TOKEN_NAME_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_POPULATION_TOKEN_NAME_ASC", TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_POPULATION_TOKEN_NAME_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_POPULATION_TOKEN_NAME_DESC", TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_POPULATION_TOKEN_SYMBOL_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_POPULATION_TOKEN_SYMBOL_ASC", TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_POPULATION_TOKEN_SYMBOL_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_POPULATION_TOKEN_SYMBOL_DESC", TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_POPULATION_WALLET_ID_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_POPULATION_WALLET_ID_ASC", TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_POPULATION_WALLET_ID_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_POPULATION_WALLET_ID_DESC", TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_SAMPLE_BALANCE_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_SAMPLE_BALANCE_ASC", TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_SAMPLE_BALANCE_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_SAMPLE_BALANCE_DESC", TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC", TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC", TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_SAMPLE_ID_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_SAMPLE_ID_ASC", TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_SAMPLE_ID_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_SAMPLE_ID_DESC", TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_SAMPLE_TOKEN_ID_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_SAMPLE_TOKEN_ID_ASC", TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_SAMPLE_TOKEN_ID_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_SAMPLE_TOKEN_ID_DESC", TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_SAMPLE_TOKEN_NAME_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_SAMPLE_TOKEN_NAME_ASC", TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_SAMPLE_TOKEN_NAME_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_SAMPLE_TOKEN_NAME_DESC", TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_SAMPLE_TOKEN_SYMBOL_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_SAMPLE_TOKEN_SYMBOL_ASC", TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_SAMPLE_TOKEN_SYMBOL_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_SAMPLE_TOKEN_SYMBOL_DESC", TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_SAMPLE_WALLET_ID_ASC = "TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_SAMPLE_WALLET_ID_ASC", TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_SAMPLE_WALLET_ID_DESC = "TOKEN_BALANCES_BY_TOKEN_ID_VARIANCE_SAMPLE_WALLET_ID_DESC", TOKEN_BALANCES_BY_TOKEN_ID__COUNT_ASC = "TOKEN_BALANCES_BY_TOKEN_ID__COUNT_ASC", TOKEN_BALANCES_BY_TOKEN_ID__COUNT_DESC = "TOKEN_BALANCES_BY_TOKEN_ID__COUNT_DESC", TYPE_ASC = "TYPE_ASC", TYPE_DESC = "TYPE_DESC" } type GqlTransaction = GqlNode & { /** Reads and enables pagination through a set of `AssetTransfer`. */ assetTransfers: GqlAssetTransfersConnection; blockHash: Scalars['String']['output']; blockNumber: Scalars['BigFloat']['output']; date: Scalars['Datetime']['output']; fees: Scalars['BigFloat']['output']; gasPrice: Scalars['BigFloat']['output']; gasUsed: Scalars['BigFloat']['output']; id: Scalars['String']['output']; /** Reads and enables pagination through a set of `Nft`. */ nftsByAssetTransferTransactionIdAndNftId: GqlTransactionNftsByAssetTransferTransactionIdAndNftIdManyToManyConnection; /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ nodeId: Scalars['ID']['output']; success: Scalars['Boolean']['output']; /** Reads and enables pagination through a set of `TokenContract`. */ tokenContractsByAssetTransferTransactionIdAndTokenId: GqlTransactionTokenContractsByAssetTransferTransactionIdAndTokenIdManyToManyConnection; /** Reads and enables pagination through a set of `Wallet`. */ walletsByAssetTransferTransactionIdAndFromId: GqlTransactionWalletsByAssetTransferTransactionIdAndFromIdManyToManyConnection; /** Reads and enables pagination through a set of `Wallet`. */ walletsByAssetTransferTransactionIdAndToId: GqlTransactionWalletsByAssetTransferTransactionIdAndToIdManyToManyConnection; }; type GqlTransactionassetTransfersArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlTransactionnftsByAssetTransferTransactionIdAndNftIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlTransactiontokenContractsByAssetTransferTransactionIdAndTokenIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlTransactionwalletsByAssetTransferTransactionIdAndFromIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlTransactionwalletsByAssetTransferTransactionIdAndToIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlTransactionAggregates = { /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ average: Maybe; /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ distinctCount: Maybe; keys: Maybe>; /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ max: Maybe; /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ min: Maybe; /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ stddevPopulation: Maybe; /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ stddevSample: Maybe; /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ sum: Maybe; /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ variancePopulation: Maybe; /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ varianceSample: Maybe; }; type GqlTransactionAverageAggregates = { /** Mean average of blockNumber across the matching connection */ blockNumber: Maybe; /** Mean average of fees across the matching connection */ fees: Maybe; /** Mean average of gasPrice across the matching connection */ gasPrice: Maybe; /** Mean average of gasUsed across the matching connection */ gasUsed: Maybe; }; type GqlTransactionDistinctCountAggregates = { /** Distinct count of _blockRange across the matching connection */ _blockRange: Maybe; /** Distinct count of _id across the matching connection */ _id: Maybe; /** Distinct count of blockHash across the matching connection */ blockHash: Maybe; /** Distinct count of blockNumber across the matching connection */ blockNumber: Maybe; /** Distinct count of date across the matching connection */ date: Maybe; /** Distinct count of fees across the matching connection */ fees: Maybe; /** Distinct count of gasPrice across the matching connection */ gasPrice: Maybe; /** Distinct count of gasUsed across the matching connection */ gasUsed: Maybe; /** Distinct count of id across the matching connection */ id: Maybe; /** Distinct count of success across the matching connection */ success: Maybe; }; /** A filter to be used against `Transaction` object types. All fields are combined with a logical ‘and.’ */ type GqlTransactionFilter = { /** Checks for all expressions in this list. */ and?: InputMaybe>; /** Filter by the object’s `assetTransfers` relation. */ assetTransfers?: InputMaybe; /** Some related `assetTransfers` exist. */ assetTransfersExist?: InputMaybe; /** Filter by the object’s `blockHash` field. */ blockHash?: InputMaybe; /** Filter by the object’s `blockNumber` field. */ blockNumber?: InputMaybe; /** Filter by the object’s `date` field. */ date?: InputMaybe; /** Filter by the object’s `fees` field. */ fees?: InputMaybe; /** Filter by the object’s `gasPrice` field. */ gasPrice?: InputMaybe; /** Filter by the object’s `gasUsed` field. */ gasUsed?: InputMaybe; /** Filter by the object’s `id` field. */ id?: InputMaybe; /** Negates the expression. */ not?: InputMaybe; /** Checks for any expressions in this list. */ or?: InputMaybe>; /** Filter by the object’s `success` field. */ success?: InputMaybe; }; type GqlTransactionMaxAggregates = { /** Maximum of blockNumber across the matching connection */ blockNumber: Maybe; /** Maximum of fees across the matching connection */ fees: Maybe; /** Maximum of gasPrice across the matching connection */ gasPrice: Maybe; /** Maximum of gasUsed across the matching connection */ gasUsed: Maybe; }; type GqlTransactionMinAggregates = { /** Minimum of blockNumber across the matching connection */ blockNumber: Maybe; /** Minimum of fees across the matching connection */ fees: Maybe; /** Minimum of gasPrice across the matching connection */ gasPrice: Maybe; /** Minimum of gasUsed across the matching connection */ gasUsed: Maybe; }; /** A connection to a list of `Nft` values, with data from `AssetTransfer`. */ type GqlTransactionNftsByAssetTransferTransactionIdAndNftIdManyToManyConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `Nft`, info from the `AssetTransfer`, and the cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `Nft` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `Nft` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `Nft` values, with data from `AssetTransfer`. */ type GqlTransactionNftsByAssetTransferTransactionIdAndNftIdManyToManyConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `Nft` edge in the connection, with data from `AssetTransfer`. */ type GqlTransactionNftsByAssetTransferTransactionIdAndNftIdManyToManyEdge = { /** Reads and enables pagination through a set of `AssetTransfer`. */ assetTransfers: GqlAssetTransfersConnection; /** A cursor for use in pagination. */ cursor: Maybe; /** The `Nft` at the end of the edge. */ node: Maybe; }; /** A `Nft` edge in the connection, with data from `AssetTransfer`. */ type GqlTransactionNftsByAssetTransferTransactionIdAndNftIdManyToManyEdgeassetTransfersArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlTransactionPayload = { _entity: Maybe; id: Scalars['ID']['output']; mutation_type: GqlMutationType; }; type GqlTransactionPayload_entityArgs = { distinct?: InputMaybe>>; }; type GqlTransactionStddevPopulationAggregates = { /** Population standard deviation of blockNumber across the matching connection */ blockNumber: Maybe; /** Population standard deviation of fees across the matching connection */ fees: Maybe; /** Population standard deviation of gasPrice across the matching connection */ gasPrice: Maybe; /** Population standard deviation of gasUsed across the matching connection */ gasUsed: Maybe; }; type GqlTransactionStddevSampleAggregates = { /** Sample standard deviation of blockNumber across the matching connection */ blockNumber: Maybe; /** Sample standard deviation of fees across the matching connection */ fees: Maybe; /** Sample standard deviation of gasPrice across the matching connection */ gasPrice: Maybe; /** Sample standard deviation of gasUsed across the matching connection */ gasUsed: Maybe; }; type GqlTransactionSumAggregates = { /** Sum of blockNumber across the matching connection */ blockNumber: Scalars['BigFloat']['output']; /** Sum of fees across the matching connection */ fees: Scalars['BigFloat']['output']; /** Sum of gasPrice across the matching connection */ gasPrice: Scalars['BigFloat']['output']; /** Sum of gasUsed across the matching connection */ gasUsed: Scalars['BigFloat']['output']; }; /** A filter to be used against many `AssetTransfer` object types. All fields are combined with a logical ‘and.’ */ type GqlTransactionToManyAssetTransferFilter = { /** Aggregates across related `AssetTransfer` match the filter criteria. */ aggregates?: InputMaybe; /** Every related `AssetTransfer` matches the filter criteria. All fields are combined with a logical ‘and.’ */ every?: InputMaybe; /** No related `AssetTransfer` matches the filter criteria. All fields are combined with a logical ‘and.’ */ none?: InputMaybe; /** Some related `AssetTransfer` matches the filter criteria. All fields are combined with a logical ‘and.’ */ some?: InputMaybe; }; /** A connection to a list of `TokenContract` values, with data from `AssetTransfer`. */ type GqlTransactionTokenContractsByAssetTransferTransactionIdAndTokenIdManyToManyConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `TokenContract`, info from the `AssetTransfer`, and the cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `TokenContract` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `TokenContract` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `TokenContract` values, with data from `AssetTransfer`. */ type GqlTransactionTokenContractsByAssetTransferTransactionIdAndTokenIdManyToManyConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `TokenContract` edge in the connection, with data from `AssetTransfer`. */ type GqlTransactionTokenContractsByAssetTransferTransactionIdAndTokenIdManyToManyEdge = { /** Reads and enables pagination through a set of `AssetTransfer`. */ assetTransfersByTokenId: GqlAssetTransfersConnection; /** A cursor for use in pagination. */ cursor: Maybe; /** The `TokenContract` at the end of the edge. */ node: Maybe; }; /** A `TokenContract` edge in the connection, with data from `AssetTransfer`. */ type GqlTransactionTokenContractsByAssetTransferTransactionIdAndTokenIdManyToManyEdgeassetTransfersByTokenIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlTransactionVariancePopulationAggregates = { /** Population variance of blockNumber across the matching connection */ blockNumber: Maybe; /** Population variance of fees across the matching connection */ fees: Maybe; /** Population variance of gasPrice across the matching connection */ gasPrice: Maybe; /** Population variance of gasUsed across the matching connection */ gasUsed: Maybe; }; type GqlTransactionVarianceSampleAggregates = { /** Sample variance of blockNumber across the matching connection */ blockNumber: Maybe; /** Sample variance of fees across the matching connection */ fees: Maybe; /** Sample variance of gasPrice across the matching connection */ gasPrice: Maybe; /** Sample variance of gasUsed across the matching connection */ gasUsed: Maybe; }; /** A connection to a list of `Wallet` values, with data from `AssetTransfer`. */ type GqlTransactionWalletsByAssetTransferTransactionIdAndFromIdManyToManyConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `Wallet`, info from the `AssetTransfer`, and the cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `Wallet` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `Wallet` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `Wallet` values, with data from `AssetTransfer`. */ type GqlTransactionWalletsByAssetTransferTransactionIdAndFromIdManyToManyConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `Wallet` edge in the connection, with data from `AssetTransfer`. */ type GqlTransactionWalletsByAssetTransferTransactionIdAndFromIdManyToManyEdge = { /** Reads and enables pagination through a set of `AssetTransfer`. */ assetTransfersByFromId: GqlAssetTransfersConnection; /** A cursor for use in pagination. */ cursor: Maybe; /** The `Wallet` at the end of the edge. */ node: Maybe; }; /** A `Wallet` edge in the connection, with data from `AssetTransfer`. */ type GqlTransactionWalletsByAssetTransferTransactionIdAndFromIdManyToManyEdgeassetTransfersByFromIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; /** A connection to a list of `Wallet` values, with data from `AssetTransfer`. */ type GqlTransactionWalletsByAssetTransferTransactionIdAndToIdManyToManyConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `Wallet`, info from the `AssetTransfer`, and the cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `Wallet` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `Wallet` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `Wallet` values, with data from `AssetTransfer`. */ type GqlTransactionWalletsByAssetTransferTransactionIdAndToIdManyToManyConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `Wallet` edge in the connection, with data from `AssetTransfer`. */ type GqlTransactionWalletsByAssetTransferTransactionIdAndToIdManyToManyEdge = { /** Reads and enables pagination through a set of `AssetTransfer`. */ assetTransfersByToId: GqlAssetTransfersConnection; /** A cursor for use in pagination. */ cursor: Maybe; /** The `Wallet` at the end of the edge. */ node: Maybe; }; /** A `Wallet` edge in the connection, with data from `AssetTransfer`. */ type GqlTransactionWalletsByAssetTransferTransactionIdAndToIdManyToManyEdgeassetTransfersByToIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; /** A connection to a list of `Transaction` values. */ type GqlTransactionsConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `Transaction` and cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `Transaction` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `Transaction` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `Transaction` values. */ type GqlTransactionsConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `Transaction` edge in the connection. */ type GqlTransactionsEdge = { /** A cursor for use in pagination. */ cursor: Maybe; /** The `Transaction` at the end of the edge. */ node: Maybe; }; /** Grouping methods for `Transaction` for usage during aggregation. */ declare enum GqlTransactionsGroupBy { BLOCK_HASH = "BLOCK_HASH", BLOCK_NUMBER = "BLOCK_NUMBER", DATE = "DATE", DATE_TRUNCATED_TO_DAY = "DATE_TRUNCATED_TO_DAY", DATE_TRUNCATED_TO_HOUR = "DATE_TRUNCATED_TO_HOUR", FEES = "FEES", GAS_PRICE = "GAS_PRICE", GAS_USED = "GAS_USED", ID = "ID", SUCCESS = "SUCCESS" } type GqlTransactionsHavingAverageInput = { blockNumber?: InputMaybe; date?: InputMaybe; fees?: InputMaybe; gasPrice?: InputMaybe; gasUsed?: InputMaybe; }; type GqlTransactionsHavingDistinctCountInput = { blockNumber?: InputMaybe; date?: InputMaybe; fees?: InputMaybe; gasPrice?: InputMaybe; gasUsed?: InputMaybe; }; /** Conditions for `Transaction` aggregates. */ type GqlTransactionsHavingInput = { AND?: InputMaybe>; OR?: InputMaybe>; average?: InputMaybe; distinctCount?: InputMaybe; max?: InputMaybe; min?: InputMaybe; stddevPopulation?: InputMaybe; stddevSample?: InputMaybe; sum?: InputMaybe; variancePopulation?: InputMaybe; varianceSample?: InputMaybe; }; type GqlTransactionsHavingMaxInput = { blockNumber?: InputMaybe; date?: InputMaybe; fees?: InputMaybe; gasPrice?: InputMaybe; gasUsed?: InputMaybe; }; type GqlTransactionsHavingMinInput = { blockNumber?: InputMaybe; date?: InputMaybe; fees?: InputMaybe; gasPrice?: InputMaybe; gasUsed?: InputMaybe; }; type GqlTransactionsHavingStddevPopulationInput = { blockNumber?: InputMaybe; date?: InputMaybe; fees?: InputMaybe; gasPrice?: InputMaybe; gasUsed?: InputMaybe; }; type GqlTransactionsHavingStddevSampleInput = { blockNumber?: InputMaybe; date?: InputMaybe; fees?: InputMaybe; gasPrice?: InputMaybe; gasUsed?: InputMaybe; }; type GqlTransactionsHavingSumInput = { blockNumber?: InputMaybe; date?: InputMaybe; fees?: InputMaybe; gasPrice?: InputMaybe; gasUsed?: InputMaybe; }; type GqlTransactionsHavingVariancePopulationInput = { blockNumber?: InputMaybe; date?: InputMaybe; fees?: InputMaybe; gasPrice?: InputMaybe; gasUsed?: InputMaybe; }; type GqlTransactionsHavingVarianceSampleInput = { blockNumber?: InputMaybe; date?: InputMaybe; fees?: InputMaybe; gasPrice?: InputMaybe; gasUsed?: InputMaybe; }; /** Methods to use when ordering `Transaction`. */ declare enum GqlTransactionsOrderBy { ASSET_TRANSFERS_AVERAGE_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_AVERAGE_BLOCK_RANGE_ASC", ASSET_TRANSFERS_AVERAGE_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_AVERAGE_BLOCK_RANGE_DESC", ASSET_TRANSFERS_AVERAGE_DECIMALS_ASC = "ASSET_TRANSFERS_AVERAGE_DECIMALS_ASC", ASSET_TRANSFERS_AVERAGE_DECIMALS_DESC = "ASSET_TRANSFERS_AVERAGE_DECIMALS_DESC", ASSET_TRANSFERS_AVERAGE_FROM_ID_ASC = "ASSET_TRANSFERS_AVERAGE_FROM_ID_ASC", ASSET_TRANSFERS_AVERAGE_FROM_ID_DESC = "ASSET_TRANSFERS_AVERAGE_FROM_ID_DESC", ASSET_TRANSFERS_AVERAGE_ID_ASC = "ASSET_TRANSFERS_AVERAGE_ID_ASC", ASSET_TRANSFERS_AVERAGE_ID_DESC = "ASSET_TRANSFERS_AVERAGE_ID_DESC", ASSET_TRANSFERS_AVERAGE_NFT_ID_ASC = "ASSET_TRANSFERS_AVERAGE_NFT_ID_ASC", ASSET_TRANSFERS_AVERAGE_NFT_ID_DESC = "ASSET_TRANSFERS_AVERAGE_NFT_ID_DESC", ASSET_TRANSFERS_AVERAGE_TOKEN_ID_ASC = "ASSET_TRANSFERS_AVERAGE_TOKEN_ID_ASC", ASSET_TRANSFERS_AVERAGE_TOKEN_ID_DESC = "ASSET_TRANSFERS_AVERAGE_TOKEN_ID_DESC", ASSET_TRANSFERS_AVERAGE_TO_ID_ASC = "ASSET_TRANSFERS_AVERAGE_TO_ID_ASC", ASSET_TRANSFERS_AVERAGE_TO_ID_DESC = "ASSET_TRANSFERS_AVERAGE_TO_ID_DESC", ASSET_TRANSFERS_AVERAGE_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_AVERAGE_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_AVERAGE_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_AVERAGE_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_AVERAGE_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_AVERAGE_TRANSACTION_ID_ASC", ASSET_TRANSFERS_AVERAGE_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_AVERAGE_TRANSACTION_ID_DESC", ASSET_TRANSFERS_AVERAGE_TYPE_ASC = "ASSET_TRANSFERS_AVERAGE_TYPE_ASC", ASSET_TRANSFERS_AVERAGE_TYPE_DESC = "ASSET_TRANSFERS_AVERAGE_TYPE_DESC", ASSET_TRANSFERS_AVERAGE_VALUE_ASC = "ASSET_TRANSFERS_AVERAGE_VALUE_ASC", ASSET_TRANSFERS_AVERAGE_VALUE_DESC = "ASSET_TRANSFERS_AVERAGE_VALUE_DESC", ASSET_TRANSFERS_BY_TRANSACTION_ID__COUNT_ASC = "ASSET_TRANSFERS_BY_TRANSACTION_ID__COUNT_ASC", ASSET_TRANSFERS_BY_TRANSACTION_ID__COUNT_DESC = "ASSET_TRANSFERS_BY_TRANSACTION_ID__COUNT_DESC", ASSET_TRANSFERS_COUNT_ASC = "ASSET_TRANSFERS_COUNT_ASC", ASSET_TRANSFERS_COUNT_DESC = "ASSET_TRANSFERS_COUNT_DESC", ASSET_TRANSFERS_DISTINCT_COUNT_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_DISTINCT_COUNT_BLOCK_RANGE_ASC", ASSET_TRANSFERS_DISTINCT_COUNT_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_DISTINCT_COUNT_BLOCK_RANGE_DESC", ASSET_TRANSFERS_DISTINCT_COUNT_DECIMALS_ASC = "ASSET_TRANSFERS_DISTINCT_COUNT_DECIMALS_ASC", ASSET_TRANSFERS_DISTINCT_COUNT_DECIMALS_DESC = "ASSET_TRANSFERS_DISTINCT_COUNT_DECIMALS_DESC", ASSET_TRANSFERS_DISTINCT_COUNT_FROM_ID_ASC = "ASSET_TRANSFERS_DISTINCT_COUNT_FROM_ID_ASC", ASSET_TRANSFERS_DISTINCT_COUNT_FROM_ID_DESC = "ASSET_TRANSFERS_DISTINCT_COUNT_FROM_ID_DESC", ASSET_TRANSFERS_DISTINCT_COUNT_ID_ASC = "ASSET_TRANSFERS_DISTINCT_COUNT_ID_ASC", ASSET_TRANSFERS_DISTINCT_COUNT_ID_DESC = "ASSET_TRANSFERS_DISTINCT_COUNT_ID_DESC", ASSET_TRANSFERS_DISTINCT_COUNT_NFT_ID_ASC = "ASSET_TRANSFERS_DISTINCT_COUNT_NFT_ID_ASC", ASSET_TRANSFERS_DISTINCT_COUNT_NFT_ID_DESC = "ASSET_TRANSFERS_DISTINCT_COUNT_NFT_ID_DESC", ASSET_TRANSFERS_DISTINCT_COUNT_TOKEN_ID_ASC = "ASSET_TRANSFERS_DISTINCT_COUNT_TOKEN_ID_ASC", ASSET_TRANSFERS_DISTINCT_COUNT_TOKEN_ID_DESC = "ASSET_TRANSFERS_DISTINCT_COUNT_TOKEN_ID_DESC", ASSET_TRANSFERS_DISTINCT_COUNT_TO_ID_ASC = "ASSET_TRANSFERS_DISTINCT_COUNT_TO_ID_ASC", ASSET_TRANSFERS_DISTINCT_COUNT_TO_ID_DESC = "ASSET_TRANSFERS_DISTINCT_COUNT_TO_ID_DESC", ASSET_TRANSFERS_DISTINCT_COUNT_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_DISTINCT_COUNT_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_DISTINCT_COUNT_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_DISTINCT_COUNT_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_DISTINCT_COUNT_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_DISTINCT_COUNT_TRANSACTION_ID_ASC", ASSET_TRANSFERS_DISTINCT_COUNT_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_DISTINCT_COUNT_TRANSACTION_ID_DESC", ASSET_TRANSFERS_DISTINCT_COUNT_TYPE_ASC = "ASSET_TRANSFERS_DISTINCT_COUNT_TYPE_ASC", ASSET_TRANSFERS_DISTINCT_COUNT_TYPE_DESC = "ASSET_TRANSFERS_DISTINCT_COUNT_TYPE_DESC", ASSET_TRANSFERS_DISTINCT_COUNT_VALUE_ASC = "ASSET_TRANSFERS_DISTINCT_COUNT_VALUE_ASC", ASSET_TRANSFERS_DISTINCT_COUNT_VALUE_DESC = "ASSET_TRANSFERS_DISTINCT_COUNT_VALUE_DESC", ASSET_TRANSFERS_MAX_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_MAX_BLOCK_RANGE_ASC", ASSET_TRANSFERS_MAX_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_MAX_BLOCK_RANGE_DESC", ASSET_TRANSFERS_MAX_DECIMALS_ASC = "ASSET_TRANSFERS_MAX_DECIMALS_ASC", ASSET_TRANSFERS_MAX_DECIMALS_DESC = "ASSET_TRANSFERS_MAX_DECIMALS_DESC", ASSET_TRANSFERS_MAX_FROM_ID_ASC = "ASSET_TRANSFERS_MAX_FROM_ID_ASC", ASSET_TRANSFERS_MAX_FROM_ID_DESC = "ASSET_TRANSFERS_MAX_FROM_ID_DESC", ASSET_TRANSFERS_MAX_ID_ASC = "ASSET_TRANSFERS_MAX_ID_ASC", ASSET_TRANSFERS_MAX_ID_DESC = "ASSET_TRANSFERS_MAX_ID_DESC", ASSET_TRANSFERS_MAX_NFT_ID_ASC = "ASSET_TRANSFERS_MAX_NFT_ID_ASC", ASSET_TRANSFERS_MAX_NFT_ID_DESC = "ASSET_TRANSFERS_MAX_NFT_ID_DESC", ASSET_TRANSFERS_MAX_TOKEN_ID_ASC = "ASSET_TRANSFERS_MAX_TOKEN_ID_ASC", ASSET_TRANSFERS_MAX_TOKEN_ID_DESC = "ASSET_TRANSFERS_MAX_TOKEN_ID_DESC", ASSET_TRANSFERS_MAX_TO_ID_ASC = "ASSET_TRANSFERS_MAX_TO_ID_ASC", ASSET_TRANSFERS_MAX_TO_ID_DESC = "ASSET_TRANSFERS_MAX_TO_ID_DESC", ASSET_TRANSFERS_MAX_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_MAX_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_MAX_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_MAX_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_MAX_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_MAX_TRANSACTION_ID_ASC", ASSET_TRANSFERS_MAX_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_MAX_TRANSACTION_ID_DESC", ASSET_TRANSFERS_MAX_TYPE_ASC = "ASSET_TRANSFERS_MAX_TYPE_ASC", ASSET_TRANSFERS_MAX_TYPE_DESC = "ASSET_TRANSFERS_MAX_TYPE_DESC", ASSET_TRANSFERS_MAX_VALUE_ASC = "ASSET_TRANSFERS_MAX_VALUE_ASC", ASSET_TRANSFERS_MAX_VALUE_DESC = "ASSET_TRANSFERS_MAX_VALUE_DESC", ASSET_TRANSFERS_MIN_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_MIN_BLOCK_RANGE_ASC", ASSET_TRANSFERS_MIN_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_MIN_BLOCK_RANGE_DESC", ASSET_TRANSFERS_MIN_DECIMALS_ASC = "ASSET_TRANSFERS_MIN_DECIMALS_ASC", ASSET_TRANSFERS_MIN_DECIMALS_DESC = "ASSET_TRANSFERS_MIN_DECIMALS_DESC", ASSET_TRANSFERS_MIN_FROM_ID_ASC = "ASSET_TRANSFERS_MIN_FROM_ID_ASC", ASSET_TRANSFERS_MIN_FROM_ID_DESC = "ASSET_TRANSFERS_MIN_FROM_ID_DESC", ASSET_TRANSFERS_MIN_ID_ASC = "ASSET_TRANSFERS_MIN_ID_ASC", ASSET_TRANSFERS_MIN_ID_DESC = "ASSET_TRANSFERS_MIN_ID_DESC", ASSET_TRANSFERS_MIN_NFT_ID_ASC = "ASSET_TRANSFERS_MIN_NFT_ID_ASC", ASSET_TRANSFERS_MIN_NFT_ID_DESC = "ASSET_TRANSFERS_MIN_NFT_ID_DESC", ASSET_TRANSFERS_MIN_TOKEN_ID_ASC = "ASSET_TRANSFERS_MIN_TOKEN_ID_ASC", ASSET_TRANSFERS_MIN_TOKEN_ID_DESC = "ASSET_TRANSFERS_MIN_TOKEN_ID_DESC", ASSET_TRANSFERS_MIN_TO_ID_ASC = "ASSET_TRANSFERS_MIN_TO_ID_ASC", ASSET_TRANSFERS_MIN_TO_ID_DESC = "ASSET_TRANSFERS_MIN_TO_ID_DESC", ASSET_TRANSFERS_MIN_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_MIN_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_MIN_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_MIN_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_MIN_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_MIN_TRANSACTION_ID_ASC", ASSET_TRANSFERS_MIN_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_MIN_TRANSACTION_ID_DESC", ASSET_TRANSFERS_MIN_TYPE_ASC = "ASSET_TRANSFERS_MIN_TYPE_ASC", ASSET_TRANSFERS_MIN_TYPE_DESC = "ASSET_TRANSFERS_MIN_TYPE_DESC", ASSET_TRANSFERS_MIN_VALUE_ASC = "ASSET_TRANSFERS_MIN_VALUE_ASC", ASSET_TRANSFERS_MIN_VALUE_DESC = "ASSET_TRANSFERS_MIN_VALUE_DESC", ASSET_TRANSFERS_STDDEV_POPULATION_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_STDDEV_POPULATION_BLOCK_RANGE_ASC", ASSET_TRANSFERS_STDDEV_POPULATION_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_STDDEV_POPULATION_BLOCK_RANGE_DESC", ASSET_TRANSFERS_STDDEV_POPULATION_DECIMALS_ASC = "ASSET_TRANSFERS_STDDEV_POPULATION_DECIMALS_ASC", ASSET_TRANSFERS_STDDEV_POPULATION_DECIMALS_DESC = "ASSET_TRANSFERS_STDDEV_POPULATION_DECIMALS_DESC", ASSET_TRANSFERS_STDDEV_POPULATION_FROM_ID_ASC = "ASSET_TRANSFERS_STDDEV_POPULATION_FROM_ID_ASC", ASSET_TRANSFERS_STDDEV_POPULATION_FROM_ID_DESC = "ASSET_TRANSFERS_STDDEV_POPULATION_FROM_ID_DESC", ASSET_TRANSFERS_STDDEV_POPULATION_ID_ASC = "ASSET_TRANSFERS_STDDEV_POPULATION_ID_ASC", ASSET_TRANSFERS_STDDEV_POPULATION_ID_DESC = "ASSET_TRANSFERS_STDDEV_POPULATION_ID_DESC", ASSET_TRANSFERS_STDDEV_POPULATION_NFT_ID_ASC = "ASSET_TRANSFERS_STDDEV_POPULATION_NFT_ID_ASC", ASSET_TRANSFERS_STDDEV_POPULATION_NFT_ID_DESC = "ASSET_TRANSFERS_STDDEV_POPULATION_NFT_ID_DESC", ASSET_TRANSFERS_STDDEV_POPULATION_TOKEN_ID_ASC = "ASSET_TRANSFERS_STDDEV_POPULATION_TOKEN_ID_ASC", ASSET_TRANSFERS_STDDEV_POPULATION_TOKEN_ID_DESC = "ASSET_TRANSFERS_STDDEV_POPULATION_TOKEN_ID_DESC", ASSET_TRANSFERS_STDDEV_POPULATION_TO_ID_ASC = "ASSET_TRANSFERS_STDDEV_POPULATION_TO_ID_ASC", ASSET_TRANSFERS_STDDEV_POPULATION_TO_ID_DESC = "ASSET_TRANSFERS_STDDEV_POPULATION_TO_ID_DESC", ASSET_TRANSFERS_STDDEV_POPULATION_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_STDDEV_POPULATION_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_STDDEV_POPULATION_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_STDDEV_POPULATION_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_STDDEV_POPULATION_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_STDDEV_POPULATION_TRANSACTION_ID_ASC", ASSET_TRANSFERS_STDDEV_POPULATION_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_STDDEV_POPULATION_TRANSACTION_ID_DESC", ASSET_TRANSFERS_STDDEV_POPULATION_TYPE_ASC = "ASSET_TRANSFERS_STDDEV_POPULATION_TYPE_ASC", ASSET_TRANSFERS_STDDEV_POPULATION_TYPE_DESC = "ASSET_TRANSFERS_STDDEV_POPULATION_TYPE_DESC", ASSET_TRANSFERS_STDDEV_POPULATION_VALUE_ASC = "ASSET_TRANSFERS_STDDEV_POPULATION_VALUE_ASC", ASSET_TRANSFERS_STDDEV_POPULATION_VALUE_DESC = "ASSET_TRANSFERS_STDDEV_POPULATION_VALUE_DESC", ASSET_TRANSFERS_STDDEV_SAMPLE_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_STDDEV_SAMPLE_BLOCK_RANGE_ASC", ASSET_TRANSFERS_STDDEV_SAMPLE_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_STDDEV_SAMPLE_BLOCK_RANGE_DESC", ASSET_TRANSFERS_STDDEV_SAMPLE_DECIMALS_ASC = "ASSET_TRANSFERS_STDDEV_SAMPLE_DECIMALS_ASC", ASSET_TRANSFERS_STDDEV_SAMPLE_DECIMALS_DESC = "ASSET_TRANSFERS_STDDEV_SAMPLE_DECIMALS_DESC", ASSET_TRANSFERS_STDDEV_SAMPLE_FROM_ID_ASC = "ASSET_TRANSFERS_STDDEV_SAMPLE_FROM_ID_ASC", ASSET_TRANSFERS_STDDEV_SAMPLE_FROM_ID_DESC = "ASSET_TRANSFERS_STDDEV_SAMPLE_FROM_ID_DESC", ASSET_TRANSFERS_STDDEV_SAMPLE_ID_ASC = "ASSET_TRANSFERS_STDDEV_SAMPLE_ID_ASC", ASSET_TRANSFERS_STDDEV_SAMPLE_ID_DESC = "ASSET_TRANSFERS_STDDEV_SAMPLE_ID_DESC", ASSET_TRANSFERS_STDDEV_SAMPLE_NFT_ID_ASC = "ASSET_TRANSFERS_STDDEV_SAMPLE_NFT_ID_ASC", ASSET_TRANSFERS_STDDEV_SAMPLE_NFT_ID_DESC = "ASSET_TRANSFERS_STDDEV_SAMPLE_NFT_ID_DESC", ASSET_TRANSFERS_STDDEV_SAMPLE_TOKEN_ID_ASC = "ASSET_TRANSFERS_STDDEV_SAMPLE_TOKEN_ID_ASC", ASSET_TRANSFERS_STDDEV_SAMPLE_TOKEN_ID_DESC = "ASSET_TRANSFERS_STDDEV_SAMPLE_TOKEN_ID_DESC", ASSET_TRANSFERS_STDDEV_SAMPLE_TO_ID_ASC = "ASSET_TRANSFERS_STDDEV_SAMPLE_TO_ID_ASC", ASSET_TRANSFERS_STDDEV_SAMPLE_TO_ID_DESC = "ASSET_TRANSFERS_STDDEV_SAMPLE_TO_ID_DESC", ASSET_TRANSFERS_STDDEV_SAMPLE_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_STDDEV_SAMPLE_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_STDDEV_SAMPLE_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_STDDEV_SAMPLE_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_STDDEV_SAMPLE_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_STDDEV_SAMPLE_TRANSACTION_ID_ASC", ASSET_TRANSFERS_STDDEV_SAMPLE_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_STDDEV_SAMPLE_TRANSACTION_ID_DESC", ASSET_TRANSFERS_STDDEV_SAMPLE_TYPE_ASC = "ASSET_TRANSFERS_STDDEV_SAMPLE_TYPE_ASC", ASSET_TRANSFERS_STDDEV_SAMPLE_TYPE_DESC = "ASSET_TRANSFERS_STDDEV_SAMPLE_TYPE_DESC", ASSET_TRANSFERS_STDDEV_SAMPLE_VALUE_ASC = "ASSET_TRANSFERS_STDDEV_SAMPLE_VALUE_ASC", ASSET_TRANSFERS_STDDEV_SAMPLE_VALUE_DESC = "ASSET_TRANSFERS_STDDEV_SAMPLE_VALUE_DESC", ASSET_TRANSFERS_SUM_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_SUM_BLOCK_RANGE_ASC", ASSET_TRANSFERS_SUM_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_SUM_BLOCK_RANGE_DESC", ASSET_TRANSFERS_SUM_DECIMALS_ASC = "ASSET_TRANSFERS_SUM_DECIMALS_ASC", ASSET_TRANSFERS_SUM_DECIMALS_DESC = "ASSET_TRANSFERS_SUM_DECIMALS_DESC", ASSET_TRANSFERS_SUM_FROM_ID_ASC = "ASSET_TRANSFERS_SUM_FROM_ID_ASC", ASSET_TRANSFERS_SUM_FROM_ID_DESC = "ASSET_TRANSFERS_SUM_FROM_ID_DESC", ASSET_TRANSFERS_SUM_ID_ASC = "ASSET_TRANSFERS_SUM_ID_ASC", ASSET_TRANSFERS_SUM_ID_DESC = "ASSET_TRANSFERS_SUM_ID_DESC", ASSET_TRANSFERS_SUM_NFT_ID_ASC = "ASSET_TRANSFERS_SUM_NFT_ID_ASC", ASSET_TRANSFERS_SUM_NFT_ID_DESC = "ASSET_TRANSFERS_SUM_NFT_ID_DESC", ASSET_TRANSFERS_SUM_TOKEN_ID_ASC = "ASSET_TRANSFERS_SUM_TOKEN_ID_ASC", ASSET_TRANSFERS_SUM_TOKEN_ID_DESC = "ASSET_TRANSFERS_SUM_TOKEN_ID_DESC", ASSET_TRANSFERS_SUM_TO_ID_ASC = "ASSET_TRANSFERS_SUM_TO_ID_ASC", ASSET_TRANSFERS_SUM_TO_ID_DESC = "ASSET_TRANSFERS_SUM_TO_ID_DESC", ASSET_TRANSFERS_SUM_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_SUM_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_SUM_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_SUM_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_SUM_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_SUM_TRANSACTION_ID_ASC", ASSET_TRANSFERS_SUM_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_SUM_TRANSACTION_ID_DESC", ASSET_TRANSFERS_SUM_TYPE_ASC = "ASSET_TRANSFERS_SUM_TYPE_ASC", ASSET_TRANSFERS_SUM_TYPE_DESC = "ASSET_TRANSFERS_SUM_TYPE_DESC", ASSET_TRANSFERS_SUM_VALUE_ASC = "ASSET_TRANSFERS_SUM_VALUE_ASC", ASSET_TRANSFERS_SUM_VALUE_DESC = "ASSET_TRANSFERS_SUM_VALUE_DESC", ASSET_TRANSFERS_VARIANCE_POPULATION_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_VARIANCE_POPULATION_BLOCK_RANGE_ASC", ASSET_TRANSFERS_VARIANCE_POPULATION_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_VARIANCE_POPULATION_BLOCK_RANGE_DESC", ASSET_TRANSFERS_VARIANCE_POPULATION_DECIMALS_ASC = "ASSET_TRANSFERS_VARIANCE_POPULATION_DECIMALS_ASC", ASSET_TRANSFERS_VARIANCE_POPULATION_DECIMALS_DESC = "ASSET_TRANSFERS_VARIANCE_POPULATION_DECIMALS_DESC", ASSET_TRANSFERS_VARIANCE_POPULATION_FROM_ID_ASC = "ASSET_TRANSFERS_VARIANCE_POPULATION_FROM_ID_ASC", ASSET_TRANSFERS_VARIANCE_POPULATION_FROM_ID_DESC = "ASSET_TRANSFERS_VARIANCE_POPULATION_FROM_ID_DESC", ASSET_TRANSFERS_VARIANCE_POPULATION_ID_ASC = "ASSET_TRANSFERS_VARIANCE_POPULATION_ID_ASC", ASSET_TRANSFERS_VARIANCE_POPULATION_ID_DESC = "ASSET_TRANSFERS_VARIANCE_POPULATION_ID_DESC", ASSET_TRANSFERS_VARIANCE_POPULATION_NFT_ID_ASC = "ASSET_TRANSFERS_VARIANCE_POPULATION_NFT_ID_ASC", ASSET_TRANSFERS_VARIANCE_POPULATION_NFT_ID_DESC = "ASSET_TRANSFERS_VARIANCE_POPULATION_NFT_ID_DESC", ASSET_TRANSFERS_VARIANCE_POPULATION_TOKEN_ID_ASC = "ASSET_TRANSFERS_VARIANCE_POPULATION_TOKEN_ID_ASC", ASSET_TRANSFERS_VARIANCE_POPULATION_TOKEN_ID_DESC = "ASSET_TRANSFERS_VARIANCE_POPULATION_TOKEN_ID_DESC", ASSET_TRANSFERS_VARIANCE_POPULATION_TO_ID_ASC = "ASSET_TRANSFERS_VARIANCE_POPULATION_TO_ID_ASC", ASSET_TRANSFERS_VARIANCE_POPULATION_TO_ID_DESC = "ASSET_TRANSFERS_VARIANCE_POPULATION_TO_ID_DESC", ASSET_TRANSFERS_VARIANCE_POPULATION_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_VARIANCE_POPULATION_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_VARIANCE_POPULATION_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_VARIANCE_POPULATION_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_VARIANCE_POPULATION_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_VARIANCE_POPULATION_TRANSACTION_ID_ASC", ASSET_TRANSFERS_VARIANCE_POPULATION_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_VARIANCE_POPULATION_TRANSACTION_ID_DESC", ASSET_TRANSFERS_VARIANCE_POPULATION_TYPE_ASC = "ASSET_TRANSFERS_VARIANCE_POPULATION_TYPE_ASC", ASSET_TRANSFERS_VARIANCE_POPULATION_TYPE_DESC = "ASSET_TRANSFERS_VARIANCE_POPULATION_TYPE_DESC", ASSET_TRANSFERS_VARIANCE_POPULATION_VALUE_ASC = "ASSET_TRANSFERS_VARIANCE_POPULATION_VALUE_ASC", ASSET_TRANSFERS_VARIANCE_POPULATION_VALUE_DESC = "ASSET_TRANSFERS_VARIANCE_POPULATION_VALUE_DESC", ASSET_TRANSFERS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC", ASSET_TRANSFERS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC", ASSET_TRANSFERS_VARIANCE_SAMPLE_DECIMALS_ASC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_DECIMALS_ASC", ASSET_TRANSFERS_VARIANCE_SAMPLE_DECIMALS_DESC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_DECIMALS_DESC", ASSET_TRANSFERS_VARIANCE_SAMPLE_FROM_ID_ASC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_FROM_ID_ASC", ASSET_TRANSFERS_VARIANCE_SAMPLE_FROM_ID_DESC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_FROM_ID_DESC", ASSET_TRANSFERS_VARIANCE_SAMPLE_ID_ASC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_ID_ASC", ASSET_TRANSFERS_VARIANCE_SAMPLE_ID_DESC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_ID_DESC", ASSET_TRANSFERS_VARIANCE_SAMPLE_NFT_ID_ASC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_NFT_ID_ASC", ASSET_TRANSFERS_VARIANCE_SAMPLE_NFT_ID_DESC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_NFT_ID_DESC", ASSET_TRANSFERS_VARIANCE_SAMPLE_TOKEN_ID_ASC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_TOKEN_ID_ASC", ASSET_TRANSFERS_VARIANCE_SAMPLE_TOKEN_ID_DESC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_TOKEN_ID_DESC", ASSET_TRANSFERS_VARIANCE_SAMPLE_TO_ID_ASC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_TO_ID_ASC", ASSET_TRANSFERS_VARIANCE_SAMPLE_TO_ID_DESC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_TO_ID_DESC", ASSET_TRANSFERS_VARIANCE_SAMPLE_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_VARIANCE_SAMPLE_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_VARIANCE_SAMPLE_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_TRANSACTION_ID_ASC", ASSET_TRANSFERS_VARIANCE_SAMPLE_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_TRANSACTION_ID_DESC", ASSET_TRANSFERS_VARIANCE_SAMPLE_TYPE_ASC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_TYPE_ASC", ASSET_TRANSFERS_VARIANCE_SAMPLE_TYPE_DESC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_TYPE_DESC", ASSET_TRANSFERS_VARIANCE_SAMPLE_VALUE_ASC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_VALUE_ASC", ASSET_TRANSFERS_VARIANCE_SAMPLE_VALUE_DESC = "ASSET_TRANSFERS_VARIANCE_SAMPLE_VALUE_DESC", BLOCK_HASH_ASC = "BLOCK_HASH_ASC", BLOCK_HASH_DESC = "BLOCK_HASH_DESC", BLOCK_NUMBER_ASC = "BLOCK_NUMBER_ASC", BLOCK_NUMBER_DESC = "BLOCK_NUMBER_DESC", DATE_ASC = "DATE_ASC", DATE_DESC = "DATE_DESC", FEES_ASC = "FEES_ASC", FEES_DESC = "FEES_DESC", GAS_PRICE_ASC = "GAS_PRICE_ASC", GAS_PRICE_DESC = "GAS_PRICE_DESC", GAS_USED_ASC = "GAS_USED_ASC", GAS_USED_DESC = "GAS_USED_DESC", ID_ASC = "ID_ASC", ID_DESC = "ID_DESC", NATURAL = "NATURAL", PRIMARY_KEY_ASC = "PRIMARY_KEY_ASC", PRIMARY_KEY_DESC = "PRIMARY_KEY_DESC", SUCCESS_ASC = "SUCCESS_ASC", SUCCESS_DESC = "SUCCESS_DESC" } type GqlWallet = GqlNode & { /** Reads and enables pagination through a set of `AssetTransfer`. */ assetTransfersByFromId: GqlAssetTransfersConnection; /** Reads and enables pagination through a set of `AssetTransfer`. */ assetTransfersByToId: GqlAssetTransfersConnection; balance: Scalars['BigFloat']['output']; /** Keyban Wallet ID */ id: Scalars['String']['output']; /** Reads and enables pagination through a set of `NftBalance`. */ nfts: GqlNftBalancesConnection; /** Reads and enables pagination through a set of `Nft`. */ nftsByAssetTransferFromIdAndNftId: GqlWalletNftsByAssetTransferFromIdAndNftIdManyToManyConnection; /** Reads and enables pagination through a set of `Nft`. */ nftsByAssetTransferToIdAndNftId: GqlWalletNftsByAssetTransferToIdAndNftIdManyToManyConnection; /** Reads and enables pagination through a set of `Nft`. */ nftsByNftBalanceWalletIdAndNftId: GqlWalletNftsByNftBalanceWalletIdAndNftIdManyToManyConnection; /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ nodeId: Scalars['ID']['output']; /** Reads and enables pagination through a set of `TokenContract`. */ tokenContractsByAssetTransferFromIdAndTokenId: GqlWalletTokenContractsByAssetTransferFromIdAndTokenIdManyToManyConnection; /** Reads and enables pagination through a set of `TokenContract`. */ tokenContractsByAssetTransferToIdAndTokenId: GqlWalletTokenContractsByAssetTransferToIdAndTokenIdManyToManyConnection; /** Reads and enables pagination through a set of `TokenContract`. */ tokenContractsByTokenBalanceWalletIdAndTokenId: GqlWalletTokenContractsByTokenBalanceWalletIdAndTokenIdManyToManyConnection; /** Reads and enables pagination through a set of `TokenBalance`. */ tokens: GqlTokenBalancesConnection; /** Reads and enables pagination through a set of `Transaction`. */ transactionsByAssetTransferFromIdAndTransactionId: GqlWalletTransactionsByAssetTransferFromIdAndTransactionIdManyToManyConnection; /** Reads and enables pagination through a set of `Transaction`. */ transactionsByAssetTransferToIdAndTransactionId: GqlWalletTransactionsByAssetTransferToIdAndTransactionIdManyToManyConnection; /** Reads and enables pagination through a set of `Wallet`. */ walletsByAssetTransferFromIdAndToId: GqlWalletWalletsByAssetTransferFromIdAndToIdManyToManyConnection; /** Reads and enables pagination through a set of `Wallet`. */ walletsByAssetTransferToIdAndFromId: GqlWalletWalletsByAssetTransferToIdAndFromIdManyToManyConnection; }; type GqlWalletassetTransfersByFromIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlWalletassetTransfersByToIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlWalletnftsArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlWalletnftsByAssetTransferFromIdAndNftIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlWalletnftsByAssetTransferToIdAndNftIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlWalletnftsByNftBalanceWalletIdAndNftIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlWallettokenContractsByAssetTransferFromIdAndTokenIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlWallettokenContractsByAssetTransferToIdAndTokenIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlWallettokenContractsByTokenBalanceWalletIdAndTokenIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlWallettokensArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlWallettransactionsByAssetTransferFromIdAndTransactionIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlWallettransactionsByAssetTransferToIdAndTransactionIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlWalletwalletsByAssetTransferFromIdAndToIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlWalletwalletsByAssetTransferToIdAndFromIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlWalletAggregates = { /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ average: Maybe; /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ distinctCount: Maybe; keys: Maybe>; /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ max: Maybe; /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ min: Maybe; /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ stddevPopulation: Maybe; /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ stddevSample: Maybe; /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ sum: Maybe; /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ variancePopulation: Maybe; /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ varianceSample: Maybe; }; type GqlWalletAverageAggregates = { /** Mean average of balance across the matching connection */ balance: Maybe; }; type GqlWalletDistinctCountAggregates = { /** Distinct count of _blockRange across the matching connection */ _blockRange: Maybe; /** Distinct count of _id across the matching connection */ _id: Maybe; /** Distinct count of balance across the matching connection */ balance: Maybe; /** Distinct count of id across the matching connection */ id: Maybe; }; /** A filter to be used against `Wallet` object types. All fields are combined with a logical ‘and.’ */ type GqlWalletFilter = { /** Checks for all expressions in this list. */ and?: InputMaybe>; /** Filter by the object’s `assetTransfersByFromId` relation. */ assetTransfersByFromId?: InputMaybe; /** Some related `assetTransfersByFromId` exist. */ assetTransfersByFromIdExist?: InputMaybe; /** Filter by the object’s `assetTransfersByToId` relation. */ assetTransfersByToId?: InputMaybe; /** Some related `assetTransfersByToId` exist. */ assetTransfersByToIdExist?: InputMaybe; /** Filter by the object’s `balance` field. */ balance?: InputMaybe; /** Filter by the object’s `id` field. */ id?: InputMaybe; /** Filter by the object’s `nfts` relation. */ nfts?: InputMaybe; /** Some related `nfts` exist. */ nftsExist?: InputMaybe; /** Negates the expression. */ not?: InputMaybe; /** Checks for any expressions in this list. */ or?: InputMaybe>; /** Filter by the object’s `tokens` relation. */ tokens?: InputMaybe; /** Some related `tokens` exist. */ tokensExist?: InputMaybe; }; type GqlWalletMaxAggregates = { /** Maximum of balance across the matching connection */ balance: Maybe; }; type GqlWalletMinAggregates = { /** Minimum of balance across the matching connection */ balance: Maybe; }; /** A connection to a list of `Nft` values, with data from `AssetTransfer`. */ type GqlWalletNftsByAssetTransferFromIdAndNftIdManyToManyConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `Nft`, info from the `AssetTransfer`, and the cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `Nft` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `Nft` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `Nft` values, with data from `AssetTransfer`. */ type GqlWalletNftsByAssetTransferFromIdAndNftIdManyToManyConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `Nft` edge in the connection, with data from `AssetTransfer`. */ type GqlWalletNftsByAssetTransferFromIdAndNftIdManyToManyEdge = { /** Reads and enables pagination through a set of `AssetTransfer`. */ assetTransfers: GqlAssetTransfersConnection; /** A cursor for use in pagination. */ cursor: Maybe; /** The `Nft` at the end of the edge. */ node: Maybe; }; /** A `Nft` edge in the connection, with data from `AssetTransfer`. */ type GqlWalletNftsByAssetTransferFromIdAndNftIdManyToManyEdgeassetTransfersArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; /** A connection to a list of `Nft` values, with data from `AssetTransfer`. */ type GqlWalletNftsByAssetTransferToIdAndNftIdManyToManyConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `Nft`, info from the `AssetTransfer`, and the cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `Nft` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `Nft` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `Nft` values, with data from `AssetTransfer`. */ type GqlWalletNftsByAssetTransferToIdAndNftIdManyToManyConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `Nft` edge in the connection, with data from `AssetTransfer`. */ type GqlWalletNftsByAssetTransferToIdAndNftIdManyToManyEdge = { /** Reads and enables pagination through a set of `AssetTransfer`. */ assetTransfers: GqlAssetTransfersConnection; /** A cursor for use in pagination. */ cursor: Maybe; /** The `Nft` at the end of the edge. */ node: Maybe; }; /** A `Nft` edge in the connection, with data from `AssetTransfer`. */ type GqlWalletNftsByAssetTransferToIdAndNftIdManyToManyEdgeassetTransfersArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; /** A connection to a list of `Nft` values, with data from `NftBalance`. */ type GqlWalletNftsByNftBalanceWalletIdAndNftIdManyToManyConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `Nft`, info from the `NftBalance`, and the cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `Nft` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `Nft` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `Nft` values, with data from `NftBalance`. */ type GqlWalletNftsByNftBalanceWalletIdAndNftIdManyToManyConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `Nft` edge in the connection, with data from `NftBalance`. */ type GqlWalletNftsByNftBalanceWalletIdAndNftIdManyToManyEdge = { /** A cursor for use in pagination. */ cursor: Maybe; /** Reads and enables pagination through a set of `NftBalance`. */ nftBalances: GqlNftBalancesConnection; /** The `Nft` at the end of the edge. */ node: Maybe; }; /** A `Nft` edge in the connection, with data from `NftBalance`. */ type GqlWalletNftsByNftBalanceWalletIdAndNftIdManyToManyEdgenftBalancesArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlWalletPayload = { _entity: Maybe; id: Scalars['ID']['output']; mutation_type: GqlMutationType; }; type GqlWalletPayload_entityArgs = { distinct?: InputMaybe>>; }; type GqlWalletStddevPopulationAggregates = { /** Population standard deviation of balance across the matching connection */ balance: Maybe; }; type GqlWalletStddevSampleAggregates = { /** Sample standard deviation of balance across the matching connection */ balance: Maybe; }; type GqlWalletSumAggregates = { /** Sum of balance across the matching connection */ balance: Scalars['BigFloat']['output']; }; /** A filter to be used against many `AssetTransfer` object types. All fields are combined with a logical ‘and.’ */ type GqlWalletToManyAssetTransferFilter = { /** Aggregates across related `AssetTransfer` match the filter criteria. */ aggregates?: InputMaybe; /** Every related `AssetTransfer` matches the filter criteria. All fields are combined with a logical ‘and.’ */ every?: InputMaybe; /** No related `AssetTransfer` matches the filter criteria. All fields are combined with a logical ‘and.’ */ none?: InputMaybe; /** Some related `AssetTransfer` matches the filter criteria. All fields are combined with a logical ‘and.’ */ some?: InputMaybe; }; /** A filter to be used against many `NftBalance` object types. All fields are combined with a logical ‘and.’ */ type GqlWalletToManyNftBalanceFilter = { /** Aggregates across related `NftBalance` match the filter criteria. */ aggregates?: InputMaybe; /** Every related `NftBalance` matches the filter criteria. All fields are combined with a logical ‘and.’ */ every?: InputMaybe; /** No related `NftBalance` matches the filter criteria. All fields are combined with a logical ‘and.’ */ none?: InputMaybe; /** Some related `NftBalance` matches the filter criteria. All fields are combined with a logical ‘and.’ */ some?: InputMaybe; }; /** A filter to be used against many `TokenBalance` object types. All fields are combined with a logical ‘and.’ */ type GqlWalletToManyTokenBalanceFilter = { /** Aggregates across related `TokenBalance` match the filter criteria. */ aggregates?: InputMaybe; /** Every related `TokenBalance` matches the filter criteria. All fields are combined with a logical ‘and.’ */ every?: InputMaybe; /** No related `TokenBalance` matches the filter criteria. All fields are combined with a logical ‘and.’ */ none?: InputMaybe; /** Some related `TokenBalance` matches the filter criteria. All fields are combined with a logical ‘and.’ */ some?: InputMaybe; }; /** A connection to a list of `TokenContract` values, with data from `AssetTransfer`. */ type GqlWalletTokenContractsByAssetTransferFromIdAndTokenIdManyToManyConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `TokenContract`, info from the `AssetTransfer`, and the cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `TokenContract` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `TokenContract` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `TokenContract` values, with data from `AssetTransfer`. */ type GqlWalletTokenContractsByAssetTransferFromIdAndTokenIdManyToManyConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `TokenContract` edge in the connection, with data from `AssetTransfer`. */ type GqlWalletTokenContractsByAssetTransferFromIdAndTokenIdManyToManyEdge = { /** Reads and enables pagination through a set of `AssetTransfer`. */ assetTransfersByTokenId: GqlAssetTransfersConnection; /** A cursor for use in pagination. */ cursor: Maybe; /** The `TokenContract` at the end of the edge. */ node: Maybe; }; /** A `TokenContract` edge in the connection, with data from `AssetTransfer`. */ type GqlWalletTokenContractsByAssetTransferFromIdAndTokenIdManyToManyEdgeassetTransfersByTokenIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; /** A connection to a list of `TokenContract` values, with data from `AssetTransfer`. */ type GqlWalletTokenContractsByAssetTransferToIdAndTokenIdManyToManyConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `TokenContract`, info from the `AssetTransfer`, and the cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `TokenContract` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `TokenContract` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `TokenContract` values, with data from `AssetTransfer`. */ type GqlWalletTokenContractsByAssetTransferToIdAndTokenIdManyToManyConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `TokenContract` edge in the connection, with data from `AssetTransfer`. */ type GqlWalletTokenContractsByAssetTransferToIdAndTokenIdManyToManyEdge = { /** Reads and enables pagination through a set of `AssetTransfer`. */ assetTransfersByTokenId: GqlAssetTransfersConnection; /** A cursor for use in pagination. */ cursor: Maybe; /** The `TokenContract` at the end of the edge. */ node: Maybe; }; /** A `TokenContract` edge in the connection, with data from `AssetTransfer`. */ type GqlWalletTokenContractsByAssetTransferToIdAndTokenIdManyToManyEdgeassetTransfersByTokenIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; /** A connection to a list of `TokenContract` values, with data from `TokenBalance`. */ type GqlWalletTokenContractsByTokenBalanceWalletIdAndTokenIdManyToManyConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `TokenContract`, info from the `TokenBalance`, and the cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `TokenContract` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `TokenContract` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `TokenContract` values, with data from `TokenBalance`. */ type GqlWalletTokenContractsByTokenBalanceWalletIdAndTokenIdManyToManyConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `TokenContract` edge in the connection, with data from `TokenBalance`. */ type GqlWalletTokenContractsByTokenBalanceWalletIdAndTokenIdManyToManyEdge = { /** A cursor for use in pagination. */ cursor: Maybe; /** The `TokenContract` at the end of the edge. */ node: Maybe; /** Reads and enables pagination through a set of `TokenBalance`. */ tokenBalancesByTokenId: GqlTokenBalancesConnection; }; /** A `TokenContract` edge in the connection, with data from `TokenBalance`. */ type GqlWalletTokenContractsByTokenBalanceWalletIdAndTokenIdManyToManyEdgetokenBalancesByTokenIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; /** A connection to a list of `Transaction` values, with data from `AssetTransfer`. */ type GqlWalletTransactionsByAssetTransferFromIdAndTransactionIdManyToManyConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `Transaction`, info from the `AssetTransfer`, and the cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `Transaction` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `Transaction` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `Transaction` values, with data from `AssetTransfer`. */ type GqlWalletTransactionsByAssetTransferFromIdAndTransactionIdManyToManyConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `Transaction` edge in the connection, with data from `AssetTransfer`. */ type GqlWalletTransactionsByAssetTransferFromIdAndTransactionIdManyToManyEdge = { /** Reads and enables pagination through a set of `AssetTransfer`. */ assetTransfers: GqlAssetTransfersConnection; /** A cursor for use in pagination. */ cursor: Maybe; /** The `Transaction` at the end of the edge. */ node: Maybe; }; /** A `Transaction` edge in the connection, with data from `AssetTransfer`. */ type GqlWalletTransactionsByAssetTransferFromIdAndTransactionIdManyToManyEdgeassetTransfersArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; /** A connection to a list of `Transaction` values, with data from `AssetTransfer`. */ type GqlWalletTransactionsByAssetTransferToIdAndTransactionIdManyToManyConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `Transaction`, info from the `AssetTransfer`, and the cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `Transaction` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `Transaction` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `Transaction` values, with data from `AssetTransfer`. */ type GqlWalletTransactionsByAssetTransferToIdAndTransactionIdManyToManyConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `Transaction` edge in the connection, with data from `AssetTransfer`. */ type GqlWalletTransactionsByAssetTransferToIdAndTransactionIdManyToManyEdge = { /** Reads and enables pagination through a set of `AssetTransfer`. */ assetTransfers: GqlAssetTransfersConnection; /** A cursor for use in pagination. */ cursor: Maybe; /** The `Transaction` at the end of the edge. */ node: Maybe; }; /** A `Transaction` edge in the connection, with data from `AssetTransfer`. */ type GqlWalletTransactionsByAssetTransferToIdAndTransactionIdManyToManyEdgeassetTransfersArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; type GqlWalletVariancePopulationAggregates = { /** Population variance of balance across the matching connection */ balance: Maybe; }; type GqlWalletVarianceSampleAggregates = { /** Sample variance of balance across the matching connection */ balance: Maybe; }; /** A connection to a list of `Wallet` values, with data from `AssetTransfer`. */ type GqlWalletWalletsByAssetTransferFromIdAndToIdManyToManyConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `Wallet`, info from the `AssetTransfer`, and the cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `Wallet` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `Wallet` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `Wallet` values, with data from `AssetTransfer`. */ type GqlWalletWalletsByAssetTransferFromIdAndToIdManyToManyConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `Wallet` edge in the connection, with data from `AssetTransfer`. */ type GqlWalletWalletsByAssetTransferFromIdAndToIdManyToManyEdge = { /** Reads and enables pagination through a set of `AssetTransfer`. */ assetTransfersByToId: GqlAssetTransfersConnection; /** A cursor for use in pagination. */ cursor: Maybe; /** The `Wallet` at the end of the edge. */ node: Maybe; }; /** A `Wallet` edge in the connection, with data from `AssetTransfer`. */ type GqlWalletWalletsByAssetTransferFromIdAndToIdManyToManyEdgeassetTransfersByToIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; /** A connection to a list of `Wallet` values, with data from `AssetTransfer`. */ type GqlWalletWalletsByAssetTransferToIdAndFromIdManyToManyConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `Wallet`, info from the `AssetTransfer`, and the cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `Wallet` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `Wallet` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `Wallet` values, with data from `AssetTransfer`. */ type GqlWalletWalletsByAssetTransferToIdAndFromIdManyToManyConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `Wallet` edge in the connection, with data from `AssetTransfer`. */ type GqlWalletWalletsByAssetTransferToIdAndFromIdManyToManyEdge = { /** Reads and enables pagination through a set of `AssetTransfer`. */ assetTransfersByFromId: GqlAssetTransfersConnection; /** A cursor for use in pagination. */ cursor: Maybe; /** The `Wallet` at the end of the edge. */ node: Maybe; }; /** A `Wallet` edge in the connection, with data from `AssetTransfer`. */ type GqlWalletWalletsByAssetTransferToIdAndFromIdManyToManyEdgeassetTransfersByFromIdArgs = { after?: InputMaybe; before?: InputMaybe; blockHeight?: InputMaybe; distinct?: InputMaybe>>; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; orderByNull?: InputMaybe; }; /** A connection to a list of `Wallet` values. */ type GqlWalletsConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `Wallet` and cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `Wallet` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `Wallet` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `Wallet` values. */ type GqlWalletsConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `Wallet` edge in the connection. */ type GqlWalletsEdge = { /** A cursor for use in pagination. */ cursor: Maybe; /** The `Wallet` at the end of the edge. */ node: Maybe; }; /** Grouping methods for `Wallet` for usage during aggregation. */ declare enum GqlWalletsGroupBy { BALANCE = "BALANCE", ID = "ID" } type GqlWalletsHavingAverageInput = { balance?: InputMaybe; }; type GqlWalletsHavingDistinctCountInput = { balance?: InputMaybe; }; /** Conditions for `Wallet` aggregates. */ type GqlWalletsHavingInput = { AND?: InputMaybe>; OR?: InputMaybe>; average?: InputMaybe; distinctCount?: InputMaybe; max?: InputMaybe; min?: InputMaybe; stddevPopulation?: InputMaybe; stddevSample?: InputMaybe; sum?: InputMaybe; variancePopulation?: InputMaybe; varianceSample?: InputMaybe; }; type GqlWalletsHavingMaxInput = { balance?: InputMaybe; }; type GqlWalletsHavingMinInput = { balance?: InputMaybe; }; type GqlWalletsHavingStddevPopulationInput = { balance?: InputMaybe; }; type GqlWalletsHavingStddevSampleInput = { balance?: InputMaybe; }; type GqlWalletsHavingSumInput = { balance?: InputMaybe; }; type GqlWalletsHavingVariancePopulationInput = { balance?: InputMaybe; }; type GqlWalletsHavingVarianceSampleInput = { balance?: InputMaybe; }; /** Methods to use when ordering `Wallet`. */ declare enum GqlWalletsOrderBy { ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_BLOCK_RANGE_ASC", ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_BLOCK_RANGE_DESC", ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_DECIMALS_ASC = "ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_DECIMALS_ASC", ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_DECIMALS_DESC = "ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_DECIMALS_DESC", ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_FROM_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_FROM_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_FROM_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_FROM_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_NFT_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_NFT_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_NFT_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_NFT_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_TOKEN_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_TOKEN_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_TOKEN_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_TOKEN_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_TO_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_TO_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_TO_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_TO_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_TRANSACTION_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_TRANSACTION_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_TYPE_ASC = "ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_TYPE_ASC", ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_TYPE_DESC = "ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_TYPE_DESC", ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_VALUE_ASC = "ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_VALUE_ASC", ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_VALUE_DESC = "ASSET_TRANSFERS_BY_FROM_ID_AVERAGE_VALUE_DESC", ASSET_TRANSFERS_BY_FROM_ID_COUNT_ASC = "ASSET_TRANSFERS_BY_FROM_ID_COUNT_ASC", ASSET_TRANSFERS_BY_FROM_ID_COUNT_DESC = "ASSET_TRANSFERS_BY_FROM_ID_COUNT_DESC", ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC", ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC", ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_DECIMALS_ASC = "ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_DECIMALS_ASC", ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_DECIMALS_DESC = "ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_DECIMALS_DESC", ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_FROM_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_FROM_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_FROM_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_FROM_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_NFT_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_NFT_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_NFT_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_NFT_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_TOKEN_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_TOKEN_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_TOKEN_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_TOKEN_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_TO_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_TO_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_TO_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_TO_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_TRANSACTION_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_TRANSACTION_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_TYPE_ASC = "ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_TYPE_ASC", ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_TYPE_DESC = "ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_TYPE_DESC", ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_VALUE_ASC = "ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_VALUE_ASC", ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_VALUE_DESC = "ASSET_TRANSFERS_BY_FROM_ID_DISTINCT_COUNT_VALUE_DESC", ASSET_TRANSFERS_BY_FROM_ID_MAX_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_BY_FROM_ID_MAX_BLOCK_RANGE_ASC", ASSET_TRANSFERS_BY_FROM_ID_MAX_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_BY_FROM_ID_MAX_BLOCK_RANGE_DESC", ASSET_TRANSFERS_BY_FROM_ID_MAX_DECIMALS_ASC = "ASSET_TRANSFERS_BY_FROM_ID_MAX_DECIMALS_ASC", ASSET_TRANSFERS_BY_FROM_ID_MAX_DECIMALS_DESC = "ASSET_TRANSFERS_BY_FROM_ID_MAX_DECIMALS_DESC", ASSET_TRANSFERS_BY_FROM_ID_MAX_FROM_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_MAX_FROM_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_MAX_FROM_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_MAX_FROM_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_MAX_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_MAX_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_MAX_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_MAX_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_MAX_NFT_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_MAX_NFT_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_MAX_NFT_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_MAX_NFT_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_MAX_TOKEN_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_MAX_TOKEN_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_MAX_TOKEN_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_MAX_TOKEN_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_MAX_TO_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_MAX_TO_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_MAX_TO_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_MAX_TO_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_MAX_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_BY_FROM_ID_MAX_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_BY_FROM_ID_MAX_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_BY_FROM_ID_MAX_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_BY_FROM_ID_MAX_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_MAX_TRANSACTION_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_MAX_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_MAX_TRANSACTION_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_MAX_TYPE_ASC = "ASSET_TRANSFERS_BY_FROM_ID_MAX_TYPE_ASC", ASSET_TRANSFERS_BY_FROM_ID_MAX_TYPE_DESC = "ASSET_TRANSFERS_BY_FROM_ID_MAX_TYPE_DESC", ASSET_TRANSFERS_BY_FROM_ID_MAX_VALUE_ASC = "ASSET_TRANSFERS_BY_FROM_ID_MAX_VALUE_ASC", ASSET_TRANSFERS_BY_FROM_ID_MAX_VALUE_DESC = "ASSET_TRANSFERS_BY_FROM_ID_MAX_VALUE_DESC", ASSET_TRANSFERS_BY_FROM_ID_MIN_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_BY_FROM_ID_MIN_BLOCK_RANGE_ASC", ASSET_TRANSFERS_BY_FROM_ID_MIN_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_BY_FROM_ID_MIN_BLOCK_RANGE_DESC", ASSET_TRANSFERS_BY_FROM_ID_MIN_DECIMALS_ASC = "ASSET_TRANSFERS_BY_FROM_ID_MIN_DECIMALS_ASC", ASSET_TRANSFERS_BY_FROM_ID_MIN_DECIMALS_DESC = "ASSET_TRANSFERS_BY_FROM_ID_MIN_DECIMALS_DESC", ASSET_TRANSFERS_BY_FROM_ID_MIN_FROM_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_MIN_FROM_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_MIN_FROM_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_MIN_FROM_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_MIN_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_MIN_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_MIN_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_MIN_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_MIN_NFT_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_MIN_NFT_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_MIN_NFT_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_MIN_NFT_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_MIN_TOKEN_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_MIN_TOKEN_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_MIN_TOKEN_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_MIN_TOKEN_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_MIN_TO_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_MIN_TO_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_MIN_TO_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_MIN_TO_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_MIN_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_BY_FROM_ID_MIN_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_BY_FROM_ID_MIN_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_BY_FROM_ID_MIN_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_BY_FROM_ID_MIN_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_MIN_TRANSACTION_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_MIN_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_MIN_TRANSACTION_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_MIN_TYPE_ASC = "ASSET_TRANSFERS_BY_FROM_ID_MIN_TYPE_ASC", ASSET_TRANSFERS_BY_FROM_ID_MIN_TYPE_DESC = "ASSET_TRANSFERS_BY_FROM_ID_MIN_TYPE_DESC", ASSET_TRANSFERS_BY_FROM_ID_MIN_VALUE_ASC = "ASSET_TRANSFERS_BY_FROM_ID_MIN_VALUE_ASC", ASSET_TRANSFERS_BY_FROM_ID_MIN_VALUE_DESC = "ASSET_TRANSFERS_BY_FROM_ID_MIN_VALUE_DESC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_DECIMALS_ASC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_DECIMALS_ASC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_DECIMALS_DESC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_DECIMALS_DESC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_FROM_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_FROM_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_FROM_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_FROM_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_NFT_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_NFT_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_NFT_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_NFT_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_TOKEN_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_TOKEN_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_TOKEN_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_TOKEN_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_TO_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_TO_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_TO_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_TO_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_TRANSACTION_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_TRANSACTION_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_TYPE_ASC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_TYPE_ASC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_TYPE_DESC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_TYPE_DESC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_VALUE_ASC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_VALUE_ASC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_VALUE_DESC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_POPULATION_VALUE_DESC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_DECIMALS_ASC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_DECIMALS_ASC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_DECIMALS_DESC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_DECIMALS_DESC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_FROM_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_FROM_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_FROM_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_FROM_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_NFT_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_NFT_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_NFT_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_NFT_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_TOKEN_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_TOKEN_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_TOKEN_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_TOKEN_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_TO_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_TO_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_TO_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_TO_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_TRANSACTION_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_TRANSACTION_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_TYPE_ASC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_TYPE_ASC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_TYPE_DESC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_TYPE_DESC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_VALUE_ASC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_VALUE_ASC", ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_VALUE_DESC = "ASSET_TRANSFERS_BY_FROM_ID_STDDEV_SAMPLE_VALUE_DESC", ASSET_TRANSFERS_BY_FROM_ID_SUM_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_BY_FROM_ID_SUM_BLOCK_RANGE_ASC", ASSET_TRANSFERS_BY_FROM_ID_SUM_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_BY_FROM_ID_SUM_BLOCK_RANGE_DESC", ASSET_TRANSFERS_BY_FROM_ID_SUM_DECIMALS_ASC = "ASSET_TRANSFERS_BY_FROM_ID_SUM_DECIMALS_ASC", ASSET_TRANSFERS_BY_FROM_ID_SUM_DECIMALS_DESC = "ASSET_TRANSFERS_BY_FROM_ID_SUM_DECIMALS_DESC", ASSET_TRANSFERS_BY_FROM_ID_SUM_FROM_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_SUM_FROM_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_SUM_FROM_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_SUM_FROM_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_SUM_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_SUM_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_SUM_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_SUM_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_SUM_NFT_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_SUM_NFT_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_SUM_NFT_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_SUM_NFT_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_SUM_TOKEN_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_SUM_TOKEN_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_SUM_TOKEN_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_SUM_TOKEN_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_SUM_TO_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_SUM_TO_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_SUM_TO_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_SUM_TO_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_SUM_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_BY_FROM_ID_SUM_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_BY_FROM_ID_SUM_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_BY_FROM_ID_SUM_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_BY_FROM_ID_SUM_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_SUM_TRANSACTION_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_SUM_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_SUM_TRANSACTION_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_SUM_TYPE_ASC = "ASSET_TRANSFERS_BY_FROM_ID_SUM_TYPE_ASC", ASSET_TRANSFERS_BY_FROM_ID_SUM_TYPE_DESC = "ASSET_TRANSFERS_BY_FROM_ID_SUM_TYPE_DESC", ASSET_TRANSFERS_BY_FROM_ID_SUM_VALUE_ASC = "ASSET_TRANSFERS_BY_FROM_ID_SUM_VALUE_ASC", ASSET_TRANSFERS_BY_FROM_ID_SUM_VALUE_DESC = "ASSET_TRANSFERS_BY_FROM_ID_SUM_VALUE_DESC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_DECIMALS_ASC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_DECIMALS_ASC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_DECIMALS_DESC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_DECIMALS_DESC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_FROM_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_FROM_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_FROM_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_FROM_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_NFT_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_NFT_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_NFT_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_NFT_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_TOKEN_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_TOKEN_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_TOKEN_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_TOKEN_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_TO_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_TO_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_TO_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_TO_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_TRANSACTION_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_TRANSACTION_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_TYPE_ASC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_TYPE_ASC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_TYPE_DESC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_TYPE_DESC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_VALUE_ASC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_VALUE_ASC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_VALUE_DESC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_POPULATION_VALUE_DESC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_DECIMALS_ASC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_DECIMALS_ASC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_DECIMALS_DESC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_DECIMALS_DESC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_FROM_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_FROM_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_FROM_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_FROM_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_NFT_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_NFT_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_NFT_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_NFT_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_TOKEN_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_TOKEN_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_TOKEN_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_TOKEN_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_TO_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_TO_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_TO_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_TO_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_TRANSACTION_ID_ASC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_TRANSACTION_ID_DESC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_TYPE_ASC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_TYPE_ASC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_TYPE_DESC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_TYPE_DESC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_VALUE_ASC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_VALUE_ASC", ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_VALUE_DESC = "ASSET_TRANSFERS_BY_FROM_ID_VARIANCE_SAMPLE_VALUE_DESC", ASSET_TRANSFERS_BY_FROM_ID__COUNT_ASC = "ASSET_TRANSFERS_BY_FROM_ID__COUNT_ASC", ASSET_TRANSFERS_BY_FROM_ID__COUNT_DESC = "ASSET_TRANSFERS_BY_FROM_ID__COUNT_DESC", ASSET_TRANSFERS_BY_TO_ID_AVERAGE_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_BY_TO_ID_AVERAGE_BLOCK_RANGE_ASC", ASSET_TRANSFERS_BY_TO_ID_AVERAGE_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_BY_TO_ID_AVERAGE_BLOCK_RANGE_DESC", ASSET_TRANSFERS_BY_TO_ID_AVERAGE_DECIMALS_ASC = "ASSET_TRANSFERS_BY_TO_ID_AVERAGE_DECIMALS_ASC", ASSET_TRANSFERS_BY_TO_ID_AVERAGE_DECIMALS_DESC = "ASSET_TRANSFERS_BY_TO_ID_AVERAGE_DECIMALS_DESC", ASSET_TRANSFERS_BY_TO_ID_AVERAGE_FROM_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_AVERAGE_FROM_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_AVERAGE_FROM_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_AVERAGE_FROM_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_AVERAGE_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_AVERAGE_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_AVERAGE_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_AVERAGE_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_AVERAGE_NFT_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_AVERAGE_NFT_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_AVERAGE_NFT_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_AVERAGE_NFT_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_AVERAGE_TOKEN_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_AVERAGE_TOKEN_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_AVERAGE_TOKEN_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_AVERAGE_TOKEN_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_AVERAGE_TO_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_AVERAGE_TO_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_AVERAGE_TO_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_AVERAGE_TO_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_AVERAGE_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_BY_TO_ID_AVERAGE_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_BY_TO_ID_AVERAGE_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_BY_TO_ID_AVERAGE_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_BY_TO_ID_AVERAGE_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_AVERAGE_TRANSACTION_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_AVERAGE_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_AVERAGE_TRANSACTION_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_AVERAGE_TYPE_ASC = "ASSET_TRANSFERS_BY_TO_ID_AVERAGE_TYPE_ASC", ASSET_TRANSFERS_BY_TO_ID_AVERAGE_TYPE_DESC = "ASSET_TRANSFERS_BY_TO_ID_AVERAGE_TYPE_DESC", ASSET_TRANSFERS_BY_TO_ID_AVERAGE_VALUE_ASC = "ASSET_TRANSFERS_BY_TO_ID_AVERAGE_VALUE_ASC", ASSET_TRANSFERS_BY_TO_ID_AVERAGE_VALUE_DESC = "ASSET_TRANSFERS_BY_TO_ID_AVERAGE_VALUE_DESC", ASSET_TRANSFERS_BY_TO_ID_COUNT_ASC = "ASSET_TRANSFERS_BY_TO_ID_COUNT_ASC", ASSET_TRANSFERS_BY_TO_ID_COUNT_DESC = "ASSET_TRANSFERS_BY_TO_ID_COUNT_DESC", ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC", ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC", ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_DECIMALS_ASC = "ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_DECIMALS_ASC", ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_DECIMALS_DESC = "ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_DECIMALS_DESC", ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_FROM_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_FROM_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_FROM_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_FROM_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_NFT_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_NFT_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_NFT_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_NFT_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_TOKEN_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_TOKEN_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_TOKEN_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_TOKEN_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_TO_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_TO_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_TO_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_TO_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_TRANSACTION_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_TRANSACTION_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_TYPE_ASC = "ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_TYPE_ASC", ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_TYPE_DESC = "ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_TYPE_DESC", ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_VALUE_ASC = "ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_VALUE_ASC", ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_VALUE_DESC = "ASSET_TRANSFERS_BY_TO_ID_DISTINCT_COUNT_VALUE_DESC", ASSET_TRANSFERS_BY_TO_ID_MAX_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_BY_TO_ID_MAX_BLOCK_RANGE_ASC", ASSET_TRANSFERS_BY_TO_ID_MAX_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_BY_TO_ID_MAX_BLOCK_RANGE_DESC", ASSET_TRANSFERS_BY_TO_ID_MAX_DECIMALS_ASC = "ASSET_TRANSFERS_BY_TO_ID_MAX_DECIMALS_ASC", ASSET_TRANSFERS_BY_TO_ID_MAX_DECIMALS_DESC = "ASSET_TRANSFERS_BY_TO_ID_MAX_DECIMALS_DESC", ASSET_TRANSFERS_BY_TO_ID_MAX_FROM_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_MAX_FROM_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_MAX_FROM_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_MAX_FROM_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_MAX_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_MAX_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_MAX_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_MAX_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_MAX_NFT_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_MAX_NFT_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_MAX_NFT_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_MAX_NFT_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_MAX_TOKEN_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_MAX_TOKEN_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_MAX_TOKEN_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_MAX_TOKEN_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_MAX_TO_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_MAX_TO_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_MAX_TO_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_MAX_TO_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_MAX_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_BY_TO_ID_MAX_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_BY_TO_ID_MAX_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_BY_TO_ID_MAX_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_BY_TO_ID_MAX_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_MAX_TRANSACTION_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_MAX_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_MAX_TRANSACTION_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_MAX_TYPE_ASC = "ASSET_TRANSFERS_BY_TO_ID_MAX_TYPE_ASC", ASSET_TRANSFERS_BY_TO_ID_MAX_TYPE_DESC = "ASSET_TRANSFERS_BY_TO_ID_MAX_TYPE_DESC", ASSET_TRANSFERS_BY_TO_ID_MAX_VALUE_ASC = "ASSET_TRANSFERS_BY_TO_ID_MAX_VALUE_ASC", ASSET_TRANSFERS_BY_TO_ID_MAX_VALUE_DESC = "ASSET_TRANSFERS_BY_TO_ID_MAX_VALUE_DESC", ASSET_TRANSFERS_BY_TO_ID_MIN_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_BY_TO_ID_MIN_BLOCK_RANGE_ASC", ASSET_TRANSFERS_BY_TO_ID_MIN_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_BY_TO_ID_MIN_BLOCK_RANGE_DESC", ASSET_TRANSFERS_BY_TO_ID_MIN_DECIMALS_ASC = "ASSET_TRANSFERS_BY_TO_ID_MIN_DECIMALS_ASC", ASSET_TRANSFERS_BY_TO_ID_MIN_DECIMALS_DESC = "ASSET_TRANSFERS_BY_TO_ID_MIN_DECIMALS_DESC", ASSET_TRANSFERS_BY_TO_ID_MIN_FROM_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_MIN_FROM_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_MIN_FROM_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_MIN_FROM_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_MIN_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_MIN_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_MIN_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_MIN_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_MIN_NFT_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_MIN_NFT_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_MIN_NFT_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_MIN_NFT_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_MIN_TOKEN_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_MIN_TOKEN_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_MIN_TOKEN_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_MIN_TOKEN_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_MIN_TO_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_MIN_TO_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_MIN_TO_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_MIN_TO_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_MIN_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_BY_TO_ID_MIN_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_BY_TO_ID_MIN_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_BY_TO_ID_MIN_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_BY_TO_ID_MIN_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_MIN_TRANSACTION_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_MIN_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_MIN_TRANSACTION_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_MIN_TYPE_ASC = "ASSET_TRANSFERS_BY_TO_ID_MIN_TYPE_ASC", ASSET_TRANSFERS_BY_TO_ID_MIN_TYPE_DESC = "ASSET_TRANSFERS_BY_TO_ID_MIN_TYPE_DESC", ASSET_TRANSFERS_BY_TO_ID_MIN_VALUE_ASC = "ASSET_TRANSFERS_BY_TO_ID_MIN_VALUE_ASC", ASSET_TRANSFERS_BY_TO_ID_MIN_VALUE_DESC = "ASSET_TRANSFERS_BY_TO_ID_MIN_VALUE_DESC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_DECIMALS_ASC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_DECIMALS_ASC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_DECIMALS_DESC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_DECIMALS_DESC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_FROM_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_FROM_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_FROM_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_FROM_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_NFT_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_NFT_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_NFT_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_NFT_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_TOKEN_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_TOKEN_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_TOKEN_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_TOKEN_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_TO_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_TO_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_TO_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_TO_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_TRANSACTION_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_TRANSACTION_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_TYPE_ASC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_TYPE_ASC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_TYPE_DESC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_TYPE_DESC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_VALUE_ASC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_VALUE_ASC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_VALUE_DESC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_POPULATION_VALUE_DESC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_DECIMALS_ASC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_DECIMALS_ASC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_DECIMALS_DESC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_DECIMALS_DESC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_FROM_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_FROM_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_FROM_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_FROM_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_NFT_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_NFT_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_NFT_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_NFT_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_TOKEN_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_TOKEN_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_TOKEN_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_TOKEN_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_TO_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_TO_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_TO_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_TO_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_TRANSACTION_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_TRANSACTION_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_TYPE_ASC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_TYPE_ASC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_TYPE_DESC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_TYPE_DESC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_VALUE_ASC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_VALUE_ASC", ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_VALUE_DESC = "ASSET_TRANSFERS_BY_TO_ID_STDDEV_SAMPLE_VALUE_DESC", ASSET_TRANSFERS_BY_TO_ID_SUM_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_BY_TO_ID_SUM_BLOCK_RANGE_ASC", ASSET_TRANSFERS_BY_TO_ID_SUM_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_BY_TO_ID_SUM_BLOCK_RANGE_DESC", ASSET_TRANSFERS_BY_TO_ID_SUM_DECIMALS_ASC = "ASSET_TRANSFERS_BY_TO_ID_SUM_DECIMALS_ASC", ASSET_TRANSFERS_BY_TO_ID_SUM_DECIMALS_DESC = "ASSET_TRANSFERS_BY_TO_ID_SUM_DECIMALS_DESC", ASSET_TRANSFERS_BY_TO_ID_SUM_FROM_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_SUM_FROM_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_SUM_FROM_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_SUM_FROM_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_SUM_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_SUM_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_SUM_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_SUM_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_SUM_NFT_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_SUM_NFT_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_SUM_NFT_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_SUM_NFT_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_SUM_TOKEN_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_SUM_TOKEN_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_SUM_TOKEN_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_SUM_TOKEN_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_SUM_TO_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_SUM_TO_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_SUM_TO_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_SUM_TO_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_SUM_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_BY_TO_ID_SUM_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_BY_TO_ID_SUM_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_BY_TO_ID_SUM_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_BY_TO_ID_SUM_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_SUM_TRANSACTION_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_SUM_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_SUM_TRANSACTION_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_SUM_TYPE_ASC = "ASSET_TRANSFERS_BY_TO_ID_SUM_TYPE_ASC", ASSET_TRANSFERS_BY_TO_ID_SUM_TYPE_DESC = "ASSET_TRANSFERS_BY_TO_ID_SUM_TYPE_DESC", ASSET_TRANSFERS_BY_TO_ID_SUM_VALUE_ASC = "ASSET_TRANSFERS_BY_TO_ID_SUM_VALUE_ASC", ASSET_TRANSFERS_BY_TO_ID_SUM_VALUE_DESC = "ASSET_TRANSFERS_BY_TO_ID_SUM_VALUE_DESC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_DECIMALS_ASC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_DECIMALS_ASC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_DECIMALS_DESC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_DECIMALS_DESC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_FROM_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_FROM_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_FROM_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_FROM_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_NFT_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_NFT_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_NFT_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_NFT_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_TOKEN_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_TOKEN_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_TOKEN_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_TOKEN_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_TO_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_TO_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_TO_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_TO_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_TRANSACTION_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_TRANSACTION_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_TYPE_ASC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_TYPE_ASC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_TYPE_DESC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_TYPE_DESC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_VALUE_ASC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_VALUE_ASC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_VALUE_DESC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_POPULATION_VALUE_DESC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_DECIMALS_ASC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_DECIMALS_ASC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_DECIMALS_DESC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_DECIMALS_DESC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_FROM_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_FROM_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_FROM_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_FROM_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_NFT_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_NFT_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_NFT_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_NFT_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_TOKEN_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_TOKEN_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_TOKEN_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_TOKEN_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_TO_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_TO_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_TO_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_TO_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_TRANSACTION_BLOCK_NUMBER_ASC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_TRANSACTION_BLOCK_NUMBER_ASC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_TRANSACTION_BLOCK_NUMBER_DESC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_TRANSACTION_BLOCK_NUMBER_DESC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_TRANSACTION_ID_ASC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_TRANSACTION_ID_ASC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_TRANSACTION_ID_DESC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_TRANSACTION_ID_DESC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_TYPE_ASC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_TYPE_ASC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_TYPE_DESC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_TYPE_DESC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_VALUE_ASC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_VALUE_ASC", ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_VALUE_DESC = "ASSET_TRANSFERS_BY_TO_ID_VARIANCE_SAMPLE_VALUE_DESC", ASSET_TRANSFERS_BY_TO_ID__COUNT_ASC = "ASSET_TRANSFERS_BY_TO_ID__COUNT_ASC", ASSET_TRANSFERS_BY_TO_ID__COUNT_DESC = "ASSET_TRANSFERS_BY_TO_ID__COUNT_DESC", BALANCE_ASC = "BALANCE_ASC", BALANCE_DESC = "BALANCE_DESC", ID_ASC = "ID_ASC", ID_DESC = "ID_DESC", NATURAL = "NATURAL", NFTS_AVERAGE_BALANCE_ASC = "NFTS_AVERAGE_BALANCE_ASC", NFTS_AVERAGE_BALANCE_DESC = "NFTS_AVERAGE_BALANCE_DESC", NFTS_AVERAGE_BLOCK_RANGE_ASC = "NFTS_AVERAGE_BLOCK_RANGE_ASC", NFTS_AVERAGE_BLOCK_RANGE_DESC = "NFTS_AVERAGE_BLOCK_RANGE_DESC", NFTS_AVERAGE_ID_ASC = "NFTS_AVERAGE_ID_ASC", NFTS_AVERAGE_ID_DESC = "NFTS_AVERAGE_ID_DESC", NFTS_AVERAGE_NFT_ID_ASC = "NFTS_AVERAGE_NFT_ID_ASC", NFTS_AVERAGE_NFT_ID_DESC = "NFTS_AVERAGE_NFT_ID_DESC", NFTS_AVERAGE_NFT_TOKEN_ID_ASC = "NFTS_AVERAGE_NFT_TOKEN_ID_ASC", NFTS_AVERAGE_NFT_TOKEN_ID_DESC = "NFTS_AVERAGE_NFT_TOKEN_ID_DESC", NFTS_AVERAGE_WALLET_ID_ASC = "NFTS_AVERAGE_WALLET_ID_ASC", NFTS_AVERAGE_WALLET_ID_DESC = "NFTS_AVERAGE_WALLET_ID_DESC", NFTS_COUNT_ASC = "NFTS_COUNT_ASC", NFTS_COUNT_DESC = "NFTS_COUNT_DESC", NFTS_DISTINCT_COUNT_BALANCE_ASC = "NFTS_DISTINCT_COUNT_BALANCE_ASC", NFTS_DISTINCT_COUNT_BALANCE_DESC = "NFTS_DISTINCT_COUNT_BALANCE_DESC", NFTS_DISTINCT_COUNT_BLOCK_RANGE_ASC = "NFTS_DISTINCT_COUNT_BLOCK_RANGE_ASC", NFTS_DISTINCT_COUNT_BLOCK_RANGE_DESC = "NFTS_DISTINCT_COUNT_BLOCK_RANGE_DESC", NFTS_DISTINCT_COUNT_ID_ASC = "NFTS_DISTINCT_COUNT_ID_ASC", NFTS_DISTINCT_COUNT_ID_DESC = "NFTS_DISTINCT_COUNT_ID_DESC", NFTS_DISTINCT_COUNT_NFT_ID_ASC = "NFTS_DISTINCT_COUNT_NFT_ID_ASC", NFTS_DISTINCT_COUNT_NFT_ID_DESC = "NFTS_DISTINCT_COUNT_NFT_ID_DESC", NFTS_DISTINCT_COUNT_NFT_TOKEN_ID_ASC = "NFTS_DISTINCT_COUNT_NFT_TOKEN_ID_ASC", NFTS_DISTINCT_COUNT_NFT_TOKEN_ID_DESC = "NFTS_DISTINCT_COUNT_NFT_TOKEN_ID_DESC", NFTS_DISTINCT_COUNT_WALLET_ID_ASC = "NFTS_DISTINCT_COUNT_WALLET_ID_ASC", NFTS_DISTINCT_COUNT_WALLET_ID_DESC = "NFTS_DISTINCT_COUNT_WALLET_ID_DESC", NFTS_MAX_BALANCE_ASC = "NFTS_MAX_BALANCE_ASC", NFTS_MAX_BALANCE_DESC = "NFTS_MAX_BALANCE_DESC", NFTS_MAX_BLOCK_RANGE_ASC = "NFTS_MAX_BLOCK_RANGE_ASC", NFTS_MAX_BLOCK_RANGE_DESC = "NFTS_MAX_BLOCK_RANGE_DESC", NFTS_MAX_ID_ASC = "NFTS_MAX_ID_ASC", NFTS_MAX_ID_DESC = "NFTS_MAX_ID_DESC", NFTS_MAX_NFT_ID_ASC = "NFTS_MAX_NFT_ID_ASC", NFTS_MAX_NFT_ID_DESC = "NFTS_MAX_NFT_ID_DESC", NFTS_MAX_NFT_TOKEN_ID_ASC = "NFTS_MAX_NFT_TOKEN_ID_ASC", NFTS_MAX_NFT_TOKEN_ID_DESC = "NFTS_MAX_NFT_TOKEN_ID_DESC", NFTS_MAX_WALLET_ID_ASC = "NFTS_MAX_WALLET_ID_ASC", NFTS_MAX_WALLET_ID_DESC = "NFTS_MAX_WALLET_ID_DESC", NFTS_MIN_BALANCE_ASC = "NFTS_MIN_BALANCE_ASC", NFTS_MIN_BALANCE_DESC = "NFTS_MIN_BALANCE_DESC", NFTS_MIN_BLOCK_RANGE_ASC = "NFTS_MIN_BLOCK_RANGE_ASC", NFTS_MIN_BLOCK_RANGE_DESC = "NFTS_MIN_BLOCK_RANGE_DESC", NFTS_MIN_ID_ASC = "NFTS_MIN_ID_ASC", NFTS_MIN_ID_DESC = "NFTS_MIN_ID_DESC", NFTS_MIN_NFT_ID_ASC = "NFTS_MIN_NFT_ID_ASC", NFTS_MIN_NFT_ID_DESC = "NFTS_MIN_NFT_ID_DESC", NFTS_MIN_NFT_TOKEN_ID_ASC = "NFTS_MIN_NFT_TOKEN_ID_ASC", NFTS_MIN_NFT_TOKEN_ID_DESC = "NFTS_MIN_NFT_TOKEN_ID_DESC", NFTS_MIN_WALLET_ID_ASC = "NFTS_MIN_WALLET_ID_ASC", NFTS_MIN_WALLET_ID_DESC = "NFTS_MIN_WALLET_ID_DESC", NFTS_STDDEV_POPULATION_BALANCE_ASC = "NFTS_STDDEV_POPULATION_BALANCE_ASC", NFTS_STDDEV_POPULATION_BALANCE_DESC = "NFTS_STDDEV_POPULATION_BALANCE_DESC", NFTS_STDDEV_POPULATION_BLOCK_RANGE_ASC = "NFTS_STDDEV_POPULATION_BLOCK_RANGE_ASC", NFTS_STDDEV_POPULATION_BLOCK_RANGE_DESC = "NFTS_STDDEV_POPULATION_BLOCK_RANGE_DESC", NFTS_STDDEV_POPULATION_ID_ASC = "NFTS_STDDEV_POPULATION_ID_ASC", NFTS_STDDEV_POPULATION_ID_DESC = "NFTS_STDDEV_POPULATION_ID_DESC", NFTS_STDDEV_POPULATION_NFT_ID_ASC = "NFTS_STDDEV_POPULATION_NFT_ID_ASC", NFTS_STDDEV_POPULATION_NFT_ID_DESC = "NFTS_STDDEV_POPULATION_NFT_ID_DESC", NFTS_STDDEV_POPULATION_NFT_TOKEN_ID_ASC = "NFTS_STDDEV_POPULATION_NFT_TOKEN_ID_ASC", NFTS_STDDEV_POPULATION_NFT_TOKEN_ID_DESC = "NFTS_STDDEV_POPULATION_NFT_TOKEN_ID_DESC", NFTS_STDDEV_POPULATION_WALLET_ID_ASC = "NFTS_STDDEV_POPULATION_WALLET_ID_ASC", NFTS_STDDEV_POPULATION_WALLET_ID_DESC = "NFTS_STDDEV_POPULATION_WALLET_ID_DESC", NFTS_STDDEV_SAMPLE_BALANCE_ASC = "NFTS_STDDEV_SAMPLE_BALANCE_ASC", NFTS_STDDEV_SAMPLE_BALANCE_DESC = "NFTS_STDDEV_SAMPLE_BALANCE_DESC", NFTS_STDDEV_SAMPLE_BLOCK_RANGE_ASC = "NFTS_STDDEV_SAMPLE_BLOCK_RANGE_ASC", NFTS_STDDEV_SAMPLE_BLOCK_RANGE_DESC = "NFTS_STDDEV_SAMPLE_BLOCK_RANGE_DESC", NFTS_STDDEV_SAMPLE_ID_ASC = "NFTS_STDDEV_SAMPLE_ID_ASC", NFTS_STDDEV_SAMPLE_ID_DESC = "NFTS_STDDEV_SAMPLE_ID_DESC", NFTS_STDDEV_SAMPLE_NFT_ID_ASC = "NFTS_STDDEV_SAMPLE_NFT_ID_ASC", NFTS_STDDEV_SAMPLE_NFT_ID_DESC = "NFTS_STDDEV_SAMPLE_NFT_ID_DESC", NFTS_STDDEV_SAMPLE_NFT_TOKEN_ID_ASC = "NFTS_STDDEV_SAMPLE_NFT_TOKEN_ID_ASC", NFTS_STDDEV_SAMPLE_NFT_TOKEN_ID_DESC = "NFTS_STDDEV_SAMPLE_NFT_TOKEN_ID_DESC", NFTS_STDDEV_SAMPLE_WALLET_ID_ASC = "NFTS_STDDEV_SAMPLE_WALLET_ID_ASC", NFTS_STDDEV_SAMPLE_WALLET_ID_DESC = "NFTS_STDDEV_SAMPLE_WALLET_ID_DESC", NFTS_SUM_BALANCE_ASC = "NFTS_SUM_BALANCE_ASC", NFTS_SUM_BALANCE_DESC = "NFTS_SUM_BALANCE_DESC", NFTS_SUM_BLOCK_RANGE_ASC = "NFTS_SUM_BLOCK_RANGE_ASC", NFTS_SUM_BLOCK_RANGE_DESC = "NFTS_SUM_BLOCK_RANGE_DESC", NFTS_SUM_ID_ASC = "NFTS_SUM_ID_ASC", NFTS_SUM_ID_DESC = "NFTS_SUM_ID_DESC", NFTS_SUM_NFT_ID_ASC = "NFTS_SUM_NFT_ID_ASC", NFTS_SUM_NFT_ID_DESC = "NFTS_SUM_NFT_ID_DESC", NFTS_SUM_NFT_TOKEN_ID_ASC = "NFTS_SUM_NFT_TOKEN_ID_ASC", NFTS_SUM_NFT_TOKEN_ID_DESC = "NFTS_SUM_NFT_TOKEN_ID_DESC", NFTS_SUM_WALLET_ID_ASC = "NFTS_SUM_WALLET_ID_ASC", NFTS_SUM_WALLET_ID_DESC = "NFTS_SUM_WALLET_ID_DESC", NFTS_VARIANCE_POPULATION_BALANCE_ASC = "NFTS_VARIANCE_POPULATION_BALANCE_ASC", NFTS_VARIANCE_POPULATION_BALANCE_DESC = "NFTS_VARIANCE_POPULATION_BALANCE_DESC", NFTS_VARIANCE_POPULATION_BLOCK_RANGE_ASC = "NFTS_VARIANCE_POPULATION_BLOCK_RANGE_ASC", NFTS_VARIANCE_POPULATION_BLOCK_RANGE_DESC = "NFTS_VARIANCE_POPULATION_BLOCK_RANGE_DESC", NFTS_VARIANCE_POPULATION_ID_ASC = "NFTS_VARIANCE_POPULATION_ID_ASC", NFTS_VARIANCE_POPULATION_ID_DESC = "NFTS_VARIANCE_POPULATION_ID_DESC", NFTS_VARIANCE_POPULATION_NFT_ID_ASC = "NFTS_VARIANCE_POPULATION_NFT_ID_ASC", NFTS_VARIANCE_POPULATION_NFT_ID_DESC = "NFTS_VARIANCE_POPULATION_NFT_ID_DESC", NFTS_VARIANCE_POPULATION_NFT_TOKEN_ID_ASC = "NFTS_VARIANCE_POPULATION_NFT_TOKEN_ID_ASC", NFTS_VARIANCE_POPULATION_NFT_TOKEN_ID_DESC = "NFTS_VARIANCE_POPULATION_NFT_TOKEN_ID_DESC", NFTS_VARIANCE_POPULATION_WALLET_ID_ASC = "NFTS_VARIANCE_POPULATION_WALLET_ID_ASC", NFTS_VARIANCE_POPULATION_WALLET_ID_DESC = "NFTS_VARIANCE_POPULATION_WALLET_ID_DESC", NFTS_VARIANCE_SAMPLE_BALANCE_ASC = "NFTS_VARIANCE_SAMPLE_BALANCE_ASC", NFTS_VARIANCE_SAMPLE_BALANCE_DESC = "NFTS_VARIANCE_SAMPLE_BALANCE_DESC", NFTS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC = "NFTS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC", NFTS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC = "NFTS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC", NFTS_VARIANCE_SAMPLE_ID_ASC = "NFTS_VARIANCE_SAMPLE_ID_ASC", NFTS_VARIANCE_SAMPLE_ID_DESC = "NFTS_VARIANCE_SAMPLE_ID_DESC", NFTS_VARIANCE_SAMPLE_NFT_ID_ASC = "NFTS_VARIANCE_SAMPLE_NFT_ID_ASC", NFTS_VARIANCE_SAMPLE_NFT_ID_DESC = "NFTS_VARIANCE_SAMPLE_NFT_ID_DESC", NFTS_VARIANCE_SAMPLE_NFT_TOKEN_ID_ASC = "NFTS_VARIANCE_SAMPLE_NFT_TOKEN_ID_ASC", NFTS_VARIANCE_SAMPLE_NFT_TOKEN_ID_DESC = "NFTS_VARIANCE_SAMPLE_NFT_TOKEN_ID_DESC", NFTS_VARIANCE_SAMPLE_WALLET_ID_ASC = "NFTS_VARIANCE_SAMPLE_WALLET_ID_ASC", NFTS_VARIANCE_SAMPLE_WALLET_ID_DESC = "NFTS_VARIANCE_SAMPLE_WALLET_ID_DESC", NFT_BALANCES_BY_WALLET_ID__COUNT_ASC = "NFT_BALANCES_BY_WALLET_ID__COUNT_ASC", NFT_BALANCES_BY_WALLET_ID__COUNT_DESC = "NFT_BALANCES_BY_WALLET_ID__COUNT_DESC", PRIMARY_KEY_ASC = "PRIMARY_KEY_ASC", PRIMARY_KEY_DESC = "PRIMARY_KEY_DESC", TOKENS_AVERAGE_BALANCE_ASC = "TOKENS_AVERAGE_BALANCE_ASC", TOKENS_AVERAGE_BALANCE_DESC = "TOKENS_AVERAGE_BALANCE_DESC", TOKENS_AVERAGE_BLOCK_RANGE_ASC = "TOKENS_AVERAGE_BLOCK_RANGE_ASC", TOKENS_AVERAGE_BLOCK_RANGE_DESC = "TOKENS_AVERAGE_BLOCK_RANGE_DESC", TOKENS_AVERAGE_ID_ASC = "TOKENS_AVERAGE_ID_ASC", TOKENS_AVERAGE_ID_DESC = "TOKENS_AVERAGE_ID_DESC", TOKENS_AVERAGE_TOKEN_ID_ASC = "TOKENS_AVERAGE_TOKEN_ID_ASC", TOKENS_AVERAGE_TOKEN_ID_DESC = "TOKENS_AVERAGE_TOKEN_ID_DESC", TOKENS_AVERAGE_TOKEN_NAME_ASC = "TOKENS_AVERAGE_TOKEN_NAME_ASC", TOKENS_AVERAGE_TOKEN_NAME_DESC = "TOKENS_AVERAGE_TOKEN_NAME_DESC", TOKENS_AVERAGE_TOKEN_SYMBOL_ASC = "TOKENS_AVERAGE_TOKEN_SYMBOL_ASC", TOKENS_AVERAGE_TOKEN_SYMBOL_DESC = "TOKENS_AVERAGE_TOKEN_SYMBOL_DESC", TOKENS_AVERAGE_WALLET_ID_ASC = "TOKENS_AVERAGE_WALLET_ID_ASC", TOKENS_AVERAGE_WALLET_ID_DESC = "TOKENS_AVERAGE_WALLET_ID_DESC", TOKENS_COUNT_ASC = "TOKENS_COUNT_ASC", TOKENS_COUNT_DESC = "TOKENS_COUNT_DESC", TOKENS_DISTINCT_COUNT_BALANCE_ASC = "TOKENS_DISTINCT_COUNT_BALANCE_ASC", TOKENS_DISTINCT_COUNT_BALANCE_DESC = "TOKENS_DISTINCT_COUNT_BALANCE_DESC", TOKENS_DISTINCT_COUNT_BLOCK_RANGE_ASC = "TOKENS_DISTINCT_COUNT_BLOCK_RANGE_ASC", TOKENS_DISTINCT_COUNT_BLOCK_RANGE_DESC = "TOKENS_DISTINCT_COUNT_BLOCK_RANGE_DESC", TOKENS_DISTINCT_COUNT_ID_ASC = "TOKENS_DISTINCT_COUNT_ID_ASC", TOKENS_DISTINCT_COUNT_ID_DESC = "TOKENS_DISTINCT_COUNT_ID_DESC", TOKENS_DISTINCT_COUNT_TOKEN_ID_ASC = "TOKENS_DISTINCT_COUNT_TOKEN_ID_ASC", TOKENS_DISTINCT_COUNT_TOKEN_ID_DESC = "TOKENS_DISTINCT_COUNT_TOKEN_ID_DESC", TOKENS_DISTINCT_COUNT_TOKEN_NAME_ASC = "TOKENS_DISTINCT_COUNT_TOKEN_NAME_ASC", TOKENS_DISTINCT_COUNT_TOKEN_NAME_DESC = "TOKENS_DISTINCT_COUNT_TOKEN_NAME_DESC", TOKENS_DISTINCT_COUNT_TOKEN_SYMBOL_ASC = "TOKENS_DISTINCT_COUNT_TOKEN_SYMBOL_ASC", TOKENS_DISTINCT_COUNT_TOKEN_SYMBOL_DESC = "TOKENS_DISTINCT_COUNT_TOKEN_SYMBOL_DESC", TOKENS_DISTINCT_COUNT_WALLET_ID_ASC = "TOKENS_DISTINCT_COUNT_WALLET_ID_ASC", TOKENS_DISTINCT_COUNT_WALLET_ID_DESC = "TOKENS_DISTINCT_COUNT_WALLET_ID_DESC", TOKENS_MAX_BALANCE_ASC = "TOKENS_MAX_BALANCE_ASC", TOKENS_MAX_BALANCE_DESC = "TOKENS_MAX_BALANCE_DESC", TOKENS_MAX_BLOCK_RANGE_ASC = "TOKENS_MAX_BLOCK_RANGE_ASC", TOKENS_MAX_BLOCK_RANGE_DESC = "TOKENS_MAX_BLOCK_RANGE_DESC", TOKENS_MAX_ID_ASC = "TOKENS_MAX_ID_ASC", TOKENS_MAX_ID_DESC = "TOKENS_MAX_ID_DESC", TOKENS_MAX_TOKEN_ID_ASC = "TOKENS_MAX_TOKEN_ID_ASC", TOKENS_MAX_TOKEN_ID_DESC = "TOKENS_MAX_TOKEN_ID_DESC", TOKENS_MAX_TOKEN_NAME_ASC = "TOKENS_MAX_TOKEN_NAME_ASC", TOKENS_MAX_TOKEN_NAME_DESC = "TOKENS_MAX_TOKEN_NAME_DESC", TOKENS_MAX_TOKEN_SYMBOL_ASC = "TOKENS_MAX_TOKEN_SYMBOL_ASC", TOKENS_MAX_TOKEN_SYMBOL_DESC = "TOKENS_MAX_TOKEN_SYMBOL_DESC", TOKENS_MAX_WALLET_ID_ASC = "TOKENS_MAX_WALLET_ID_ASC", TOKENS_MAX_WALLET_ID_DESC = "TOKENS_MAX_WALLET_ID_DESC", TOKENS_MIN_BALANCE_ASC = "TOKENS_MIN_BALANCE_ASC", TOKENS_MIN_BALANCE_DESC = "TOKENS_MIN_BALANCE_DESC", TOKENS_MIN_BLOCK_RANGE_ASC = "TOKENS_MIN_BLOCK_RANGE_ASC", TOKENS_MIN_BLOCK_RANGE_DESC = "TOKENS_MIN_BLOCK_RANGE_DESC", TOKENS_MIN_ID_ASC = "TOKENS_MIN_ID_ASC", TOKENS_MIN_ID_DESC = "TOKENS_MIN_ID_DESC", TOKENS_MIN_TOKEN_ID_ASC = "TOKENS_MIN_TOKEN_ID_ASC", TOKENS_MIN_TOKEN_ID_DESC = "TOKENS_MIN_TOKEN_ID_DESC", TOKENS_MIN_TOKEN_NAME_ASC = "TOKENS_MIN_TOKEN_NAME_ASC", TOKENS_MIN_TOKEN_NAME_DESC = "TOKENS_MIN_TOKEN_NAME_DESC", TOKENS_MIN_TOKEN_SYMBOL_ASC = "TOKENS_MIN_TOKEN_SYMBOL_ASC", TOKENS_MIN_TOKEN_SYMBOL_DESC = "TOKENS_MIN_TOKEN_SYMBOL_DESC", TOKENS_MIN_WALLET_ID_ASC = "TOKENS_MIN_WALLET_ID_ASC", TOKENS_MIN_WALLET_ID_DESC = "TOKENS_MIN_WALLET_ID_DESC", TOKENS_STDDEV_POPULATION_BALANCE_ASC = "TOKENS_STDDEV_POPULATION_BALANCE_ASC", TOKENS_STDDEV_POPULATION_BALANCE_DESC = "TOKENS_STDDEV_POPULATION_BALANCE_DESC", TOKENS_STDDEV_POPULATION_BLOCK_RANGE_ASC = "TOKENS_STDDEV_POPULATION_BLOCK_RANGE_ASC", TOKENS_STDDEV_POPULATION_BLOCK_RANGE_DESC = "TOKENS_STDDEV_POPULATION_BLOCK_RANGE_DESC", TOKENS_STDDEV_POPULATION_ID_ASC = "TOKENS_STDDEV_POPULATION_ID_ASC", TOKENS_STDDEV_POPULATION_ID_DESC = "TOKENS_STDDEV_POPULATION_ID_DESC", TOKENS_STDDEV_POPULATION_TOKEN_ID_ASC = "TOKENS_STDDEV_POPULATION_TOKEN_ID_ASC", TOKENS_STDDEV_POPULATION_TOKEN_ID_DESC = "TOKENS_STDDEV_POPULATION_TOKEN_ID_DESC", TOKENS_STDDEV_POPULATION_TOKEN_NAME_ASC = "TOKENS_STDDEV_POPULATION_TOKEN_NAME_ASC", TOKENS_STDDEV_POPULATION_TOKEN_NAME_DESC = "TOKENS_STDDEV_POPULATION_TOKEN_NAME_DESC", TOKENS_STDDEV_POPULATION_TOKEN_SYMBOL_ASC = "TOKENS_STDDEV_POPULATION_TOKEN_SYMBOL_ASC", TOKENS_STDDEV_POPULATION_TOKEN_SYMBOL_DESC = "TOKENS_STDDEV_POPULATION_TOKEN_SYMBOL_DESC", TOKENS_STDDEV_POPULATION_WALLET_ID_ASC = "TOKENS_STDDEV_POPULATION_WALLET_ID_ASC", TOKENS_STDDEV_POPULATION_WALLET_ID_DESC = "TOKENS_STDDEV_POPULATION_WALLET_ID_DESC", TOKENS_STDDEV_SAMPLE_BALANCE_ASC = "TOKENS_STDDEV_SAMPLE_BALANCE_ASC", TOKENS_STDDEV_SAMPLE_BALANCE_DESC = "TOKENS_STDDEV_SAMPLE_BALANCE_DESC", TOKENS_STDDEV_SAMPLE_BLOCK_RANGE_ASC = "TOKENS_STDDEV_SAMPLE_BLOCK_RANGE_ASC", TOKENS_STDDEV_SAMPLE_BLOCK_RANGE_DESC = "TOKENS_STDDEV_SAMPLE_BLOCK_RANGE_DESC", TOKENS_STDDEV_SAMPLE_ID_ASC = "TOKENS_STDDEV_SAMPLE_ID_ASC", TOKENS_STDDEV_SAMPLE_ID_DESC = "TOKENS_STDDEV_SAMPLE_ID_DESC", TOKENS_STDDEV_SAMPLE_TOKEN_ID_ASC = "TOKENS_STDDEV_SAMPLE_TOKEN_ID_ASC", TOKENS_STDDEV_SAMPLE_TOKEN_ID_DESC = "TOKENS_STDDEV_SAMPLE_TOKEN_ID_DESC", TOKENS_STDDEV_SAMPLE_TOKEN_NAME_ASC = "TOKENS_STDDEV_SAMPLE_TOKEN_NAME_ASC", TOKENS_STDDEV_SAMPLE_TOKEN_NAME_DESC = "TOKENS_STDDEV_SAMPLE_TOKEN_NAME_DESC", TOKENS_STDDEV_SAMPLE_TOKEN_SYMBOL_ASC = "TOKENS_STDDEV_SAMPLE_TOKEN_SYMBOL_ASC", TOKENS_STDDEV_SAMPLE_TOKEN_SYMBOL_DESC = "TOKENS_STDDEV_SAMPLE_TOKEN_SYMBOL_DESC", TOKENS_STDDEV_SAMPLE_WALLET_ID_ASC = "TOKENS_STDDEV_SAMPLE_WALLET_ID_ASC", TOKENS_STDDEV_SAMPLE_WALLET_ID_DESC = "TOKENS_STDDEV_SAMPLE_WALLET_ID_DESC", TOKENS_SUM_BALANCE_ASC = "TOKENS_SUM_BALANCE_ASC", TOKENS_SUM_BALANCE_DESC = "TOKENS_SUM_BALANCE_DESC", TOKENS_SUM_BLOCK_RANGE_ASC = "TOKENS_SUM_BLOCK_RANGE_ASC", TOKENS_SUM_BLOCK_RANGE_DESC = "TOKENS_SUM_BLOCK_RANGE_DESC", TOKENS_SUM_ID_ASC = "TOKENS_SUM_ID_ASC", TOKENS_SUM_ID_DESC = "TOKENS_SUM_ID_DESC", TOKENS_SUM_TOKEN_ID_ASC = "TOKENS_SUM_TOKEN_ID_ASC", TOKENS_SUM_TOKEN_ID_DESC = "TOKENS_SUM_TOKEN_ID_DESC", TOKENS_SUM_TOKEN_NAME_ASC = "TOKENS_SUM_TOKEN_NAME_ASC", TOKENS_SUM_TOKEN_NAME_DESC = "TOKENS_SUM_TOKEN_NAME_DESC", TOKENS_SUM_TOKEN_SYMBOL_ASC = "TOKENS_SUM_TOKEN_SYMBOL_ASC", TOKENS_SUM_TOKEN_SYMBOL_DESC = "TOKENS_SUM_TOKEN_SYMBOL_DESC", TOKENS_SUM_WALLET_ID_ASC = "TOKENS_SUM_WALLET_ID_ASC", TOKENS_SUM_WALLET_ID_DESC = "TOKENS_SUM_WALLET_ID_DESC", TOKENS_VARIANCE_POPULATION_BALANCE_ASC = "TOKENS_VARIANCE_POPULATION_BALANCE_ASC", TOKENS_VARIANCE_POPULATION_BALANCE_DESC = "TOKENS_VARIANCE_POPULATION_BALANCE_DESC", TOKENS_VARIANCE_POPULATION_BLOCK_RANGE_ASC = "TOKENS_VARIANCE_POPULATION_BLOCK_RANGE_ASC", TOKENS_VARIANCE_POPULATION_BLOCK_RANGE_DESC = "TOKENS_VARIANCE_POPULATION_BLOCK_RANGE_DESC", TOKENS_VARIANCE_POPULATION_ID_ASC = "TOKENS_VARIANCE_POPULATION_ID_ASC", TOKENS_VARIANCE_POPULATION_ID_DESC = "TOKENS_VARIANCE_POPULATION_ID_DESC", TOKENS_VARIANCE_POPULATION_TOKEN_ID_ASC = "TOKENS_VARIANCE_POPULATION_TOKEN_ID_ASC", TOKENS_VARIANCE_POPULATION_TOKEN_ID_DESC = "TOKENS_VARIANCE_POPULATION_TOKEN_ID_DESC", TOKENS_VARIANCE_POPULATION_TOKEN_NAME_ASC = "TOKENS_VARIANCE_POPULATION_TOKEN_NAME_ASC", TOKENS_VARIANCE_POPULATION_TOKEN_NAME_DESC = "TOKENS_VARIANCE_POPULATION_TOKEN_NAME_DESC", TOKENS_VARIANCE_POPULATION_TOKEN_SYMBOL_ASC = "TOKENS_VARIANCE_POPULATION_TOKEN_SYMBOL_ASC", TOKENS_VARIANCE_POPULATION_TOKEN_SYMBOL_DESC = "TOKENS_VARIANCE_POPULATION_TOKEN_SYMBOL_DESC", TOKENS_VARIANCE_POPULATION_WALLET_ID_ASC = "TOKENS_VARIANCE_POPULATION_WALLET_ID_ASC", TOKENS_VARIANCE_POPULATION_WALLET_ID_DESC = "TOKENS_VARIANCE_POPULATION_WALLET_ID_DESC", TOKENS_VARIANCE_SAMPLE_BALANCE_ASC = "TOKENS_VARIANCE_SAMPLE_BALANCE_ASC", TOKENS_VARIANCE_SAMPLE_BALANCE_DESC = "TOKENS_VARIANCE_SAMPLE_BALANCE_DESC", TOKENS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC = "TOKENS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC", TOKENS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC = "TOKENS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC", TOKENS_VARIANCE_SAMPLE_ID_ASC = "TOKENS_VARIANCE_SAMPLE_ID_ASC", TOKENS_VARIANCE_SAMPLE_ID_DESC = "TOKENS_VARIANCE_SAMPLE_ID_DESC", TOKENS_VARIANCE_SAMPLE_TOKEN_ID_ASC = "TOKENS_VARIANCE_SAMPLE_TOKEN_ID_ASC", TOKENS_VARIANCE_SAMPLE_TOKEN_ID_DESC = "TOKENS_VARIANCE_SAMPLE_TOKEN_ID_DESC", TOKENS_VARIANCE_SAMPLE_TOKEN_NAME_ASC = "TOKENS_VARIANCE_SAMPLE_TOKEN_NAME_ASC", TOKENS_VARIANCE_SAMPLE_TOKEN_NAME_DESC = "TOKENS_VARIANCE_SAMPLE_TOKEN_NAME_DESC", TOKENS_VARIANCE_SAMPLE_TOKEN_SYMBOL_ASC = "TOKENS_VARIANCE_SAMPLE_TOKEN_SYMBOL_ASC", TOKENS_VARIANCE_SAMPLE_TOKEN_SYMBOL_DESC = "TOKENS_VARIANCE_SAMPLE_TOKEN_SYMBOL_DESC", TOKENS_VARIANCE_SAMPLE_WALLET_ID_ASC = "TOKENS_VARIANCE_SAMPLE_WALLET_ID_ASC", TOKENS_VARIANCE_SAMPLE_WALLET_ID_DESC = "TOKENS_VARIANCE_SAMPLE_WALLET_ID_DESC", TOKEN_BALANCES_BY_WALLET_ID__COUNT_ASC = "TOKEN_BALANCES_BY_WALLET_ID__COUNT_ASC", TOKEN_BALANCES_BY_WALLET_ID__COUNT_DESC = "TOKEN_BALANCES_BY_WALLET_ID__COUNT_DESC" } type GqlWhitelistedAddress = GqlNode & { id: Scalars['String']['output']; /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ nodeId: Scalars['ID']['output']; }; type GqlWhitelistedAddressAggregates = { /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ distinctCount: Maybe; keys: Maybe>; }; type GqlWhitelistedAddressDistinctCountAggregates = { /** Distinct count of _blockRange across the matching connection */ _blockRange: Maybe; /** Distinct count of _id across the matching connection */ _id: Maybe; /** Distinct count of id across the matching connection */ id: Maybe; }; /** A filter to be used against `WhitelistedAddress` object types. All fields are combined with a logical ‘and.’ */ type GqlWhitelistedAddressFilter = { /** Checks for all expressions in this list. */ and?: InputMaybe>; /** Filter by the object’s `id` field. */ id?: InputMaybe; /** Negates the expression. */ not?: InputMaybe; /** Checks for any expressions in this list. */ or?: InputMaybe>; }; type GqlWhitelistedAddressPayload = { _entity: Maybe; id: Scalars['ID']['output']; mutation_type: GqlMutationType; }; type GqlWhitelistedAddressPayload_entityArgs = { distinct?: InputMaybe>>; }; /** A connection to a list of `WhitelistedAddress` values. */ type GqlWhitelistedAddressesConnection = { /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ aggregates: Maybe; /** A list of edges which contains the `WhitelistedAddress` and cursor to aid in pagination. */ edges: Array; /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ groupedAggregates: Maybe>; /** A list of `WhitelistedAddress` objects. */ nodes: Array>; /** Information to aid in pagination. */ pageInfo: GqlPageInfo; /** The count of *all* `WhitelistedAddress` you could get from the connection. */ totalCount: Scalars['Int']['output']; }; /** A connection to a list of `WhitelistedAddress` values. */ type GqlWhitelistedAddressesConnectiongroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; /** A `WhitelistedAddress` edge in the connection. */ type GqlWhitelistedAddressesEdge = { /** A cursor for use in pagination. */ cursor: Maybe; /** The `WhitelistedAddress` at the end of the edge. */ node: Maybe; }; /** Grouping methods for `WhitelistedAddress` for usage during aggregation. */ declare enum GqlWhitelistedAddressesGroupBy { ID = "ID" } /** Conditions for `WhitelistedAddress` aggregates. */ type GqlWhitelistedAddressesHavingInput = { AND?: InputMaybe>; OR?: InputMaybe>; }; /** Methods to use when ordering `WhitelistedAddress`. */ declare enum GqlWhitelistedAddressesOrderBy { ID_ASC = "ID_ASC", ID_DESC = "ID_DESC", NATURAL = "NATURAL", PRIMARY_KEY_ASC = "PRIMARY_KEY_ASC", PRIMARY_KEY_DESC = "PRIMARY_KEY_DESC" } type Gql_Metadata = { chain: Maybe; dbSize: Maybe; deployments: Maybe; dynamicDatasources: Maybe>>; evmChainId: Maybe; genesisHash: Maybe; indexerHealthy: Maybe; indexerNodeVersion: Maybe; lastCreatedPoiHeight: Maybe; lastFinalizedVerifiedHeight: Maybe; lastProcessedHeight: Maybe; lastProcessedTimestamp: Maybe; latestSyncedPoiHeight: Maybe; queryNodeVersion: Maybe; rowCountEstimate: Maybe>>; specName: Maybe; startHeight: Maybe; targetHeight: Maybe; unfinalizedBlocks: Maybe; }; type Gql_Metadatas = { nodes: Array>; totalCount: Scalars['Int']['output']; }; type Gql_MetadatasEdge = { cursor: Maybe; node: Maybe; }; declare enum Gqlasset_transfers_distinct_enum { DECIMALS = "DECIMALS", FROM_ID = "FROM_ID", ID = "ID", NFT_ID = "NFT_ID", TOKEN_ID = "TOKEN_ID", TO_ID = "TO_ID", TRANSACTION_BLOCK_NUMBER = "TRANSACTION_BLOCK_NUMBER", TRANSACTION_ID = "TRANSACTION_ID", TYPE = "TYPE", VALUE = "VALUE" } declare enum Gqlnft_balances_distinct_enum { BALANCE = "BALANCE", ID = "ID", NFT_ID = "NFT_ID", NFT_TOKEN_ID = "NFT_TOKEN_ID", WALLET_ID = "WALLET_ID" } declare enum Gqlnfts_distinct_enum { COLLECTION_ID = "COLLECTION_ID", ID = "ID", METADATA = "METADATA", TOKEN_ID = "TOKEN_ID" } declare enum Gqlorder_transactions_distinct_enum { ASSET_TRANSFER_ID = "ASSET_TRANSFER_ID", ID = "ID", ORDER_ID = "ORDER_ID" } declare enum Gqlorders_distinct_enum { CREATED_AT = "CREATED_AT", ID = "ID", ITEMS = "ITEMS", PRICE = "PRICE" } declare enum Gqltoken_balances_distinct_enum { BALANCE = "BALANCE", ID = "ID", TOKEN_ID = "TOKEN_ID", TOKEN_NAME = "TOKEN_NAME", TOKEN_SYMBOL = "TOKEN_SYMBOL", WALLET_ID = "WALLET_ID" } declare enum Gqltoken_contracts_distinct_enum { DECIMALS = "DECIMALS", ICON_URL = "ICON_URL", ID = "ID", NAME = "NAME", SYMBOL = "SYMBOL", TYPE = "TYPE" } declare enum Gqltransactions_distinct_enum { BLOCK_HASH = "BLOCK_HASH", BLOCK_NUMBER = "BLOCK_NUMBER", DATE = "DATE", FEES = "FEES", GAS_PRICE = "GAS_PRICE", GAS_USED = "GAS_USED", ID = "ID", SUCCESS = "SUCCESS" } declare enum Gqlwallets_distinct_enum { BALANCE = "BALANCE", ID = "ID" } declare enum Gqlwhitelisted_addresses_distinct_enum { ID = "ID" } type GqlwalletBalanceQueryVariables = Exact<{ walletId: Scalars['String']['input']; }>; type GqlwalletBalanceQuery = { res: { id: string; balance: string; } | null; }; type GqlwalletSubscriptionSubscriptionVariables = Exact<{ walletIds?: InputMaybe | Scalars['ID']['input']>; mutation?: InputMaybe | GqlMutationType>; }>; type GqlwalletSubscriptionSubscription = { sub: { mutationType: GqlMutationType; entity: { id: string; balance: string; } | null; } | null; }; type GqlwalletTokenBalancesQueryVariables = Exact<{ walletId: Scalars['String']['input']; first?: InputMaybe; after?: InputMaybe; orderBy?: InputMaybe | GqlTokenBalancesOrderBy>; }>; type GqlwalletTokenBalancesQuery = { res: { totalCount: number; pageInfo: { endCursor: string | null; startCursor: string | null; hasNextPage: boolean; hasPreviousPage: boolean; }; edges: Array<{ cursor: string | null; node: { id: string; nodeId: string; walletId: string; balance: string; token: { id: string; type: string; name: string | null; symbol: string | null; decimals: number | null; iconUrl: string | null; } | null; } | null; }>; } | null; }; type GqltokenBalancesSubscriptionSubscriptionVariables = Exact<{ tokenBalancesIds?: InputMaybe | Scalars['ID']['input']>; mutation?: InputMaybe | GqlMutationType>; }>; type GqltokenBalancesSubscriptionSubscription = { sub: { mutationType: GqlMutationType; entity: { id: string; nodeId: string; walletId: string; balance: string; token: { id: string; type: string; name: string | null; symbol: string | null; decimals: number | null; iconUrl: string | null; } | null; } | null; } | null; }; type GqlwalletTokenBalanceQueryVariables = Exact<{ tokenBalanceId: Scalars['String']['input']; }>; type GqlwalletTokenBalanceQuery = { res: { id: string; nodeId: string; walletId: string; balance: string; token: { id: string; type: string; name: string | null; symbol: string | null; decimals: number | null; iconUrl: string | null; } | null; } | null; }; type GqlwalletNftsQueryVariables = Exact<{ walletId: Scalars['String']['input']; first?: InputMaybe; after?: InputMaybe; orderBy?: InputMaybe | GqlNftBalancesOrderBy>; }>; type GqlwalletNftsQuery = { res: { totalCount: number; pageInfo: { endCursor: string | null; startCursor: string | null; hasNextPage: boolean; hasPreviousPage: boolean; }; edges: Array<{ cursor: string | null; node: { id: string; nodeId: string; walletId: string; balance: string; nft: { id: string; tokenId: string; metadata: any; collection: { id: string; type: string; name: string | null; symbol: string | null; decimals: number | null; iconUrl: string | null; } | null; nftBalances: { nodes: Array<{ id: string; wallet: { id: string; } | null; } | null>; }; } | null; } | null; }>; } | null; }; type GqlnftBalancesSubscriptionSubscriptionVariables = Exact<{ nftBalanceIds?: InputMaybe | Scalars['ID']['input']>; mutation?: InputMaybe | GqlMutationType>; }>; type GqlnftBalancesSubscriptionSubscription = { sub: { mutationType: GqlMutationType; entity: { id: string; nodeId: string; walletId: string; balance: string; nft: { id: string; tokenId: string; metadata: any; collection: { id: string; type: string; name: string | null; symbol: string | null; decimals: number | null; iconUrl: string | null; } | null; nftBalances: { nodes: Array<{ id: string; wallet: { id: string; } | null; } | null>; }; } | null; } | null; } | null; }; type GqlwalletNftQueryVariables = Exact<{ nftBalanceId: Scalars['String']['input']; }>; type GqlwalletNftQuery = { res: { id: string; nodeId: string; walletId: string; balance: string; nft: { id: string; tokenId: string; metadata: any; collection: { id: string; type: string; name: string | null; symbol: string | null; decimals: number | null; iconUrl: string | null; } | null; nftBalances: { nodes: Array<{ id: string; wallet: { id: string; } | null; } | null>; }; } | null; } | null; }; type GqlnftQueryVariables = Exact<{ nftId: Scalars['String']['input']; }>; type GqlnftQuery = { res: { id: string; tokenId: string; metadata: any; collection: { id: string; type: string; name: string | null; symbol: string | null; decimals: number | null; iconUrl: string | null; } | null; nftBalances: { nodes: Array<{ id: string; wallet: { id: string; } | null; } | null>; }; } | null; }; type GqlnftSubscriptionSubscriptionVariables = Exact<{ nftIds?: InputMaybe | Scalars['ID']['input']>; mutation?: InputMaybe | GqlMutationType>; }>; type GqlnftSubscriptionSubscription = { sub: { mutationType: GqlMutationType; entity: { id: string; tokenId: string; metadata: any; collection: { id: string; type: string; name: string | null; symbol: string | null; decimals: number | null; iconUrl: string | null; } | null; nftBalances: { nodes: Array<{ id: string; wallet: { id: string; } | null; } | null>; }; } | null; } | null; }; type GqlwalletAssetTransfersQueryVariables = Exact<{ walletId: Scalars['String']['input']; first?: InputMaybe; after?: InputMaybe; orderBy?: InputMaybe | GqlAssetTransfersOrderBy>; }>; type GqlwalletAssetTransfersQuery = { res: { totalCount: number; pageInfo: { endCursor: string | null; startCursor: string | null; hasNextPage: boolean; hasPreviousPage: boolean; }; edges: Array<{ cursor: string | null; node: { id: string; nodeId: string; fromId: string; toId: string | null; type: string; value: string; decimals: number | null; transaction: { id: string; blockNumber: string; blockHash: string; date: string; gasUsed: string; gasPrice: string; fees: string; success: boolean; } | null; token: { id: string; type: string; name: string | null; symbol: string | null; decimals: number | null; iconUrl: string | null; } | null; nft: { id: string; tokenId: string; metadata: any; collection: { id: string; type: string; name: string | null; symbol: string | null; decimals: number | null; iconUrl: string | null; } | null; nftBalances: { nodes: Array<{ id: string; wallet: { id: string; } | null; } | null>; }; } | null; } | null; }>; } | null; }; type GqlassetTransfersSubscriptionSubscriptionVariables = Exact<{ assetTransferIds?: InputMaybe | Scalars['ID']['input']>; mutation?: InputMaybe | GqlMutationType>; }>; type GqlassetTransfersSubscriptionSubscription = { sub: { mutationType: GqlMutationType; entity: { id: string; nodeId: string; fromId: string; toId: string | null; type: string; value: string; decimals: number | null; transaction: { id: string; blockNumber: string; blockHash: string; date: string; gasUsed: string; gasPrice: string; fees: string; success: boolean; } | null; token: { id: string; type: string; name: string | null; symbol: string | null; decimals: number | null; iconUrl: string | null; } | null; nft: { id: string; tokenId: string; metadata: any; collection: { id: string; type: string; name: string | null; symbol: string | null; decimals: number | null; iconUrl: string | null; } | null; nftBalances: { nodes: Array<{ id: string; wallet: { id: string; } | null; } | null>; }; } | null; } | null; } | null; }; type GqlwalletOrdersQueryVariables = Exact<{ walletId: Scalars['String']['input']; first?: InputMaybe; after?: InputMaybe; orderBy?: InputMaybe | GqlOrdersOrderBy>; }>; type GqlwalletOrdersQuery = { res: { totalCount: number; pageInfo: { endCursor: string | null; startCursor: string | null; hasNextPage: boolean; hasPreviousPage: boolean; }; edges: Array<{ cursor: string | null; node: { id: string; nodeId: string; createdAt: string; price: number; items: any; orderTransactions: { nodes: Array<{ assetTransferId: string; assetTransfer: { id: string; nodeId: string; fromId: string; toId: string | null; type: string; value: string; decimals: number | null; transaction: { id: string; blockNumber: string; blockHash: string; date: string; gasUsed: string; gasPrice: string; fees: string; success: boolean; } | null; token: { id: string; type: string; name: string | null; symbol: string | null; decimals: number | null; iconUrl: string | null; } | null; nft: { id: string; tokenId: string; metadata: any; collection: { id: string; type: string; name: string | null; symbol: string | null; decimals: number | null; iconUrl: string | null; } | null; nftBalances: { nodes: Array<{ id: string; wallet: { id: string; } | null; } | null>; }; } | null; } | null; } | null>; }; } | null; }>; } | null; }; type GqlordersSubscriptionSubscriptionVariables = Exact<{ orderIds?: InputMaybe | Scalars['ID']['input']>; mutation?: InputMaybe | GqlMutationType>; }>; type GqlordersSubscriptionSubscription = { sub: { mutationType: GqlMutationType; entity: { id: string; nodeId: string; createdAt: string; price: number; items: any; orderTransactions: { nodes: Array<{ assetTransferId: string; assetTransfer: { id: string; nodeId: string; fromId: string; toId: string | null; type: string; value: string; decimals: number | null; transaction: { id: string; blockNumber: string; blockHash: string; date: string; gasUsed: string; gasPrice: string; fees: string; success: boolean; } | null; token: { id: string; type: string; name: string | null; symbol: string | null; decimals: number | null; iconUrl: string | null; } | null; nft: { id: string; tokenId: string; metadata: any; collection: { id: string; type: string; name: string | null; symbol: string | null; decimals: number | null; iconUrl: string | null; } | null; nftBalances: { nodes: Array<{ id: string; wallet: { id: string; } | null; } | null>; }; } | null; } | null; } | null>; }; } | null; } | null; }; type GqlKeybanClient_PageInfoFragment = { endCursor: string | null; startCursor: string | null; hasNextPage: boolean; hasPreviousPage: boolean; }; type GqlKeybanClient_WalletFragment = { id: string; balance: string; }; type GqlKeybanClient_TokenContractFragment = { id: string; type: string; name: string | null; symbol: string | null; decimals: number | null; iconUrl: string | null; }; type GqlKeybanClient_TokenBalanceFragment = { id: string; nodeId: string; walletId: string; balance: string; token: { id: string; type: string; name: string | null; symbol: string | null; decimals: number | null; iconUrl: string | null; } | null; }; type GqlKeybanClient_NftFragment = { id: string; tokenId: string; metadata: any; collection: { id: string; type: string; name: string | null; symbol: string | null; decimals: number | null; iconUrl: string | null; } | null; nftBalances: { nodes: Array<{ id: string; wallet: { id: string; } | null; } | null>; }; }; type GqlKeybanClient_NftBalanceFragment = { id: string; nodeId: string; walletId: string; balance: string; nft: { id: string; tokenId: string; metadata: any; collection: { id: string; type: string; name: string | null; symbol: string | null; decimals: number | null; iconUrl: string | null; } | null; nftBalances: { nodes: Array<{ id: string; wallet: { id: string; } | null; } | null>; }; } | null; }; type GqlKeybanClient_TransactionFragment = { id: string; blockNumber: string; blockHash: string; date: string; gasUsed: string; gasPrice: string; fees: string; success: boolean; }; type GqlKeybanClient_AssetTransferFragment = { id: string; nodeId: string; fromId: string; toId: string | null; type: string; value: string; decimals: number | null; transaction: { id: string; blockNumber: string; blockHash: string; date: string; gasUsed: string; gasPrice: string; fees: string; success: boolean; } | null; token: { id: string; type: string; name: string | null; symbol: string | null; decimals: number | null; iconUrl: string | null; } | null; nft: { id: string; tokenId: string; metadata: any; collection: { id: string; type: string; name: string | null; symbol: string | null; decimals: number | null; iconUrl: string | null; } | null; nftBalances: { nodes: Array<{ id: string; wallet: { id: string; } | null; } | null>; }; } | null; }; type GqlKeybanClient_OrderFragment = { id: string; nodeId: string; createdAt: string; price: number; items: any; orderTransactions: { nodes: Array<{ assetTransferId: string; assetTransfer: { id: string; nodeId: string; fromId: string; toId: string | null; type: string; value: string; decimals: number | null; transaction: { id: string; blockNumber: string; blockHash: string; date: string; gasUsed: string; gasPrice: string; fees: string; success: boolean; } | null; token: { id: string; type: string; name: string | null; symbol: string | null; decimals: number | null; iconUrl: string | null; } | null; nft: { id: string; tokenId: string; metadata: any; collection: { id: string; type: string; name: string | null; symbol: string | null; decimals: number | null; iconUrl: string | null; } | null; nftBalances: { nodes: Array<{ id: string; wallet: { id: string; } | null; } | null>; }; } | null; } | null; } | null>; }; }; declare const KeybanClient_PageInfoFragmentDoc: TypedDocumentNode; declare const KeybanClient_WalletFragmentDoc: TypedDocumentNode; declare const KeybanClient_TokenContractFragmentDoc: TypedDocumentNode; declare const KeybanClient_TokenBalanceFragmentDoc: TypedDocumentNode; declare const KeybanClient_NftFragmentDoc: TypedDocumentNode; declare const KeybanClient_NftBalanceFragmentDoc: TypedDocumentNode; declare const KeybanClient_TransactionFragmentDoc: TypedDocumentNode; declare const KeybanClient_AssetTransferFragmentDoc: TypedDocumentNode; declare const KeybanClient_OrderFragmentDoc: TypedDocumentNode; declare const walletBalanceDocument: TypedDocumentNode; declare const walletSubscriptionDocument: TypedDocumentNode; declare const walletTokenBalancesDocument: TypedDocumentNode; declare const tokenBalancesSubscriptionDocument: TypedDocumentNode; declare const walletTokenBalanceDocument: TypedDocumentNode; declare const walletNftsDocument: TypedDocumentNode; declare const nftBalancesSubscriptionDocument: TypedDocumentNode; declare const walletNftDocument: TypedDocumentNode; declare const nftDocument: TypedDocumentNode; declare const nftSubscriptionDocument: TypedDocumentNode; declare const walletAssetTransfersDocument: TypedDocumentNode; declare const assetTransfersSubscriptionDocument: TypedDocumentNode; declare const walletOrdersDocument: TypedDocumentNode; declare const ordersSubscriptionDocument: TypedDocumentNode; export { type Exact, type GqlAssetTransfer, type GqlAssetTransferAggregates, type GqlAssetTransferAggregatesFilter, type GqlAssetTransferAverageAggregateFilter, type GqlAssetTransferAverageAggregates, type GqlAssetTransferDistinctCountAggregateFilter, type GqlAssetTransferDistinctCountAggregates, type GqlAssetTransferFilter, type GqlAssetTransferMaxAggregateFilter, type GqlAssetTransferMaxAggregates, type GqlAssetTransferMinAggregateFilter, type GqlAssetTransferMinAggregates, type GqlAssetTransferOrdersByOrderTransactionAssetTransferIdAndOrderIdManyToManyConnection, type GqlAssetTransferOrdersByOrderTransactionAssetTransferIdAndOrderIdManyToManyConnectiongroupedAggregatesArgs, type GqlAssetTransferOrdersByOrderTransactionAssetTransferIdAndOrderIdManyToManyEdge, type GqlAssetTransferOrdersByOrderTransactionAssetTransferIdAndOrderIdManyToManyEdgeorderTransactionsArgs, type GqlAssetTransferPayload, type GqlAssetTransferPayload_entityArgs, type GqlAssetTransferStddevPopulationAggregateFilter, type GqlAssetTransferStddevPopulationAggregates, type GqlAssetTransferStddevSampleAggregateFilter, type GqlAssetTransferStddevSampleAggregates, type GqlAssetTransferSumAggregateFilter, type GqlAssetTransferSumAggregates, type GqlAssetTransferToManyOrderTransactionFilter, type GqlAssetTransferVariancePopulationAggregateFilter, type GqlAssetTransferVariancePopulationAggregates, type GqlAssetTransferVarianceSampleAggregateFilter, type GqlAssetTransferVarianceSampleAggregates, type GqlAssetTransferorderTransactionsArgs, type GqlAssetTransferordersByOrderTransactionAssetTransferIdAndOrderIdArgs, type GqlAssetTransfersConnection, type GqlAssetTransfersConnectiongroupedAggregatesArgs, type GqlAssetTransfersEdge, GqlAssetTransfersGroupBy, type GqlAssetTransfersHavingAverageInput, type GqlAssetTransfersHavingDistinctCountInput, type GqlAssetTransfersHavingInput, type GqlAssetTransfersHavingMaxInput, type GqlAssetTransfersHavingMinInput, type GqlAssetTransfersHavingStddevPopulationInput, type GqlAssetTransfersHavingStddevSampleInput, type GqlAssetTransfersHavingSumInput, type GqlAssetTransfersHavingVariancePopulationInput, type GqlAssetTransfersHavingVarianceSampleInput, GqlAssetTransfersOrderBy, type GqlBigFloatFilter, type GqlBigIntFilter, type GqlBooleanFilter, type GqlDatetimeFilter, type GqlHavingBigfloatFilter, type GqlHavingDatetimeFilter, type GqlHavingIntFilter, type GqlIntFilter, type GqlJSONFilter, type GqlKeybanClient_AssetTransferFragment, type GqlKeybanClient_NftBalanceFragment, type GqlKeybanClient_NftFragment, type GqlKeybanClient_OrderFragment, type GqlKeybanClient_PageInfoFragment, type GqlKeybanClient_TokenBalanceFragment, type GqlKeybanClient_TokenContractFragment, type GqlKeybanClient_TransactionFragment, type GqlKeybanClient_WalletFragment, GqlMutationType, type GqlNft, type GqlNftAggregates, type GqlNftAggregatesFilter, type GqlNftAverageAggregateFilter, type GqlNftAverageAggregates, type GqlNftBalance, type GqlNftBalanceAggregates, type GqlNftBalanceAggregatesFilter, type GqlNftBalanceAverageAggregateFilter, type GqlNftBalanceAverageAggregates, type GqlNftBalanceDistinctCountAggregateFilter, type GqlNftBalanceDistinctCountAggregates, type GqlNftBalanceFilter, type GqlNftBalanceMaxAggregateFilter, type GqlNftBalanceMaxAggregates, type GqlNftBalanceMinAggregateFilter, type GqlNftBalanceMinAggregates, type GqlNftBalancePayload, type GqlNftBalancePayload_entityArgs, type GqlNftBalanceStddevPopulationAggregateFilter, type GqlNftBalanceStddevPopulationAggregates, type GqlNftBalanceStddevSampleAggregateFilter, type GqlNftBalanceStddevSampleAggregates, type GqlNftBalanceSumAggregateFilter, type GqlNftBalanceSumAggregates, type GqlNftBalanceVariancePopulationAggregateFilter, type GqlNftBalanceVariancePopulationAggregates, type GqlNftBalanceVarianceSampleAggregateFilter, type GqlNftBalanceVarianceSampleAggregates, type GqlNftBalancesConnection, type GqlNftBalancesConnectiongroupedAggregatesArgs, type GqlNftBalancesEdge, GqlNftBalancesGroupBy, type GqlNftBalancesHavingAverageInput, type GqlNftBalancesHavingDistinctCountInput, type GqlNftBalancesHavingInput, type GqlNftBalancesHavingMaxInput, type GqlNftBalancesHavingMinInput, type GqlNftBalancesHavingStddevPopulationInput, type GqlNftBalancesHavingStddevSampleInput, type GqlNftBalancesHavingSumInput, type GqlNftBalancesHavingVariancePopulationInput, type GqlNftBalancesHavingVarianceSampleInput, GqlNftBalancesOrderBy, type GqlNftDistinctCountAggregateFilter, type GqlNftDistinctCountAggregates, type GqlNftFilter, type GqlNftMaxAggregateFilter, type GqlNftMaxAggregates, type GqlNftMinAggregateFilter, type GqlNftMinAggregates, type GqlNftPayload, type GqlNftPayload_entityArgs, type GqlNftStddevPopulationAggregateFilter, type GqlNftStddevPopulationAggregates, type GqlNftStddevSampleAggregateFilter, type GqlNftStddevSampleAggregates, type GqlNftSumAggregateFilter, type GqlNftSumAggregates, type GqlNftToManyAssetTransferFilter, type GqlNftToManyNftBalanceFilter, type GqlNftTokenContractsByAssetTransferNftIdAndTokenIdManyToManyConnection, type GqlNftTokenContractsByAssetTransferNftIdAndTokenIdManyToManyConnectiongroupedAggregatesArgs, type GqlNftTokenContractsByAssetTransferNftIdAndTokenIdManyToManyEdge, type GqlNftTokenContractsByAssetTransferNftIdAndTokenIdManyToManyEdgeassetTransfersByTokenIdArgs, type GqlNftTransactionsByAssetTransferNftIdAndTransactionIdManyToManyConnection, type GqlNftTransactionsByAssetTransferNftIdAndTransactionIdManyToManyConnectiongroupedAggregatesArgs, type GqlNftTransactionsByAssetTransferNftIdAndTransactionIdManyToManyEdge, type GqlNftTransactionsByAssetTransferNftIdAndTransactionIdManyToManyEdgeassetTransfersArgs, type GqlNftVariancePopulationAggregateFilter, type GqlNftVariancePopulationAggregates, type GqlNftVarianceSampleAggregateFilter, type GqlNftVarianceSampleAggregates, type GqlNftWalletsByAssetTransferNftIdAndFromIdManyToManyConnection, type GqlNftWalletsByAssetTransferNftIdAndFromIdManyToManyConnectiongroupedAggregatesArgs, type GqlNftWalletsByAssetTransferNftIdAndFromIdManyToManyEdge, type GqlNftWalletsByAssetTransferNftIdAndFromIdManyToManyEdgeassetTransfersByFromIdArgs, type GqlNftWalletsByAssetTransferNftIdAndToIdManyToManyConnection, type GqlNftWalletsByAssetTransferNftIdAndToIdManyToManyConnectiongroupedAggregatesArgs, type GqlNftWalletsByAssetTransferNftIdAndToIdManyToManyEdge, type GqlNftWalletsByAssetTransferNftIdAndToIdManyToManyEdgeassetTransfersByToIdArgs, type GqlNftWalletsByNftBalanceNftIdAndWalletIdManyToManyConnection, type GqlNftWalletsByNftBalanceNftIdAndWalletIdManyToManyConnectiongroupedAggregatesArgs, type GqlNftWalletsByNftBalanceNftIdAndWalletIdManyToManyEdge, type GqlNftWalletsByNftBalanceNftIdAndWalletIdManyToManyEdgenftsArgs, type GqlNftassetTransfersArgs, type GqlNftnftBalancesArgs, type GqlNftsConnection, type GqlNftsConnectiongroupedAggregatesArgs, type GqlNftsEdge, GqlNftsGroupBy, type GqlNftsHavingAverageInput, type GqlNftsHavingDistinctCountInput, type GqlNftsHavingInput, type GqlNftsHavingMaxInput, type GqlNftsHavingMinInput, type GqlNftsHavingStddevPopulationInput, type GqlNftsHavingStddevSampleInput, type GqlNftsHavingSumInput, type GqlNftsHavingVariancePopulationInput, type GqlNftsHavingVarianceSampleInput, GqlNftsOrderBy, type GqlNfttokenContractsByAssetTransferNftIdAndTokenIdArgs, type GqlNfttransactionsByAssetTransferNftIdAndTransactionIdArgs, type GqlNftwalletsByAssetTransferNftIdAndFromIdArgs, type GqlNftwalletsByAssetTransferNftIdAndToIdArgs, type GqlNftwalletsByNftBalanceNftIdAndWalletIdArgs, type GqlNode, GqlNullOrder, type GqlOrder, type GqlOrderAggregates, type GqlOrderAssetTransfersByOrderTransactionOrderIdAndAssetTransferIdManyToManyConnection, type GqlOrderAssetTransfersByOrderTransactionOrderIdAndAssetTransferIdManyToManyConnectiongroupedAggregatesArgs, type GqlOrderAssetTransfersByOrderTransactionOrderIdAndAssetTransferIdManyToManyEdge, type GqlOrderAssetTransfersByOrderTransactionOrderIdAndAssetTransferIdManyToManyEdgeorderTransactionsArgs, type GqlOrderAverageAggregates, type GqlOrderDistinctCountAggregates, type GqlOrderFilter, type GqlOrderMaxAggregates, type GqlOrderMinAggregates, type GqlOrderPayload, type GqlOrderPayload_entityArgs, type GqlOrderStddevPopulationAggregates, type GqlOrderStddevSampleAggregates, type GqlOrderSumAggregates, type GqlOrderToManyOrderTransactionFilter, type GqlOrderTransaction, type GqlOrderTransactionAggregates, type GqlOrderTransactionAggregatesFilter, type GqlOrderTransactionDistinctCountAggregateFilter, type GqlOrderTransactionDistinctCountAggregates, type GqlOrderTransactionFilter, type GqlOrderTransactionPayload, type GqlOrderTransactionPayload_entityArgs, type GqlOrderTransactionsConnection, type GqlOrderTransactionsConnectiongroupedAggregatesArgs, type GqlOrderTransactionsEdge, GqlOrderTransactionsGroupBy, type GqlOrderTransactionsHavingInput, GqlOrderTransactionsOrderBy, type GqlOrderVariancePopulationAggregates, type GqlOrderVarianceSampleAggregates, type GqlOrderassetTransfersByOrderTransactionOrderIdAndAssetTransferIdArgs, type GqlOrderorderTransactionsArgs, type GqlOrdersConnection, type GqlOrdersConnectiongroupedAggregatesArgs, type GqlOrdersEdge, GqlOrdersGroupBy, type GqlOrdersHavingAverageInput, type GqlOrdersHavingDistinctCountInput, type GqlOrdersHavingInput, type GqlOrdersHavingMaxInput, type GqlOrdersHavingMinInput, type GqlOrdersHavingStddevPopulationInput, type GqlOrdersHavingStddevSampleInput, type GqlOrdersHavingSumInput, type GqlOrdersHavingVariancePopulationInput, type GqlOrdersHavingVarianceSampleInput, GqlOrdersOrderBy, type GqlPageInfo, type GqlQuery, type GqlQuery_metadataArgs, type GqlQuery_metadatasArgs, type GqlQueryassetTransferArgs, type GqlQueryassetTransferByNodeIdArgs, type GqlQueryassetTransfersArgs, type GqlQuerynftArgs, type GqlQuerynftBalanceArgs, type GqlQuerynftBalanceByNodeIdArgs, type GqlQuerynftBalancesArgs, type GqlQuerynftByNodeIdArgs, type GqlQuerynftsArgs, type GqlQuerynodeArgs, type GqlQueryorderArgs, type GqlQueryorderByNodeIdArgs, type GqlQueryorderTransactionArgs, type GqlQueryorderTransactionByNodeIdArgs, type GqlQueryorderTransactionsArgs, type GqlQueryordersArgs, type GqlQuerytokenBalanceArgs, type GqlQuerytokenBalanceByNodeIdArgs, type GqlQuerytokenBalancesArgs, type GqlQuerytokenContractArgs, type GqlQuerytokenContractByNodeIdArgs, type GqlQuerytokenContractsArgs, type GqlQuerytransactionArgs, type GqlQuerytransactionByNodeIdArgs, type GqlQuerytransactionsArgs, type GqlQuerywalletArgs, type GqlQuerywalletByNodeIdArgs, type GqlQuerywalletsArgs, type GqlQuerywhitelistedAddressArgs, type GqlQuerywhitelistedAddressByNodeIdArgs, type GqlQuerywhitelistedAddressesArgs, type GqlStringFilter, type GqlSubscription, type GqlSubscriptionassetTransfersArgs, type GqlSubscriptionnftBalancesArgs, type GqlSubscriptionnftsArgs, type GqlSubscriptionorderTransactionsArgs, type GqlSubscriptionordersArgs, type GqlSubscriptiontokenBalancesArgs, type GqlSubscriptiontokenContractsArgs, type GqlSubscriptiontransactionsArgs, type GqlSubscriptionwalletsArgs, type GqlSubscriptionwhitelistedAddressesArgs, type GqlTableEstimate, type GqlTokenBalance, type GqlTokenBalanceAggregates, type GqlTokenBalanceAggregatesFilter, type GqlTokenBalanceAverageAggregateFilter, type GqlTokenBalanceAverageAggregates, type GqlTokenBalanceDistinctCountAggregateFilter, type GqlTokenBalanceDistinctCountAggregates, type GqlTokenBalanceFilter, type GqlTokenBalanceMaxAggregateFilter, type GqlTokenBalanceMaxAggregates, type GqlTokenBalanceMinAggregateFilter, type GqlTokenBalanceMinAggregates, type GqlTokenBalancePayload, type GqlTokenBalancePayload_entityArgs, type GqlTokenBalanceStddevPopulationAggregateFilter, type GqlTokenBalanceStddevPopulationAggregates, type GqlTokenBalanceStddevSampleAggregateFilter, type GqlTokenBalanceStddevSampleAggregates, type GqlTokenBalanceSumAggregateFilter, type GqlTokenBalanceSumAggregates, type GqlTokenBalanceVariancePopulationAggregateFilter, type GqlTokenBalanceVariancePopulationAggregates, type GqlTokenBalanceVarianceSampleAggregateFilter, type GqlTokenBalanceVarianceSampleAggregates, type GqlTokenBalancesConnection, type GqlTokenBalancesConnectiongroupedAggregatesArgs, type GqlTokenBalancesEdge, GqlTokenBalancesGroupBy, type GqlTokenBalancesHavingAverageInput, type GqlTokenBalancesHavingDistinctCountInput, type GqlTokenBalancesHavingInput, type GqlTokenBalancesHavingMaxInput, type GqlTokenBalancesHavingMinInput, type GqlTokenBalancesHavingStddevPopulationInput, type GqlTokenBalancesHavingStddevSampleInput, type GqlTokenBalancesHavingSumInput, type GqlTokenBalancesHavingVariancePopulationInput, type GqlTokenBalancesHavingVarianceSampleInput, GqlTokenBalancesOrderBy, type GqlTokenContract, type GqlTokenContractAggregates, type GqlTokenContractAverageAggregates, type GqlTokenContractDistinctCountAggregates, type GqlTokenContractFilter, type GqlTokenContractMaxAggregates, type GqlTokenContractMinAggregates, type GqlTokenContractNftsByAssetTransferTokenIdAndNftIdManyToManyConnection, type GqlTokenContractNftsByAssetTransferTokenIdAndNftIdManyToManyConnectiongroupedAggregatesArgs, type GqlTokenContractNftsByAssetTransferTokenIdAndNftIdManyToManyEdge, type GqlTokenContractNftsByAssetTransferTokenIdAndNftIdManyToManyEdgeassetTransfersArgs, type GqlTokenContractPayload, type GqlTokenContractPayload_entityArgs, type GqlTokenContractStddevPopulationAggregates, type GqlTokenContractStddevSampleAggregates, type GqlTokenContractSumAggregates, type GqlTokenContractToManyAssetTransferFilter, type GqlTokenContractToManyNftFilter, type GqlTokenContractToManyTokenBalanceFilter, type GqlTokenContractTransactionsByAssetTransferTokenIdAndTransactionIdManyToManyConnection, type GqlTokenContractTransactionsByAssetTransferTokenIdAndTransactionIdManyToManyConnectiongroupedAggregatesArgs, type GqlTokenContractTransactionsByAssetTransferTokenIdAndTransactionIdManyToManyEdge, type GqlTokenContractTransactionsByAssetTransferTokenIdAndTransactionIdManyToManyEdgeassetTransfersArgs, type GqlTokenContractVariancePopulationAggregates, type GqlTokenContractVarianceSampleAggregates, type GqlTokenContractWalletsByAssetTransferTokenIdAndFromIdManyToManyConnection, type GqlTokenContractWalletsByAssetTransferTokenIdAndFromIdManyToManyConnectiongroupedAggregatesArgs, type GqlTokenContractWalletsByAssetTransferTokenIdAndFromIdManyToManyEdge, type GqlTokenContractWalletsByAssetTransferTokenIdAndFromIdManyToManyEdgeassetTransfersByFromIdArgs, type GqlTokenContractWalletsByAssetTransferTokenIdAndToIdManyToManyConnection, type GqlTokenContractWalletsByAssetTransferTokenIdAndToIdManyToManyConnectiongroupedAggregatesArgs, type GqlTokenContractWalletsByAssetTransferTokenIdAndToIdManyToManyEdge, type GqlTokenContractWalletsByAssetTransferTokenIdAndToIdManyToManyEdgeassetTransfersByToIdArgs, type GqlTokenContractWalletsByTokenBalanceTokenIdAndWalletIdManyToManyConnection, type GqlTokenContractWalletsByTokenBalanceTokenIdAndWalletIdManyToManyConnectiongroupedAggregatesArgs, type GqlTokenContractWalletsByTokenBalanceTokenIdAndWalletIdManyToManyEdge, type GqlTokenContractWalletsByTokenBalanceTokenIdAndWalletIdManyToManyEdgetokensArgs, type GqlTokenContractassetTransfersByTokenIdArgs, type GqlTokenContractnftsByAssetTransferTokenIdAndNftIdArgs, type GqlTokenContractnftsByCollectionIdArgs, type GqlTokenContractsConnection, type GqlTokenContractsConnectiongroupedAggregatesArgs, type GqlTokenContractsEdge, GqlTokenContractsGroupBy, type GqlTokenContractsHavingAverageInput, type GqlTokenContractsHavingDistinctCountInput, type GqlTokenContractsHavingInput, type GqlTokenContractsHavingMaxInput, type GqlTokenContractsHavingMinInput, type GqlTokenContractsHavingStddevPopulationInput, type GqlTokenContractsHavingStddevSampleInput, type GqlTokenContractsHavingSumInput, type GqlTokenContractsHavingVariancePopulationInput, type GqlTokenContractsHavingVarianceSampleInput, GqlTokenContractsOrderBy, type GqlTokenContracttokenBalancesByTokenIdArgs, type GqlTokenContracttransactionsByAssetTransferTokenIdAndTransactionIdArgs, type GqlTokenContractwalletsByAssetTransferTokenIdAndFromIdArgs, type GqlTokenContractwalletsByAssetTransferTokenIdAndToIdArgs, type GqlTokenContractwalletsByTokenBalanceTokenIdAndWalletIdArgs, type GqlTransaction, type GqlTransactionAggregates, type GqlTransactionAverageAggregates, type GqlTransactionDistinctCountAggregates, type GqlTransactionFilter, type GqlTransactionMaxAggregates, type GqlTransactionMinAggregates, type GqlTransactionNftsByAssetTransferTransactionIdAndNftIdManyToManyConnection, type GqlTransactionNftsByAssetTransferTransactionIdAndNftIdManyToManyConnectiongroupedAggregatesArgs, type GqlTransactionNftsByAssetTransferTransactionIdAndNftIdManyToManyEdge, type GqlTransactionNftsByAssetTransferTransactionIdAndNftIdManyToManyEdgeassetTransfersArgs, type GqlTransactionPayload, type GqlTransactionPayload_entityArgs, type GqlTransactionStddevPopulationAggregates, type GqlTransactionStddevSampleAggregates, type GqlTransactionSumAggregates, type GqlTransactionToManyAssetTransferFilter, type GqlTransactionTokenContractsByAssetTransferTransactionIdAndTokenIdManyToManyConnection, type GqlTransactionTokenContractsByAssetTransferTransactionIdAndTokenIdManyToManyConnectiongroupedAggregatesArgs, type GqlTransactionTokenContractsByAssetTransferTransactionIdAndTokenIdManyToManyEdge, type GqlTransactionTokenContractsByAssetTransferTransactionIdAndTokenIdManyToManyEdgeassetTransfersByTokenIdArgs, type GqlTransactionVariancePopulationAggregates, type GqlTransactionVarianceSampleAggregates, type GqlTransactionWalletsByAssetTransferTransactionIdAndFromIdManyToManyConnection, type GqlTransactionWalletsByAssetTransferTransactionIdAndFromIdManyToManyConnectiongroupedAggregatesArgs, type GqlTransactionWalletsByAssetTransferTransactionIdAndFromIdManyToManyEdge, type GqlTransactionWalletsByAssetTransferTransactionIdAndFromIdManyToManyEdgeassetTransfersByFromIdArgs, type GqlTransactionWalletsByAssetTransferTransactionIdAndToIdManyToManyConnection, type GqlTransactionWalletsByAssetTransferTransactionIdAndToIdManyToManyConnectiongroupedAggregatesArgs, type GqlTransactionWalletsByAssetTransferTransactionIdAndToIdManyToManyEdge, type GqlTransactionWalletsByAssetTransferTransactionIdAndToIdManyToManyEdgeassetTransfersByToIdArgs, type GqlTransactionassetTransfersArgs, type GqlTransactionnftsByAssetTransferTransactionIdAndNftIdArgs, type GqlTransactionsConnection, type GqlTransactionsConnectiongroupedAggregatesArgs, type GqlTransactionsEdge, GqlTransactionsGroupBy, type GqlTransactionsHavingAverageInput, type GqlTransactionsHavingDistinctCountInput, type GqlTransactionsHavingInput, type GqlTransactionsHavingMaxInput, type GqlTransactionsHavingMinInput, type GqlTransactionsHavingStddevPopulationInput, type GqlTransactionsHavingStddevSampleInput, type GqlTransactionsHavingSumInput, type GqlTransactionsHavingVariancePopulationInput, type GqlTransactionsHavingVarianceSampleInput, GqlTransactionsOrderBy, type GqlTransactiontokenContractsByAssetTransferTransactionIdAndTokenIdArgs, type GqlTransactionwalletsByAssetTransferTransactionIdAndFromIdArgs, type GqlTransactionwalletsByAssetTransferTransactionIdAndToIdArgs, type GqlWallet, type GqlWalletAggregates, type GqlWalletAverageAggregates, type GqlWalletDistinctCountAggregates, type GqlWalletFilter, type GqlWalletMaxAggregates, type GqlWalletMinAggregates, type GqlWalletNftsByAssetTransferFromIdAndNftIdManyToManyConnection, type GqlWalletNftsByAssetTransferFromIdAndNftIdManyToManyConnectiongroupedAggregatesArgs, type GqlWalletNftsByAssetTransferFromIdAndNftIdManyToManyEdge, type GqlWalletNftsByAssetTransferFromIdAndNftIdManyToManyEdgeassetTransfersArgs, type GqlWalletNftsByAssetTransferToIdAndNftIdManyToManyConnection, type GqlWalletNftsByAssetTransferToIdAndNftIdManyToManyConnectiongroupedAggregatesArgs, type GqlWalletNftsByAssetTransferToIdAndNftIdManyToManyEdge, type GqlWalletNftsByAssetTransferToIdAndNftIdManyToManyEdgeassetTransfersArgs, type GqlWalletNftsByNftBalanceWalletIdAndNftIdManyToManyConnection, type GqlWalletNftsByNftBalanceWalletIdAndNftIdManyToManyConnectiongroupedAggregatesArgs, type GqlWalletNftsByNftBalanceWalletIdAndNftIdManyToManyEdge, type GqlWalletNftsByNftBalanceWalletIdAndNftIdManyToManyEdgenftBalancesArgs, type GqlWalletPayload, type GqlWalletPayload_entityArgs, type GqlWalletStddevPopulationAggregates, type GqlWalletStddevSampleAggregates, type GqlWalletSumAggregates, type GqlWalletToManyAssetTransferFilter, type GqlWalletToManyNftBalanceFilter, type GqlWalletToManyTokenBalanceFilter, type GqlWalletTokenContractsByAssetTransferFromIdAndTokenIdManyToManyConnection, type GqlWalletTokenContractsByAssetTransferFromIdAndTokenIdManyToManyConnectiongroupedAggregatesArgs, type GqlWalletTokenContractsByAssetTransferFromIdAndTokenIdManyToManyEdge, type GqlWalletTokenContractsByAssetTransferFromIdAndTokenIdManyToManyEdgeassetTransfersByTokenIdArgs, type GqlWalletTokenContractsByAssetTransferToIdAndTokenIdManyToManyConnection, type GqlWalletTokenContractsByAssetTransferToIdAndTokenIdManyToManyConnectiongroupedAggregatesArgs, type GqlWalletTokenContractsByAssetTransferToIdAndTokenIdManyToManyEdge, type GqlWalletTokenContractsByAssetTransferToIdAndTokenIdManyToManyEdgeassetTransfersByTokenIdArgs, type GqlWalletTokenContractsByTokenBalanceWalletIdAndTokenIdManyToManyConnection, type GqlWalletTokenContractsByTokenBalanceWalletIdAndTokenIdManyToManyConnectiongroupedAggregatesArgs, type GqlWalletTokenContractsByTokenBalanceWalletIdAndTokenIdManyToManyEdge, type GqlWalletTokenContractsByTokenBalanceWalletIdAndTokenIdManyToManyEdgetokenBalancesByTokenIdArgs, type GqlWalletTransactionsByAssetTransferFromIdAndTransactionIdManyToManyConnection, type GqlWalletTransactionsByAssetTransferFromIdAndTransactionIdManyToManyConnectiongroupedAggregatesArgs, type GqlWalletTransactionsByAssetTransferFromIdAndTransactionIdManyToManyEdge, type GqlWalletTransactionsByAssetTransferFromIdAndTransactionIdManyToManyEdgeassetTransfersArgs, type GqlWalletTransactionsByAssetTransferToIdAndTransactionIdManyToManyConnection, type GqlWalletTransactionsByAssetTransferToIdAndTransactionIdManyToManyConnectiongroupedAggregatesArgs, type GqlWalletTransactionsByAssetTransferToIdAndTransactionIdManyToManyEdge, type GqlWalletTransactionsByAssetTransferToIdAndTransactionIdManyToManyEdgeassetTransfersArgs, type GqlWalletVariancePopulationAggregates, type GqlWalletVarianceSampleAggregates, type GqlWalletWalletsByAssetTransferFromIdAndToIdManyToManyConnection, type GqlWalletWalletsByAssetTransferFromIdAndToIdManyToManyConnectiongroupedAggregatesArgs, type GqlWalletWalletsByAssetTransferFromIdAndToIdManyToManyEdge, type GqlWalletWalletsByAssetTransferFromIdAndToIdManyToManyEdgeassetTransfersByToIdArgs, type GqlWalletWalletsByAssetTransferToIdAndFromIdManyToManyConnection, type GqlWalletWalletsByAssetTransferToIdAndFromIdManyToManyConnectiongroupedAggregatesArgs, type GqlWalletWalletsByAssetTransferToIdAndFromIdManyToManyEdge, type GqlWalletWalletsByAssetTransferToIdAndFromIdManyToManyEdgeassetTransfersByFromIdArgs, type GqlWalletassetTransfersByFromIdArgs, type GqlWalletassetTransfersByToIdArgs, type GqlWalletnftsArgs, type GqlWalletnftsByAssetTransferFromIdAndNftIdArgs, type GqlWalletnftsByAssetTransferToIdAndNftIdArgs, type GqlWalletnftsByNftBalanceWalletIdAndNftIdArgs, type GqlWalletsConnection, type GqlWalletsConnectiongroupedAggregatesArgs, type GqlWalletsEdge, GqlWalletsGroupBy, type GqlWalletsHavingAverageInput, type GqlWalletsHavingDistinctCountInput, type GqlWalletsHavingInput, type GqlWalletsHavingMaxInput, type GqlWalletsHavingMinInput, type GqlWalletsHavingStddevPopulationInput, type GqlWalletsHavingStddevSampleInput, type GqlWalletsHavingSumInput, type GqlWalletsHavingVariancePopulationInput, type GqlWalletsHavingVarianceSampleInput, GqlWalletsOrderBy, type GqlWallettokenContractsByAssetTransferFromIdAndTokenIdArgs, type GqlWallettokenContractsByAssetTransferToIdAndTokenIdArgs, type GqlWallettokenContractsByTokenBalanceWalletIdAndTokenIdArgs, type GqlWallettokensArgs, type GqlWallettransactionsByAssetTransferFromIdAndTransactionIdArgs, type GqlWallettransactionsByAssetTransferToIdAndTransactionIdArgs, type GqlWalletwalletsByAssetTransferFromIdAndToIdArgs, type GqlWalletwalletsByAssetTransferToIdAndFromIdArgs, type GqlWhitelistedAddress, type GqlWhitelistedAddressAggregates, type GqlWhitelistedAddressDistinctCountAggregates, type GqlWhitelistedAddressFilter, type GqlWhitelistedAddressPayload, type GqlWhitelistedAddressPayload_entityArgs, type GqlWhitelistedAddressesConnection, type GqlWhitelistedAddressesConnectiongroupedAggregatesArgs, type GqlWhitelistedAddressesEdge, GqlWhitelistedAddressesGroupBy, type GqlWhitelistedAddressesHavingInput, GqlWhitelistedAddressesOrderBy, type Gql_Metadata, type Gql_Metadatas, type Gql_MetadatasEdge, type GqlassetTransfersSubscriptionSubscription, type GqlassetTransfersSubscriptionSubscriptionVariables, Gqlasset_transfers_distinct_enum, type GqlnftBalancesSubscriptionSubscription, type GqlnftBalancesSubscriptionSubscriptionVariables, type GqlnftQuery, type GqlnftQueryVariables, type GqlnftSubscriptionSubscription, type GqlnftSubscriptionSubscriptionVariables, Gqlnft_balances_distinct_enum, Gqlnfts_distinct_enum, Gqlorder_transactions_distinct_enum, type GqlordersSubscriptionSubscription, type GqlordersSubscriptionSubscriptionVariables, Gqlorders_distinct_enum, type GqltokenBalancesSubscriptionSubscription, type GqltokenBalancesSubscriptionSubscriptionVariables, Gqltoken_balances_distinct_enum, Gqltoken_contracts_distinct_enum, Gqltransactions_distinct_enum, type GqlwalletAssetTransfersQuery, type GqlwalletAssetTransfersQueryVariables, type GqlwalletBalanceQuery, type GqlwalletBalanceQueryVariables, type GqlwalletNftQuery, type GqlwalletNftQueryVariables, type GqlwalletNftsQuery, type GqlwalletNftsQueryVariables, type GqlwalletOrdersQuery, type GqlwalletOrdersQueryVariables, type GqlwalletSubscriptionSubscription, type GqlwalletSubscriptionSubscriptionVariables, type GqlwalletTokenBalanceQuery, type GqlwalletTokenBalanceQueryVariables, type GqlwalletTokenBalancesQuery, type GqlwalletTokenBalancesQueryVariables, Gqlwallets_distinct_enum, Gqlwhitelisted_addresses_distinct_enum, type Incremental, type InputMaybe, KeybanClient_AssetTransferFragmentDoc, KeybanClient_NftBalanceFragmentDoc, KeybanClient_NftFragmentDoc, KeybanClient_OrderFragmentDoc, KeybanClient_PageInfoFragmentDoc, KeybanClient_TokenBalanceFragmentDoc, KeybanClient_TokenContractFragmentDoc, KeybanClient_TransactionFragmentDoc, KeybanClient_WalletFragmentDoc, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type Scalars, assetTransfersSubscriptionDocument, nftBalancesSubscriptionDocument, nftDocument, nftSubscriptionDocument, ordersSubscriptionDocument, tokenBalancesSubscriptionDocument, walletAssetTransfersDocument, walletBalanceDocument, walletNftDocument, walletNftsDocument, walletOrdersDocument, walletSubscriptionDocument, walletTokenBalanceDocument, walletTokenBalancesDocument };