export type Maybe = T | null; export type InputMaybe = Maybe; export type Exact = { [K in keyof T]: T[K] }; export type MakeOptional = Omit & { [SubKey in K]?: Maybe }; export type MakeMaybe = Omit & { [SubKey in K]: Maybe }; export type MakeEmpty = { [_ in K]?: never }; export 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 */ export 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; } bigint: { input: any; output: any; } jsonb: { input: any; output: any; } numeric: { input: any; output: any; } timestamp: { input: any; output: any; } timestamptz: { input: any; output: any; } }; /** Boolean expression to compare columns of type "Boolean". All fields are combined with logical 'AND'. */ export type Boolean_Comparison_Exp = { _eq?: InputMaybe; _gt?: InputMaybe; _gte?: InputMaybe; _in?: InputMaybe>; _is_null?: InputMaybe; _lt?: InputMaybe; _lte?: InputMaybe; _neq?: InputMaybe; _nin?: InputMaybe>; }; /** Boolean expression to compare columns of type "Int". All fields are combined with logical 'AND'. */ export type Int_Comparison_Exp = { _eq?: InputMaybe; _gt?: InputMaybe; _gte?: InputMaybe; _in?: InputMaybe>; _is_null?: InputMaybe; _lt?: InputMaybe; _lte?: InputMaybe; _neq?: InputMaybe; _nin?: InputMaybe>; }; /** Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'. */ export type String_Comparison_Exp = { _eq?: InputMaybe; _gt?: InputMaybe; _gte?: InputMaybe; /** does the column match the given case-insensitive pattern */ _ilike?: InputMaybe; _in?: InputMaybe>; /** does the column match the given POSIX regular expression, case insensitive */ _iregex?: InputMaybe; _is_null?: InputMaybe; /** does the column match the given pattern */ _like?: InputMaybe; _lt?: InputMaybe; _lte?: InputMaybe; _neq?: InputMaybe; /** does the column NOT match the given case-insensitive pattern */ _nilike?: InputMaybe; _nin?: InputMaybe>; /** does the column NOT match the given POSIX regular expression, case insensitive */ _niregex?: InputMaybe; /** does the column NOT match the given pattern */ _nlike?: InputMaybe; /** does the column NOT match the given POSIX regular expression, case sensitive */ _nregex?: InputMaybe; /** does the column NOT match the given SQL regular expression */ _nsimilar?: InputMaybe; /** does the column match the given POSIX regular expression, case sensitive */ _regex?: InputMaybe; /** does the column match the given SQL regular expression */ _similar?: InputMaybe; }; /** columns and relationships of "account_transactions" */ export type Account_Transactions = { __typename?: 'account_transactions'; account_address: Scalars['String']['output']; /** An array relationship */ coin_activities: Array; /** An aggregate relationship */ coin_activities_aggregate: Coin_Activities_Aggregate; /** An array relationship */ delegated_staking_activities: Array; /** An array relationship */ fungible_asset_activities: Array; /** An array relationship */ token_activities: Array; /** An aggregate relationship */ token_activities_aggregate: Token_Activities_Aggregate; /** An array relationship */ token_activities_v2: Array; /** An aggregate relationship */ token_activities_v2_aggregate: Token_Activities_V2_Aggregate; transaction_version: Scalars['bigint']['output']; }; /** columns and relationships of "account_transactions" */ export type Account_TransactionsCoin_ActivitiesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "account_transactions" */ export type Account_TransactionsCoin_Activities_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "account_transactions" */ export type Account_TransactionsDelegated_Staking_ActivitiesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "account_transactions" */ export type Account_TransactionsFungible_Asset_ActivitiesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "account_transactions" */ export type Account_TransactionsToken_ActivitiesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "account_transactions" */ export type Account_TransactionsToken_Activities_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "account_transactions" */ export type Account_TransactionsToken_Activities_V2Args = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "account_transactions" */ export type Account_TransactionsToken_Activities_V2_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** aggregated selection of "account_transactions" */ export type Account_Transactions_Aggregate = { __typename?: 'account_transactions_aggregate'; aggregate?: Maybe; nodes: Array; }; /** aggregate fields of "account_transactions" */ export type Account_Transactions_Aggregate_Fields = { __typename?: 'account_transactions_aggregate_fields'; avg?: Maybe; count: Scalars['Int']['output']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "account_transactions" */ export type Account_Transactions_Aggregate_FieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** aggregate avg on columns */ export type Account_Transactions_Avg_Fields = { __typename?: 'account_transactions_avg_fields'; transaction_version?: Maybe; }; /** Boolean expression to filter rows from the table "account_transactions". All fields are combined with a logical 'AND'. */ export type Account_Transactions_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; account_address?: InputMaybe; coin_activities?: InputMaybe; coin_activities_aggregate?: InputMaybe; delegated_staking_activities?: InputMaybe; fungible_asset_activities?: InputMaybe; token_activities?: InputMaybe; token_activities_aggregate?: InputMaybe; token_activities_v2?: InputMaybe; token_activities_v2_aggregate?: InputMaybe; transaction_version?: InputMaybe; }; /** aggregate max on columns */ export type Account_Transactions_Max_Fields = { __typename?: 'account_transactions_max_fields'; account_address?: Maybe; transaction_version?: Maybe; }; /** aggregate min on columns */ export type Account_Transactions_Min_Fields = { __typename?: 'account_transactions_min_fields'; account_address?: Maybe; transaction_version?: Maybe; }; /** Ordering options when selecting data from "account_transactions". */ export type Account_Transactions_Order_By = { account_address?: InputMaybe; coin_activities_aggregate?: InputMaybe; delegated_staking_activities_aggregate?: InputMaybe; fungible_asset_activities_aggregate?: InputMaybe; token_activities_aggregate?: InputMaybe; token_activities_v2_aggregate?: InputMaybe; transaction_version?: InputMaybe; }; /** select columns of table "account_transactions" */ export enum Account_Transactions_Select_Column { /** column name */ AccountAddress = 'account_address', /** column name */ TransactionVersion = 'transaction_version' } /** aggregate stddev on columns */ export type Account_Transactions_Stddev_Fields = { __typename?: 'account_transactions_stddev_fields'; transaction_version?: Maybe; }; /** aggregate stddev_pop on columns */ export type Account_Transactions_Stddev_Pop_Fields = { __typename?: 'account_transactions_stddev_pop_fields'; transaction_version?: Maybe; }; /** aggregate stddev_samp on columns */ export type Account_Transactions_Stddev_Samp_Fields = { __typename?: 'account_transactions_stddev_samp_fields'; transaction_version?: Maybe; }; /** Streaming cursor of the table "account_transactions" */ export type Account_Transactions_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Account_Transactions_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Account_Transactions_Stream_Cursor_Value_Input = { account_address?: InputMaybe; transaction_version?: InputMaybe; }; /** aggregate sum on columns */ export type Account_Transactions_Sum_Fields = { __typename?: 'account_transactions_sum_fields'; transaction_version?: Maybe; }; /** aggregate var_pop on columns */ export type Account_Transactions_Var_Pop_Fields = { __typename?: 'account_transactions_var_pop_fields'; transaction_version?: Maybe; }; /** aggregate var_samp on columns */ export type Account_Transactions_Var_Samp_Fields = { __typename?: 'account_transactions_var_samp_fields'; transaction_version?: Maybe; }; /** aggregate variance on columns */ export type Account_Transactions_Variance_Fields = { __typename?: 'account_transactions_variance_fields'; transaction_version?: Maybe; }; /** columns and relationships of "address_events_summary" */ export type Address_Events_Summary = { __typename?: 'address_events_summary'; account_address?: Maybe; /** An object relationship */ block_metadata?: Maybe; min_block_height?: Maybe; num_distinct_versions?: Maybe; }; /** Boolean expression to filter rows from the table "address_events_summary". All fields are combined with a logical 'AND'. */ export type Address_Events_Summary_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; account_address?: InputMaybe; block_metadata?: InputMaybe; min_block_height?: InputMaybe; num_distinct_versions?: InputMaybe; }; /** Ordering options when selecting data from "address_events_summary". */ export type Address_Events_Summary_Order_By = { account_address?: InputMaybe; block_metadata?: InputMaybe; min_block_height?: InputMaybe; num_distinct_versions?: InputMaybe; }; /** select columns of table "address_events_summary" */ export enum Address_Events_Summary_Select_Column { /** column name */ AccountAddress = 'account_address', /** column name */ MinBlockHeight = 'min_block_height', /** column name */ NumDistinctVersions = 'num_distinct_versions' } /** Streaming cursor of the table "address_events_summary" */ export type Address_Events_Summary_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Address_Events_Summary_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Address_Events_Summary_Stream_Cursor_Value_Input = { account_address?: InputMaybe; min_block_height?: InputMaybe; num_distinct_versions?: InputMaybe; }; /** columns and relationships of "address_version_from_events" */ export type Address_Version_From_Events = { __typename?: 'address_version_from_events'; account_address?: Maybe; /** An array relationship */ coin_activities: Array; /** An aggregate relationship */ coin_activities_aggregate: Coin_Activities_Aggregate; /** An array relationship */ delegated_staking_activities: Array; /** An array relationship */ token_activities: Array; /** An aggregate relationship */ token_activities_aggregate: Token_Activities_Aggregate; /** An array relationship */ token_activities_v2: Array; /** An aggregate relationship */ token_activities_v2_aggregate: Token_Activities_V2_Aggregate; transaction_version?: Maybe; }; /** columns and relationships of "address_version_from_events" */ export type Address_Version_From_EventsCoin_ActivitiesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "address_version_from_events" */ export type Address_Version_From_EventsCoin_Activities_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "address_version_from_events" */ export type Address_Version_From_EventsDelegated_Staking_ActivitiesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "address_version_from_events" */ export type Address_Version_From_EventsToken_ActivitiesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "address_version_from_events" */ export type Address_Version_From_EventsToken_Activities_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "address_version_from_events" */ export type Address_Version_From_EventsToken_Activities_V2Args = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "address_version_from_events" */ export type Address_Version_From_EventsToken_Activities_V2_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** aggregated selection of "address_version_from_events" */ export type Address_Version_From_Events_Aggregate = { __typename?: 'address_version_from_events_aggregate'; aggregate?: Maybe; nodes: Array; }; /** aggregate fields of "address_version_from_events" */ export type Address_Version_From_Events_Aggregate_Fields = { __typename?: 'address_version_from_events_aggregate_fields'; avg?: Maybe; count: Scalars['Int']['output']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "address_version_from_events" */ export type Address_Version_From_Events_Aggregate_FieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** aggregate avg on columns */ export type Address_Version_From_Events_Avg_Fields = { __typename?: 'address_version_from_events_avg_fields'; transaction_version?: Maybe; }; /** Boolean expression to filter rows from the table "address_version_from_events". All fields are combined with a logical 'AND'. */ export type Address_Version_From_Events_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; account_address?: InputMaybe; coin_activities?: InputMaybe; coin_activities_aggregate?: InputMaybe; delegated_staking_activities?: InputMaybe; token_activities?: InputMaybe; token_activities_aggregate?: InputMaybe; token_activities_v2?: InputMaybe; token_activities_v2_aggregate?: InputMaybe; transaction_version?: InputMaybe; }; /** aggregate max on columns */ export type Address_Version_From_Events_Max_Fields = { __typename?: 'address_version_from_events_max_fields'; account_address?: Maybe; transaction_version?: Maybe; }; /** aggregate min on columns */ export type Address_Version_From_Events_Min_Fields = { __typename?: 'address_version_from_events_min_fields'; account_address?: Maybe; transaction_version?: Maybe; }; /** Ordering options when selecting data from "address_version_from_events". */ export type Address_Version_From_Events_Order_By = { account_address?: InputMaybe; coin_activities_aggregate?: InputMaybe; delegated_staking_activities_aggregate?: InputMaybe; token_activities_aggregate?: InputMaybe; token_activities_v2_aggregate?: InputMaybe; transaction_version?: InputMaybe; }; /** select columns of table "address_version_from_events" */ export enum Address_Version_From_Events_Select_Column { /** column name */ AccountAddress = 'account_address', /** column name */ TransactionVersion = 'transaction_version' } /** aggregate stddev on columns */ export type Address_Version_From_Events_Stddev_Fields = { __typename?: 'address_version_from_events_stddev_fields'; transaction_version?: Maybe; }; /** aggregate stddev_pop on columns */ export type Address_Version_From_Events_Stddev_Pop_Fields = { __typename?: 'address_version_from_events_stddev_pop_fields'; transaction_version?: Maybe; }; /** aggregate stddev_samp on columns */ export type Address_Version_From_Events_Stddev_Samp_Fields = { __typename?: 'address_version_from_events_stddev_samp_fields'; transaction_version?: Maybe; }; /** Streaming cursor of the table "address_version_from_events" */ export type Address_Version_From_Events_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Address_Version_From_Events_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Address_Version_From_Events_Stream_Cursor_Value_Input = { account_address?: InputMaybe; transaction_version?: InputMaybe; }; /** aggregate sum on columns */ export type Address_Version_From_Events_Sum_Fields = { __typename?: 'address_version_from_events_sum_fields'; transaction_version?: Maybe; }; /** aggregate var_pop on columns */ export type Address_Version_From_Events_Var_Pop_Fields = { __typename?: 'address_version_from_events_var_pop_fields'; transaction_version?: Maybe; }; /** aggregate var_samp on columns */ export type Address_Version_From_Events_Var_Samp_Fields = { __typename?: 'address_version_from_events_var_samp_fields'; transaction_version?: Maybe; }; /** aggregate variance on columns */ export type Address_Version_From_Events_Variance_Fields = { __typename?: 'address_version_from_events_variance_fields'; transaction_version?: Maybe; }; /** columns and relationships of "address_version_from_move_resources" */ export type Address_Version_From_Move_Resources = { __typename?: 'address_version_from_move_resources'; address?: Maybe; /** An array relationship */ coin_activities: Array; /** An aggregate relationship */ coin_activities_aggregate: Coin_Activities_Aggregate; /** An array relationship */ delegated_staking_activities: Array; /** An array relationship */ token_activities: Array; /** An aggregate relationship */ token_activities_aggregate: Token_Activities_Aggregate; /** An array relationship */ token_activities_v2: Array; /** An aggregate relationship */ token_activities_v2_aggregate: Token_Activities_V2_Aggregate; transaction_version?: Maybe; }; /** columns and relationships of "address_version_from_move_resources" */ export type Address_Version_From_Move_ResourcesCoin_ActivitiesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "address_version_from_move_resources" */ export type Address_Version_From_Move_ResourcesCoin_Activities_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "address_version_from_move_resources" */ export type Address_Version_From_Move_ResourcesDelegated_Staking_ActivitiesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "address_version_from_move_resources" */ export type Address_Version_From_Move_ResourcesToken_ActivitiesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "address_version_from_move_resources" */ export type Address_Version_From_Move_ResourcesToken_Activities_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "address_version_from_move_resources" */ export type Address_Version_From_Move_ResourcesToken_Activities_V2Args = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "address_version_from_move_resources" */ export type Address_Version_From_Move_ResourcesToken_Activities_V2_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** aggregated selection of "address_version_from_move_resources" */ export type Address_Version_From_Move_Resources_Aggregate = { __typename?: 'address_version_from_move_resources_aggregate'; aggregate?: Maybe; nodes: Array; }; /** aggregate fields of "address_version_from_move_resources" */ export type Address_Version_From_Move_Resources_Aggregate_Fields = { __typename?: 'address_version_from_move_resources_aggregate_fields'; avg?: Maybe; count: Scalars['Int']['output']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "address_version_from_move_resources" */ export type Address_Version_From_Move_Resources_Aggregate_FieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** aggregate avg on columns */ export type Address_Version_From_Move_Resources_Avg_Fields = { __typename?: 'address_version_from_move_resources_avg_fields'; transaction_version?: Maybe; }; /** Boolean expression to filter rows from the table "address_version_from_move_resources". All fields are combined with a logical 'AND'. */ export type Address_Version_From_Move_Resources_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; address?: InputMaybe; coin_activities?: InputMaybe; coin_activities_aggregate?: InputMaybe; delegated_staking_activities?: InputMaybe; token_activities?: InputMaybe; token_activities_aggregate?: InputMaybe; token_activities_v2?: InputMaybe; token_activities_v2_aggregate?: InputMaybe; transaction_version?: InputMaybe; }; /** aggregate max on columns */ export type Address_Version_From_Move_Resources_Max_Fields = { __typename?: 'address_version_from_move_resources_max_fields'; address?: Maybe; transaction_version?: Maybe; }; /** aggregate min on columns */ export type Address_Version_From_Move_Resources_Min_Fields = { __typename?: 'address_version_from_move_resources_min_fields'; address?: Maybe; transaction_version?: Maybe; }; /** Ordering options when selecting data from "address_version_from_move_resources". */ export type Address_Version_From_Move_Resources_Order_By = { address?: InputMaybe; coin_activities_aggregate?: InputMaybe; delegated_staking_activities_aggregate?: InputMaybe; token_activities_aggregate?: InputMaybe; token_activities_v2_aggregate?: InputMaybe; transaction_version?: InputMaybe; }; /** select columns of table "address_version_from_move_resources" */ export enum Address_Version_From_Move_Resources_Select_Column { /** column name */ Address = 'address', /** column name */ TransactionVersion = 'transaction_version' } /** aggregate stddev on columns */ export type Address_Version_From_Move_Resources_Stddev_Fields = { __typename?: 'address_version_from_move_resources_stddev_fields'; transaction_version?: Maybe; }; /** aggregate stddev_pop on columns */ export type Address_Version_From_Move_Resources_Stddev_Pop_Fields = { __typename?: 'address_version_from_move_resources_stddev_pop_fields'; transaction_version?: Maybe; }; /** aggregate stddev_samp on columns */ export type Address_Version_From_Move_Resources_Stddev_Samp_Fields = { __typename?: 'address_version_from_move_resources_stddev_samp_fields'; transaction_version?: Maybe; }; /** Streaming cursor of the table "address_version_from_move_resources" */ export type Address_Version_From_Move_Resources_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Address_Version_From_Move_Resources_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Address_Version_From_Move_Resources_Stream_Cursor_Value_Input = { address?: InputMaybe; transaction_version?: InputMaybe; }; /** aggregate sum on columns */ export type Address_Version_From_Move_Resources_Sum_Fields = { __typename?: 'address_version_from_move_resources_sum_fields'; transaction_version?: Maybe; }; /** aggregate var_pop on columns */ export type Address_Version_From_Move_Resources_Var_Pop_Fields = { __typename?: 'address_version_from_move_resources_var_pop_fields'; transaction_version?: Maybe; }; /** aggregate var_samp on columns */ export type Address_Version_From_Move_Resources_Var_Samp_Fields = { __typename?: 'address_version_from_move_resources_var_samp_fields'; transaction_version?: Maybe; }; /** aggregate variance on columns */ export type Address_Version_From_Move_Resources_Variance_Fields = { __typename?: 'address_version_from_move_resources_variance_fields'; transaction_version?: Maybe; }; /** Boolean expression to compare columns of type "bigint". All fields are combined with logical 'AND'. */ export type Bigint_Comparison_Exp = { _eq?: InputMaybe; _gt?: InputMaybe; _gte?: InputMaybe; _in?: InputMaybe>; _is_null?: InputMaybe; _lt?: InputMaybe; _lte?: InputMaybe; _neq?: InputMaybe; _nin?: InputMaybe>; }; /** columns and relationships of "block_metadata_transactions" */ export type Block_Metadata_Transactions = { __typename?: 'block_metadata_transactions'; block_height: Scalars['bigint']['output']; epoch: Scalars['bigint']['output']; failed_proposer_indices: Scalars['jsonb']['output']; id: Scalars['String']['output']; previous_block_votes_bitvec: Scalars['jsonb']['output']; proposer: Scalars['String']['output']; round: Scalars['bigint']['output']; timestamp: Scalars['timestamp']['output']; version: Scalars['bigint']['output']; }; /** columns and relationships of "block_metadata_transactions" */ export type Block_Metadata_TransactionsFailed_Proposer_IndicesArgs = { path?: InputMaybe; }; /** columns and relationships of "block_metadata_transactions" */ export type Block_Metadata_TransactionsPrevious_Block_Votes_BitvecArgs = { path?: InputMaybe; }; /** Boolean expression to filter rows from the table "block_metadata_transactions". All fields are combined with a logical 'AND'. */ export type Block_Metadata_Transactions_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; block_height?: InputMaybe; epoch?: InputMaybe; failed_proposer_indices?: InputMaybe; id?: InputMaybe; previous_block_votes_bitvec?: InputMaybe; proposer?: InputMaybe; round?: InputMaybe; timestamp?: InputMaybe; version?: InputMaybe; }; /** Ordering options when selecting data from "block_metadata_transactions". */ export type Block_Metadata_Transactions_Order_By = { block_height?: InputMaybe; epoch?: InputMaybe; failed_proposer_indices?: InputMaybe; id?: InputMaybe; previous_block_votes_bitvec?: InputMaybe; proposer?: InputMaybe; round?: InputMaybe; timestamp?: InputMaybe; version?: InputMaybe; }; /** select columns of table "block_metadata_transactions" */ export enum Block_Metadata_Transactions_Select_Column { /** column name */ BlockHeight = 'block_height', /** column name */ Epoch = 'epoch', /** column name */ FailedProposerIndices = 'failed_proposer_indices', /** column name */ Id = 'id', /** column name */ PreviousBlockVotesBitvec = 'previous_block_votes_bitvec', /** column name */ Proposer = 'proposer', /** column name */ Round = 'round', /** column name */ Timestamp = 'timestamp', /** column name */ Version = 'version' } /** Streaming cursor of the table "block_metadata_transactions" */ export type Block_Metadata_Transactions_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Block_Metadata_Transactions_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Block_Metadata_Transactions_Stream_Cursor_Value_Input = { block_height?: InputMaybe; epoch?: InputMaybe; failed_proposer_indices?: InputMaybe; id?: InputMaybe; previous_block_votes_bitvec?: InputMaybe; proposer?: InputMaybe; round?: InputMaybe; timestamp?: InputMaybe; version?: InputMaybe; }; /** columns and relationships of "coin_activities" */ export type Coin_Activities = { __typename?: 'coin_activities'; activity_type: Scalars['String']['output']; amount: Scalars['numeric']['output']; /** An array relationship */ endless_names: Array; /** An aggregate relationship */ endless_names_aggregate: Current_Endless_Names_Aggregate; block_height: Scalars['bigint']['output']; /** An object relationship */ coin_info?: Maybe; coin_type: Scalars['String']['output']; entry_function_id_str?: Maybe; event_account_address: Scalars['String']['output']; event_creation_number: Scalars['bigint']['output']; event_index?: Maybe; event_sequence_number: Scalars['bigint']['output']; is_gas_fee: Scalars['Boolean']['output']; is_transaction_success: Scalars['Boolean']['output']; owner_address: Scalars['String']['output']; storage_refund_amount: Scalars['numeric']['output']; transaction_timestamp: Scalars['timestamp']['output']; transaction_version: Scalars['bigint']['output']; }; /** columns and relationships of "coin_activities" */ export type Coin_ActivitiesEndless_NamesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "coin_activities" */ export type Coin_ActivitiesEndless_Names_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** aggregated selection of "coin_activities" */ export type Coin_Activities_Aggregate = { __typename?: 'coin_activities_aggregate'; aggregate?: Maybe; nodes: Array; }; export type Coin_Activities_Aggregate_Bool_Exp = { bool_and?: InputMaybe; bool_or?: InputMaybe; count?: InputMaybe; }; export type Coin_Activities_Aggregate_Bool_Exp_Bool_And = { arguments: Coin_Activities_Select_Column_Coin_Activities_Aggregate_Bool_Exp_Bool_And_Arguments_Columns; distinct?: InputMaybe; filter?: InputMaybe; predicate: Boolean_Comparison_Exp; }; export type Coin_Activities_Aggregate_Bool_Exp_Bool_Or = { arguments: Coin_Activities_Select_Column_Coin_Activities_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns; distinct?: InputMaybe; filter?: InputMaybe; predicate: Boolean_Comparison_Exp; }; export type Coin_Activities_Aggregate_Bool_Exp_Count = { arguments?: InputMaybe>; distinct?: InputMaybe; filter?: InputMaybe; predicate: Int_Comparison_Exp; }; /** aggregate fields of "coin_activities" */ export type Coin_Activities_Aggregate_Fields = { __typename?: 'coin_activities_aggregate_fields'; avg?: Maybe; count: Scalars['Int']['output']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "coin_activities" */ export type Coin_Activities_Aggregate_FieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** order by aggregate values of table "coin_activities" */ export type Coin_Activities_Aggregate_Order_By = { avg?: InputMaybe; count?: InputMaybe; max?: InputMaybe; min?: InputMaybe; stddev?: InputMaybe; stddev_pop?: InputMaybe; stddev_samp?: InputMaybe; sum?: InputMaybe; var_pop?: InputMaybe; var_samp?: InputMaybe; variance?: InputMaybe; }; /** aggregate avg on columns */ export type Coin_Activities_Avg_Fields = { __typename?: 'coin_activities_avg_fields'; amount?: Maybe; block_height?: Maybe; event_creation_number?: Maybe; event_index?: Maybe; event_sequence_number?: Maybe; storage_refund_amount?: Maybe; transaction_version?: Maybe; }; /** order by avg() on columns of table "coin_activities" */ export type Coin_Activities_Avg_Order_By = { amount?: InputMaybe; block_height?: InputMaybe; event_creation_number?: InputMaybe; event_index?: InputMaybe; event_sequence_number?: InputMaybe; storage_refund_amount?: InputMaybe; transaction_version?: InputMaybe; }; /** Boolean expression to filter rows from the table "coin_activities". All fields are combined with a logical 'AND'. */ export type Coin_Activities_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; activity_type?: InputMaybe; amount?: InputMaybe; endless_names?: InputMaybe; endless_names_aggregate?: InputMaybe; block_height?: InputMaybe; coin_info?: InputMaybe; coin_type?: InputMaybe; entry_function_id_str?: InputMaybe; event_account_address?: InputMaybe; event_creation_number?: InputMaybe; event_index?: InputMaybe; event_sequence_number?: InputMaybe; is_gas_fee?: InputMaybe; is_transaction_success?: InputMaybe; owner_address?: InputMaybe; storage_refund_amount?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; }; /** aggregate max on columns */ export type Coin_Activities_Max_Fields = { __typename?: 'coin_activities_max_fields'; activity_type?: Maybe; amount?: Maybe; block_height?: Maybe; coin_type?: Maybe; entry_function_id_str?: Maybe; event_account_address?: Maybe; event_creation_number?: Maybe; event_index?: Maybe; event_sequence_number?: Maybe; owner_address?: Maybe; storage_refund_amount?: Maybe; transaction_timestamp?: Maybe; transaction_version?: Maybe; }; /** order by max() on columns of table "coin_activities" */ export type Coin_Activities_Max_Order_By = { activity_type?: InputMaybe; amount?: InputMaybe; block_height?: InputMaybe; coin_type?: InputMaybe; entry_function_id_str?: InputMaybe; event_account_address?: InputMaybe; event_creation_number?: InputMaybe; event_index?: InputMaybe; event_sequence_number?: InputMaybe; owner_address?: InputMaybe; storage_refund_amount?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; }; /** aggregate min on columns */ export type Coin_Activities_Min_Fields = { __typename?: 'coin_activities_min_fields'; activity_type?: Maybe; amount?: Maybe; block_height?: Maybe; coin_type?: Maybe; entry_function_id_str?: Maybe; event_account_address?: Maybe; event_creation_number?: Maybe; event_index?: Maybe; event_sequence_number?: Maybe; owner_address?: Maybe; storage_refund_amount?: Maybe; transaction_timestamp?: Maybe; transaction_version?: Maybe; }; /** order by min() on columns of table "coin_activities" */ export type Coin_Activities_Min_Order_By = { activity_type?: InputMaybe; amount?: InputMaybe; block_height?: InputMaybe; coin_type?: InputMaybe; entry_function_id_str?: InputMaybe; event_account_address?: InputMaybe; event_creation_number?: InputMaybe; event_index?: InputMaybe; event_sequence_number?: InputMaybe; owner_address?: InputMaybe; storage_refund_amount?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; }; /** Ordering options when selecting data from "coin_activities". */ export type Coin_Activities_Order_By = { activity_type?: InputMaybe; amount?: InputMaybe; endless_names_aggregate?: InputMaybe; block_height?: InputMaybe; coin_info?: InputMaybe; coin_type?: InputMaybe; entry_function_id_str?: InputMaybe; event_account_address?: InputMaybe; event_creation_number?: InputMaybe; event_index?: InputMaybe; event_sequence_number?: InputMaybe; is_gas_fee?: InputMaybe; is_transaction_success?: InputMaybe; owner_address?: InputMaybe; storage_refund_amount?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; }; /** select columns of table "coin_activities" */ export enum Coin_Activities_Select_Column { /** column name */ ActivityType = 'activity_type', /** column name */ Amount = 'amount', /** column name */ BlockHeight = 'block_height', /** column name */ CoinType = 'coin_type', /** column name */ EntryFunctionIdStr = 'entry_function_id_str', /** column name */ EventAccountAddress = 'event_account_address', /** column name */ EventCreationNumber = 'event_creation_number', /** column name */ EventIndex = 'event_index', /** column name */ EventSequenceNumber = 'event_sequence_number', /** column name */ IsGasFee = 'is_gas_fee', /** column name */ IsTransactionSuccess = 'is_transaction_success', /** column name */ OwnerAddress = 'owner_address', /** column name */ StorageRefundAmount = 'storage_refund_amount', /** column name */ TransactionTimestamp = 'transaction_timestamp', /** column name */ TransactionVersion = 'transaction_version' } /** select "coin_activities_aggregate_bool_exp_bool_and_arguments_columns" columns of table "coin_activities" */ export enum Coin_Activities_Select_Column_Coin_Activities_Aggregate_Bool_Exp_Bool_And_Arguments_Columns { /** column name */ IsGasFee = 'is_gas_fee', /** column name */ IsTransactionSuccess = 'is_transaction_success' } /** select "coin_activities_aggregate_bool_exp_bool_or_arguments_columns" columns of table "coin_activities" */ export enum Coin_Activities_Select_Column_Coin_Activities_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns { /** column name */ IsGasFee = 'is_gas_fee', /** column name */ IsTransactionSuccess = 'is_transaction_success' } /** aggregate stddev on columns */ export type Coin_Activities_Stddev_Fields = { __typename?: 'coin_activities_stddev_fields'; amount?: Maybe; block_height?: Maybe; event_creation_number?: Maybe; event_index?: Maybe; event_sequence_number?: Maybe; storage_refund_amount?: Maybe; transaction_version?: Maybe; }; /** order by stddev() on columns of table "coin_activities" */ export type Coin_Activities_Stddev_Order_By = { amount?: InputMaybe; block_height?: InputMaybe; event_creation_number?: InputMaybe; event_index?: InputMaybe; event_sequence_number?: InputMaybe; storage_refund_amount?: InputMaybe; transaction_version?: InputMaybe; }; /** aggregate stddev_pop on columns */ export type Coin_Activities_Stddev_Pop_Fields = { __typename?: 'coin_activities_stddev_pop_fields'; amount?: Maybe; block_height?: Maybe; event_creation_number?: Maybe; event_index?: Maybe; event_sequence_number?: Maybe; storage_refund_amount?: Maybe; transaction_version?: Maybe; }; /** order by stddev_pop() on columns of table "coin_activities" */ export type Coin_Activities_Stddev_Pop_Order_By = { amount?: InputMaybe; block_height?: InputMaybe; event_creation_number?: InputMaybe; event_index?: InputMaybe; event_sequence_number?: InputMaybe; storage_refund_amount?: InputMaybe; transaction_version?: InputMaybe; }; /** aggregate stddev_samp on columns */ export type Coin_Activities_Stddev_Samp_Fields = { __typename?: 'coin_activities_stddev_samp_fields'; amount?: Maybe; block_height?: Maybe; event_creation_number?: Maybe; event_index?: Maybe; event_sequence_number?: Maybe; storage_refund_amount?: Maybe; transaction_version?: Maybe; }; /** order by stddev_samp() on columns of table "coin_activities" */ export type Coin_Activities_Stddev_Samp_Order_By = { amount?: InputMaybe; block_height?: InputMaybe; event_creation_number?: InputMaybe; event_index?: InputMaybe; event_sequence_number?: InputMaybe; storage_refund_amount?: InputMaybe; transaction_version?: InputMaybe; }; /** Streaming cursor of the table "coin_activities" */ export type Coin_Activities_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Coin_Activities_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Coin_Activities_Stream_Cursor_Value_Input = { activity_type?: InputMaybe; amount?: InputMaybe; block_height?: InputMaybe; coin_type?: InputMaybe; entry_function_id_str?: InputMaybe; event_account_address?: InputMaybe; event_creation_number?: InputMaybe; event_index?: InputMaybe; event_sequence_number?: InputMaybe; is_gas_fee?: InputMaybe; is_transaction_success?: InputMaybe; owner_address?: InputMaybe; storage_refund_amount?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; }; /** aggregate sum on columns */ export type Coin_Activities_Sum_Fields = { __typename?: 'coin_activities_sum_fields'; amount?: Maybe; block_height?: Maybe; event_creation_number?: Maybe; event_index?: Maybe; event_sequence_number?: Maybe; storage_refund_amount?: Maybe; transaction_version?: Maybe; }; /** order by sum() on columns of table "coin_activities" */ export type Coin_Activities_Sum_Order_By = { amount?: InputMaybe; block_height?: InputMaybe; event_creation_number?: InputMaybe; event_index?: InputMaybe; event_sequence_number?: InputMaybe; storage_refund_amount?: InputMaybe; transaction_version?: InputMaybe; }; /** aggregate var_pop on columns */ export type Coin_Activities_Var_Pop_Fields = { __typename?: 'coin_activities_var_pop_fields'; amount?: Maybe; block_height?: Maybe; event_creation_number?: Maybe; event_index?: Maybe; event_sequence_number?: Maybe; storage_refund_amount?: Maybe; transaction_version?: Maybe; }; /** order by var_pop() on columns of table "coin_activities" */ export type Coin_Activities_Var_Pop_Order_By = { amount?: InputMaybe; block_height?: InputMaybe; event_creation_number?: InputMaybe; event_index?: InputMaybe; event_sequence_number?: InputMaybe; storage_refund_amount?: InputMaybe; transaction_version?: InputMaybe; }; /** aggregate var_samp on columns */ export type Coin_Activities_Var_Samp_Fields = { __typename?: 'coin_activities_var_samp_fields'; amount?: Maybe; block_height?: Maybe; event_creation_number?: Maybe; event_index?: Maybe; event_sequence_number?: Maybe; storage_refund_amount?: Maybe; transaction_version?: Maybe; }; /** order by var_samp() on columns of table "coin_activities" */ export type Coin_Activities_Var_Samp_Order_By = { amount?: InputMaybe; block_height?: InputMaybe; event_creation_number?: InputMaybe; event_index?: InputMaybe; event_sequence_number?: InputMaybe; storage_refund_amount?: InputMaybe; transaction_version?: InputMaybe; }; /** aggregate variance on columns */ export type Coin_Activities_Variance_Fields = { __typename?: 'coin_activities_variance_fields'; amount?: Maybe; block_height?: Maybe; event_creation_number?: Maybe; event_index?: Maybe; event_sequence_number?: Maybe; storage_refund_amount?: Maybe; transaction_version?: Maybe; }; /** order by variance() on columns of table "coin_activities" */ export type Coin_Activities_Variance_Order_By = { amount?: InputMaybe; block_height?: InputMaybe; event_creation_number?: InputMaybe; event_index?: InputMaybe; event_sequence_number?: InputMaybe; storage_refund_amount?: InputMaybe; transaction_version?: InputMaybe; }; /** columns and relationships of "coin_balances" */ export type Coin_Balances = { __typename?: 'coin_balances'; amount: Scalars['numeric']['output']; coin_type: Scalars['String']['output']; coin_type_hash: Scalars['String']['output']; owner_address: Scalars['String']['output']; transaction_timestamp: Scalars['timestamp']['output']; transaction_version: Scalars['bigint']['output']; }; /** Boolean expression to filter rows from the table "coin_balances". All fields are combined with a logical 'AND'. */ export type Coin_Balances_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; amount?: InputMaybe; coin_type?: InputMaybe; coin_type_hash?: InputMaybe; owner_address?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; }; /** Ordering options when selecting data from "coin_balances". */ export type Coin_Balances_Order_By = { amount?: InputMaybe; coin_type?: InputMaybe; coin_type_hash?: InputMaybe; owner_address?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; }; /** select columns of table "coin_balances" */ export enum Coin_Balances_Select_Column { /** column name */ Amount = 'amount', /** column name */ CoinType = 'coin_type', /** column name */ CoinTypeHash = 'coin_type_hash', /** column name */ OwnerAddress = 'owner_address', /** column name */ TransactionTimestamp = 'transaction_timestamp', /** column name */ TransactionVersion = 'transaction_version' } /** Streaming cursor of the table "coin_balances" */ export type Coin_Balances_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Coin_Balances_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Coin_Balances_Stream_Cursor_Value_Input = { amount?: InputMaybe; coin_type?: InputMaybe; coin_type_hash?: InputMaybe; owner_address?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; }; /** columns and relationships of "coin_infos" */ export type Coin_Infos = { __typename?: 'coin_infos'; coin_type: Scalars['String']['output']; coin_type_hash: Scalars['String']['output']; creator_address: Scalars['String']['output']; decimals: Scalars['Int']['output']; name: Scalars['String']['output']; supply_aggregator_table_handle?: Maybe; supply_aggregator_table_key?: Maybe; symbol: Scalars['String']['output']; transaction_created_timestamp: Scalars['timestamp']['output']; transaction_version_created: Scalars['bigint']['output']; }; /** Boolean expression to filter rows from the table "coin_infos". All fields are combined with a logical 'AND'. */ export type Coin_Infos_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; coin_type?: InputMaybe; coin_type_hash?: InputMaybe; creator_address?: InputMaybe; decimals?: InputMaybe; name?: InputMaybe; supply_aggregator_table_handle?: InputMaybe; supply_aggregator_table_key?: InputMaybe; symbol?: InputMaybe; transaction_created_timestamp?: InputMaybe; transaction_version_created?: InputMaybe; }; /** Ordering options when selecting data from "coin_infos". */ export type Coin_Infos_Order_By = { coin_type?: InputMaybe; coin_type_hash?: InputMaybe; creator_address?: InputMaybe; decimals?: InputMaybe; name?: InputMaybe; supply_aggregator_table_handle?: InputMaybe; supply_aggregator_table_key?: InputMaybe; symbol?: InputMaybe; transaction_created_timestamp?: InputMaybe; transaction_version_created?: InputMaybe; }; /** select columns of table "coin_infos" */ export enum Coin_Infos_Select_Column { /** column name */ CoinType = 'coin_type', /** column name */ CoinTypeHash = 'coin_type_hash', /** column name */ CreatorAddress = 'creator_address', /** column name */ Decimals = 'decimals', /** column name */ Name = 'name', /** column name */ SupplyAggregatorTableHandle = 'supply_aggregator_table_handle', /** column name */ SupplyAggregatorTableKey = 'supply_aggregator_table_key', /** column name */ Symbol = 'symbol', /** column name */ TransactionCreatedTimestamp = 'transaction_created_timestamp', /** column name */ TransactionVersionCreated = 'transaction_version_created' } /** Streaming cursor of the table "coin_infos" */ export type Coin_Infos_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Coin_Infos_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Coin_Infos_Stream_Cursor_Value_Input = { coin_type?: InputMaybe; coin_type_hash?: InputMaybe; creator_address?: InputMaybe; decimals?: InputMaybe; name?: InputMaybe; supply_aggregator_table_handle?: InputMaybe; supply_aggregator_table_key?: InputMaybe; symbol?: InputMaybe; transaction_created_timestamp?: InputMaybe; transaction_version_created?: InputMaybe; }; /** columns and relationships of "coin_supply" */ export type Coin_Supply = { __typename?: 'coin_supply'; coin_type: Scalars['String']['output']; coin_type_hash: Scalars['String']['output']; supply: Scalars['numeric']['output']; transaction_epoch: Scalars['bigint']['output']; transaction_timestamp: Scalars['timestamp']['output']; transaction_version: Scalars['bigint']['output']; }; /** Boolean expression to filter rows from the table "coin_supply". All fields are combined with a logical 'AND'. */ export type Coin_Supply_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; coin_type?: InputMaybe; coin_type_hash?: InputMaybe; supply?: InputMaybe; transaction_epoch?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; }; /** Ordering options when selecting data from "coin_supply". */ export type Coin_Supply_Order_By = { coin_type?: InputMaybe; coin_type_hash?: InputMaybe; supply?: InputMaybe; transaction_epoch?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; }; /** select columns of table "coin_supply" */ export enum Coin_Supply_Select_Column { /** column name */ CoinType = 'coin_type', /** column name */ CoinTypeHash = 'coin_type_hash', /** column name */ Supply = 'supply', /** column name */ TransactionEpoch = 'transaction_epoch', /** column name */ TransactionTimestamp = 'transaction_timestamp', /** column name */ TransactionVersion = 'transaction_version' } /** Streaming cursor of the table "coin_supply" */ export type Coin_Supply_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Coin_Supply_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Coin_Supply_Stream_Cursor_Value_Input = { coin_type?: InputMaybe; coin_type_hash?: InputMaybe; supply?: InputMaybe; transaction_epoch?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; }; /** columns and relationships of "collection_datas" */ export type Collection_Datas = { __typename?: 'collection_datas'; collection_data_id_hash: Scalars['String']['output']; collection_name: Scalars['String']['output']; creator_address: Scalars['String']['output']; description: Scalars['String']['output']; description_mutable: Scalars['Boolean']['output']; maximum: Scalars['numeric']['output']; maximum_mutable: Scalars['Boolean']['output']; metadata_uri: Scalars['String']['output']; supply: Scalars['numeric']['output']; table_handle: Scalars['String']['output']; transaction_timestamp: Scalars['timestamp']['output']; transaction_version: Scalars['bigint']['output']; uri_mutable: Scalars['Boolean']['output']; }; /** Boolean expression to filter rows from the table "collection_datas". All fields are combined with a logical 'AND'. */ export type Collection_Datas_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; collection_data_id_hash?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; description?: InputMaybe; description_mutable?: InputMaybe; maximum?: InputMaybe; maximum_mutable?: InputMaybe; metadata_uri?: InputMaybe; supply?: InputMaybe; table_handle?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; uri_mutable?: InputMaybe; }; /** Ordering options when selecting data from "collection_datas". */ export type Collection_Datas_Order_By = { collection_data_id_hash?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; description?: InputMaybe; description_mutable?: InputMaybe; maximum?: InputMaybe; maximum_mutable?: InputMaybe; metadata_uri?: InputMaybe; supply?: InputMaybe; table_handle?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; uri_mutable?: InputMaybe; }; /** select columns of table "collection_datas" */ export enum Collection_Datas_Select_Column { /** column name */ CollectionDataIdHash = 'collection_data_id_hash', /** column name */ CollectionName = 'collection_name', /** column name */ CreatorAddress = 'creator_address', /** column name */ Description = 'description', /** column name */ DescriptionMutable = 'description_mutable', /** column name */ Maximum = 'maximum', /** column name */ MaximumMutable = 'maximum_mutable', /** column name */ MetadataUri = 'metadata_uri', /** column name */ Supply = 'supply', /** column name */ TableHandle = 'table_handle', /** column name */ TransactionTimestamp = 'transaction_timestamp', /** column name */ TransactionVersion = 'transaction_version', /** column name */ UriMutable = 'uri_mutable' } /** Streaming cursor of the table "collection_datas" */ export type Collection_Datas_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Collection_Datas_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Collection_Datas_Stream_Cursor_Value_Input = { collection_data_id_hash?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; description?: InputMaybe; description_mutable?: InputMaybe; maximum?: InputMaybe; maximum_mutable?: InputMaybe; metadata_uri?: InputMaybe; supply?: InputMaybe; table_handle?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; uri_mutable?: InputMaybe; }; /** columns and relationships of "current_ans_lookup" */ export type Current_Ans_Lookup = { __typename?: 'current_ans_lookup'; /** An array relationship */ all_token_ownerships: Array; /** An aggregate relationship */ all_token_ownerships_aggregate: Current_Token_Ownerships_Aggregate; domain: Scalars['String']['output']; expiration_timestamp: Scalars['timestamp']['output']; is_deleted: Scalars['Boolean']['output']; last_transaction_version: Scalars['bigint']['output']; registered_address?: Maybe; subdomain: Scalars['String']['output']; token_name: Scalars['String']['output']; }; /** columns and relationships of "current_ans_lookup" */ export type Current_Ans_LookupAll_Token_OwnershipsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "current_ans_lookup" */ export type Current_Ans_LookupAll_Token_Ownerships_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** Boolean expression to filter rows from the table "current_ans_lookup". All fields are combined with a logical 'AND'. */ export type Current_Ans_Lookup_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; all_token_ownerships?: InputMaybe; all_token_ownerships_aggregate?: InputMaybe; domain?: InputMaybe; expiration_timestamp?: InputMaybe; is_deleted?: InputMaybe; last_transaction_version?: InputMaybe; registered_address?: InputMaybe; subdomain?: InputMaybe; token_name?: InputMaybe; }; /** Ordering options when selecting data from "current_ans_lookup". */ export type Current_Ans_Lookup_Order_By = { all_token_ownerships_aggregate?: InputMaybe; domain?: InputMaybe; expiration_timestamp?: InputMaybe; is_deleted?: InputMaybe; last_transaction_version?: InputMaybe; registered_address?: InputMaybe; subdomain?: InputMaybe; token_name?: InputMaybe; }; /** select columns of table "current_ans_lookup" */ export enum Current_Ans_Lookup_Select_Column { /** column name */ Domain = 'domain', /** column name */ ExpirationTimestamp = 'expiration_timestamp', /** column name */ IsDeleted = 'is_deleted', /** column name */ LastTransactionVersion = 'last_transaction_version', /** column name */ RegisteredAddress = 'registered_address', /** column name */ Subdomain = 'subdomain', /** column name */ TokenName = 'token_name' } /** Streaming cursor of the table "current_ans_lookup" */ export type Current_Ans_Lookup_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Current_Ans_Lookup_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Current_Ans_Lookup_Stream_Cursor_Value_Input = { domain?: InputMaybe; expiration_timestamp?: InputMaybe; is_deleted?: InputMaybe; last_transaction_version?: InputMaybe; registered_address?: InputMaybe; subdomain?: InputMaybe; token_name?: InputMaybe; }; /** columns and relationships of "current_ans_lookup_v2" */ export type Current_Ans_Lookup_V2 = { __typename?: 'current_ans_lookup_v2'; domain: Scalars['String']['output']; expiration_timestamp: Scalars['timestamp']['output']; is_deleted: Scalars['Boolean']['output']; last_transaction_version: Scalars['bigint']['output']; registered_address?: Maybe; subdomain: Scalars['String']['output']; token_name?: Maybe; token_standard: Scalars['String']['output']; }; /** Boolean expression to filter rows from the table "current_ans_lookup_v2". All fields are combined with a logical 'AND'. */ export type Current_Ans_Lookup_V2_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; domain?: InputMaybe; expiration_timestamp?: InputMaybe; is_deleted?: InputMaybe; last_transaction_version?: InputMaybe; registered_address?: InputMaybe; subdomain?: InputMaybe; token_name?: InputMaybe; token_standard?: InputMaybe; }; /** Ordering options when selecting data from "current_ans_lookup_v2". */ export type Current_Ans_Lookup_V2_Order_By = { domain?: InputMaybe; expiration_timestamp?: InputMaybe; is_deleted?: InputMaybe; last_transaction_version?: InputMaybe; registered_address?: InputMaybe; subdomain?: InputMaybe; token_name?: InputMaybe; token_standard?: InputMaybe; }; /** select columns of table "current_ans_lookup_v2" */ export enum Current_Ans_Lookup_V2_Select_Column { /** column name */ Domain = 'domain', /** column name */ ExpirationTimestamp = 'expiration_timestamp', /** column name */ IsDeleted = 'is_deleted', /** column name */ LastTransactionVersion = 'last_transaction_version', /** column name */ RegisteredAddress = 'registered_address', /** column name */ Subdomain = 'subdomain', /** column name */ TokenName = 'token_name', /** column name */ TokenStandard = 'token_standard' } /** Streaming cursor of the table "current_ans_lookup_v2" */ export type Current_Ans_Lookup_V2_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Current_Ans_Lookup_V2_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Current_Ans_Lookup_V2_Stream_Cursor_Value_Input = { domain?: InputMaybe; expiration_timestamp?: InputMaybe; is_deleted?: InputMaybe; last_transaction_version?: InputMaybe; registered_address?: InputMaybe; subdomain?: InputMaybe; token_name?: InputMaybe; token_standard?: InputMaybe; }; /** columns and relationships of "current_endless_names" */ export type Current_Endless_Names = { __typename?: 'current_endless_names'; domain?: Maybe; domain_with_suffix?: Maybe; expiration_timestamp?: Maybe; is_active?: Maybe; /** An object relationship */ is_domain_owner?: Maybe; is_primary?: Maybe; last_transaction_version?: Maybe; owner_address?: Maybe; registered_address?: Maybe; subdomain?: Maybe; token_name?: Maybe; token_standard?: Maybe; }; /** aggregated selection of "current_endless_names" */ export type Current_Endless_Names_Aggregate = { __typename?: 'current_endless_names_aggregate'; aggregate?: Maybe; nodes: Array; }; export type Current_Endless_Names_Aggregate_Bool_Exp = { bool_and?: InputMaybe; bool_or?: InputMaybe; count?: InputMaybe; }; export type Current_Endless_Names_Aggregate_Bool_Exp_Bool_And = { arguments: Current_Endless_Names_Select_Column_Current_Endless_Names_Aggregate_Bool_Exp_Bool_And_Arguments_Columns; distinct?: InputMaybe; filter?: InputMaybe; predicate: Boolean_Comparison_Exp; }; export type Current_Endless_Names_Aggregate_Bool_Exp_Bool_Or = { arguments: Current_Endless_Names_Select_Column_Current_Endless_Names_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns; distinct?: InputMaybe; filter?: InputMaybe; predicate: Boolean_Comparison_Exp; }; export type Current_Endless_Names_Aggregate_Bool_Exp_Count = { arguments?: InputMaybe>; distinct?: InputMaybe; filter?: InputMaybe; predicate: Int_Comparison_Exp; }; /** aggregate fields of "current_endless_names" */ export type Current_Endless_Names_Aggregate_Fields = { __typename?: 'current_endless_names_aggregate_fields'; avg?: Maybe; count: Scalars['Int']['output']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "current_endless_names" */ export type Current_Endless_Names_Aggregate_FieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** order by aggregate values of table "current_endless_names" */ export type Current_Endless_Names_Aggregate_Order_By = { avg?: InputMaybe; count?: InputMaybe; max?: InputMaybe; min?: InputMaybe; stddev?: InputMaybe; stddev_pop?: InputMaybe; stddev_samp?: InputMaybe; sum?: InputMaybe; var_pop?: InputMaybe; var_samp?: InputMaybe; variance?: InputMaybe; }; /** aggregate avg on columns */ export type Current_Endless_Names_Avg_Fields = { __typename?: 'current_endless_names_avg_fields'; last_transaction_version?: Maybe; }; /** order by avg() on columns of table "current_endless_names" */ export type Current_Endless_Names_Avg_Order_By = { last_transaction_version?: InputMaybe; }; /** Boolean expression to filter rows from the table "current_endless_names". All fields are combined with a logical 'AND'. */ export type Current_Endless_Names_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; domain?: InputMaybe; domain_with_suffix?: InputMaybe; expiration_timestamp?: InputMaybe; is_active?: InputMaybe; is_domain_owner?: InputMaybe; is_primary?: InputMaybe; last_transaction_version?: InputMaybe; owner_address?: InputMaybe; registered_address?: InputMaybe; subdomain?: InputMaybe; token_name?: InputMaybe; token_standard?: InputMaybe; }; /** aggregate max on columns */ export type Current_Endless_Names_Max_Fields = { __typename?: 'current_endless_names_max_fields'; domain?: Maybe; domain_with_suffix?: Maybe; expiration_timestamp?: Maybe; last_transaction_version?: Maybe; owner_address?: Maybe; registered_address?: Maybe; subdomain?: Maybe; token_name?: Maybe; token_standard?: Maybe; }; /** order by max() on columns of table "current_endless_names" */ export type Current_Endless_Names_Max_Order_By = { domain?: InputMaybe; domain_with_suffix?: InputMaybe; expiration_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; owner_address?: InputMaybe; registered_address?: InputMaybe; subdomain?: InputMaybe; token_name?: InputMaybe; token_standard?: InputMaybe; }; /** aggregate min on columns */ export type Current_Endless_Names_Min_Fields = { __typename?: 'current_endless_names_min_fields'; domain?: Maybe; domain_with_suffix?: Maybe; expiration_timestamp?: Maybe; last_transaction_version?: Maybe; owner_address?: Maybe; registered_address?: Maybe; subdomain?: Maybe; token_name?: Maybe; token_standard?: Maybe; }; /** order by min() on columns of table "current_endless_names" */ export type Current_Endless_Names_Min_Order_By = { domain?: InputMaybe; domain_with_suffix?: InputMaybe; expiration_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; owner_address?: InputMaybe; registered_address?: InputMaybe; subdomain?: InputMaybe; token_name?: InputMaybe; token_standard?: InputMaybe; }; /** Ordering options when selecting data from "current_endless_names". */ export type Current_Endless_Names_Order_By = { domain?: InputMaybe; domain_with_suffix?: InputMaybe; expiration_timestamp?: InputMaybe; is_active?: InputMaybe; is_domain_owner?: InputMaybe; is_primary?: InputMaybe; last_transaction_version?: InputMaybe; owner_address?: InputMaybe; registered_address?: InputMaybe; subdomain?: InputMaybe; token_name?: InputMaybe; token_standard?: InputMaybe; }; /** select columns of table "current_endless_names" */ export enum Current_Endless_Names_Select_Column { /** column name */ Domain = 'domain', /** column name */ DomainWithSuffix = 'domain_with_suffix', /** column name */ ExpirationTimestamp = 'expiration_timestamp', /** column name */ IsActive = 'is_active', /** column name */ IsPrimary = 'is_primary', /** column name */ LastTransactionVersion = 'last_transaction_version', /** column name */ OwnerAddress = 'owner_address', /** column name */ RegisteredAddress = 'registered_address', /** column name */ Subdomain = 'subdomain', /** column name */ TokenName = 'token_name', /** column name */ TokenStandard = 'token_standard' } /** select "current_endless_names_aggregate_bool_exp_bool_and_arguments_columns" columns of table "current_endless_names" */ export enum Current_Endless_Names_Select_Column_Current_Endless_Names_Aggregate_Bool_Exp_Bool_And_Arguments_Columns { /** column name */ IsActive = 'is_active', /** column name */ IsPrimary = 'is_primary' } /** select "current_endless_names_aggregate_bool_exp_bool_or_arguments_columns" columns of table "current_endless_names" */ export enum Current_Endless_Names_Select_Column_Current_Endless_Names_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns { /** column name */ IsActive = 'is_active', /** column name */ IsPrimary = 'is_primary' } /** aggregate stddev on columns */ export type Current_Endless_Names_Stddev_Fields = { __typename?: 'current_endless_names_stddev_fields'; last_transaction_version?: Maybe; }; /** order by stddev() on columns of table "current_endless_names" */ export type Current_Endless_Names_Stddev_Order_By = { last_transaction_version?: InputMaybe; }; /** aggregate stddev_pop on columns */ export type Current_Endless_Names_Stddev_Pop_Fields = { __typename?: 'current_endless_names_stddev_pop_fields'; last_transaction_version?: Maybe; }; /** order by stddev_pop() on columns of table "current_endless_names" */ export type Current_Endless_Names_Stddev_Pop_Order_By = { last_transaction_version?: InputMaybe; }; /** aggregate stddev_samp on columns */ export type Current_Endless_Names_Stddev_Samp_Fields = { __typename?: 'current_endless_names_stddev_samp_fields'; last_transaction_version?: Maybe; }; /** order by stddev_samp() on columns of table "current_endless_names" */ export type Current_Endless_Names_Stddev_Samp_Order_By = { last_transaction_version?: InputMaybe; }; /** Streaming cursor of the table "current_endless_names" */ export type Current_Endless_Names_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Current_Endless_Names_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Current_Endless_Names_Stream_Cursor_Value_Input = { domain?: InputMaybe; domain_with_suffix?: InputMaybe; expiration_timestamp?: InputMaybe; is_active?: InputMaybe; is_primary?: InputMaybe; last_transaction_version?: InputMaybe; owner_address?: InputMaybe; registered_address?: InputMaybe; subdomain?: InputMaybe; token_name?: InputMaybe; token_standard?: InputMaybe; }; /** aggregate sum on columns */ export type Current_Endless_Names_Sum_Fields = { __typename?: 'current_endless_names_sum_fields'; last_transaction_version?: Maybe; }; /** order by sum() on columns of table "current_endless_names" */ export type Current_Endless_Names_Sum_Order_By = { last_transaction_version?: InputMaybe; }; /** aggregate var_pop on columns */ export type Current_Endless_Names_Var_Pop_Fields = { __typename?: 'current_endless_names_var_pop_fields'; last_transaction_version?: Maybe; }; /** order by var_pop() on columns of table "current_endless_names" */ export type Current_Endless_Names_Var_Pop_Order_By = { last_transaction_version?: InputMaybe; }; /** aggregate var_samp on columns */ export type Current_Endless_Names_Var_Samp_Fields = { __typename?: 'current_endless_names_var_samp_fields'; last_transaction_version?: Maybe; }; /** order by var_samp() on columns of table "current_endless_names" */ export type Current_Endless_Names_Var_Samp_Order_By = { last_transaction_version?: InputMaybe; }; /** aggregate variance on columns */ export type Current_Endless_Names_Variance_Fields = { __typename?: 'current_endless_names_variance_fields'; last_transaction_version?: Maybe; }; /** order by variance() on columns of table "current_endless_names" */ export type Current_Endless_Names_Variance_Order_By = { last_transaction_version?: InputMaybe; }; /** columns and relationships of "current_coin_balances" */ export type Current_Coin_Balances = { __typename?: 'current_coin_balances'; amount: Scalars['numeric']['output']; /** An object relationship */ coin_info?: Maybe; coin_type: Scalars['String']['output']; coin_type_hash: Scalars['String']['output']; last_transaction_timestamp: Scalars['timestamp']['output']; last_transaction_version: Scalars['bigint']['output']; owner_address: Scalars['String']['output']; }; /** Boolean expression to filter rows from the table "current_coin_balances". All fields are combined with a logical 'AND'. */ export type Current_Coin_Balances_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; amount?: InputMaybe; coin_info?: InputMaybe; coin_type?: InputMaybe; coin_type_hash?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; owner_address?: InputMaybe; }; /** Ordering options when selecting data from "current_coin_balances". */ export type Current_Coin_Balances_Order_By = { amount?: InputMaybe; coin_info?: InputMaybe; coin_type?: InputMaybe; coin_type_hash?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; owner_address?: InputMaybe; }; /** select columns of table "current_coin_balances" */ export enum Current_Coin_Balances_Select_Column { /** column name */ Amount = 'amount', /** column name */ CoinType = 'coin_type', /** column name */ CoinTypeHash = 'coin_type_hash', /** column name */ LastTransactionTimestamp = 'last_transaction_timestamp', /** column name */ LastTransactionVersion = 'last_transaction_version', /** column name */ OwnerAddress = 'owner_address' } /** Streaming cursor of the table "current_coin_balances" */ export type Current_Coin_Balances_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Current_Coin_Balances_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Current_Coin_Balances_Stream_Cursor_Value_Input = { amount?: InputMaybe; coin_type?: InputMaybe; coin_type_hash?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; owner_address?: InputMaybe; }; /** columns and relationships of "current_collection_datas" */ export type Current_Collection_Datas = { __typename?: 'current_collection_datas'; collection_data_id_hash: Scalars['String']['output']; collection_name: Scalars['String']['output']; creator_address: Scalars['String']['output']; description: Scalars['String']['output']; description_mutable: Scalars['Boolean']['output']; last_transaction_timestamp: Scalars['timestamp']['output']; last_transaction_version: Scalars['bigint']['output']; maximum: Scalars['numeric']['output']; maximum_mutable: Scalars['Boolean']['output']; metadata_uri: Scalars['String']['output']; supply: Scalars['numeric']['output']; table_handle: Scalars['String']['output']; uri_mutable: Scalars['Boolean']['output']; }; /** Boolean expression to filter rows from the table "current_collection_datas". All fields are combined with a logical 'AND'. */ export type Current_Collection_Datas_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; collection_data_id_hash?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; description?: InputMaybe; description_mutable?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; maximum?: InputMaybe; maximum_mutable?: InputMaybe; metadata_uri?: InputMaybe; supply?: InputMaybe; table_handle?: InputMaybe; uri_mutable?: InputMaybe; }; /** Ordering options when selecting data from "current_collection_datas". */ export type Current_Collection_Datas_Order_By = { collection_data_id_hash?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; description?: InputMaybe; description_mutable?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; maximum?: InputMaybe; maximum_mutable?: InputMaybe; metadata_uri?: InputMaybe; supply?: InputMaybe; table_handle?: InputMaybe; uri_mutable?: InputMaybe; }; /** select columns of table "current_collection_datas" */ export enum Current_Collection_Datas_Select_Column { /** column name */ CollectionDataIdHash = 'collection_data_id_hash', /** column name */ CollectionName = 'collection_name', /** column name */ CreatorAddress = 'creator_address', /** column name */ Description = 'description', /** column name */ DescriptionMutable = 'description_mutable', /** column name */ LastTransactionTimestamp = 'last_transaction_timestamp', /** column name */ LastTransactionVersion = 'last_transaction_version', /** column name */ Maximum = 'maximum', /** column name */ MaximumMutable = 'maximum_mutable', /** column name */ MetadataUri = 'metadata_uri', /** column name */ Supply = 'supply', /** column name */ TableHandle = 'table_handle', /** column name */ UriMutable = 'uri_mutable' } /** Streaming cursor of the table "current_collection_datas" */ export type Current_Collection_Datas_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Current_Collection_Datas_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Current_Collection_Datas_Stream_Cursor_Value_Input = { collection_data_id_hash?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; description?: InputMaybe; description_mutable?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; maximum?: InputMaybe; maximum_mutable?: InputMaybe; metadata_uri?: InputMaybe; supply?: InputMaybe; table_handle?: InputMaybe; uri_mutable?: InputMaybe; }; /** columns and relationships of "current_collection_ownership_v2_view" */ export type Current_Collection_Ownership_V2_View = { __typename?: 'current_collection_ownership_v2_view'; collection_id?: Maybe; collection_name?: Maybe; collection_uri?: Maybe; creator_address?: Maybe; /** An object relationship */ current_collection?: Maybe; distinct_tokens?: Maybe; last_transaction_version?: Maybe; owner_address?: Maybe; single_token_uri?: Maybe; }; /** aggregated selection of "current_collection_ownership_v2_view" */ export type Current_Collection_Ownership_V2_View_Aggregate = { __typename?: 'current_collection_ownership_v2_view_aggregate'; aggregate?: Maybe; nodes: Array; }; /** aggregate fields of "current_collection_ownership_v2_view" */ export type Current_Collection_Ownership_V2_View_Aggregate_Fields = { __typename?: 'current_collection_ownership_v2_view_aggregate_fields'; avg?: Maybe; count: Scalars['Int']['output']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "current_collection_ownership_v2_view" */ export type Current_Collection_Ownership_V2_View_Aggregate_FieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** aggregate avg on columns */ export type Current_Collection_Ownership_V2_View_Avg_Fields = { __typename?: 'current_collection_ownership_v2_view_avg_fields'; distinct_tokens?: Maybe; last_transaction_version?: Maybe; }; /** Boolean expression to filter rows from the table "current_collection_ownership_v2_view". All fields are combined with a logical 'AND'. */ export type Current_Collection_Ownership_V2_View_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; collection_id?: InputMaybe; collection_name?: InputMaybe; collection_uri?: InputMaybe; creator_address?: InputMaybe; current_collection?: InputMaybe; distinct_tokens?: InputMaybe; last_transaction_version?: InputMaybe; owner_address?: InputMaybe; single_token_uri?: InputMaybe; }; /** aggregate max on columns */ export type Current_Collection_Ownership_V2_View_Max_Fields = { __typename?: 'current_collection_ownership_v2_view_max_fields'; collection_id?: Maybe; collection_name?: Maybe; collection_uri?: Maybe; creator_address?: Maybe; distinct_tokens?: Maybe; last_transaction_version?: Maybe; owner_address?: Maybe; single_token_uri?: Maybe; }; /** aggregate min on columns */ export type Current_Collection_Ownership_V2_View_Min_Fields = { __typename?: 'current_collection_ownership_v2_view_min_fields'; collection_id?: Maybe; collection_name?: Maybe; collection_uri?: Maybe; creator_address?: Maybe; distinct_tokens?: Maybe; last_transaction_version?: Maybe; owner_address?: Maybe; single_token_uri?: Maybe; }; /** Ordering options when selecting data from "current_collection_ownership_v2_view". */ export type Current_Collection_Ownership_V2_View_Order_By = { collection_id?: InputMaybe; collection_name?: InputMaybe; collection_uri?: InputMaybe; creator_address?: InputMaybe; current_collection?: InputMaybe; distinct_tokens?: InputMaybe; last_transaction_version?: InputMaybe; owner_address?: InputMaybe; single_token_uri?: InputMaybe; }; /** select columns of table "current_collection_ownership_v2_view" */ export enum Current_Collection_Ownership_V2_View_Select_Column { /** column name */ CollectionId = 'collection_id', /** column name */ CollectionName = 'collection_name', /** column name */ CollectionUri = 'collection_uri', /** column name */ CreatorAddress = 'creator_address', /** column name */ DistinctTokens = 'distinct_tokens', /** column name */ LastTransactionVersion = 'last_transaction_version', /** column name */ OwnerAddress = 'owner_address', /** column name */ SingleTokenUri = 'single_token_uri' } /** aggregate stddev on columns */ export type Current_Collection_Ownership_V2_View_Stddev_Fields = { __typename?: 'current_collection_ownership_v2_view_stddev_fields'; distinct_tokens?: Maybe; last_transaction_version?: Maybe; }; /** aggregate stddev_pop on columns */ export type Current_Collection_Ownership_V2_View_Stddev_Pop_Fields = { __typename?: 'current_collection_ownership_v2_view_stddev_pop_fields'; distinct_tokens?: Maybe; last_transaction_version?: Maybe; }; /** aggregate stddev_samp on columns */ export type Current_Collection_Ownership_V2_View_Stddev_Samp_Fields = { __typename?: 'current_collection_ownership_v2_view_stddev_samp_fields'; distinct_tokens?: Maybe; last_transaction_version?: Maybe; }; /** Streaming cursor of the table "current_collection_ownership_v2_view" */ export type Current_Collection_Ownership_V2_View_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Current_Collection_Ownership_V2_View_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Current_Collection_Ownership_V2_View_Stream_Cursor_Value_Input = { collection_id?: InputMaybe; collection_name?: InputMaybe; collection_uri?: InputMaybe; creator_address?: InputMaybe; distinct_tokens?: InputMaybe; last_transaction_version?: InputMaybe; owner_address?: InputMaybe; single_token_uri?: InputMaybe; }; /** aggregate sum on columns */ export type Current_Collection_Ownership_V2_View_Sum_Fields = { __typename?: 'current_collection_ownership_v2_view_sum_fields'; distinct_tokens?: Maybe; last_transaction_version?: Maybe; }; /** aggregate var_pop on columns */ export type Current_Collection_Ownership_V2_View_Var_Pop_Fields = { __typename?: 'current_collection_ownership_v2_view_var_pop_fields'; distinct_tokens?: Maybe; last_transaction_version?: Maybe; }; /** aggregate var_samp on columns */ export type Current_Collection_Ownership_V2_View_Var_Samp_Fields = { __typename?: 'current_collection_ownership_v2_view_var_samp_fields'; distinct_tokens?: Maybe; last_transaction_version?: Maybe; }; /** aggregate variance on columns */ export type Current_Collection_Ownership_V2_View_Variance_Fields = { __typename?: 'current_collection_ownership_v2_view_variance_fields'; distinct_tokens?: Maybe; last_transaction_version?: Maybe; }; /** columns and relationships of "current_collections_v2" */ export type Current_Collections_V2 = { __typename?: 'current_collections_v2'; /** An object relationship */ cdn_asset_uris?: Maybe; collection_id: Scalars['String']['output']; collection_name: Scalars['String']['output']; creator_address: Scalars['String']['output']; current_supply: Scalars['numeric']['output']; description: Scalars['String']['output']; last_transaction_timestamp: Scalars['timestamp']['output']; last_transaction_version: Scalars['bigint']['output']; max_supply?: Maybe; mutable_description?: Maybe; mutable_uri?: Maybe; table_handle_v1?: Maybe; token_standard: Scalars['String']['output']; total_minted_v2?: Maybe; uri: Scalars['String']['output']; }; /** Boolean expression to filter rows from the table "current_collections_v2". All fields are combined with a logical 'AND'. */ export type Current_Collections_V2_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; cdn_asset_uris?: InputMaybe; collection_id?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; current_supply?: InputMaybe; description?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; max_supply?: InputMaybe; mutable_description?: InputMaybe; mutable_uri?: InputMaybe; table_handle_v1?: InputMaybe; token_standard?: InputMaybe; total_minted_v2?: InputMaybe; uri?: InputMaybe; }; /** Ordering options when selecting data from "current_collections_v2". */ export type Current_Collections_V2_Order_By = { cdn_asset_uris?: InputMaybe; collection_id?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; current_supply?: InputMaybe; description?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; max_supply?: InputMaybe; mutable_description?: InputMaybe; mutable_uri?: InputMaybe; table_handle_v1?: InputMaybe; token_standard?: InputMaybe; total_minted_v2?: InputMaybe; uri?: InputMaybe; }; /** select columns of table "current_collections_v2" */ export enum Current_Collections_V2_Select_Column { /** column name */ CollectionId = 'collection_id', /** column name */ CollectionName = 'collection_name', /** column name */ CreatorAddress = 'creator_address', /** column name */ CurrentSupply = 'current_supply', /** column name */ Description = 'description', /** column name */ LastTransactionTimestamp = 'last_transaction_timestamp', /** column name */ LastTransactionVersion = 'last_transaction_version', /** column name */ MaxSupply = 'max_supply', /** column name */ MutableDescription = 'mutable_description', /** column name */ MutableUri = 'mutable_uri', /** column name */ TableHandleV1 = 'table_handle_v1', /** column name */ TokenStandard = 'token_standard', /** column name */ TotalMintedV2 = 'total_minted_v2', /** column name */ Uri = 'uri' } /** Streaming cursor of the table "current_collections_v2" */ export type Current_Collections_V2_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Current_Collections_V2_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Current_Collections_V2_Stream_Cursor_Value_Input = { collection_id?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; current_supply?: InputMaybe; description?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; max_supply?: InputMaybe; mutable_description?: InputMaybe; mutable_uri?: InputMaybe; table_handle_v1?: InputMaybe; token_standard?: InputMaybe; total_minted_v2?: InputMaybe; uri?: InputMaybe; }; /** columns and relationships of "current_delegated_staking_pool_balances" */ export type Current_Delegated_Staking_Pool_Balances = { __typename?: 'current_delegated_staking_pool_balances'; active_table_handle: Scalars['String']['output']; inactive_table_handle: Scalars['String']['output']; last_transaction_version: Scalars['bigint']['output']; operator_commission_percentage: Scalars['numeric']['output']; staking_pool_address: Scalars['String']['output']; total_coins: Scalars['numeric']['output']; total_shares: Scalars['numeric']['output']; }; /** Boolean expression to filter rows from the table "current_delegated_staking_pool_balances". All fields are combined with a logical 'AND'. */ export type Current_Delegated_Staking_Pool_Balances_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; active_table_handle?: InputMaybe; inactive_table_handle?: InputMaybe; last_transaction_version?: InputMaybe; operator_commission_percentage?: InputMaybe; staking_pool_address?: InputMaybe; total_coins?: InputMaybe; total_shares?: InputMaybe; }; /** Ordering options when selecting data from "current_delegated_staking_pool_balances". */ export type Current_Delegated_Staking_Pool_Balances_Order_By = { active_table_handle?: InputMaybe; inactive_table_handle?: InputMaybe; last_transaction_version?: InputMaybe; operator_commission_percentage?: InputMaybe; staking_pool_address?: InputMaybe; total_coins?: InputMaybe; total_shares?: InputMaybe; }; /** select columns of table "current_delegated_staking_pool_balances" */ export enum Current_Delegated_Staking_Pool_Balances_Select_Column { /** column name */ ActiveTableHandle = 'active_table_handle', /** column name */ InactiveTableHandle = 'inactive_table_handle', /** column name */ LastTransactionVersion = 'last_transaction_version', /** column name */ OperatorCommissionPercentage = 'operator_commission_percentage', /** column name */ StakingPoolAddress = 'staking_pool_address', /** column name */ TotalCoins = 'total_coins', /** column name */ TotalShares = 'total_shares' } /** Streaming cursor of the table "current_delegated_staking_pool_balances" */ export type Current_Delegated_Staking_Pool_Balances_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Current_Delegated_Staking_Pool_Balances_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Current_Delegated_Staking_Pool_Balances_Stream_Cursor_Value_Input = { active_table_handle?: InputMaybe; inactive_table_handle?: InputMaybe; last_transaction_version?: InputMaybe; operator_commission_percentage?: InputMaybe; staking_pool_address?: InputMaybe; total_coins?: InputMaybe; total_shares?: InputMaybe; }; /** columns and relationships of "current_delegated_voter" */ export type Current_Delegated_Voter = { __typename?: 'current_delegated_voter'; delegation_pool_address: Scalars['String']['output']; delegator_address: Scalars['String']['output']; last_transaction_timestamp: Scalars['timestamp']['output']; last_transaction_version: Scalars['bigint']['output']; pending_voter?: Maybe; table_handle?: Maybe; voter?: Maybe; }; /** Boolean expression to filter rows from the table "current_delegated_voter". All fields are combined with a logical 'AND'. */ export type Current_Delegated_Voter_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; delegation_pool_address?: InputMaybe; delegator_address?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; pending_voter?: InputMaybe; table_handle?: InputMaybe; voter?: InputMaybe; }; /** Ordering options when selecting data from "current_delegated_voter". */ export type Current_Delegated_Voter_Order_By = { delegation_pool_address?: InputMaybe; delegator_address?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; pending_voter?: InputMaybe; table_handle?: InputMaybe; voter?: InputMaybe; }; /** select columns of table "current_delegated_voter" */ export enum Current_Delegated_Voter_Select_Column { /** column name */ DelegationPoolAddress = 'delegation_pool_address', /** column name */ DelegatorAddress = 'delegator_address', /** column name */ LastTransactionTimestamp = 'last_transaction_timestamp', /** column name */ LastTransactionVersion = 'last_transaction_version', /** column name */ PendingVoter = 'pending_voter', /** column name */ TableHandle = 'table_handle', /** column name */ Voter = 'voter' } /** Streaming cursor of the table "current_delegated_voter" */ export type Current_Delegated_Voter_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Current_Delegated_Voter_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Current_Delegated_Voter_Stream_Cursor_Value_Input = { delegation_pool_address?: InputMaybe; delegator_address?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; pending_voter?: InputMaybe; table_handle?: InputMaybe; voter?: InputMaybe; }; /** columns and relationships of "current_delegator_balances" */ export type Current_Delegator_Balances = { __typename?: 'current_delegator_balances'; /** An object relationship */ current_pool_balance?: Maybe; delegator_address: Scalars['String']['output']; last_transaction_version: Scalars['bigint']['output']; parent_table_handle: Scalars['String']['output']; pool_address: Scalars['String']['output']; pool_type: Scalars['String']['output']; shares: Scalars['numeric']['output']; /** An object relationship */ staking_pool_metadata?: Maybe; table_handle: Scalars['String']['output']; }; /** Boolean expression to filter rows from the table "current_delegator_balances". All fields are combined with a logical 'AND'. */ export type Current_Delegator_Balances_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; current_pool_balance?: InputMaybe; delegator_address?: InputMaybe; last_transaction_version?: InputMaybe; parent_table_handle?: InputMaybe; pool_address?: InputMaybe; pool_type?: InputMaybe; shares?: InputMaybe; staking_pool_metadata?: InputMaybe; table_handle?: InputMaybe; }; /** Ordering options when selecting data from "current_delegator_balances". */ export type Current_Delegator_Balances_Order_By = { current_pool_balance?: InputMaybe; delegator_address?: InputMaybe; last_transaction_version?: InputMaybe; parent_table_handle?: InputMaybe; pool_address?: InputMaybe; pool_type?: InputMaybe; shares?: InputMaybe; staking_pool_metadata?: InputMaybe; table_handle?: InputMaybe; }; /** select columns of table "current_delegator_balances" */ export enum Current_Delegator_Balances_Select_Column { /** column name */ DelegatorAddress = 'delegator_address', /** column name */ LastTransactionVersion = 'last_transaction_version', /** column name */ ParentTableHandle = 'parent_table_handle', /** column name */ PoolAddress = 'pool_address', /** column name */ PoolType = 'pool_type', /** column name */ Shares = 'shares', /** column name */ TableHandle = 'table_handle' } /** Streaming cursor of the table "current_delegator_balances" */ export type Current_Delegator_Balances_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Current_Delegator_Balances_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Current_Delegator_Balances_Stream_Cursor_Value_Input = { delegator_address?: InputMaybe; last_transaction_version?: InputMaybe; parent_table_handle?: InputMaybe; pool_address?: InputMaybe; pool_type?: InputMaybe; shares?: InputMaybe; table_handle?: InputMaybe; }; /** columns and relationships of "current_fungible_asset_balances" */ export type Current_Fungible_Asset_Balances = { __typename?: 'current_fungible_asset_balances'; amount: Scalars['numeric']['output']; asset_type: Scalars['String']['output']; is_frozen: Scalars['Boolean']['output']; is_primary: Scalars['Boolean']['output']; last_transaction_timestamp: Scalars['timestamp']['output']; last_transaction_version: Scalars['bigint']['output']; /** An object relationship */ metadata?: Maybe; owner_address: Scalars['String']['output']; storage_id: Scalars['String']['output']; token_standard: Scalars['String']['output']; }; /** aggregated selection of "current_fungible_asset_balances" */ export type Current_Fungible_Asset_Balances_Aggregate = { __typename?: 'current_fungible_asset_balances_aggregate'; aggregate?: Maybe; nodes: Array; }; /** aggregate fields of "current_fungible_asset_balances" */ export type Current_Fungible_Asset_Balances_Aggregate_Fields = { __typename?: 'current_fungible_asset_balances_aggregate_fields'; avg?: Maybe; count: Scalars['Int']['output']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "current_fungible_asset_balances" */ export type Current_Fungible_Asset_Balances_Aggregate_FieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** aggregate avg on columns */ export type Current_Fungible_Asset_Balances_Avg_Fields = { __typename?: 'current_fungible_asset_balances_avg_fields'; amount?: Maybe; last_transaction_version?: Maybe; }; /** Boolean expression to filter rows from the table "current_fungible_asset_balances". All fields are combined with a logical 'AND'. */ export type Current_Fungible_Asset_Balances_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; amount?: InputMaybe; asset_type?: InputMaybe; is_frozen?: InputMaybe; is_primary?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; metadata?: InputMaybe; owner_address?: InputMaybe; storage_id?: InputMaybe; token_standard?: InputMaybe; }; /** aggregate max on columns */ export type Current_Fungible_Asset_Balances_Max_Fields = { __typename?: 'current_fungible_asset_balances_max_fields'; amount?: Maybe; asset_type?: Maybe; last_transaction_timestamp?: Maybe; last_transaction_version?: Maybe; owner_address?: Maybe; storage_id?: Maybe; token_standard?: Maybe; }; /** aggregate min on columns */ export type Current_Fungible_Asset_Balances_Min_Fields = { __typename?: 'current_fungible_asset_balances_min_fields'; amount?: Maybe; asset_type?: Maybe; last_transaction_timestamp?: Maybe; last_transaction_version?: Maybe; owner_address?: Maybe; storage_id?: Maybe; token_standard?: Maybe; }; /** Ordering options when selecting data from "current_fungible_asset_balances". */ export type Current_Fungible_Asset_Balances_Order_By = { amount?: InputMaybe; asset_type?: InputMaybe; is_frozen?: InputMaybe; is_primary?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; metadata?: InputMaybe; owner_address?: InputMaybe; storage_id?: InputMaybe; token_standard?: InputMaybe; }; /** select columns of table "current_fungible_asset_balances" */ export enum Current_Fungible_Asset_Balances_Select_Column { /** column name */ Amount = 'amount', /** column name */ AssetType = 'asset_type', /** column name */ IsFrozen = 'is_frozen', /** column name */ IsPrimary = 'is_primary', /** column name */ LastTransactionTimestamp = 'last_transaction_timestamp', /** column name */ LastTransactionVersion = 'last_transaction_version', /** column name */ OwnerAddress = 'owner_address', /** column name */ StorageId = 'storage_id', /** column name */ TokenStandard = 'token_standard' } /** aggregate stddev on columns */ export type Current_Fungible_Asset_Balances_Stddev_Fields = { __typename?: 'current_fungible_asset_balances_stddev_fields'; amount?: Maybe; last_transaction_version?: Maybe; }; /** aggregate stddev_pop on columns */ export type Current_Fungible_Asset_Balances_Stddev_Pop_Fields = { __typename?: 'current_fungible_asset_balances_stddev_pop_fields'; amount?: Maybe; last_transaction_version?: Maybe; }; /** aggregate stddev_samp on columns */ export type Current_Fungible_Asset_Balances_Stddev_Samp_Fields = { __typename?: 'current_fungible_asset_balances_stddev_samp_fields'; amount?: Maybe; last_transaction_version?: Maybe; }; /** Streaming cursor of the table "current_fungible_asset_balances" */ export type Current_Fungible_Asset_Balances_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Current_Fungible_Asset_Balances_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Current_Fungible_Asset_Balances_Stream_Cursor_Value_Input = { amount?: InputMaybe; asset_type?: InputMaybe; is_frozen?: InputMaybe; is_primary?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; owner_address?: InputMaybe; storage_id?: InputMaybe; token_standard?: InputMaybe; }; /** aggregate sum on columns */ export type Current_Fungible_Asset_Balances_Sum_Fields = { __typename?: 'current_fungible_asset_balances_sum_fields'; amount?: Maybe; last_transaction_version?: Maybe; }; /** aggregate var_pop on columns */ export type Current_Fungible_Asset_Balances_Var_Pop_Fields = { __typename?: 'current_fungible_asset_balances_var_pop_fields'; amount?: Maybe; last_transaction_version?: Maybe; }; /** aggregate var_samp on columns */ export type Current_Fungible_Asset_Balances_Var_Samp_Fields = { __typename?: 'current_fungible_asset_balances_var_samp_fields'; amount?: Maybe; last_transaction_version?: Maybe; }; /** aggregate variance on columns */ export type Current_Fungible_Asset_Balances_Variance_Fields = { __typename?: 'current_fungible_asset_balances_variance_fields'; amount?: Maybe; last_transaction_version?: Maybe; }; /** columns and relationships of "current_objects" */ export type Current_Objects = { __typename?: 'current_objects'; allow_ungated_transfer: Scalars['Boolean']['output']; is_deleted: Scalars['Boolean']['output']; last_guid_creation_num: Scalars['numeric']['output']; last_transaction_version: Scalars['bigint']['output']; object_address: Scalars['String']['output']; owner_address: Scalars['String']['output']; state_key_hash: Scalars['String']['output']; }; /** Boolean expression to filter rows from the table "current_objects". All fields are combined with a logical 'AND'. */ export type Current_Objects_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; allow_ungated_transfer?: InputMaybe; is_deleted?: InputMaybe; last_guid_creation_num?: InputMaybe; last_transaction_version?: InputMaybe; object_address?: InputMaybe; owner_address?: InputMaybe; state_key_hash?: InputMaybe; }; /** Ordering options when selecting data from "current_objects". */ export type Current_Objects_Order_By = { allow_ungated_transfer?: InputMaybe; is_deleted?: InputMaybe; last_guid_creation_num?: InputMaybe; last_transaction_version?: InputMaybe; object_address?: InputMaybe; owner_address?: InputMaybe; state_key_hash?: InputMaybe; }; /** select columns of table "current_objects" */ export enum Current_Objects_Select_Column { /** column name */ AllowUngatedTransfer = 'allow_ungated_transfer', /** column name */ IsDeleted = 'is_deleted', /** column name */ LastGuidCreationNum = 'last_guid_creation_num', /** column name */ LastTransactionVersion = 'last_transaction_version', /** column name */ ObjectAddress = 'object_address', /** column name */ OwnerAddress = 'owner_address', /** column name */ StateKeyHash = 'state_key_hash' } /** Streaming cursor of the table "current_objects" */ export type Current_Objects_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Current_Objects_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Current_Objects_Stream_Cursor_Value_Input = { allow_ungated_transfer?: InputMaybe; is_deleted?: InputMaybe; last_guid_creation_num?: InputMaybe; last_transaction_version?: InputMaybe; object_address?: InputMaybe; owner_address?: InputMaybe; state_key_hash?: InputMaybe; }; /** columns and relationships of "current_staking_pool_voter" */ export type Current_Staking_Pool_Voter = { __typename?: 'current_staking_pool_voter'; last_transaction_version: Scalars['bigint']['output']; operator_address: Scalars['String']['output']; /** An array relationship */ operator_endless_name: Array; /** An aggregate relationship */ operator_endless_name_aggregate: Current_Endless_Names_Aggregate; staking_pool_address: Scalars['String']['output']; voter_address: Scalars['String']['output']; }; /** columns and relationships of "current_staking_pool_voter" */ export type Current_Staking_Pool_VoterOperator_Endless_NameArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "current_staking_pool_voter" */ export type Current_Staking_Pool_VoterOperator_Endless_Name_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** Boolean expression to filter rows from the table "current_staking_pool_voter". All fields are combined with a logical 'AND'. */ export type Current_Staking_Pool_Voter_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; last_transaction_version?: InputMaybe; operator_address?: InputMaybe; operator_endless_name?: InputMaybe; operator_endless_name_aggregate?: InputMaybe; staking_pool_address?: InputMaybe; voter_address?: InputMaybe; }; /** Ordering options when selecting data from "current_staking_pool_voter". */ export type Current_Staking_Pool_Voter_Order_By = { last_transaction_version?: InputMaybe; operator_address?: InputMaybe; operator_endless_name_aggregate?: InputMaybe; staking_pool_address?: InputMaybe; voter_address?: InputMaybe; }; /** select columns of table "current_staking_pool_voter" */ export enum Current_Staking_Pool_Voter_Select_Column { /** column name */ LastTransactionVersion = 'last_transaction_version', /** column name */ OperatorAddress = 'operator_address', /** column name */ StakingPoolAddress = 'staking_pool_address', /** column name */ VoterAddress = 'voter_address' } /** Streaming cursor of the table "current_staking_pool_voter" */ export type Current_Staking_Pool_Voter_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Current_Staking_Pool_Voter_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Current_Staking_Pool_Voter_Stream_Cursor_Value_Input = { last_transaction_version?: InputMaybe; operator_address?: InputMaybe; staking_pool_address?: InputMaybe; voter_address?: InputMaybe; }; /** columns and relationships of "current_table_items" */ export type Current_Table_Items = { __typename?: 'current_table_items'; decoded_key: Scalars['jsonb']['output']; decoded_value?: Maybe; is_deleted: Scalars['Boolean']['output']; key: Scalars['String']['output']; key_hash: Scalars['String']['output']; last_transaction_version: Scalars['bigint']['output']; table_handle: Scalars['String']['output']; }; /** columns and relationships of "current_table_items" */ export type Current_Table_ItemsDecoded_KeyArgs = { path?: InputMaybe; }; /** columns and relationships of "current_table_items" */ export type Current_Table_ItemsDecoded_ValueArgs = { path?: InputMaybe; }; /** Boolean expression to filter rows from the table "current_table_items". All fields are combined with a logical 'AND'. */ export type Current_Table_Items_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; decoded_key?: InputMaybe; decoded_value?: InputMaybe; is_deleted?: InputMaybe; key?: InputMaybe; key_hash?: InputMaybe; last_transaction_version?: InputMaybe; table_handle?: InputMaybe; }; /** Ordering options when selecting data from "current_table_items". */ export type Current_Table_Items_Order_By = { decoded_key?: InputMaybe; decoded_value?: InputMaybe; is_deleted?: InputMaybe; key?: InputMaybe; key_hash?: InputMaybe; last_transaction_version?: InputMaybe; table_handle?: InputMaybe; }; /** select columns of table "current_table_items" */ export enum Current_Table_Items_Select_Column { /** column name */ DecodedKey = 'decoded_key', /** column name */ DecodedValue = 'decoded_value', /** column name */ IsDeleted = 'is_deleted', /** column name */ Key = 'key', /** column name */ KeyHash = 'key_hash', /** column name */ LastTransactionVersion = 'last_transaction_version', /** column name */ TableHandle = 'table_handle' } /** Streaming cursor of the table "current_table_items" */ export type Current_Table_Items_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Current_Table_Items_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Current_Table_Items_Stream_Cursor_Value_Input = { decoded_key?: InputMaybe; decoded_value?: InputMaybe; is_deleted?: InputMaybe; key?: InputMaybe; key_hash?: InputMaybe; last_transaction_version?: InputMaybe; table_handle?: InputMaybe; }; /** columns and relationships of "current_token_datas" */ export type Current_Token_Datas = { __typename?: 'current_token_datas'; collection_data_id_hash: Scalars['String']['output']; collection_name: Scalars['String']['output']; creator_address: Scalars['String']['output']; /** An object relationship */ current_collection_data?: Maybe; default_properties: Scalars['jsonb']['output']; description: Scalars['String']['output']; description_mutable: Scalars['Boolean']['output']; largest_property_version: Scalars['numeric']['output']; last_transaction_timestamp: Scalars['timestamp']['output']; last_transaction_version: Scalars['bigint']['output']; maximum: Scalars['numeric']['output']; maximum_mutable: Scalars['Boolean']['output']; metadata_uri: Scalars['String']['output']; name: Scalars['String']['output']; payee_address: Scalars['String']['output']; properties_mutable: Scalars['Boolean']['output']; royalty_mutable: Scalars['Boolean']['output']; royalty_points_denominator: Scalars['numeric']['output']; royalty_points_numerator: Scalars['numeric']['output']; supply: Scalars['numeric']['output']; token_data_id_hash: Scalars['String']['output']; uri_mutable: Scalars['Boolean']['output']; }; /** columns and relationships of "current_token_datas" */ export type Current_Token_DatasDefault_PropertiesArgs = { path?: InputMaybe; }; /** Boolean expression to filter rows from the table "current_token_datas". All fields are combined with a logical 'AND'. */ export type Current_Token_Datas_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; collection_data_id_hash?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; current_collection_data?: InputMaybe; default_properties?: InputMaybe; description?: InputMaybe; description_mutable?: InputMaybe; largest_property_version?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; maximum?: InputMaybe; maximum_mutable?: InputMaybe; metadata_uri?: InputMaybe; name?: InputMaybe; payee_address?: InputMaybe; properties_mutable?: InputMaybe; royalty_mutable?: InputMaybe; royalty_points_denominator?: InputMaybe; royalty_points_numerator?: InputMaybe; supply?: InputMaybe; token_data_id_hash?: InputMaybe; uri_mutable?: InputMaybe; }; /** Ordering options when selecting data from "current_token_datas". */ export type Current_Token_Datas_Order_By = { collection_data_id_hash?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; current_collection_data?: InputMaybe; default_properties?: InputMaybe; description?: InputMaybe; description_mutable?: InputMaybe; largest_property_version?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; maximum?: InputMaybe; maximum_mutable?: InputMaybe; metadata_uri?: InputMaybe; name?: InputMaybe; payee_address?: InputMaybe; properties_mutable?: InputMaybe; royalty_mutable?: InputMaybe; royalty_points_denominator?: InputMaybe; royalty_points_numerator?: InputMaybe; supply?: InputMaybe; token_data_id_hash?: InputMaybe; uri_mutable?: InputMaybe; }; /** select columns of table "current_token_datas" */ export enum Current_Token_Datas_Select_Column { /** column name */ CollectionDataIdHash = 'collection_data_id_hash', /** column name */ CollectionName = 'collection_name', /** column name */ CreatorAddress = 'creator_address', /** column name */ DefaultProperties = 'default_properties', /** column name */ Description = 'description', /** column name */ DescriptionMutable = 'description_mutable', /** column name */ LargestPropertyVersion = 'largest_property_version', /** column name */ LastTransactionTimestamp = 'last_transaction_timestamp', /** column name */ LastTransactionVersion = 'last_transaction_version', /** column name */ Maximum = 'maximum', /** column name */ MaximumMutable = 'maximum_mutable', /** column name */ MetadataUri = 'metadata_uri', /** column name */ Name = 'name', /** column name */ PayeeAddress = 'payee_address', /** column name */ PropertiesMutable = 'properties_mutable', /** column name */ RoyaltyMutable = 'royalty_mutable', /** column name */ RoyaltyPointsDenominator = 'royalty_points_denominator', /** column name */ RoyaltyPointsNumerator = 'royalty_points_numerator', /** column name */ Supply = 'supply', /** column name */ TokenDataIdHash = 'token_data_id_hash', /** column name */ UriMutable = 'uri_mutable' } /** Streaming cursor of the table "current_token_datas" */ export type Current_Token_Datas_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Current_Token_Datas_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Current_Token_Datas_Stream_Cursor_Value_Input = { collection_data_id_hash?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; default_properties?: InputMaybe; description?: InputMaybe; description_mutable?: InputMaybe; largest_property_version?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; maximum?: InputMaybe; maximum_mutable?: InputMaybe; metadata_uri?: InputMaybe; name?: InputMaybe; payee_address?: InputMaybe; properties_mutable?: InputMaybe; royalty_mutable?: InputMaybe; royalty_points_denominator?: InputMaybe; royalty_points_numerator?: InputMaybe; supply?: InputMaybe; token_data_id_hash?: InputMaybe; uri_mutable?: InputMaybe; }; /** columns and relationships of "current_token_datas_v2" */ export type Current_Token_Datas_V2 = { __typename?: 'current_token_datas_v2'; /** An object relationship */ endless_name?: Maybe; /** An object relationship */ cdn_asset_uris?: Maybe; collection_id: Scalars['String']['output']; /** An object relationship */ current_collection?: Maybe; /** An object relationship */ current_token_ownership?: Maybe; description: Scalars['String']['output']; is_fungible_v2?: Maybe; largest_property_version_v1?: Maybe; last_transaction_timestamp: Scalars['timestamp']['output']; last_transaction_version: Scalars['bigint']['output']; maximum?: Maybe; supply: Scalars['numeric']['output']; token_data_id: Scalars['String']['output']; token_name: Scalars['String']['output']; token_properties: Scalars['jsonb']['output']; token_standard: Scalars['String']['output']; token_uri: Scalars['String']['output']; }; /** columns and relationships of "current_token_datas_v2" */ export type Current_Token_Datas_V2Token_PropertiesArgs = { path?: InputMaybe; }; /** Boolean expression to filter rows from the table "current_token_datas_v2". All fields are combined with a logical 'AND'. */ export type Current_Token_Datas_V2_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; endless_name?: InputMaybe; cdn_asset_uris?: InputMaybe; collection_id?: InputMaybe; current_collection?: InputMaybe; current_token_ownership?: InputMaybe; description?: InputMaybe; is_fungible_v2?: InputMaybe; largest_property_version_v1?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; maximum?: InputMaybe; supply?: InputMaybe; token_data_id?: InputMaybe; token_name?: InputMaybe; token_properties?: InputMaybe; token_standard?: InputMaybe; token_uri?: InputMaybe; }; /** Ordering options when selecting data from "current_token_datas_v2". */ export type Current_Token_Datas_V2_Order_By = { endless_name?: InputMaybe; cdn_asset_uris?: InputMaybe; collection_id?: InputMaybe; current_collection?: InputMaybe; current_token_ownership?: InputMaybe; description?: InputMaybe; is_fungible_v2?: InputMaybe; largest_property_version_v1?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; maximum?: InputMaybe; supply?: InputMaybe; token_data_id?: InputMaybe; token_name?: InputMaybe; token_properties?: InputMaybe; token_standard?: InputMaybe; token_uri?: InputMaybe; }; /** select columns of table "current_token_datas_v2" */ export enum Current_Token_Datas_V2_Select_Column { /** column name */ CollectionId = 'collection_id', /** column name */ Description = 'description', /** column name */ IsFungibleV2 = 'is_fungible_v2', /** column name */ LargestPropertyVersionV1 = 'largest_property_version_v1', /** column name */ LastTransactionTimestamp = 'last_transaction_timestamp', /** column name */ LastTransactionVersion = 'last_transaction_version', /** column name */ Maximum = 'maximum', /** column name */ Supply = 'supply', /** column name */ TokenDataId = 'token_data_id', /** column name */ TokenName = 'token_name', /** column name */ TokenProperties = 'token_properties', /** column name */ TokenStandard = 'token_standard', /** column name */ TokenUri = 'token_uri' } /** Streaming cursor of the table "current_token_datas_v2" */ export type Current_Token_Datas_V2_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Current_Token_Datas_V2_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Current_Token_Datas_V2_Stream_Cursor_Value_Input = { collection_id?: InputMaybe; description?: InputMaybe; is_fungible_v2?: InputMaybe; largest_property_version_v1?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; maximum?: InputMaybe; supply?: InputMaybe; token_data_id?: InputMaybe; token_name?: InputMaybe; token_properties?: InputMaybe; token_standard?: InputMaybe; token_uri?: InputMaybe; }; /** columns and relationships of "current_token_ownerships" */ export type Current_Token_Ownerships = { __typename?: 'current_token_ownerships'; amount: Scalars['numeric']['output']; /** An object relationship */ endless_name?: Maybe; collection_data_id_hash: Scalars['String']['output']; collection_name: Scalars['String']['output']; creator_address: Scalars['String']['output']; /** An object relationship */ current_collection_data?: Maybe; /** An object relationship */ current_token_data?: Maybe; last_transaction_timestamp: Scalars['timestamp']['output']; last_transaction_version: Scalars['bigint']['output']; name: Scalars['String']['output']; owner_address: Scalars['String']['output']; property_version: Scalars['numeric']['output']; table_type: Scalars['String']['output']; token_data_id_hash: Scalars['String']['output']; token_properties: Scalars['jsonb']['output']; }; /** columns and relationships of "current_token_ownerships" */ export type Current_Token_OwnershipsToken_PropertiesArgs = { path?: InputMaybe; }; /** aggregated selection of "current_token_ownerships" */ export type Current_Token_Ownerships_Aggregate = { __typename?: 'current_token_ownerships_aggregate'; aggregate?: Maybe; nodes: Array; }; export type Current_Token_Ownerships_Aggregate_Bool_Exp = { count?: InputMaybe; }; export type Current_Token_Ownerships_Aggregate_Bool_Exp_Count = { arguments?: InputMaybe>; distinct?: InputMaybe; filter?: InputMaybe; predicate: Int_Comparison_Exp; }; /** aggregate fields of "current_token_ownerships" */ export type Current_Token_Ownerships_Aggregate_Fields = { __typename?: 'current_token_ownerships_aggregate_fields'; avg?: Maybe; count: Scalars['Int']['output']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "current_token_ownerships" */ export type Current_Token_Ownerships_Aggregate_FieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** order by aggregate values of table "current_token_ownerships" */ export type Current_Token_Ownerships_Aggregate_Order_By = { avg?: InputMaybe; count?: InputMaybe; max?: InputMaybe; min?: InputMaybe; stddev?: InputMaybe; stddev_pop?: InputMaybe; stddev_samp?: InputMaybe; sum?: InputMaybe; var_pop?: InputMaybe; var_samp?: InputMaybe; variance?: InputMaybe; }; /** aggregate avg on columns */ export type Current_Token_Ownerships_Avg_Fields = { __typename?: 'current_token_ownerships_avg_fields'; amount?: Maybe; last_transaction_version?: Maybe; property_version?: Maybe; }; /** order by avg() on columns of table "current_token_ownerships" */ export type Current_Token_Ownerships_Avg_Order_By = { amount?: InputMaybe; last_transaction_version?: InputMaybe; property_version?: InputMaybe; }; /** Boolean expression to filter rows from the table "current_token_ownerships". All fields are combined with a logical 'AND'. */ export type Current_Token_Ownerships_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; amount?: InputMaybe; endless_name?: InputMaybe; collection_data_id_hash?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; current_collection_data?: InputMaybe; current_token_data?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; name?: InputMaybe; owner_address?: InputMaybe; property_version?: InputMaybe; table_type?: InputMaybe; token_data_id_hash?: InputMaybe; token_properties?: InputMaybe; }; /** aggregate max on columns */ export type Current_Token_Ownerships_Max_Fields = { __typename?: 'current_token_ownerships_max_fields'; amount?: Maybe; collection_data_id_hash?: Maybe; collection_name?: Maybe; creator_address?: Maybe; last_transaction_timestamp?: Maybe; last_transaction_version?: Maybe; name?: Maybe; owner_address?: Maybe; property_version?: Maybe; table_type?: Maybe; token_data_id_hash?: Maybe; }; /** order by max() on columns of table "current_token_ownerships" */ export type Current_Token_Ownerships_Max_Order_By = { amount?: InputMaybe; collection_data_id_hash?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; name?: InputMaybe; owner_address?: InputMaybe; property_version?: InputMaybe; table_type?: InputMaybe; token_data_id_hash?: InputMaybe; }; /** aggregate min on columns */ export type Current_Token_Ownerships_Min_Fields = { __typename?: 'current_token_ownerships_min_fields'; amount?: Maybe; collection_data_id_hash?: Maybe; collection_name?: Maybe; creator_address?: Maybe; last_transaction_timestamp?: Maybe; last_transaction_version?: Maybe; name?: Maybe; owner_address?: Maybe; property_version?: Maybe; table_type?: Maybe; token_data_id_hash?: Maybe; }; /** order by min() on columns of table "current_token_ownerships" */ export type Current_Token_Ownerships_Min_Order_By = { amount?: InputMaybe; collection_data_id_hash?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; name?: InputMaybe; owner_address?: InputMaybe; property_version?: InputMaybe; table_type?: InputMaybe; token_data_id_hash?: InputMaybe; }; /** Ordering options when selecting data from "current_token_ownerships". */ export type Current_Token_Ownerships_Order_By = { amount?: InputMaybe; endless_name?: InputMaybe; collection_data_id_hash?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; current_collection_data?: InputMaybe; current_token_data?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; name?: InputMaybe; owner_address?: InputMaybe; property_version?: InputMaybe; table_type?: InputMaybe; token_data_id_hash?: InputMaybe; token_properties?: InputMaybe; }; /** select columns of table "current_token_ownerships" */ export enum Current_Token_Ownerships_Select_Column { /** column name */ Amount = 'amount', /** column name */ CollectionDataIdHash = 'collection_data_id_hash', /** column name */ CollectionName = 'collection_name', /** column name */ CreatorAddress = 'creator_address', /** column name */ LastTransactionTimestamp = 'last_transaction_timestamp', /** column name */ LastTransactionVersion = 'last_transaction_version', /** column name */ Name = 'name', /** column name */ OwnerAddress = 'owner_address', /** column name */ PropertyVersion = 'property_version', /** column name */ TableType = 'table_type', /** column name */ TokenDataIdHash = 'token_data_id_hash', /** column name */ TokenProperties = 'token_properties' } /** aggregate stddev on columns */ export type Current_Token_Ownerships_Stddev_Fields = { __typename?: 'current_token_ownerships_stddev_fields'; amount?: Maybe; last_transaction_version?: Maybe; property_version?: Maybe; }; /** order by stddev() on columns of table "current_token_ownerships" */ export type Current_Token_Ownerships_Stddev_Order_By = { amount?: InputMaybe; last_transaction_version?: InputMaybe; property_version?: InputMaybe; }; /** aggregate stddev_pop on columns */ export type Current_Token_Ownerships_Stddev_Pop_Fields = { __typename?: 'current_token_ownerships_stddev_pop_fields'; amount?: Maybe; last_transaction_version?: Maybe; property_version?: Maybe; }; /** order by stddev_pop() on columns of table "current_token_ownerships" */ export type Current_Token_Ownerships_Stddev_Pop_Order_By = { amount?: InputMaybe; last_transaction_version?: InputMaybe; property_version?: InputMaybe; }; /** aggregate stddev_samp on columns */ export type Current_Token_Ownerships_Stddev_Samp_Fields = { __typename?: 'current_token_ownerships_stddev_samp_fields'; amount?: Maybe; last_transaction_version?: Maybe; property_version?: Maybe; }; /** order by stddev_samp() on columns of table "current_token_ownerships" */ export type Current_Token_Ownerships_Stddev_Samp_Order_By = { amount?: InputMaybe; last_transaction_version?: InputMaybe; property_version?: InputMaybe; }; /** Streaming cursor of the table "current_token_ownerships" */ export type Current_Token_Ownerships_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Current_Token_Ownerships_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Current_Token_Ownerships_Stream_Cursor_Value_Input = { amount?: InputMaybe; collection_data_id_hash?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; name?: InputMaybe; owner_address?: InputMaybe; property_version?: InputMaybe; table_type?: InputMaybe; token_data_id_hash?: InputMaybe; token_properties?: InputMaybe; }; /** aggregate sum on columns */ export type Current_Token_Ownerships_Sum_Fields = { __typename?: 'current_token_ownerships_sum_fields'; amount?: Maybe; last_transaction_version?: Maybe; property_version?: Maybe; }; /** order by sum() on columns of table "current_token_ownerships" */ export type Current_Token_Ownerships_Sum_Order_By = { amount?: InputMaybe; last_transaction_version?: InputMaybe; property_version?: InputMaybe; }; /** columns and relationships of "current_token_ownerships_v2" */ export type Current_Token_Ownerships_V2 = { __typename?: 'current_token_ownerships_v2'; amount: Scalars['numeric']['output']; /** An array relationship */ composed_nfts: Array; /** An aggregate relationship */ composed_nfts_aggregate: Current_Token_Ownerships_V2_Aggregate; /** An object relationship */ current_token_data?: Maybe; is_fungible_v2?: Maybe; is_soulbound_v2?: Maybe; last_transaction_timestamp: Scalars['timestamp']['output']; last_transaction_version: Scalars['bigint']['output']; owner_address: Scalars['String']['output']; property_version_v1: Scalars['numeric']['output']; storage_id: Scalars['String']['output']; table_type_v1?: Maybe; token_data_id: Scalars['String']['output']; token_properties_mutated_v1?: Maybe; token_standard: Scalars['String']['output']; }; /** columns and relationships of "current_token_ownerships_v2" */ export type Current_Token_Ownerships_V2Composed_NftsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "current_token_ownerships_v2" */ export type Current_Token_Ownerships_V2Composed_Nfts_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "current_token_ownerships_v2" */ export type Current_Token_Ownerships_V2Token_Properties_Mutated_V1Args = { path?: InputMaybe; }; /** aggregated selection of "current_token_ownerships_v2" */ export type Current_Token_Ownerships_V2_Aggregate = { __typename?: 'current_token_ownerships_v2_aggregate'; aggregate?: Maybe; nodes: Array; }; export type Current_Token_Ownerships_V2_Aggregate_Bool_Exp = { bool_and?: InputMaybe; bool_or?: InputMaybe; count?: InputMaybe; }; export type Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_And = { arguments: Current_Token_Ownerships_V2_Select_Column_Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_And_Arguments_Columns; distinct?: InputMaybe; filter?: InputMaybe; predicate: Boolean_Comparison_Exp; }; export type Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_Or = { arguments: Current_Token_Ownerships_V2_Select_Column_Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns; distinct?: InputMaybe; filter?: InputMaybe; predicate: Boolean_Comparison_Exp; }; export type Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Count = { arguments?: InputMaybe>; distinct?: InputMaybe; filter?: InputMaybe; predicate: Int_Comparison_Exp; }; /** aggregate fields of "current_token_ownerships_v2" */ export type Current_Token_Ownerships_V2_Aggregate_Fields = { __typename?: 'current_token_ownerships_v2_aggregate_fields'; avg?: Maybe; count: Scalars['Int']['output']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "current_token_ownerships_v2" */ export type Current_Token_Ownerships_V2_Aggregate_FieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** order by aggregate values of table "current_token_ownerships_v2" */ export type Current_Token_Ownerships_V2_Aggregate_Order_By = { avg?: InputMaybe; count?: InputMaybe; max?: InputMaybe; min?: InputMaybe; stddev?: InputMaybe; stddev_pop?: InputMaybe; stddev_samp?: InputMaybe; sum?: InputMaybe; var_pop?: InputMaybe; var_samp?: InputMaybe; variance?: InputMaybe; }; /** aggregate avg on columns */ export type Current_Token_Ownerships_V2_Avg_Fields = { __typename?: 'current_token_ownerships_v2_avg_fields'; amount?: Maybe; last_transaction_version?: Maybe; property_version_v1?: Maybe; }; /** order by avg() on columns of table "current_token_ownerships_v2" */ export type Current_Token_Ownerships_V2_Avg_Order_By = { amount?: InputMaybe; last_transaction_version?: InputMaybe; property_version_v1?: InputMaybe; }; /** Boolean expression to filter rows from the table "current_token_ownerships_v2". All fields are combined with a logical 'AND'. */ export type Current_Token_Ownerships_V2_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; amount?: InputMaybe; composed_nfts?: InputMaybe; composed_nfts_aggregate?: InputMaybe; current_token_data?: InputMaybe; is_fungible_v2?: InputMaybe; is_soulbound_v2?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; owner_address?: InputMaybe; property_version_v1?: InputMaybe; storage_id?: InputMaybe; table_type_v1?: InputMaybe; token_data_id?: InputMaybe; token_properties_mutated_v1?: InputMaybe; token_standard?: InputMaybe; }; /** aggregate max on columns */ export type Current_Token_Ownerships_V2_Max_Fields = { __typename?: 'current_token_ownerships_v2_max_fields'; amount?: Maybe; last_transaction_timestamp?: Maybe; last_transaction_version?: Maybe; owner_address?: Maybe; property_version_v1?: Maybe; storage_id?: Maybe; table_type_v1?: Maybe; token_data_id?: Maybe; token_standard?: Maybe; }; /** order by max() on columns of table "current_token_ownerships_v2" */ export type Current_Token_Ownerships_V2_Max_Order_By = { amount?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; owner_address?: InputMaybe; property_version_v1?: InputMaybe; storage_id?: InputMaybe; table_type_v1?: InputMaybe; token_data_id?: InputMaybe; token_standard?: InputMaybe; }; /** aggregate min on columns */ export type Current_Token_Ownerships_V2_Min_Fields = { __typename?: 'current_token_ownerships_v2_min_fields'; amount?: Maybe; last_transaction_timestamp?: Maybe; last_transaction_version?: Maybe; owner_address?: Maybe; property_version_v1?: Maybe; storage_id?: Maybe; table_type_v1?: Maybe; token_data_id?: Maybe; token_standard?: Maybe; }; /** order by min() on columns of table "current_token_ownerships_v2" */ export type Current_Token_Ownerships_V2_Min_Order_By = { amount?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; owner_address?: InputMaybe; property_version_v1?: InputMaybe; storage_id?: InputMaybe; table_type_v1?: InputMaybe; token_data_id?: InputMaybe; token_standard?: InputMaybe; }; /** Ordering options when selecting data from "current_token_ownerships_v2". */ export type Current_Token_Ownerships_V2_Order_By = { amount?: InputMaybe; composed_nfts_aggregate?: InputMaybe; current_token_data?: InputMaybe; is_fungible_v2?: InputMaybe; is_soulbound_v2?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; owner_address?: InputMaybe; property_version_v1?: InputMaybe; storage_id?: InputMaybe; table_type_v1?: InputMaybe; token_data_id?: InputMaybe; token_properties_mutated_v1?: InputMaybe; token_standard?: InputMaybe; }; /** select columns of table "current_token_ownerships_v2" */ export enum Current_Token_Ownerships_V2_Select_Column { /** column name */ Amount = 'amount', /** column name */ IsFungibleV2 = 'is_fungible_v2', /** column name */ IsSoulboundV2 = 'is_soulbound_v2', /** column name */ LastTransactionTimestamp = 'last_transaction_timestamp', /** column name */ LastTransactionVersion = 'last_transaction_version', /** column name */ OwnerAddress = 'owner_address', /** column name */ PropertyVersionV1 = 'property_version_v1', /** column name */ StorageId = 'storage_id', /** column name */ TableTypeV1 = 'table_type_v1', /** column name */ TokenDataId = 'token_data_id', /** column name */ TokenPropertiesMutatedV1 = 'token_properties_mutated_v1', /** column name */ TokenStandard = 'token_standard' } /** select "current_token_ownerships_v2_aggregate_bool_exp_bool_and_arguments_columns" columns of table "current_token_ownerships_v2" */ export enum Current_Token_Ownerships_V2_Select_Column_Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_And_Arguments_Columns { /** column name */ IsFungibleV2 = 'is_fungible_v2', /** column name */ IsSoulboundV2 = 'is_soulbound_v2' } /** select "current_token_ownerships_v2_aggregate_bool_exp_bool_or_arguments_columns" columns of table "current_token_ownerships_v2" */ export enum Current_Token_Ownerships_V2_Select_Column_Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns { /** column name */ IsFungibleV2 = 'is_fungible_v2', /** column name */ IsSoulboundV2 = 'is_soulbound_v2' } /** aggregate stddev on columns */ export type Current_Token_Ownerships_V2_Stddev_Fields = { __typename?: 'current_token_ownerships_v2_stddev_fields'; amount?: Maybe; last_transaction_version?: Maybe; property_version_v1?: Maybe; }; /** order by stddev() on columns of table "current_token_ownerships_v2" */ export type Current_Token_Ownerships_V2_Stddev_Order_By = { amount?: InputMaybe; last_transaction_version?: InputMaybe; property_version_v1?: InputMaybe; }; /** aggregate stddev_pop on columns */ export type Current_Token_Ownerships_V2_Stddev_Pop_Fields = { __typename?: 'current_token_ownerships_v2_stddev_pop_fields'; amount?: Maybe; last_transaction_version?: Maybe; property_version_v1?: Maybe; }; /** order by stddev_pop() on columns of table "current_token_ownerships_v2" */ export type Current_Token_Ownerships_V2_Stddev_Pop_Order_By = { amount?: InputMaybe; last_transaction_version?: InputMaybe; property_version_v1?: InputMaybe; }; /** aggregate stddev_samp on columns */ export type Current_Token_Ownerships_V2_Stddev_Samp_Fields = { __typename?: 'current_token_ownerships_v2_stddev_samp_fields'; amount?: Maybe; last_transaction_version?: Maybe; property_version_v1?: Maybe; }; /** order by stddev_samp() on columns of table "current_token_ownerships_v2" */ export type Current_Token_Ownerships_V2_Stddev_Samp_Order_By = { amount?: InputMaybe; last_transaction_version?: InputMaybe; property_version_v1?: InputMaybe; }; /** Streaming cursor of the table "current_token_ownerships_v2" */ export type Current_Token_Ownerships_V2_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Current_Token_Ownerships_V2_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Current_Token_Ownerships_V2_Stream_Cursor_Value_Input = { amount?: InputMaybe; is_fungible_v2?: InputMaybe; is_soulbound_v2?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; owner_address?: InputMaybe; property_version_v1?: InputMaybe; storage_id?: InputMaybe; table_type_v1?: InputMaybe; token_data_id?: InputMaybe; token_properties_mutated_v1?: InputMaybe; token_standard?: InputMaybe; }; /** aggregate sum on columns */ export type Current_Token_Ownerships_V2_Sum_Fields = { __typename?: 'current_token_ownerships_v2_sum_fields'; amount?: Maybe; last_transaction_version?: Maybe; property_version_v1?: Maybe; }; /** order by sum() on columns of table "current_token_ownerships_v2" */ export type Current_Token_Ownerships_V2_Sum_Order_By = { amount?: InputMaybe; last_transaction_version?: InputMaybe; property_version_v1?: InputMaybe; }; /** aggregate var_pop on columns */ export type Current_Token_Ownerships_V2_Var_Pop_Fields = { __typename?: 'current_token_ownerships_v2_var_pop_fields'; amount?: Maybe; last_transaction_version?: Maybe; property_version_v1?: Maybe; }; /** order by var_pop() on columns of table "current_token_ownerships_v2" */ export type Current_Token_Ownerships_V2_Var_Pop_Order_By = { amount?: InputMaybe; last_transaction_version?: InputMaybe; property_version_v1?: InputMaybe; }; /** aggregate var_samp on columns */ export type Current_Token_Ownerships_V2_Var_Samp_Fields = { __typename?: 'current_token_ownerships_v2_var_samp_fields'; amount?: Maybe; last_transaction_version?: Maybe; property_version_v1?: Maybe; }; /** order by var_samp() on columns of table "current_token_ownerships_v2" */ export type Current_Token_Ownerships_V2_Var_Samp_Order_By = { amount?: InputMaybe; last_transaction_version?: InputMaybe; property_version_v1?: InputMaybe; }; /** aggregate variance on columns */ export type Current_Token_Ownerships_V2_Variance_Fields = { __typename?: 'current_token_ownerships_v2_variance_fields'; amount?: Maybe; last_transaction_version?: Maybe; property_version_v1?: Maybe; }; /** order by variance() on columns of table "current_token_ownerships_v2" */ export type Current_Token_Ownerships_V2_Variance_Order_By = { amount?: InputMaybe; last_transaction_version?: InputMaybe; property_version_v1?: InputMaybe; }; /** aggregate var_pop on columns */ export type Current_Token_Ownerships_Var_Pop_Fields = { __typename?: 'current_token_ownerships_var_pop_fields'; amount?: Maybe; last_transaction_version?: Maybe; property_version?: Maybe; }; /** order by var_pop() on columns of table "current_token_ownerships" */ export type Current_Token_Ownerships_Var_Pop_Order_By = { amount?: InputMaybe; last_transaction_version?: InputMaybe; property_version?: InputMaybe; }; /** aggregate var_samp on columns */ export type Current_Token_Ownerships_Var_Samp_Fields = { __typename?: 'current_token_ownerships_var_samp_fields'; amount?: Maybe; last_transaction_version?: Maybe; property_version?: Maybe; }; /** order by var_samp() on columns of table "current_token_ownerships" */ export type Current_Token_Ownerships_Var_Samp_Order_By = { amount?: InputMaybe; last_transaction_version?: InputMaybe; property_version?: InputMaybe; }; /** aggregate variance on columns */ export type Current_Token_Ownerships_Variance_Fields = { __typename?: 'current_token_ownerships_variance_fields'; amount?: Maybe; last_transaction_version?: Maybe; property_version?: Maybe; }; /** order by variance() on columns of table "current_token_ownerships" */ export type Current_Token_Ownerships_Variance_Order_By = { amount?: InputMaybe; last_transaction_version?: InputMaybe; property_version?: InputMaybe; }; /** columns and relationships of "current_token_pending_claims" */ export type Current_Token_Pending_Claims = { __typename?: 'current_token_pending_claims'; amount: Scalars['numeric']['output']; collection_data_id_hash: Scalars['String']['output']; collection_id: Scalars['String']['output']; collection_name: Scalars['String']['output']; creator_address: Scalars['String']['output']; /** An object relationship */ current_collection_data?: Maybe; /** An object relationship */ current_collection_v2?: Maybe; /** An object relationship */ current_token_data?: Maybe; /** An object relationship */ current_token_data_v2?: Maybe; from_address: Scalars['String']['output']; last_transaction_timestamp: Scalars['timestamp']['output']; last_transaction_version: Scalars['bigint']['output']; name: Scalars['String']['output']; property_version: Scalars['numeric']['output']; table_handle: Scalars['String']['output']; to_address: Scalars['String']['output']; /** An object relationship */ token?: Maybe; token_data_id: Scalars['String']['output']; token_data_id_hash: Scalars['String']['output']; }; /** Boolean expression to filter rows from the table "current_token_pending_claims". All fields are combined with a logical 'AND'. */ export type Current_Token_Pending_Claims_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; amount?: InputMaybe; collection_data_id_hash?: InputMaybe; collection_id?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; current_collection_data?: InputMaybe; current_collection_v2?: InputMaybe; current_token_data?: InputMaybe; current_token_data_v2?: InputMaybe; from_address?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; name?: InputMaybe; property_version?: InputMaybe; table_handle?: InputMaybe; to_address?: InputMaybe; token?: InputMaybe; token_data_id?: InputMaybe; token_data_id_hash?: InputMaybe; }; /** Ordering options when selecting data from "current_token_pending_claims". */ export type Current_Token_Pending_Claims_Order_By = { amount?: InputMaybe; collection_data_id_hash?: InputMaybe; collection_id?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; current_collection_data?: InputMaybe; current_collection_v2?: InputMaybe; current_token_data?: InputMaybe; current_token_data_v2?: InputMaybe; from_address?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; name?: InputMaybe; property_version?: InputMaybe; table_handle?: InputMaybe; to_address?: InputMaybe; token?: InputMaybe; token_data_id?: InputMaybe; token_data_id_hash?: InputMaybe; }; /** select columns of table "current_token_pending_claims" */ export enum Current_Token_Pending_Claims_Select_Column { /** column name */ Amount = 'amount', /** column name */ CollectionDataIdHash = 'collection_data_id_hash', /** column name */ CollectionId = 'collection_id', /** column name */ CollectionName = 'collection_name', /** column name */ CreatorAddress = 'creator_address', /** column name */ FromAddress = 'from_address', /** column name */ LastTransactionTimestamp = 'last_transaction_timestamp', /** column name */ LastTransactionVersion = 'last_transaction_version', /** column name */ Name = 'name', /** column name */ PropertyVersion = 'property_version', /** column name */ TableHandle = 'table_handle', /** column name */ ToAddress = 'to_address', /** column name */ TokenDataId = 'token_data_id', /** column name */ TokenDataIdHash = 'token_data_id_hash' } /** Streaming cursor of the table "current_token_pending_claims" */ export type Current_Token_Pending_Claims_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Current_Token_Pending_Claims_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Current_Token_Pending_Claims_Stream_Cursor_Value_Input = { amount?: InputMaybe; collection_data_id_hash?: InputMaybe; collection_id?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; from_address?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; name?: InputMaybe; property_version?: InputMaybe; table_handle?: InputMaybe; to_address?: InputMaybe; token_data_id?: InputMaybe; token_data_id_hash?: InputMaybe; }; /** ordering argument of a cursor */ export enum Cursor_Ordering { /** ascending ordering of the cursor */ Asc = 'ASC', /** descending ordering of the cursor */ Desc = 'DESC' } /** columns and relationships of "delegated_staking_activities" */ export type Delegated_Staking_Activities = { __typename?: 'delegated_staking_activities'; amount: Scalars['numeric']['output']; delegator_address: Scalars['String']['output']; event_index: Scalars['bigint']['output']; event_type: Scalars['String']['output']; pool_address: Scalars['String']['output']; transaction_version: Scalars['bigint']['output']; }; /** order by aggregate values of table "delegated_staking_activities" */ export type Delegated_Staking_Activities_Aggregate_Order_By = { avg?: InputMaybe; count?: InputMaybe; max?: InputMaybe; min?: InputMaybe; stddev?: InputMaybe; stddev_pop?: InputMaybe; stddev_samp?: InputMaybe; sum?: InputMaybe; var_pop?: InputMaybe; var_samp?: InputMaybe; variance?: InputMaybe; }; /** order by avg() on columns of table "delegated_staking_activities" */ export type Delegated_Staking_Activities_Avg_Order_By = { amount?: InputMaybe; event_index?: InputMaybe; transaction_version?: InputMaybe; }; /** Boolean expression to filter rows from the table "delegated_staking_activities". All fields are combined with a logical 'AND'. */ export type Delegated_Staking_Activities_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; amount?: InputMaybe; delegator_address?: InputMaybe; event_index?: InputMaybe; event_type?: InputMaybe; pool_address?: InputMaybe; transaction_version?: InputMaybe; }; /** order by max() on columns of table "delegated_staking_activities" */ export type Delegated_Staking_Activities_Max_Order_By = { amount?: InputMaybe; delegator_address?: InputMaybe; event_index?: InputMaybe; event_type?: InputMaybe; pool_address?: InputMaybe; transaction_version?: InputMaybe; }; /** order by min() on columns of table "delegated_staking_activities" */ export type Delegated_Staking_Activities_Min_Order_By = { amount?: InputMaybe; delegator_address?: InputMaybe; event_index?: InputMaybe; event_type?: InputMaybe; pool_address?: InputMaybe; transaction_version?: InputMaybe; }; /** Ordering options when selecting data from "delegated_staking_activities". */ export type Delegated_Staking_Activities_Order_By = { amount?: InputMaybe; delegator_address?: InputMaybe; event_index?: InputMaybe; event_type?: InputMaybe; pool_address?: InputMaybe; transaction_version?: InputMaybe; }; /** select columns of table "delegated_staking_activities" */ export enum Delegated_Staking_Activities_Select_Column { /** column name */ Amount = 'amount', /** column name */ DelegatorAddress = 'delegator_address', /** column name */ EventIndex = 'event_index', /** column name */ EventType = 'event_type', /** column name */ PoolAddress = 'pool_address', /** column name */ TransactionVersion = 'transaction_version' } /** order by stddev() on columns of table "delegated_staking_activities" */ export type Delegated_Staking_Activities_Stddev_Order_By = { amount?: InputMaybe; event_index?: InputMaybe; transaction_version?: InputMaybe; }; /** order by stddev_pop() on columns of table "delegated_staking_activities" */ export type Delegated_Staking_Activities_Stddev_Pop_Order_By = { amount?: InputMaybe; event_index?: InputMaybe; transaction_version?: InputMaybe; }; /** order by stddev_samp() on columns of table "delegated_staking_activities" */ export type Delegated_Staking_Activities_Stddev_Samp_Order_By = { amount?: InputMaybe; event_index?: InputMaybe; transaction_version?: InputMaybe; }; /** Streaming cursor of the table "delegated_staking_activities" */ export type Delegated_Staking_Activities_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Delegated_Staking_Activities_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Delegated_Staking_Activities_Stream_Cursor_Value_Input = { amount?: InputMaybe; delegator_address?: InputMaybe; event_index?: InputMaybe; event_type?: InputMaybe; pool_address?: InputMaybe; transaction_version?: InputMaybe; }; /** order by sum() on columns of table "delegated_staking_activities" */ export type Delegated_Staking_Activities_Sum_Order_By = { amount?: InputMaybe; event_index?: InputMaybe; transaction_version?: InputMaybe; }; /** order by var_pop() on columns of table "delegated_staking_activities" */ export type Delegated_Staking_Activities_Var_Pop_Order_By = { amount?: InputMaybe; event_index?: InputMaybe; transaction_version?: InputMaybe; }; /** order by var_samp() on columns of table "delegated_staking_activities" */ export type Delegated_Staking_Activities_Var_Samp_Order_By = { amount?: InputMaybe; event_index?: InputMaybe; transaction_version?: InputMaybe; }; /** order by variance() on columns of table "delegated_staking_activities" */ export type Delegated_Staking_Activities_Variance_Order_By = { amount?: InputMaybe; event_index?: InputMaybe; transaction_version?: InputMaybe; }; /** columns and relationships of "delegated_staking_pools" */ export type Delegated_Staking_Pools = { __typename?: 'delegated_staking_pools'; /** An object relationship */ current_staking_pool?: Maybe; first_transaction_version: Scalars['bigint']['output']; staking_pool_address: Scalars['String']['output']; }; /** Boolean expression to filter rows from the table "delegated_staking_pools". All fields are combined with a logical 'AND'. */ export type Delegated_Staking_Pools_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; current_staking_pool?: InputMaybe; first_transaction_version?: InputMaybe; staking_pool_address?: InputMaybe; }; /** Ordering options when selecting data from "delegated_staking_pools". */ export type Delegated_Staking_Pools_Order_By = { current_staking_pool?: InputMaybe; first_transaction_version?: InputMaybe; staking_pool_address?: InputMaybe; }; /** select columns of table "delegated_staking_pools" */ export enum Delegated_Staking_Pools_Select_Column { /** column name */ FirstTransactionVersion = 'first_transaction_version', /** column name */ StakingPoolAddress = 'staking_pool_address' } /** Streaming cursor of the table "delegated_staking_pools" */ export type Delegated_Staking_Pools_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Delegated_Staking_Pools_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Delegated_Staking_Pools_Stream_Cursor_Value_Input = { first_transaction_version?: InputMaybe; staking_pool_address?: InputMaybe; }; /** columns and relationships of "delegator_distinct_pool" */ export type Delegator_Distinct_Pool = { __typename?: 'delegator_distinct_pool'; /** An object relationship */ current_pool_balance?: Maybe; delegator_address?: Maybe; pool_address?: Maybe; /** An object relationship */ staking_pool_metadata?: Maybe; }; /** aggregated selection of "delegator_distinct_pool" */ export type Delegator_Distinct_Pool_Aggregate = { __typename?: 'delegator_distinct_pool_aggregate'; aggregate?: Maybe; nodes: Array; }; /** aggregate fields of "delegator_distinct_pool" */ export type Delegator_Distinct_Pool_Aggregate_Fields = { __typename?: 'delegator_distinct_pool_aggregate_fields'; count: Scalars['Int']['output']; max?: Maybe; min?: Maybe; }; /** aggregate fields of "delegator_distinct_pool" */ export type Delegator_Distinct_Pool_Aggregate_FieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** Boolean expression to filter rows from the table "delegator_distinct_pool". All fields are combined with a logical 'AND'. */ export type Delegator_Distinct_Pool_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; current_pool_balance?: InputMaybe; delegator_address?: InputMaybe; pool_address?: InputMaybe; staking_pool_metadata?: InputMaybe; }; /** aggregate max on columns */ export type Delegator_Distinct_Pool_Max_Fields = { __typename?: 'delegator_distinct_pool_max_fields'; delegator_address?: Maybe; pool_address?: Maybe; }; /** aggregate min on columns */ export type Delegator_Distinct_Pool_Min_Fields = { __typename?: 'delegator_distinct_pool_min_fields'; delegator_address?: Maybe; pool_address?: Maybe; }; /** Ordering options when selecting data from "delegator_distinct_pool". */ export type Delegator_Distinct_Pool_Order_By = { current_pool_balance?: InputMaybe; delegator_address?: InputMaybe; pool_address?: InputMaybe; staking_pool_metadata?: InputMaybe; }; /** select columns of table "delegator_distinct_pool" */ export enum Delegator_Distinct_Pool_Select_Column { /** column name */ DelegatorAddress = 'delegator_address', /** column name */ PoolAddress = 'pool_address' } /** Streaming cursor of the table "delegator_distinct_pool" */ export type Delegator_Distinct_Pool_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Delegator_Distinct_Pool_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Delegator_Distinct_Pool_Stream_Cursor_Value_Input = { delegator_address?: InputMaybe; pool_address?: InputMaybe; }; /** columns and relationships of "events" */ export type Events = { __typename?: 'events'; account_address: Scalars['String']['output']; creation_number: Scalars['bigint']['output']; data: Scalars['jsonb']['output']; event_index: Scalars['bigint']['output']; indexed_type: Scalars['String']['output']; sequence_number: Scalars['bigint']['output']; transaction_block_height: Scalars['bigint']['output']; transaction_version: Scalars['bigint']['output']; type: Scalars['String']['output']; }; /** columns and relationships of "events" */ export type EventsDataArgs = { path?: InputMaybe; }; /** Boolean expression to filter rows from the table "events". All fields are combined with a logical 'AND'. */ export type Events_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; account_address?: InputMaybe; creation_number?: InputMaybe; data?: InputMaybe; event_index?: InputMaybe; indexed_type?: InputMaybe; sequence_number?: InputMaybe; transaction_block_height?: InputMaybe; transaction_version?: InputMaybe; type?: InputMaybe; }; /** Ordering options when selecting data from "events". */ export type Events_Order_By = { account_address?: InputMaybe; creation_number?: InputMaybe; data?: InputMaybe; event_index?: InputMaybe; indexed_type?: InputMaybe; sequence_number?: InputMaybe; transaction_block_height?: InputMaybe; transaction_version?: InputMaybe; type?: InputMaybe; }; /** select columns of table "events" */ export enum Events_Select_Column { /** column name */ AccountAddress = 'account_address', /** column name */ CreationNumber = 'creation_number', /** column name */ Data = 'data', /** column name */ EventIndex = 'event_index', /** column name */ IndexedType = 'indexed_type', /** column name */ SequenceNumber = 'sequence_number', /** column name */ TransactionBlockHeight = 'transaction_block_height', /** column name */ TransactionVersion = 'transaction_version', /** column name */ Type = 'type' } /** Streaming cursor of the table "events" */ export type Events_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Events_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Events_Stream_Cursor_Value_Input = { account_address?: InputMaybe; creation_number?: InputMaybe; data?: InputMaybe; event_index?: InputMaybe; indexed_type?: InputMaybe; sequence_number?: InputMaybe; transaction_block_height?: InputMaybe; transaction_version?: InputMaybe; type?: InputMaybe; }; /** columns and relationships of "fungible_asset_activities" */ export type Fungible_Asset_Activities = { __typename?: 'fungible_asset_activities'; amount?: Maybe; asset_type: Scalars['String']['output']; block_height: Scalars['bigint']['output']; entry_function_id_str?: Maybe; event_index: Scalars['bigint']['output']; gas_fee_payer_address?: Maybe; is_frozen?: Maybe; is_gas_fee: Scalars['Boolean']['output']; is_transaction_success: Scalars['Boolean']['output']; /** An object relationship */ metadata?: Maybe; owner_address: Scalars['String']['output']; /** An array relationship */ owner_endless_names: Array; /** An aggregate relationship */ owner_endless_names_aggregate: Current_Endless_Names_Aggregate; storage_id: Scalars['String']['output']; storage_refund_amount: Scalars['numeric']['output']; token_standard: Scalars['String']['output']; transaction_timestamp: Scalars['timestamp']['output']; transaction_version: Scalars['bigint']['output']; type: Scalars['String']['output']; }; /** columns and relationships of "fungible_asset_activities" */ export type Fungible_Asset_ActivitiesOwner_Endless_NamesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "fungible_asset_activities" */ export type Fungible_Asset_ActivitiesOwner_Endless_Names_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** order by aggregate values of table "fungible_asset_activities" */ export type Fungible_Asset_Activities_Aggregate_Order_By = { avg?: InputMaybe; count?: InputMaybe; max?: InputMaybe; min?: InputMaybe; stddev?: InputMaybe; stddev_pop?: InputMaybe; stddev_samp?: InputMaybe; sum?: InputMaybe; var_pop?: InputMaybe; var_samp?: InputMaybe; variance?: InputMaybe; }; /** order by avg() on columns of table "fungible_asset_activities" */ export type Fungible_Asset_Activities_Avg_Order_By = { amount?: InputMaybe; block_height?: InputMaybe; event_index?: InputMaybe; storage_refund_amount?: InputMaybe; transaction_version?: InputMaybe; }; /** Boolean expression to filter rows from the table "fungible_asset_activities". All fields are combined with a logical 'AND'. */ export type Fungible_Asset_Activities_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; amount?: InputMaybe; asset_type?: InputMaybe; block_height?: InputMaybe; entry_function_id_str?: InputMaybe; event_index?: InputMaybe; gas_fee_payer_address?: InputMaybe; is_frozen?: InputMaybe; is_gas_fee?: InputMaybe; is_transaction_success?: InputMaybe; metadata?: InputMaybe; owner_address?: InputMaybe; owner_endless_names?: InputMaybe; owner_endless_names_aggregate?: InputMaybe; storage_id?: InputMaybe; storage_refund_amount?: InputMaybe; token_standard?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; type?: InputMaybe; }; /** order by max() on columns of table "fungible_asset_activities" */ export type Fungible_Asset_Activities_Max_Order_By = { amount?: InputMaybe; asset_type?: InputMaybe; block_height?: InputMaybe; entry_function_id_str?: InputMaybe; event_index?: InputMaybe; gas_fee_payer_address?: InputMaybe; owner_address?: InputMaybe; storage_id?: InputMaybe; storage_refund_amount?: InputMaybe; token_standard?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; type?: InputMaybe; }; /** order by min() on columns of table "fungible_asset_activities" */ export type Fungible_Asset_Activities_Min_Order_By = { amount?: InputMaybe; asset_type?: InputMaybe; block_height?: InputMaybe; entry_function_id_str?: InputMaybe; event_index?: InputMaybe; gas_fee_payer_address?: InputMaybe; owner_address?: InputMaybe; storage_id?: InputMaybe; storage_refund_amount?: InputMaybe; token_standard?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; type?: InputMaybe; }; /** Ordering options when selecting data from "fungible_asset_activities". */ export type Fungible_Asset_Activities_Order_By = { amount?: InputMaybe; asset_type?: InputMaybe; block_height?: InputMaybe; entry_function_id_str?: InputMaybe; event_index?: InputMaybe; gas_fee_payer_address?: InputMaybe; is_frozen?: InputMaybe; is_gas_fee?: InputMaybe; is_transaction_success?: InputMaybe; metadata?: InputMaybe; owner_address?: InputMaybe; owner_endless_names_aggregate?: InputMaybe; storage_id?: InputMaybe; storage_refund_amount?: InputMaybe; token_standard?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; type?: InputMaybe; }; /** select columns of table "fungible_asset_activities" */ export enum Fungible_Asset_Activities_Select_Column { /** column name */ Amount = 'amount', /** column name */ AssetType = 'asset_type', /** column name */ BlockHeight = 'block_height', /** column name */ EntryFunctionIdStr = 'entry_function_id_str', /** column name */ EventIndex = 'event_index', /** column name */ GasFeePayerAddress = 'gas_fee_payer_address', /** column name */ IsFrozen = 'is_frozen', /** column name */ IsGasFee = 'is_gas_fee', /** column name */ IsTransactionSuccess = 'is_transaction_success', /** column name */ OwnerAddress = 'owner_address', /** column name */ StorageId = 'storage_id', /** column name */ StorageRefundAmount = 'storage_refund_amount', /** column name */ TokenStandard = 'token_standard', /** column name */ TransactionTimestamp = 'transaction_timestamp', /** column name */ TransactionVersion = 'transaction_version', /** column name */ Type = 'type' } /** order by stddev() on columns of table "fungible_asset_activities" */ export type Fungible_Asset_Activities_Stddev_Order_By = { amount?: InputMaybe; block_height?: InputMaybe; event_index?: InputMaybe; storage_refund_amount?: InputMaybe; transaction_version?: InputMaybe; }; /** order by stddev_pop() on columns of table "fungible_asset_activities" */ export type Fungible_Asset_Activities_Stddev_Pop_Order_By = { amount?: InputMaybe; block_height?: InputMaybe; event_index?: InputMaybe; storage_refund_amount?: InputMaybe; transaction_version?: InputMaybe; }; /** order by stddev_samp() on columns of table "fungible_asset_activities" */ export type Fungible_Asset_Activities_Stddev_Samp_Order_By = { amount?: InputMaybe; block_height?: InputMaybe; event_index?: InputMaybe; storage_refund_amount?: InputMaybe; transaction_version?: InputMaybe; }; /** Streaming cursor of the table "fungible_asset_activities" */ export type Fungible_Asset_Activities_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Fungible_Asset_Activities_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Fungible_Asset_Activities_Stream_Cursor_Value_Input = { amount?: InputMaybe; asset_type?: InputMaybe; block_height?: InputMaybe; entry_function_id_str?: InputMaybe; event_index?: InputMaybe; gas_fee_payer_address?: InputMaybe; is_frozen?: InputMaybe; is_gas_fee?: InputMaybe; is_transaction_success?: InputMaybe; owner_address?: InputMaybe; storage_id?: InputMaybe; storage_refund_amount?: InputMaybe; token_standard?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; type?: InputMaybe; }; /** order by sum() on columns of table "fungible_asset_activities" */ export type Fungible_Asset_Activities_Sum_Order_By = { amount?: InputMaybe; block_height?: InputMaybe; event_index?: InputMaybe; storage_refund_amount?: InputMaybe; transaction_version?: InputMaybe; }; /** order by var_pop() on columns of table "fungible_asset_activities" */ export type Fungible_Asset_Activities_Var_Pop_Order_By = { amount?: InputMaybe; block_height?: InputMaybe; event_index?: InputMaybe; storage_refund_amount?: InputMaybe; transaction_version?: InputMaybe; }; /** order by var_samp() on columns of table "fungible_asset_activities" */ export type Fungible_Asset_Activities_Var_Samp_Order_By = { amount?: InputMaybe; block_height?: InputMaybe; event_index?: InputMaybe; storage_refund_amount?: InputMaybe; transaction_version?: InputMaybe; }; /** order by variance() on columns of table "fungible_asset_activities" */ export type Fungible_Asset_Activities_Variance_Order_By = { amount?: InputMaybe; block_height?: InputMaybe; event_index?: InputMaybe; storage_refund_amount?: InputMaybe; transaction_version?: InputMaybe; }; /** columns and relationships of "fungible_asset_metadata" */ export type Fungible_Asset_Metadata = { __typename?: 'fungible_asset_metadata'; asset_type: Scalars['String']['output']; creator_address: Scalars['String']['output']; decimals: Scalars['Int']['output']; icon_uri?: Maybe; last_transaction_timestamp: Scalars['timestamp']['output']; last_transaction_version: Scalars['bigint']['output']; name: Scalars['String']['output']; project_uri?: Maybe; supply_aggregator_table_handle_v1?: Maybe; supply_aggregator_table_key_v1?: Maybe; symbol: Scalars['String']['output']; token_standard: Scalars['String']['output']; }; /** Boolean expression to filter rows from the table "fungible_asset_metadata". All fields are combined with a logical 'AND'. */ export type Fungible_Asset_Metadata_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; asset_type?: InputMaybe; creator_address?: InputMaybe; decimals?: InputMaybe; icon_uri?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; name?: InputMaybe; project_uri?: InputMaybe; supply_aggregator_table_handle_v1?: InputMaybe; supply_aggregator_table_key_v1?: InputMaybe; symbol?: InputMaybe; token_standard?: InputMaybe; }; /** Ordering options when selecting data from "fungible_asset_metadata". */ export type Fungible_Asset_Metadata_Order_By = { asset_type?: InputMaybe; creator_address?: InputMaybe; decimals?: InputMaybe; icon_uri?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; name?: InputMaybe; project_uri?: InputMaybe; supply_aggregator_table_handle_v1?: InputMaybe; supply_aggregator_table_key_v1?: InputMaybe; symbol?: InputMaybe; token_standard?: InputMaybe; }; /** select columns of table "fungible_asset_metadata" */ export enum Fungible_Asset_Metadata_Select_Column { /** column name */ AssetType = 'asset_type', /** column name */ CreatorAddress = 'creator_address', /** column name */ Decimals = 'decimals', /** column name */ IconUri = 'icon_uri', /** column name */ LastTransactionTimestamp = 'last_transaction_timestamp', /** column name */ LastTransactionVersion = 'last_transaction_version', /** column name */ Name = 'name', /** column name */ ProjectUri = 'project_uri', /** column name */ SupplyAggregatorTableHandleV1 = 'supply_aggregator_table_handle_v1', /** column name */ SupplyAggregatorTableKeyV1 = 'supply_aggregator_table_key_v1', /** column name */ Symbol = 'symbol', /** column name */ TokenStandard = 'token_standard' } /** Streaming cursor of the table "fungible_asset_metadata" */ export type Fungible_Asset_Metadata_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Fungible_Asset_Metadata_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Fungible_Asset_Metadata_Stream_Cursor_Value_Input = { asset_type?: InputMaybe; creator_address?: InputMaybe; decimals?: InputMaybe; icon_uri?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; name?: InputMaybe; project_uri?: InputMaybe; supply_aggregator_table_handle_v1?: InputMaybe; supply_aggregator_table_key_v1?: InputMaybe; symbol?: InputMaybe; token_standard?: InputMaybe; }; /** columns and relationships of "indexer_status" */ export type Indexer_Status = { __typename?: 'indexer_status'; db: Scalars['String']['output']; is_indexer_up: Scalars['Boolean']['output']; }; /** Boolean expression to filter rows from the table "indexer_status". All fields are combined with a logical 'AND'. */ export type Indexer_Status_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; db?: InputMaybe; is_indexer_up?: InputMaybe; }; /** Ordering options when selecting data from "indexer_status". */ export type Indexer_Status_Order_By = { db?: InputMaybe; is_indexer_up?: InputMaybe; }; /** select columns of table "indexer_status" */ export enum Indexer_Status_Select_Column { /** column name */ Db = 'db', /** column name */ IsIndexerUp = 'is_indexer_up' } /** Streaming cursor of the table "indexer_status" */ export type Indexer_Status_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Indexer_Status_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Indexer_Status_Stream_Cursor_Value_Input = { db?: InputMaybe; is_indexer_up?: InputMaybe; }; export type Jsonb_Cast_Exp = { String?: InputMaybe; }; /** Boolean expression to compare columns of type "jsonb". All fields are combined with logical 'AND'. */ export type Jsonb_Comparison_Exp = { _cast?: InputMaybe; /** is the column contained in the given json value */ _contained_in?: InputMaybe; /** does the column contain the given json value at the top level */ _contains?: InputMaybe; _eq?: InputMaybe; _gt?: InputMaybe; _gte?: InputMaybe; /** does the string exist as a top-level key in the column */ _has_key?: InputMaybe; /** do all of these strings exist as top-level keys in the column */ _has_keys_all?: InputMaybe>; /** do any of these strings exist as top-level keys in the column */ _has_keys_any?: InputMaybe>; _in?: InputMaybe>; _is_null?: InputMaybe; _lt?: InputMaybe; _lte?: InputMaybe; _neq?: InputMaybe; _nin?: InputMaybe>; }; /** columns and relationships of "ledger_infos" */ export type Ledger_Infos = { __typename?: 'ledger_infos'; chain_id: Scalars['bigint']['output']; }; /** Boolean expression to filter rows from the table "ledger_infos". All fields are combined with a logical 'AND'. */ export type Ledger_Infos_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; chain_id?: InputMaybe; }; /** Ordering options when selecting data from "ledger_infos". */ export type Ledger_Infos_Order_By = { chain_id?: InputMaybe; }; /** select columns of table "ledger_infos" */ export enum Ledger_Infos_Select_Column { /** column name */ ChainId = 'chain_id' } /** Streaming cursor of the table "ledger_infos" */ export type Ledger_Infos_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Ledger_Infos_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Ledger_Infos_Stream_Cursor_Value_Input = { chain_id?: InputMaybe; }; /** columns and relationships of "move_resources" */ export type Move_Resources = { __typename?: 'move_resources'; address: Scalars['String']['output']; transaction_version: Scalars['bigint']['output']; }; /** aggregated selection of "move_resources" */ export type Move_Resources_Aggregate = { __typename?: 'move_resources_aggregate'; aggregate?: Maybe; nodes: Array; }; /** aggregate fields of "move_resources" */ export type Move_Resources_Aggregate_Fields = { __typename?: 'move_resources_aggregate_fields'; avg?: Maybe; count: Scalars['Int']['output']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "move_resources" */ export type Move_Resources_Aggregate_FieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** aggregate avg on columns */ export type Move_Resources_Avg_Fields = { __typename?: 'move_resources_avg_fields'; transaction_version?: Maybe; }; /** Boolean expression to filter rows from the table "move_resources". All fields are combined with a logical 'AND'. */ export type Move_Resources_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; address?: InputMaybe; transaction_version?: InputMaybe; }; /** aggregate max on columns */ export type Move_Resources_Max_Fields = { __typename?: 'move_resources_max_fields'; address?: Maybe; transaction_version?: Maybe; }; /** aggregate min on columns */ export type Move_Resources_Min_Fields = { __typename?: 'move_resources_min_fields'; address?: Maybe; transaction_version?: Maybe; }; /** Ordering options when selecting data from "move_resources". */ export type Move_Resources_Order_By = { address?: InputMaybe; transaction_version?: InputMaybe; }; /** select columns of table "move_resources" */ export enum Move_Resources_Select_Column { /** column name */ Address = 'address', /** column name */ TransactionVersion = 'transaction_version' } /** aggregate stddev on columns */ export type Move_Resources_Stddev_Fields = { __typename?: 'move_resources_stddev_fields'; transaction_version?: Maybe; }; /** aggregate stddev_pop on columns */ export type Move_Resources_Stddev_Pop_Fields = { __typename?: 'move_resources_stddev_pop_fields'; transaction_version?: Maybe; }; /** aggregate stddev_samp on columns */ export type Move_Resources_Stddev_Samp_Fields = { __typename?: 'move_resources_stddev_samp_fields'; transaction_version?: Maybe; }; /** Streaming cursor of the table "move_resources" */ export type Move_Resources_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Move_Resources_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Move_Resources_Stream_Cursor_Value_Input = { address?: InputMaybe; transaction_version?: InputMaybe; }; /** aggregate sum on columns */ export type Move_Resources_Sum_Fields = { __typename?: 'move_resources_sum_fields'; transaction_version?: Maybe; }; /** aggregate var_pop on columns */ export type Move_Resources_Var_Pop_Fields = { __typename?: 'move_resources_var_pop_fields'; transaction_version?: Maybe; }; /** aggregate var_samp on columns */ export type Move_Resources_Var_Samp_Fields = { __typename?: 'move_resources_var_samp_fields'; transaction_version?: Maybe; }; /** aggregate variance on columns */ export type Move_Resources_Variance_Fields = { __typename?: 'move_resources_variance_fields'; transaction_version?: Maybe; }; /** columns and relationships of "nft_marketplace_v2.current_nft_marketplace_auctions" */ export type Nft_Marketplace_V2_Current_Nft_Marketplace_Auctions = { __typename?: 'nft_marketplace_v2_current_nft_marketplace_auctions'; buy_it_now_price?: Maybe; coin_type?: Maybe; collection_id: Scalars['String']['output']; contract_address: Scalars['String']['output']; current_bid_price?: Maybe; current_bidder?: Maybe; /** An object relationship */ current_token_data?: Maybe; entry_function_id_str: Scalars['String']['output']; expiration_time: Scalars['numeric']['output']; fee_schedule_id: Scalars['String']['output']; is_deleted: Scalars['Boolean']['output']; last_transaction_timestamp: Scalars['timestamptz']['output']; last_transaction_version: Scalars['bigint']['output']; listing_id: Scalars['String']['output']; marketplace: Scalars['String']['output']; seller: Scalars['String']['output']; starting_bid_price: Scalars['numeric']['output']; token_amount: Scalars['numeric']['output']; token_data_id: Scalars['String']['output']; token_standard: Scalars['String']['output']; }; /** Boolean expression to filter rows from the table "nft_marketplace_v2.current_nft_marketplace_auctions". All fields are combined with a logical 'AND'. */ export type Nft_Marketplace_V2_Current_Nft_Marketplace_Auctions_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; buy_it_now_price?: InputMaybe; coin_type?: InputMaybe; collection_id?: InputMaybe; contract_address?: InputMaybe; current_bid_price?: InputMaybe; current_bidder?: InputMaybe; current_token_data?: InputMaybe; entry_function_id_str?: InputMaybe; expiration_time?: InputMaybe; fee_schedule_id?: InputMaybe; is_deleted?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; listing_id?: InputMaybe; marketplace?: InputMaybe; seller?: InputMaybe; starting_bid_price?: InputMaybe; token_amount?: InputMaybe; token_data_id?: InputMaybe; token_standard?: InputMaybe; }; /** Ordering options when selecting data from "nft_marketplace_v2.current_nft_marketplace_auctions". */ export type Nft_Marketplace_V2_Current_Nft_Marketplace_Auctions_Order_By = { buy_it_now_price?: InputMaybe; coin_type?: InputMaybe; collection_id?: InputMaybe; contract_address?: InputMaybe; current_bid_price?: InputMaybe; current_bidder?: InputMaybe; current_token_data?: InputMaybe; entry_function_id_str?: InputMaybe; expiration_time?: InputMaybe; fee_schedule_id?: InputMaybe; is_deleted?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; listing_id?: InputMaybe; marketplace?: InputMaybe; seller?: InputMaybe; starting_bid_price?: InputMaybe; token_amount?: InputMaybe; token_data_id?: InputMaybe; token_standard?: InputMaybe; }; /** select columns of table "nft_marketplace_v2.current_nft_marketplace_auctions" */ export enum Nft_Marketplace_V2_Current_Nft_Marketplace_Auctions_Select_Column { /** column name */ BuyItNowPrice = 'buy_it_now_price', /** column name */ CoinType = 'coin_type', /** column name */ CollectionId = 'collection_id', /** column name */ ContractAddress = 'contract_address', /** column name */ CurrentBidPrice = 'current_bid_price', /** column name */ CurrentBidder = 'current_bidder', /** column name */ EntryFunctionIdStr = 'entry_function_id_str', /** column name */ ExpirationTime = 'expiration_time', /** column name */ FeeScheduleId = 'fee_schedule_id', /** column name */ IsDeleted = 'is_deleted', /** column name */ LastTransactionTimestamp = 'last_transaction_timestamp', /** column name */ LastTransactionVersion = 'last_transaction_version', /** column name */ ListingId = 'listing_id', /** column name */ Marketplace = 'marketplace', /** column name */ Seller = 'seller', /** column name */ StartingBidPrice = 'starting_bid_price', /** column name */ TokenAmount = 'token_amount', /** column name */ TokenDataId = 'token_data_id', /** column name */ TokenStandard = 'token_standard' } /** Streaming cursor of the table "nft_marketplace_v2_current_nft_marketplace_auctions" */ export type Nft_Marketplace_V2_Current_Nft_Marketplace_Auctions_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Nft_Marketplace_V2_Current_Nft_Marketplace_Auctions_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Nft_Marketplace_V2_Current_Nft_Marketplace_Auctions_Stream_Cursor_Value_Input = { buy_it_now_price?: InputMaybe; coin_type?: InputMaybe; collection_id?: InputMaybe; contract_address?: InputMaybe; current_bid_price?: InputMaybe; current_bidder?: InputMaybe; entry_function_id_str?: InputMaybe; expiration_time?: InputMaybe; fee_schedule_id?: InputMaybe; is_deleted?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; listing_id?: InputMaybe; marketplace?: InputMaybe; seller?: InputMaybe; starting_bid_price?: InputMaybe; token_amount?: InputMaybe; token_data_id?: InputMaybe; token_standard?: InputMaybe; }; /** columns and relationships of "nft_marketplace_v2.current_nft_marketplace_collection_offers" */ export type Nft_Marketplace_V2_Current_Nft_Marketplace_Collection_Offers = { __typename?: 'nft_marketplace_v2_current_nft_marketplace_collection_offers'; buyer: Scalars['String']['output']; coin_type?: Maybe; collection_id: Scalars['String']['output']; collection_offer_id: Scalars['String']['output']; contract_address: Scalars['String']['output']; /** An object relationship */ current_collection_v2?: Maybe; entry_function_id_str: Scalars['String']['output']; expiration_time: Scalars['numeric']['output']; fee_schedule_id: Scalars['String']['output']; is_deleted: Scalars['Boolean']['output']; item_price: Scalars['numeric']['output']; last_transaction_timestamp: Scalars['timestamptz']['output']; last_transaction_version: Scalars['bigint']['output']; marketplace: Scalars['String']['output']; remaining_token_amount: Scalars['numeric']['output']; token_standard: Scalars['String']['output']; }; /** Boolean expression to filter rows from the table "nft_marketplace_v2.current_nft_marketplace_collection_offers". All fields are combined with a logical 'AND'. */ export type Nft_Marketplace_V2_Current_Nft_Marketplace_Collection_Offers_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; buyer?: InputMaybe; coin_type?: InputMaybe; collection_id?: InputMaybe; collection_offer_id?: InputMaybe; contract_address?: InputMaybe; current_collection_v2?: InputMaybe; entry_function_id_str?: InputMaybe; expiration_time?: InputMaybe; fee_schedule_id?: InputMaybe; is_deleted?: InputMaybe; item_price?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; marketplace?: InputMaybe; remaining_token_amount?: InputMaybe; token_standard?: InputMaybe; }; /** Ordering options when selecting data from "nft_marketplace_v2.current_nft_marketplace_collection_offers". */ export type Nft_Marketplace_V2_Current_Nft_Marketplace_Collection_Offers_Order_By = { buyer?: InputMaybe; coin_type?: InputMaybe; collection_id?: InputMaybe; collection_offer_id?: InputMaybe; contract_address?: InputMaybe; current_collection_v2?: InputMaybe; entry_function_id_str?: InputMaybe; expiration_time?: InputMaybe; fee_schedule_id?: InputMaybe; is_deleted?: InputMaybe; item_price?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; marketplace?: InputMaybe; remaining_token_amount?: InputMaybe; token_standard?: InputMaybe; }; /** select columns of table "nft_marketplace_v2.current_nft_marketplace_collection_offers" */ export enum Nft_Marketplace_V2_Current_Nft_Marketplace_Collection_Offers_Select_Column { /** column name */ Buyer = 'buyer', /** column name */ CoinType = 'coin_type', /** column name */ CollectionId = 'collection_id', /** column name */ CollectionOfferId = 'collection_offer_id', /** column name */ ContractAddress = 'contract_address', /** column name */ EntryFunctionIdStr = 'entry_function_id_str', /** column name */ ExpirationTime = 'expiration_time', /** column name */ FeeScheduleId = 'fee_schedule_id', /** column name */ IsDeleted = 'is_deleted', /** column name */ ItemPrice = 'item_price', /** column name */ LastTransactionTimestamp = 'last_transaction_timestamp', /** column name */ LastTransactionVersion = 'last_transaction_version', /** column name */ Marketplace = 'marketplace', /** column name */ RemainingTokenAmount = 'remaining_token_amount', /** column name */ TokenStandard = 'token_standard' } /** Streaming cursor of the table "nft_marketplace_v2_current_nft_marketplace_collection_offers" */ export type Nft_Marketplace_V2_Current_Nft_Marketplace_Collection_Offers_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Nft_Marketplace_V2_Current_Nft_Marketplace_Collection_Offers_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Nft_Marketplace_V2_Current_Nft_Marketplace_Collection_Offers_Stream_Cursor_Value_Input = { buyer?: InputMaybe; coin_type?: InputMaybe; collection_id?: InputMaybe; collection_offer_id?: InputMaybe; contract_address?: InputMaybe; entry_function_id_str?: InputMaybe; expiration_time?: InputMaybe; fee_schedule_id?: InputMaybe; is_deleted?: InputMaybe; item_price?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; marketplace?: InputMaybe; remaining_token_amount?: InputMaybe; token_standard?: InputMaybe; }; /** columns and relationships of "nft_marketplace_v2.current_nft_marketplace_listings" */ export type Nft_Marketplace_V2_Current_Nft_Marketplace_Listings = { __typename?: 'nft_marketplace_v2_current_nft_marketplace_listings'; coin_type?: Maybe; collection_id: Scalars['String']['output']; contract_address: Scalars['String']['output']; /** An object relationship */ current_token_data?: Maybe; entry_function_id_str: Scalars['String']['output']; fee_schedule_id: Scalars['String']['output']; is_deleted: Scalars['Boolean']['output']; last_transaction_timestamp: Scalars['timestamptz']['output']; last_transaction_version: Scalars['bigint']['output']; listing_id: Scalars['String']['output']; marketplace: Scalars['String']['output']; price: Scalars['numeric']['output']; seller: Scalars['String']['output']; token_amount: Scalars['numeric']['output']; token_data_id: Scalars['String']['output']; token_standard: Scalars['String']['output']; }; /** Boolean expression to filter rows from the table "nft_marketplace_v2.current_nft_marketplace_listings". All fields are combined with a logical 'AND'. */ export type Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; coin_type?: InputMaybe; collection_id?: InputMaybe; contract_address?: InputMaybe; current_token_data?: InputMaybe; entry_function_id_str?: InputMaybe; fee_schedule_id?: InputMaybe; is_deleted?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; listing_id?: InputMaybe; marketplace?: InputMaybe; price?: InputMaybe; seller?: InputMaybe; token_amount?: InputMaybe; token_data_id?: InputMaybe; token_standard?: InputMaybe; }; /** Ordering options when selecting data from "nft_marketplace_v2.current_nft_marketplace_listings". */ export type Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Order_By = { coin_type?: InputMaybe; collection_id?: InputMaybe; contract_address?: InputMaybe; current_token_data?: InputMaybe; entry_function_id_str?: InputMaybe; fee_schedule_id?: InputMaybe; is_deleted?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; listing_id?: InputMaybe; marketplace?: InputMaybe; price?: InputMaybe; seller?: InputMaybe; token_amount?: InputMaybe; token_data_id?: InputMaybe; token_standard?: InputMaybe; }; /** select columns of table "nft_marketplace_v2.current_nft_marketplace_listings" */ export enum Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Select_Column { /** column name */ CoinType = 'coin_type', /** column name */ CollectionId = 'collection_id', /** column name */ ContractAddress = 'contract_address', /** column name */ EntryFunctionIdStr = 'entry_function_id_str', /** column name */ FeeScheduleId = 'fee_schedule_id', /** column name */ IsDeleted = 'is_deleted', /** column name */ LastTransactionTimestamp = 'last_transaction_timestamp', /** column name */ LastTransactionVersion = 'last_transaction_version', /** column name */ ListingId = 'listing_id', /** column name */ Marketplace = 'marketplace', /** column name */ Price = 'price', /** column name */ Seller = 'seller', /** column name */ TokenAmount = 'token_amount', /** column name */ TokenDataId = 'token_data_id', /** column name */ TokenStandard = 'token_standard' } /** Streaming cursor of the table "nft_marketplace_v2_current_nft_marketplace_listings" */ export type Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Stream_Cursor_Value_Input = { coin_type?: InputMaybe; collection_id?: InputMaybe; contract_address?: InputMaybe; entry_function_id_str?: InputMaybe; fee_schedule_id?: InputMaybe; is_deleted?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; listing_id?: InputMaybe; marketplace?: InputMaybe; price?: InputMaybe; seller?: InputMaybe; token_amount?: InputMaybe; token_data_id?: InputMaybe; token_standard?: InputMaybe; }; /** columns and relationships of "nft_marketplace_v2.current_nft_marketplace_token_offers" */ export type Nft_Marketplace_V2_Current_Nft_Marketplace_Token_Offers = { __typename?: 'nft_marketplace_v2_current_nft_marketplace_token_offers'; buyer: Scalars['String']['output']; coin_type?: Maybe; collection_id: Scalars['String']['output']; contract_address: Scalars['String']['output']; /** An object relationship */ current_token_data?: Maybe; entry_function_id_str: Scalars['String']['output']; expiration_time: Scalars['numeric']['output']; fee_schedule_id: Scalars['String']['output']; is_deleted: Scalars['Boolean']['output']; last_transaction_timestamp: Scalars['timestamptz']['output']; last_transaction_version: Scalars['bigint']['output']; marketplace: Scalars['String']['output']; offer_id: Scalars['String']['output']; price: Scalars['numeric']['output']; token_amount: Scalars['numeric']['output']; token_data_id: Scalars['String']['output']; token_standard: Scalars['String']['output']; }; /** Boolean expression to filter rows from the table "nft_marketplace_v2.current_nft_marketplace_token_offers". All fields are combined with a logical 'AND'. */ export type Nft_Marketplace_V2_Current_Nft_Marketplace_Token_Offers_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; buyer?: InputMaybe; coin_type?: InputMaybe; collection_id?: InputMaybe; contract_address?: InputMaybe; current_token_data?: InputMaybe; entry_function_id_str?: InputMaybe; expiration_time?: InputMaybe; fee_schedule_id?: InputMaybe; is_deleted?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; marketplace?: InputMaybe; offer_id?: InputMaybe; price?: InputMaybe; token_amount?: InputMaybe; token_data_id?: InputMaybe; token_standard?: InputMaybe; }; /** Ordering options when selecting data from "nft_marketplace_v2.current_nft_marketplace_token_offers". */ export type Nft_Marketplace_V2_Current_Nft_Marketplace_Token_Offers_Order_By = { buyer?: InputMaybe; coin_type?: InputMaybe; collection_id?: InputMaybe; contract_address?: InputMaybe; current_token_data?: InputMaybe; entry_function_id_str?: InputMaybe; expiration_time?: InputMaybe; fee_schedule_id?: InputMaybe; is_deleted?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; marketplace?: InputMaybe; offer_id?: InputMaybe; price?: InputMaybe; token_amount?: InputMaybe; token_data_id?: InputMaybe; token_standard?: InputMaybe; }; /** select columns of table "nft_marketplace_v2.current_nft_marketplace_token_offers" */ export enum Nft_Marketplace_V2_Current_Nft_Marketplace_Token_Offers_Select_Column { /** column name */ Buyer = 'buyer', /** column name */ CoinType = 'coin_type', /** column name */ CollectionId = 'collection_id', /** column name */ ContractAddress = 'contract_address', /** column name */ EntryFunctionIdStr = 'entry_function_id_str', /** column name */ ExpirationTime = 'expiration_time', /** column name */ FeeScheduleId = 'fee_schedule_id', /** column name */ IsDeleted = 'is_deleted', /** column name */ LastTransactionTimestamp = 'last_transaction_timestamp', /** column name */ LastTransactionVersion = 'last_transaction_version', /** column name */ Marketplace = 'marketplace', /** column name */ OfferId = 'offer_id', /** column name */ Price = 'price', /** column name */ TokenAmount = 'token_amount', /** column name */ TokenDataId = 'token_data_id', /** column name */ TokenStandard = 'token_standard' } /** Streaming cursor of the table "nft_marketplace_v2_current_nft_marketplace_token_offers" */ export type Nft_Marketplace_V2_Current_Nft_Marketplace_Token_Offers_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Nft_Marketplace_V2_Current_Nft_Marketplace_Token_Offers_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Nft_Marketplace_V2_Current_Nft_Marketplace_Token_Offers_Stream_Cursor_Value_Input = { buyer?: InputMaybe; coin_type?: InputMaybe; collection_id?: InputMaybe; contract_address?: InputMaybe; entry_function_id_str?: InputMaybe; expiration_time?: InputMaybe; fee_schedule_id?: InputMaybe; is_deleted?: InputMaybe; last_transaction_timestamp?: InputMaybe; last_transaction_version?: InputMaybe; marketplace?: InputMaybe; offer_id?: InputMaybe; price?: InputMaybe; token_amount?: InputMaybe; token_data_id?: InputMaybe; token_standard?: InputMaybe; }; /** columns and relationships of "nft_marketplace_v2.nft_marketplace_activities" */ export type Nft_Marketplace_V2_Nft_Marketplace_Activities = { __typename?: 'nft_marketplace_v2_nft_marketplace_activities'; buyer?: Maybe; coin_type?: Maybe; collection_id: Scalars['String']['output']; collection_name: Scalars['String']['output']; contract_address: Scalars['String']['output']; creator_address: Scalars['String']['output']; /** An object relationship */ current_token_data?: Maybe; entry_function_id_str: Scalars['String']['output']; event_index: Scalars['bigint']['output']; event_type: Scalars['String']['output']; fee_schedule_id: Scalars['String']['output']; marketplace: Scalars['String']['output']; offer_or_listing_id: Scalars['String']['output']; price: Scalars['numeric']['output']; property_version?: Maybe; seller?: Maybe; token_amount: Scalars['numeric']['output']; token_data_id?: Maybe; token_name?: Maybe; token_standard: Scalars['String']['output']; transaction_timestamp: Scalars['timestamptz']['output']; transaction_version: Scalars['bigint']['output']; }; /** Boolean expression to filter rows from the table "nft_marketplace_v2.nft_marketplace_activities". All fields are combined with a logical 'AND'. */ export type Nft_Marketplace_V2_Nft_Marketplace_Activities_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; buyer?: InputMaybe; coin_type?: InputMaybe; collection_id?: InputMaybe; collection_name?: InputMaybe; contract_address?: InputMaybe; creator_address?: InputMaybe; current_token_data?: InputMaybe; entry_function_id_str?: InputMaybe; event_index?: InputMaybe; event_type?: InputMaybe; fee_schedule_id?: InputMaybe; marketplace?: InputMaybe; offer_or_listing_id?: InputMaybe; price?: InputMaybe; property_version?: InputMaybe; seller?: InputMaybe; token_amount?: InputMaybe; token_data_id?: InputMaybe; token_name?: InputMaybe; token_standard?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; }; /** Ordering options when selecting data from "nft_marketplace_v2.nft_marketplace_activities". */ export type Nft_Marketplace_V2_Nft_Marketplace_Activities_Order_By = { buyer?: InputMaybe; coin_type?: InputMaybe; collection_id?: InputMaybe; collection_name?: InputMaybe; contract_address?: InputMaybe; creator_address?: InputMaybe; current_token_data?: InputMaybe; entry_function_id_str?: InputMaybe; event_index?: InputMaybe; event_type?: InputMaybe; fee_schedule_id?: InputMaybe; marketplace?: InputMaybe; offer_or_listing_id?: InputMaybe; price?: InputMaybe; property_version?: InputMaybe; seller?: InputMaybe; token_amount?: InputMaybe; token_data_id?: InputMaybe; token_name?: InputMaybe; token_standard?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; }; /** select columns of table "nft_marketplace_v2.nft_marketplace_activities" */ export enum Nft_Marketplace_V2_Nft_Marketplace_Activities_Select_Column { /** column name */ Buyer = 'buyer', /** column name */ CoinType = 'coin_type', /** column name */ CollectionId = 'collection_id', /** column name */ CollectionName = 'collection_name', /** column name */ ContractAddress = 'contract_address', /** column name */ CreatorAddress = 'creator_address', /** column name */ EntryFunctionIdStr = 'entry_function_id_str', /** column name */ EventIndex = 'event_index', /** column name */ EventType = 'event_type', /** column name */ FeeScheduleId = 'fee_schedule_id', /** column name */ Marketplace = 'marketplace', /** column name */ OfferOrListingId = 'offer_or_listing_id', /** column name */ Price = 'price', /** column name */ PropertyVersion = 'property_version', /** column name */ Seller = 'seller', /** column name */ TokenAmount = 'token_amount', /** column name */ TokenDataId = 'token_data_id', /** column name */ TokenName = 'token_name', /** column name */ TokenStandard = 'token_standard', /** column name */ TransactionTimestamp = 'transaction_timestamp', /** column name */ TransactionVersion = 'transaction_version' } /** Streaming cursor of the table "nft_marketplace_v2_nft_marketplace_activities" */ export type Nft_Marketplace_V2_Nft_Marketplace_Activities_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Nft_Marketplace_V2_Nft_Marketplace_Activities_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Nft_Marketplace_V2_Nft_Marketplace_Activities_Stream_Cursor_Value_Input = { buyer?: InputMaybe; coin_type?: InputMaybe; collection_id?: InputMaybe; collection_name?: InputMaybe; contract_address?: InputMaybe; creator_address?: InputMaybe; entry_function_id_str?: InputMaybe; event_index?: InputMaybe; event_type?: InputMaybe; fee_schedule_id?: InputMaybe; marketplace?: InputMaybe; offer_or_listing_id?: InputMaybe; price?: InputMaybe; property_version?: InputMaybe; seller?: InputMaybe; token_amount?: InputMaybe; token_data_id?: InputMaybe; token_name?: InputMaybe; token_standard?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; }; /** columns and relationships of "nft_metadata_crawler.parsed_asset_uris" */ export type Nft_Metadata_Crawler_Parsed_Asset_Uris = { __typename?: 'nft_metadata_crawler_parsed_asset_uris'; animation_optimizer_retry_count: Scalars['Int']['output']; asset_uri: Scalars['String']['output']; cdn_animation_uri?: Maybe; cdn_image_uri?: Maybe; cdn_json_uri?: Maybe; image_optimizer_retry_count: Scalars['Int']['output']; json_parser_retry_count: Scalars['Int']['output']; raw_animation_uri?: Maybe; raw_image_uri?: Maybe; }; /** Boolean expression to filter rows from the table "nft_metadata_crawler.parsed_asset_uris". All fields are combined with a logical 'AND'. */ export type Nft_Metadata_Crawler_Parsed_Asset_Uris_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; animation_optimizer_retry_count?: InputMaybe; asset_uri?: InputMaybe; cdn_animation_uri?: InputMaybe; cdn_image_uri?: InputMaybe; cdn_json_uri?: InputMaybe; image_optimizer_retry_count?: InputMaybe; json_parser_retry_count?: InputMaybe; raw_animation_uri?: InputMaybe; raw_image_uri?: InputMaybe; }; /** Ordering options when selecting data from "nft_metadata_crawler.parsed_asset_uris". */ export type Nft_Metadata_Crawler_Parsed_Asset_Uris_Order_By = { animation_optimizer_retry_count?: InputMaybe; asset_uri?: InputMaybe; cdn_animation_uri?: InputMaybe; cdn_image_uri?: InputMaybe; cdn_json_uri?: InputMaybe; image_optimizer_retry_count?: InputMaybe; json_parser_retry_count?: InputMaybe; raw_animation_uri?: InputMaybe; raw_image_uri?: InputMaybe; }; /** select columns of table "nft_metadata_crawler.parsed_asset_uris" */ export enum Nft_Metadata_Crawler_Parsed_Asset_Uris_Select_Column { /** column name */ AnimationOptimizerRetryCount = 'animation_optimizer_retry_count', /** column name */ AssetUri = 'asset_uri', /** column name */ CdnAnimationUri = 'cdn_animation_uri', /** column name */ CdnImageUri = 'cdn_image_uri', /** column name */ CdnJsonUri = 'cdn_json_uri', /** column name */ ImageOptimizerRetryCount = 'image_optimizer_retry_count', /** column name */ JsonParserRetryCount = 'json_parser_retry_count', /** column name */ RawAnimationUri = 'raw_animation_uri', /** column name */ RawImageUri = 'raw_image_uri' } /** Streaming cursor of the table "nft_metadata_crawler_parsed_asset_uris" */ export type Nft_Metadata_Crawler_Parsed_Asset_Uris_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Nft_Metadata_Crawler_Parsed_Asset_Uris_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Nft_Metadata_Crawler_Parsed_Asset_Uris_Stream_Cursor_Value_Input = { animation_optimizer_retry_count?: InputMaybe; asset_uri?: InputMaybe; cdn_animation_uri?: InputMaybe; cdn_image_uri?: InputMaybe; cdn_json_uri?: InputMaybe; image_optimizer_retry_count?: InputMaybe; json_parser_retry_count?: InputMaybe; raw_animation_uri?: InputMaybe; raw_image_uri?: InputMaybe; }; /** columns and relationships of "num_active_delegator_per_pool" */ export type Num_Active_Delegator_Per_Pool = { __typename?: 'num_active_delegator_per_pool'; num_active_delegator?: Maybe; pool_address?: Maybe; }; /** Boolean expression to filter rows from the table "num_active_delegator_per_pool". All fields are combined with a logical 'AND'. */ export type Num_Active_Delegator_Per_Pool_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; num_active_delegator?: InputMaybe; pool_address?: InputMaybe; }; /** Ordering options when selecting data from "num_active_delegator_per_pool". */ export type Num_Active_Delegator_Per_Pool_Order_By = { num_active_delegator?: InputMaybe; pool_address?: InputMaybe; }; /** select columns of table "num_active_delegator_per_pool" */ export enum Num_Active_Delegator_Per_Pool_Select_Column { /** column name */ NumActiveDelegator = 'num_active_delegator', /** column name */ PoolAddress = 'pool_address' } /** Streaming cursor of the table "num_active_delegator_per_pool" */ export type Num_Active_Delegator_Per_Pool_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Num_Active_Delegator_Per_Pool_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Num_Active_Delegator_Per_Pool_Stream_Cursor_Value_Input = { num_active_delegator?: InputMaybe; pool_address?: InputMaybe; }; /** Boolean expression to compare columns of type "numeric". All fields are combined with logical 'AND'. */ export type Numeric_Comparison_Exp = { _eq?: InputMaybe; _gt?: InputMaybe; _gte?: InputMaybe; _in?: InputMaybe>; _is_null?: InputMaybe; _lt?: InputMaybe; _lte?: InputMaybe; _neq?: InputMaybe; _nin?: InputMaybe>; }; /** column ordering options */ export enum Order_By { /** in ascending order, nulls last */ Asc = 'asc', /** in ascending order, nulls first */ AscNullsFirst = 'asc_nulls_first', /** in ascending order, nulls last */ AscNullsLast = 'asc_nulls_last', /** in descending order, nulls first */ Desc = 'desc', /** in descending order, nulls first */ DescNullsFirst = 'desc_nulls_first', /** in descending order, nulls last */ DescNullsLast = 'desc_nulls_last' } /** columns and relationships of "processor_status" */ export type Processor_Status = { __typename?: 'processor_status'; last_success_version: Scalars['bigint']['output']; last_updated: Scalars['timestamp']['output']; processor: Scalars['String']['output']; }; /** Boolean expression to filter rows from the table "processor_status". All fields are combined with a logical 'AND'. */ export type Processor_Status_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; last_success_version?: InputMaybe; last_updated?: InputMaybe; processor?: InputMaybe; }; /** Ordering options when selecting data from "processor_status". */ export type Processor_Status_Order_By = { last_success_version?: InputMaybe; last_updated?: InputMaybe; processor?: InputMaybe; }; /** select columns of table "processor_status" */ export enum Processor_Status_Select_Column { /** column name */ LastSuccessVersion = 'last_success_version', /** column name */ LastUpdated = 'last_updated', /** column name */ Processor = 'processor' } /** Streaming cursor of the table "processor_status" */ export type Processor_Status_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Processor_Status_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Processor_Status_Stream_Cursor_Value_Input = { last_success_version?: InputMaybe; last_updated?: InputMaybe; processor?: InputMaybe; }; /** columns and relationships of "proposal_votes" */ export type Proposal_Votes = { __typename?: 'proposal_votes'; num_votes: Scalars['numeric']['output']; proposal_id: Scalars['bigint']['output']; should_pass: Scalars['Boolean']['output']; staking_pool_address: Scalars['String']['output']; transaction_timestamp: Scalars['timestamp']['output']; transaction_version: Scalars['bigint']['output']; voter_address: Scalars['String']['output']; }; /** aggregated selection of "proposal_votes" */ export type Proposal_Votes_Aggregate = { __typename?: 'proposal_votes_aggregate'; aggregate?: Maybe; nodes: Array; }; /** aggregate fields of "proposal_votes" */ export type Proposal_Votes_Aggregate_Fields = { __typename?: 'proposal_votes_aggregate_fields'; avg?: Maybe; count: Scalars['Int']['output']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "proposal_votes" */ export type Proposal_Votes_Aggregate_FieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** aggregate avg on columns */ export type Proposal_Votes_Avg_Fields = { __typename?: 'proposal_votes_avg_fields'; num_votes?: Maybe; proposal_id?: Maybe; transaction_version?: Maybe; }; /** Boolean expression to filter rows from the table "proposal_votes". All fields are combined with a logical 'AND'. */ export type Proposal_Votes_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; num_votes?: InputMaybe; proposal_id?: InputMaybe; should_pass?: InputMaybe; staking_pool_address?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; voter_address?: InputMaybe; }; /** aggregate max on columns */ export type Proposal_Votes_Max_Fields = { __typename?: 'proposal_votes_max_fields'; num_votes?: Maybe; proposal_id?: Maybe; staking_pool_address?: Maybe; transaction_timestamp?: Maybe; transaction_version?: Maybe; voter_address?: Maybe; }; /** aggregate min on columns */ export type Proposal_Votes_Min_Fields = { __typename?: 'proposal_votes_min_fields'; num_votes?: Maybe; proposal_id?: Maybe; staking_pool_address?: Maybe; transaction_timestamp?: Maybe; transaction_version?: Maybe; voter_address?: Maybe; }; /** Ordering options when selecting data from "proposal_votes". */ export type Proposal_Votes_Order_By = { num_votes?: InputMaybe; proposal_id?: InputMaybe; should_pass?: InputMaybe; staking_pool_address?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; voter_address?: InputMaybe; }; /** select columns of table "proposal_votes" */ export enum Proposal_Votes_Select_Column { /** column name */ NumVotes = 'num_votes', /** column name */ ProposalId = 'proposal_id', /** column name */ ShouldPass = 'should_pass', /** column name */ StakingPoolAddress = 'staking_pool_address', /** column name */ TransactionTimestamp = 'transaction_timestamp', /** column name */ TransactionVersion = 'transaction_version', /** column name */ VoterAddress = 'voter_address' } /** aggregate stddev on columns */ export type Proposal_Votes_Stddev_Fields = { __typename?: 'proposal_votes_stddev_fields'; num_votes?: Maybe; proposal_id?: Maybe; transaction_version?: Maybe; }; /** aggregate stddev_pop on columns */ export type Proposal_Votes_Stddev_Pop_Fields = { __typename?: 'proposal_votes_stddev_pop_fields'; num_votes?: Maybe; proposal_id?: Maybe; transaction_version?: Maybe; }; /** aggregate stddev_samp on columns */ export type Proposal_Votes_Stddev_Samp_Fields = { __typename?: 'proposal_votes_stddev_samp_fields'; num_votes?: Maybe; proposal_id?: Maybe; transaction_version?: Maybe; }; /** Streaming cursor of the table "proposal_votes" */ export type Proposal_Votes_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Proposal_Votes_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Proposal_Votes_Stream_Cursor_Value_Input = { num_votes?: InputMaybe; proposal_id?: InputMaybe; should_pass?: InputMaybe; staking_pool_address?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; voter_address?: InputMaybe; }; /** aggregate sum on columns */ export type Proposal_Votes_Sum_Fields = { __typename?: 'proposal_votes_sum_fields'; num_votes?: Maybe; proposal_id?: Maybe; transaction_version?: Maybe; }; /** aggregate var_pop on columns */ export type Proposal_Votes_Var_Pop_Fields = { __typename?: 'proposal_votes_var_pop_fields'; num_votes?: Maybe; proposal_id?: Maybe; transaction_version?: Maybe; }; /** aggregate var_samp on columns */ export type Proposal_Votes_Var_Samp_Fields = { __typename?: 'proposal_votes_var_samp_fields'; num_votes?: Maybe; proposal_id?: Maybe; transaction_version?: Maybe; }; /** aggregate variance on columns */ export type Proposal_Votes_Variance_Fields = { __typename?: 'proposal_votes_variance_fields'; num_votes?: Maybe; proposal_id?: Maybe; transaction_version?: Maybe; }; export type Query_Root = { __typename?: 'query_root'; /** fetch data from the table: "account_transactions" */ account_transactions: Array; /** fetch aggregated fields from the table: "account_transactions" */ account_transactions_aggregate: Account_Transactions_Aggregate; /** fetch data from the table: "account_transactions" using primary key columns */ account_transactions_by_pk?: Maybe; /** fetch data from the table: "address_events_summary" */ address_events_summary: Array; /** fetch data from the table: "address_version_from_events" */ address_version_from_events: Array; /** fetch aggregated fields from the table: "address_version_from_events" */ address_version_from_events_aggregate: Address_Version_From_Events_Aggregate; /** fetch data from the table: "address_version_from_move_resources" */ address_version_from_move_resources: Array; /** fetch aggregated fields from the table: "address_version_from_move_resources" */ address_version_from_move_resources_aggregate: Address_Version_From_Move_Resources_Aggregate; /** fetch data from the table: "block_metadata_transactions" */ block_metadata_transactions: Array; /** fetch data from the table: "block_metadata_transactions" using primary key columns */ block_metadata_transactions_by_pk?: Maybe; /** An array relationship */ coin_activities: Array; /** An aggregate relationship */ coin_activities_aggregate: Coin_Activities_Aggregate; /** fetch data from the table: "coin_activities" using primary key columns */ coin_activities_by_pk?: Maybe; /** fetch data from the table: "coin_balances" */ coin_balances: Array; /** fetch data from the table: "coin_balances" using primary key columns */ coin_balances_by_pk?: Maybe; /** fetch data from the table: "coin_infos" */ coin_infos: Array; /** fetch data from the table: "coin_infos" using primary key columns */ coin_infos_by_pk?: Maybe; /** fetch data from the table: "coin_supply" */ coin_supply: Array; /** fetch data from the table: "coin_supply" using primary key columns */ coin_supply_by_pk?: Maybe; /** fetch data from the table: "collection_datas" */ collection_datas: Array; /** fetch data from the table: "collection_datas" using primary key columns */ collection_datas_by_pk?: Maybe; /** fetch data from the table: "current_ans_lookup" */ current_ans_lookup: Array; /** fetch data from the table: "current_ans_lookup" using primary key columns */ current_ans_lookup_by_pk?: Maybe; /** fetch data from the table: "current_ans_lookup_v2" */ current_ans_lookup_v2: Array; /** fetch data from the table: "current_ans_lookup_v2" using primary key columns */ current_ans_lookup_v2_by_pk?: Maybe; /** fetch data from the table: "current_endless_names" */ current_endless_names: Array; /** fetch aggregated fields from the table: "current_endless_names" */ current_endless_names_aggregate: Current_Endless_Names_Aggregate; /** fetch data from the table: "current_coin_balances" */ current_coin_balances: Array; /** fetch data from the table: "current_coin_balances" using primary key columns */ current_coin_balances_by_pk?: Maybe; /** fetch data from the table: "current_collection_datas" */ current_collection_datas: Array; /** fetch data from the table: "current_collection_datas" using primary key columns */ current_collection_datas_by_pk?: Maybe; /** fetch data from the table: "current_collection_ownership_v2_view" */ current_collection_ownership_v2_view: Array; /** fetch aggregated fields from the table: "current_collection_ownership_v2_view" */ current_collection_ownership_v2_view_aggregate: Current_Collection_Ownership_V2_View_Aggregate; /** fetch data from the table: "current_collections_v2" */ current_collections_v2: Array; /** fetch data from the table: "current_collections_v2" using primary key columns */ current_collections_v2_by_pk?: Maybe; /** fetch data from the table: "current_delegated_staking_pool_balances" */ current_delegated_staking_pool_balances: Array; /** fetch data from the table: "current_delegated_staking_pool_balances" using primary key columns */ current_delegated_staking_pool_balances_by_pk?: Maybe; /** fetch data from the table: "current_delegated_voter" */ current_delegated_voter: Array; /** fetch data from the table: "current_delegated_voter" using primary key columns */ current_delegated_voter_by_pk?: Maybe; /** fetch data from the table: "current_delegator_balances" */ current_delegator_balances: Array; /** fetch data from the table: "current_delegator_balances" using primary key columns */ current_delegator_balances_by_pk?: Maybe; /** fetch data from the table: "current_fungible_asset_balances" */ current_fungible_asset_balances: Array; /** fetch aggregated fields from the table: "current_fungible_asset_balances" */ current_fungible_asset_balances_aggregate: Current_Fungible_Asset_Balances_Aggregate; /** fetch data from the table: "current_fungible_asset_balances" using primary key columns */ current_fungible_asset_balances_by_pk?: Maybe; /** fetch data from the table: "current_objects" */ current_objects: Array; /** fetch data from the table: "current_objects" using primary key columns */ current_objects_by_pk?: Maybe; /** fetch data from the table: "current_staking_pool_voter" */ current_staking_pool_voter: Array; /** fetch data from the table: "current_staking_pool_voter" using primary key columns */ current_staking_pool_voter_by_pk?: Maybe; /** fetch data from the table: "current_table_items" */ current_table_items: Array; /** fetch data from the table: "current_table_items" using primary key columns */ current_table_items_by_pk?: Maybe; /** fetch data from the table: "current_token_datas" */ current_token_datas: Array; /** fetch data from the table: "current_token_datas" using primary key columns */ current_token_datas_by_pk?: Maybe; /** fetch data from the table: "current_token_datas_v2" */ current_token_datas_v2: Array; /** fetch data from the table: "current_token_datas_v2" using primary key columns */ current_token_datas_v2_by_pk?: Maybe; /** fetch data from the table: "current_token_ownerships" */ current_token_ownerships: Array; /** fetch aggregated fields from the table: "current_token_ownerships" */ current_token_ownerships_aggregate: Current_Token_Ownerships_Aggregate; /** fetch data from the table: "current_token_ownerships" using primary key columns */ current_token_ownerships_by_pk?: Maybe; /** fetch data from the table: "current_token_ownerships_v2" */ current_token_ownerships_v2: Array; /** fetch aggregated fields from the table: "current_token_ownerships_v2" */ current_token_ownerships_v2_aggregate: Current_Token_Ownerships_V2_Aggregate; /** fetch data from the table: "current_token_ownerships_v2" using primary key columns */ current_token_ownerships_v2_by_pk?: Maybe; /** fetch data from the table: "current_token_pending_claims" */ current_token_pending_claims: Array; /** fetch data from the table: "current_token_pending_claims" using primary key columns */ current_token_pending_claims_by_pk?: Maybe; /** An array relationship */ delegated_staking_activities: Array; /** fetch data from the table: "delegated_staking_activities" using primary key columns */ delegated_staking_activities_by_pk?: Maybe; /** fetch data from the table: "delegated_staking_pools" */ delegated_staking_pools: Array; /** fetch data from the table: "delegated_staking_pools" using primary key columns */ delegated_staking_pools_by_pk?: Maybe; /** fetch data from the table: "delegator_distinct_pool" */ delegator_distinct_pool: Array; /** fetch aggregated fields from the table: "delegator_distinct_pool" */ delegator_distinct_pool_aggregate: Delegator_Distinct_Pool_Aggregate; /** fetch data from the table: "events" */ events: Array; /** fetch data from the table: "events" using primary key columns */ events_by_pk?: Maybe; /** An array relationship */ fungible_asset_activities: Array; /** fetch data from the table: "fungible_asset_activities" using primary key columns */ fungible_asset_activities_by_pk?: Maybe; /** fetch data from the table: "fungible_asset_metadata" */ fungible_asset_metadata: Array; /** fetch data from the table: "fungible_asset_metadata" using primary key columns */ fungible_asset_metadata_by_pk?: Maybe; /** fetch data from the table: "indexer_status" */ indexer_status: Array; /** fetch data from the table: "indexer_status" using primary key columns */ indexer_status_by_pk?: Maybe; /** fetch data from the table: "ledger_infos" */ ledger_infos: Array; /** fetch data from the table: "ledger_infos" using primary key columns */ ledger_infos_by_pk?: Maybe; /** fetch data from the table: "move_resources" */ move_resources: Array; /** fetch aggregated fields from the table: "move_resources" */ move_resources_aggregate: Move_Resources_Aggregate; /** fetch data from the table: "nft_marketplace_v2.current_nft_marketplace_auctions" */ nft_marketplace_v2_current_nft_marketplace_auctions: Array; /** fetch data from the table: "nft_marketplace_v2.current_nft_marketplace_auctions" using primary key columns */ nft_marketplace_v2_current_nft_marketplace_auctions_by_pk?: Maybe; /** fetch data from the table: "nft_marketplace_v2.current_nft_marketplace_collection_offers" */ nft_marketplace_v2_current_nft_marketplace_collection_offers: Array; /** fetch data from the table: "nft_marketplace_v2.current_nft_marketplace_collection_offers" using primary key columns */ nft_marketplace_v2_current_nft_marketplace_collection_offers_by_pk?: Maybe; /** fetch data from the table: "nft_marketplace_v2.current_nft_marketplace_listings" */ nft_marketplace_v2_current_nft_marketplace_listings: Array; /** fetch data from the table: "nft_marketplace_v2.current_nft_marketplace_listings" using primary key columns */ nft_marketplace_v2_current_nft_marketplace_listings_by_pk?: Maybe; /** fetch data from the table: "nft_marketplace_v2.current_nft_marketplace_token_offers" */ nft_marketplace_v2_current_nft_marketplace_token_offers: Array; /** fetch data from the table: "nft_marketplace_v2.current_nft_marketplace_token_offers" using primary key columns */ nft_marketplace_v2_current_nft_marketplace_token_offers_by_pk?: Maybe; /** fetch data from the table: "nft_marketplace_v2.nft_marketplace_activities" */ nft_marketplace_v2_nft_marketplace_activities: Array; /** fetch data from the table: "nft_marketplace_v2.nft_marketplace_activities" using primary key columns */ nft_marketplace_v2_nft_marketplace_activities_by_pk?: Maybe; /** fetch data from the table: "nft_metadata_crawler.parsed_asset_uris" */ nft_metadata_crawler_parsed_asset_uris: Array; /** fetch data from the table: "nft_metadata_crawler.parsed_asset_uris" using primary key columns */ nft_metadata_crawler_parsed_asset_uris_by_pk?: Maybe; /** fetch data from the table: "num_active_delegator_per_pool" */ num_active_delegator_per_pool: Array; /** fetch data from the table: "processor_status" */ processor_status: Array; /** fetch data from the table: "processor_status" using primary key columns */ processor_status_by_pk?: Maybe; /** fetch data from the table: "proposal_votes" */ proposal_votes: Array; /** fetch aggregated fields from the table: "proposal_votes" */ proposal_votes_aggregate: Proposal_Votes_Aggregate; /** fetch data from the table: "proposal_votes" using primary key columns */ proposal_votes_by_pk?: Maybe; /** fetch data from the table: "table_items" */ table_items: Array; /** fetch data from the table: "table_items" using primary key columns */ table_items_by_pk?: Maybe; /** fetch data from the table: "table_metadatas" */ table_metadatas: Array; /** fetch data from the table: "table_metadatas" using primary key columns */ table_metadatas_by_pk?: Maybe; /** An array relationship */ token_activities: Array; /** An aggregate relationship */ token_activities_aggregate: Token_Activities_Aggregate; /** fetch data from the table: "token_activities" using primary key columns */ token_activities_by_pk?: Maybe; /** An array relationship */ token_activities_v2: Array; /** An aggregate relationship */ token_activities_v2_aggregate: Token_Activities_V2_Aggregate; /** fetch data from the table: "token_activities_v2" using primary key columns */ token_activities_v2_by_pk?: Maybe; /** fetch data from the table: "token_datas" */ token_datas: Array; /** fetch data from the table: "token_datas" using primary key columns */ token_datas_by_pk?: Maybe; /** fetch data from the table: "token_ownerships" */ token_ownerships: Array; /** fetch data from the table: "token_ownerships" using primary key columns */ token_ownerships_by_pk?: Maybe; /** fetch data from the table: "tokens" */ tokens: Array; /** fetch data from the table: "tokens" using primary key columns */ tokens_by_pk?: Maybe; /** fetch data from the table: "user_transactions" */ user_transactions: Array; /** fetch data from the table: "user_transactions" using primary key columns */ user_transactions_by_pk?: Maybe; }; export type Query_RootAccount_TransactionsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootAccount_Transactions_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootAccount_Transactions_By_PkArgs = { account_address: Scalars['String']['input']; transaction_version: Scalars['bigint']['input']; }; export type Query_RootAddress_Events_SummaryArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootAddress_Version_From_EventsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootAddress_Version_From_Events_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootAddress_Version_From_Move_ResourcesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootAddress_Version_From_Move_Resources_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootBlock_Metadata_TransactionsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootBlock_Metadata_Transactions_By_PkArgs = { version: Scalars['bigint']['input']; }; export type Query_RootCoin_ActivitiesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootCoin_Activities_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootCoin_Activities_By_PkArgs = { event_account_address: Scalars['String']['input']; event_creation_number: Scalars['bigint']['input']; event_sequence_number: Scalars['bigint']['input']; transaction_version: Scalars['bigint']['input']; }; export type Query_RootCoin_BalancesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootCoin_Balances_By_PkArgs = { coin_type_hash: Scalars['String']['input']; owner_address: Scalars['String']['input']; transaction_version: Scalars['bigint']['input']; }; export type Query_RootCoin_InfosArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootCoin_Infos_By_PkArgs = { coin_type_hash: Scalars['String']['input']; }; export type Query_RootCoin_SupplyArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootCoin_Supply_By_PkArgs = { coin_type_hash: Scalars['String']['input']; transaction_version: Scalars['bigint']['input']; }; export type Query_RootCollection_DatasArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootCollection_Datas_By_PkArgs = { collection_data_id_hash: Scalars['String']['input']; transaction_version: Scalars['bigint']['input']; }; export type Query_RootCurrent_Ans_LookupArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootCurrent_Ans_Lookup_By_PkArgs = { domain: Scalars['String']['input']; subdomain: Scalars['String']['input']; }; export type Query_RootCurrent_Ans_Lookup_V2Args = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootCurrent_Ans_Lookup_V2_By_PkArgs = { domain: Scalars['String']['input']; subdomain: Scalars['String']['input']; token_standard: Scalars['String']['input']; }; export type Query_RootCurrent_Endless_NamesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootCurrent_Endless_Names_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootCurrent_Coin_BalancesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootCurrent_Coin_Balances_By_PkArgs = { coin_type_hash: Scalars['String']['input']; owner_address: Scalars['String']['input']; }; export type Query_RootCurrent_Collection_DatasArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootCurrent_Collection_Datas_By_PkArgs = { collection_data_id_hash: Scalars['String']['input']; }; export type Query_RootCurrent_Collection_Ownership_V2_ViewArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootCurrent_Collection_Ownership_V2_View_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootCurrent_Collections_V2Args = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootCurrent_Collections_V2_By_PkArgs = { collection_id: Scalars['String']['input']; }; export type Query_RootCurrent_Delegated_Staking_Pool_BalancesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootCurrent_Delegated_Staking_Pool_Balances_By_PkArgs = { staking_pool_address: Scalars['String']['input']; }; export type Query_RootCurrent_Delegated_VoterArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootCurrent_Delegated_Voter_By_PkArgs = { delegation_pool_address: Scalars['String']['input']; delegator_address: Scalars['String']['input']; }; export type Query_RootCurrent_Delegator_BalancesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootCurrent_Delegator_Balances_By_PkArgs = { delegator_address: Scalars['String']['input']; pool_address: Scalars['String']['input']; pool_type: Scalars['String']['input']; table_handle: Scalars['String']['input']; }; export type Query_RootCurrent_Fungible_Asset_BalancesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootCurrent_Fungible_Asset_Balances_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootCurrent_Fungible_Asset_Balances_By_PkArgs = { storage_id: Scalars['String']['input']; }; export type Query_RootCurrent_ObjectsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootCurrent_Objects_By_PkArgs = { object_address: Scalars['String']['input']; }; export type Query_RootCurrent_Staking_Pool_VoterArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootCurrent_Staking_Pool_Voter_By_PkArgs = { staking_pool_address: Scalars['String']['input']; }; export type Query_RootCurrent_Table_ItemsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootCurrent_Table_Items_By_PkArgs = { key_hash: Scalars['String']['input']; table_handle: Scalars['String']['input']; }; export type Query_RootCurrent_Token_DatasArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootCurrent_Token_Datas_By_PkArgs = { token_data_id_hash: Scalars['String']['input']; }; export type Query_RootCurrent_Token_Datas_V2Args = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootCurrent_Token_Datas_V2_By_PkArgs = { token_data_id: Scalars['String']['input']; }; export type Query_RootCurrent_Token_OwnershipsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootCurrent_Token_Ownerships_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootCurrent_Token_Ownerships_By_PkArgs = { owner_address: Scalars['String']['input']; property_version: Scalars['numeric']['input']; token_data_id_hash: Scalars['String']['input']; }; export type Query_RootCurrent_Token_Ownerships_V2Args = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootCurrent_Token_Ownerships_V2_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootCurrent_Token_Ownerships_V2_By_PkArgs = { owner_address: Scalars['String']['input']; property_version_v1: Scalars['numeric']['input']; storage_id: Scalars['String']['input']; token_data_id: Scalars['String']['input']; }; export type Query_RootCurrent_Token_Pending_ClaimsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootCurrent_Token_Pending_Claims_By_PkArgs = { from_address: Scalars['String']['input']; property_version: Scalars['numeric']['input']; to_address: Scalars['String']['input']; token_data_id_hash: Scalars['String']['input']; }; export type Query_RootDelegated_Staking_ActivitiesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootDelegated_Staking_Activities_By_PkArgs = { event_index: Scalars['bigint']['input']; transaction_version: Scalars['bigint']['input']; }; export type Query_RootDelegated_Staking_PoolsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootDelegated_Staking_Pools_By_PkArgs = { staking_pool_address: Scalars['String']['input']; }; export type Query_RootDelegator_Distinct_PoolArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootDelegator_Distinct_Pool_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootEventsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootEvents_By_PkArgs = { event_index: Scalars['bigint']['input']; transaction_version: Scalars['bigint']['input']; }; export type Query_RootFungible_Asset_ActivitiesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootFungible_Asset_Activities_By_PkArgs = { event_index: Scalars['bigint']['input']; transaction_version: Scalars['bigint']['input']; }; export type Query_RootFungible_Asset_MetadataArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootFungible_Asset_Metadata_By_PkArgs = { asset_type: Scalars['String']['input']; }; export type Query_RootIndexer_StatusArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootIndexer_Status_By_PkArgs = { db: Scalars['String']['input']; }; export type Query_RootLedger_InfosArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootLedger_Infos_By_PkArgs = { chain_id: Scalars['bigint']['input']; }; export type Query_RootMove_ResourcesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootMove_Resources_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootNft_Marketplace_V2_Current_Nft_Marketplace_AuctionsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootNft_Marketplace_V2_Current_Nft_Marketplace_Auctions_By_PkArgs = { listing_id: Scalars['String']['input']; token_data_id: Scalars['String']['input']; }; export type Query_RootNft_Marketplace_V2_Current_Nft_Marketplace_Collection_OffersArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootNft_Marketplace_V2_Current_Nft_Marketplace_Collection_Offers_By_PkArgs = { collection_id: Scalars['String']['input']; collection_offer_id: Scalars['String']['input']; }; export type Query_RootNft_Marketplace_V2_Current_Nft_Marketplace_ListingsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootNft_Marketplace_V2_Current_Nft_Marketplace_Listings_By_PkArgs = { listing_id: Scalars['String']['input']; token_data_id: Scalars['String']['input']; }; export type Query_RootNft_Marketplace_V2_Current_Nft_Marketplace_Token_OffersArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootNft_Marketplace_V2_Current_Nft_Marketplace_Token_Offers_By_PkArgs = { offer_id: Scalars['String']['input']; token_data_id: Scalars['String']['input']; }; export type Query_RootNft_Marketplace_V2_Nft_Marketplace_ActivitiesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootNft_Marketplace_V2_Nft_Marketplace_Activities_By_PkArgs = { event_index: Scalars['bigint']['input']; transaction_version: Scalars['bigint']['input']; }; export type Query_RootNft_Metadata_Crawler_Parsed_Asset_UrisArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootNft_Metadata_Crawler_Parsed_Asset_Uris_By_PkArgs = { asset_uri: Scalars['String']['input']; }; export type Query_RootNum_Active_Delegator_Per_PoolArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootProcessor_StatusArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootProcessor_Status_By_PkArgs = { processor: Scalars['String']['input']; }; export type Query_RootProposal_VotesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootProposal_Votes_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootProposal_Votes_By_PkArgs = { proposal_id: Scalars['bigint']['input']; transaction_version: Scalars['bigint']['input']; voter_address: Scalars['String']['input']; }; export type Query_RootTable_ItemsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootTable_Items_By_PkArgs = { transaction_version: Scalars['bigint']['input']; write_set_change_index: Scalars['bigint']['input']; }; export type Query_RootTable_MetadatasArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootTable_Metadatas_By_PkArgs = { handle: Scalars['String']['input']; }; export type Query_RootToken_ActivitiesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootToken_Activities_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootToken_Activities_By_PkArgs = { event_account_address: Scalars['String']['input']; event_creation_number: Scalars['bigint']['input']; event_sequence_number: Scalars['bigint']['input']; transaction_version: Scalars['bigint']['input']; }; export type Query_RootToken_Activities_V2Args = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootToken_Activities_V2_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootToken_Activities_V2_By_PkArgs = { event_index: Scalars['bigint']['input']; transaction_version: Scalars['bigint']['input']; }; export type Query_RootToken_DatasArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootToken_Datas_By_PkArgs = { token_data_id_hash: Scalars['String']['input']; transaction_version: Scalars['bigint']['input']; }; export type Query_RootToken_OwnershipsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootToken_Ownerships_By_PkArgs = { property_version: Scalars['numeric']['input']; table_handle: Scalars['String']['input']; token_data_id_hash: Scalars['String']['input']; transaction_version: Scalars['bigint']['input']; }; export type Query_RootTokensArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootTokens_By_PkArgs = { property_version: Scalars['numeric']['input']; token_data_id_hash: Scalars['String']['input']; transaction_version: Scalars['bigint']['input']; }; export type Query_RootUser_TransactionsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Query_RootUser_Transactions_By_PkArgs = { version: Scalars['bigint']['input']; }; export type Subscription_Root = { __typename?: 'subscription_root'; /** fetch data from the table: "account_transactions" */ account_transactions: Array; /** fetch aggregated fields from the table: "account_transactions" */ account_transactions_aggregate: Account_Transactions_Aggregate; /** fetch data from the table: "account_transactions" using primary key columns */ account_transactions_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "account_transactions" */ account_transactions_stream: Array; /** fetch data from the table: "address_events_summary" */ address_events_summary: Array; /** fetch data from the table in a streaming manner: "address_events_summary" */ address_events_summary_stream: Array; /** fetch data from the table: "address_version_from_events" */ address_version_from_events: Array; /** fetch aggregated fields from the table: "address_version_from_events" */ address_version_from_events_aggregate: Address_Version_From_Events_Aggregate; /** fetch data from the table in a streaming manner: "address_version_from_events" */ address_version_from_events_stream: Array; /** fetch data from the table: "address_version_from_move_resources" */ address_version_from_move_resources: Array; /** fetch aggregated fields from the table: "address_version_from_move_resources" */ address_version_from_move_resources_aggregate: Address_Version_From_Move_Resources_Aggregate; /** fetch data from the table in a streaming manner: "address_version_from_move_resources" */ address_version_from_move_resources_stream: Array; /** fetch data from the table: "block_metadata_transactions" */ block_metadata_transactions: Array; /** fetch data from the table: "block_metadata_transactions" using primary key columns */ block_metadata_transactions_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "block_metadata_transactions" */ block_metadata_transactions_stream: Array; /** An array relationship */ coin_activities: Array; /** An aggregate relationship */ coin_activities_aggregate: Coin_Activities_Aggregate; /** fetch data from the table: "coin_activities" using primary key columns */ coin_activities_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "coin_activities" */ coin_activities_stream: Array; /** fetch data from the table: "coin_balances" */ coin_balances: Array; /** fetch data from the table: "coin_balances" using primary key columns */ coin_balances_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "coin_balances" */ coin_balances_stream: Array; /** fetch data from the table: "coin_infos" */ coin_infos: Array; /** fetch data from the table: "coin_infos" using primary key columns */ coin_infos_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "coin_infos" */ coin_infos_stream: Array; /** fetch data from the table: "coin_supply" */ coin_supply: Array; /** fetch data from the table: "coin_supply" using primary key columns */ coin_supply_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "coin_supply" */ coin_supply_stream: Array; /** fetch data from the table: "collection_datas" */ collection_datas: Array; /** fetch data from the table: "collection_datas" using primary key columns */ collection_datas_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "collection_datas" */ collection_datas_stream: Array; /** fetch data from the table: "current_ans_lookup" */ current_ans_lookup: Array; /** fetch data from the table: "current_ans_lookup" using primary key columns */ current_ans_lookup_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "current_ans_lookup" */ current_ans_lookup_stream: Array; /** fetch data from the table: "current_ans_lookup_v2" */ current_ans_lookup_v2: Array; /** fetch data from the table: "current_ans_lookup_v2" using primary key columns */ current_ans_lookup_v2_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "current_ans_lookup_v2" */ current_ans_lookup_v2_stream: Array; /** fetch data from the table: "current_endless_names" */ current_endless_names: Array; /** fetch aggregated fields from the table: "current_endless_names" */ current_endless_names_aggregate: Current_Endless_Names_Aggregate; /** fetch data from the table in a streaming manner: "current_endless_names" */ current_endless_names_stream: Array; /** fetch data from the table: "current_coin_balances" */ current_coin_balances: Array; /** fetch data from the table: "current_coin_balances" using primary key columns */ current_coin_balances_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "current_coin_balances" */ current_coin_balances_stream: Array; /** fetch data from the table: "current_collection_datas" */ current_collection_datas: Array; /** fetch data from the table: "current_collection_datas" using primary key columns */ current_collection_datas_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "current_collection_datas" */ current_collection_datas_stream: Array; /** fetch data from the table: "current_collection_ownership_v2_view" */ current_collection_ownership_v2_view: Array; /** fetch aggregated fields from the table: "current_collection_ownership_v2_view" */ current_collection_ownership_v2_view_aggregate: Current_Collection_Ownership_V2_View_Aggregate; /** fetch data from the table in a streaming manner: "current_collection_ownership_v2_view" */ current_collection_ownership_v2_view_stream: Array; /** fetch data from the table: "current_collections_v2" */ current_collections_v2: Array; /** fetch data from the table: "current_collections_v2" using primary key columns */ current_collections_v2_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "current_collections_v2" */ current_collections_v2_stream: Array; /** fetch data from the table: "current_delegated_staking_pool_balances" */ current_delegated_staking_pool_balances: Array; /** fetch data from the table: "current_delegated_staking_pool_balances" using primary key columns */ current_delegated_staking_pool_balances_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "current_delegated_staking_pool_balances" */ current_delegated_staking_pool_balances_stream: Array; /** fetch data from the table: "current_delegated_voter" */ current_delegated_voter: Array; /** fetch data from the table: "current_delegated_voter" using primary key columns */ current_delegated_voter_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "current_delegated_voter" */ current_delegated_voter_stream: Array; /** fetch data from the table: "current_delegator_balances" */ current_delegator_balances: Array; /** fetch data from the table: "current_delegator_balances" using primary key columns */ current_delegator_balances_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "current_delegator_balances" */ current_delegator_balances_stream: Array; /** fetch data from the table: "current_fungible_asset_balances" */ current_fungible_asset_balances: Array; /** fetch aggregated fields from the table: "current_fungible_asset_balances" */ current_fungible_asset_balances_aggregate: Current_Fungible_Asset_Balances_Aggregate; /** fetch data from the table: "current_fungible_asset_balances" using primary key columns */ current_fungible_asset_balances_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "current_fungible_asset_balances" */ current_fungible_asset_balances_stream: Array; /** fetch data from the table: "current_objects" */ current_objects: Array; /** fetch data from the table: "current_objects" using primary key columns */ current_objects_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "current_objects" */ current_objects_stream: Array; /** fetch data from the table: "current_staking_pool_voter" */ current_staking_pool_voter: Array; /** fetch data from the table: "current_staking_pool_voter" using primary key columns */ current_staking_pool_voter_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "current_staking_pool_voter" */ current_staking_pool_voter_stream: Array; /** fetch data from the table: "current_table_items" */ current_table_items: Array; /** fetch data from the table: "current_table_items" using primary key columns */ current_table_items_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "current_table_items" */ current_table_items_stream: Array; /** fetch data from the table: "current_token_datas" */ current_token_datas: Array; /** fetch data from the table: "current_token_datas" using primary key columns */ current_token_datas_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "current_token_datas" */ current_token_datas_stream: Array; /** fetch data from the table: "current_token_datas_v2" */ current_token_datas_v2: Array; /** fetch data from the table: "current_token_datas_v2" using primary key columns */ current_token_datas_v2_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "current_token_datas_v2" */ current_token_datas_v2_stream: Array; /** fetch data from the table: "current_token_ownerships" */ current_token_ownerships: Array; /** fetch aggregated fields from the table: "current_token_ownerships" */ current_token_ownerships_aggregate: Current_Token_Ownerships_Aggregate; /** fetch data from the table: "current_token_ownerships" using primary key columns */ current_token_ownerships_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "current_token_ownerships" */ current_token_ownerships_stream: Array; /** fetch data from the table: "current_token_ownerships_v2" */ current_token_ownerships_v2: Array; /** fetch aggregated fields from the table: "current_token_ownerships_v2" */ current_token_ownerships_v2_aggregate: Current_Token_Ownerships_V2_Aggregate; /** fetch data from the table: "current_token_ownerships_v2" using primary key columns */ current_token_ownerships_v2_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "current_token_ownerships_v2" */ current_token_ownerships_v2_stream: Array; /** fetch data from the table: "current_token_pending_claims" */ current_token_pending_claims: Array; /** fetch data from the table: "current_token_pending_claims" using primary key columns */ current_token_pending_claims_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "current_token_pending_claims" */ current_token_pending_claims_stream: Array; /** An array relationship */ delegated_staking_activities: Array; /** fetch data from the table: "delegated_staking_activities" using primary key columns */ delegated_staking_activities_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "delegated_staking_activities" */ delegated_staking_activities_stream: Array; /** fetch data from the table: "delegated_staking_pools" */ delegated_staking_pools: Array; /** fetch data from the table: "delegated_staking_pools" using primary key columns */ delegated_staking_pools_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "delegated_staking_pools" */ delegated_staking_pools_stream: Array; /** fetch data from the table: "delegator_distinct_pool" */ delegator_distinct_pool: Array; /** fetch aggregated fields from the table: "delegator_distinct_pool" */ delegator_distinct_pool_aggregate: Delegator_Distinct_Pool_Aggregate; /** fetch data from the table in a streaming manner: "delegator_distinct_pool" */ delegator_distinct_pool_stream: Array; /** fetch data from the table: "events" */ events: Array; /** fetch data from the table: "events" using primary key columns */ events_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "events" */ events_stream: Array; /** An array relationship */ fungible_asset_activities: Array; /** fetch data from the table: "fungible_asset_activities" using primary key columns */ fungible_asset_activities_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "fungible_asset_activities" */ fungible_asset_activities_stream: Array; /** fetch data from the table: "fungible_asset_metadata" */ fungible_asset_metadata: Array; /** fetch data from the table: "fungible_asset_metadata" using primary key columns */ fungible_asset_metadata_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "fungible_asset_metadata" */ fungible_asset_metadata_stream: Array; /** fetch data from the table: "indexer_status" */ indexer_status: Array; /** fetch data from the table: "indexer_status" using primary key columns */ indexer_status_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "indexer_status" */ indexer_status_stream: Array; /** fetch data from the table: "ledger_infos" */ ledger_infos: Array; /** fetch data from the table: "ledger_infos" using primary key columns */ ledger_infos_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "ledger_infos" */ ledger_infos_stream: Array; /** fetch data from the table: "move_resources" */ move_resources: Array; /** fetch aggregated fields from the table: "move_resources" */ move_resources_aggregate: Move_Resources_Aggregate; /** fetch data from the table in a streaming manner: "move_resources" */ move_resources_stream: Array; /** fetch data from the table: "nft_marketplace_v2.current_nft_marketplace_auctions" */ nft_marketplace_v2_current_nft_marketplace_auctions: Array; /** fetch data from the table: "nft_marketplace_v2.current_nft_marketplace_auctions" using primary key columns */ nft_marketplace_v2_current_nft_marketplace_auctions_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "nft_marketplace_v2.current_nft_marketplace_auctions" */ nft_marketplace_v2_current_nft_marketplace_auctions_stream: Array; /** fetch data from the table: "nft_marketplace_v2.current_nft_marketplace_collection_offers" */ nft_marketplace_v2_current_nft_marketplace_collection_offers: Array; /** fetch data from the table: "nft_marketplace_v2.current_nft_marketplace_collection_offers" using primary key columns */ nft_marketplace_v2_current_nft_marketplace_collection_offers_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "nft_marketplace_v2.current_nft_marketplace_collection_offers" */ nft_marketplace_v2_current_nft_marketplace_collection_offers_stream: Array; /** fetch data from the table: "nft_marketplace_v2.current_nft_marketplace_listings" */ nft_marketplace_v2_current_nft_marketplace_listings: Array; /** fetch data from the table: "nft_marketplace_v2.current_nft_marketplace_listings" using primary key columns */ nft_marketplace_v2_current_nft_marketplace_listings_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "nft_marketplace_v2.current_nft_marketplace_listings" */ nft_marketplace_v2_current_nft_marketplace_listings_stream: Array; /** fetch data from the table: "nft_marketplace_v2.current_nft_marketplace_token_offers" */ nft_marketplace_v2_current_nft_marketplace_token_offers: Array; /** fetch data from the table: "nft_marketplace_v2.current_nft_marketplace_token_offers" using primary key columns */ nft_marketplace_v2_current_nft_marketplace_token_offers_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "nft_marketplace_v2.current_nft_marketplace_token_offers" */ nft_marketplace_v2_current_nft_marketplace_token_offers_stream: Array; /** fetch data from the table: "nft_marketplace_v2.nft_marketplace_activities" */ nft_marketplace_v2_nft_marketplace_activities: Array; /** fetch data from the table: "nft_marketplace_v2.nft_marketplace_activities" using primary key columns */ nft_marketplace_v2_nft_marketplace_activities_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "nft_marketplace_v2.nft_marketplace_activities" */ nft_marketplace_v2_nft_marketplace_activities_stream: Array; /** fetch data from the table: "nft_metadata_crawler.parsed_asset_uris" */ nft_metadata_crawler_parsed_asset_uris: Array; /** fetch data from the table: "nft_metadata_crawler.parsed_asset_uris" using primary key columns */ nft_metadata_crawler_parsed_asset_uris_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "nft_metadata_crawler.parsed_asset_uris" */ nft_metadata_crawler_parsed_asset_uris_stream: Array; /** fetch data from the table: "num_active_delegator_per_pool" */ num_active_delegator_per_pool: Array; /** fetch data from the table in a streaming manner: "num_active_delegator_per_pool" */ num_active_delegator_per_pool_stream: Array; /** fetch data from the table: "processor_status" */ processor_status: Array; /** fetch data from the table: "processor_status" using primary key columns */ processor_status_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "processor_status" */ processor_status_stream: Array; /** fetch data from the table: "proposal_votes" */ proposal_votes: Array; /** fetch aggregated fields from the table: "proposal_votes" */ proposal_votes_aggregate: Proposal_Votes_Aggregate; /** fetch data from the table: "proposal_votes" using primary key columns */ proposal_votes_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "proposal_votes" */ proposal_votes_stream: Array; /** fetch data from the table: "table_items" */ table_items: Array; /** fetch data from the table: "table_items" using primary key columns */ table_items_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "table_items" */ table_items_stream: Array; /** fetch data from the table: "table_metadatas" */ table_metadatas: Array; /** fetch data from the table: "table_metadatas" using primary key columns */ table_metadatas_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "table_metadatas" */ table_metadatas_stream: Array; /** An array relationship */ token_activities: Array; /** An aggregate relationship */ token_activities_aggregate: Token_Activities_Aggregate; /** fetch data from the table: "token_activities" using primary key columns */ token_activities_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "token_activities" */ token_activities_stream: Array; /** An array relationship */ token_activities_v2: Array; /** An aggregate relationship */ token_activities_v2_aggregate: Token_Activities_V2_Aggregate; /** fetch data from the table: "token_activities_v2" using primary key columns */ token_activities_v2_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "token_activities_v2" */ token_activities_v2_stream: Array; /** fetch data from the table: "token_datas" */ token_datas: Array; /** fetch data from the table: "token_datas" using primary key columns */ token_datas_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "token_datas" */ token_datas_stream: Array; /** fetch data from the table: "token_ownerships" */ token_ownerships: Array; /** fetch data from the table: "token_ownerships" using primary key columns */ token_ownerships_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "token_ownerships" */ token_ownerships_stream: Array; /** fetch data from the table: "tokens" */ tokens: Array; /** fetch data from the table: "tokens" using primary key columns */ tokens_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "tokens" */ tokens_stream: Array; /** fetch data from the table: "user_transactions" */ user_transactions: Array; /** fetch data from the table: "user_transactions" using primary key columns */ user_transactions_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "user_transactions" */ user_transactions_stream: Array; }; export type Subscription_RootAccount_TransactionsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootAccount_Transactions_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootAccount_Transactions_By_PkArgs = { account_address: Scalars['String']['input']; transaction_version: Scalars['bigint']['input']; }; export type Subscription_RootAccount_Transactions_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootAddress_Events_SummaryArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootAddress_Events_Summary_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootAddress_Version_From_EventsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootAddress_Version_From_Events_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootAddress_Version_From_Events_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootAddress_Version_From_Move_ResourcesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootAddress_Version_From_Move_Resources_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootAddress_Version_From_Move_Resources_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootBlock_Metadata_TransactionsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootBlock_Metadata_Transactions_By_PkArgs = { version: Scalars['bigint']['input']; }; export type Subscription_RootBlock_Metadata_Transactions_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootCoin_ActivitiesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootCoin_Activities_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootCoin_Activities_By_PkArgs = { event_account_address: Scalars['String']['input']; event_creation_number: Scalars['bigint']['input']; event_sequence_number: Scalars['bigint']['input']; transaction_version: Scalars['bigint']['input']; }; export type Subscription_RootCoin_Activities_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootCoin_BalancesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootCoin_Balances_By_PkArgs = { coin_type_hash: Scalars['String']['input']; owner_address: Scalars['String']['input']; transaction_version: Scalars['bigint']['input']; }; export type Subscription_RootCoin_Balances_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootCoin_InfosArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootCoin_Infos_By_PkArgs = { coin_type_hash: Scalars['String']['input']; }; export type Subscription_RootCoin_Infos_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootCoin_SupplyArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootCoin_Supply_By_PkArgs = { coin_type_hash: Scalars['String']['input']; transaction_version: Scalars['bigint']['input']; }; export type Subscription_RootCoin_Supply_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootCollection_DatasArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootCollection_Datas_By_PkArgs = { collection_data_id_hash: Scalars['String']['input']; transaction_version: Scalars['bigint']['input']; }; export type Subscription_RootCollection_Datas_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootCurrent_Ans_LookupArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootCurrent_Ans_Lookup_By_PkArgs = { domain: Scalars['String']['input']; subdomain: Scalars['String']['input']; }; export type Subscription_RootCurrent_Ans_Lookup_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootCurrent_Ans_Lookup_V2Args = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootCurrent_Ans_Lookup_V2_By_PkArgs = { domain: Scalars['String']['input']; subdomain: Scalars['String']['input']; token_standard: Scalars['String']['input']; }; export type Subscription_RootCurrent_Ans_Lookup_V2_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootCurrent_Endless_NamesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootCurrent_Endless_Names_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootCurrent_Endless_Names_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootCurrent_Coin_BalancesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootCurrent_Coin_Balances_By_PkArgs = { coin_type_hash: Scalars['String']['input']; owner_address: Scalars['String']['input']; }; export type Subscription_RootCurrent_Coin_Balances_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootCurrent_Collection_DatasArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootCurrent_Collection_Datas_By_PkArgs = { collection_data_id_hash: Scalars['String']['input']; }; export type Subscription_RootCurrent_Collection_Datas_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootCurrent_Collection_Ownership_V2_ViewArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootCurrent_Collection_Ownership_V2_View_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootCurrent_Collection_Ownership_V2_View_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootCurrent_Collections_V2Args = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootCurrent_Collections_V2_By_PkArgs = { collection_id: Scalars['String']['input']; }; export type Subscription_RootCurrent_Collections_V2_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootCurrent_Delegated_Staking_Pool_BalancesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootCurrent_Delegated_Staking_Pool_Balances_By_PkArgs = { staking_pool_address: Scalars['String']['input']; }; export type Subscription_RootCurrent_Delegated_Staking_Pool_Balances_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootCurrent_Delegated_VoterArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootCurrent_Delegated_Voter_By_PkArgs = { delegation_pool_address: Scalars['String']['input']; delegator_address: Scalars['String']['input']; }; export type Subscription_RootCurrent_Delegated_Voter_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootCurrent_Delegator_BalancesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootCurrent_Delegator_Balances_By_PkArgs = { delegator_address: Scalars['String']['input']; pool_address: Scalars['String']['input']; pool_type: Scalars['String']['input']; table_handle: Scalars['String']['input']; }; export type Subscription_RootCurrent_Delegator_Balances_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootCurrent_Fungible_Asset_BalancesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootCurrent_Fungible_Asset_Balances_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootCurrent_Fungible_Asset_Balances_By_PkArgs = { storage_id: Scalars['String']['input']; }; export type Subscription_RootCurrent_Fungible_Asset_Balances_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootCurrent_ObjectsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootCurrent_Objects_By_PkArgs = { object_address: Scalars['String']['input']; }; export type Subscription_RootCurrent_Objects_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootCurrent_Staking_Pool_VoterArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootCurrent_Staking_Pool_Voter_By_PkArgs = { staking_pool_address: Scalars['String']['input']; }; export type Subscription_RootCurrent_Staking_Pool_Voter_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootCurrent_Table_ItemsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootCurrent_Table_Items_By_PkArgs = { key_hash: Scalars['String']['input']; table_handle: Scalars['String']['input']; }; export type Subscription_RootCurrent_Table_Items_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootCurrent_Token_DatasArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootCurrent_Token_Datas_By_PkArgs = { token_data_id_hash: Scalars['String']['input']; }; export type Subscription_RootCurrent_Token_Datas_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootCurrent_Token_Datas_V2Args = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootCurrent_Token_Datas_V2_By_PkArgs = { token_data_id: Scalars['String']['input']; }; export type Subscription_RootCurrent_Token_Datas_V2_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootCurrent_Token_OwnershipsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootCurrent_Token_Ownerships_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootCurrent_Token_Ownerships_By_PkArgs = { owner_address: Scalars['String']['input']; property_version: Scalars['numeric']['input']; token_data_id_hash: Scalars['String']['input']; }; export type Subscription_RootCurrent_Token_Ownerships_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootCurrent_Token_Ownerships_V2Args = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootCurrent_Token_Ownerships_V2_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootCurrent_Token_Ownerships_V2_By_PkArgs = { owner_address: Scalars['String']['input']; property_version_v1: Scalars['numeric']['input']; storage_id: Scalars['String']['input']; token_data_id: Scalars['String']['input']; }; export type Subscription_RootCurrent_Token_Ownerships_V2_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootCurrent_Token_Pending_ClaimsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootCurrent_Token_Pending_Claims_By_PkArgs = { from_address: Scalars['String']['input']; property_version: Scalars['numeric']['input']; to_address: Scalars['String']['input']; token_data_id_hash: Scalars['String']['input']; }; export type Subscription_RootCurrent_Token_Pending_Claims_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootDelegated_Staking_ActivitiesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootDelegated_Staking_Activities_By_PkArgs = { event_index: Scalars['bigint']['input']; transaction_version: Scalars['bigint']['input']; }; export type Subscription_RootDelegated_Staking_Activities_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootDelegated_Staking_PoolsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootDelegated_Staking_Pools_By_PkArgs = { staking_pool_address: Scalars['String']['input']; }; export type Subscription_RootDelegated_Staking_Pools_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootDelegator_Distinct_PoolArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootDelegator_Distinct_Pool_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootDelegator_Distinct_Pool_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootEventsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootEvents_By_PkArgs = { event_index: Scalars['bigint']['input']; transaction_version: Scalars['bigint']['input']; }; export type Subscription_RootEvents_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootFungible_Asset_ActivitiesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootFungible_Asset_Activities_By_PkArgs = { event_index: Scalars['bigint']['input']; transaction_version: Scalars['bigint']['input']; }; export type Subscription_RootFungible_Asset_Activities_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootFungible_Asset_MetadataArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootFungible_Asset_Metadata_By_PkArgs = { asset_type: Scalars['String']['input']; }; export type Subscription_RootFungible_Asset_Metadata_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootIndexer_StatusArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootIndexer_Status_By_PkArgs = { db: Scalars['String']['input']; }; export type Subscription_RootIndexer_Status_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootLedger_InfosArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootLedger_Infos_By_PkArgs = { chain_id: Scalars['bigint']['input']; }; export type Subscription_RootLedger_Infos_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootMove_ResourcesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootMove_Resources_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootMove_Resources_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_AuctionsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_Auctions_By_PkArgs = { listing_id: Scalars['String']['input']; token_data_id: Scalars['String']['input']; }; export type Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_Auctions_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_Collection_OffersArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_Collection_Offers_By_PkArgs = { collection_id: Scalars['String']['input']; collection_offer_id: Scalars['String']['input']; }; export type Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_Collection_Offers_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_ListingsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_Listings_By_PkArgs = { listing_id: Scalars['String']['input']; token_data_id: Scalars['String']['input']; }; export type Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_Listings_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_Token_OffersArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_Token_Offers_By_PkArgs = { offer_id: Scalars['String']['input']; token_data_id: Scalars['String']['input']; }; export type Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_Token_Offers_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootNft_Marketplace_V2_Nft_Marketplace_ActivitiesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootNft_Marketplace_V2_Nft_Marketplace_Activities_By_PkArgs = { event_index: Scalars['bigint']['input']; transaction_version: Scalars['bigint']['input']; }; export type Subscription_RootNft_Marketplace_V2_Nft_Marketplace_Activities_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootNft_Metadata_Crawler_Parsed_Asset_UrisArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootNft_Metadata_Crawler_Parsed_Asset_Uris_By_PkArgs = { asset_uri: Scalars['String']['input']; }; export type Subscription_RootNft_Metadata_Crawler_Parsed_Asset_Uris_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootNum_Active_Delegator_Per_PoolArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootNum_Active_Delegator_Per_Pool_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootProcessor_StatusArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootProcessor_Status_By_PkArgs = { processor: Scalars['String']['input']; }; export type Subscription_RootProcessor_Status_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootProposal_VotesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootProposal_Votes_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootProposal_Votes_By_PkArgs = { proposal_id: Scalars['bigint']['input']; transaction_version: Scalars['bigint']['input']; voter_address: Scalars['String']['input']; }; export type Subscription_RootProposal_Votes_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootTable_ItemsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootTable_Items_By_PkArgs = { transaction_version: Scalars['bigint']['input']; write_set_change_index: Scalars['bigint']['input']; }; export type Subscription_RootTable_Items_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootTable_MetadatasArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootTable_Metadatas_By_PkArgs = { handle: Scalars['String']['input']; }; export type Subscription_RootTable_Metadatas_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootToken_ActivitiesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootToken_Activities_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootToken_Activities_By_PkArgs = { event_account_address: Scalars['String']['input']; event_creation_number: Scalars['bigint']['input']; event_sequence_number: Scalars['bigint']['input']; transaction_version: Scalars['bigint']['input']; }; export type Subscription_RootToken_Activities_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootToken_Activities_V2Args = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootToken_Activities_V2_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootToken_Activities_V2_By_PkArgs = { event_index: Scalars['bigint']['input']; transaction_version: Scalars['bigint']['input']; }; export type Subscription_RootToken_Activities_V2_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootToken_DatasArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootToken_Datas_By_PkArgs = { token_data_id_hash: Scalars['String']['input']; transaction_version: Scalars['bigint']['input']; }; export type Subscription_RootToken_Datas_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootToken_OwnershipsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootToken_Ownerships_By_PkArgs = { property_version: Scalars['numeric']['input']; table_handle: Scalars['String']['input']; token_data_id_hash: Scalars['String']['input']; transaction_version: Scalars['bigint']['input']; }; export type Subscription_RootToken_Ownerships_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootTokensArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootTokens_By_PkArgs = { property_version: Scalars['numeric']['input']; token_data_id_hash: Scalars['String']['input']; transaction_version: Scalars['bigint']['input']; }; export type Subscription_RootTokens_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; export type Subscription_RootUser_TransactionsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type Subscription_RootUser_Transactions_By_PkArgs = { version: Scalars['bigint']['input']; }; export type Subscription_RootUser_Transactions_StreamArgs = { batch_size: Scalars['Int']['input']; cursor: Array>; where?: InputMaybe; }; /** columns and relationships of "table_items" */ export type Table_Items = { __typename?: 'table_items'; decoded_key: Scalars['jsonb']['output']; decoded_value?: Maybe; key: Scalars['String']['output']; table_handle: Scalars['String']['output']; transaction_version: Scalars['bigint']['output']; write_set_change_index: Scalars['bigint']['output']; }; /** columns and relationships of "table_items" */ export type Table_ItemsDecoded_KeyArgs = { path?: InputMaybe; }; /** columns and relationships of "table_items" */ export type Table_ItemsDecoded_ValueArgs = { path?: InputMaybe; }; /** Boolean expression to filter rows from the table "table_items". All fields are combined with a logical 'AND'. */ export type Table_Items_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; decoded_key?: InputMaybe; decoded_value?: InputMaybe; key?: InputMaybe; table_handle?: InputMaybe; transaction_version?: InputMaybe; write_set_change_index?: InputMaybe; }; /** Ordering options when selecting data from "table_items". */ export type Table_Items_Order_By = { decoded_key?: InputMaybe; decoded_value?: InputMaybe; key?: InputMaybe; table_handle?: InputMaybe; transaction_version?: InputMaybe; write_set_change_index?: InputMaybe; }; /** select columns of table "table_items" */ export enum Table_Items_Select_Column { /** column name */ DecodedKey = 'decoded_key', /** column name */ DecodedValue = 'decoded_value', /** column name */ Key = 'key', /** column name */ TableHandle = 'table_handle', /** column name */ TransactionVersion = 'transaction_version', /** column name */ WriteSetChangeIndex = 'write_set_change_index' } /** Streaming cursor of the table "table_items" */ export type Table_Items_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Table_Items_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Table_Items_Stream_Cursor_Value_Input = { decoded_key?: InputMaybe; decoded_value?: InputMaybe; key?: InputMaybe; table_handle?: InputMaybe; transaction_version?: InputMaybe; write_set_change_index?: InputMaybe; }; /** columns and relationships of "table_metadatas" */ export type Table_Metadatas = { __typename?: 'table_metadatas'; handle: Scalars['String']['output']; key_type: Scalars['String']['output']; value_type: Scalars['String']['output']; }; /** Boolean expression to filter rows from the table "table_metadatas". All fields are combined with a logical 'AND'. */ export type Table_Metadatas_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; handle?: InputMaybe; key_type?: InputMaybe; value_type?: InputMaybe; }; /** Ordering options when selecting data from "table_metadatas". */ export type Table_Metadatas_Order_By = { handle?: InputMaybe; key_type?: InputMaybe; value_type?: InputMaybe; }; /** select columns of table "table_metadatas" */ export enum Table_Metadatas_Select_Column { /** column name */ Handle = 'handle', /** column name */ KeyType = 'key_type', /** column name */ ValueType = 'value_type' } /** Streaming cursor of the table "table_metadatas" */ export type Table_Metadatas_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Table_Metadatas_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Table_Metadatas_Stream_Cursor_Value_Input = { handle?: InputMaybe; key_type?: InputMaybe; value_type?: InputMaybe; }; /** Boolean expression to compare columns of type "timestamp". All fields are combined with logical 'AND'. */ export type Timestamp_Comparison_Exp = { _eq?: InputMaybe; _gt?: InputMaybe; _gte?: InputMaybe; _in?: InputMaybe>; _is_null?: InputMaybe; _lt?: InputMaybe; _lte?: InputMaybe; _neq?: InputMaybe; _nin?: InputMaybe>; }; /** Boolean expression to compare columns of type "timestamptz". All fields are combined with logical 'AND'. */ export type Timestamptz_Comparison_Exp = { _eq?: InputMaybe; _gt?: InputMaybe; _gte?: InputMaybe; _in?: InputMaybe>; _is_null?: InputMaybe; _lt?: InputMaybe; _lte?: InputMaybe; _neq?: InputMaybe; _nin?: InputMaybe>; }; /** columns and relationships of "token_activities" */ export type Token_Activities = { __typename?: 'token_activities'; /** An array relationship */ endless_names_owner: Array; /** An aggregate relationship */ endless_names_owner_aggregate: Current_Endless_Names_Aggregate; /** An array relationship */ endless_names_to: Array; /** An aggregate relationship */ endless_names_to_aggregate: Current_Endless_Names_Aggregate; coin_amount?: Maybe; coin_type?: Maybe; collection_data_id_hash: Scalars['String']['output']; collection_name: Scalars['String']['output']; creator_address: Scalars['String']['output']; /** An object relationship */ current_token_data?: Maybe; event_account_address: Scalars['String']['output']; event_creation_number: Scalars['bigint']['output']; event_index?: Maybe; event_sequence_number: Scalars['bigint']['output']; from_address?: Maybe; name: Scalars['String']['output']; property_version: Scalars['numeric']['output']; to_address?: Maybe; token_amount: Scalars['numeric']['output']; token_data_id_hash: Scalars['String']['output']; transaction_timestamp: Scalars['timestamp']['output']; transaction_version: Scalars['bigint']['output']; transfer_type: Scalars['String']['output']; }; /** columns and relationships of "token_activities" */ export type Token_ActivitiesEndless_Names_OwnerArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "token_activities" */ export type Token_ActivitiesEndless_Names_Owner_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "token_activities" */ export type Token_ActivitiesEndless_Names_ToArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "token_activities" */ export type Token_ActivitiesEndless_Names_To_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** aggregated selection of "token_activities" */ export type Token_Activities_Aggregate = { __typename?: 'token_activities_aggregate'; aggregate?: Maybe; nodes: Array; }; export type Token_Activities_Aggregate_Bool_Exp = { count?: InputMaybe; }; export type Token_Activities_Aggregate_Bool_Exp_Count = { arguments?: InputMaybe>; distinct?: InputMaybe; filter?: InputMaybe; predicate: Int_Comparison_Exp; }; /** aggregate fields of "token_activities" */ export type Token_Activities_Aggregate_Fields = { __typename?: 'token_activities_aggregate_fields'; avg?: Maybe; count: Scalars['Int']['output']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "token_activities" */ export type Token_Activities_Aggregate_FieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** order by aggregate values of table "token_activities" */ export type Token_Activities_Aggregate_Order_By = { avg?: InputMaybe; count?: InputMaybe; max?: InputMaybe; min?: InputMaybe; stddev?: InputMaybe; stddev_pop?: InputMaybe; stddev_samp?: InputMaybe; sum?: InputMaybe; var_pop?: InputMaybe; var_samp?: InputMaybe; variance?: InputMaybe; }; /** aggregate avg on columns */ export type Token_Activities_Avg_Fields = { __typename?: 'token_activities_avg_fields'; coin_amount?: Maybe; event_creation_number?: Maybe; event_index?: Maybe; event_sequence_number?: Maybe; property_version?: Maybe; token_amount?: Maybe; transaction_version?: Maybe; }; /** order by avg() on columns of table "token_activities" */ export type Token_Activities_Avg_Order_By = { coin_amount?: InputMaybe; event_creation_number?: InputMaybe; event_index?: InputMaybe; event_sequence_number?: InputMaybe; property_version?: InputMaybe; token_amount?: InputMaybe; transaction_version?: InputMaybe; }; /** Boolean expression to filter rows from the table "token_activities". All fields are combined with a logical 'AND'. */ export type Token_Activities_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; endless_names_owner?: InputMaybe; endless_names_owner_aggregate?: InputMaybe; endless_names_to?: InputMaybe; endless_names_to_aggregate?: InputMaybe; coin_amount?: InputMaybe; coin_type?: InputMaybe; collection_data_id_hash?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; current_token_data?: InputMaybe; event_account_address?: InputMaybe; event_creation_number?: InputMaybe; event_index?: InputMaybe; event_sequence_number?: InputMaybe; from_address?: InputMaybe; name?: InputMaybe; property_version?: InputMaybe; to_address?: InputMaybe; token_amount?: InputMaybe; token_data_id_hash?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; transfer_type?: InputMaybe; }; /** aggregate max on columns */ export type Token_Activities_Max_Fields = { __typename?: 'token_activities_max_fields'; coin_amount?: Maybe; coin_type?: Maybe; collection_data_id_hash?: Maybe; collection_name?: Maybe; creator_address?: Maybe; event_account_address?: Maybe; event_creation_number?: Maybe; event_index?: Maybe; event_sequence_number?: Maybe; from_address?: Maybe; name?: Maybe; property_version?: Maybe; to_address?: Maybe; token_amount?: Maybe; token_data_id_hash?: Maybe; transaction_timestamp?: Maybe; transaction_version?: Maybe; transfer_type?: Maybe; }; /** order by max() on columns of table "token_activities" */ export type Token_Activities_Max_Order_By = { coin_amount?: InputMaybe; coin_type?: InputMaybe; collection_data_id_hash?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; event_account_address?: InputMaybe; event_creation_number?: InputMaybe; event_index?: InputMaybe; event_sequence_number?: InputMaybe; from_address?: InputMaybe; name?: InputMaybe; property_version?: InputMaybe; to_address?: InputMaybe; token_amount?: InputMaybe; token_data_id_hash?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; transfer_type?: InputMaybe; }; /** aggregate min on columns */ export type Token_Activities_Min_Fields = { __typename?: 'token_activities_min_fields'; coin_amount?: Maybe; coin_type?: Maybe; collection_data_id_hash?: Maybe; collection_name?: Maybe; creator_address?: Maybe; event_account_address?: Maybe; event_creation_number?: Maybe; event_index?: Maybe; event_sequence_number?: Maybe; from_address?: Maybe; name?: Maybe; property_version?: Maybe; to_address?: Maybe; token_amount?: Maybe; token_data_id_hash?: Maybe; transaction_timestamp?: Maybe; transaction_version?: Maybe; transfer_type?: Maybe; }; /** order by min() on columns of table "token_activities" */ export type Token_Activities_Min_Order_By = { coin_amount?: InputMaybe; coin_type?: InputMaybe; collection_data_id_hash?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; event_account_address?: InputMaybe; event_creation_number?: InputMaybe; event_index?: InputMaybe; event_sequence_number?: InputMaybe; from_address?: InputMaybe; name?: InputMaybe; property_version?: InputMaybe; to_address?: InputMaybe; token_amount?: InputMaybe; token_data_id_hash?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; transfer_type?: InputMaybe; }; /** Ordering options when selecting data from "token_activities". */ export type Token_Activities_Order_By = { endless_names_owner_aggregate?: InputMaybe; endless_names_to_aggregate?: InputMaybe; coin_amount?: InputMaybe; coin_type?: InputMaybe; collection_data_id_hash?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; current_token_data?: InputMaybe; event_account_address?: InputMaybe; event_creation_number?: InputMaybe; event_index?: InputMaybe; event_sequence_number?: InputMaybe; from_address?: InputMaybe; name?: InputMaybe; property_version?: InputMaybe; to_address?: InputMaybe; token_amount?: InputMaybe; token_data_id_hash?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; transfer_type?: InputMaybe; }; /** select columns of table "token_activities" */ export enum Token_Activities_Select_Column { /** column name */ CoinAmount = 'coin_amount', /** column name */ CoinType = 'coin_type', /** column name */ CollectionDataIdHash = 'collection_data_id_hash', /** column name */ CollectionName = 'collection_name', /** column name */ CreatorAddress = 'creator_address', /** column name */ EventAccountAddress = 'event_account_address', /** column name */ EventCreationNumber = 'event_creation_number', /** column name */ EventIndex = 'event_index', /** column name */ EventSequenceNumber = 'event_sequence_number', /** column name */ FromAddress = 'from_address', /** column name */ Name = 'name', /** column name */ PropertyVersion = 'property_version', /** column name */ ToAddress = 'to_address', /** column name */ TokenAmount = 'token_amount', /** column name */ TokenDataIdHash = 'token_data_id_hash', /** column name */ TransactionTimestamp = 'transaction_timestamp', /** column name */ TransactionVersion = 'transaction_version', /** column name */ TransferType = 'transfer_type' } /** aggregate stddev on columns */ export type Token_Activities_Stddev_Fields = { __typename?: 'token_activities_stddev_fields'; coin_amount?: Maybe; event_creation_number?: Maybe; event_index?: Maybe; event_sequence_number?: Maybe; property_version?: Maybe; token_amount?: Maybe; transaction_version?: Maybe; }; /** order by stddev() on columns of table "token_activities" */ export type Token_Activities_Stddev_Order_By = { coin_amount?: InputMaybe; event_creation_number?: InputMaybe; event_index?: InputMaybe; event_sequence_number?: InputMaybe; property_version?: InputMaybe; token_amount?: InputMaybe; transaction_version?: InputMaybe; }; /** aggregate stddev_pop on columns */ export type Token_Activities_Stddev_Pop_Fields = { __typename?: 'token_activities_stddev_pop_fields'; coin_amount?: Maybe; event_creation_number?: Maybe; event_index?: Maybe; event_sequence_number?: Maybe; property_version?: Maybe; token_amount?: Maybe; transaction_version?: Maybe; }; /** order by stddev_pop() on columns of table "token_activities" */ export type Token_Activities_Stddev_Pop_Order_By = { coin_amount?: InputMaybe; event_creation_number?: InputMaybe; event_index?: InputMaybe; event_sequence_number?: InputMaybe; property_version?: InputMaybe; token_amount?: InputMaybe; transaction_version?: InputMaybe; }; /** aggregate stddev_samp on columns */ export type Token_Activities_Stddev_Samp_Fields = { __typename?: 'token_activities_stddev_samp_fields'; coin_amount?: Maybe; event_creation_number?: Maybe; event_index?: Maybe; event_sequence_number?: Maybe; property_version?: Maybe; token_amount?: Maybe; transaction_version?: Maybe; }; /** order by stddev_samp() on columns of table "token_activities" */ export type Token_Activities_Stddev_Samp_Order_By = { coin_amount?: InputMaybe; event_creation_number?: InputMaybe; event_index?: InputMaybe; event_sequence_number?: InputMaybe; property_version?: InputMaybe; token_amount?: InputMaybe; transaction_version?: InputMaybe; }; /** Streaming cursor of the table "token_activities" */ export type Token_Activities_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Token_Activities_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Token_Activities_Stream_Cursor_Value_Input = { coin_amount?: InputMaybe; coin_type?: InputMaybe; collection_data_id_hash?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; event_account_address?: InputMaybe; event_creation_number?: InputMaybe; event_index?: InputMaybe; event_sequence_number?: InputMaybe; from_address?: InputMaybe; name?: InputMaybe; property_version?: InputMaybe; to_address?: InputMaybe; token_amount?: InputMaybe; token_data_id_hash?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; transfer_type?: InputMaybe; }; /** aggregate sum on columns */ export type Token_Activities_Sum_Fields = { __typename?: 'token_activities_sum_fields'; coin_amount?: Maybe; event_creation_number?: Maybe; event_index?: Maybe; event_sequence_number?: Maybe; property_version?: Maybe; token_amount?: Maybe; transaction_version?: Maybe; }; /** order by sum() on columns of table "token_activities" */ export type Token_Activities_Sum_Order_By = { coin_amount?: InputMaybe; event_creation_number?: InputMaybe; event_index?: InputMaybe; event_sequence_number?: InputMaybe; property_version?: InputMaybe; token_amount?: InputMaybe; transaction_version?: InputMaybe; }; /** columns and relationships of "token_activities_v2" */ export type Token_Activities_V2 = { __typename?: 'token_activities_v2'; after_value?: Maybe; /** An array relationship */ endless_names_from: Array; /** An aggregate relationship */ endless_names_from_aggregate: Current_Endless_Names_Aggregate; /** An array relationship */ endless_names_to: Array; /** An aggregate relationship */ endless_names_to_aggregate: Current_Endless_Names_Aggregate; before_value?: Maybe; /** An object relationship */ current_token_data?: Maybe; entry_function_id_str?: Maybe; event_account_address: Scalars['String']['output']; event_index: Scalars['bigint']['output']; from_address?: Maybe; is_fungible_v2?: Maybe; property_version_v1: Scalars['numeric']['output']; to_address?: Maybe; token_amount: Scalars['numeric']['output']; token_data_id: Scalars['String']['output']; token_standard: Scalars['String']['output']; transaction_timestamp: Scalars['timestamp']['output']; transaction_version: Scalars['bigint']['output']; type: Scalars['String']['output']; }; /** columns and relationships of "token_activities_v2" */ export type Token_Activities_V2Endless_Names_FromArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "token_activities_v2" */ export type Token_Activities_V2Endless_Names_From_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "token_activities_v2" */ export type Token_Activities_V2Endless_Names_ToArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "token_activities_v2" */ export type Token_Activities_V2Endless_Names_To_AggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** aggregated selection of "token_activities_v2" */ export type Token_Activities_V2_Aggregate = { __typename?: 'token_activities_v2_aggregate'; aggregate?: Maybe; nodes: Array; }; export type Token_Activities_V2_Aggregate_Bool_Exp = { bool_and?: InputMaybe; bool_or?: InputMaybe; count?: InputMaybe; }; export type Token_Activities_V2_Aggregate_Bool_Exp_Bool_And = { arguments: Token_Activities_V2_Select_Column_Token_Activities_V2_Aggregate_Bool_Exp_Bool_And_Arguments_Columns; distinct?: InputMaybe; filter?: InputMaybe; predicate: Boolean_Comparison_Exp; }; export type Token_Activities_V2_Aggregate_Bool_Exp_Bool_Or = { arguments: Token_Activities_V2_Select_Column_Token_Activities_V2_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns; distinct?: InputMaybe; filter?: InputMaybe; predicate: Boolean_Comparison_Exp; }; export type Token_Activities_V2_Aggregate_Bool_Exp_Count = { arguments?: InputMaybe>; distinct?: InputMaybe; filter?: InputMaybe; predicate: Int_Comparison_Exp; }; /** aggregate fields of "token_activities_v2" */ export type Token_Activities_V2_Aggregate_Fields = { __typename?: 'token_activities_v2_aggregate_fields'; avg?: Maybe; count: Scalars['Int']['output']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "token_activities_v2" */ export type Token_Activities_V2_Aggregate_FieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** order by aggregate values of table "token_activities_v2" */ export type Token_Activities_V2_Aggregate_Order_By = { avg?: InputMaybe; count?: InputMaybe; max?: InputMaybe; min?: InputMaybe; stddev?: InputMaybe; stddev_pop?: InputMaybe; stddev_samp?: InputMaybe; sum?: InputMaybe; var_pop?: InputMaybe; var_samp?: InputMaybe; variance?: InputMaybe; }; /** aggregate avg on columns */ export type Token_Activities_V2_Avg_Fields = { __typename?: 'token_activities_v2_avg_fields'; event_index?: Maybe; property_version_v1?: Maybe; token_amount?: Maybe; transaction_version?: Maybe; }; /** order by avg() on columns of table "token_activities_v2" */ export type Token_Activities_V2_Avg_Order_By = { event_index?: InputMaybe; property_version_v1?: InputMaybe; token_amount?: InputMaybe; transaction_version?: InputMaybe; }; /** Boolean expression to filter rows from the table "token_activities_v2". All fields are combined with a logical 'AND'. */ export type Token_Activities_V2_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; after_value?: InputMaybe; endless_names_from?: InputMaybe; endless_names_from_aggregate?: InputMaybe; endless_names_to?: InputMaybe; endless_names_to_aggregate?: InputMaybe; before_value?: InputMaybe; current_token_data?: InputMaybe; entry_function_id_str?: InputMaybe; event_account_address?: InputMaybe; event_index?: InputMaybe; from_address?: InputMaybe; is_fungible_v2?: InputMaybe; property_version_v1?: InputMaybe; to_address?: InputMaybe; token_amount?: InputMaybe; token_data_id?: InputMaybe; token_standard?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; type?: InputMaybe; }; /** aggregate max on columns */ export type Token_Activities_V2_Max_Fields = { __typename?: 'token_activities_v2_max_fields'; after_value?: Maybe; before_value?: Maybe; entry_function_id_str?: Maybe; event_account_address?: Maybe; event_index?: Maybe; from_address?: Maybe; property_version_v1?: Maybe; to_address?: Maybe; token_amount?: Maybe; token_data_id?: Maybe; token_standard?: Maybe; transaction_timestamp?: Maybe; transaction_version?: Maybe; type?: Maybe; }; /** order by max() on columns of table "token_activities_v2" */ export type Token_Activities_V2_Max_Order_By = { after_value?: InputMaybe; before_value?: InputMaybe; entry_function_id_str?: InputMaybe; event_account_address?: InputMaybe; event_index?: InputMaybe; from_address?: InputMaybe; property_version_v1?: InputMaybe; to_address?: InputMaybe; token_amount?: InputMaybe; token_data_id?: InputMaybe; token_standard?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; type?: InputMaybe; }; /** aggregate min on columns */ export type Token_Activities_V2_Min_Fields = { __typename?: 'token_activities_v2_min_fields'; after_value?: Maybe; before_value?: Maybe; entry_function_id_str?: Maybe; event_account_address?: Maybe; event_index?: Maybe; from_address?: Maybe; property_version_v1?: Maybe; to_address?: Maybe; token_amount?: Maybe; token_data_id?: Maybe; token_standard?: Maybe; transaction_timestamp?: Maybe; transaction_version?: Maybe; type?: Maybe; }; /** order by min() on columns of table "token_activities_v2" */ export type Token_Activities_V2_Min_Order_By = { after_value?: InputMaybe; before_value?: InputMaybe; entry_function_id_str?: InputMaybe; event_account_address?: InputMaybe; event_index?: InputMaybe; from_address?: InputMaybe; property_version_v1?: InputMaybe; to_address?: InputMaybe; token_amount?: InputMaybe; token_data_id?: InputMaybe; token_standard?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; type?: InputMaybe; }; /** Ordering options when selecting data from "token_activities_v2". */ export type Token_Activities_V2_Order_By = { after_value?: InputMaybe; endless_names_from_aggregate?: InputMaybe; endless_names_to_aggregate?: InputMaybe; before_value?: InputMaybe; current_token_data?: InputMaybe; entry_function_id_str?: InputMaybe; event_account_address?: InputMaybe; event_index?: InputMaybe; from_address?: InputMaybe; is_fungible_v2?: InputMaybe; property_version_v1?: InputMaybe; to_address?: InputMaybe; token_amount?: InputMaybe; token_data_id?: InputMaybe; token_standard?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; type?: InputMaybe; }; /** select columns of table "token_activities_v2" */ export enum Token_Activities_V2_Select_Column { /** column name */ AfterValue = 'after_value', /** column name */ BeforeValue = 'before_value', /** column name */ EntryFunctionIdStr = 'entry_function_id_str', /** column name */ EventAccountAddress = 'event_account_address', /** column name */ EventIndex = 'event_index', /** column name */ FromAddress = 'from_address', /** column name */ IsFungibleV2 = 'is_fungible_v2', /** column name */ PropertyVersionV1 = 'property_version_v1', /** column name */ ToAddress = 'to_address', /** column name */ TokenAmount = 'token_amount', /** column name */ TokenDataId = 'token_data_id', /** column name */ TokenStandard = 'token_standard', /** column name */ TransactionTimestamp = 'transaction_timestamp', /** column name */ TransactionVersion = 'transaction_version', /** column name */ Type = 'type' } /** select "token_activities_v2_aggregate_bool_exp_bool_and_arguments_columns" columns of table "token_activities_v2" */ export enum Token_Activities_V2_Select_Column_Token_Activities_V2_Aggregate_Bool_Exp_Bool_And_Arguments_Columns { /** column name */ IsFungibleV2 = 'is_fungible_v2' } /** select "token_activities_v2_aggregate_bool_exp_bool_or_arguments_columns" columns of table "token_activities_v2" */ export enum Token_Activities_V2_Select_Column_Token_Activities_V2_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns { /** column name */ IsFungibleV2 = 'is_fungible_v2' } /** aggregate stddev on columns */ export type Token_Activities_V2_Stddev_Fields = { __typename?: 'token_activities_v2_stddev_fields'; event_index?: Maybe; property_version_v1?: Maybe; token_amount?: Maybe; transaction_version?: Maybe; }; /** order by stddev() on columns of table "token_activities_v2" */ export type Token_Activities_V2_Stddev_Order_By = { event_index?: InputMaybe; property_version_v1?: InputMaybe; token_amount?: InputMaybe; transaction_version?: InputMaybe; }; /** aggregate stddev_pop on columns */ export type Token_Activities_V2_Stddev_Pop_Fields = { __typename?: 'token_activities_v2_stddev_pop_fields'; event_index?: Maybe; property_version_v1?: Maybe; token_amount?: Maybe; transaction_version?: Maybe; }; /** order by stddev_pop() on columns of table "token_activities_v2" */ export type Token_Activities_V2_Stddev_Pop_Order_By = { event_index?: InputMaybe; property_version_v1?: InputMaybe; token_amount?: InputMaybe; transaction_version?: InputMaybe; }; /** aggregate stddev_samp on columns */ export type Token_Activities_V2_Stddev_Samp_Fields = { __typename?: 'token_activities_v2_stddev_samp_fields'; event_index?: Maybe; property_version_v1?: Maybe; token_amount?: Maybe; transaction_version?: Maybe; }; /** order by stddev_samp() on columns of table "token_activities_v2" */ export type Token_Activities_V2_Stddev_Samp_Order_By = { event_index?: InputMaybe; property_version_v1?: InputMaybe; token_amount?: InputMaybe; transaction_version?: InputMaybe; }; /** Streaming cursor of the table "token_activities_v2" */ export type Token_Activities_V2_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Token_Activities_V2_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Token_Activities_V2_Stream_Cursor_Value_Input = { after_value?: InputMaybe; before_value?: InputMaybe; entry_function_id_str?: InputMaybe; event_account_address?: InputMaybe; event_index?: InputMaybe; from_address?: InputMaybe; is_fungible_v2?: InputMaybe; property_version_v1?: InputMaybe; to_address?: InputMaybe; token_amount?: InputMaybe; token_data_id?: InputMaybe; token_standard?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; type?: InputMaybe; }; /** aggregate sum on columns */ export type Token_Activities_V2_Sum_Fields = { __typename?: 'token_activities_v2_sum_fields'; event_index?: Maybe; property_version_v1?: Maybe; token_amount?: Maybe; transaction_version?: Maybe; }; /** order by sum() on columns of table "token_activities_v2" */ export type Token_Activities_V2_Sum_Order_By = { event_index?: InputMaybe; property_version_v1?: InputMaybe; token_amount?: InputMaybe; transaction_version?: InputMaybe; }; /** aggregate var_pop on columns */ export type Token_Activities_V2_Var_Pop_Fields = { __typename?: 'token_activities_v2_var_pop_fields'; event_index?: Maybe; property_version_v1?: Maybe; token_amount?: Maybe; transaction_version?: Maybe; }; /** order by var_pop() on columns of table "token_activities_v2" */ export type Token_Activities_V2_Var_Pop_Order_By = { event_index?: InputMaybe; property_version_v1?: InputMaybe; token_amount?: InputMaybe; transaction_version?: InputMaybe; }; /** aggregate var_samp on columns */ export type Token_Activities_V2_Var_Samp_Fields = { __typename?: 'token_activities_v2_var_samp_fields'; event_index?: Maybe; property_version_v1?: Maybe; token_amount?: Maybe; transaction_version?: Maybe; }; /** order by var_samp() on columns of table "token_activities_v2" */ export type Token_Activities_V2_Var_Samp_Order_By = { event_index?: InputMaybe; property_version_v1?: InputMaybe; token_amount?: InputMaybe; transaction_version?: InputMaybe; }; /** aggregate variance on columns */ export type Token_Activities_V2_Variance_Fields = { __typename?: 'token_activities_v2_variance_fields'; event_index?: Maybe; property_version_v1?: Maybe; token_amount?: Maybe; transaction_version?: Maybe; }; /** order by variance() on columns of table "token_activities_v2" */ export type Token_Activities_V2_Variance_Order_By = { event_index?: InputMaybe; property_version_v1?: InputMaybe; token_amount?: InputMaybe; transaction_version?: InputMaybe; }; /** aggregate var_pop on columns */ export type Token_Activities_Var_Pop_Fields = { __typename?: 'token_activities_var_pop_fields'; coin_amount?: Maybe; event_creation_number?: Maybe; event_index?: Maybe; event_sequence_number?: Maybe; property_version?: Maybe; token_amount?: Maybe; transaction_version?: Maybe; }; /** order by var_pop() on columns of table "token_activities" */ export type Token_Activities_Var_Pop_Order_By = { coin_amount?: InputMaybe; event_creation_number?: InputMaybe; event_index?: InputMaybe; event_sequence_number?: InputMaybe; property_version?: InputMaybe; token_amount?: InputMaybe; transaction_version?: InputMaybe; }; /** aggregate var_samp on columns */ export type Token_Activities_Var_Samp_Fields = { __typename?: 'token_activities_var_samp_fields'; coin_amount?: Maybe; event_creation_number?: Maybe; event_index?: Maybe; event_sequence_number?: Maybe; property_version?: Maybe; token_amount?: Maybe; transaction_version?: Maybe; }; /** order by var_samp() on columns of table "token_activities" */ export type Token_Activities_Var_Samp_Order_By = { coin_amount?: InputMaybe; event_creation_number?: InputMaybe; event_index?: InputMaybe; event_sequence_number?: InputMaybe; property_version?: InputMaybe; token_amount?: InputMaybe; transaction_version?: InputMaybe; }; /** aggregate variance on columns */ export type Token_Activities_Variance_Fields = { __typename?: 'token_activities_variance_fields'; coin_amount?: Maybe; event_creation_number?: Maybe; event_index?: Maybe; event_sequence_number?: Maybe; property_version?: Maybe; token_amount?: Maybe; transaction_version?: Maybe; }; /** order by variance() on columns of table "token_activities" */ export type Token_Activities_Variance_Order_By = { coin_amount?: InputMaybe; event_creation_number?: InputMaybe; event_index?: InputMaybe; event_sequence_number?: InputMaybe; property_version?: InputMaybe; token_amount?: InputMaybe; transaction_version?: InputMaybe; }; /** columns and relationships of "token_datas" */ export type Token_Datas = { __typename?: 'token_datas'; collection_data_id_hash: Scalars['String']['output']; collection_name: Scalars['String']['output']; creator_address: Scalars['String']['output']; default_properties: Scalars['jsonb']['output']; description: Scalars['String']['output']; description_mutable: Scalars['Boolean']['output']; largest_property_version: Scalars['numeric']['output']; maximum: Scalars['numeric']['output']; maximum_mutable: Scalars['Boolean']['output']; metadata_uri: Scalars['String']['output']; name: Scalars['String']['output']; payee_address: Scalars['String']['output']; properties_mutable: Scalars['Boolean']['output']; royalty_mutable: Scalars['Boolean']['output']; royalty_points_denominator: Scalars['numeric']['output']; royalty_points_numerator: Scalars['numeric']['output']; supply: Scalars['numeric']['output']; token_data_id_hash: Scalars['String']['output']; transaction_timestamp: Scalars['timestamp']['output']; transaction_version: Scalars['bigint']['output']; uri_mutable: Scalars['Boolean']['output']; }; /** columns and relationships of "token_datas" */ export type Token_DatasDefault_PropertiesArgs = { path?: InputMaybe; }; /** Boolean expression to filter rows from the table "token_datas". All fields are combined with a logical 'AND'. */ export type Token_Datas_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; collection_data_id_hash?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; default_properties?: InputMaybe; description?: InputMaybe; description_mutable?: InputMaybe; largest_property_version?: InputMaybe; maximum?: InputMaybe; maximum_mutable?: InputMaybe; metadata_uri?: InputMaybe; name?: InputMaybe; payee_address?: InputMaybe; properties_mutable?: InputMaybe; royalty_mutable?: InputMaybe; royalty_points_denominator?: InputMaybe; royalty_points_numerator?: InputMaybe; supply?: InputMaybe; token_data_id_hash?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; uri_mutable?: InputMaybe; }; /** Ordering options when selecting data from "token_datas". */ export type Token_Datas_Order_By = { collection_data_id_hash?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; default_properties?: InputMaybe; description?: InputMaybe; description_mutable?: InputMaybe; largest_property_version?: InputMaybe; maximum?: InputMaybe; maximum_mutable?: InputMaybe; metadata_uri?: InputMaybe; name?: InputMaybe; payee_address?: InputMaybe; properties_mutable?: InputMaybe; royalty_mutable?: InputMaybe; royalty_points_denominator?: InputMaybe; royalty_points_numerator?: InputMaybe; supply?: InputMaybe; token_data_id_hash?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; uri_mutable?: InputMaybe; }; /** select columns of table "token_datas" */ export enum Token_Datas_Select_Column { /** column name */ CollectionDataIdHash = 'collection_data_id_hash', /** column name */ CollectionName = 'collection_name', /** column name */ CreatorAddress = 'creator_address', /** column name */ DefaultProperties = 'default_properties', /** column name */ Description = 'description', /** column name */ DescriptionMutable = 'description_mutable', /** column name */ LargestPropertyVersion = 'largest_property_version', /** column name */ Maximum = 'maximum', /** column name */ MaximumMutable = 'maximum_mutable', /** column name */ MetadataUri = 'metadata_uri', /** column name */ Name = 'name', /** column name */ PayeeAddress = 'payee_address', /** column name */ PropertiesMutable = 'properties_mutable', /** column name */ RoyaltyMutable = 'royalty_mutable', /** column name */ RoyaltyPointsDenominator = 'royalty_points_denominator', /** column name */ RoyaltyPointsNumerator = 'royalty_points_numerator', /** column name */ Supply = 'supply', /** column name */ TokenDataIdHash = 'token_data_id_hash', /** column name */ TransactionTimestamp = 'transaction_timestamp', /** column name */ TransactionVersion = 'transaction_version', /** column name */ UriMutable = 'uri_mutable' } /** Streaming cursor of the table "token_datas" */ export type Token_Datas_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Token_Datas_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Token_Datas_Stream_Cursor_Value_Input = { collection_data_id_hash?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; default_properties?: InputMaybe; description?: InputMaybe; description_mutable?: InputMaybe; largest_property_version?: InputMaybe; maximum?: InputMaybe; maximum_mutable?: InputMaybe; metadata_uri?: InputMaybe; name?: InputMaybe; payee_address?: InputMaybe; properties_mutable?: InputMaybe; royalty_mutable?: InputMaybe; royalty_points_denominator?: InputMaybe; royalty_points_numerator?: InputMaybe; supply?: InputMaybe; token_data_id_hash?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; uri_mutable?: InputMaybe; }; /** columns and relationships of "token_ownerships" */ export type Token_Ownerships = { __typename?: 'token_ownerships'; amount: Scalars['numeric']['output']; collection_data_id_hash: Scalars['String']['output']; collection_name: Scalars['String']['output']; creator_address: Scalars['String']['output']; name: Scalars['String']['output']; owner_address?: Maybe; property_version: Scalars['numeric']['output']; table_handle: Scalars['String']['output']; table_type?: Maybe; token_data_id_hash: Scalars['String']['output']; transaction_timestamp: Scalars['timestamp']['output']; transaction_version: Scalars['bigint']['output']; }; /** Boolean expression to filter rows from the table "token_ownerships". All fields are combined with a logical 'AND'. */ export type Token_Ownerships_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; amount?: InputMaybe; collection_data_id_hash?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; name?: InputMaybe; owner_address?: InputMaybe; property_version?: InputMaybe; table_handle?: InputMaybe; table_type?: InputMaybe; token_data_id_hash?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; }; /** Ordering options when selecting data from "token_ownerships". */ export type Token_Ownerships_Order_By = { amount?: InputMaybe; collection_data_id_hash?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; name?: InputMaybe; owner_address?: InputMaybe; property_version?: InputMaybe; table_handle?: InputMaybe; table_type?: InputMaybe; token_data_id_hash?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; }; /** select columns of table "token_ownerships" */ export enum Token_Ownerships_Select_Column { /** column name */ Amount = 'amount', /** column name */ CollectionDataIdHash = 'collection_data_id_hash', /** column name */ CollectionName = 'collection_name', /** column name */ CreatorAddress = 'creator_address', /** column name */ Name = 'name', /** column name */ OwnerAddress = 'owner_address', /** column name */ PropertyVersion = 'property_version', /** column name */ TableHandle = 'table_handle', /** column name */ TableType = 'table_type', /** column name */ TokenDataIdHash = 'token_data_id_hash', /** column name */ TransactionTimestamp = 'transaction_timestamp', /** column name */ TransactionVersion = 'transaction_version' } /** Streaming cursor of the table "token_ownerships" */ export type Token_Ownerships_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Token_Ownerships_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Token_Ownerships_Stream_Cursor_Value_Input = { amount?: InputMaybe; collection_data_id_hash?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; name?: InputMaybe; owner_address?: InputMaybe; property_version?: InputMaybe; table_handle?: InputMaybe; table_type?: InputMaybe; token_data_id_hash?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; }; /** columns and relationships of "tokens" */ export type Tokens = { __typename?: 'tokens'; collection_data_id_hash: Scalars['String']['output']; collection_name: Scalars['String']['output']; creator_address: Scalars['String']['output']; name: Scalars['String']['output']; property_version: Scalars['numeric']['output']; token_data_id_hash: Scalars['String']['output']; token_properties: Scalars['jsonb']['output']; transaction_timestamp: Scalars['timestamp']['output']; transaction_version: Scalars['bigint']['output']; }; /** columns and relationships of "tokens" */ export type TokensToken_PropertiesArgs = { path?: InputMaybe; }; /** Boolean expression to filter rows from the table "tokens". All fields are combined with a logical 'AND'. */ export type Tokens_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; collection_data_id_hash?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; name?: InputMaybe; property_version?: InputMaybe; token_data_id_hash?: InputMaybe; token_properties?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; }; /** Ordering options when selecting data from "tokens". */ export type Tokens_Order_By = { collection_data_id_hash?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; name?: InputMaybe; property_version?: InputMaybe; token_data_id_hash?: InputMaybe; token_properties?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; }; /** select columns of table "tokens" */ export enum Tokens_Select_Column { /** column name */ CollectionDataIdHash = 'collection_data_id_hash', /** column name */ CollectionName = 'collection_name', /** column name */ CreatorAddress = 'creator_address', /** column name */ Name = 'name', /** column name */ PropertyVersion = 'property_version', /** column name */ TokenDataIdHash = 'token_data_id_hash', /** column name */ TokenProperties = 'token_properties', /** column name */ TransactionTimestamp = 'transaction_timestamp', /** column name */ TransactionVersion = 'transaction_version' } /** Streaming cursor of the table "tokens" */ export type Tokens_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: Tokens_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type Tokens_Stream_Cursor_Value_Input = { collection_data_id_hash?: InputMaybe; collection_name?: InputMaybe; creator_address?: InputMaybe; name?: InputMaybe; property_version?: InputMaybe; token_data_id_hash?: InputMaybe; token_properties?: InputMaybe; transaction_timestamp?: InputMaybe; transaction_version?: InputMaybe; }; /** columns and relationships of "user_transactions" */ export type User_Transactions = { __typename?: 'user_transactions'; block_height: Scalars['bigint']['output']; entry_function_id_str: Scalars['String']['output']; epoch: Scalars['bigint']['output']; expiration_timestamp_secs: Scalars['timestamp']['output']; gas_unit_price: Scalars['numeric']['output']; max_gas_amount: Scalars['numeric']['output']; parent_signature_type: Scalars['String']['output']; sender: Scalars['String']['output']; sequence_number: Scalars['bigint']['output']; timestamp: Scalars['timestamp']['output']; version: Scalars['bigint']['output']; }; /** Boolean expression to filter rows from the table "user_transactions". All fields are combined with a logical 'AND'. */ export type User_Transactions_Bool_Exp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; block_height?: InputMaybe; entry_function_id_str?: InputMaybe; epoch?: InputMaybe; expiration_timestamp_secs?: InputMaybe; gas_unit_price?: InputMaybe; max_gas_amount?: InputMaybe; parent_signature_type?: InputMaybe; sender?: InputMaybe; sequence_number?: InputMaybe; timestamp?: InputMaybe; version?: InputMaybe; }; /** Ordering options when selecting data from "user_transactions". */ export type User_Transactions_Order_By = { block_height?: InputMaybe; entry_function_id_str?: InputMaybe; epoch?: InputMaybe; expiration_timestamp_secs?: InputMaybe; gas_unit_price?: InputMaybe; max_gas_amount?: InputMaybe; parent_signature_type?: InputMaybe; sender?: InputMaybe; sequence_number?: InputMaybe; timestamp?: InputMaybe; version?: InputMaybe; }; /** select columns of table "user_transactions" */ export enum User_Transactions_Select_Column { /** column name */ BlockHeight = 'block_height', /** column name */ EntryFunctionIdStr = 'entry_function_id_str', /** column name */ Epoch = 'epoch', /** column name */ ExpirationTimestampSecs = 'expiration_timestamp_secs', /** column name */ GasUnitPrice = 'gas_unit_price', /** column name */ MaxGasAmount = 'max_gas_amount', /** column name */ ParentSignatureType = 'parent_signature_type', /** column name */ Sender = 'sender', /** column name */ SequenceNumber = 'sequence_number', /** column name */ Timestamp = 'timestamp', /** column name */ Version = 'version' } /** Streaming cursor of the table "user_transactions" */ export type User_Transactions_Stream_Cursor_Input = { /** Stream column input with initial value */ initial_value: User_Transactions_Stream_Cursor_Value_Input; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type User_Transactions_Stream_Cursor_Value_Input = { block_height?: InputMaybe; entry_function_id_str?: InputMaybe; epoch?: InputMaybe; expiration_timestamp_secs?: InputMaybe; gas_unit_price?: InputMaybe; max_gas_amount?: InputMaybe; parent_signature_type?: InputMaybe; sender?: InputMaybe; sequence_number?: InputMaybe; timestamp?: InputMaybe; version?: InputMaybe; };