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; }; 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; }; BigFloat: { input: any; output: any; }; BigInt: { input: any; output: any; }; Cursor: { input: any; output: any; }; Datetime: { input: any; output: any; }; JSON: { input: any; output: any; }; }; export type BigFloatFilter = { distinctFrom?: InputMaybe; equalTo?: InputMaybe; greaterThan?: InputMaybe; greaterThanOrEqualTo?: InputMaybe; in?: InputMaybe>; isNull?: InputMaybe; lessThan?: InputMaybe; lessThanOrEqualTo?: InputMaybe; notDistinctFrom?: InputMaybe; notEqualTo?: InputMaybe; notIn?: InputMaybe>; }; export type BigIntFilter = { distinctFrom?: InputMaybe; equalTo?: InputMaybe; greaterThan?: InputMaybe; greaterThanOrEqualTo?: InputMaybe; in?: InputMaybe>; isNull?: InputMaybe; lessThan?: InputMaybe; lessThanOrEqualTo?: InputMaybe; notDistinctFrom?: InputMaybe; notEqualTo?: InputMaybe; notIn?: InputMaybe>; }; export type Bond = Node & { __typename?: 'Bond'; allowReserveWithdrawals: Scalars['Boolean']['output']; allowSells: Scalars['Boolean']['output']; alphaBond: Scalars['Boolean']['output']; availableReserve: Scalars['JSON']['output']; batchBlocks: Scalars['String']['output']; bondAlphasByBondDid: BondAlphasConnection; bondBuysByBondDid: BondBuysConnection; bondDid: Scalars['String']['output']; bondSellsByBondDid: BondSellsConnection; bondSwapsByBondDid: BondSwapsConnection; controllerDid: Scalars['String']['output']; creatorDid: Scalars['String']['output']; currentOutcomePaymentReserve: Scalars['JSON']['output']; currentReserve: Scalars['JSON']['output']; currentSupply?: Maybe; description: Scalars['String']['output']; exitFeePercentage: Scalars['String']['output']; feeAddress: Scalars['String']['output']; functionParameters: Scalars['JSON']['output']; functionType: Scalars['String']['output']; maxSupply?: Maybe; name: Scalars['String']['output']; nodeId: Scalars['ID']['output']; oracleDid: Scalars['String']['output']; orderQuantityLimits: Scalars['JSON']['output']; outcomePayment: Scalars['String']['output']; outcomePaymentsByBondDid: OutcomePaymentsConnection; reserveTokens?: Maybe>>; reserveWithdrawalAddress: Scalars['String']['output']; reserveWithdrawalsByBondDid: ReserveWithdrawalsConnection; sanityMarginPercentage: Scalars['String']['output']; sanityRate: Scalars['String']['output']; shareWithdrawalsByBondDid: ShareWithdrawalsConnection; state: Scalars['String']['output']; token: Scalars['String']['output']; txFeePercentage: Scalars['String']['output']; }; export type BondBondAlphasByBondDidArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type BondBondBuysByBondDidArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type BondBondSellsByBondDidArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type BondBondSwapsByBondDidArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type BondOutcomePaymentsByBondDidArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type BondReserveWithdrawalsByBondDidArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type BondShareWithdrawalsByBondDidArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type BondAlpha = Node & { __typename?: 'BondAlpha'; alpha: Scalars['String']['output']; bondByBondDid?: Maybe; bondDid: Scalars['String']['output']; height: Scalars['Int']['output']; id: Scalars['Int']['output']; nodeId: Scalars['ID']['output']; oracleDid: Scalars['String']['output']; timestamp: Scalars['Datetime']['output']; }; export type BondAlphaCondition = { alpha?: InputMaybe; bondDid?: InputMaybe; height?: InputMaybe; id?: InputMaybe; oracleDid?: InputMaybe; timestamp?: InputMaybe; }; export type BondAlphaFilter = { alpha?: InputMaybe; and?: InputMaybe>; bondByBondDid?: InputMaybe; bondDid?: InputMaybe; height?: InputMaybe; id?: InputMaybe; not?: InputMaybe; or?: InputMaybe>; oracleDid?: InputMaybe; timestamp?: InputMaybe; }; export type BondAlphasConnection = { __typename?: 'BondAlphasConnection'; edges: Array; nodes: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type BondAlphasEdge = { __typename?: 'BondAlphasEdge'; cursor?: Maybe; node: BondAlpha; }; export declare enum BondAlphasOrderBy { AlphaAsc = "ALPHA_ASC", AlphaDesc = "ALPHA_DESC", BondDidAsc = "BOND_DID_ASC", BondDidDesc = "BOND_DID_DESC", HeightAsc = "HEIGHT_ASC", HeightDesc = "HEIGHT_DESC", IdAsc = "ID_ASC", IdDesc = "ID_DESC", Natural = "NATURAL", OracleDidAsc = "ORACLE_DID_ASC", OracleDidDesc = "ORACLE_DID_DESC", PrimaryKeyAsc = "PRIMARY_KEY_ASC", PrimaryKeyDesc = "PRIMARY_KEY_DESC", TimestampAsc = "TIMESTAMP_ASC", TimestampDesc = "TIMESTAMP_DESC" } export type BondBuy = Node & { __typename?: 'BondBuy'; accountDid: Scalars['String']['output']; amount: Scalars['JSON']['output']; bondByBondDid?: Maybe; bondDid: Scalars['String']['output']; height: Scalars['Int']['output']; id: Scalars['Int']['output']; maxPrices: Scalars['JSON']['output']; nodeId: Scalars['ID']['output']; timestamp: Scalars['Datetime']['output']; }; export type BondBuyCondition = { accountDid?: InputMaybe; amount?: InputMaybe; bondDid?: InputMaybe; height?: InputMaybe; id?: InputMaybe; maxPrices?: InputMaybe; timestamp?: InputMaybe; }; export type BondBuyFilter = { accountDid?: InputMaybe; amount?: InputMaybe; and?: InputMaybe>; bondByBondDid?: InputMaybe; bondDid?: InputMaybe; height?: InputMaybe; id?: InputMaybe; maxPrices?: InputMaybe; not?: InputMaybe; or?: InputMaybe>; timestamp?: InputMaybe; }; export type BondBuysConnection = { __typename?: 'BondBuysConnection'; edges: Array; nodes: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type BondBuysEdge = { __typename?: 'BondBuysEdge'; cursor?: Maybe; node: BondBuy; }; export declare enum BondBuysOrderBy { AccountDidAsc = "ACCOUNT_DID_ASC", AccountDidDesc = "ACCOUNT_DID_DESC", AmountAsc = "AMOUNT_ASC", AmountDesc = "AMOUNT_DESC", BondDidAsc = "BOND_DID_ASC", BondDidDesc = "BOND_DID_DESC", HeightAsc = "HEIGHT_ASC", HeightDesc = "HEIGHT_DESC", IdAsc = "ID_ASC", IdDesc = "ID_DESC", MaxPricesAsc = "MAX_PRICES_ASC", MaxPricesDesc = "MAX_PRICES_DESC", Natural = "NATURAL", PrimaryKeyAsc = "PRIMARY_KEY_ASC", PrimaryKeyDesc = "PRIMARY_KEY_DESC", TimestampAsc = "TIMESTAMP_ASC", TimestampDesc = "TIMESTAMP_DESC" } export type BondCondition = { allowReserveWithdrawals?: InputMaybe; allowSells?: InputMaybe; alphaBond?: InputMaybe; availableReserve?: InputMaybe; batchBlocks?: InputMaybe; bondDid?: InputMaybe; controllerDid?: InputMaybe; creatorDid?: InputMaybe; currentOutcomePaymentReserve?: InputMaybe; currentReserve?: InputMaybe; currentSupply?: InputMaybe; description?: InputMaybe; exitFeePercentage?: InputMaybe; feeAddress?: InputMaybe; functionParameters?: InputMaybe; functionType?: InputMaybe; maxSupply?: InputMaybe; name?: InputMaybe; oracleDid?: InputMaybe; orderQuantityLimits?: InputMaybe; outcomePayment?: InputMaybe; reserveTokens?: InputMaybe>>; reserveWithdrawalAddress?: InputMaybe; sanityMarginPercentage?: InputMaybe; sanityRate?: InputMaybe; state?: InputMaybe; token?: InputMaybe; txFeePercentage?: InputMaybe; }; export type BondFilter = { allowReserveWithdrawals?: InputMaybe; allowSells?: InputMaybe; alphaBond?: InputMaybe; and?: InputMaybe>; availableReserve?: InputMaybe; batchBlocks?: InputMaybe; bondAlphasByBondDid?: InputMaybe; bondAlphasByBondDidExist?: InputMaybe; bondBuysByBondDid?: InputMaybe; bondBuysByBondDidExist?: InputMaybe; bondDid?: InputMaybe; bondSellsByBondDid?: InputMaybe; bondSellsByBondDidExist?: InputMaybe; bondSwapsByBondDid?: InputMaybe; bondSwapsByBondDidExist?: InputMaybe; controllerDid?: InputMaybe; creatorDid?: InputMaybe; currentOutcomePaymentReserve?: InputMaybe; currentReserve?: InputMaybe; currentSupply?: InputMaybe; description?: InputMaybe; exitFeePercentage?: InputMaybe; feeAddress?: InputMaybe; functionParameters?: InputMaybe; functionType?: InputMaybe; maxSupply?: InputMaybe; name?: InputMaybe; not?: InputMaybe; or?: InputMaybe>; oracleDid?: InputMaybe; orderQuantityLimits?: InputMaybe; outcomePayment?: InputMaybe; outcomePaymentsByBondDid?: InputMaybe; outcomePaymentsByBondDidExist?: InputMaybe; reserveTokens?: InputMaybe; reserveWithdrawalAddress?: InputMaybe; reserveWithdrawalsByBondDid?: InputMaybe; reserveWithdrawalsByBondDidExist?: InputMaybe; sanityMarginPercentage?: InputMaybe; sanityRate?: InputMaybe; shareWithdrawalsByBondDid?: InputMaybe; shareWithdrawalsByBondDidExist?: InputMaybe; state?: InputMaybe; token?: InputMaybe; txFeePercentage?: InputMaybe; }; export type BondSell = Node & { __typename?: 'BondSell'; accountDid: Scalars['String']['output']; amount: Scalars['JSON']['output']; bondByBondDid?: Maybe; bondDid: Scalars['String']['output']; height: Scalars['Int']['output']; id: Scalars['Int']['output']; nodeId: Scalars['ID']['output']; timestamp: Scalars['Datetime']['output']; }; export type BondSellCondition = { accountDid?: InputMaybe; amount?: InputMaybe; bondDid?: InputMaybe; height?: InputMaybe; id?: InputMaybe; timestamp?: InputMaybe; }; export type BondSellFilter = { accountDid?: InputMaybe; amount?: InputMaybe; and?: InputMaybe>; bondByBondDid?: InputMaybe; bondDid?: InputMaybe; height?: InputMaybe; id?: InputMaybe; not?: InputMaybe; or?: InputMaybe>; timestamp?: InputMaybe; }; export type BondSellsConnection = { __typename?: 'BondSellsConnection'; edges: Array; nodes: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type BondSellsEdge = { __typename?: 'BondSellsEdge'; cursor?: Maybe; node: BondSell; }; export declare enum BondSellsOrderBy { AccountDidAsc = "ACCOUNT_DID_ASC", AccountDidDesc = "ACCOUNT_DID_DESC", AmountAsc = "AMOUNT_ASC", AmountDesc = "AMOUNT_DESC", BondDidAsc = "BOND_DID_ASC", BondDidDesc = "BOND_DID_DESC", HeightAsc = "HEIGHT_ASC", HeightDesc = "HEIGHT_DESC", IdAsc = "ID_ASC", IdDesc = "ID_DESC", Natural = "NATURAL", PrimaryKeyAsc = "PRIMARY_KEY_ASC", PrimaryKeyDesc = "PRIMARY_KEY_DESC", TimestampAsc = "TIMESTAMP_ASC", TimestampDesc = "TIMESTAMP_DESC" } export type BondSwap = Node & { __typename?: 'BondSwap'; accountDid: Scalars['String']['output']; amount: Scalars['JSON']['output']; bondByBondDid?: Maybe; bondDid: Scalars['String']['output']; height: Scalars['Int']['output']; id: Scalars['Int']['output']; nodeId: Scalars['ID']['output']; timestamp: Scalars['Datetime']['output']; toToken: Scalars['String']['output']; }; export type BondSwapCondition = { accountDid?: InputMaybe; amount?: InputMaybe; bondDid?: InputMaybe; height?: InputMaybe; id?: InputMaybe; timestamp?: InputMaybe; toToken?: InputMaybe; }; export type BondSwapFilter = { accountDid?: InputMaybe; amount?: InputMaybe; and?: InputMaybe>; bondByBondDid?: InputMaybe; bondDid?: InputMaybe; height?: InputMaybe; id?: InputMaybe; not?: InputMaybe; or?: InputMaybe>; timestamp?: InputMaybe; toToken?: InputMaybe; }; export type BondSwapsConnection = { __typename?: 'BondSwapsConnection'; edges: Array; nodes: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type BondSwapsEdge = { __typename?: 'BondSwapsEdge'; cursor?: Maybe; node: BondSwap; }; export declare enum BondSwapsOrderBy { AccountDidAsc = "ACCOUNT_DID_ASC", AccountDidDesc = "ACCOUNT_DID_DESC", AmountAsc = "AMOUNT_ASC", AmountDesc = "AMOUNT_DESC", BondDidAsc = "BOND_DID_ASC", BondDidDesc = "BOND_DID_DESC", HeightAsc = "HEIGHT_ASC", HeightDesc = "HEIGHT_DESC", IdAsc = "ID_ASC", IdDesc = "ID_DESC", Natural = "NATURAL", PrimaryKeyAsc = "PRIMARY_KEY_ASC", PrimaryKeyDesc = "PRIMARY_KEY_DESC", TimestampAsc = "TIMESTAMP_ASC", TimestampDesc = "TIMESTAMP_DESC", ToTokenAsc = "TO_TOKEN_ASC", ToTokenDesc = "TO_TOKEN_DESC" } export type BondToManyBondAlphaFilter = { every?: InputMaybe; none?: InputMaybe; some?: InputMaybe; }; export type BondToManyBondBuyFilter = { every?: InputMaybe; none?: InputMaybe; some?: InputMaybe; }; export type BondToManyBondSellFilter = { every?: InputMaybe; none?: InputMaybe; some?: InputMaybe; }; export type BondToManyBondSwapFilter = { every?: InputMaybe; none?: InputMaybe; some?: InputMaybe; }; export type BondToManyOutcomePaymentFilter = { every?: InputMaybe; none?: InputMaybe; some?: InputMaybe; }; export type BondToManyReserveWithdrawalFilter = { every?: InputMaybe; none?: InputMaybe; some?: InputMaybe; }; export type BondToManyShareWithdrawalFilter = { every?: InputMaybe; none?: InputMaybe; some?: InputMaybe; }; export type BondsConnection = { __typename?: 'BondsConnection'; edges: Array; nodes: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type BondsEdge = { __typename?: 'BondsEdge'; cursor?: Maybe; node: Bond; }; export declare enum BondsOrderBy { AllowReserveWithdrawalsAsc = "ALLOW_RESERVE_WITHDRAWALS_ASC", AllowReserveWithdrawalsDesc = "ALLOW_RESERVE_WITHDRAWALS_DESC", AllowSellsAsc = "ALLOW_SELLS_ASC", AllowSellsDesc = "ALLOW_SELLS_DESC", AlphaBondAsc = "ALPHA_BOND_ASC", AlphaBondDesc = "ALPHA_BOND_DESC", AvailableReserveAsc = "AVAILABLE_RESERVE_ASC", AvailableReserveDesc = "AVAILABLE_RESERVE_DESC", BatchBlocksAsc = "BATCH_BLOCKS_ASC", BatchBlocksDesc = "BATCH_BLOCKS_DESC", BondDidAsc = "BOND_DID_ASC", BondDidDesc = "BOND_DID_DESC", ControllerDidAsc = "CONTROLLER_DID_ASC", ControllerDidDesc = "CONTROLLER_DID_DESC", CreatorDidAsc = "CREATOR_DID_ASC", CreatorDidDesc = "CREATOR_DID_DESC", CurrentOutcomePaymentReserveAsc = "CURRENT_OUTCOME_PAYMENT_RESERVE_ASC", CurrentOutcomePaymentReserveDesc = "CURRENT_OUTCOME_PAYMENT_RESERVE_DESC", CurrentReserveAsc = "CURRENT_RESERVE_ASC", CurrentReserveDesc = "CURRENT_RESERVE_DESC", CurrentSupplyAsc = "CURRENT_SUPPLY_ASC", CurrentSupplyDesc = "CURRENT_SUPPLY_DESC", DescriptionAsc = "DESCRIPTION_ASC", DescriptionDesc = "DESCRIPTION_DESC", ExitFeePercentageAsc = "EXIT_FEE_PERCENTAGE_ASC", ExitFeePercentageDesc = "EXIT_FEE_PERCENTAGE_DESC", FeeAddressAsc = "FEE_ADDRESS_ASC", FeeAddressDesc = "FEE_ADDRESS_DESC", FunctionParametersAsc = "FUNCTION_PARAMETERS_ASC", FunctionParametersDesc = "FUNCTION_PARAMETERS_DESC", FunctionTypeAsc = "FUNCTION_TYPE_ASC", FunctionTypeDesc = "FUNCTION_TYPE_DESC", MaxSupplyAsc = "MAX_SUPPLY_ASC", MaxSupplyDesc = "MAX_SUPPLY_DESC", NameAsc = "NAME_ASC", NameDesc = "NAME_DESC", Natural = "NATURAL", OracleDidAsc = "ORACLE_DID_ASC", OracleDidDesc = "ORACLE_DID_DESC", OrderQuantityLimitsAsc = "ORDER_QUANTITY_LIMITS_ASC", OrderQuantityLimitsDesc = "ORDER_QUANTITY_LIMITS_DESC", OutcomePaymentAsc = "OUTCOME_PAYMENT_ASC", OutcomePaymentDesc = "OUTCOME_PAYMENT_DESC", PrimaryKeyAsc = "PRIMARY_KEY_ASC", PrimaryKeyDesc = "PRIMARY_KEY_DESC", ReserveTokensAsc = "RESERVE_TOKENS_ASC", ReserveTokensDesc = "RESERVE_TOKENS_DESC", ReserveWithdrawalAddressAsc = "RESERVE_WITHDRAWAL_ADDRESS_ASC", ReserveWithdrawalAddressDesc = "RESERVE_WITHDRAWAL_ADDRESS_DESC", SanityMarginPercentageAsc = "SANITY_MARGIN_PERCENTAGE_ASC", SanityMarginPercentageDesc = "SANITY_MARGIN_PERCENTAGE_DESC", SanityRateAsc = "SANITY_RATE_ASC", SanityRateDesc = "SANITY_RATE_DESC", StateAsc = "STATE_ASC", StateDesc = "STATE_DESC", TokenAsc = "TOKEN_ASC", TokenDesc = "TOKEN_DESC", TxFeePercentageAsc = "TX_FEE_PERCENTAGE_ASC", TxFeePercentageDesc = "TX_FEE_PERCENTAGE_DESC" } export type BooleanFilter = { distinctFrom?: InputMaybe; equalTo?: InputMaybe; greaterThan?: InputMaybe; greaterThanOrEqualTo?: InputMaybe; in?: InputMaybe>; isNull?: InputMaybe; lessThan?: InputMaybe; lessThanOrEqualTo?: InputMaybe; notDistinctFrom?: InputMaybe; notEqualTo?: InputMaybe; notIn?: InputMaybe>; }; export type Chain = Node & { __typename?: 'Chain'; blockHeight: Scalars['Int']['output']; chainId: Scalars['String']['output']; nodeId: Scalars['ID']['output']; }; export type ChainCondition = { blockHeight?: InputMaybe; chainId?: InputMaybe; }; export type ChainFilter = { and?: InputMaybe>; blockHeight?: InputMaybe; chainId?: InputMaybe; not?: InputMaybe; or?: InputMaybe>; }; export type ChainsConnection = { __typename?: 'ChainsConnection'; edges: Array; nodes: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type ChainsEdge = { __typename?: 'ChainsEdge'; cursor?: Maybe; node: Chain; }; export declare enum ChainsOrderBy { BlockHeightAsc = "BLOCK_HEIGHT_ASC", BlockHeightDesc = "BLOCK_HEIGHT_DESC", ChainIdAsc = "CHAIN_ID_ASC", ChainIdDesc = "CHAIN_ID_DESC", Natural = "NATURAL", PrimaryKeyAsc = "PRIMARY_KEY_ASC", PrimaryKeyDesc = "PRIMARY_KEY_DESC" } export type Claim = Node & { __typename?: 'Claim'; agentAddress: Scalars['String']['output']; agentDid: Scalars['String']['output']; claimId: Scalars['String']['output']; collection?: Maybe; collectionId: Scalars['String']['output']; evaluationByClaimId?: Maybe; nodeId: Scalars['ID']['output']; paymentsStatus: Scalars['JSON']['output']; schemaType?: Maybe; submissionDate: Scalars['Datetime']['output']; }; export type ClaimCollection = Node & { __typename?: 'ClaimCollection'; admin: Scalars['String']['output']; approved: Scalars['BigFloat']['output']; claimSchemaTypesLoaded: Scalars['Boolean']['output']; claimsByCollectionId: ClaimsConnection; count: Scalars['BigFloat']['output']; disputed: Scalars['BigFloat']['output']; endDate?: Maybe; entity: Scalars['String']['output']; evaluated: Scalars['BigFloat']['output']; id: Scalars['String']['output']; invalidated: Scalars['BigFloat']['output']; nodeId: Scalars['ID']['output']; payments: Scalars['JSON']['output']; protocol: Scalars['String']['output']; quota: Scalars['BigFloat']['output']; rejected: Scalars['BigFloat']['output']; startDate?: Maybe; state: Scalars['Int']['output']; }; export type ClaimCollectionClaimsByCollectionIdArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type ClaimCollectionCondition = { admin?: InputMaybe; approved?: InputMaybe; count?: InputMaybe; disputed?: InputMaybe; endDate?: InputMaybe; entity?: InputMaybe; evaluated?: InputMaybe; id?: InputMaybe; invalidated?: InputMaybe; payments?: InputMaybe; protocol?: InputMaybe; quota?: InputMaybe; rejected?: InputMaybe; startDate?: InputMaybe; state?: InputMaybe; }; export type ClaimCollectionFilter = { admin?: InputMaybe; and?: InputMaybe>; approved?: InputMaybe; claimsByCollectionId?: InputMaybe; claimsByCollectionIdExist?: InputMaybe; count?: InputMaybe; disputed?: InputMaybe; endDate?: InputMaybe; entity?: InputMaybe; evaluated?: InputMaybe; id?: InputMaybe; invalidated?: InputMaybe; not?: InputMaybe; or?: InputMaybe>; payments?: InputMaybe; protocol?: InputMaybe; quota?: InputMaybe; rejected?: InputMaybe; startDate?: InputMaybe; state?: InputMaybe; }; export type ClaimCollectionToManyClaimFilter = { every?: InputMaybe; none?: InputMaybe; some?: InputMaybe; }; export type ClaimCollectionsConnection = { __typename?: 'ClaimCollectionsConnection'; edges: Array; nodes: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type ClaimCollectionsEdge = { __typename?: 'ClaimCollectionsEdge'; cursor?: Maybe; node: ClaimCollection; }; export declare enum ClaimCollectionsOrderBy { AdminAsc = "ADMIN_ASC", AdminDesc = "ADMIN_DESC", ApprovedAsc = "APPROVED_ASC", ApprovedDesc = "APPROVED_DESC", CountAsc = "COUNT_ASC", CountDesc = "COUNT_DESC", DisputedAsc = "DISPUTED_ASC", DisputedDesc = "DISPUTED_DESC", EndDateAsc = "END_DATE_ASC", EndDateDesc = "END_DATE_DESC", EntityAsc = "ENTITY_ASC", EntityDesc = "ENTITY_DESC", EvaluatedAsc = "EVALUATED_ASC", EvaluatedDesc = "EVALUATED_DESC", IdAsc = "ID_ASC", IdDesc = "ID_DESC", InvalidatedAsc = "INVALIDATED_ASC", InvalidatedDesc = "INVALIDATED_DESC", Natural = "NATURAL", PaymentsAsc = "PAYMENTS_ASC", PaymentsDesc = "PAYMENTS_DESC", PrimaryKeyAsc = "PRIMARY_KEY_ASC", PrimaryKeyDesc = "PRIMARY_KEY_DESC", ProtocolAsc = "PROTOCOL_ASC", ProtocolDesc = "PROTOCOL_DESC", QuotaAsc = "QUOTA_ASC", QuotaDesc = "QUOTA_DESC", RejectedAsc = "REJECTED_ASC", RejectedDesc = "REJECTED_DESC", StartDateAsc = "START_DATE_ASC", StartDateDesc = "START_DATE_DESC", StateAsc = "STATE_ASC", StateDesc = "STATE_DESC" } export type ClaimCondition = { agentAddress?: InputMaybe; agentDid?: InputMaybe; claimId?: InputMaybe; collectionId?: InputMaybe; paymentsStatus?: InputMaybe; schemaType?: InputMaybe; submissionDate?: InputMaybe; }; export type ClaimFilter = { agentAddress?: InputMaybe; agentDid?: InputMaybe; and?: InputMaybe>; claimId?: InputMaybe; collection?: InputMaybe; collectionId?: InputMaybe; evaluationByClaimId?: InputMaybe; evaluationByClaimIdExists?: InputMaybe; not?: InputMaybe; or?: InputMaybe>; paymentsStatus?: InputMaybe; schemaType?: InputMaybe; submissionDate?: InputMaybe; }; export type ClaimsConnection = { __typename?: 'ClaimsConnection'; edges: Array; nodes: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type ClaimsEdge = { __typename?: 'ClaimsEdge'; cursor?: Maybe; node: Claim; }; export declare enum ClaimsOrderBy { AgentAddressAsc = "AGENT_ADDRESS_ASC", AgentAddressDesc = "AGENT_ADDRESS_DESC", AgentDidAsc = "AGENT_DID_ASC", AgentDidDesc = "AGENT_DID_DESC", ClaimIdAsc = "CLAIM_ID_ASC", ClaimIdDesc = "CLAIM_ID_DESC", CollectionIdAsc = "COLLECTION_ID_ASC", CollectionIdDesc = "COLLECTION_ID_DESC", Natural = "NATURAL", PaymentsStatusAsc = "PAYMENTS_STATUS_ASC", PaymentsStatusDesc = "PAYMENTS_STATUS_DESC", PrimaryKeyAsc = "PRIMARY_KEY_ASC", PrimaryKeyDesc = "PRIMARY_KEY_DESC", SchemaTypeAsc = "SCHEMA_TYPE_ASC", SchemaTypeDesc = "SCHEMA_TYPE_DESC", SubmissionDateAsc = "SUBMISSION_DATE_ASC", SubmissionDateDesc = "SUBMISSION_DATE_DESC" } export type DatetimeFilter = { distinctFrom?: InputMaybe; equalTo?: InputMaybe; greaterThan?: InputMaybe; greaterThanOrEqualTo?: InputMaybe; in?: InputMaybe>; isNull?: InputMaybe; lessThan?: InputMaybe; lessThanOrEqualTo?: InputMaybe; notDistinctFrom?: InputMaybe; notEqualTo?: InputMaybe; notIn?: InputMaybe>; }; export type Dispute = Node & { __typename?: 'Dispute'; data: Scalars['JSON']['output']; nodeId: Scalars['ID']['output']; proof: Scalars['String']['output']; subjectId: Scalars['String']['output']; type: Scalars['Int']['output']; }; export type DisputeCondition = { data?: InputMaybe; proof?: InputMaybe; subjectId?: InputMaybe; type?: InputMaybe; }; export type DisputeFilter = { and?: InputMaybe>; data?: InputMaybe; not?: InputMaybe; or?: InputMaybe>; proof?: InputMaybe; subjectId?: InputMaybe; type?: InputMaybe; }; export type DisputesConnection = { __typename?: 'DisputesConnection'; edges: Array; nodes: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type DisputesEdge = { __typename?: 'DisputesEdge'; cursor?: Maybe; node: Dispute; }; export declare enum DisputesOrderBy { DataAsc = "DATA_ASC", DataDesc = "DATA_DESC", Natural = "NATURAL", PrimaryKeyAsc = "PRIMARY_KEY_ASC", PrimaryKeyDesc = "PRIMARY_KEY_DESC", ProofAsc = "PROOF_ASC", ProofDesc = "PROOF_DESC", SubjectIdAsc = "SUBJECT_ID_ASC", SubjectIdDesc = "SUBJECT_ID_DESC", TypeAsc = "TYPE_ASC", TypeDesc = "TYPE_DESC" } export type EntitiesConnection = { __typename?: 'EntitiesConnection'; edges: Array; nodes: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type EntitiesEdge = { __typename?: 'EntitiesEdge'; cursor?: Maybe; node: Entity; }; export declare enum EntitiesOrderBy { AccountsAsc = "ACCOUNTS_ASC", AccountsDesc = "ACCOUNTS_DESC", CredentialsAsc = "CREDENTIALS_ASC", CredentialsDesc = "CREDENTIALS_DESC", EndDateAsc = "END_DATE_ASC", EndDateDesc = "END_DATE_DESC", EntityVerifiedAsc = "ENTITY_VERIFIED_ASC", EntityVerifiedDesc = "ENTITY_VERIFIED_DESC", ExternalIdAsc = "EXTERNAL_ID_ASC", ExternalIdDesc = "EXTERNAL_ID_DESC", IdAsc = "ID_ASC", IdDesc = "ID_DESC", MetadataAsc = "METADATA_ASC", MetadataDesc = "METADATA_DESC", Natural = "NATURAL", OwnerAsc = "OWNER_ASC", OwnerDesc = "OWNER_DESC", PrimaryKeyAsc = "PRIMARY_KEY_ASC", PrimaryKeyDesc = "PRIMARY_KEY_DESC", RelayerNodeAsc = "RELAYER_NODE_ASC", RelayerNodeDesc = "RELAYER_NODE_DESC", StartDateAsc = "START_DATE_ASC", StartDateDesc = "START_DATE_DESC", StatusAsc = "STATUS_ASC", StatusDesc = "STATUS_DESC", TypeAsc = "TYPE_ASC", TypeDesc = "TYPE_DESC" } export type Entity = Node & { __typename?: 'Entity'; accordedRight: Scalars['JSON']['output']; accounts: Scalars['JSON']['output']; alsoKnownAs: Scalars['String']['output']; assertionMethod: Array; authentication: Array; capabilityDelegation: Array; capabilityInvocation: Array; context: Scalars['JSON']['output']; controller: Array; credentials?: Maybe>>; endDate?: Maybe; entityVerified: Scalars['Boolean']['output']; externalId?: Maybe; id: Scalars['String']['output']; iidById?: Maybe; keyAgreement: Array; linkedClaim: Scalars['JSON']['output']; linkedEntity: Scalars['JSON']['output']; linkedResource: Scalars['JSON']['output']; metadata: Scalars['JSON']['output']; nodeId: Scalars['ID']['output']; owner?: Maybe; relayerNode: Scalars['String']['output']; service: Scalars['JSON']['output']; settings: Scalars['JSON']['output']; startDate?: Maybe; status: Scalars['Int']['output']; tokenClassesByClass: TokenClassesConnection; tokensByCollection: TokensConnection; type: Scalars['String']['output']; verificationMethod: Scalars['JSON']['output']; }; export type EntityTokenClassesByClassArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type EntityTokensByCollectionArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type EntityCondition = { accounts?: InputMaybe; credentials?: InputMaybe>>; endDate?: InputMaybe; entityVerified?: InputMaybe; externalId?: InputMaybe; id?: InputMaybe; metadata?: InputMaybe; owner?: InputMaybe; relayerNode?: InputMaybe; startDate?: InputMaybe; status?: InputMaybe; type?: InputMaybe; }; export type EntityFilter = { accounts?: InputMaybe; and?: InputMaybe>; credentials?: InputMaybe; endDate?: InputMaybe; entityVerified?: InputMaybe; externalId?: InputMaybe; id?: InputMaybe; iidById?: InputMaybe; metadata?: InputMaybe; not?: InputMaybe; or?: InputMaybe>; owner?: InputMaybe; relayerNode?: InputMaybe; startDate?: InputMaybe; status?: InputMaybe; tokenClassesByClass?: InputMaybe; tokenClassesByClassExist?: InputMaybe; tokensByCollection?: InputMaybe; tokensByCollectionExist?: InputMaybe; type?: InputMaybe; }; export type EntityToManyTokenClassFilter = { every?: InputMaybe; none?: InputMaybe; some?: InputMaybe; }; export type EntityToManyTokenFilter = { every?: InputMaybe; none?: InputMaybe; some?: InputMaybe; }; export type Evaluation = Node & { __typename?: 'Evaluation'; agentAddress: Scalars['String']['output']; agentDid: Scalars['String']['output']; amount: Scalars['JSON']['output']; claim?: Maybe; claimId: Scalars['String']['output']; collectionId: Scalars['String']['output']; evaluationDate: Scalars['Datetime']['output']; nodeId: Scalars['ID']['output']; oracle: Scalars['String']['output']; reason: Scalars['BigFloat']['output']; status: Scalars['Int']['output']; verificationProof?: Maybe; }; export type EvaluationCondition = { agentAddress?: InputMaybe; agentDid?: InputMaybe; amount?: InputMaybe; claimId?: InputMaybe; collectionId?: InputMaybe; evaluationDate?: InputMaybe; oracle?: InputMaybe; reason?: InputMaybe; status?: InputMaybe; verificationProof?: InputMaybe; }; export type EvaluationFilter = { agentAddress?: InputMaybe; agentDid?: InputMaybe; amount?: InputMaybe; and?: InputMaybe>; claim?: InputMaybe; claimId?: InputMaybe; collectionId?: InputMaybe; evaluationDate?: InputMaybe; not?: InputMaybe; or?: InputMaybe>; oracle?: InputMaybe; reason?: InputMaybe; status?: InputMaybe; verificationProof?: InputMaybe; }; export type EvaluationsConnection = { __typename?: 'EvaluationsConnection'; edges: Array; nodes: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type EvaluationsEdge = { __typename?: 'EvaluationsEdge'; cursor?: Maybe; node: Evaluation; }; export declare enum EvaluationsOrderBy { AgentAddressAsc = "AGENT_ADDRESS_ASC", AgentAddressDesc = "AGENT_ADDRESS_DESC", AgentDidAsc = "AGENT_DID_ASC", AgentDidDesc = "AGENT_DID_DESC", AmountAsc = "AMOUNT_ASC", AmountDesc = "AMOUNT_DESC", ClaimIdAsc = "CLAIM_ID_ASC", ClaimIdDesc = "CLAIM_ID_DESC", CollectionIdAsc = "COLLECTION_ID_ASC", CollectionIdDesc = "COLLECTION_ID_DESC", EvaluationDateAsc = "EVALUATION_DATE_ASC", EvaluationDateDesc = "EVALUATION_DATE_DESC", Natural = "NATURAL", OracleAsc = "ORACLE_ASC", OracleDesc = "ORACLE_DESC", PrimaryKeyAsc = "PRIMARY_KEY_ASC", PrimaryKeyDesc = "PRIMARY_KEY_DESC", ReasonAsc = "REASON_ASC", ReasonDesc = "REASON_DESC", StatusAsc = "STATUS_ASC", StatusDesc = "STATUS_DESC", VerificationProofAsc = "VERIFICATION_PROOF_ASC", VerificationProofDesc = "VERIFICATION_PROOF_DESC" } export type HavingBigintFilter = { equalTo?: InputMaybe; greaterThan?: InputMaybe; greaterThanOrEqualTo?: InputMaybe; lessThan?: InputMaybe; lessThanOrEqualTo?: InputMaybe; notEqualTo?: InputMaybe; }; export type HavingIntFilter = { equalTo?: InputMaybe; greaterThan?: InputMaybe; greaterThanOrEqualTo?: InputMaybe; lessThan?: InputMaybe; lessThanOrEqualTo?: InputMaybe; notEqualTo?: InputMaybe; }; export type Iid = Node & { __typename?: 'Iid'; accordedRight: Scalars['JSON']['output']; alsoKnownAs: Scalars['String']['output']; assertionMethod?: Maybe>>; authentication?: Maybe>>; capabilityDelegation?: Maybe>>; capabilityInvocation?: Maybe>>; context: Scalars['JSON']['output']; controller?: Maybe>>; entityById?: Maybe; id: Scalars['String']['output']; keyAgreement?: Maybe>>; linkedClaim: Scalars['JSON']['output']; linkedEntity: Scalars['JSON']['output']; linkedResource: Scalars['JSON']['output']; metadata: Scalars['JSON']['output']; nodeId: Scalars['ID']['output']; service: Scalars['JSON']['output']; verificationMethod: Scalars['JSON']['output']; }; export type IidCondition = { accordedRight?: InputMaybe; alsoKnownAs?: InputMaybe; assertionMethod?: InputMaybe>>; authentication?: InputMaybe>>; capabilityDelegation?: InputMaybe>>; capabilityInvocation?: InputMaybe>>; context?: InputMaybe; controller?: InputMaybe>>; id?: InputMaybe; keyAgreement?: InputMaybe>>; linkedClaim?: InputMaybe; linkedEntity?: InputMaybe; linkedResource?: InputMaybe; metadata?: InputMaybe; service?: InputMaybe; verificationMethod?: InputMaybe; }; export type IidFilter = { accordedRight?: InputMaybe; alsoKnownAs?: InputMaybe; and?: InputMaybe>; assertionMethod?: InputMaybe; authentication?: InputMaybe; capabilityDelegation?: InputMaybe; capabilityInvocation?: InputMaybe; context?: InputMaybe; controller?: InputMaybe; entityById?: InputMaybe; entityByIdExists?: InputMaybe; id?: InputMaybe; keyAgreement?: InputMaybe; linkedClaim?: InputMaybe; linkedEntity?: InputMaybe; linkedResource?: InputMaybe; metadata?: InputMaybe; not?: InputMaybe; or?: InputMaybe>; service?: InputMaybe; verificationMethod?: InputMaybe; }; export type IidsConnection = { __typename?: 'IidsConnection'; edges: Array; nodes: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type IidsEdge = { __typename?: 'IidsEdge'; cursor?: Maybe; node: Iid; }; export declare enum IidsOrderBy { AccordedRightAsc = "ACCORDED_RIGHT_ASC", AccordedRightDesc = "ACCORDED_RIGHT_DESC", AlsoKnownAsAsc = "ALSO_KNOWN_AS_ASC", AlsoKnownAsDesc = "ALSO_KNOWN_AS_DESC", AssertionMethodAsc = "ASSERTION_METHOD_ASC", AssertionMethodDesc = "ASSERTION_METHOD_DESC", AuthenticationAsc = "AUTHENTICATION_ASC", AuthenticationDesc = "AUTHENTICATION_DESC", CapabilityDelegationAsc = "CAPABILITY_DELEGATION_ASC", CapabilityDelegationDesc = "CAPABILITY_DELEGATION_DESC", CapabilityInvocationAsc = "CAPABILITY_INVOCATION_ASC", CapabilityInvocationDesc = "CAPABILITY_INVOCATION_DESC", ContextAsc = "CONTEXT_ASC", ContextDesc = "CONTEXT_DESC", ControllerAsc = "CONTROLLER_ASC", ControllerDesc = "CONTROLLER_DESC", IdAsc = "ID_ASC", IdDesc = "ID_DESC", KeyAgreementAsc = "KEY_AGREEMENT_ASC", KeyAgreementDesc = "KEY_AGREEMENT_DESC", LinkedClaimAsc = "LINKED_CLAIM_ASC", LinkedClaimDesc = "LINKED_CLAIM_DESC", LinkedEntityAsc = "LINKED_ENTITY_ASC", LinkedEntityDesc = "LINKED_ENTITY_DESC", LinkedResourceAsc = "LINKED_RESOURCE_ASC", LinkedResourceDesc = "LINKED_RESOURCE_DESC", MetadataAsc = "METADATA_ASC", MetadataDesc = "METADATA_DESC", Natural = "NATURAL", PrimaryKeyAsc = "PRIMARY_KEY_ASC", PrimaryKeyDesc = "PRIMARY_KEY_DESC", ServiceAsc = "SERVICE_ASC", ServiceDesc = "SERVICE_DESC", VerificationMethodAsc = "VERIFICATION_METHOD_ASC", VerificationMethodDesc = "VERIFICATION_METHOD_DESC" } export type IntFilter = { distinctFrom?: InputMaybe; equalTo?: InputMaybe; greaterThan?: InputMaybe; greaterThanOrEqualTo?: InputMaybe; in?: InputMaybe>; isNull?: InputMaybe; lessThan?: InputMaybe; lessThanOrEqualTo?: InputMaybe; notDistinctFrom?: InputMaybe; notEqualTo?: InputMaybe; notIn?: InputMaybe>; }; export type Ipf = Node & { __typename?: 'Ipf'; cid: Scalars['String']['output']; contentType: Scalars['String']['output']; data: Scalars['String']['output']; nodeId: Scalars['ID']['output']; }; export type IpfCondition = { cid?: InputMaybe; contentType?: InputMaybe; data?: InputMaybe; }; export type IpfFilter = { and?: InputMaybe>; cid?: InputMaybe; contentType?: InputMaybe; data?: InputMaybe; not?: InputMaybe; or?: InputMaybe>; }; export type IpfsConnection = { __typename?: 'IpfsConnection'; edges: Array; nodes: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type IpfsEdge = { __typename?: 'IpfsEdge'; cursor?: Maybe; node: Ipf; }; export declare enum IpfsOrderBy { CidAsc = "CID_ASC", CidDesc = "CID_DESC", ContentTypeAsc = "CONTENT_TYPE_ASC", ContentTypeDesc = "CONTENT_TYPE_DESC", DataAsc = "DATA_ASC", DataDesc = "DATA_DESC", Natural = "NATURAL", PrimaryKeyAsc = "PRIMARY_KEY_ASC", PrimaryKeyDesc = "PRIMARY_KEY_DESC" } export type IxoSwap = Node & { __typename?: 'IxoSwap'; address: Scalars['String']['output']; frozen: Scalars['Boolean']['output']; ixoSwapPriceHistoriesByAddress: IxoSwapPriceHistoriesConnection; lpAddress: Scalars['String']['output']; lpFeePercent: Scalars['String']['output']; maxSlippagePercent: Scalars['String']['output']; nodeId: Scalars['ID']['output']; owner: Scalars['String']['output']; pendingOwner?: Maybe; protocolFeePercent: Scalars['String']['output']; protocolFeeRecipient: Scalars['String']['output']; token2Denom: Scalars['String']['output']; token2Reserve: Scalars['BigInt']['output']; token1155Denom: Scalars['String']['output']; token1155Reserve: Scalars['BigInt']['output']; }; export type IxoSwapIxoSwapPriceHistoriesByAddressArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type IxoSwapCondition = { address?: InputMaybe; frozen?: InputMaybe; lpAddress?: InputMaybe; lpFeePercent?: InputMaybe; maxSlippagePercent?: InputMaybe; owner?: InputMaybe; pendingOwner?: InputMaybe; protocolFeePercent?: InputMaybe; protocolFeeRecipient?: InputMaybe; token2Denom?: InputMaybe; token2Reserve?: InputMaybe; token1155Denom?: InputMaybe; token1155Reserve?: InputMaybe; }; export type IxoSwapFilter = { address?: InputMaybe; and?: InputMaybe>; frozen?: InputMaybe; ixoSwapPriceHistoriesByAddress?: InputMaybe; ixoSwapPriceHistoriesByAddressExist?: InputMaybe; lpAddress?: InputMaybe; lpFeePercent?: InputMaybe; maxSlippagePercent?: InputMaybe; not?: InputMaybe; or?: InputMaybe>; owner?: InputMaybe; pendingOwner?: InputMaybe; protocolFeePercent?: InputMaybe; protocolFeeRecipient?: InputMaybe; token2Denom?: InputMaybe; token2Reserve?: InputMaybe; token1155Denom?: InputMaybe; token1155Reserve?: InputMaybe; }; export type IxoSwapPriceHistoriesConnection = { __typename?: 'IxoSwapPriceHistoriesConnection'; edges: Array; nodes: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type IxoSwapPriceHistoriesEdge = { __typename?: 'IxoSwapPriceHistoriesEdge'; cursor?: Maybe; node: IxoSwapPriceHistory; }; export declare enum IxoSwapPriceHistoriesOrderBy { AddressAsc = "ADDRESS_ASC", AddressDesc = "ADDRESS_DESC", IdAsc = "ID_ASC", IdDesc = "ID_DESC", Natural = "NATURAL", PrimaryKeyAsc = "PRIMARY_KEY_ASC", PrimaryKeyDesc = "PRIMARY_KEY_DESC", TimestampAsc = "TIMESTAMP_ASC", TimestampDesc = "TIMESTAMP_DESC", Token_2PriceAsc = "TOKEN_2_PRICE_ASC", Token_2PriceDesc = "TOKEN_2_PRICE_DESC", Token_2VolumeAsc = "TOKEN_2_VOLUME_ASC", Token_2VolumeDesc = "TOKEN_2_VOLUME_DESC", Token_1155PriceAsc = "TOKEN_1155_PRICE_ASC", Token_1155PriceDesc = "TOKEN_1155_PRICE_DESC", Token_1155VolumeAsc = "TOKEN_1155_VOLUME_ASC", Token_1155VolumeDesc = "TOKEN_1155_VOLUME_DESC" } export type IxoSwapPriceHistory = Node & { __typename?: 'IxoSwapPriceHistory'; address: Scalars['String']['output']; id: Scalars['Int']['output']; ixoSwapByAddress?: Maybe; nodeId: Scalars['ID']['output']; timestamp: Scalars['Datetime']['output']; token2Price: Scalars['BigFloat']['output']; token2Volume: Scalars['BigFloat']['output']; token1155Price: Scalars['BigFloat']['output']; token1155Volume: Scalars['BigFloat']['output']; }; export type IxoSwapPriceHistoryCondition = { address?: InputMaybe; id?: InputMaybe; timestamp?: InputMaybe; token2Price?: InputMaybe; token2Volume?: InputMaybe; token1155Price?: InputMaybe; token1155Volume?: InputMaybe; }; export type IxoSwapPriceHistoryFilter = { address?: InputMaybe; and?: InputMaybe>; id?: InputMaybe; ixoSwapByAddress?: InputMaybe; not?: InputMaybe; or?: InputMaybe>; timestamp?: InputMaybe; token2Price?: InputMaybe; token2Volume?: InputMaybe; token1155Price?: InputMaybe; token1155Volume?: InputMaybe; }; export type IxoSwapToManyIxoSwapPriceHistoryFilter = { every?: InputMaybe; none?: InputMaybe; some?: InputMaybe; }; export type IxoSwapsConnection = { __typename?: 'IxoSwapsConnection'; edges: Array; nodes: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type IxoSwapsEdge = { __typename?: 'IxoSwapsEdge'; cursor?: Maybe; node: IxoSwap; }; export declare enum IxoSwapsOrderBy { AddressAsc = "ADDRESS_ASC", AddressDesc = "ADDRESS_DESC", FrozenAsc = "FROZEN_ASC", FrozenDesc = "FROZEN_DESC", LpAddressAsc = "LP_ADDRESS_ASC", LpAddressDesc = "LP_ADDRESS_DESC", LpFeePercentAsc = "LP_FEE_PERCENT_ASC", LpFeePercentDesc = "LP_FEE_PERCENT_DESC", MaxSlippagePercentAsc = "MAX_SLIPPAGE_PERCENT_ASC", MaxSlippagePercentDesc = "MAX_SLIPPAGE_PERCENT_DESC", Natural = "NATURAL", OwnerAsc = "OWNER_ASC", OwnerDesc = "OWNER_DESC", PendingOwnerAsc = "PENDING_OWNER_ASC", PendingOwnerDesc = "PENDING_OWNER_DESC", PrimaryKeyAsc = "PRIMARY_KEY_ASC", PrimaryKeyDesc = "PRIMARY_KEY_DESC", ProtocolFeePercentAsc = "PROTOCOL_FEE_PERCENT_ASC", ProtocolFeePercentDesc = "PROTOCOL_FEE_PERCENT_DESC", ProtocolFeeRecipientAsc = "PROTOCOL_FEE_RECIPIENT_ASC", ProtocolFeeRecipientDesc = "PROTOCOL_FEE_RECIPIENT_DESC", Token_2DenomAsc = "TOKEN_2_DENOM_ASC", Token_2DenomDesc = "TOKEN_2_DENOM_DESC", Token_2ReserveAsc = "TOKEN_2_RESERVE_ASC", Token_2ReserveDesc = "TOKEN_2_RESERVE_DESC", Token_1155DenomAsc = "TOKEN_1155_DENOM_ASC", Token_1155DenomDesc = "TOKEN_1155_DENOM_DESC", Token_1155ReserveAsc = "TOKEN_1155_RESERVE_ASC", Token_1155ReserveDesc = "TOKEN_1155_RESERVE_DESC" } export type JsonFilter = { containedBy?: InputMaybe; contains?: InputMaybe; containsAllKeys?: InputMaybe>; containsAnyKeys?: InputMaybe>; containsKey?: InputMaybe; distinctFrom?: InputMaybe; equalTo?: InputMaybe; greaterThan?: InputMaybe; greaterThanOrEqualTo?: InputMaybe; in?: InputMaybe>; isNull?: InputMaybe; lessThan?: InputMaybe; lessThanOrEqualTo?: InputMaybe; notDistinctFrom?: InputMaybe; notEqualTo?: InputMaybe; notIn?: InputMaybe>; }; export type Message = Node & { __typename?: 'Message'; denoms?: Maybe>>; from?: Maybe; id: Scalars['Int']['output']; nodeId: Scalars['ID']['output']; to?: Maybe; tokenNames?: Maybe>>; transactionByTransactionHash?: Maybe; transactionHash: Scalars['String']['output']; typeUrl: Scalars['String']['output']; value: Scalars['JSON']['output']; }; export type MessageCondition = { denoms?: InputMaybe>>; from?: InputMaybe; id?: InputMaybe; to?: InputMaybe; tokenNames?: InputMaybe>>; transactionHash?: InputMaybe; typeUrl?: InputMaybe; value?: InputMaybe; }; export type MessageFilter = { and?: InputMaybe>; denoms?: InputMaybe; from?: InputMaybe; id?: InputMaybe; not?: InputMaybe; or?: InputMaybe>; to?: InputMaybe; tokenNames?: InputMaybe; transactionByTransactionHash?: InputMaybe; transactionHash?: InputMaybe; typeUrl?: InputMaybe; value?: InputMaybe; }; export type MessagesConnection = { __typename?: 'MessagesConnection'; edges: Array; nodes: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type MessagesEdge = { __typename?: 'MessagesEdge'; cursor?: Maybe; node: Message; }; export declare enum MessagesOrderBy { DenomsAsc = "DENOMS_ASC", DenomsDesc = "DENOMS_DESC", FromAsc = "FROM_ASC", FromDesc = "FROM_DESC", IdAsc = "ID_ASC", IdDesc = "ID_DESC", Natural = "NATURAL", PrimaryKeyAsc = "PRIMARY_KEY_ASC", PrimaryKeyDesc = "PRIMARY_KEY_DESC", TokenNamesAsc = "TOKEN_NAMES_ASC", TokenNamesDesc = "TOKEN_NAMES_DESC", ToAsc = "TO_ASC", ToDesc = "TO_DESC", TransactionHashAsc = "TRANSACTION_HASH_ASC", TransactionHashDesc = "TRANSACTION_HASH_DESC", TypeUrlAsc = "TYPE_URL_ASC", TypeUrlDesc = "TYPE_URL_DESC", ValueAsc = "VALUE_ASC", ValueDesc = "VALUE_DESC" } export type Node = { nodeId: Scalars['ID']['output']; }; export type OutcomePayment = Node & { __typename?: 'OutcomePayment'; amount: Scalars['JSON']['output']; bondByBondDid?: Maybe; bondDid: Scalars['String']['output']; height: Scalars['Int']['output']; id: Scalars['Int']['output']; nodeId: Scalars['ID']['output']; senderAddress: Scalars['String']['output']; senderDid: Scalars['String']['output']; timestamp: Scalars['Datetime']['output']; }; export type OutcomePaymentCondition = { amount?: InputMaybe; bondDid?: InputMaybe; height?: InputMaybe; id?: InputMaybe; senderAddress?: InputMaybe; senderDid?: InputMaybe; timestamp?: InputMaybe; }; export type OutcomePaymentFilter = { amount?: InputMaybe; and?: InputMaybe>; bondByBondDid?: InputMaybe; bondDid?: InputMaybe; height?: InputMaybe; id?: InputMaybe; not?: InputMaybe; or?: InputMaybe>; senderAddress?: InputMaybe; senderDid?: InputMaybe; timestamp?: InputMaybe; }; export type OutcomePaymentsConnection = { __typename?: 'OutcomePaymentsConnection'; edges: Array; nodes: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type OutcomePaymentsEdge = { __typename?: 'OutcomePaymentsEdge'; cursor?: Maybe; node: OutcomePayment; }; export declare enum OutcomePaymentsOrderBy { AmountAsc = "AMOUNT_ASC", AmountDesc = "AMOUNT_DESC", BondDidAsc = "BOND_DID_ASC", BondDidDesc = "BOND_DID_DESC", HeightAsc = "HEIGHT_ASC", HeightDesc = "HEIGHT_DESC", IdAsc = "ID_ASC", IdDesc = "ID_DESC", Natural = "NATURAL", PrimaryKeyAsc = "PRIMARY_KEY_ASC", PrimaryKeyDesc = "PRIMARY_KEY_DESC", SenderAddressAsc = "SENDER_ADDRESS_ASC", SenderAddressDesc = "SENDER_ADDRESS_DESC", SenderDidAsc = "SENDER_DID_ASC", SenderDidDesc = "SENDER_DID_DESC", TimestampAsc = "TIMESTAMP_ASC", TimestampDesc = "TIMESTAMP_DESC" } export type PageInfo = { __typename?: 'PageInfo'; endCursor?: Maybe; hasNextPage: Scalars['Boolean']['output']; hasPreviousPage: Scalars['Boolean']['output']; startCursor?: Maybe; }; export type Pgmigration = Node & { __typename?: 'Pgmigration'; id: Scalars['Int']['output']; name: Scalars['String']['output']; nodeId: Scalars['ID']['output']; runOn: Scalars['Datetime']['output']; }; export type PgmigrationCondition = { id?: InputMaybe; name?: InputMaybe; runOn?: InputMaybe; }; export type PgmigrationFilter = { and?: InputMaybe>; id?: InputMaybe; name?: InputMaybe; not?: InputMaybe; or?: InputMaybe>; runOn?: InputMaybe; }; export type PgmigrationsConnection = { __typename?: 'PgmigrationsConnection'; edges: Array; nodes: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type PgmigrationsEdge = { __typename?: 'PgmigrationsEdge'; cursor?: Maybe; node: Pgmigration; }; export declare enum PgmigrationsOrderBy { IdAsc = "ID_ASC", IdDesc = "ID_DESC", NameAsc = "NAME_ASC", NameDesc = "NAME_DESC", Natural = "NATURAL", PrimaryKeyAsc = "PRIMARY_KEY_ASC", PrimaryKeyDesc = "PRIMARY_KEY_DESC", RunOnAsc = "RUN_ON_ASC", RunOnDesc = "RUN_ON_DESC" } export type Query = Node & { __typename?: 'Query'; bond?: Maybe; bondAlpha?: Maybe; bondAlphaByNodeId?: Maybe; bondAlphas?: Maybe; bondBuy?: Maybe; bondBuyByNodeId?: Maybe; bondBuys?: Maybe; bondByNodeId?: Maybe; bondSell?: Maybe; bondSellByNodeId?: Maybe; bondSells?: Maybe; bondSwap?: Maybe; bondSwapByNodeId?: Maybe; bondSwaps?: Maybe; bonds?: Maybe; chain?: Maybe; chainByNodeId?: Maybe; chains?: Maybe; claim?: Maybe; claimByNodeId?: Maybe; claimCollection?: Maybe; claimCollectionByNodeId?: Maybe; claimCollections?: Maybe; claims?: Maybe; deviceExternalIdsLoaded: Scalars['Boolean']['output']; dispute?: Maybe; disputeByNodeId?: Maybe; disputes?: Maybe; entities?: Maybe; entity?: Maybe; entityByNodeId?: Maybe; evaluation?: Maybe; evaluationByNodeId?: Maybe; evaluations?: Maybe; getAccountTokens: Scalars['JSON']['output']; getTokensTotalByAddress: Scalars['JSON']['output']; getTokensTotalForCollection: Scalars['JSON']['output']; getTokensTotalForCollectionAmounts: Scalars['JSON']['output']; getTokensTotalForEntities: Scalars['JSON']['output']; iid?: Maybe; iidByNodeId?: Maybe; iids?: Maybe; ipf?: Maybe; ipfByNodeId?: Maybe; ipfs?: Maybe; ixoSwap?: Maybe; ixoSwapByNodeId?: Maybe; ixoSwapPriceHistories?: Maybe; ixoSwapPriceHistory?: Maybe; ixoSwapPriceHistoryByNodeId?: Maybe; ixoSwapPriceHistoryByTimestampAndAddress?: Maybe; ixoSwaps?: Maybe; message?: Maybe; messageByNodeId?: Maybe; messages?: Maybe; node?: Maybe; nodeId: Scalars['ID']['output']; outcomePayment?: Maybe; outcomePaymentByNodeId?: Maybe; outcomePayments?: Maybe; pgmigration?: Maybe; pgmigrationByNodeId?: Maybe; pgmigrations?: Maybe; query: Query; reserveWithdrawal?: Maybe; reserveWithdrawalByNodeId?: Maybe; reserveWithdrawals?: Maybe; shareWithdrawal?: Maybe; shareWithdrawalByNodeId?: Maybe; shareWithdrawals?: Maybe; smartAccountAuthenticator?: Maybe; smartAccountAuthenticatorByNodeId?: Maybe; smartAccountAuthenticators?: Maybe; token?: Maybe; tokenByNodeId?: Maybe; tokenCancelled?: Maybe; tokenCancelledByNodeId?: Maybe; tokenCancelleds?: Maybe; tokenClass?: Maybe; tokenClassByNodeId?: Maybe; tokenClasses?: Maybe; tokenData?: Maybe; tokenDatum?: Maybe; tokenDatumByNodeId?: Maybe; tokenRetired?: Maybe; tokenRetiredByNodeId?: Maybe; tokenRetireds?: Maybe; tokenTransaction?: Maybe; tokenTransactionByNodeId?: Maybe; tokenTransactions?: Maybe; tokenomicsAccount?: Maybe; tokenomicsAccountByNodeId?: Maybe; tokenomicsAccounts?: Maybe; tokenomicsInflation: Scalars['JSON']['output']; tokenomicsSupplyCommunityPool: Scalars['JSON']['output']; tokenomicsSupplyIBC: Scalars['JSON']['output']; tokenomicsSupplyStaked: Scalars['JSON']['output']; tokenomicsSupplyTotal: Scalars['JSON']['output']; tokens?: Maybe; transaction?: Maybe; transactionByNodeId?: Maybe; transactions?: Maybe; }; export type QueryBondArgs = { bondDid: Scalars['String']['input']; }; export type QueryBondAlphaArgs = { id: Scalars['Int']['input']; }; export type QueryBondAlphaByNodeIdArgs = { nodeId: Scalars['ID']['input']; }; export type QueryBondAlphasArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type QueryBondBuyArgs = { id: Scalars['Int']['input']; }; export type QueryBondBuyByNodeIdArgs = { nodeId: Scalars['ID']['input']; }; export type QueryBondBuysArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type QueryBondByNodeIdArgs = { nodeId: Scalars['ID']['input']; }; export type QueryBondSellArgs = { id: Scalars['Int']['input']; }; export type QueryBondSellByNodeIdArgs = { nodeId: Scalars['ID']['input']; }; export type QueryBondSellsArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type QueryBondSwapArgs = { id: Scalars['Int']['input']; }; export type QueryBondSwapByNodeIdArgs = { nodeId: Scalars['ID']['input']; }; export type QueryBondSwapsArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type QueryBondsArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type QueryChainArgs = { chainId: Scalars['String']['input']; }; export type QueryChainByNodeIdArgs = { nodeId: Scalars['ID']['input']; }; export type QueryChainsArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type QueryClaimArgs = { claimId: Scalars['String']['input']; }; export type QueryClaimByNodeIdArgs = { nodeId: Scalars['ID']['input']; }; export type QueryClaimCollectionArgs = { id: Scalars['String']['input']; }; export type QueryClaimCollectionByNodeIdArgs = { nodeId: Scalars['ID']['input']; }; export type QueryClaimCollectionsArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type QueryClaimsArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type QueryDisputeArgs = { proof: Scalars['String']['input']; }; export type QueryDisputeByNodeIdArgs = { nodeId: Scalars['ID']['input']; }; export type QueryDisputesArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type QueryEntitiesArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type QueryEntityArgs = { id: Scalars['String']['input']; }; export type QueryEntityByNodeIdArgs = { nodeId: Scalars['ID']['input']; }; export type QueryEvaluationArgs = { claimId: Scalars['String']['input']; }; export type QueryEvaluationByNodeIdArgs = { nodeId: Scalars['ID']['input']; }; export type QueryEvaluationsArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type QueryGetAccountTokensArgs = { address: Scalars['String']['input']; allEntityRetired?: InputMaybe; name?: InputMaybe; }; export type QueryGetTokensTotalByAddressArgs = { address: Scalars['String']['input']; allEntityRetired?: InputMaybe; name?: InputMaybe; }; export type QueryGetTokensTotalForCollectionArgs = { allEntityRetired?: InputMaybe; did: Scalars['String']['input']; name?: InputMaybe; }; export type QueryGetTokensTotalForCollectionAmountsArgs = { allEntityRetired?: InputMaybe; did: Scalars['String']['input']; name?: InputMaybe; }; export type QueryGetTokensTotalForEntitiesArgs = { address: Scalars['String']['input']; allEntityRetired?: InputMaybe; name?: InputMaybe; }; export type QueryIidArgs = { id: Scalars['String']['input']; }; export type QueryIidByNodeIdArgs = { nodeId: Scalars['ID']['input']; }; export type QueryIidsArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type QueryIpfArgs = { cid: Scalars['String']['input']; }; export type QueryIpfByNodeIdArgs = { nodeId: Scalars['ID']['input']; }; export type QueryIpfsArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type QueryIxoSwapArgs = { address: Scalars['String']['input']; }; export type QueryIxoSwapByNodeIdArgs = { nodeId: Scalars['ID']['input']; }; export type QueryIxoSwapPriceHistoriesArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type QueryIxoSwapPriceHistoryArgs = { id: Scalars['Int']['input']; }; export type QueryIxoSwapPriceHistoryByNodeIdArgs = { nodeId: Scalars['ID']['input']; }; export type QueryIxoSwapPriceHistoryByTimestampAndAddressArgs = { address: Scalars['String']['input']; timestamp: Scalars['Datetime']['input']; }; export type QueryIxoSwapsArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type QueryMessageArgs = { id: Scalars['Int']['input']; }; export type QueryMessageByNodeIdArgs = { nodeId: Scalars['ID']['input']; }; export type QueryMessagesArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type QueryNodeArgs = { nodeId: Scalars['ID']['input']; }; export type QueryOutcomePaymentArgs = { id: Scalars['Int']['input']; }; export type QueryOutcomePaymentByNodeIdArgs = { nodeId: Scalars['ID']['input']; }; export type QueryOutcomePaymentsArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type QueryPgmigrationArgs = { id: Scalars['Int']['input']; }; export type QueryPgmigrationByNodeIdArgs = { nodeId: Scalars['ID']['input']; }; export type QueryPgmigrationsArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type QueryReserveWithdrawalArgs = { id: Scalars['Int']['input']; }; export type QueryReserveWithdrawalByNodeIdArgs = { nodeId: Scalars['ID']['input']; }; export type QueryReserveWithdrawalsArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type QueryShareWithdrawalArgs = { id: Scalars['Int']['input']; }; export type QueryShareWithdrawalByNodeIdArgs = { nodeId: Scalars['ID']['input']; }; export type QueryShareWithdrawalsArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type QuerySmartAccountAuthenticatorArgs = { id: Scalars['String']['input']; }; export type QuerySmartAccountAuthenticatorByNodeIdArgs = { nodeId: Scalars['ID']['input']; }; export type QuerySmartAccountAuthenticatorsArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type QueryTokenArgs = { id: Scalars['String']['input']; }; export type QueryTokenByNodeIdArgs = { nodeId: Scalars['ID']['input']; }; export type QueryTokenCancelledArgs = { aid: Scalars['Int']['input']; }; export type QueryTokenCancelledByNodeIdArgs = { nodeId: Scalars['ID']['input']; }; export type QueryTokenCancelledsArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type QueryTokenClassArgs = { contractAddress: Scalars['String']['input']; }; export type QueryTokenClassByNodeIdArgs = { nodeId: Scalars['ID']['input']; }; export type QueryTokenClassesArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type QueryTokenDataArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type QueryTokenDatumArgs = { aid: Scalars['Int']['input']; }; export type QueryTokenDatumByNodeIdArgs = { nodeId: Scalars['ID']['input']; }; export type QueryTokenRetiredArgs = { aid: Scalars['Int']['input']; }; export type QueryTokenRetiredByNodeIdArgs = { nodeId: Scalars['ID']['input']; }; export type QueryTokenRetiredsArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type QueryTokenTransactionArgs = { aid: Scalars['Int']['input']; }; export type QueryTokenTransactionByNodeIdArgs = { nodeId: Scalars['ID']['input']; }; export type QueryTokenTransactionsArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type QueryTokenomicsAccountArgs = { address: Scalars['String']['input']; }; export type QueryTokenomicsAccountByNodeIdArgs = { nodeId: Scalars['ID']['input']; }; export type QueryTokenomicsAccountsArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type QueryTokensArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type QueryTransactionArgs = { hash: Scalars['String']['input']; }; export type QueryTransactionByNodeIdArgs = { nodeId: Scalars['ID']['input']; }; export type QueryTransactionsArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type ReserveWithdrawal = Node & { __typename?: 'ReserveWithdrawal'; amount: Scalars['JSON']['output']; bondByBondDid?: Maybe; bondDid: Scalars['String']['output']; height: Scalars['Int']['output']; id: Scalars['Int']['output']; nodeId: Scalars['ID']['output']; reserveWithdrawalAddress: Scalars['String']['output']; timestamp: Scalars['Datetime']['output']; withdrawerAddress: Scalars['String']['output']; withdrawerDid: Scalars['String']['output']; }; export type ReserveWithdrawalCondition = { amount?: InputMaybe; bondDid?: InputMaybe; height?: InputMaybe; id?: InputMaybe; reserveWithdrawalAddress?: InputMaybe; timestamp?: InputMaybe; withdrawerAddress?: InputMaybe; withdrawerDid?: InputMaybe; }; export type ReserveWithdrawalFilter = { amount?: InputMaybe; and?: InputMaybe>; bondByBondDid?: InputMaybe; bondDid?: InputMaybe; height?: InputMaybe; id?: InputMaybe; not?: InputMaybe; or?: InputMaybe>; reserveWithdrawalAddress?: InputMaybe; timestamp?: InputMaybe; withdrawerAddress?: InputMaybe; withdrawerDid?: InputMaybe; }; export type ReserveWithdrawalsConnection = { __typename?: 'ReserveWithdrawalsConnection'; edges: Array; nodes: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type ReserveWithdrawalsEdge = { __typename?: 'ReserveWithdrawalsEdge'; cursor?: Maybe; node: ReserveWithdrawal; }; export declare enum ReserveWithdrawalsOrderBy { AmountAsc = "AMOUNT_ASC", AmountDesc = "AMOUNT_DESC", BondDidAsc = "BOND_DID_ASC", BondDidDesc = "BOND_DID_DESC", HeightAsc = "HEIGHT_ASC", HeightDesc = "HEIGHT_DESC", IdAsc = "ID_ASC", IdDesc = "ID_DESC", Natural = "NATURAL", PrimaryKeyAsc = "PRIMARY_KEY_ASC", PrimaryKeyDesc = "PRIMARY_KEY_DESC", ReserveWithdrawalAddressAsc = "RESERVE_WITHDRAWAL_ADDRESS_ASC", ReserveWithdrawalAddressDesc = "RESERVE_WITHDRAWAL_ADDRESS_DESC", TimestampAsc = "TIMESTAMP_ASC", TimestampDesc = "TIMESTAMP_DESC", WithdrawerAddressAsc = "WITHDRAWER_ADDRESS_ASC", WithdrawerAddressDesc = "WITHDRAWER_ADDRESS_DESC", WithdrawerDidAsc = "WITHDRAWER_DID_ASC", WithdrawerDidDesc = "WITHDRAWER_DID_DESC" } export type ShareWithdrawal = Node & { __typename?: 'ShareWithdrawal'; amount: Scalars['JSON']['output']; bondByBondDid?: Maybe; bondDid: Scalars['String']['output']; height: Scalars['Int']['output']; id: Scalars['Int']['output']; nodeId: Scalars['ID']['output']; recipientAddress: Scalars['String']['output']; recipientDid: Scalars['String']['output']; timestamp: Scalars['Datetime']['output']; }; export type ShareWithdrawalCondition = { amount?: InputMaybe; bondDid?: InputMaybe; height?: InputMaybe; id?: InputMaybe; recipientAddress?: InputMaybe; recipientDid?: InputMaybe; timestamp?: InputMaybe; }; export type ShareWithdrawalFilter = { amount?: InputMaybe; and?: InputMaybe>; bondByBondDid?: InputMaybe; bondDid?: InputMaybe; height?: InputMaybe; id?: InputMaybe; not?: InputMaybe; or?: InputMaybe>; recipientAddress?: InputMaybe; recipientDid?: InputMaybe; timestamp?: InputMaybe; }; export type ShareWithdrawalsConnection = { __typename?: 'ShareWithdrawalsConnection'; edges: Array; nodes: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type ShareWithdrawalsEdge = { __typename?: 'ShareWithdrawalsEdge'; cursor?: Maybe; node: ShareWithdrawal; }; export declare enum ShareWithdrawalsOrderBy { AmountAsc = "AMOUNT_ASC", AmountDesc = "AMOUNT_DESC", BondDidAsc = "BOND_DID_ASC", BondDidDesc = "BOND_DID_DESC", HeightAsc = "HEIGHT_ASC", HeightDesc = "HEIGHT_DESC", IdAsc = "ID_ASC", IdDesc = "ID_DESC", Natural = "NATURAL", PrimaryKeyAsc = "PRIMARY_KEY_ASC", PrimaryKeyDesc = "PRIMARY_KEY_DESC", RecipientAddressAsc = "RECIPIENT_ADDRESS_ASC", RecipientAddressDesc = "RECIPIENT_ADDRESS_DESC", RecipientDidAsc = "RECIPIENT_DID_ASC", RecipientDidDesc = "RECIPIENT_DID_DESC", TimestampAsc = "TIMESTAMP_ASC", TimestampDesc = "TIMESTAMP_DESC" } export type SmartAccountAuthenticator = Node & { __typename?: 'SmartAccountAuthenticator'; address: Scalars['String']['output']; config?: Maybe; createdAt: Scalars['Datetime']['output']; id: Scalars['String']['output']; keyId?: Maybe; nodeId: Scalars['ID']['output']; type: Scalars['String']['output']; }; export type SmartAccountAuthenticatorCondition = { address?: InputMaybe; config?: InputMaybe; createdAt?: InputMaybe; id?: InputMaybe; keyId?: InputMaybe; type?: InputMaybe; }; export type SmartAccountAuthenticatorFilter = { address?: InputMaybe; and?: InputMaybe>; config?: InputMaybe; createdAt?: InputMaybe; id?: InputMaybe; keyId?: InputMaybe; not?: InputMaybe; or?: InputMaybe>; type?: InputMaybe; }; export type SmartAccountAuthenticatorsConnection = { __typename?: 'SmartAccountAuthenticatorsConnection'; edges: Array; nodes: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type SmartAccountAuthenticatorsEdge = { __typename?: 'SmartAccountAuthenticatorsEdge'; cursor?: Maybe; node: SmartAccountAuthenticator; }; export declare enum SmartAccountAuthenticatorsOrderBy { AddressAsc = "ADDRESS_ASC", AddressDesc = "ADDRESS_DESC", ConfigAsc = "CONFIG_ASC", ConfigDesc = "CONFIG_DESC", CreatedAtAsc = "CREATED_AT_ASC", CreatedAtDesc = "CREATED_AT_DESC", IdAsc = "ID_ASC", IdDesc = "ID_DESC", KeyIdAsc = "KEY_ID_ASC", KeyIdDesc = "KEY_ID_DESC", Natural = "NATURAL", PrimaryKeyAsc = "PRIMARY_KEY_ASC", PrimaryKeyDesc = "PRIMARY_KEY_DESC", TypeAsc = "TYPE_ASC", TypeDesc = "TYPE_DESC" } export type StringFilter = { distinctFrom?: InputMaybe; distinctFromInsensitive?: InputMaybe; endsWith?: InputMaybe; endsWithInsensitive?: InputMaybe; equalTo?: InputMaybe; equalToInsensitive?: InputMaybe; greaterThan?: InputMaybe; greaterThanInsensitive?: InputMaybe; greaterThanOrEqualTo?: InputMaybe; greaterThanOrEqualToInsensitive?: InputMaybe; in?: InputMaybe>; inInsensitive?: InputMaybe>; includes?: InputMaybe; includesInsensitive?: InputMaybe; isNull?: InputMaybe; lessThan?: InputMaybe; lessThanInsensitive?: InputMaybe; lessThanOrEqualTo?: InputMaybe; lessThanOrEqualToInsensitive?: InputMaybe; like?: InputMaybe; likeInsensitive?: InputMaybe; notDistinctFrom?: InputMaybe; notDistinctFromInsensitive?: InputMaybe; notEndsWith?: InputMaybe; notEndsWithInsensitive?: InputMaybe; notEqualTo?: InputMaybe; notEqualToInsensitive?: InputMaybe; notIn?: InputMaybe>; notInInsensitive?: InputMaybe>; notIncludes?: InputMaybe; notIncludesInsensitive?: InputMaybe; notLike?: InputMaybe; notLikeInsensitive?: InputMaybe; notStartsWith?: InputMaybe; notStartsWithInsensitive?: InputMaybe; startsWith?: InputMaybe; startsWithInsensitive?: InputMaybe; }; export type StringListFilter = { anyEqualTo?: InputMaybe; anyGreaterThan?: InputMaybe; anyGreaterThanOrEqualTo?: InputMaybe; anyLessThan?: InputMaybe; anyLessThanOrEqualTo?: InputMaybe; anyNotEqualTo?: InputMaybe; containedBy?: InputMaybe>>; contains?: InputMaybe>>; distinctFrom?: InputMaybe>>; equalTo?: InputMaybe>>; greaterThan?: InputMaybe>>; greaterThanOrEqualTo?: InputMaybe>>; isNull?: InputMaybe; lessThan?: InputMaybe>>; lessThanOrEqualTo?: InputMaybe>>; notDistinctFrom?: InputMaybe>>; notEqualTo?: InputMaybe>>; overlaps?: InputMaybe>>; }; export type Token = Node & { __typename?: 'Token'; collection: Scalars['String']['output']; entityByCollection?: Maybe; id: Scalars['String']['output']; index: Scalars['String']['output']; name: Scalars['String']['output']; nodeId: Scalars['ID']['output']; tokenClassByName?: Maybe; tokenDataByTokenId: TokenDataConnection; tokenRetiredsById: TokenRetiredsConnection; tokenTransactionsByTokenId: TokenTransactionsConnection; }; export type TokenTokenDataByTokenIdArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type TokenTokenRetiredsByIdArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type TokenTokenTransactionsByTokenIdArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type TokenCancelled = Node & { __typename?: 'TokenCancelled'; aid: Scalars['Int']['output']; amount: Scalars['BigInt']['output']; id: Scalars['String']['output']; name: Scalars['String']['output']; nodeId: Scalars['ID']['output']; owner: Scalars['String']['output']; reason: Scalars['String']['output']; tokenClassByName?: Maybe; }; export type TokenCancelledAggregates = { __typename?: 'TokenCancelledAggregates'; average?: Maybe; distinctCount?: Maybe; keys?: Maybe>; max?: Maybe; min?: Maybe; stddevPopulation?: Maybe; stddevSample?: Maybe; sum?: Maybe; variancePopulation?: Maybe; varianceSample?: Maybe; }; export type TokenCancelledAggregatesFilter = { average?: InputMaybe; distinctCount?: InputMaybe; filter?: InputMaybe; max?: InputMaybe; min?: InputMaybe; stddevPopulation?: InputMaybe; stddevSample?: InputMaybe; sum?: InputMaybe; variancePopulation?: InputMaybe; varianceSample?: InputMaybe; }; export type TokenCancelledAverageAggregateFilter = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenCancelledAverageAggregates = { __typename?: 'TokenCancelledAverageAggregates'; aid?: Maybe; amount?: Maybe; }; export type TokenCancelledCondition = { aid?: InputMaybe; amount?: InputMaybe; id?: InputMaybe; name?: InputMaybe; owner?: InputMaybe; reason?: InputMaybe; }; export type TokenCancelledDistinctCountAggregateFilter = { aid?: InputMaybe; amount?: InputMaybe; id?: InputMaybe; name?: InputMaybe; owner?: InputMaybe; reason?: InputMaybe; }; export type TokenCancelledDistinctCountAggregates = { __typename?: 'TokenCancelledDistinctCountAggregates'; aid?: Maybe; amount?: Maybe; id?: Maybe; name?: Maybe; owner?: Maybe; reason?: Maybe; }; export type TokenCancelledFilter = { aid?: InputMaybe; amount?: InputMaybe; and?: InputMaybe>; id?: InputMaybe; name?: InputMaybe; not?: InputMaybe; or?: InputMaybe>; owner?: InputMaybe; reason?: InputMaybe; tokenClassByName?: InputMaybe; }; export declare enum TokenCancelledGroupBy { Amount = "AMOUNT", Id = "ID", Name = "NAME", Owner = "OWNER", Reason = "REASON" } export type TokenCancelledHavingAverageInput = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenCancelledHavingDistinctCountInput = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenCancelledHavingInput = { AND?: InputMaybe>; OR?: InputMaybe>; average?: InputMaybe; distinctCount?: InputMaybe; max?: InputMaybe; min?: InputMaybe; stddevPopulation?: InputMaybe; stddevSample?: InputMaybe; sum?: InputMaybe; variancePopulation?: InputMaybe; varianceSample?: InputMaybe; }; export type TokenCancelledHavingMaxInput = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenCancelledHavingMinInput = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenCancelledHavingStddevPopulationInput = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenCancelledHavingStddevSampleInput = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenCancelledHavingSumInput = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenCancelledHavingVariancePopulationInput = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenCancelledHavingVarianceSampleInput = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenCancelledMaxAggregateFilter = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenCancelledMaxAggregates = { __typename?: 'TokenCancelledMaxAggregates'; aid?: Maybe; amount?: Maybe; }; export type TokenCancelledMinAggregateFilter = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenCancelledMinAggregates = { __typename?: 'TokenCancelledMinAggregates'; aid?: Maybe; amount?: Maybe; }; export type TokenCancelledStddevPopulationAggregateFilter = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenCancelledStddevPopulationAggregates = { __typename?: 'TokenCancelledStddevPopulationAggregates'; aid?: Maybe; amount?: Maybe; }; export type TokenCancelledStddevSampleAggregateFilter = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenCancelledStddevSampleAggregates = { __typename?: 'TokenCancelledStddevSampleAggregates'; aid?: Maybe; amount?: Maybe; }; export type TokenCancelledSumAggregateFilter = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenCancelledSumAggregates = { __typename?: 'TokenCancelledSumAggregates'; aid: Scalars['BigInt']['output']; amount: Scalars['BigFloat']['output']; }; export type TokenCancelledVariancePopulationAggregateFilter = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenCancelledVariancePopulationAggregates = { __typename?: 'TokenCancelledVariancePopulationAggregates'; aid?: Maybe; amount?: Maybe; }; export type TokenCancelledVarianceSampleAggregateFilter = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenCancelledVarianceSampleAggregates = { __typename?: 'TokenCancelledVarianceSampleAggregates'; aid?: Maybe; amount?: Maybe; }; export type TokenCancelledsConnection = { __typename?: 'TokenCancelledsConnection'; aggregates?: Maybe; edges: Array; groupedAggregates?: Maybe>; nodes: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type TokenCancelledsConnectionGroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; export type TokenCancelledsEdge = { __typename?: 'TokenCancelledsEdge'; cursor?: Maybe; node: TokenCancelled; }; export declare enum TokenCancelledsOrderBy { AidAsc = "AID_ASC", AidDesc = "AID_DESC", AmountAsc = "AMOUNT_ASC", AmountDesc = "AMOUNT_DESC", IdAsc = "ID_ASC", IdDesc = "ID_DESC", NameAsc = "NAME_ASC", NameDesc = "NAME_DESC", Natural = "NATURAL", OwnerAsc = "OWNER_ASC", OwnerDesc = "OWNER_DESC", PrimaryKeyAsc = "PRIMARY_KEY_ASC", PrimaryKeyDesc = "PRIMARY_KEY_DESC", ReasonAsc = "REASON_ASC", ReasonDesc = "REASON_DESC" } export type TokenClass = Node & { __typename?: 'TokenClass'; cap: Scalars['BigInt']['output']; class: Scalars['String']['output']; contractAddress: Scalars['String']['output']; description: Scalars['String']['output']; entityByClass?: Maybe; image: Scalars['String']['output']; minter: Scalars['String']['output']; name: Scalars['String']['output']; nodeId: Scalars['ID']['output']; paused: Scalars['Boolean']['output']; stopped: Scalars['Boolean']['output']; supply: Scalars['BigInt']['output']; tokenCancelledsByName: TokenCancelledsConnection; tokenRetiredsByName: TokenRetiredsConnection; tokensByName: TokensConnection; type: Scalars['String']['output']; }; export type TokenClassTokenCancelledsByNameArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type TokenClassTokenRetiredsByNameArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type TokenClassTokensByNameArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type TokenClassCondition = { cap?: InputMaybe; class?: InputMaybe; contractAddress?: InputMaybe; description?: InputMaybe; image?: InputMaybe; minter?: InputMaybe; name?: InputMaybe; paused?: InputMaybe; stopped?: InputMaybe; supply?: InputMaybe; type?: InputMaybe; }; export type TokenClassFilter = { and?: InputMaybe>; cap?: InputMaybe; class?: InputMaybe; contractAddress?: InputMaybe; description?: InputMaybe; entityByClass?: InputMaybe; image?: InputMaybe; minter?: InputMaybe; name?: InputMaybe; not?: InputMaybe; or?: InputMaybe>; paused?: InputMaybe; stopped?: InputMaybe; supply?: InputMaybe; tokenCancelledsByName?: InputMaybe; tokenCancelledsByNameExist?: InputMaybe; tokenRetiredsByName?: InputMaybe; tokenRetiredsByNameExist?: InputMaybe; tokensByName?: InputMaybe; tokensByNameExist?: InputMaybe; type?: InputMaybe; }; export type TokenClassToManyTokenCancelledFilter = { aggregates?: InputMaybe; every?: InputMaybe; none?: InputMaybe; some?: InputMaybe; }; export type TokenClassToManyTokenFilter = { every?: InputMaybe; none?: InputMaybe; some?: InputMaybe; }; export type TokenClassToManyTokenRetiredFilter = { aggregates?: InputMaybe; every?: InputMaybe; none?: InputMaybe; some?: InputMaybe; }; export type TokenClassesConnection = { __typename?: 'TokenClassesConnection'; edges: Array; nodes: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type TokenClassesEdge = { __typename?: 'TokenClassesEdge'; cursor?: Maybe; node: TokenClass; }; export declare enum TokenClassesOrderBy { CapAsc = "CAP_ASC", CapDesc = "CAP_DESC", ClassAsc = "CLASS_ASC", ClassDesc = "CLASS_DESC", ContractAddressAsc = "CONTRACT_ADDRESS_ASC", ContractAddressDesc = "CONTRACT_ADDRESS_DESC", DescriptionAsc = "DESCRIPTION_ASC", DescriptionDesc = "DESCRIPTION_DESC", ImageAsc = "IMAGE_ASC", ImageDesc = "IMAGE_DESC", MinterAsc = "MINTER_ASC", MinterDesc = "MINTER_DESC", NameAsc = "NAME_ASC", NameDesc = "NAME_DESC", Natural = "NATURAL", PausedAsc = "PAUSED_ASC", PausedDesc = "PAUSED_DESC", PrimaryKeyAsc = "PRIMARY_KEY_ASC", PrimaryKeyDesc = "PRIMARY_KEY_DESC", StoppedAsc = "STOPPED_ASC", StoppedDesc = "STOPPED_DESC", SupplyAsc = "SUPPLY_ASC", SupplyDesc = "SUPPLY_DESC", TokenCancelledsByNameAverageAidAsc = "TOKEN_CANCELLEDS_BY_NAME_AVERAGE_AID_ASC", TokenCancelledsByNameAverageAidDesc = "TOKEN_CANCELLEDS_BY_NAME_AVERAGE_AID_DESC", TokenCancelledsByNameAverageAmountAsc = "TOKEN_CANCELLEDS_BY_NAME_AVERAGE_AMOUNT_ASC", TokenCancelledsByNameAverageAmountDesc = "TOKEN_CANCELLEDS_BY_NAME_AVERAGE_AMOUNT_DESC", TokenCancelledsByNameAverageIdAsc = "TOKEN_CANCELLEDS_BY_NAME_AVERAGE_ID_ASC", TokenCancelledsByNameAverageIdDesc = "TOKEN_CANCELLEDS_BY_NAME_AVERAGE_ID_DESC", TokenCancelledsByNameAverageNameAsc = "TOKEN_CANCELLEDS_BY_NAME_AVERAGE_NAME_ASC", TokenCancelledsByNameAverageNameDesc = "TOKEN_CANCELLEDS_BY_NAME_AVERAGE_NAME_DESC", TokenCancelledsByNameAverageOwnerAsc = "TOKEN_CANCELLEDS_BY_NAME_AVERAGE_OWNER_ASC", TokenCancelledsByNameAverageOwnerDesc = "TOKEN_CANCELLEDS_BY_NAME_AVERAGE_OWNER_DESC", TokenCancelledsByNameAverageReasonAsc = "TOKEN_CANCELLEDS_BY_NAME_AVERAGE_REASON_ASC", TokenCancelledsByNameAverageReasonDesc = "TOKEN_CANCELLEDS_BY_NAME_AVERAGE_REASON_DESC", TokenCancelledsByNameCountAsc = "TOKEN_CANCELLEDS_BY_NAME_COUNT_ASC", TokenCancelledsByNameCountDesc = "TOKEN_CANCELLEDS_BY_NAME_COUNT_DESC", TokenCancelledsByNameDistinctCountAidAsc = "TOKEN_CANCELLEDS_BY_NAME_DISTINCT_COUNT_AID_ASC", TokenCancelledsByNameDistinctCountAidDesc = "TOKEN_CANCELLEDS_BY_NAME_DISTINCT_COUNT_AID_DESC", TokenCancelledsByNameDistinctCountAmountAsc = "TOKEN_CANCELLEDS_BY_NAME_DISTINCT_COUNT_AMOUNT_ASC", TokenCancelledsByNameDistinctCountAmountDesc = "TOKEN_CANCELLEDS_BY_NAME_DISTINCT_COUNT_AMOUNT_DESC", TokenCancelledsByNameDistinctCountIdAsc = "TOKEN_CANCELLEDS_BY_NAME_DISTINCT_COUNT_ID_ASC", TokenCancelledsByNameDistinctCountIdDesc = "TOKEN_CANCELLEDS_BY_NAME_DISTINCT_COUNT_ID_DESC", TokenCancelledsByNameDistinctCountNameAsc = "TOKEN_CANCELLEDS_BY_NAME_DISTINCT_COUNT_NAME_ASC", TokenCancelledsByNameDistinctCountNameDesc = "TOKEN_CANCELLEDS_BY_NAME_DISTINCT_COUNT_NAME_DESC", TokenCancelledsByNameDistinctCountOwnerAsc = "TOKEN_CANCELLEDS_BY_NAME_DISTINCT_COUNT_OWNER_ASC", TokenCancelledsByNameDistinctCountOwnerDesc = "TOKEN_CANCELLEDS_BY_NAME_DISTINCT_COUNT_OWNER_DESC", TokenCancelledsByNameDistinctCountReasonAsc = "TOKEN_CANCELLEDS_BY_NAME_DISTINCT_COUNT_REASON_ASC", TokenCancelledsByNameDistinctCountReasonDesc = "TOKEN_CANCELLEDS_BY_NAME_DISTINCT_COUNT_REASON_DESC", TokenCancelledsByNameMaxAidAsc = "TOKEN_CANCELLEDS_BY_NAME_MAX_AID_ASC", TokenCancelledsByNameMaxAidDesc = "TOKEN_CANCELLEDS_BY_NAME_MAX_AID_DESC", TokenCancelledsByNameMaxAmountAsc = "TOKEN_CANCELLEDS_BY_NAME_MAX_AMOUNT_ASC", TokenCancelledsByNameMaxAmountDesc = "TOKEN_CANCELLEDS_BY_NAME_MAX_AMOUNT_DESC", TokenCancelledsByNameMaxIdAsc = "TOKEN_CANCELLEDS_BY_NAME_MAX_ID_ASC", TokenCancelledsByNameMaxIdDesc = "TOKEN_CANCELLEDS_BY_NAME_MAX_ID_DESC", TokenCancelledsByNameMaxNameAsc = "TOKEN_CANCELLEDS_BY_NAME_MAX_NAME_ASC", TokenCancelledsByNameMaxNameDesc = "TOKEN_CANCELLEDS_BY_NAME_MAX_NAME_DESC", TokenCancelledsByNameMaxOwnerAsc = "TOKEN_CANCELLEDS_BY_NAME_MAX_OWNER_ASC", TokenCancelledsByNameMaxOwnerDesc = "TOKEN_CANCELLEDS_BY_NAME_MAX_OWNER_DESC", TokenCancelledsByNameMaxReasonAsc = "TOKEN_CANCELLEDS_BY_NAME_MAX_REASON_ASC", TokenCancelledsByNameMaxReasonDesc = "TOKEN_CANCELLEDS_BY_NAME_MAX_REASON_DESC", TokenCancelledsByNameMinAidAsc = "TOKEN_CANCELLEDS_BY_NAME_MIN_AID_ASC", TokenCancelledsByNameMinAidDesc = "TOKEN_CANCELLEDS_BY_NAME_MIN_AID_DESC", TokenCancelledsByNameMinAmountAsc = "TOKEN_CANCELLEDS_BY_NAME_MIN_AMOUNT_ASC", TokenCancelledsByNameMinAmountDesc = "TOKEN_CANCELLEDS_BY_NAME_MIN_AMOUNT_DESC", TokenCancelledsByNameMinIdAsc = "TOKEN_CANCELLEDS_BY_NAME_MIN_ID_ASC", TokenCancelledsByNameMinIdDesc = "TOKEN_CANCELLEDS_BY_NAME_MIN_ID_DESC", TokenCancelledsByNameMinNameAsc = "TOKEN_CANCELLEDS_BY_NAME_MIN_NAME_ASC", TokenCancelledsByNameMinNameDesc = "TOKEN_CANCELLEDS_BY_NAME_MIN_NAME_DESC", TokenCancelledsByNameMinOwnerAsc = "TOKEN_CANCELLEDS_BY_NAME_MIN_OWNER_ASC", TokenCancelledsByNameMinOwnerDesc = "TOKEN_CANCELLEDS_BY_NAME_MIN_OWNER_DESC", TokenCancelledsByNameMinReasonAsc = "TOKEN_CANCELLEDS_BY_NAME_MIN_REASON_ASC", TokenCancelledsByNameMinReasonDesc = "TOKEN_CANCELLEDS_BY_NAME_MIN_REASON_DESC", TokenCancelledsByNameStddevPopulationAidAsc = "TOKEN_CANCELLEDS_BY_NAME_STDDEV_POPULATION_AID_ASC", TokenCancelledsByNameStddevPopulationAidDesc = "TOKEN_CANCELLEDS_BY_NAME_STDDEV_POPULATION_AID_DESC", TokenCancelledsByNameStddevPopulationAmountAsc = "TOKEN_CANCELLEDS_BY_NAME_STDDEV_POPULATION_AMOUNT_ASC", TokenCancelledsByNameStddevPopulationAmountDesc = "TOKEN_CANCELLEDS_BY_NAME_STDDEV_POPULATION_AMOUNT_DESC", TokenCancelledsByNameStddevPopulationIdAsc = "TOKEN_CANCELLEDS_BY_NAME_STDDEV_POPULATION_ID_ASC", TokenCancelledsByNameStddevPopulationIdDesc = "TOKEN_CANCELLEDS_BY_NAME_STDDEV_POPULATION_ID_DESC", TokenCancelledsByNameStddevPopulationNameAsc = "TOKEN_CANCELLEDS_BY_NAME_STDDEV_POPULATION_NAME_ASC", TokenCancelledsByNameStddevPopulationNameDesc = "TOKEN_CANCELLEDS_BY_NAME_STDDEV_POPULATION_NAME_DESC", TokenCancelledsByNameStddevPopulationOwnerAsc = "TOKEN_CANCELLEDS_BY_NAME_STDDEV_POPULATION_OWNER_ASC", TokenCancelledsByNameStddevPopulationOwnerDesc = "TOKEN_CANCELLEDS_BY_NAME_STDDEV_POPULATION_OWNER_DESC", TokenCancelledsByNameStddevPopulationReasonAsc = "TOKEN_CANCELLEDS_BY_NAME_STDDEV_POPULATION_REASON_ASC", TokenCancelledsByNameStddevPopulationReasonDesc = "TOKEN_CANCELLEDS_BY_NAME_STDDEV_POPULATION_REASON_DESC", TokenCancelledsByNameStddevSampleAidAsc = "TOKEN_CANCELLEDS_BY_NAME_STDDEV_SAMPLE_AID_ASC", TokenCancelledsByNameStddevSampleAidDesc = "TOKEN_CANCELLEDS_BY_NAME_STDDEV_SAMPLE_AID_DESC", TokenCancelledsByNameStddevSampleAmountAsc = "TOKEN_CANCELLEDS_BY_NAME_STDDEV_SAMPLE_AMOUNT_ASC", TokenCancelledsByNameStddevSampleAmountDesc = "TOKEN_CANCELLEDS_BY_NAME_STDDEV_SAMPLE_AMOUNT_DESC", TokenCancelledsByNameStddevSampleIdAsc = "TOKEN_CANCELLEDS_BY_NAME_STDDEV_SAMPLE_ID_ASC", TokenCancelledsByNameStddevSampleIdDesc = "TOKEN_CANCELLEDS_BY_NAME_STDDEV_SAMPLE_ID_DESC", TokenCancelledsByNameStddevSampleNameAsc = "TOKEN_CANCELLEDS_BY_NAME_STDDEV_SAMPLE_NAME_ASC", TokenCancelledsByNameStddevSampleNameDesc = "TOKEN_CANCELLEDS_BY_NAME_STDDEV_SAMPLE_NAME_DESC", TokenCancelledsByNameStddevSampleOwnerAsc = "TOKEN_CANCELLEDS_BY_NAME_STDDEV_SAMPLE_OWNER_ASC", TokenCancelledsByNameStddevSampleOwnerDesc = "TOKEN_CANCELLEDS_BY_NAME_STDDEV_SAMPLE_OWNER_DESC", TokenCancelledsByNameStddevSampleReasonAsc = "TOKEN_CANCELLEDS_BY_NAME_STDDEV_SAMPLE_REASON_ASC", TokenCancelledsByNameStddevSampleReasonDesc = "TOKEN_CANCELLEDS_BY_NAME_STDDEV_SAMPLE_REASON_DESC", TokenCancelledsByNameSumAidAsc = "TOKEN_CANCELLEDS_BY_NAME_SUM_AID_ASC", TokenCancelledsByNameSumAidDesc = "TOKEN_CANCELLEDS_BY_NAME_SUM_AID_DESC", TokenCancelledsByNameSumAmountAsc = "TOKEN_CANCELLEDS_BY_NAME_SUM_AMOUNT_ASC", TokenCancelledsByNameSumAmountDesc = "TOKEN_CANCELLEDS_BY_NAME_SUM_AMOUNT_DESC", TokenCancelledsByNameSumIdAsc = "TOKEN_CANCELLEDS_BY_NAME_SUM_ID_ASC", TokenCancelledsByNameSumIdDesc = "TOKEN_CANCELLEDS_BY_NAME_SUM_ID_DESC", TokenCancelledsByNameSumNameAsc = "TOKEN_CANCELLEDS_BY_NAME_SUM_NAME_ASC", TokenCancelledsByNameSumNameDesc = "TOKEN_CANCELLEDS_BY_NAME_SUM_NAME_DESC", TokenCancelledsByNameSumOwnerAsc = "TOKEN_CANCELLEDS_BY_NAME_SUM_OWNER_ASC", TokenCancelledsByNameSumOwnerDesc = "TOKEN_CANCELLEDS_BY_NAME_SUM_OWNER_DESC", TokenCancelledsByNameSumReasonAsc = "TOKEN_CANCELLEDS_BY_NAME_SUM_REASON_ASC", TokenCancelledsByNameSumReasonDesc = "TOKEN_CANCELLEDS_BY_NAME_SUM_REASON_DESC", TokenCancelledsByNameVariancePopulationAidAsc = "TOKEN_CANCELLEDS_BY_NAME_VARIANCE_POPULATION_AID_ASC", TokenCancelledsByNameVariancePopulationAidDesc = "TOKEN_CANCELLEDS_BY_NAME_VARIANCE_POPULATION_AID_DESC", TokenCancelledsByNameVariancePopulationAmountAsc = "TOKEN_CANCELLEDS_BY_NAME_VARIANCE_POPULATION_AMOUNT_ASC", TokenCancelledsByNameVariancePopulationAmountDesc = "TOKEN_CANCELLEDS_BY_NAME_VARIANCE_POPULATION_AMOUNT_DESC", TokenCancelledsByNameVariancePopulationIdAsc = "TOKEN_CANCELLEDS_BY_NAME_VARIANCE_POPULATION_ID_ASC", TokenCancelledsByNameVariancePopulationIdDesc = "TOKEN_CANCELLEDS_BY_NAME_VARIANCE_POPULATION_ID_DESC", TokenCancelledsByNameVariancePopulationNameAsc = "TOKEN_CANCELLEDS_BY_NAME_VARIANCE_POPULATION_NAME_ASC", TokenCancelledsByNameVariancePopulationNameDesc = "TOKEN_CANCELLEDS_BY_NAME_VARIANCE_POPULATION_NAME_DESC", TokenCancelledsByNameVariancePopulationOwnerAsc = "TOKEN_CANCELLEDS_BY_NAME_VARIANCE_POPULATION_OWNER_ASC", TokenCancelledsByNameVariancePopulationOwnerDesc = "TOKEN_CANCELLEDS_BY_NAME_VARIANCE_POPULATION_OWNER_DESC", TokenCancelledsByNameVariancePopulationReasonAsc = "TOKEN_CANCELLEDS_BY_NAME_VARIANCE_POPULATION_REASON_ASC", TokenCancelledsByNameVariancePopulationReasonDesc = "TOKEN_CANCELLEDS_BY_NAME_VARIANCE_POPULATION_REASON_DESC", TokenCancelledsByNameVarianceSampleAidAsc = "TOKEN_CANCELLEDS_BY_NAME_VARIANCE_SAMPLE_AID_ASC", TokenCancelledsByNameVarianceSampleAidDesc = "TOKEN_CANCELLEDS_BY_NAME_VARIANCE_SAMPLE_AID_DESC", TokenCancelledsByNameVarianceSampleAmountAsc = "TOKEN_CANCELLEDS_BY_NAME_VARIANCE_SAMPLE_AMOUNT_ASC", TokenCancelledsByNameVarianceSampleAmountDesc = "TOKEN_CANCELLEDS_BY_NAME_VARIANCE_SAMPLE_AMOUNT_DESC", TokenCancelledsByNameVarianceSampleIdAsc = "TOKEN_CANCELLEDS_BY_NAME_VARIANCE_SAMPLE_ID_ASC", TokenCancelledsByNameVarianceSampleIdDesc = "TOKEN_CANCELLEDS_BY_NAME_VARIANCE_SAMPLE_ID_DESC", TokenCancelledsByNameVarianceSampleNameAsc = "TOKEN_CANCELLEDS_BY_NAME_VARIANCE_SAMPLE_NAME_ASC", TokenCancelledsByNameVarianceSampleNameDesc = "TOKEN_CANCELLEDS_BY_NAME_VARIANCE_SAMPLE_NAME_DESC", TokenCancelledsByNameVarianceSampleOwnerAsc = "TOKEN_CANCELLEDS_BY_NAME_VARIANCE_SAMPLE_OWNER_ASC", TokenCancelledsByNameVarianceSampleOwnerDesc = "TOKEN_CANCELLEDS_BY_NAME_VARIANCE_SAMPLE_OWNER_DESC", TokenCancelledsByNameVarianceSampleReasonAsc = "TOKEN_CANCELLEDS_BY_NAME_VARIANCE_SAMPLE_REASON_ASC", TokenCancelledsByNameVarianceSampleReasonDesc = "TOKEN_CANCELLEDS_BY_NAME_VARIANCE_SAMPLE_REASON_DESC", TokenRetiredsByNameAverageAidAsc = "TOKEN_RETIREDS_BY_NAME_AVERAGE_AID_ASC", TokenRetiredsByNameAverageAidDesc = "TOKEN_RETIREDS_BY_NAME_AVERAGE_AID_DESC", TokenRetiredsByNameAverageAmountAsc = "TOKEN_RETIREDS_BY_NAME_AVERAGE_AMOUNT_ASC", TokenRetiredsByNameAverageAmountDesc = "TOKEN_RETIREDS_BY_NAME_AVERAGE_AMOUNT_DESC", TokenRetiredsByNameAverageIdAsc = "TOKEN_RETIREDS_BY_NAME_AVERAGE_ID_ASC", TokenRetiredsByNameAverageIdDesc = "TOKEN_RETIREDS_BY_NAME_AVERAGE_ID_DESC", TokenRetiredsByNameAverageJurisdictionAsc = "TOKEN_RETIREDS_BY_NAME_AVERAGE_JURISDICTION_ASC", TokenRetiredsByNameAverageJurisdictionDesc = "TOKEN_RETIREDS_BY_NAME_AVERAGE_JURISDICTION_DESC", TokenRetiredsByNameAverageNameAsc = "TOKEN_RETIREDS_BY_NAME_AVERAGE_NAME_ASC", TokenRetiredsByNameAverageNameDesc = "TOKEN_RETIREDS_BY_NAME_AVERAGE_NAME_DESC", TokenRetiredsByNameAverageOwnerAsc = "TOKEN_RETIREDS_BY_NAME_AVERAGE_OWNER_ASC", TokenRetiredsByNameAverageOwnerDesc = "TOKEN_RETIREDS_BY_NAME_AVERAGE_OWNER_DESC", TokenRetiredsByNameAverageReasonAsc = "TOKEN_RETIREDS_BY_NAME_AVERAGE_REASON_ASC", TokenRetiredsByNameAverageReasonDesc = "TOKEN_RETIREDS_BY_NAME_AVERAGE_REASON_DESC", TokenRetiredsByNameCountAsc = "TOKEN_RETIREDS_BY_NAME_COUNT_ASC", TokenRetiredsByNameCountDesc = "TOKEN_RETIREDS_BY_NAME_COUNT_DESC", TokenRetiredsByNameDistinctCountAidAsc = "TOKEN_RETIREDS_BY_NAME_DISTINCT_COUNT_AID_ASC", TokenRetiredsByNameDistinctCountAidDesc = "TOKEN_RETIREDS_BY_NAME_DISTINCT_COUNT_AID_DESC", TokenRetiredsByNameDistinctCountAmountAsc = "TOKEN_RETIREDS_BY_NAME_DISTINCT_COUNT_AMOUNT_ASC", TokenRetiredsByNameDistinctCountAmountDesc = "TOKEN_RETIREDS_BY_NAME_DISTINCT_COUNT_AMOUNT_DESC", TokenRetiredsByNameDistinctCountIdAsc = "TOKEN_RETIREDS_BY_NAME_DISTINCT_COUNT_ID_ASC", TokenRetiredsByNameDistinctCountIdDesc = "TOKEN_RETIREDS_BY_NAME_DISTINCT_COUNT_ID_DESC", TokenRetiredsByNameDistinctCountJurisdictionAsc = "TOKEN_RETIREDS_BY_NAME_DISTINCT_COUNT_JURISDICTION_ASC", TokenRetiredsByNameDistinctCountJurisdictionDesc = "TOKEN_RETIREDS_BY_NAME_DISTINCT_COUNT_JURISDICTION_DESC", TokenRetiredsByNameDistinctCountNameAsc = "TOKEN_RETIREDS_BY_NAME_DISTINCT_COUNT_NAME_ASC", TokenRetiredsByNameDistinctCountNameDesc = "TOKEN_RETIREDS_BY_NAME_DISTINCT_COUNT_NAME_DESC", TokenRetiredsByNameDistinctCountOwnerAsc = "TOKEN_RETIREDS_BY_NAME_DISTINCT_COUNT_OWNER_ASC", TokenRetiredsByNameDistinctCountOwnerDesc = "TOKEN_RETIREDS_BY_NAME_DISTINCT_COUNT_OWNER_DESC", TokenRetiredsByNameDistinctCountReasonAsc = "TOKEN_RETIREDS_BY_NAME_DISTINCT_COUNT_REASON_ASC", TokenRetiredsByNameDistinctCountReasonDesc = "TOKEN_RETIREDS_BY_NAME_DISTINCT_COUNT_REASON_DESC", TokenRetiredsByNameMaxAidAsc = "TOKEN_RETIREDS_BY_NAME_MAX_AID_ASC", TokenRetiredsByNameMaxAidDesc = "TOKEN_RETIREDS_BY_NAME_MAX_AID_DESC", TokenRetiredsByNameMaxAmountAsc = "TOKEN_RETIREDS_BY_NAME_MAX_AMOUNT_ASC", TokenRetiredsByNameMaxAmountDesc = "TOKEN_RETIREDS_BY_NAME_MAX_AMOUNT_DESC", TokenRetiredsByNameMaxIdAsc = "TOKEN_RETIREDS_BY_NAME_MAX_ID_ASC", TokenRetiredsByNameMaxIdDesc = "TOKEN_RETIREDS_BY_NAME_MAX_ID_DESC", TokenRetiredsByNameMaxJurisdictionAsc = "TOKEN_RETIREDS_BY_NAME_MAX_JURISDICTION_ASC", TokenRetiredsByNameMaxJurisdictionDesc = "TOKEN_RETIREDS_BY_NAME_MAX_JURISDICTION_DESC", TokenRetiredsByNameMaxNameAsc = "TOKEN_RETIREDS_BY_NAME_MAX_NAME_ASC", TokenRetiredsByNameMaxNameDesc = "TOKEN_RETIREDS_BY_NAME_MAX_NAME_DESC", TokenRetiredsByNameMaxOwnerAsc = "TOKEN_RETIREDS_BY_NAME_MAX_OWNER_ASC", TokenRetiredsByNameMaxOwnerDesc = "TOKEN_RETIREDS_BY_NAME_MAX_OWNER_DESC", TokenRetiredsByNameMaxReasonAsc = "TOKEN_RETIREDS_BY_NAME_MAX_REASON_ASC", TokenRetiredsByNameMaxReasonDesc = "TOKEN_RETIREDS_BY_NAME_MAX_REASON_DESC", TokenRetiredsByNameMinAidAsc = "TOKEN_RETIREDS_BY_NAME_MIN_AID_ASC", TokenRetiredsByNameMinAidDesc = "TOKEN_RETIREDS_BY_NAME_MIN_AID_DESC", TokenRetiredsByNameMinAmountAsc = "TOKEN_RETIREDS_BY_NAME_MIN_AMOUNT_ASC", TokenRetiredsByNameMinAmountDesc = "TOKEN_RETIREDS_BY_NAME_MIN_AMOUNT_DESC", TokenRetiredsByNameMinIdAsc = "TOKEN_RETIREDS_BY_NAME_MIN_ID_ASC", TokenRetiredsByNameMinIdDesc = "TOKEN_RETIREDS_BY_NAME_MIN_ID_DESC", TokenRetiredsByNameMinJurisdictionAsc = "TOKEN_RETIREDS_BY_NAME_MIN_JURISDICTION_ASC", TokenRetiredsByNameMinJurisdictionDesc = "TOKEN_RETIREDS_BY_NAME_MIN_JURISDICTION_DESC", TokenRetiredsByNameMinNameAsc = "TOKEN_RETIREDS_BY_NAME_MIN_NAME_ASC", TokenRetiredsByNameMinNameDesc = "TOKEN_RETIREDS_BY_NAME_MIN_NAME_DESC", TokenRetiredsByNameMinOwnerAsc = "TOKEN_RETIREDS_BY_NAME_MIN_OWNER_ASC", TokenRetiredsByNameMinOwnerDesc = "TOKEN_RETIREDS_BY_NAME_MIN_OWNER_DESC", TokenRetiredsByNameMinReasonAsc = "TOKEN_RETIREDS_BY_NAME_MIN_REASON_ASC", TokenRetiredsByNameMinReasonDesc = "TOKEN_RETIREDS_BY_NAME_MIN_REASON_DESC", TokenRetiredsByNameStddevPopulationAidAsc = "TOKEN_RETIREDS_BY_NAME_STDDEV_POPULATION_AID_ASC", TokenRetiredsByNameStddevPopulationAidDesc = "TOKEN_RETIREDS_BY_NAME_STDDEV_POPULATION_AID_DESC", TokenRetiredsByNameStddevPopulationAmountAsc = "TOKEN_RETIREDS_BY_NAME_STDDEV_POPULATION_AMOUNT_ASC", TokenRetiredsByNameStddevPopulationAmountDesc = "TOKEN_RETIREDS_BY_NAME_STDDEV_POPULATION_AMOUNT_DESC", TokenRetiredsByNameStddevPopulationIdAsc = "TOKEN_RETIREDS_BY_NAME_STDDEV_POPULATION_ID_ASC", TokenRetiredsByNameStddevPopulationIdDesc = "TOKEN_RETIREDS_BY_NAME_STDDEV_POPULATION_ID_DESC", TokenRetiredsByNameStddevPopulationJurisdictionAsc = "TOKEN_RETIREDS_BY_NAME_STDDEV_POPULATION_JURISDICTION_ASC", TokenRetiredsByNameStddevPopulationJurisdictionDesc = "TOKEN_RETIREDS_BY_NAME_STDDEV_POPULATION_JURISDICTION_DESC", TokenRetiredsByNameStddevPopulationNameAsc = "TOKEN_RETIREDS_BY_NAME_STDDEV_POPULATION_NAME_ASC", TokenRetiredsByNameStddevPopulationNameDesc = "TOKEN_RETIREDS_BY_NAME_STDDEV_POPULATION_NAME_DESC", TokenRetiredsByNameStddevPopulationOwnerAsc = "TOKEN_RETIREDS_BY_NAME_STDDEV_POPULATION_OWNER_ASC", TokenRetiredsByNameStddevPopulationOwnerDesc = "TOKEN_RETIREDS_BY_NAME_STDDEV_POPULATION_OWNER_DESC", TokenRetiredsByNameStddevPopulationReasonAsc = "TOKEN_RETIREDS_BY_NAME_STDDEV_POPULATION_REASON_ASC", TokenRetiredsByNameStddevPopulationReasonDesc = "TOKEN_RETIREDS_BY_NAME_STDDEV_POPULATION_REASON_DESC", TokenRetiredsByNameStddevSampleAidAsc = "TOKEN_RETIREDS_BY_NAME_STDDEV_SAMPLE_AID_ASC", TokenRetiredsByNameStddevSampleAidDesc = "TOKEN_RETIREDS_BY_NAME_STDDEV_SAMPLE_AID_DESC", TokenRetiredsByNameStddevSampleAmountAsc = "TOKEN_RETIREDS_BY_NAME_STDDEV_SAMPLE_AMOUNT_ASC", TokenRetiredsByNameStddevSampleAmountDesc = "TOKEN_RETIREDS_BY_NAME_STDDEV_SAMPLE_AMOUNT_DESC", TokenRetiredsByNameStddevSampleIdAsc = "TOKEN_RETIREDS_BY_NAME_STDDEV_SAMPLE_ID_ASC", TokenRetiredsByNameStddevSampleIdDesc = "TOKEN_RETIREDS_BY_NAME_STDDEV_SAMPLE_ID_DESC", TokenRetiredsByNameStddevSampleJurisdictionAsc = "TOKEN_RETIREDS_BY_NAME_STDDEV_SAMPLE_JURISDICTION_ASC", TokenRetiredsByNameStddevSampleJurisdictionDesc = "TOKEN_RETIREDS_BY_NAME_STDDEV_SAMPLE_JURISDICTION_DESC", TokenRetiredsByNameStddevSampleNameAsc = "TOKEN_RETIREDS_BY_NAME_STDDEV_SAMPLE_NAME_ASC", TokenRetiredsByNameStddevSampleNameDesc = "TOKEN_RETIREDS_BY_NAME_STDDEV_SAMPLE_NAME_DESC", TokenRetiredsByNameStddevSampleOwnerAsc = "TOKEN_RETIREDS_BY_NAME_STDDEV_SAMPLE_OWNER_ASC", TokenRetiredsByNameStddevSampleOwnerDesc = "TOKEN_RETIREDS_BY_NAME_STDDEV_SAMPLE_OWNER_DESC", TokenRetiredsByNameStddevSampleReasonAsc = "TOKEN_RETIREDS_BY_NAME_STDDEV_SAMPLE_REASON_ASC", TokenRetiredsByNameStddevSampleReasonDesc = "TOKEN_RETIREDS_BY_NAME_STDDEV_SAMPLE_REASON_DESC", TokenRetiredsByNameSumAidAsc = "TOKEN_RETIREDS_BY_NAME_SUM_AID_ASC", TokenRetiredsByNameSumAidDesc = "TOKEN_RETIREDS_BY_NAME_SUM_AID_DESC", TokenRetiredsByNameSumAmountAsc = "TOKEN_RETIREDS_BY_NAME_SUM_AMOUNT_ASC", TokenRetiredsByNameSumAmountDesc = "TOKEN_RETIREDS_BY_NAME_SUM_AMOUNT_DESC", TokenRetiredsByNameSumIdAsc = "TOKEN_RETIREDS_BY_NAME_SUM_ID_ASC", TokenRetiredsByNameSumIdDesc = "TOKEN_RETIREDS_BY_NAME_SUM_ID_DESC", TokenRetiredsByNameSumJurisdictionAsc = "TOKEN_RETIREDS_BY_NAME_SUM_JURISDICTION_ASC", TokenRetiredsByNameSumJurisdictionDesc = "TOKEN_RETIREDS_BY_NAME_SUM_JURISDICTION_DESC", TokenRetiredsByNameSumNameAsc = "TOKEN_RETIREDS_BY_NAME_SUM_NAME_ASC", TokenRetiredsByNameSumNameDesc = "TOKEN_RETIREDS_BY_NAME_SUM_NAME_DESC", TokenRetiredsByNameSumOwnerAsc = "TOKEN_RETIREDS_BY_NAME_SUM_OWNER_ASC", TokenRetiredsByNameSumOwnerDesc = "TOKEN_RETIREDS_BY_NAME_SUM_OWNER_DESC", TokenRetiredsByNameSumReasonAsc = "TOKEN_RETIREDS_BY_NAME_SUM_REASON_ASC", TokenRetiredsByNameSumReasonDesc = "TOKEN_RETIREDS_BY_NAME_SUM_REASON_DESC", TokenRetiredsByNameVariancePopulationAidAsc = "TOKEN_RETIREDS_BY_NAME_VARIANCE_POPULATION_AID_ASC", TokenRetiredsByNameVariancePopulationAidDesc = "TOKEN_RETIREDS_BY_NAME_VARIANCE_POPULATION_AID_DESC", TokenRetiredsByNameVariancePopulationAmountAsc = "TOKEN_RETIREDS_BY_NAME_VARIANCE_POPULATION_AMOUNT_ASC", TokenRetiredsByNameVariancePopulationAmountDesc = "TOKEN_RETIREDS_BY_NAME_VARIANCE_POPULATION_AMOUNT_DESC", TokenRetiredsByNameVariancePopulationIdAsc = "TOKEN_RETIREDS_BY_NAME_VARIANCE_POPULATION_ID_ASC", TokenRetiredsByNameVariancePopulationIdDesc = "TOKEN_RETIREDS_BY_NAME_VARIANCE_POPULATION_ID_DESC", TokenRetiredsByNameVariancePopulationJurisdictionAsc = "TOKEN_RETIREDS_BY_NAME_VARIANCE_POPULATION_JURISDICTION_ASC", TokenRetiredsByNameVariancePopulationJurisdictionDesc = "TOKEN_RETIREDS_BY_NAME_VARIANCE_POPULATION_JURISDICTION_DESC", TokenRetiredsByNameVariancePopulationNameAsc = "TOKEN_RETIREDS_BY_NAME_VARIANCE_POPULATION_NAME_ASC", TokenRetiredsByNameVariancePopulationNameDesc = "TOKEN_RETIREDS_BY_NAME_VARIANCE_POPULATION_NAME_DESC", TokenRetiredsByNameVariancePopulationOwnerAsc = "TOKEN_RETIREDS_BY_NAME_VARIANCE_POPULATION_OWNER_ASC", TokenRetiredsByNameVariancePopulationOwnerDesc = "TOKEN_RETIREDS_BY_NAME_VARIANCE_POPULATION_OWNER_DESC", TokenRetiredsByNameVariancePopulationReasonAsc = "TOKEN_RETIREDS_BY_NAME_VARIANCE_POPULATION_REASON_ASC", TokenRetiredsByNameVariancePopulationReasonDesc = "TOKEN_RETIREDS_BY_NAME_VARIANCE_POPULATION_REASON_DESC", TokenRetiredsByNameVarianceSampleAidAsc = "TOKEN_RETIREDS_BY_NAME_VARIANCE_SAMPLE_AID_ASC", TokenRetiredsByNameVarianceSampleAidDesc = "TOKEN_RETIREDS_BY_NAME_VARIANCE_SAMPLE_AID_DESC", TokenRetiredsByNameVarianceSampleAmountAsc = "TOKEN_RETIREDS_BY_NAME_VARIANCE_SAMPLE_AMOUNT_ASC", TokenRetiredsByNameVarianceSampleAmountDesc = "TOKEN_RETIREDS_BY_NAME_VARIANCE_SAMPLE_AMOUNT_DESC", TokenRetiredsByNameVarianceSampleIdAsc = "TOKEN_RETIREDS_BY_NAME_VARIANCE_SAMPLE_ID_ASC", TokenRetiredsByNameVarianceSampleIdDesc = "TOKEN_RETIREDS_BY_NAME_VARIANCE_SAMPLE_ID_DESC", TokenRetiredsByNameVarianceSampleJurisdictionAsc = "TOKEN_RETIREDS_BY_NAME_VARIANCE_SAMPLE_JURISDICTION_ASC", TokenRetiredsByNameVarianceSampleJurisdictionDesc = "TOKEN_RETIREDS_BY_NAME_VARIANCE_SAMPLE_JURISDICTION_DESC", TokenRetiredsByNameVarianceSampleNameAsc = "TOKEN_RETIREDS_BY_NAME_VARIANCE_SAMPLE_NAME_ASC", TokenRetiredsByNameVarianceSampleNameDesc = "TOKEN_RETIREDS_BY_NAME_VARIANCE_SAMPLE_NAME_DESC", TokenRetiredsByNameVarianceSampleOwnerAsc = "TOKEN_RETIREDS_BY_NAME_VARIANCE_SAMPLE_OWNER_ASC", TokenRetiredsByNameVarianceSampleOwnerDesc = "TOKEN_RETIREDS_BY_NAME_VARIANCE_SAMPLE_OWNER_DESC", TokenRetiredsByNameVarianceSampleReasonAsc = "TOKEN_RETIREDS_BY_NAME_VARIANCE_SAMPLE_REASON_ASC", TokenRetiredsByNameVarianceSampleReasonDesc = "TOKEN_RETIREDS_BY_NAME_VARIANCE_SAMPLE_REASON_DESC", TypeAsc = "TYPE_ASC", TypeDesc = "TYPE_DESC" } export type TokenCondition = { collection?: InputMaybe; id?: InputMaybe; index?: InputMaybe; name?: InputMaybe; }; export type TokenDataConnection = { __typename?: 'TokenDataConnection'; edges: Array; nodes: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type TokenDataEdge = { __typename?: 'TokenDataEdge'; cursor?: Maybe; node: TokenDatum; }; export declare enum TokenDataOrderBy { AidAsc = "AID_ASC", AidDesc = "AID_DESC", EncryptedAsc = "ENCRYPTED_ASC", EncryptedDesc = "ENCRYPTED_DESC", IdAsc = "ID_ASC", IdDesc = "ID_DESC", Natural = "NATURAL", PrimaryKeyAsc = "PRIMARY_KEY_ASC", PrimaryKeyDesc = "PRIMARY_KEY_DESC", ProofAsc = "PROOF_ASC", ProofDesc = "PROOF_DESC", TokenIdAsc = "TOKEN_ID_ASC", TokenIdDesc = "TOKEN_ID_DESC", TypeAsc = "TYPE_ASC", TypeDesc = "TYPE_DESC", UriAsc = "URI_ASC", UriDesc = "URI_DESC" } export type TokenDatum = Node & { __typename?: 'TokenDatum'; aid: Scalars['Int']['output']; encrypted: Scalars['Boolean']['output']; id: Scalars['String']['output']; nodeId: Scalars['ID']['output']; proof: Scalars['String']['output']; token?: Maybe; tokenId: Scalars['String']['output']; type: Scalars['String']['output']; uri: Scalars['String']['output']; }; export type TokenDatumCondition = { aid?: InputMaybe; encrypted?: InputMaybe; id?: InputMaybe; proof?: InputMaybe; tokenId?: InputMaybe; type?: InputMaybe; uri?: InputMaybe; }; export type TokenDatumFilter = { aid?: InputMaybe; and?: InputMaybe>; encrypted?: InputMaybe; id?: InputMaybe; not?: InputMaybe; or?: InputMaybe>; proof?: InputMaybe; token?: InputMaybe; tokenId?: InputMaybe; type?: InputMaybe; uri?: InputMaybe; }; export type TokenFilter = { and?: InputMaybe>; collection?: InputMaybe; entityByCollection?: InputMaybe; id?: InputMaybe; index?: InputMaybe; name?: InputMaybe; not?: InputMaybe; or?: InputMaybe>; tokenClassByName?: InputMaybe; tokenDataByTokenId?: InputMaybe; tokenDataByTokenIdExist?: InputMaybe; tokenRetiredsById?: InputMaybe; tokenRetiredsByIdExist?: InputMaybe; tokenTransactionsByTokenId?: InputMaybe; tokenTransactionsByTokenIdExist?: InputMaybe; }; export type TokenRetired = Node & { __typename?: 'TokenRetired'; aid: Scalars['Int']['output']; amount: Scalars['BigInt']['output']; id: Scalars['String']['output']; jurisdiction: Scalars['String']['output']; name: Scalars['String']['output']; nodeId: Scalars['ID']['output']; owner: Scalars['String']['output']; reason: Scalars['String']['output']; tokenById?: Maybe; tokenClassByName?: Maybe; }; export type TokenRetiredAggregates = { __typename?: 'TokenRetiredAggregates'; average?: Maybe; distinctCount?: Maybe; keys?: Maybe>; max?: Maybe; min?: Maybe; stddevPopulation?: Maybe; stddevSample?: Maybe; sum?: Maybe; variancePopulation?: Maybe; varianceSample?: Maybe; }; export type TokenRetiredAggregatesFilter = { average?: InputMaybe; distinctCount?: InputMaybe; filter?: InputMaybe; max?: InputMaybe; min?: InputMaybe; stddevPopulation?: InputMaybe; stddevSample?: InputMaybe; sum?: InputMaybe; variancePopulation?: InputMaybe; varianceSample?: InputMaybe; }; export type TokenRetiredAverageAggregateFilter = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenRetiredAverageAggregates = { __typename?: 'TokenRetiredAverageAggregates'; aid?: Maybe; amount?: Maybe; }; export type TokenRetiredCondition = { aid?: InputMaybe; amount?: InputMaybe; id?: InputMaybe; jurisdiction?: InputMaybe; name?: InputMaybe; owner?: InputMaybe; reason?: InputMaybe; }; export type TokenRetiredDistinctCountAggregateFilter = { aid?: InputMaybe; amount?: InputMaybe; id?: InputMaybe; jurisdiction?: InputMaybe; name?: InputMaybe; owner?: InputMaybe; reason?: InputMaybe; }; export type TokenRetiredDistinctCountAggregates = { __typename?: 'TokenRetiredDistinctCountAggregates'; aid?: Maybe; amount?: Maybe; id?: Maybe; jurisdiction?: Maybe; name?: Maybe; owner?: Maybe; reason?: Maybe; }; export type TokenRetiredFilter = { aid?: InputMaybe; amount?: InputMaybe; and?: InputMaybe>; id?: InputMaybe; jurisdiction?: InputMaybe; name?: InputMaybe; not?: InputMaybe; or?: InputMaybe>; owner?: InputMaybe; reason?: InputMaybe; tokenById?: InputMaybe; tokenClassByName?: InputMaybe; }; export declare enum TokenRetiredGroupBy { Amount = "AMOUNT", Id = "ID", Jurisdiction = "JURISDICTION", Name = "NAME", Owner = "OWNER", Reason = "REASON" } export type TokenRetiredHavingAverageInput = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenRetiredHavingDistinctCountInput = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenRetiredHavingInput = { AND?: InputMaybe>; OR?: InputMaybe>; average?: InputMaybe; distinctCount?: InputMaybe; max?: InputMaybe; min?: InputMaybe; stddevPopulation?: InputMaybe; stddevSample?: InputMaybe; sum?: InputMaybe; variancePopulation?: InputMaybe; varianceSample?: InputMaybe; }; export type TokenRetiredHavingMaxInput = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenRetiredHavingMinInput = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenRetiredHavingStddevPopulationInput = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenRetiredHavingStddevSampleInput = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenRetiredHavingSumInput = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenRetiredHavingVariancePopulationInput = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenRetiredHavingVarianceSampleInput = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenRetiredMaxAggregateFilter = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenRetiredMaxAggregates = { __typename?: 'TokenRetiredMaxAggregates'; aid?: Maybe; amount?: Maybe; }; export type TokenRetiredMinAggregateFilter = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenRetiredMinAggregates = { __typename?: 'TokenRetiredMinAggregates'; aid?: Maybe; amount?: Maybe; }; export type TokenRetiredStddevPopulationAggregateFilter = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenRetiredStddevPopulationAggregates = { __typename?: 'TokenRetiredStddevPopulationAggregates'; aid?: Maybe; amount?: Maybe; }; export type TokenRetiredStddevSampleAggregateFilter = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenRetiredStddevSampleAggregates = { __typename?: 'TokenRetiredStddevSampleAggregates'; aid?: Maybe; amount?: Maybe; }; export type TokenRetiredSumAggregateFilter = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenRetiredSumAggregates = { __typename?: 'TokenRetiredSumAggregates'; aid: Scalars['BigInt']['output']; amount: Scalars['BigFloat']['output']; }; export type TokenRetiredVariancePopulationAggregateFilter = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenRetiredVariancePopulationAggregates = { __typename?: 'TokenRetiredVariancePopulationAggregates'; aid?: Maybe; amount?: Maybe; }; export type TokenRetiredVarianceSampleAggregateFilter = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenRetiredVarianceSampleAggregates = { __typename?: 'TokenRetiredVarianceSampleAggregates'; aid?: Maybe; amount?: Maybe; }; export type TokenRetiredsConnection = { __typename?: 'TokenRetiredsConnection'; aggregates?: Maybe; edges: Array; groupedAggregates?: Maybe>; nodes: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type TokenRetiredsConnectionGroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; export type TokenRetiredsEdge = { __typename?: 'TokenRetiredsEdge'; cursor?: Maybe; node: TokenRetired; }; export declare enum TokenRetiredsOrderBy { AidAsc = "AID_ASC", AidDesc = "AID_DESC", AmountAsc = "AMOUNT_ASC", AmountDesc = "AMOUNT_DESC", IdAsc = "ID_ASC", IdDesc = "ID_DESC", JurisdictionAsc = "JURISDICTION_ASC", JurisdictionDesc = "JURISDICTION_DESC", NameAsc = "NAME_ASC", NameDesc = "NAME_DESC", Natural = "NATURAL", OwnerAsc = "OWNER_ASC", OwnerDesc = "OWNER_DESC", PrimaryKeyAsc = "PRIMARY_KEY_ASC", PrimaryKeyDesc = "PRIMARY_KEY_DESC", ReasonAsc = "REASON_ASC", ReasonDesc = "REASON_DESC" } export type TokenToManyTokenDatumFilter = { every?: InputMaybe; none?: InputMaybe; some?: InputMaybe; }; export type TokenToManyTokenRetiredFilter = { aggregates?: InputMaybe; every?: InputMaybe; none?: InputMaybe; some?: InputMaybe; }; export type TokenToManyTokenTransactionFilter = { aggregates?: InputMaybe; every?: InputMaybe; none?: InputMaybe; some?: InputMaybe; }; export type TokenTransaction = Node & { __typename?: 'TokenTransaction'; aid: Scalars['Int']['output']; amount: Scalars['BigInt']['output']; from: Scalars['String']['output']; nodeId: Scalars['ID']['output']; to: Scalars['String']['output']; token?: Maybe; tokenId: Scalars['String']['output']; }; export type TokenTransactionAggregates = { __typename?: 'TokenTransactionAggregates'; average?: Maybe; distinctCount?: Maybe; keys?: Maybe>; max?: Maybe; min?: Maybe; stddevPopulation?: Maybe; stddevSample?: Maybe; sum?: Maybe; variancePopulation?: Maybe; varianceSample?: Maybe; }; export type TokenTransactionAggregatesFilter = { average?: InputMaybe; distinctCount?: InputMaybe; filter?: InputMaybe; max?: InputMaybe; min?: InputMaybe; stddevPopulation?: InputMaybe; stddevSample?: InputMaybe; sum?: InputMaybe; variancePopulation?: InputMaybe; varianceSample?: InputMaybe; }; export type TokenTransactionAverageAggregateFilter = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenTransactionAverageAggregates = { __typename?: 'TokenTransactionAverageAggregates'; aid?: Maybe; amount?: Maybe; }; export type TokenTransactionCondition = { aid?: InputMaybe; amount?: InputMaybe; from?: InputMaybe; to?: InputMaybe; tokenId?: InputMaybe; }; export type TokenTransactionDistinctCountAggregateFilter = { aid?: InputMaybe; amount?: InputMaybe; from?: InputMaybe; to?: InputMaybe; tokenId?: InputMaybe; }; export type TokenTransactionDistinctCountAggregates = { __typename?: 'TokenTransactionDistinctCountAggregates'; aid?: Maybe; amount?: Maybe; from?: Maybe; to?: Maybe; tokenId?: Maybe; }; export type TokenTransactionFilter = { aid?: InputMaybe; amount?: InputMaybe; and?: InputMaybe>; from?: InputMaybe; not?: InputMaybe; or?: InputMaybe>; to?: InputMaybe; token?: InputMaybe; tokenId?: InputMaybe; }; export declare enum TokenTransactionGroupBy { Amount = "AMOUNT", From = "FROM", To = "TO", TokenId = "TOKEN_ID" } export type TokenTransactionHavingAverageInput = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenTransactionHavingDistinctCountInput = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenTransactionHavingInput = { AND?: InputMaybe>; OR?: InputMaybe>; average?: InputMaybe; distinctCount?: InputMaybe; max?: InputMaybe; min?: InputMaybe; stddevPopulation?: InputMaybe; stddevSample?: InputMaybe; sum?: InputMaybe; variancePopulation?: InputMaybe; varianceSample?: InputMaybe; }; export type TokenTransactionHavingMaxInput = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenTransactionHavingMinInput = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenTransactionHavingStddevPopulationInput = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenTransactionHavingStddevSampleInput = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenTransactionHavingSumInput = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenTransactionHavingVariancePopulationInput = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenTransactionHavingVarianceSampleInput = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenTransactionMaxAggregateFilter = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenTransactionMaxAggregates = { __typename?: 'TokenTransactionMaxAggregates'; aid?: Maybe; amount?: Maybe; }; export type TokenTransactionMinAggregateFilter = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenTransactionMinAggregates = { __typename?: 'TokenTransactionMinAggregates'; aid?: Maybe; amount?: Maybe; }; export type TokenTransactionStddevPopulationAggregateFilter = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenTransactionStddevPopulationAggregates = { __typename?: 'TokenTransactionStddevPopulationAggregates'; aid?: Maybe; amount?: Maybe; }; export type TokenTransactionStddevSampleAggregateFilter = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenTransactionStddevSampleAggregates = { __typename?: 'TokenTransactionStddevSampleAggregates'; aid?: Maybe; amount?: Maybe; }; export type TokenTransactionSumAggregateFilter = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenTransactionSumAggregates = { __typename?: 'TokenTransactionSumAggregates'; aid: Scalars['BigInt']['output']; amount: Scalars['BigFloat']['output']; }; export type TokenTransactionVariancePopulationAggregateFilter = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenTransactionVariancePopulationAggregates = { __typename?: 'TokenTransactionVariancePopulationAggregates'; aid?: Maybe; amount?: Maybe; }; export type TokenTransactionVarianceSampleAggregateFilter = { aid?: InputMaybe; amount?: InputMaybe; }; export type TokenTransactionVarianceSampleAggregates = { __typename?: 'TokenTransactionVarianceSampleAggregates'; aid?: Maybe; amount?: Maybe; }; export type TokenTransactionsConnection = { __typename?: 'TokenTransactionsConnection'; aggregates?: Maybe; edges: Array; groupedAggregates?: Maybe>; nodes: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type TokenTransactionsConnectionGroupedAggregatesArgs = { groupBy: Array; having?: InputMaybe; }; export type TokenTransactionsEdge = { __typename?: 'TokenTransactionsEdge'; cursor?: Maybe; node: TokenTransaction; }; export declare enum TokenTransactionsOrderBy { AidAsc = "AID_ASC", AidDesc = "AID_DESC", AmountAsc = "AMOUNT_ASC", AmountDesc = "AMOUNT_DESC", FromAsc = "FROM_ASC", FromDesc = "FROM_DESC", Natural = "NATURAL", PrimaryKeyAsc = "PRIMARY_KEY_ASC", PrimaryKeyDesc = "PRIMARY_KEY_DESC", TokenIdAsc = "TOKEN_ID_ASC", TokenIdDesc = "TOKEN_ID_DESC", ToAsc = "TO_ASC", ToDesc = "TO_DESC" } export type TokenomicsAccount = Node & { __typename?: 'TokenomicsAccount'; accountNumber: Scalars['Int']['output']; address: Scalars['String']['output']; availBalance: Scalars['BigInt']['output']; delegationsBalance: Scalars['BigInt']['output']; nodeId: Scalars['ID']['output']; rewardsBalance: Scalars['BigInt']['output']; totalBalance: Scalars['BigInt']['output']; type?: Maybe; }; export type TokenomicsAccountCondition = { accountNumber?: InputMaybe; address?: InputMaybe; availBalance?: InputMaybe; delegationsBalance?: InputMaybe; rewardsBalance?: InputMaybe; totalBalance?: InputMaybe; type?: InputMaybe; }; export type TokenomicsAccountFilter = { accountNumber?: InputMaybe; address?: InputMaybe; and?: InputMaybe>; availBalance?: InputMaybe; delegationsBalance?: InputMaybe; not?: InputMaybe; or?: InputMaybe>; rewardsBalance?: InputMaybe; totalBalance?: InputMaybe; type?: InputMaybe; }; export type TokenomicsAccountsConnection = { __typename?: 'TokenomicsAccountsConnection'; edges: Array; nodes: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type TokenomicsAccountsEdge = { __typename?: 'TokenomicsAccountsEdge'; cursor?: Maybe; node: TokenomicsAccount; }; export declare enum TokenomicsAccountsOrderBy { AccountNumberAsc = "ACCOUNT_NUMBER_ASC", AccountNumberDesc = "ACCOUNT_NUMBER_DESC", AddressAsc = "ADDRESS_ASC", AddressDesc = "ADDRESS_DESC", AvailBalanceAsc = "AVAIL_BALANCE_ASC", AvailBalanceDesc = "AVAIL_BALANCE_DESC", DelegationsBalanceAsc = "DELEGATIONS_BALANCE_ASC", DelegationsBalanceDesc = "DELEGATIONS_BALANCE_DESC", Natural = "NATURAL", PrimaryKeyAsc = "PRIMARY_KEY_ASC", PrimaryKeyDesc = "PRIMARY_KEY_DESC", RewardsBalanceAsc = "REWARDS_BALANCE_ASC", RewardsBalanceDesc = "REWARDS_BALANCE_DESC", TotalBalanceAsc = "TOTAL_BALANCE_ASC", TotalBalanceDesc = "TOTAL_BALANCE_DESC", TypeAsc = "TYPE_ASC", TypeDesc = "TYPE_DESC" } export type TokensConnection = { __typename?: 'TokensConnection'; edges: Array; nodes: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type TokensEdge = { __typename?: 'TokensEdge'; cursor?: Maybe; node: Token; }; export declare enum TokensOrderBy { CollectionAsc = "COLLECTION_ASC", CollectionDesc = "COLLECTION_DESC", IdAsc = "ID_ASC", IdDesc = "ID_DESC", IndexAsc = "INDEX_ASC", IndexDesc = "INDEX_DESC", NameAsc = "NAME_ASC", NameDesc = "NAME_DESC", Natural = "NATURAL", PrimaryKeyAsc = "PRIMARY_KEY_ASC", PrimaryKeyDesc = "PRIMARY_KEY_DESC", TokenRetiredsByIdAverageAidAsc = "TOKEN_RETIREDS_BY_ID_AVERAGE_AID_ASC", TokenRetiredsByIdAverageAidDesc = "TOKEN_RETIREDS_BY_ID_AVERAGE_AID_DESC", TokenRetiredsByIdAverageAmountAsc = "TOKEN_RETIREDS_BY_ID_AVERAGE_AMOUNT_ASC", TokenRetiredsByIdAverageAmountDesc = "TOKEN_RETIREDS_BY_ID_AVERAGE_AMOUNT_DESC", TokenRetiredsByIdAverageIdAsc = "TOKEN_RETIREDS_BY_ID_AVERAGE_ID_ASC", TokenRetiredsByIdAverageIdDesc = "TOKEN_RETIREDS_BY_ID_AVERAGE_ID_DESC", TokenRetiredsByIdAverageJurisdictionAsc = "TOKEN_RETIREDS_BY_ID_AVERAGE_JURISDICTION_ASC", TokenRetiredsByIdAverageJurisdictionDesc = "TOKEN_RETIREDS_BY_ID_AVERAGE_JURISDICTION_DESC", TokenRetiredsByIdAverageNameAsc = "TOKEN_RETIREDS_BY_ID_AVERAGE_NAME_ASC", TokenRetiredsByIdAverageNameDesc = "TOKEN_RETIREDS_BY_ID_AVERAGE_NAME_DESC", TokenRetiredsByIdAverageOwnerAsc = "TOKEN_RETIREDS_BY_ID_AVERAGE_OWNER_ASC", TokenRetiredsByIdAverageOwnerDesc = "TOKEN_RETIREDS_BY_ID_AVERAGE_OWNER_DESC", TokenRetiredsByIdAverageReasonAsc = "TOKEN_RETIREDS_BY_ID_AVERAGE_REASON_ASC", TokenRetiredsByIdAverageReasonDesc = "TOKEN_RETIREDS_BY_ID_AVERAGE_REASON_DESC", TokenRetiredsByIdCountAsc = "TOKEN_RETIREDS_BY_ID_COUNT_ASC", TokenRetiredsByIdCountDesc = "TOKEN_RETIREDS_BY_ID_COUNT_DESC", TokenRetiredsByIdDistinctCountAidAsc = "TOKEN_RETIREDS_BY_ID_DISTINCT_COUNT_AID_ASC", TokenRetiredsByIdDistinctCountAidDesc = "TOKEN_RETIREDS_BY_ID_DISTINCT_COUNT_AID_DESC", TokenRetiredsByIdDistinctCountAmountAsc = "TOKEN_RETIREDS_BY_ID_DISTINCT_COUNT_AMOUNT_ASC", TokenRetiredsByIdDistinctCountAmountDesc = "TOKEN_RETIREDS_BY_ID_DISTINCT_COUNT_AMOUNT_DESC", TokenRetiredsByIdDistinctCountIdAsc = "TOKEN_RETIREDS_BY_ID_DISTINCT_COUNT_ID_ASC", TokenRetiredsByIdDistinctCountIdDesc = "TOKEN_RETIREDS_BY_ID_DISTINCT_COUNT_ID_DESC", TokenRetiredsByIdDistinctCountJurisdictionAsc = "TOKEN_RETIREDS_BY_ID_DISTINCT_COUNT_JURISDICTION_ASC", TokenRetiredsByIdDistinctCountJurisdictionDesc = "TOKEN_RETIREDS_BY_ID_DISTINCT_COUNT_JURISDICTION_DESC", TokenRetiredsByIdDistinctCountNameAsc = "TOKEN_RETIREDS_BY_ID_DISTINCT_COUNT_NAME_ASC", TokenRetiredsByIdDistinctCountNameDesc = "TOKEN_RETIREDS_BY_ID_DISTINCT_COUNT_NAME_DESC", TokenRetiredsByIdDistinctCountOwnerAsc = "TOKEN_RETIREDS_BY_ID_DISTINCT_COUNT_OWNER_ASC", TokenRetiredsByIdDistinctCountOwnerDesc = "TOKEN_RETIREDS_BY_ID_DISTINCT_COUNT_OWNER_DESC", TokenRetiredsByIdDistinctCountReasonAsc = "TOKEN_RETIREDS_BY_ID_DISTINCT_COUNT_REASON_ASC", TokenRetiredsByIdDistinctCountReasonDesc = "TOKEN_RETIREDS_BY_ID_DISTINCT_COUNT_REASON_DESC", TokenRetiredsByIdMaxAidAsc = "TOKEN_RETIREDS_BY_ID_MAX_AID_ASC", TokenRetiredsByIdMaxAidDesc = "TOKEN_RETIREDS_BY_ID_MAX_AID_DESC", TokenRetiredsByIdMaxAmountAsc = "TOKEN_RETIREDS_BY_ID_MAX_AMOUNT_ASC", TokenRetiredsByIdMaxAmountDesc = "TOKEN_RETIREDS_BY_ID_MAX_AMOUNT_DESC", TokenRetiredsByIdMaxIdAsc = "TOKEN_RETIREDS_BY_ID_MAX_ID_ASC", TokenRetiredsByIdMaxIdDesc = "TOKEN_RETIREDS_BY_ID_MAX_ID_DESC", TokenRetiredsByIdMaxJurisdictionAsc = "TOKEN_RETIREDS_BY_ID_MAX_JURISDICTION_ASC", TokenRetiredsByIdMaxJurisdictionDesc = "TOKEN_RETIREDS_BY_ID_MAX_JURISDICTION_DESC", TokenRetiredsByIdMaxNameAsc = "TOKEN_RETIREDS_BY_ID_MAX_NAME_ASC", TokenRetiredsByIdMaxNameDesc = "TOKEN_RETIREDS_BY_ID_MAX_NAME_DESC", TokenRetiredsByIdMaxOwnerAsc = "TOKEN_RETIREDS_BY_ID_MAX_OWNER_ASC", TokenRetiredsByIdMaxOwnerDesc = "TOKEN_RETIREDS_BY_ID_MAX_OWNER_DESC", TokenRetiredsByIdMaxReasonAsc = "TOKEN_RETIREDS_BY_ID_MAX_REASON_ASC", TokenRetiredsByIdMaxReasonDesc = "TOKEN_RETIREDS_BY_ID_MAX_REASON_DESC", TokenRetiredsByIdMinAidAsc = "TOKEN_RETIREDS_BY_ID_MIN_AID_ASC", TokenRetiredsByIdMinAidDesc = "TOKEN_RETIREDS_BY_ID_MIN_AID_DESC", TokenRetiredsByIdMinAmountAsc = "TOKEN_RETIREDS_BY_ID_MIN_AMOUNT_ASC", TokenRetiredsByIdMinAmountDesc = "TOKEN_RETIREDS_BY_ID_MIN_AMOUNT_DESC", TokenRetiredsByIdMinIdAsc = "TOKEN_RETIREDS_BY_ID_MIN_ID_ASC", TokenRetiredsByIdMinIdDesc = "TOKEN_RETIREDS_BY_ID_MIN_ID_DESC", TokenRetiredsByIdMinJurisdictionAsc = "TOKEN_RETIREDS_BY_ID_MIN_JURISDICTION_ASC", TokenRetiredsByIdMinJurisdictionDesc = "TOKEN_RETIREDS_BY_ID_MIN_JURISDICTION_DESC", TokenRetiredsByIdMinNameAsc = "TOKEN_RETIREDS_BY_ID_MIN_NAME_ASC", TokenRetiredsByIdMinNameDesc = "TOKEN_RETIREDS_BY_ID_MIN_NAME_DESC", TokenRetiredsByIdMinOwnerAsc = "TOKEN_RETIREDS_BY_ID_MIN_OWNER_ASC", TokenRetiredsByIdMinOwnerDesc = "TOKEN_RETIREDS_BY_ID_MIN_OWNER_DESC", TokenRetiredsByIdMinReasonAsc = "TOKEN_RETIREDS_BY_ID_MIN_REASON_ASC", TokenRetiredsByIdMinReasonDesc = "TOKEN_RETIREDS_BY_ID_MIN_REASON_DESC", TokenRetiredsByIdStddevPopulationAidAsc = "TOKEN_RETIREDS_BY_ID_STDDEV_POPULATION_AID_ASC", TokenRetiredsByIdStddevPopulationAidDesc = "TOKEN_RETIREDS_BY_ID_STDDEV_POPULATION_AID_DESC", TokenRetiredsByIdStddevPopulationAmountAsc = "TOKEN_RETIREDS_BY_ID_STDDEV_POPULATION_AMOUNT_ASC", TokenRetiredsByIdStddevPopulationAmountDesc = "TOKEN_RETIREDS_BY_ID_STDDEV_POPULATION_AMOUNT_DESC", TokenRetiredsByIdStddevPopulationIdAsc = "TOKEN_RETIREDS_BY_ID_STDDEV_POPULATION_ID_ASC", TokenRetiredsByIdStddevPopulationIdDesc = "TOKEN_RETIREDS_BY_ID_STDDEV_POPULATION_ID_DESC", TokenRetiredsByIdStddevPopulationJurisdictionAsc = "TOKEN_RETIREDS_BY_ID_STDDEV_POPULATION_JURISDICTION_ASC", TokenRetiredsByIdStddevPopulationJurisdictionDesc = "TOKEN_RETIREDS_BY_ID_STDDEV_POPULATION_JURISDICTION_DESC", TokenRetiredsByIdStddevPopulationNameAsc = "TOKEN_RETIREDS_BY_ID_STDDEV_POPULATION_NAME_ASC", TokenRetiredsByIdStddevPopulationNameDesc = "TOKEN_RETIREDS_BY_ID_STDDEV_POPULATION_NAME_DESC", TokenRetiredsByIdStddevPopulationOwnerAsc = "TOKEN_RETIREDS_BY_ID_STDDEV_POPULATION_OWNER_ASC", TokenRetiredsByIdStddevPopulationOwnerDesc = "TOKEN_RETIREDS_BY_ID_STDDEV_POPULATION_OWNER_DESC", TokenRetiredsByIdStddevPopulationReasonAsc = "TOKEN_RETIREDS_BY_ID_STDDEV_POPULATION_REASON_ASC", TokenRetiredsByIdStddevPopulationReasonDesc = "TOKEN_RETIREDS_BY_ID_STDDEV_POPULATION_REASON_DESC", TokenRetiredsByIdStddevSampleAidAsc = "TOKEN_RETIREDS_BY_ID_STDDEV_SAMPLE_AID_ASC", TokenRetiredsByIdStddevSampleAidDesc = "TOKEN_RETIREDS_BY_ID_STDDEV_SAMPLE_AID_DESC", TokenRetiredsByIdStddevSampleAmountAsc = "TOKEN_RETIREDS_BY_ID_STDDEV_SAMPLE_AMOUNT_ASC", TokenRetiredsByIdStddevSampleAmountDesc = "TOKEN_RETIREDS_BY_ID_STDDEV_SAMPLE_AMOUNT_DESC", TokenRetiredsByIdStddevSampleIdAsc = "TOKEN_RETIREDS_BY_ID_STDDEV_SAMPLE_ID_ASC", TokenRetiredsByIdStddevSampleIdDesc = "TOKEN_RETIREDS_BY_ID_STDDEV_SAMPLE_ID_DESC", TokenRetiredsByIdStddevSampleJurisdictionAsc = "TOKEN_RETIREDS_BY_ID_STDDEV_SAMPLE_JURISDICTION_ASC", TokenRetiredsByIdStddevSampleJurisdictionDesc = "TOKEN_RETIREDS_BY_ID_STDDEV_SAMPLE_JURISDICTION_DESC", TokenRetiredsByIdStddevSampleNameAsc = "TOKEN_RETIREDS_BY_ID_STDDEV_SAMPLE_NAME_ASC", TokenRetiredsByIdStddevSampleNameDesc = "TOKEN_RETIREDS_BY_ID_STDDEV_SAMPLE_NAME_DESC", TokenRetiredsByIdStddevSampleOwnerAsc = "TOKEN_RETIREDS_BY_ID_STDDEV_SAMPLE_OWNER_ASC", TokenRetiredsByIdStddevSampleOwnerDesc = "TOKEN_RETIREDS_BY_ID_STDDEV_SAMPLE_OWNER_DESC", TokenRetiredsByIdStddevSampleReasonAsc = "TOKEN_RETIREDS_BY_ID_STDDEV_SAMPLE_REASON_ASC", TokenRetiredsByIdStddevSampleReasonDesc = "TOKEN_RETIREDS_BY_ID_STDDEV_SAMPLE_REASON_DESC", TokenRetiredsByIdSumAidAsc = "TOKEN_RETIREDS_BY_ID_SUM_AID_ASC", TokenRetiredsByIdSumAidDesc = "TOKEN_RETIREDS_BY_ID_SUM_AID_DESC", TokenRetiredsByIdSumAmountAsc = "TOKEN_RETIREDS_BY_ID_SUM_AMOUNT_ASC", TokenRetiredsByIdSumAmountDesc = "TOKEN_RETIREDS_BY_ID_SUM_AMOUNT_DESC", TokenRetiredsByIdSumIdAsc = "TOKEN_RETIREDS_BY_ID_SUM_ID_ASC", TokenRetiredsByIdSumIdDesc = "TOKEN_RETIREDS_BY_ID_SUM_ID_DESC", TokenRetiredsByIdSumJurisdictionAsc = "TOKEN_RETIREDS_BY_ID_SUM_JURISDICTION_ASC", TokenRetiredsByIdSumJurisdictionDesc = "TOKEN_RETIREDS_BY_ID_SUM_JURISDICTION_DESC", TokenRetiredsByIdSumNameAsc = "TOKEN_RETIREDS_BY_ID_SUM_NAME_ASC", TokenRetiredsByIdSumNameDesc = "TOKEN_RETIREDS_BY_ID_SUM_NAME_DESC", TokenRetiredsByIdSumOwnerAsc = "TOKEN_RETIREDS_BY_ID_SUM_OWNER_ASC", TokenRetiredsByIdSumOwnerDesc = "TOKEN_RETIREDS_BY_ID_SUM_OWNER_DESC", TokenRetiredsByIdSumReasonAsc = "TOKEN_RETIREDS_BY_ID_SUM_REASON_ASC", TokenRetiredsByIdSumReasonDesc = "TOKEN_RETIREDS_BY_ID_SUM_REASON_DESC", TokenRetiredsByIdVariancePopulationAidAsc = "TOKEN_RETIREDS_BY_ID_VARIANCE_POPULATION_AID_ASC", TokenRetiredsByIdVariancePopulationAidDesc = "TOKEN_RETIREDS_BY_ID_VARIANCE_POPULATION_AID_DESC", TokenRetiredsByIdVariancePopulationAmountAsc = "TOKEN_RETIREDS_BY_ID_VARIANCE_POPULATION_AMOUNT_ASC", TokenRetiredsByIdVariancePopulationAmountDesc = "TOKEN_RETIREDS_BY_ID_VARIANCE_POPULATION_AMOUNT_DESC", TokenRetiredsByIdVariancePopulationIdAsc = "TOKEN_RETIREDS_BY_ID_VARIANCE_POPULATION_ID_ASC", TokenRetiredsByIdVariancePopulationIdDesc = "TOKEN_RETIREDS_BY_ID_VARIANCE_POPULATION_ID_DESC", TokenRetiredsByIdVariancePopulationJurisdictionAsc = "TOKEN_RETIREDS_BY_ID_VARIANCE_POPULATION_JURISDICTION_ASC", TokenRetiredsByIdVariancePopulationJurisdictionDesc = "TOKEN_RETIREDS_BY_ID_VARIANCE_POPULATION_JURISDICTION_DESC", TokenRetiredsByIdVariancePopulationNameAsc = "TOKEN_RETIREDS_BY_ID_VARIANCE_POPULATION_NAME_ASC", TokenRetiredsByIdVariancePopulationNameDesc = "TOKEN_RETIREDS_BY_ID_VARIANCE_POPULATION_NAME_DESC", TokenRetiredsByIdVariancePopulationOwnerAsc = "TOKEN_RETIREDS_BY_ID_VARIANCE_POPULATION_OWNER_ASC", TokenRetiredsByIdVariancePopulationOwnerDesc = "TOKEN_RETIREDS_BY_ID_VARIANCE_POPULATION_OWNER_DESC", TokenRetiredsByIdVariancePopulationReasonAsc = "TOKEN_RETIREDS_BY_ID_VARIANCE_POPULATION_REASON_ASC", TokenRetiredsByIdVariancePopulationReasonDesc = "TOKEN_RETIREDS_BY_ID_VARIANCE_POPULATION_REASON_DESC", TokenRetiredsByIdVarianceSampleAidAsc = "TOKEN_RETIREDS_BY_ID_VARIANCE_SAMPLE_AID_ASC", TokenRetiredsByIdVarianceSampleAidDesc = "TOKEN_RETIREDS_BY_ID_VARIANCE_SAMPLE_AID_DESC", TokenRetiredsByIdVarianceSampleAmountAsc = "TOKEN_RETIREDS_BY_ID_VARIANCE_SAMPLE_AMOUNT_ASC", TokenRetiredsByIdVarianceSampleAmountDesc = "TOKEN_RETIREDS_BY_ID_VARIANCE_SAMPLE_AMOUNT_DESC", TokenRetiredsByIdVarianceSampleIdAsc = "TOKEN_RETIREDS_BY_ID_VARIANCE_SAMPLE_ID_ASC", TokenRetiredsByIdVarianceSampleIdDesc = "TOKEN_RETIREDS_BY_ID_VARIANCE_SAMPLE_ID_DESC", TokenRetiredsByIdVarianceSampleJurisdictionAsc = "TOKEN_RETIREDS_BY_ID_VARIANCE_SAMPLE_JURISDICTION_ASC", TokenRetiredsByIdVarianceSampleJurisdictionDesc = "TOKEN_RETIREDS_BY_ID_VARIANCE_SAMPLE_JURISDICTION_DESC", TokenRetiredsByIdVarianceSampleNameAsc = "TOKEN_RETIREDS_BY_ID_VARIANCE_SAMPLE_NAME_ASC", TokenRetiredsByIdVarianceSampleNameDesc = "TOKEN_RETIREDS_BY_ID_VARIANCE_SAMPLE_NAME_DESC", TokenRetiredsByIdVarianceSampleOwnerAsc = "TOKEN_RETIREDS_BY_ID_VARIANCE_SAMPLE_OWNER_ASC", TokenRetiredsByIdVarianceSampleOwnerDesc = "TOKEN_RETIREDS_BY_ID_VARIANCE_SAMPLE_OWNER_DESC", TokenRetiredsByIdVarianceSampleReasonAsc = "TOKEN_RETIREDS_BY_ID_VARIANCE_SAMPLE_REASON_ASC", TokenRetiredsByIdVarianceSampleReasonDesc = "TOKEN_RETIREDS_BY_ID_VARIANCE_SAMPLE_REASON_DESC", TokenTransactionsByTokenIdAverageAidAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_AVERAGE_AID_ASC", TokenTransactionsByTokenIdAverageAidDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_AVERAGE_AID_DESC", TokenTransactionsByTokenIdAverageAmountAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_AVERAGE_AMOUNT_ASC", TokenTransactionsByTokenIdAverageAmountDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_AVERAGE_AMOUNT_DESC", TokenTransactionsByTokenIdAverageFromAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_AVERAGE_FROM_ASC", TokenTransactionsByTokenIdAverageFromDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_AVERAGE_FROM_DESC", TokenTransactionsByTokenIdAverageTokenIdAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_AVERAGE_TOKEN_ID_ASC", TokenTransactionsByTokenIdAverageTokenIdDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_AVERAGE_TOKEN_ID_DESC", TokenTransactionsByTokenIdAverageToAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_AVERAGE_TO_ASC", TokenTransactionsByTokenIdAverageToDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_AVERAGE_TO_DESC", TokenTransactionsByTokenIdCountAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_COUNT_ASC", TokenTransactionsByTokenIdCountDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_COUNT_DESC", TokenTransactionsByTokenIdDistinctCountAidAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_DISTINCT_COUNT_AID_ASC", TokenTransactionsByTokenIdDistinctCountAidDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_DISTINCT_COUNT_AID_DESC", TokenTransactionsByTokenIdDistinctCountAmountAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_DISTINCT_COUNT_AMOUNT_ASC", TokenTransactionsByTokenIdDistinctCountAmountDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_DISTINCT_COUNT_AMOUNT_DESC", TokenTransactionsByTokenIdDistinctCountFromAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_DISTINCT_COUNT_FROM_ASC", TokenTransactionsByTokenIdDistinctCountFromDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_DISTINCT_COUNT_FROM_DESC", TokenTransactionsByTokenIdDistinctCountTokenIdAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_DISTINCT_COUNT_TOKEN_ID_ASC", TokenTransactionsByTokenIdDistinctCountTokenIdDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_DISTINCT_COUNT_TOKEN_ID_DESC", TokenTransactionsByTokenIdDistinctCountToAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_DISTINCT_COUNT_TO_ASC", TokenTransactionsByTokenIdDistinctCountToDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_DISTINCT_COUNT_TO_DESC", TokenTransactionsByTokenIdMaxAidAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_MAX_AID_ASC", TokenTransactionsByTokenIdMaxAidDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_MAX_AID_DESC", TokenTransactionsByTokenIdMaxAmountAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_MAX_AMOUNT_ASC", TokenTransactionsByTokenIdMaxAmountDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_MAX_AMOUNT_DESC", TokenTransactionsByTokenIdMaxFromAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_MAX_FROM_ASC", TokenTransactionsByTokenIdMaxFromDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_MAX_FROM_DESC", TokenTransactionsByTokenIdMaxTokenIdAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_MAX_TOKEN_ID_ASC", TokenTransactionsByTokenIdMaxTokenIdDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_MAX_TOKEN_ID_DESC", TokenTransactionsByTokenIdMaxToAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_MAX_TO_ASC", TokenTransactionsByTokenIdMaxToDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_MAX_TO_DESC", TokenTransactionsByTokenIdMinAidAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_MIN_AID_ASC", TokenTransactionsByTokenIdMinAidDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_MIN_AID_DESC", TokenTransactionsByTokenIdMinAmountAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_MIN_AMOUNT_ASC", TokenTransactionsByTokenIdMinAmountDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_MIN_AMOUNT_DESC", TokenTransactionsByTokenIdMinFromAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_MIN_FROM_ASC", TokenTransactionsByTokenIdMinFromDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_MIN_FROM_DESC", TokenTransactionsByTokenIdMinTokenIdAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_MIN_TOKEN_ID_ASC", TokenTransactionsByTokenIdMinTokenIdDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_MIN_TOKEN_ID_DESC", TokenTransactionsByTokenIdMinToAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_MIN_TO_ASC", TokenTransactionsByTokenIdMinToDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_MIN_TO_DESC", TokenTransactionsByTokenIdStddevPopulationAidAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_STDDEV_POPULATION_AID_ASC", TokenTransactionsByTokenIdStddevPopulationAidDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_STDDEV_POPULATION_AID_DESC", TokenTransactionsByTokenIdStddevPopulationAmountAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_STDDEV_POPULATION_AMOUNT_ASC", TokenTransactionsByTokenIdStddevPopulationAmountDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_STDDEV_POPULATION_AMOUNT_DESC", TokenTransactionsByTokenIdStddevPopulationFromAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_STDDEV_POPULATION_FROM_ASC", TokenTransactionsByTokenIdStddevPopulationFromDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_STDDEV_POPULATION_FROM_DESC", TokenTransactionsByTokenIdStddevPopulationTokenIdAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_STDDEV_POPULATION_TOKEN_ID_ASC", TokenTransactionsByTokenIdStddevPopulationTokenIdDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_STDDEV_POPULATION_TOKEN_ID_DESC", TokenTransactionsByTokenIdStddevPopulationToAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_STDDEV_POPULATION_TO_ASC", TokenTransactionsByTokenIdStddevPopulationToDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_STDDEV_POPULATION_TO_DESC", TokenTransactionsByTokenIdStddevSampleAidAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_STDDEV_SAMPLE_AID_ASC", TokenTransactionsByTokenIdStddevSampleAidDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_STDDEV_SAMPLE_AID_DESC", TokenTransactionsByTokenIdStddevSampleAmountAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_STDDEV_SAMPLE_AMOUNT_ASC", TokenTransactionsByTokenIdStddevSampleAmountDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_STDDEV_SAMPLE_AMOUNT_DESC", TokenTransactionsByTokenIdStddevSampleFromAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_STDDEV_SAMPLE_FROM_ASC", TokenTransactionsByTokenIdStddevSampleFromDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_STDDEV_SAMPLE_FROM_DESC", TokenTransactionsByTokenIdStddevSampleTokenIdAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_STDDEV_SAMPLE_TOKEN_ID_ASC", TokenTransactionsByTokenIdStddevSampleTokenIdDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_STDDEV_SAMPLE_TOKEN_ID_DESC", TokenTransactionsByTokenIdStddevSampleToAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_STDDEV_SAMPLE_TO_ASC", TokenTransactionsByTokenIdStddevSampleToDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_STDDEV_SAMPLE_TO_DESC", TokenTransactionsByTokenIdSumAidAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_SUM_AID_ASC", TokenTransactionsByTokenIdSumAidDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_SUM_AID_DESC", TokenTransactionsByTokenIdSumAmountAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_SUM_AMOUNT_ASC", TokenTransactionsByTokenIdSumAmountDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_SUM_AMOUNT_DESC", TokenTransactionsByTokenIdSumFromAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_SUM_FROM_ASC", TokenTransactionsByTokenIdSumFromDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_SUM_FROM_DESC", TokenTransactionsByTokenIdSumTokenIdAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_SUM_TOKEN_ID_ASC", TokenTransactionsByTokenIdSumTokenIdDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_SUM_TOKEN_ID_DESC", TokenTransactionsByTokenIdSumToAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_SUM_TO_ASC", TokenTransactionsByTokenIdSumToDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_SUM_TO_DESC", TokenTransactionsByTokenIdVariancePopulationAidAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_VARIANCE_POPULATION_AID_ASC", TokenTransactionsByTokenIdVariancePopulationAidDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_VARIANCE_POPULATION_AID_DESC", TokenTransactionsByTokenIdVariancePopulationAmountAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_VARIANCE_POPULATION_AMOUNT_ASC", TokenTransactionsByTokenIdVariancePopulationAmountDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_VARIANCE_POPULATION_AMOUNT_DESC", TokenTransactionsByTokenIdVariancePopulationFromAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_VARIANCE_POPULATION_FROM_ASC", TokenTransactionsByTokenIdVariancePopulationFromDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_VARIANCE_POPULATION_FROM_DESC", TokenTransactionsByTokenIdVariancePopulationTokenIdAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_VARIANCE_POPULATION_TOKEN_ID_ASC", TokenTransactionsByTokenIdVariancePopulationTokenIdDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_VARIANCE_POPULATION_TOKEN_ID_DESC", TokenTransactionsByTokenIdVariancePopulationToAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_VARIANCE_POPULATION_TO_ASC", TokenTransactionsByTokenIdVariancePopulationToDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_VARIANCE_POPULATION_TO_DESC", TokenTransactionsByTokenIdVarianceSampleAidAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_VARIANCE_SAMPLE_AID_ASC", TokenTransactionsByTokenIdVarianceSampleAidDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_VARIANCE_SAMPLE_AID_DESC", TokenTransactionsByTokenIdVarianceSampleAmountAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_VARIANCE_SAMPLE_AMOUNT_ASC", TokenTransactionsByTokenIdVarianceSampleAmountDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_VARIANCE_SAMPLE_AMOUNT_DESC", TokenTransactionsByTokenIdVarianceSampleFromAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_VARIANCE_SAMPLE_FROM_ASC", TokenTransactionsByTokenIdVarianceSampleFromDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_VARIANCE_SAMPLE_FROM_DESC", TokenTransactionsByTokenIdVarianceSampleTokenIdAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_VARIANCE_SAMPLE_TOKEN_ID_ASC", TokenTransactionsByTokenIdVarianceSampleTokenIdDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_VARIANCE_SAMPLE_TOKEN_ID_DESC", TokenTransactionsByTokenIdVarianceSampleToAsc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_VARIANCE_SAMPLE_TO_ASC", TokenTransactionsByTokenIdVarianceSampleToDesc = "TOKEN_TRANSACTIONS_BY_TOKEN_ID_VARIANCE_SAMPLE_TO_DESC" } export type Transaction = Node & { __typename?: 'Transaction'; code: Scalars['Int']['output']; fee: Scalars['JSON']['output']; gasUsed: Scalars['String']['output']; gasWanted: Scalars['String']['output']; hash: Scalars['String']['output']; height: Scalars['Int']['output']; memo: Scalars['String']['output']; messagesByTransactionHash: MessagesConnection; nodeId: Scalars['ID']['output']; time: Scalars['Datetime']['output']; }; export type TransactionMessagesByTransactionHashArgs = { after?: InputMaybe; before?: InputMaybe; condition?: InputMaybe; filter?: InputMaybe; first?: InputMaybe; last?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; }; export type TransactionCondition = { code?: InputMaybe; fee?: InputMaybe; gasUsed?: InputMaybe; gasWanted?: InputMaybe; hash?: InputMaybe; height?: InputMaybe; memo?: InputMaybe; time?: InputMaybe; }; export type TransactionFilter = { and?: InputMaybe>; code?: InputMaybe; fee?: InputMaybe; gasUsed?: InputMaybe; gasWanted?: InputMaybe; hash?: InputMaybe; height?: InputMaybe; memo?: InputMaybe; messagesByTransactionHash?: InputMaybe; messagesByTransactionHashExist?: InputMaybe; not?: InputMaybe; or?: InputMaybe>; time?: InputMaybe; }; export type TransactionToManyMessageFilter = { every?: InputMaybe; none?: InputMaybe; some?: InputMaybe; }; export type TransactionsConnection = { __typename?: 'TransactionsConnection'; edges: Array; nodes: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type TransactionsEdge = { __typename?: 'TransactionsEdge'; cursor?: Maybe; node: Transaction; }; export declare enum TransactionsOrderBy { CodeAsc = "CODE_ASC", CodeDesc = "CODE_DESC", FeeAsc = "FEE_ASC", FeeDesc = "FEE_DESC", GasUsedAsc = "GAS_USED_ASC", GasUsedDesc = "GAS_USED_DESC", GasWantedAsc = "GAS_WANTED_ASC", GasWantedDesc = "GAS_WANTED_DESC", HashAsc = "HASH_ASC", HashDesc = "HASH_DESC", HeightAsc = "HEIGHT_ASC", HeightDesc = "HEIGHT_DESC", MemoAsc = "MEMO_ASC", MemoDesc = "MEMO_DESC", Natural = "NATURAL", PrimaryKeyAsc = "PRIMARY_KEY_ASC", PrimaryKeyDesc = "PRIMARY_KEY_DESC", TimeAsc = "TIME_ASC", TimeDesc = "TIME_DESC" } export type ClaimsQueryVariables = Exact<{ agentAddress?: InputMaybe; collectionId?: InputMaybe; }>; export type ClaimsQuery = { __typename?: 'Query'; claims?: { __typename?: 'ClaimsConnection'; totalCount: number; nodes: Array<{ __typename?: 'Claim'; nodeId: string; claimId: string; agentDid: string; agentAddress: string; submissionDate: any; paymentsStatus: any; schemaType?: string | null; collectionId: string; evaluationByClaimId?: { __typename?: 'Evaluation'; nodeId: string; collectionId: string; oracle: string; agentDid: string; agentAddress: string; status: number; reason: any; verificationProof?: string | null; amount: any; evaluationDate: any; claimId: string; } | null; }>; } | null; }; export type ClaimByIdQueryVariables = Exact<{ claimId: Scalars['String']['input']; }>; export type ClaimByIdQuery = { __typename?: 'Query'; claim?: { __typename?: 'Claim'; claimId: string; agentDid: string; agentAddress: string; submissionDate: any; paymentsStatus: any; schemaType?: string | null; collectionId: string; evaluationByClaimId?: { __typename?: 'Evaluation'; status: number; } | null; } | null; }; export type GetEntitiesQueryVariables = Exact<{ [key: string]: never; }>; export type GetEntitiesQuery = { __typename?: 'Query'; entities?: { __typename?: 'EntitiesConnection'; totalCount: number; nodes: Array<{ __typename?: 'Entity'; id: string; type: string; status: number; metadata: any; owner?: string | null; startDate?: any | null; endDate?: any | null; entityVerified: boolean; }>; pageInfo: { __typename?: 'PageInfo'; hasNextPage: boolean; hasPreviousPage: boolean; startCursor?: any | null; endCursor?: any | null; }; } | null; }; export type GetEntityByIdQueryVariables = Exact<{ id: Scalars['String']['input']; }>; export type GetEntityByIdQuery = { __typename?: 'Query'; entity?: { __typename?: 'Entity'; id: string; type: string; status: number; metadata: any; owner?: string | null; startDate?: any | null; endDate?: any | null; entityVerified: boolean; accounts: any; service: any; linkedResource: any; settings: any; } | null; }; export type GetEntityByTypeQueryVariables = Exact<{ type: Scalars['String']['input']; }>; export type GetEntityByTypeQuery = { __typename?: 'Query'; entities?: { __typename?: 'EntitiesConnection'; nodes: Array<{ __typename?: 'Entity'; alsoKnownAs: string; accounts: any; context: any; id: string; linkedEntity: any; linkedResource: any; metadata: any; owner?: string | null; service: any; settings: any; type: string; status: number; }>; } | null; }; export type GetEntitiesByOwnerAddressQueryVariables = Exact<{ ownerAddress: Scalars['String']['input']; }>; export type GetEntitiesByOwnerAddressQuery = { __typename?: 'Query'; entities?: { __typename?: 'EntitiesConnection'; nodes: Array<{ __typename?: 'Entity'; alsoKnownAs: string; accounts: any; context: any; id: string; linkedEntity: any; linkedResource: any; metadata: any; owner?: string | null; service: any; settings: any; type: string; status: number; }>; } | null; }; export type GetEntityIdByClaimCollectionIdQueryVariables = Exact<{ claimCollectionId: Scalars['String']['input']; }>; export type GetEntityIdByClaimCollectionIdQuery = { __typename?: 'Query'; claimCollection?: { __typename?: 'ClaimCollection'; entityId: string; } | null; }; export type GetClaimCollectionQueryVariables = Exact<{ claimCollectionId: Scalars['String']['input']; }>; export type GetClaimCollectionQuery = { __typename?: 'Query'; claimCollection?: { __typename?: 'ClaimCollection'; id: string; admin: string; protocol: string; startDate?: any | null; endDate?: any | null; quota: any; count: any; evaluated: any; approved: any; rejected: any; disputed: any; invalidated: any; state: number; payments: any; entityId: string; } | null; }; export type GetIidVerificationMethodQueryVariables = Exact<{ did: Scalars['String']['input']; }>; export type GetIidVerificationMethodQuery = { __typename?: 'Query'; iids?: { __typename?: 'IidsConnection'; nodes: Array<{ __typename?: 'Iid'; id: string; verificationMethod: any; }>; } | null; }; //# sourceMappingURL=graphql.d.ts.map