export type Maybe = T | null; export type InputMaybe = Maybe; export type Exact = { [K in keyof T]: T[K]; }; export type MakeOptional = Omit & { [SubKey in K]?: Maybe; }; export type MakeMaybe = Omit & { [SubKey in K]: Maybe; }; export type MakeEmpty = { [_ in K]?: never; }; export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never; }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { ID: { input: string; output: string; }; String: { input: string; output: string; }; Boolean: { input: boolean; output: boolean; }; Int: { input: number; output: number; }; Float: { input: number; output: number; }; /** The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). */ JSON: { input: any; output: any; }; BigInt: { input: any; output: any; }; }; export type PageInfo = { __typename?: 'PageInfo'; hasNextPage: Scalars['Boolean']['output']; hasPreviousPage: Scalars['Boolean']['output']; startCursor?: Maybe; endCursor?: Maybe; }; export type Meta = { __typename?: 'Meta'; status?: Maybe; }; export type Query = { __typename?: 'Query'; blockchain?: Maybe; blockchains: BlockchainPage; deployment?: Maybe; deployments: DeploymentPage; pool?: Maybe; pools: PoolPage; token?: Maybe; tokens: TokenPage; vault?: Maybe; vaults: VaultPage; investorTransaction?: Maybe; investorTransactions: InvestorTransactionPage; outstandingInvest?: Maybe; outstandingInvests: OutstandingInvestPage; outstandingRedeem?: Maybe; outstandingRedeems: OutstandingRedeemPage; investOrder?: Maybe; investOrders: InvestOrderPage; redeemOrder?: Maybe; redeemOrders: RedeemOrderPage; epochOutstandingInvest?: Maybe; epochOutstandingInvests: EpochOutstandingInvestPage; epochOutstandingRedeem?: Maybe; epochOutstandingRedeems: EpochOutstandingRedeemPage; epochInvestOrder?: Maybe; epochInvestOrders: EpochInvestOrderPage; epochRedeemOrder?: Maybe; epochRedeemOrders: EpochRedeemOrderPage; assetRegistration?: Maybe; assetRegistrations: AssetRegistrationPage; asset?: Maybe; assets: AssetPage; tokenInstance?: Maybe; tokenInstances: TokenInstancePage; holding?: Maybe; holdings: HoldingPage; holdingAccount?: Maybe; holdingAccounts: HoldingAccountPage; escrow?: Maybe; escrows: EscrowPage; holdingEscrow?: Maybe; holdingEscrows: HoldingEscrowPage; poolManager?: Maybe; poolManagers: PoolManagerPage; offrampRelayer?: Maybe; offrampRelayers: OfframpRelayerPage; onRampAsset?: Maybe; onRampAssets: OnRampAssetPage; offRampAddress?: Maybe; offRampAddresss: OffRampAddressPage; policy?: Maybe; policys: PolicyPage; crosschainPayload?: Maybe; crosschainPayloads: CrosschainPayloadPage; crosschainMessage?: Maybe; crosschainMessages: CrosschainMessagePage; poolSnapshot?: Maybe; poolSnapshots: PoolSnapshotPage; tokenSnapshot?: Maybe; tokenSnapshots: TokenSnapshotPage; tokenInstanceSnapshot?: Maybe; tokenInstanceSnapshots: TokenInstanceSnapshotPage; holdingSnapshot?: Maybe; holdingSnapshots: HoldingSnapshotPage; _meta?: Maybe; }; export type QueryBlockchainArgs = { id: Scalars['String']['input']; }; export type QueryBlockchainsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type QueryDeploymentArgs = { chainId: Scalars['String']['input']; }; export type QueryDeploymentsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type QueryPoolArgs = { id: Scalars['BigInt']['input']; }; export type QueryPoolsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type QueryTokenArgs = { id: Scalars['String']['input']; }; export type QueryTokensArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type QueryVaultArgs = { id: Scalars['String']['input']; centrifugeId: Scalars['String']['input']; }; export type QueryVaultsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type QueryInvestorTransactionArgs = { poolId: Scalars['BigInt']['input']; tokenId: Scalars['String']['input']; account: Scalars['String']['input']; type: Scalars['String']['input']; txHash: Scalars['String']['input']; }; export type QueryInvestorTransactionsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type QueryOutstandingInvestArgs = { tokenId: Scalars['String']['input']; assetId: Scalars['BigInt']['input']; account: Scalars['String']['input']; }; export type QueryOutstandingInvestsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type QueryOutstandingRedeemArgs = { tokenId: Scalars['String']['input']; assetId: Scalars['BigInt']['input']; account: Scalars['String']['input']; }; export type QueryOutstandingRedeemsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type QueryInvestOrderArgs = { tokenId: Scalars['String']['input']; assetId: Scalars['BigInt']['input']; account: Scalars['String']['input']; index: Scalars['Float']['input']; }; export type QueryInvestOrdersArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type QueryRedeemOrderArgs = { tokenId: Scalars['String']['input']; assetId: Scalars['BigInt']['input']; account: Scalars['String']['input']; index: Scalars['Float']['input']; }; export type QueryRedeemOrdersArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type QueryEpochOutstandingInvestArgs = { tokenId: Scalars['String']['input']; assetId: Scalars['BigInt']['input']; }; export type QueryEpochOutstandingInvestsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type QueryEpochOutstandingRedeemArgs = { tokenId: Scalars['String']['input']; assetId: Scalars['BigInt']['input']; }; export type QueryEpochOutstandingRedeemsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type QueryEpochInvestOrderArgs = { tokenId: Scalars['String']['input']; assetId: Scalars['BigInt']['input']; index: Scalars['Float']['input']; }; export type QueryEpochInvestOrdersArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type QueryEpochRedeemOrderArgs = { tokenId: Scalars['String']['input']; assetId: Scalars['BigInt']['input']; index: Scalars['Float']['input']; }; export type QueryEpochRedeemOrdersArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type QueryAssetRegistrationArgs = { assetId: Scalars['BigInt']['input']; centrifugeId: Scalars['String']['input']; }; export type QueryAssetRegistrationsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type QueryAssetArgs = { id: Scalars['BigInt']['input']; }; export type QueryAssetsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type QueryTokenInstanceArgs = { centrifugeId: Scalars['String']['input']; tokenId: Scalars['String']['input']; }; export type QueryTokenInstancesArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type QueryHoldingArgs = { tokenId: Scalars['String']['input']; assetId: Scalars['BigInt']['input']; }; export type QueryHoldingsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type QueryHoldingAccountArgs = { id: Scalars['String']['input']; }; export type QueryHoldingAccountsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type QueryEscrowArgs = { address: Scalars['String']['input']; centrifugeId: Scalars['String']['input']; }; export type QueryEscrowsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type QueryHoldingEscrowArgs = { tokenId: Scalars['String']['input']; assetId: Scalars['BigInt']['input']; }; export type QueryHoldingEscrowsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type QueryPoolManagerArgs = { address: Scalars['String']['input']; centrifugeId: Scalars['String']['input']; poolId: Scalars['BigInt']['input']; }; export type QueryPoolManagersArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type QueryOfframpRelayerArgs = { address: Scalars['String']['input']; }; export type QueryOfframpRelayersArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type QueryOnRampAssetArgs = { tokenId: Scalars['String']['input']; assetAddress: Scalars['String']['input']; }; export type QueryOnRampAssetsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type QueryOffRampAddressArgs = { tokenId: Scalars['String']['input']; assetAddress: Scalars['String']['input']; receiverAddress: Scalars['String']['input']; }; export type QueryOffRampAddresssArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type QueryPolicyArgs = { poolId: Scalars['BigInt']['input']; centrifugeId: Scalars['String']['input']; }; export type QueryPolicysArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type QueryCrosschainPayloadArgs = { id: Scalars['String']['input']; fromCentrifugeId: Scalars['String']['input']; toCentrifugeId: Scalars['String']['input']; }; export type QueryCrosschainPayloadsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type QueryCrosschainMessageArgs = { id: Scalars['String']['input']; index: Scalars['Float']['input']; }; export type QueryCrosschainMessagesArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type QueryPoolSnapshotArgs = { id: Scalars['BigInt']['input']; blockNumber: Scalars['Float']['input']; trigger: Scalars['String']['input']; }; export type QueryPoolSnapshotsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type QueryTokenSnapshotArgs = { id: Scalars['String']['input']; blockNumber: Scalars['Float']['input']; trigger: Scalars['String']['input']; }; export type QueryTokenSnapshotsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type QueryTokenInstanceSnapshotArgs = { tokenId: Scalars['String']['input']; blockNumber: Scalars['Float']['input']; trigger: Scalars['String']['input']; }; export type QueryTokenInstanceSnapshotsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type QueryHoldingSnapshotArgs = { tokenId: Scalars['String']['input']; assetId: Scalars['BigInt']['input']; blockNumber: Scalars['Float']['input']; trigger: Scalars['String']['input']; }; export type QueryHoldingSnapshotsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type Blockchain = { __typename?: 'Blockchain'; id: Scalars['String']['output']; centrifugeId: Scalars['String']['output']; network: Scalars['String']['output']; lastPeriodStart?: Maybe; pools?: Maybe; tokens?: Maybe; tokenInstances?: Maybe; vaults?: Maybe; assets?: Maybe; assetRegistrations?: Maybe; investorTransactions?: Maybe; holdings?: Maybe; holdingEscrows?: Maybe; escrows?: Maybe; }; export type BlockchainPoolsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type BlockchainTokensArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type BlockchainTokenInstancesArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type BlockchainVaultsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type BlockchainAssetsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type BlockchainAssetRegistrationsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type BlockchainInvestorTransactionsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type BlockchainHoldingsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type BlockchainHoldingEscrowsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type BlockchainEscrowsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type PoolPage = { __typename?: 'PoolPage'; items: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type Pool = { __typename?: 'Pool'; id: Scalars['BigInt']['output']; centrifugeId: Scalars['String']['output']; isActive: Scalars['Boolean']['output']; createdAtBlock?: Maybe; createdAt?: Maybe; currency?: Maybe; metadata?: Maybe; name?: Maybe; blockchain?: Maybe; tokens?: Maybe; snapshots?: Maybe; managers?: Maybe; policies?: Maybe; }; export type PoolTokensArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type PoolSnapshotsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type PoolManagersArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type PoolPoliciesArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type TokenPage = { __typename?: 'TokenPage'; items: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type Token = { __typename?: 'Token'; id: Scalars['String']['output']; index?: Maybe; isActive: Scalars['Boolean']['output']; centrifugeId?: Maybe; poolId: Scalars['BigInt']['output']; name?: Maybe; symbol?: Maybe; salt?: Maybe; totalIssuance?: Maybe; tokenPrice?: Maybe; blockchain?: Maybe; pool?: Maybe; vaults?: Maybe; tokenInstances?: Maybe; investorTransactions?: Maybe; OutstandingInvests?: Maybe; onRampAssets?: Maybe; offRampAddresses?: Maybe; }; export type TokenVaultsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type TokenTokenInstancesArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type TokenInvestorTransactionsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type TokenOutstandingInvestsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type TokenOnRampAssetsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type TokenOffRampAddressesArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type VaultPage = { __typename?: 'VaultPage'; items: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type Vault = { __typename?: 'Vault'; id: Scalars['String']['output']; centrifugeId: Scalars['String']['output']; isActive: Scalars['Boolean']['output']; kind?: Maybe; status?: Maybe; poolId: Scalars['BigInt']['output']; tokenId: Scalars['String']['output']; assetAddress: Scalars['String']['output']; factory: Scalars['String']['output']; manager?: Maybe; blockchain?: Maybe; token?: Maybe; asset?: Maybe; tokenInstance?: Maybe; }; export declare enum VaultKind { Async = "Async", Sync = "Sync", SyncDepositAsyncRedeem = "SyncDepositAsyncRedeem" } export declare enum VaultStatus { LinkInProgress = "LinkInProgress", UnlinkInProgress = "UnlinkInProgress", Linked = "Linked", Unlinked = "Unlinked" } export type Asset = { __typename?: 'Asset'; id: Scalars['BigInt']['output']; centrifugeId: Scalars['String']['output']; address: Scalars['String']['output']; assetTokenId?: Maybe; decimals?: Maybe; name?: Maybe; symbol?: Maybe; blockchain?: Maybe; assetRegistrations?: Maybe; }; export type AssetAssetRegistrationsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type AssetRegistrationPage = { __typename?: 'AssetRegistrationPage'; items: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type AssetRegistration = { __typename?: 'AssetRegistration'; assetId: Scalars['BigInt']['output']; centrifugeId: Scalars['String']['output']; assetCentrifugeId?: Maybe; status?: Maybe; decimals?: Maybe; name?: Maybe; symbol?: Maybe; createdAt?: Maybe; createdAtBlock?: Maybe; blockchain?: Maybe; asset?: Maybe; }; export declare enum AssetRegistrationStatus { InProgress = "IN_PROGRESS", Registered = "REGISTERED" } export type AssetRegistrationFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; assetId?: InputMaybe; assetId_not?: InputMaybe; assetId_in?: InputMaybe>>; assetId_not_in?: InputMaybe>>; assetId_gt?: InputMaybe; assetId_lt?: InputMaybe; assetId_gte?: InputMaybe; assetId_lte?: InputMaybe; centrifugeId?: InputMaybe; centrifugeId_not?: InputMaybe; centrifugeId_in?: InputMaybe>>; centrifugeId_not_in?: InputMaybe>>; centrifugeId_contains?: InputMaybe; centrifugeId_not_contains?: InputMaybe; centrifugeId_starts_with?: InputMaybe; centrifugeId_ends_with?: InputMaybe; centrifugeId_not_starts_with?: InputMaybe; centrifugeId_not_ends_with?: InputMaybe; assetCentrifugeId?: InputMaybe; assetCentrifugeId_not?: InputMaybe; assetCentrifugeId_in?: InputMaybe>>; assetCentrifugeId_not_in?: InputMaybe>>; assetCentrifugeId_contains?: InputMaybe; assetCentrifugeId_not_contains?: InputMaybe; assetCentrifugeId_starts_with?: InputMaybe; assetCentrifugeId_ends_with?: InputMaybe; assetCentrifugeId_not_starts_with?: InputMaybe; assetCentrifugeId_not_ends_with?: InputMaybe; status?: InputMaybe; status_not?: InputMaybe; status_in?: InputMaybe>>; status_not_in?: InputMaybe>>; decimals?: InputMaybe; decimals_not?: InputMaybe; decimals_in?: InputMaybe>>; decimals_not_in?: InputMaybe>>; decimals_gt?: InputMaybe; decimals_lt?: InputMaybe; decimals_gte?: InputMaybe; decimals_lte?: InputMaybe; name?: InputMaybe; name_not?: InputMaybe; name_in?: InputMaybe>>; name_not_in?: InputMaybe>>; name_contains?: InputMaybe; name_not_contains?: InputMaybe; name_starts_with?: InputMaybe; name_ends_with?: InputMaybe; name_not_starts_with?: InputMaybe; name_not_ends_with?: InputMaybe; symbol?: InputMaybe; symbol_not?: InputMaybe; symbol_in?: InputMaybe>>; symbol_not_in?: InputMaybe>>; symbol_contains?: InputMaybe; symbol_not_contains?: InputMaybe; symbol_starts_with?: InputMaybe; symbol_ends_with?: InputMaybe; symbol_not_starts_with?: InputMaybe; symbol_not_ends_with?: InputMaybe; createdAt?: InputMaybe; createdAt_not?: InputMaybe; createdAt_in?: InputMaybe>>; createdAt_not_in?: InputMaybe>>; createdAt_contains?: InputMaybe; createdAt_not_contains?: InputMaybe; createdAt_starts_with?: InputMaybe; createdAt_ends_with?: InputMaybe; createdAt_not_starts_with?: InputMaybe; createdAt_not_ends_with?: InputMaybe; createdAtBlock?: InputMaybe; createdAtBlock_not?: InputMaybe; createdAtBlock_in?: InputMaybe>>; createdAtBlock_not_in?: InputMaybe>>; createdAtBlock_gt?: InputMaybe; createdAtBlock_lt?: InputMaybe; createdAtBlock_gte?: InputMaybe; createdAtBlock_lte?: InputMaybe; }; export type TokenInstance = { __typename?: 'TokenInstance'; centrifugeId: Scalars['String']['output']; tokenId: Scalars['String']['output']; isActive: Scalars['Boolean']['output']; address: Scalars['String']['output']; tokenPrice?: Maybe; computedAt?: Maybe; totalIssuance?: Maybe; blockchain?: Maybe; token?: Maybe; vaults?: Maybe; }; export type TokenInstanceVaultsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type VaultFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; id?: InputMaybe; id_not?: InputMaybe; id_in?: InputMaybe>>; id_not_in?: InputMaybe>>; id_contains?: InputMaybe; id_not_contains?: InputMaybe; id_starts_with?: InputMaybe; id_ends_with?: InputMaybe; id_not_starts_with?: InputMaybe; id_not_ends_with?: InputMaybe; centrifugeId?: InputMaybe; centrifugeId_not?: InputMaybe; centrifugeId_in?: InputMaybe>>; centrifugeId_not_in?: InputMaybe>>; centrifugeId_contains?: InputMaybe; centrifugeId_not_contains?: InputMaybe; centrifugeId_starts_with?: InputMaybe; centrifugeId_ends_with?: InputMaybe; centrifugeId_not_starts_with?: InputMaybe; centrifugeId_not_ends_with?: InputMaybe; isActive?: InputMaybe; isActive_not?: InputMaybe; isActive_in?: InputMaybe>>; isActive_not_in?: InputMaybe>>; kind?: InputMaybe; kind_not?: InputMaybe; kind_in?: InputMaybe>>; kind_not_in?: InputMaybe>>; status?: InputMaybe; status_not?: InputMaybe; status_in?: InputMaybe>>; status_not_in?: InputMaybe>>; poolId?: InputMaybe; poolId_not?: InputMaybe; poolId_in?: InputMaybe>>; poolId_not_in?: InputMaybe>>; poolId_gt?: InputMaybe; poolId_lt?: InputMaybe; poolId_gte?: InputMaybe; poolId_lte?: InputMaybe; tokenId?: InputMaybe; tokenId_not?: InputMaybe; tokenId_in?: InputMaybe>>; tokenId_not_in?: InputMaybe>>; tokenId_contains?: InputMaybe; tokenId_not_contains?: InputMaybe; tokenId_starts_with?: InputMaybe; tokenId_ends_with?: InputMaybe; tokenId_not_starts_with?: InputMaybe; tokenId_not_ends_with?: InputMaybe; assetAddress?: InputMaybe; assetAddress_not?: InputMaybe; assetAddress_in?: InputMaybe>>; assetAddress_not_in?: InputMaybe>>; assetAddress_contains?: InputMaybe; assetAddress_not_contains?: InputMaybe; assetAddress_starts_with?: InputMaybe; assetAddress_ends_with?: InputMaybe; assetAddress_not_starts_with?: InputMaybe; assetAddress_not_ends_with?: InputMaybe; factory?: InputMaybe; factory_not?: InputMaybe; factory_in?: InputMaybe>>; factory_not_in?: InputMaybe>>; factory_contains?: InputMaybe; factory_not_contains?: InputMaybe; factory_starts_with?: InputMaybe; factory_ends_with?: InputMaybe; factory_not_starts_with?: InputMaybe; factory_not_ends_with?: InputMaybe; manager?: InputMaybe; manager_not?: InputMaybe; manager_in?: InputMaybe>>; manager_not_in?: InputMaybe>>; manager_contains?: InputMaybe; manager_not_contains?: InputMaybe; manager_starts_with?: InputMaybe; manager_ends_with?: InputMaybe; manager_not_starts_with?: InputMaybe; manager_not_ends_with?: InputMaybe; }; export type TokenInstancePage = { __typename?: 'TokenInstancePage'; items: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type TokenInstanceFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; centrifugeId?: InputMaybe; centrifugeId_not?: InputMaybe; centrifugeId_in?: InputMaybe>>; centrifugeId_not_in?: InputMaybe>>; centrifugeId_contains?: InputMaybe; centrifugeId_not_contains?: InputMaybe; centrifugeId_starts_with?: InputMaybe; centrifugeId_ends_with?: InputMaybe; centrifugeId_not_starts_with?: InputMaybe; centrifugeId_not_ends_with?: InputMaybe; tokenId?: InputMaybe; tokenId_not?: InputMaybe; tokenId_in?: InputMaybe>>; tokenId_not_in?: InputMaybe>>; tokenId_contains?: InputMaybe; tokenId_not_contains?: InputMaybe; tokenId_starts_with?: InputMaybe; tokenId_ends_with?: InputMaybe; tokenId_not_starts_with?: InputMaybe; tokenId_not_ends_with?: InputMaybe; isActive?: InputMaybe; isActive_not?: InputMaybe; isActive_in?: InputMaybe>>; isActive_not_in?: InputMaybe>>; address?: InputMaybe; address_not?: InputMaybe; address_in?: InputMaybe>>; address_not_in?: InputMaybe>>; address_contains?: InputMaybe; address_not_contains?: InputMaybe; address_starts_with?: InputMaybe; address_ends_with?: InputMaybe; address_not_starts_with?: InputMaybe; address_not_ends_with?: InputMaybe; tokenPrice?: InputMaybe; tokenPrice_not?: InputMaybe; tokenPrice_in?: InputMaybe>>; tokenPrice_not_in?: InputMaybe>>; tokenPrice_gt?: InputMaybe; tokenPrice_lt?: InputMaybe; tokenPrice_gte?: InputMaybe; tokenPrice_lte?: InputMaybe; computedAt?: InputMaybe; computedAt_not?: InputMaybe; computedAt_in?: InputMaybe>>; computedAt_not_in?: InputMaybe>>; computedAt_contains?: InputMaybe; computedAt_not_contains?: InputMaybe; computedAt_starts_with?: InputMaybe; computedAt_ends_with?: InputMaybe; computedAt_not_starts_with?: InputMaybe; computedAt_not_ends_with?: InputMaybe; totalIssuance?: InputMaybe; totalIssuance_not?: InputMaybe; totalIssuance_in?: InputMaybe>>; totalIssuance_not_in?: InputMaybe>>; totalIssuance_gt?: InputMaybe; totalIssuance_lt?: InputMaybe; totalIssuance_gte?: InputMaybe; totalIssuance_lte?: InputMaybe; }; export type InvestorTransactionPage = { __typename?: 'InvestorTransactionPage'; items: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type InvestorTransaction = { __typename?: 'InvestorTransaction'; txHash: Scalars['String']['output']; centrifugeId: Scalars['String']['output']; poolId: Scalars['BigInt']['output']; tokenId: Scalars['String']['output']; type: InvestorTransactionType; account: Scalars['String']['output']; createdAt: Scalars['String']['output']; createdAtBlock: Scalars['Int']['output']; epochIndex?: Maybe; tokenAmount?: Maybe; currencyAmount?: Maybe; tokenPrice?: Maybe; transactionFee?: Maybe; blockchain?: Maybe; pool?: Maybe; token?: Maybe; }; export declare enum InvestorTransactionType { DepositRequestUpdated = "DEPOSIT_REQUEST_UPDATED", RedeemRequestUpdated = "REDEEM_REQUEST_UPDATED", DepositRequestCancelled = "DEPOSIT_REQUEST_CANCELLED", RedeemRequestCancelled = "REDEEM_REQUEST_CANCELLED", DepositRequestExecuted = "DEPOSIT_REQUEST_EXECUTED", RedeemRequestExecuted = "REDEEM_REQUEST_EXECUTED", DepositClaimable = "DEPOSIT_CLAIMABLE", RedeemClaimable = "REDEEM_CLAIMABLE", DepositClaimed = "DEPOSIT_CLAIMED", RedeemClaimed = "REDEEM_CLAIMED", SyncDeposit = "SYNC_DEPOSIT", SyncRedeem = "SYNC_REDEEM" } export type InvestorTransactionFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; txHash?: InputMaybe; txHash_not?: InputMaybe; txHash_in?: InputMaybe>>; txHash_not_in?: InputMaybe>>; txHash_contains?: InputMaybe; txHash_not_contains?: InputMaybe; txHash_starts_with?: InputMaybe; txHash_ends_with?: InputMaybe; txHash_not_starts_with?: InputMaybe; txHash_not_ends_with?: InputMaybe; centrifugeId?: InputMaybe; centrifugeId_not?: InputMaybe; centrifugeId_in?: InputMaybe>>; centrifugeId_not_in?: InputMaybe>>; centrifugeId_contains?: InputMaybe; centrifugeId_not_contains?: InputMaybe; centrifugeId_starts_with?: InputMaybe; centrifugeId_ends_with?: InputMaybe; centrifugeId_not_starts_with?: InputMaybe; centrifugeId_not_ends_with?: InputMaybe; poolId?: InputMaybe; poolId_not?: InputMaybe; poolId_in?: InputMaybe>>; poolId_not_in?: InputMaybe>>; poolId_gt?: InputMaybe; poolId_lt?: InputMaybe; poolId_gte?: InputMaybe; poolId_lte?: InputMaybe; tokenId?: InputMaybe; tokenId_not?: InputMaybe; tokenId_in?: InputMaybe>>; tokenId_not_in?: InputMaybe>>; tokenId_contains?: InputMaybe; tokenId_not_contains?: InputMaybe; tokenId_starts_with?: InputMaybe; tokenId_ends_with?: InputMaybe; tokenId_not_starts_with?: InputMaybe; tokenId_not_ends_with?: InputMaybe; type?: InputMaybe; type_not?: InputMaybe; type_in?: InputMaybe>>; type_not_in?: InputMaybe>>; account?: InputMaybe; account_not?: InputMaybe; account_in?: InputMaybe>>; account_not_in?: InputMaybe>>; account_contains?: InputMaybe; account_not_contains?: InputMaybe; account_starts_with?: InputMaybe; account_ends_with?: InputMaybe; account_not_starts_with?: InputMaybe; account_not_ends_with?: InputMaybe; createdAt?: InputMaybe; createdAt_not?: InputMaybe; createdAt_in?: InputMaybe>>; createdAt_not_in?: InputMaybe>>; createdAt_contains?: InputMaybe; createdAt_not_contains?: InputMaybe; createdAt_starts_with?: InputMaybe; createdAt_ends_with?: InputMaybe; createdAt_not_starts_with?: InputMaybe; createdAt_not_ends_with?: InputMaybe; createdAtBlock?: InputMaybe; createdAtBlock_not?: InputMaybe; createdAtBlock_in?: InputMaybe>>; createdAtBlock_not_in?: InputMaybe>>; createdAtBlock_gt?: InputMaybe; createdAtBlock_lt?: InputMaybe; createdAtBlock_gte?: InputMaybe; createdAtBlock_lte?: InputMaybe; epochIndex?: InputMaybe; epochIndex_not?: InputMaybe; epochIndex_in?: InputMaybe>>; epochIndex_not_in?: InputMaybe>>; epochIndex_gt?: InputMaybe; epochIndex_lt?: InputMaybe; epochIndex_gte?: InputMaybe; epochIndex_lte?: InputMaybe; tokenAmount?: InputMaybe; tokenAmount_not?: InputMaybe; tokenAmount_in?: InputMaybe>>; tokenAmount_not_in?: InputMaybe>>; tokenAmount_gt?: InputMaybe; tokenAmount_lt?: InputMaybe; tokenAmount_gte?: InputMaybe; tokenAmount_lte?: InputMaybe; currencyAmount?: InputMaybe; currencyAmount_not?: InputMaybe; currencyAmount_in?: InputMaybe>>; currencyAmount_not_in?: InputMaybe>>; currencyAmount_gt?: InputMaybe; currencyAmount_lt?: InputMaybe; currencyAmount_gte?: InputMaybe; currencyAmount_lte?: InputMaybe; tokenPrice?: InputMaybe; tokenPrice_not?: InputMaybe; tokenPrice_in?: InputMaybe>>; tokenPrice_not_in?: InputMaybe>>; tokenPrice_gt?: InputMaybe; tokenPrice_lt?: InputMaybe; tokenPrice_gte?: InputMaybe; tokenPrice_lte?: InputMaybe; transactionFee?: InputMaybe; transactionFee_not?: InputMaybe; transactionFee_in?: InputMaybe>>; transactionFee_not_in?: InputMaybe>>; transactionFee_gt?: InputMaybe; transactionFee_lt?: InputMaybe; transactionFee_gte?: InputMaybe; transactionFee_lte?: InputMaybe; }; export type OutstandingInvestPage = { __typename?: 'OutstandingInvestPage'; items: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type OutstandingInvest = { __typename?: 'OutstandingInvest'; poolId: Scalars['BigInt']['output']; tokenId: Scalars['String']['output']; assetId: Scalars['BigInt']['output']; account: Scalars['String']['output']; pendingAmount?: Maybe; queuedAmount?: Maybe; depositAmount?: Maybe; approvedAmount?: Maybe; approvedAt?: Maybe; approvedAtBlock?: Maybe; updatedAt?: Maybe; updatedAtBlock?: Maybe; token?: Maybe; }; export type OutstandingInvestFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; poolId?: InputMaybe; poolId_not?: InputMaybe; poolId_in?: InputMaybe>>; poolId_not_in?: InputMaybe>>; poolId_gt?: InputMaybe; poolId_lt?: InputMaybe; poolId_gte?: InputMaybe; poolId_lte?: InputMaybe; tokenId?: InputMaybe; tokenId_not?: InputMaybe; tokenId_in?: InputMaybe>>; tokenId_not_in?: InputMaybe>>; tokenId_contains?: InputMaybe; tokenId_not_contains?: InputMaybe; tokenId_starts_with?: InputMaybe; tokenId_ends_with?: InputMaybe; tokenId_not_starts_with?: InputMaybe; tokenId_not_ends_with?: InputMaybe; assetId?: InputMaybe; assetId_not?: InputMaybe; assetId_in?: InputMaybe>>; assetId_not_in?: InputMaybe>>; assetId_gt?: InputMaybe; assetId_lt?: InputMaybe; assetId_gte?: InputMaybe; assetId_lte?: InputMaybe; account?: InputMaybe; account_not?: InputMaybe; account_in?: InputMaybe>>; account_not_in?: InputMaybe>>; account_contains?: InputMaybe; account_not_contains?: InputMaybe; account_starts_with?: InputMaybe; account_ends_with?: InputMaybe; account_not_starts_with?: InputMaybe; account_not_ends_with?: InputMaybe; pendingAmount?: InputMaybe; pendingAmount_not?: InputMaybe; pendingAmount_in?: InputMaybe>>; pendingAmount_not_in?: InputMaybe>>; pendingAmount_gt?: InputMaybe; pendingAmount_lt?: InputMaybe; pendingAmount_gte?: InputMaybe; pendingAmount_lte?: InputMaybe; queuedAmount?: InputMaybe; queuedAmount_not?: InputMaybe; queuedAmount_in?: InputMaybe>>; queuedAmount_not_in?: InputMaybe>>; queuedAmount_gt?: InputMaybe; queuedAmount_lt?: InputMaybe; queuedAmount_gte?: InputMaybe; queuedAmount_lte?: InputMaybe; depositAmount?: InputMaybe; depositAmount_not?: InputMaybe; depositAmount_in?: InputMaybe>>; depositAmount_not_in?: InputMaybe>>; depositAmount_gt?: InputMaybe; depositAmount_lt?: InputMaybe; depositAmount_gte?: InputMaybe; depositAmount_lte?: InputMaybe; approvedAmount?: InputMaybe; approvedAmount_not?: InputMaybe; approvedAmount_in?: InputMaybe>>; approvedAmount_not_in?: InputMaybe>>; approvedAmount_gt?: InputMaybe; approvedAmount_lt?: InputMaybe; approvedAmount_gte?: InputMaybe; approvedAmount_lte?: InputMaybe; approvedAt?: InputMaybe; approvedAt_not?: InputMaybe; approvedAt_in?: InputMaybe>>; approvedAt_not_in?: InputMaybe>>; approvedAt_contains?: InputMaybe; approvedAt_not_contains?: InputMaybe; approvedAt_starts_with?: InputMaybe; approvedAt_ends_with?: InputMaybe; approvedAt_not_starts_with?: InputMaybe; approvedAt_not_ends_with?: InputMaybe; approvedAtBlock?: InputMaybe; approvedAtBlock_not?: InputMaybe; approvedAtBlock_in?: InputMaybe>>; approvedAtBlock_not_in?: InputMaybe>>; approvedAtBlock_gt?: InputMaybe; approvedAtBlock_lt?: InputMaybe; approvedAtBlock_gte?: InputMaybe; approvedAtBlock_lte?: InputMaybe; updatedAt?: InputMaybe; updatedAt_not?: InputMaybe; updatedAt_in?: InputMaybe>>; updatedAt_not_in?: InputMaybe>>; updatedAt_contains?: InputMaybe; updatedAt_not_contains?: InputMaybe; updatedAt_starts_with?: InputMaybe; updatedAt_ends_with?: InputMaybe; updatedAt_not_starts_with?: InputMaybe; updatedAt_not_ends_with?: InputMaybe; updatedAtBlock?: InputMaybe; updatedAtBlock_not?: InputMaybe; updatedAtBlock_in?: InputMaybe>>; updatedAtBlock_not_in?: InputMaybe>>; updatedAtBlock_gt?: InputMaybe; updatedAtBlock_lt?: InputMaybe; updatedAtBlock_gte?: InputMaybe; updatedAtBlock_lte?: InputMaybe; }; export type OnRampAssetPage = { __typename?: 'OnRampAssetPage'; items: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type OnRampAsset = { __typename?: 'OnRampAsset'; poolId: Scalars['BigInt']['output']; tokenId: Scalars['String']['output']; centrifugeId: Scalars['String']['output']; assetAddress: Scalars['String']['output']; token?: Maybe; asset?: Maybe; }; export type OnRampAssetFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; poolId?: InputMaybe; poolId_not?: InputMaybe; poolId_in?: InputMaybe>>; poolId_not_in?: InputMaybe>>; poolId_gt?: InputMaybe; poolId_lt?: InputMaybe; poolId_gte?: InputMaybe; poolId_lte?: InputMaybe; tokenId?: InputMaybe; tokenId_not?: InputMaybe; tokenId_in?: InputMaybe>>; tokenId_not_in?: InputMaybe>>; tokenId_contains?: InputMaybe; tokenId_not_contains?: InputMaybe; tokenId_starts_with?: InputMaybe; tokenId_ends_with?: InputMaybe; tokenId_not_starts_with?: InputMaybe; tokenId_not_ends_with?: InputMaybe; centrifugeId?: InputMaybe; centrifugeId_not?: InputMaybe; centrifugeId_in?: InputMaybe>>; centrifugeId_not_in?: InputMaybe>>; centrifugeId_contains?: InputMaybe; centrifugeId_not_contains?: InputMaybe; centrifugeId_starts_with?: InputMaybe; centrifugeId_ends_with?: InputMaybe; centrifugeId_not_starts_with?: InputMaybe; centrifugeId_not_ends_with?: InputMaybe; assetAddress?: InputMaybe; assetAddress_not?: InputMaybe; assetAddress_in?: InputMaybe>>; assetAddress_not_in?: InputMaybe>>; assetAddress_contains?: InputMaybe; assetAddress_not_contains?: InputMaybe; assetAddress_starts_with?: InputMaybe; assetAddress_ends_with?: InputMaybe; assetAddress_not_starts_with?: InputMaybe; assetAddress_not_ends_with?: InputMaybe; }; export type OffRampAddressPage = { __typename?: 'OffRampAddressPage'; items: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type OffRampAddress = { __typename?: 'OffRampAddress'; poolId: Scalars['BigInt']['output']; tokenId: Scalars['String']['output']; centrifugeId: Scalars['String']['output']; assetAddress: Scalars['String']['output']; receiverAddress: Scalars['String']['output']; token?: Maybe; asset?: Maybe; }; export type OffRampAddressFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; poolId?: InputMaybe; poolId_not?: InputMaybe; poolId_in?: InputMaybe>>; poolId_not_in?: InputMaybe>>; poolId_gt?: InputMaybe; poolId_lt?: InputMaybe; poolId_gte?: InputMaybe; poolId_lte?: InputMaybe; tokenId?: InputMaybe; tokenId_not?: InputMaybe; tokenId_in?: InputMaybe>>; tokenId_not_in?: InputMaybe>>; tokenId_contains?: InputMaybe; tokenId_not_contains?: InputMaybe; tokenId_starts_with?: InputMaybe; tokenId_ends_with?: InputMaybe; tokenId_not_starts_with?: InputMaybe; tokenId_not_ends_with?: InputMaybe; centrifugeId?: InputMaybe; centrifugeId_not?: InputMaybe; centrifugeId_in?: InputMaybe>>; centrifugeId_not_in?: InputMaybe>>; centrifugeId_contains?: InputMaybe; centrifugeId_not_contains?: InputMaybe; centrifugeId_starts_with?: InputMaybe; centrifugeId_ends_with?: InputMaybe; centrifugeId_not_starts_with?: InputMaybe; centrifugeId_not_ends_with?: InputMaybe; assetAddress?: InputMaybe; assetAddress_not?: InputMaybe; assetAddress_in?: InputMaybe>>; assetAddress_not_in?: InputMaybe>>; assetAddress_contains?: InputMaybe; assetAddress_not_contains?: InputMaybe; assetAddress_starts_with?: InputMaybe; assetAddress_ends_with?: InputMaybe; assetAddress_not_starts_with?: InputMaybe; assetAddress_not_ends_with?: InputMaybe; receiverAddress?: InputMaybe; receiverAddress_not?: InputMaybe; receiverAddress_in?: InputMaybe>>; receiverAddress_not_in?: InputMaybe>>; receiverAddress_contains?: InputMaybe; receiverAddress_not_contains?: InputMaybe; receiverAddress_starts_with?: InputMaybe; receiverAddress_ends_with?: InputMaybe; receiverAddress_not_starts_with?: InputMaybe; receiverAddress_not_ends_with?: InputMaybe; }; export type TokenFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; id?: InputMaybe; id_not?: InputMaybe; id_in?: InputMaybe>>; id_not_in?: InputMaybe>>; id_contains?: InputMaybe; id_not_contains?: InputMaybe; id_starts_with?: InputMaybe; id_ends_with?: InputMaybe; id_not_starts_with?: InputMaybe; id_not_ends_with?: InputMaybe; index?: InputMaybe; index_not?: InputMaybe; index_in?: InputMaybe>>; index_not_in?: InputMaybe>>; index_gt?: InputMaybe; index_lt?: InputMaybe; index_gte?: InputMaybe; index_lte?: InputMaybe; isActive?: InputMaybe; isActive_not?: InputMaybe; isActive_in?: InputMaybe>>; isActive_not_in?: InputMaybe>>; centrifugeId?: InputMaybe; centrifugeId_not?: InputMaybe; centrifugeId_in?: InputMaybe>>; centrifugeId_not_in?: InputMaybe>>; centrifugeId_contains?: InputMaybe; centrifugeId_not_contains?: InputMaybe; centrifugeId_starts_with?: InputMaybe; centrifugeId_ends_with?: InputMaybe; centrifugeId_not_starts_with?: InputMaybe; centrifugeId_not_ends_with?: InputMaybe; poolId?: InputMaybe; poolId_not?: InputMaybe; poolId_in?: InputMaybe>>; poolId_not_in?: InputMaybe>>; poolId_gt?: InputMaybe; poolId_lt?: InputMaybe; poolId_gte?: InputMaybe; poolId_lte?: InputMaybe; name?: InputMaybe; name_not?: InputMaybe; name_in?: InputMaybe>>; name_not_in?: InputMaybe>>; name_contains?: InputMaybe; name_not_contains?: InputMaybe; name_starts_with?: InputMaybe; name_ends_with?: InputMaybe; name_not_starts_with?: InputMaybe; name_not_ends_with?: InputMaybe; symbol?: InputMaybe; symbol_not?: InputMaybe; symbol_in?: InputMaybe>>; symbol_not_in?: InputMaybe>>; symbol_contains?: InputMaybe; symbol_not_contains?: InputMaybe; symbol_starts_with?: InputMaybe; symbol_ends_with?: InputMaybe; symbol_not_starts_with?: InputMaybe; symbol_not_ends_with?: InputMaybe; salt?: InputMaybe; salt_not?: InputMaybe; salt_in?: InputMaybe>>; salt_not_in?: InputMaybe>>; salt_contains?: InputMaybe; salt_not_contains?: InputMaybe; salt_starts_with?: InputMaybe; salt_ends_with?: InputMaybe; salt_not_starts_with?: InputMaybe; salt_not_ends_with?: InputMaybe; totalIssuance?: InputMaybe; totalIssuance_not?: InputMaybe; totalIssuance_in?: InputMaybe>>; totalIssuance_not_in?: InputMaybe>>; totalIssuance_gt?: InputMaybe; totalIssuance_lt?: InputMaybe; totalIssuance_gte?: InputMaybe; totalIssuance_lte?: InputMaybe; tokenPrice?: InputMaybe; tokenPrice_not?: InputMaybe; tokenPrice_in?: InputMaybe>>; tokenPrice_not_in?: InputMaybe>>; tokenPrice_gt?: InputMaybe; tokenPrice_lt?: InputMaybe; tokenPrice_gte?: InputMaybe; tokenPrice_lte?: InputMaybe; }; export type PoolSnapshotPage = { __typename?: 'PoolSnapshotPage'; items: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type PoolSnapshot = { __typename?: 'PoolSnapshot'; timestamp: Scalars['String']['output']; blockNumber: Scalars['Int']['output']; trigger: Scalars['String']['output']; triggerTxHash?: Maybe; triggerChainId: Scalars['String']['output']; id: Scalars['BigInt']['output']; currency?: Maybe; pool?: Maybe; }; export type PoolSnapshotFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; timestamp?: InputMaybe; timestamp_not?: InputMaybe; timestamp_in?: InputMaybe>>; timestamp_not_in?: InputMaybe>>; timestamp_contains?: InputMaybe; timestamp_not_contains?: InputMaybe; timestamp_starts_with?: InputMaybe; timestamp_ends_with?: InputMaybe; timestamp_not_starts_with?: InputMaybe; timestamp_not_ends_with?: InputMaybe; blockNumber?: InputMaybe; blockNumber_not?: InputMaybe; blockNumber_in?: InputMaybe>>; blockNumber_not_in?: InputMaybe>>; blockNumber_gt?: InputMaybe; blockNumber_lt?: InputMaybe; blockNumber_gte?: InputMaybe; blockNumber_lte?: InputMaybe; trigger?: InputMaybe; trigger_not?: InputMaybe; trigger_in?: InputMaybe>>; trigger_not_in?: InputMaybe>>; trigger_contains?: InputMaybe; trigger_not_contains?: InputMaybe; trigger_starts_with?: InputMaybe; trigger_ends_with?: InputMaybe; trigger_not_starts_with?: InputMaybe; trigger_not_ends_with?: InputMaybe; triggerTxHash?: InputMaybe; triggerTxHash_not?: InputMaybe; triggerTxHash_in?: InputMaybe>>; triggerTxHash_not_in?: InputMaybe>>; triggerTxHash_contains?: InputMaybe; triggerTxHash_not_contains?: InputMaybe; triggerTxHash_starts_with?: InputMaybe; triggerTxHash_ends_with?: InputMaybe; triggerTxHash_not_starts_with?: InputMaybe; triggerTxHash_not_ends_with?: InputMaybe; triggerChainId?: InputMaybe; triggerChainId_not?: InputMaybe; triggerChainId_in?: InputMaybe>>; triggerChainId_not_in?: InputMaybe>>; triggerChainId_contains?: InputMaybe; triggerChainId_not_contains?: InputMaybe; triggerChainId_starts_with?: InputMaybe; triggerChainId_ends_with?: InputMaybe; triggerChainId_not_starts_with?: InputMaybe; triggerChainId_not_ends_with?: InputMaybe; id?: InputMaybe; id_not?: InputMaybe; id_in?: InputMaybe>>; id_not_in?: InputMaybe>>; id_gt?: InputMaybe; id_lt?: InputMaybe; id_gte?: InputMaybe; id_lte?: InputMaybe; currency?: InputMaybe; currency_not?: InputMaybe; currency_in?: InputMaybe>>; currency_not_in?: InputMaybe>>; currency_gt?: InputMaybe; currency_lt?: InputMaybe; currency_gte?: InputMaybe; currency_lte?: InputMaybe; }; export type PoolManagerPage = { __typename?: 'PoolManagerPage'; items: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type PoolManager = { __typename?: 'PoolManager'; address: Scalars['String']['output']; centrifugeId: Scalars['String']['output']; poolId: Scalars['BigInt']['output']; isHubManager: Scalars['Boolean']['output']; isBalancesheetManager: Scalars['Boolean']['output']; pool?: Maybe; }; export type PoolManagerFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; address?: InputMaybe; address_not?: InputMaybe; address_in?: InputMaybe>>; address_not_in?: InputMaybe>>; address_contains?: InputMaybe; address_not_contains?: InputMaybe; address_starts_with?: InputMaybe; address_ends_with?: InputMaybe; address_not_starts_with?: InputMaybe; address_not_ends_with?: InputMaybe; centrifugeId?: InputMaybe; centrifugeId_not?: InputMaybe; centrifugeId_in?: InputMaybe>>; centrifugeId_not_in?: InputMaybe>>; centrifugeId_contains?: InputMaybe; centrifugeId_not_contains?: InputMaybe; centrifugeId_starts_with?: InputMaybe; centrifugeId_ends_with?: InputMaybe; centrifugeId_not_starts_with?: InputMaybe; centrifugeId_not_ends_with?: InputMaybe; poolId?: InputMaybe; poolId_not?: InputMaybe; poolId_in?: InputMaybe>>; poolId_not_in?: InputMaybe>>; poolId_gt?: InputMaybe; poolId_lt?: InputMaybe; poolId_gte?: InputMaybe; poolId_lte?: InputMaybe; isHubManager?: InputMaybe; isHubManager_not?: InputMaybe; isHubManager_in?: InputMaybe>>; isHubManager_not_in?: InputMaybe>>; isBalancesheetManager?: InputMaybe; isBalancesheetManager_not?: InputMaybe; isBalancesheetManager_in?: InputMaybe>>; isBalancesheetManager_not_in?: InputMaybe>>; }; export type PolicyPage = { __typename?: 'PolicyPage'; items: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type Policy = { __typename?: 'Policy'; poolId: Scalars['BigInt']['output']; centrifugeId: Scalars['String']['output']; strategistAddress: Scalars['String']['output']; root: Scalars['String']['output']; pool?: Maybe; }; export type PolicyFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; poolId?: InputMaybe; poolId_not?: InputMaybe; poolId_in?: InputMaybe>>; poolId_not_in?: InputMaybe>>; poolId_gt?: InputMaybe; poolId_lt?: InputMaybe; poolId_gte?: InputMaybe; poolId_lte?: InputMaybe; centrifugeId?: InputMaybe; centrifugeId_not?: InputMaybe; centrifugeId_in?: InputMaybe>>; centrifugeId_not_in?: InputMaybe>>; centrifugeId_contains?: InputMaybe; centrifugeId_not_contains?: InputMaybe; centrifugeId_starts_with?: InputMaybe; centrifugeId_ends_with?: InputMaybe; centrifugeId_not_starts_with?: InputMaybe; centrifugeId_not_ends_with?: InputMaybe; strategistAddress?: InputMaybe; strategistAddress_not?: InputMaybe; strategistAddress_in?: InputMaybe>>; strategistAddress_not_in?: InputMaybe>>; strategistAddress_contains?: InputMaybe; strategistAddress_not_contains?: InputMaybe; strategistAddress_starts_with?: InputMaybe; strategistAddress_ends_with?: InputMaybe; strategistAddress_not_starts_with?: InputMaybe; strategistAddress_not_ends_with?: InputMaybe; root?: InputMaybe; root_not?: InputMaybe; root_in?: InputMaybe>>; root_not_in?: InputMaybe>>; root_contains?: InputMaybe; root_not_contains?: InputMaybe; root_starts_with?: InputMaybe; root_ends_with?: InputMaybe; root_not_starts_with?: InputMaybe; root_not_ends_with?: InputMaybe; }; export type PoolFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; id?: InputMaybe; id_not?: InputMaybe; id_in?: InputMaybe>>; id_not_in?: InputMaybe>>; id_gt?: InputMaybe; id_lt?: InputMaybe; id_gte?: InputMaybe; id_lte?: InputMaybe; centrifugeId?: InputMaybe; centrifugeId_not?: InputMaybe; centrifugeId_in?: InputMaybe>>; centrifugeId_not_in?: InputMaybe>>; centrifugeId_contains?: InputMaybe; centrifugeId_not_contains?: InputMaybe; centrifugeId_starts_with?: InputMaybe; centrifugeId_ends_with?: InputMaybe; centrifugeId_not_starts_with?: InputMaybe; centrifugeId_not_ends_with?: InputMaybe; isActive?: InputMaybe; isActive_not?: InputMaybe; isActive_in?: InputMaybe>>; isActive_not_in?: InputMaybe>>; createdAtBlock?: InputMaybe; createdAtBlock_not?: InputMaybe; createdAtBlock_in?: InputMaybe>>; createdAtBlock_not_in?: InputMaybe>>; createdAtBlock_gt?: InputMaybe; createdAtBlock_lt?: InputMaybe; createdAtBlock_gte?: InputMaybe; createdAtBlock_lte?: InputMaybe; createdAt?: InputMaybe; createdAt_not?: InputMaybe; createdAt_in?: InputMaybe>>; createdAt_not_in?: InputMaybe>>; createdAt_contains?: InputMaybe; createdAt_not_contains?: InputMaybe; createdAt_starts_with?: InputMaybe; createdAt_ends_with?: InputMaybe; createdAt_not_starts_with?: InputMaybe; createdAt_not_ends_with?: InputMaybe; currency?: InputMaybe; currency_not?: InputMaybe; currency_in?: InputMaybe>>; currency_not_in?: InputMaybe>>; currency_gt?: InputMaybe; currency_lt?: InputMaybe; currency_gte?: InputMaybe; currency_lte?: InputMaybe; metadata?: InputMaybe; metadata_not?: InputMaybe; metadata_in?: InputMaybe>>; metadata_not_in?: InputMaybe>>; metadata_contains?: InputMaybe; metadata_not_contains?: InputMaybe; metadata_starts_with?: InputMaybe; metadata_ends_with?: InputMaybe; metadata_not_starts_with?: InputMaybe; metadata_not_ends_with?: InputMaybe; name?: InputMaybe; name_not?: InputMaybe; name_in?: InputMaybe>>; name_not_in?: InputMaybe>>; name_contains?: InputMaybe; name_not_contains?: InputMaybe; name_starts_with?: InputMaybe; name_ends_with?: InputMaybe; name_not_starts_with?: InputMaybe; name_not_ends_with?: InputMaybe; }; export type AssetPage = { __typename?: 'AssetPage'; items: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type AssetFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; id?: InputMaybe; id_not?: InputMaybe; id_in?: InputMaybe>>; id_not_in?: InputMaybe>>; id_gt?: InputMaybe; id_lt?: InputMaybe; id_gte?: InputMaybe; id_lte?: InputMaybe; centrifugeId?: InputMaybe; centrifugeId_not?: InputMaybe; centrifugeId_in?: InputMaybe>>; centrifugeId_not_in?: InputMaybe>>; centrifugeId_contains?: InputMaybe; centrifugeId_not_contains?: InputMaybe; centrifugeId_starts_with?: InputMaybe; centrifugeId_ends_with?: InputMaybe; centrifugeId_not_starts_with?: InputMaybe; centrifugeId_not_ends_with?: InputMaybe; address?: InputMaybe; address_not?: InputMaybe; address_in?: InputMaybe>>; address_not_in?: InputMaybe>>; address_contains?: InputMaybe; address_not_contains?: InputMaybe; address_starts_with?: InputMaybe; address_ends_with?: InputMaybe; address_not_starts_with?: InputMaybe; address_not_ends_with?: InputMaybe; assetTokenId?: InputMaybe; assetTokenId_not?: InputMaybe; assetTokenId_in?: InputMaybe>>; assetTokenId_not_in?: InputMaybe>>; assetTokenId_gt?: InputMaybe; assetTokenId_lt?: InputMaybe; assetTokenId_gte?: InputMaybe; assetTokenId_lte?: InputMaybe; decimals?: InputMaybe; decimals_not?: InputMaybe; decimals_in?: InputMaybe>>; decimals_not_in?: InputMaybe>>; decimals_gt?: InputMaybe; decimals_lt?: InputMaybe; decimals_gte?: InputMaybe; decimals_lte?: InputMaybe; name?: InputMaybe; name_not?: InputMaybe; name_in?: InputMaybe>>; name_not_in?: InputMaybe>>; name_contains?: InputMaybe; name_not_contains?: InputMaybe; name_starts_with?: InputMaybe; name_ends_with?: InputMaybe; name_not_starts_with?: InputMaybe; name_not_ends_with?: InputMaybe; symbol?: InputMaybe; symbol_not?: InputMaybe; symbol_in?: InputMaybe>>; symbol_not_in?: InputMaybe>>; symbol_contains?: InputMaybe; symbol_not_contains?: InputMaybe; symbol_starts_with?: InputMaybe; symbol_ends_with?: InputMaybe; symbol_not_starts_with?: InputMaybe; symbol_not_ends_with?: InputMaybe; }; export type HoldingPage = { __typename?: 'HoldingPage'; items: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type Holding = { __typename?: 'Holding'; centrifugeId: Scalars['String']['output']; poolId: Scalars['BigInt']['output']; tokenId: Scalars['String']['output']; isInitialized: Scalars['Boolean']['output']; isLiability?: Maybe; valuation?: Maybe; assetId: Scalars['BigInt']['output']; assetQuantity: Scalars['BigInt']['output']; totalValue: Scalars['BigInt']['output']; updatedAt?: Maybe; updatedAtBlock?: Maybe; blockchain?: Maybe; token?: Maybe; holdingEscrow?: Maybe; }; export type HoldingEscrow = { __typename?: 'HoldingEscrow'; centrifugeId: Scalars['String']['output']; poolId: Scalars['BigInt']['output']; tokenId: Scalars['String']['output']; assetId: Scalars['BigInt']['output']; assetAddress: Scalars['String']['output']; assetAmount?: Maybe; assetPrice?: Maybe; escrowAddress: Scalars['String']['output']; blockchain?: Maybe; holding?: Maybe; asset?: Maybe; escrow?: Maybe; }; export type Escrow = { __typename?: 'Escrow'; address: Scalars['String']['output']; poolId: Scalars['BigInt']['output']; centrifugeId: Scalars['String']['output']; blockchain?: Maybe; holdingEscrows?: Maybe; }; export type EscrowHoldingEscrowsArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export type HoldingEscrowPage = { __typename?: 'HoldingEscrowPage'; items: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type HoldingEscrowFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; centrifugeId?: InputMaybe; centrifugeId_not?: InputMaybe; centrifugeId_in?: InputMaybe>>; centrifugeId_not_in?: InputMaybe>>; centrifugeId_contains?: InputMaybe; centrifugeId_not_contains?: InputMaybe; centrifugeId_starts_with?: InputMaybe; centrifugeId_ends_with?: InputMaybe; centrifugeId_not_starts_with?: InputMaybe; centrifugeId_not_ends_with?: InputMaybe; poolId?: InputMaybe; poolId_not?: InputMaybe; poolId_in?: InputMaybe>>; poolId_not_in?: InputMaybe>>; poolId_gt?: InputMaybe; poolId_lt?: InputMaybe; poolId_gte?: InputMaybe; poolId_lte?: InputMaybe; tokenId?: InputMaybe; tokenId_not?: InputMaybe; tokenId_in?: InputMaybe>>; tokenId_not_in?: InputMaybe>>; tokenId_contains?: InputMaybe; tokenId_not_contains?: InputMaybe; tokenId_starts_with?: InputMaybe; tokenId_ends_with?: InputMaybe; tokenId_not_starts_with?: InputMaybe; tokenId_not_ends_with?: InputMaybe; assetId?: InputMaybe; assetId_not?: InputMaybe; assetId_in?: InputMaybe>>; assetId_not_in?: InputMaybe>>; assetId_gt?: InputMaybe; assetId_lt?: InputMaybe; assetId_gte?: InputMaybe; assetId_lte?: InputMaybe; assetAddress?: InputMaybe; assetAddress_not?: InputMaybe; assetAddress_in?: InputMaybe>>; assetAddress_not_in?: InputMaybe>>; assetAddress_contains?: InputMaybe; assetAddress_not_contains?: InputMaybe; assetAddress_starts_with?: InputMaybe; assetAddress_ends_with?: InputMaybe; assetAddress_not_starts_with?: InputMaybe; assetAddress_not_ends_with?: InputMaybe; assetAmount?: InputMaybe; assetAmount_not?: InputMaybe; assetAmount_in?: InputMaybe>>; assetAmount_not_in?: InputMaybe>>; assetAmount_gt?: InputMaybe; assetAmount_lt?: InputMaybe; assetAmount_gte?: InputMaybe; assetAmount_lte?: InputMaybe; assetPrice?: InputMaybe; assetPrice_not?: InputMaybe; assetPrice_in?: InputMaybe>>; assetPrice_not_in?: InputMaybe>>; assetPrice_gt?: InputMaybe; assetPrice_lt?: InputMaybe; assetPrice_gte?: InputMaybe; assetPrice_lte?: InputMaybe; escrowAddress?: InputMaybe; escrowAddress_not?: InputMaybe; escrowAddress_in?: InputMaybe>>; escrowAddress_not_in?: InputMaybe>>; escrowAddress_contains?: InputMaybe; escrowAddress_not_contains?: InputMaybe; escrowAddress_starts_with?: InputMaybe; escrowAddress_ends_with?: InputMaybe; escrowAddress_not_starts_with?: InputMaybe; escrowAddress_not_ends_with?: InputMaybe; }; export type HoldingFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; centrifugeId?: InputMaybe; centrifugeId_not?: InputMaybe; centrifugeId_in?: InputMaybe>>; centrifugeId_not_in?: InputMaybe>>; centrifugeId_contains?: InputMaybe; centrifugeId_not_contains?: InputMaybe; centrifugeId_starts_with?: InputMaybe; centrifugeId_ends_with?: InputMaybe; centrifugeId_not_starts_with?: InputMaybe; centrifugeId_not_ends_with?: InputMaybe; poolId?: InputMaybe; poolId_not?: InputMaybe; poolId_in?: InputMaybe>>; poolId_not_in?: InputMaybe>>; poolId_gt?: InputMaybe; poolId_lt?: InputMaybe; poolId_gte?: InputMaybe; poolId_lte?: InputMaybe; tokenId?: InputMaybe; tokenId_not?: InputMaybe; tokenId_in?: InputMaybe>>; tokenId_not_in?: InputMaybe>>; tokenId_contains?: InputMaybe; tokenId_not_contains?: InputMaybe; tokenId_starts_with?: InputMaybe; tokenId_ends_with?: InputMaybe; tokenId_not_starts_with?: InputMaybe; tokenId_not_ends_with?: InputMaybe; isInitialized?: InputMaybe; isInitialized_not?: InputMaybe; isInitialized_in?: InputMaybe>>; isInitialized_not_in?: InputMaybe>>; isLiability?: InputMaybe; isLiability_not?: InputMaybe; isLiability_in?: InputMaybe>>; isLiability_not_in?: InputMaybe>>; valuation?: InputMaybe; valuation_not?: InputMaybe; valuation_in?: InputMaybe>>; valuation_not_in?: InputMaybe>>; valuation_contains?: InputMaybe; valuation_not_contains?: InputMaybe; valuation_starts_with?: InputMaybe; valuation_ends_with?: InputMaybe; valuation_not_starts_with?: InputMaybe; valuation_not_ends_with?: InputMaybe; assetId?: InputMaybe; assetId_not?: InputMaybe; assetId_in?: InputMaybe>>; assetId_not_in?: InputMaybe>>; assetId_gt?: InputMaybe; assetId_lt?: InputMaybe; assetId_gte?: InputMaybe; assetId_lte?: InputMaybe; assetQuantity?: InputMaybe; assetQuantity_not?: InputMaybe; assetQuantity_in?: InputMaybe>>; assetQuantity_not_in?: InputMaybe>>; assetQuantity_gt?: InputMaybe; assetQuantity_lt?: InputMaybe; assetQuantity_gte?: InputMaybe; assetQuantity_lte?: InputMaybe; totalValue?: InputMaybe; totalValue_not?: InputMaybe; totalValue_in?: InputMaybe>>; totalValue_not_in?: InputMaybe>>; totalValue_gt?: InputMaybe; totalValue_lt?: InputMaybe; totalValue_gte?: InputMaybe; totalValue_lte?: InputMaybe; updatedAt?: InputMaybe; updatedAt_not?: InputMaybe; updatedAt_in?: InputMaybe>>; updatedAt_not_in?: InputMaybe>>; updatedAt_contains?: InputMaybe; updatedAt_not_contains?: InputMaybe; updatedAt_starts_with?: InputMaybe; updatedAt_ends_with?: InputMaybe; updatedAt_not_starts_with?: InputMaybe; updatedAt_not_ends_with?: InputMaybe; updatedAtBlock?: InputMaybe; updatedAtBlock_not?: InputMaybe; updatedAtBlock_in?: InputMaybe>>; updatedAtBlock_not_in?: InputMaybe>>; updatedAtBlock_gt?: InputMaybe; updatedAtBlock_lt?: InputMaybe; updatedAtBlock_gte?: InputMaybe; updatedAtBlock_lte?: InputMaybe; }; export type EscrowPage = { __typename?: 'EscrowPage'; items: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type EscrowFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; address?: InputMaybe; address_not?: InputMaybe; address_in?: InputMaybe>>; address_not_in?: InputMaybe>>; address_contains?: InputMaybe; address_not_contains?: InputMaybe; address_starts_with?: InputMaybe; address_ends_with?: InputMaybe; address_not_starts_with?: InputMaybe; address_not_ends_with?: InputMaybe; poolId?: InputMaybe; poolId_not?: InputMaybe; poolId_in?: InputMaybe>>; poolId_not_in?: InputMaybe>>; poolId_gt?: InputMaybe; poolId_lt?: InputMaybe; poolId_gte?: InputMaybe; poolId_lte?: InputMaybe; centrifugeId?: InputMaybe; centrifugeId_not?: InputMaybe; centrifugeId_in?: InputMaybe>>; centrifugeId_not_in?: InputMaybe>>; centrifugeId_contains?: InputMaybe; centrifugeId_not_contains?: InputMaybe; centrifugeId_starts_with?: InputMaybe; centrifugeId_ends_with?: InputMaybe; centrifugeId_not_starts_with?: InputMaybe; centrifugeId_not_ends_with?: InputMaybe; }; export type BlockchainPage = { __typename?: 'BlockchainPage'; items: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type BlockchainFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; id?: InputMaybe; id_not?: InputMaybe; id_in?: InputMaybe>>; id_not_in?: InputMaybe>>; id_contains?: InputMaybe; id_not_contains?: InputMaybe; id_starts_with?: InputMaybe; id_ends_with?: InputMaybe; id_not_starts_with?: InputMaybe; id_not_ends_with?: InputMaybe; centrifugeId?: InputMaybe; centrifugeId_not?: InputMaybe; centrifugeId_in?: InputMaybe>>; centrifugeId_not_in?: InputMaybe>>; centrifugeId_contains?: InputMaybe; centrifugeId_not_contains?: InputMaybe; centrifugeId_starts_with?: InputMaybe; centrifugeId_ends_with?: InputMaybe; centrifugeId_not_starts_with?: InputMaybe; centrifugeId_not_ends_with?: InputMaybe; network?: InputMaybe; network_not?: InputMaybe; network_in?: InputMaybe>>; network_not_in?: InputMaybe>>; network_contains?: InputMaybe; network_not_contains?: InputMaybe; network_starts_with?: InputMaybe; network_ends_with?: InputMaybe; network_not_starts_with?: InputMaybe; network_not_ends_with?: InputMaybe; lastPeriodStart?: InputMaybe; lastPeriodStart_not?: InputMaybe; lastPeriodStart_in?: InputMaybe>>; lastPeriodStart_not_in?: InputMaybe>>; lastPeriodStart_contains?: InputMaybe; lastPeriodStart_not_contains?: InputMaybe; lastPeriodStart_starts_with?: InputMaybe; lastPeriodStart_ends_with?: InputMaybe; lastPeriodStart_not_starts_with?: InputMaybe; lastPeriodStart_not_ends_with?: InputMaybe; }; export type Deployment = { __typename?: 'Deployment'; chainId: Scalars['String']['output']; centrifugeId: Scalars['String']['output']; root?: Maybe; guardian?: Maybe; gasService?: Maybe; gateway?: Maybe; multiAdapter?: Maybe; messageProcessor?: Maybe; messageDispatcher?: Maybe; hubRegistry?: Maybe; accounting?: Maybe; holdings?: Maybe; shareClassManager?: Maybe; hub?: Maybe; identityValuation?: Maybe; poolEscrowFactory?: Maybe; routerEscrow?: Maybe; globalEscrow?: Maybe; freezeOnlyHook?: Maybe; redemptionRestrictionsHook?: Maybe; fullRestrictionsHook?: Maybe; tokenFactory?: Maybe; asyncRequestManager?: Maybe; syncManager?: Maybe; asyncVaultFactory?: Maybe; syncDepositVaultFactory?: Maybe; spoke?: Maybe; vaultRouter?: Maybe; balanceSheet?: Maybe; wormholeAdapter?: Maybe; axelarAdapter?: Maybe; blockchain?: Maybe; }; export type DeploymentPage = { __typename?: 'DeploymentPage'; items: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type DeploymentFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; chainId?: InputMaybe; chainId_not?: InputMaybe; chainId_in?: InputMaybe>>; chainId_not_in?: InputMaybe>>; chainId_contains?: InputMaybe; chainId_not_contains?: InputMaybe; chainId_starts_with?: InputMaybe; chainId_ends_with?: InputMaybe; chainId_not_starts_with?: InputMaybe; chainId_not_ends_with?: InputMaybe; centrifugeId?: InputMaybe; centrifugeId_not?: InputMaybe; centrifugeId_in?: InputMaybe>>; centrifugeId_not_in?: InputMaybe>>; centrifugeId_contains?: InputMaybe; centrifugeId_not_contains?: InputMaybe; centrifugeId_starts_with?: InputMaybe; centrifugeId_ends_with?: InputMaybe; centrifugeId_not_starts_with?: InputMaybe; centrifugeId_not_ends_with?: InputMaybe; root?: InputMaybe; root_not?: InputMaybe; root_in?: InputMaybe>>; root_not_in?: InputMaybe>>; root_contains?: InputMaybe; root_not_contains?: InputMaybe; root_starts_with?: InputMaybe; root_ends_with?: InputMaybe; root_not_starts_with?: InputMaybe; root_not_ends_with?: InputMaybe; guardian?: InputMaybe; guardian_not?: InputMaybe; guardian_in?: InputMaybe>>; guardian_not_in?: InputMaybe>>; guardian_contains?: InputMaybe; guardian_not_contains?: InputMaybe; guardian_starts_with?: InputMaybe; guardian_ends_with?: InputMaybe; guardian_not_starts_with?: InputMaybe; guardian_not_ends_with?: InputMaybe; gasService?: InputMaybe; gasService_not?: InputMaybe; gasService_in?: InputMaybe>>; gasService_not_in?: InputMaybe>>; gasService_contains?: InputMaybe; gasService_not_contains?: InputMaybe; gasService_starts_with?: InputMaybe; gasService_ends_with?: InputMaybe; gasService_not_starts_with?: InputMaybe; gasService_not_ends_with?: InputMaybe; gateway?: InputMaybe; gateway_not?: InputMaybe; gateway_in?: InputMaybe>>; gateway_not_in?: InputMaybe>>; gateway_contains?: InputMaybe; gateway_not_contains?: InputMaybe; gateway_starts_with?: InputMaybe; gateway_ends_with?: InputMaybe; gateway_not_starts_with?: InputMaybe; gateway_not_ends_with?: InputMaybe; multiAdapter?: InputMaybe; multiAdapter_not?: InputMaybe; multiAdapter_in?: InputMaybe>>; multiAdapter_not_in?: InputMaybe>>; multiAdapter_contains?: InputMaybe; multiAdapter_not_contains?: InputMaybe; multiAdapter_starts_with?: InputMaybe; multiAdapter_ends_with?: InputMaybe; multiAdapter_not_starts_with?: InputMaybe; multiAdapter_not_ends_with?: InputMaybe; messageProcessor?: InputMaybe; messageProcessor_not?: InputMaybe; messageProcessor_in?: InputMaybe>>; messageProcessor_not_in?: InputMaybe>>; messageProcessor_contains?: InputMaybe; messageProcessor_not_contains?: InputMaybe; messageProcessor_starts_with?: InputMaybe; messageProcessor_ends_with?: InputMaybe; messageProcessor_not_starts_with?: InputMaybe; messageProcessor_not_ends_with?: InputMaybe; messageDispatcher?: InputMaybe; messageDispatcher_not?: InputMaybe; messageDispatcher_in?: InputMaybe>>; messageDispatcher_not_in?: InputMaybe>>; messageDispatcher_contains?: InputMaybe; messageDispatcher_not_contains?: InputMaybe; messageDispatcher_starts_with?: InputMaybe; messageDispatcher_ends_with?: InputMaybe; messageDispatcher_not_starts_with?: InputMaybe; messageDispatcher_not_ends_with?: InputMaybe; hubRegistry?: InputMaybe; hubRegistry_not?: InputMaybe; hubRegistry_in?: InputMaybe>>; hubRegistry_not_in?: InputMaybe>>; hubRegistry_contains?: InputMaybe; hubRegistry_not_contains?: InputMaybe; hubRegistry_starts_with?: InputMaybe; hubRegistry_ends_with?: InputMaybe; hubRegistry_not_starts_with?: InputMaybe; hubRegistry_not_ends_with?: InputMaybe; accounting?: InputMaybe; accounting_not?: InputMaybe; accounting_in?: InputMaybe>>; accounting_not_in?: InputMaybe>>; accounting_contains?: InputMaybe; accounting_not_contains?: InputMaybe; accounting_starts_with?: InputMaybe; accounting_ends_with?: InputMaybe; accounting_not_starts_with?: InputMaybe; accounting_not_ends_with?: InputMaybe; holdings?: InputMaybe; holdings_not?: InputMaybe; holdings_in?: InputMaybe>>; holdings_not_in?: InputMaybe>>; holdings_contains?: InputMaybe; holdings_not_contains?: InputMaybe; holdings_starts_with?: InputMaybe; holdings_ends_with?: InputMaybe; holdings_not_starts_with?: InputMaybe; holdings_not_ends_with?: InputMaybe; shareClassManager?: InputMaybe; shareClassManager_not?: InputMaybe; shareClassManager_in?: InputMaybe>>; shareClassManager_not_in?: InputMaybe>>; shareClassManager_contains?: InputMaybe; shareClassManager_not_contains?: InputMaybe; shareClassManager_starts_with?: InputMaybe; shareClassManager_ends_with?: InputMaybe; shareClassManager_not_starts_with?: InputMaybe; shareClassManager_not_ends_with?: InputMaybe; hub?: InputMaybe; hub_not?: InputMaybe; hub_in?: InputMaybe>>; hub_not_in?: InputMaybe>>; hub_contains?: InputMaybe; hub_not_contains?: InputMaybe; hub_starts_with?: InputMaybe; hub_ends_with?: InputMaybe; hub_not_starts_with?: InputMaybe; hub_not_ends_with?: InputMaybe; identityValuation?: InputMaybe; identityValuation_not?: InputMaybe; identityValuation_in?: InputMaybe>>; identityValuation_not_in?: InputMaybe>>; identityValuation_contains?: InputMaybe; identityValuation_not_contains?: InputMaybe; identityValuation_starts_with?: InputMaybe; identityValuation_ends_with?: InputMaybe; identityValuation_not_starts_with?: InputMaybe; identityValuation_not_ends_with?: InputMaybe; poolEscrowFactory?: InputMaybe; poolEscrowFactory_not?: InputMaybe; poolEscrowFactory_in?: InputMaybe>>; poolEscrowFactory_not_in?: InputMaybe>>; poolEscrowFactory_contains?: InputMaybe; poolEscrowFactory_not_contains?: InputMaybe; poolEscrowFactory_starts_with?: InputMaybe; poolEscrowFactory_ends_with?: InputMaybe; poolEscrowFactory_not_starts_with?: InputMaybe; poolEscrowFactory_not_ends_with?: InputMaybe; routerEscrow?: InputMaybe; routerEscrow_not?: InputMaybe; routerEscrow_in?: InputMaybe>>; routerEscrow_not_in?: InputMaybe>>; routerEscrow_contains?: InputMaybe; routerEscrow_not_contains?: InputMaybe; routerEscrow_starts_with?: InputMaybe; routerEscrow_ends_with?: InputMaybe; routerEscrow_not_starts_with?: InputMaybe; routerEscrow_not_ends_with?: InputMaybe; globalEscrow?: InputMaybe; globalEscrow_not?: InputMaybe; globalEscrow_in?: InputMaybe>>; globalEscrow_not_in?: InputMaybe>>; globalEscrow_contains?: InputMaybe; globalEscrow_not_contains?: InputMaybe; globalEscrow_starts_with?: InputMaybe; globalEscrow_ends_with?: InputMaybe; globalEscrow_not_starts_with?: InputMaybe; globalEscrow_not_ends_with?: InputMaybe; freezeOnlyHook?: InputMaybe; freezeOnlyHook_not?: InputMaybe; freezeOnlyHook_in?: InputMaybe>>; freezeOnlyHook_not_in?: InputMaybe>>; freezeOnlyHook_contains?: InputMaybe; freezeOnlyHook_not_contains?: InputMaybe; freezeOnlyHook_starts_with?: InputMaybe; freezeOnlyHook_ends_with?: InputMaybe; freezeOnlyHook_not_starts_with?: InputMaybe; freezeOnlyHook_not_ends_with?: InputMaybe; redemptionRestrictionsHook?: InputMaybe; redemptionRestrictionsHook_not?: InputMaybe; redemptionRestrictionsHook_in?: InputMaybe>>; redemptionRestrictionsHook_not_in?: InputMaybe>>; redemptionRestrictionsHook_contains?: InputMaybe; redemptionRestrictionsHook_not_contains?: InputMaybe; redemptionRestrictionsHook_starts_with?: InputMaybe; redemptionRestrictionsHook_ends_with?: InputMaybe; redemptionRestrictionsHook_not_starts_with?: InputMaybe; redemptionRestrictionsHook_not_ends_with?: InputMaybe; fullRestrictionsHook?: InputMaybe; fullRestrictionsHook_not?: InputMaybe; fullRestrictionsHook_in?: InputMaybe>>; fullRestrictionsHook_not_in?: InputMaybe>>; fullRestrictionsHook_contains?: InputMaybe; fullRestrictionsHook_not_contains?: InputMaybe; fullRestrictionsHook_starts_with?: InputMaybe; fullRestrictionsHook_ends_with?: InputMaybe; fullRestrictionsHook_not_starts_with?: InputMaybe; fullRestrictionsHook_not_ends_with?: InputMaybe; tokenFactory?: InputMaybe; tokenFactory_not?: InputMaybe; tokenFactory_in?: InputMaybe>>; tokenFactory_not_in?: InputMaybe>>; tokenFactory_contains?: InputMaybe; tokenFactory_not_contains?: InputMaybe; tokenFactory_starts_with?: InputMaybe; tokenFactory_ends_with?: InputMaybe; tokenFactory_not_starts_with?: InputMaybe; tokenFactory_not_ends_with?: InputMaybe; asyncRequestManager?: InputMaybe; asyncRequestManager_not?: InputMaybe; asyncRequestManager_in?: InputMaybe>>; asyncRequestManager_not_in?: InputMaybe>>; asyncRequestManager_contains?: InputMaybe; asyncRequestManager_not_contains?: InputMaybe; asyncRequestManager_starts_with?: InputMaybe; asyncRequestManager_ends_with?: InputMaybe; asyncRequestManager_not_starts_with?: InputMaybe; asyncRequestManager_not_ends_with?: InputMaybe; syncManager?: InputMaybe; syncManager_not?: InputMaybe; syncManager_in?: InputMaybe>>; syncManager_not_in?: InputMaybe>>; syncManager_contains?: InputMaybe; syncManager_not_contains?: InputMaybe; syncManager_starts_with?: InputMaybe; syncManager_ends_with?: InputMaybe; syncManager_not_starts_with?: InputMaybe; syncManager_not_ends_with?: InputMaybe; asyncVaultFactory?: InputMaybe; asyncVaultFactory_not?: InputMaybe; asyncVaultFactory_in?: InputMaybe>>; asyncVaultFactory_not_in?: InputMaybe>>; asyncVaultFactory_contains?: InputMaybe; asyncVaultFactory_not_contains?: InputMaybe; asyncVaultFactory_starts_with?: InputMaybe; asyncVaultFactory_ends_with?: InputMaybe; asyncVaultFactory_not_starts_with?: InputMaybe; asyncVaultFactory_not_ends_with?: InputMaybe; syncDepositVaultFactory?: InputMaybe; syncDepositVaultFactory_not?: InputMaybe; syncDepositVaultFactory_in?: InputMaybe>>; syncDepositVaultFactory_not_in?: InputMaybe>>; syncDepositVaultFactory_contains?: InputMaybe; syncDepositVaultFactory_not_contains?: InputMaybe; syncDepositVaultFactory_starts_with?: InputMaybe; syncDepositVaultFactory_ends_with?: InputMaybe; syncDepositVaultFactory_not_starts_with?: InputMaybe; syncDepositVaultFactory_not_ends_with?: InputMaybe; spoke?: InputMaybe; spoke_not?: InputMaybe; spoke_in?: InputMaybe>>; spoke_not_in?: InputMaybe>>; spoke_contains?: InputMaybe; spoke_not_contains?: InputMaybe; spoke_starts_with?: InputMaybe; spoke_ends_with?: InputMaybe; spoke_not_starts_with?: InputMaybe; spoke_not_ends_with?: InputMaybe; vaultRouter?: InputMaybe; vaultRouter_not?: InputMaybe; vaultRouter_in?: InputMaybe>>; vaultRouter_not_in?: InputMaybe>>; vaultRouter_contains?: InputMaybe; vaultRouter_not_contains?: InputMaybe; vaultRouter_starts_with?: InputMaybe; vaultRouter_ends_with?: InputMaybe; vaultRouter_not_starts_with?: InputMaybe; vaultRouter_not_ends_with?: InputMaybe; balanceSheet?: InputMaybe; balanceSheet_not?: InputMaybe; balanceSheet_in?: InputMaybe>>; balanceSheet_not_in?: InputMaybe>>; balanceSheet_contains?: InputMaybe; balanceSheet_not_contains?: InputMaybe; balanceSheet_starts_with?: InputMaybe; balanceSheet_ends_with?: InputMaybe; balanceSheet_not_starts_with?: InputMaybe; balanceSheet_not_ends_with?: InputMaybe; wormholeAdapter?: InputMaybe; wormholeAdapter_not?: InputMaybe; wormholeAdapter_in?: InputMaybe>>; wormholeAdapter_not_in?: InputMaybe>>; wormholeAdapter_contains?: InputMaybe; wormholeAdapter_not_contains?: InputMaybe; wormholeAdapter_starts_with?: InputMaybe; wormholeAdapter_ends_with?: InputMaybe; wormholeAdapter_not_starts_with?: InputMaybe; wormholeAdapter_not_ends_with?: InputMaybe; axelarAdapter?: InputMaybe; axelarAdapter_not?: InputMaybe; axelarAdapter_in?: InputMaybe>>; axelarAdapter_not_in?: InputMaybe>>; axelarAdapter_contains?: InputMaybe; axelarAdapter_not_contains?: InputMaybe; axelarAdapter_starts_with?: InputMaybe; axelarAdapter_ends_with?: InputMaybe; axelarAdapter_not_starts_with?: InputMaybe; axelarAdapter_not_ends_with?: InputMaybe; }; export type OutstandingRedeem = { __typename?: 'OutstandingRedeem'; poolId: Scalars['BigInt']['output']; tokenId: Scalars['String']['output']; assetId: Scalars['BigInt']['output']; account: Scalars['String']['output']; pendingAmount?: Maybe; queuedAmount?: Maybe; depositAmount?: Maybe; approvedAmount?: Maybe; approvedAt?: Maybe; approvedAtBlock?: Maybe; updatedAt?: Maybe; updatedAtBlock?: Maybe; token?: Maybe; }; export type OutstandingRedeemPage = { __typename?: 'OutstandingRedeemPage'; items: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type OutstandingRedeemFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; poolId?: InputMaybe; poolId_not?: InputMaybe; poolId_in?: InputMaybe>>; poolId_not_in?: InputMaybe>>; poolId_gt?: InputMaybe; poolId_lt?: InputMaybe; poolId_gte?: InputMaybe; poolId_lte?: InputMaybe; tokenId?: InputMaybe; tokenId_not?: InputMaybe; tokenId_in?: InputMaybe>>; tokenId_not_in?: InputMaybe>>; tokenId_contains?: InputMaybe; tokenId_not_contains?: InputMaybe; tokenId_starts_with?: InputMaybe; tokenId_ends_with?: InputMaybe; tokenId_not_starts_with?: InputMaybe; tokenId_not_ends_with?: InputMaybe; assetId?: InputMaybe; assetId_not?: InputMaybe; assetId_in?: InputMaybe>>; assetId_not_in?: InputMaybe>>; assetId_gt?: InputMaybe; assetId_lt?: InputMaybe; assetId_gte?: InputMaybe; assetId_lte?: InputMaybe; account?: InputMaybe; account_not?: InputMaybe; account_in?: InputMaybe>>; account_not_in?: InputMaybe>>; account_contains?: InputMaybe; account_not_contains?: InputMaybe; account_starts_with?: InputMaybe; account_ends_with?: InputMaybe; account_not_starts_with?: InputMaybe; account_not_ends_with?: InputMaybe; pendingAmount?: InputMaybe; pendingAmount_not?: InputMaybe; pendingAmount_in?: InputMaybe>>; pendingAmount_not_in?: InputMaybe>>; pendingAmount_gt?: InputMaybe; pendingAmount_lt?: InputMaybe; pendingAmount_gte?: InputMaybe; pendingAmount_lte?: InputMaybe; queuedAmount?: InputMaybe; queuedAmount_not?: InputMaybe; queuedAmount_in?: InputMaybe>>; queuedAmount_not_in?: InputMaybe>>; queuedAmount_gt?: InputMaybe; queuedAmount_lt?: InputMaybe; queuedAmount_gte?: InputMaybe; queuedAmount_lte?: InputMaybe; depositAmount?: InputMaybe; depositAmount_not?: InputMaybe; depositAmount_in?: InputMaybe>>; depositAmount_not_in?: InputMaybe>>; depositAmount_gt?: InputMaybe; depositAmount_lt?: InputMaybe; depositAmount_gte?: InputMaybe; depositAmount_lte?: InputMaybe; approvedAmount?: InputMaybe; approvedAmount_not?: InputMaybe; approvedAmount_in?: InputMaybe>>; approvedAmount_not_in?: InputMaybe>>; approvedAmount_gt?: InputMaybe; approvedAmount_lt?: InputMaybe; approvedAmount_gte?: InputMaybe; approvedAmount_lte?: InputMaybe; approvedAt?: InputMaybe; approvedAt_not?: InputMaybe; approvedAt_in?: InputMaybe>>; approvedAt_not_in?: InputMaybe>>; approvedAt_contains?: InputMaybe; approvedAt_not_contains?: InputMaybe; approvedAt_starts_with?: InputMaybe; approvedAt_ends_with?: InputMaybe; approvedAt_not_starts_with?: InputMaybe; approvedAt_not_ends_with?: InputMaybe; approvedAtBlock?: InputMaybe; approvedAtBlock_not?: InputMaybe; approvedAtBlock_in?: InputMaybe>>; approvedAtBlock_not_in?: InputMaybe>>; approvedAtBlock_gt?: InputMaybe; approvedAtBlock_lt?: InputMaybe; approvedAtBlock_gte?: InputMaybe; approvedAtBlock_lte?: InputMaybe; updatedAt?: InputMaybe; updatedAt_not?: InputMaybe; updatedAt_in?: InputMaybe>>; updatedAt_not_in?: InputMaybe>>; updatedAt_contains?: InputMaybe; updatedAt_not_contains?: InputMaybe; updatedAt_starts_with?: InputMaybe; updatedAt_ends_with?: InputMaybe; updatedAt_not_starts_with?: InputMaybe; updatedAt_not_ends_with?: InputMaybe; updatedAtBlock?: InputMaybe; updatedAtBlock_not?: InputMaybe; updatedAtBlock_in?: InputMaybe>>; updatedAtBlock_not_in?: InputMaybe>>; updatedAtBlock_gt?: InputMaybe; updatedAtBlock_lt?: InputMaybe; updatedAtBlock_gte?: InputMaybe; updatedAtBlock_lte?: InputMaybe; }; export type InvestOrder = { __typename?: 'InvestOrder'; poolId: Scalars['BigInt']['output']; tokenId: Scalars['String']['output']; assetId: Scalars['BigInt']['output']; account: Scalars['String']['output']; index: Scalars['Int']['output']; approvedAt?: Maybe; approvedAtBlock?: Maybe; approvedAssetsAmount?: Maybe; issuedSharesAmount?: Maybe; issuedWithNavPoolPerShare?: Maybe; issuedWithNavAssetPerShare?: Maybe; issuedAt?: Maybe; issuedAtBlock?: Maybe; claimedAt?: Maybe; claimedAtBlock?: Maybe; }; export type InvestOrderPage = { __typename?: 'InvestOrderPage'; items: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type InvestOrderFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; poolId?: InputMaybe; poolId_not?: InputMaybe; poolId_in?: InputMaybe>>; poolId_not_in?: InputMaybe>>; poolId_gt?: InputMaybe; poolId_lt?: InputMaybe; poolId_gte?: InputMaybe; poolId_lte?: InputMaybe; tokenId?: InputMaybe; tokenId_not?: InputMaybe; tokenId_in?: InputMaybe>>; tokenId_not_in?: InputMaybe>>; tokenId_contains?: InputMaybe; tokenId_not_contains?: InputMaybe; tokenId_starts_with?: InputMaybe; tokenId_ends_with?: InputMaybe; tokenId_not_starts_with?: InputMaybe; tokenId_not_ends_with?: InputMaybe; assetId?: InputMaybe; assetId_not?: InputMaybe; assetId_in?: InputMaybe>>; assetId_not_in?: InputMaybe>>; assetId_gt?: InputMaybe; assetId_lt?: InputMaybe; assetId_gte?: InputMaybe; assetId_lte?: InputMaybe; account?: InputMaybe; account_not?: InputMaybe; account_in?: InputMaybe>>; account_not_in?: InputMaybe>>; account_contains?: InputMaybe; account_not_contains?: InputMaybe; account_starts_with?: InputMaybe; account_ends_with?: InputMaybe; account_not_starts_with?: InputMaybe; account_not_ends_with?: InputMaybe; index?: InputMaybe; index_not?: InputMaybe; index_in?: InputMaybe>>; index_not_in?: InputMaybe>>; index_gt?: InputMaybe; index_lt?: InputMaybe; index_gte?: InputMaybe; index_lte?: InputMaybe; approvedAt?: InputMaybe; approvedAt_not?: InputMaybe; approvedAt_in?: InputMaybe>>; approvedAt_not_in?: InputMaybe>>; approvedAt_contains?: InputMaybe; approvedAt_not_contains?: InputMaybe; approvedAt_starts_with?: InputMaybe; approvedAt_ends_with?: InputMaybe; approvedAt_not_starts_with?: InputMaybe; approvedAt_not_ends_with?: InputMaybe; approvedAtBlock?: InputMaybe; approvedAtBlock_not?: InputMaybe; approvedAtBlock_in?: InputMaybe>>; approvedAtBlock_not_in?: InputMaybe>>; approvedAtBlock_gt?: InputMaybe; approvedAtBlock_lt?: InputMaybe; approvedAtBlock_gte?: InputMaybe; approvedAtBlock_lte?: InputMaybe; approvedAssetsAmount?: InputMaybe; approvedAssetsAmount_not?: InputMaybe; approvedAssetsAmount_in?: InputMaybe>>; approvedAssetsAmount_not_in?: InputMaybe>>; approvedAssetsAmount_gt?: InputMaybe; approvedAssetsAmount_lt?: InputMaybe; approvedAssetsAmount_gte?: InputMaybe; approvedAssetsAmount_lte?: InputMaybe; issuedSharesAmount?: InputMaybe; issuedSharesAmount_not?: InputMaybe; issuedSharesAmount_in?: InputMaybe>>; issuedSharesAmount_not_in?: InputMaybe>>; issuedSharesAmount_gt?: InputMaybe; issuedSharesAmount_lt?: InputMaybe; issuedSharesAmount_gte?: InputMaybe; issuedSharesAmount_lte?: InputMaybe; issuedWithNavPoolPerShare?: InputMaybe; issuedWithNavPoolPerShare_not?: InputMaybe; issuedWithNavPoolPerShare_in?: InputMaybe>>; issuedWithNavPoolPerShare_not_in?: InputMaybe>>; issuedWithNavPoolPerShare_gt?: InputMaybe; issuedWithNavPoolPerShare_lt?: InputMaybe; issuedWithNavPoolPerShare_gte?: InputMaybe; issuedWithNavPoolPerShare_lte?: InputMaybe; issuedWithNavAssetPerShare?: InputMaybe; issuedWithNavAssetPerShare_not?: InputMaybe; issuedWithNavAssetPerShare_in?: InputMaybe>>; issuedWithNavAssetPerShare_not_in?: InputMaybe>>; issuedWithNavAssetPerShare_gt?: InputMaybe; issuedWithNavAssetPerShare_lt?: InputMaybe; issuedWithNavAssetPerShare_gte?: InputMaybe; issuedWithNavAssetPerShare_lte?: InputMaybe; issuedAt?: InputMaybe; issuedAt_not?: InputMaybe; issuedAt_in?: InputMaybe>>; issuedAt_not_in?: InputMaybe>>; issuedAt_contains?: InputMaybe; issuedAt_not_contains?: InputMaybe; issuedAt_starts_with?: InputMaybe; issuedAt_ends_with?: InputMaybe; issuedAt_not_starts_with?: InputMaybe; issuedAt_not_ends_with?: InputMaybe; issuedAtBlock?: InputMaybe; issuedAtBlock_not?: InputMaybe; issuedAtBlock_in?: InputMaybe>>; issuedAtBlock_not_in?: InputMaybe>>; issuedAtBlock_gt?: InputMaybe; issuedAtBlock_lt?: InputMaybe; issuedAtBlock_gte?: InputMaybe; issuedAtBlock_lte?: InputMaybe; claimedAt?: InputMaybe; claimedAt_not?: InputMaybe; claimedAt_in?: InputMaybe>>; claimedAt_not_in?: InputMaybe>>; claimedAt_contains?: InputMaybe; claimedAt_not_contains?: InputMaybe; claimedAt_starts_with?: InputMaybe; claimedAt_ends_with?: InputMaybe; claimedAt_not_starts_with?: InputMaybe; claimedAt_not_ends_with?: InputMaybe; claimedAtBlock?: InputMaybe; claimedAtBlock_not?: InputMaybe; claimedAtBlock_in?: InputMaybe>>; claimedAtBlock_not_in?: InputMaybe>>; claimedAtBlock_gt?: InputMaybe; claimedAtBlock_lt?: InputMaybe; claimedAtBlock_gte?: InputMaybe; claimedAtBlock_lte?: InputMaybe; }; export type RedeemOrder = { __typename?: 'RedeemOrder'; poolId: Scalars['BigInt']['output']; tokenId: Scalars['String']['output']; assetId: Scalars['BigInt']['output']; account: Scalars['String']['output']; index: Scalars['Int']['output']; approvedAt?: Maybe; approvedAtBlock?: Maybe; approvedSharesAmount?: Maybe; revokedAt?: Maybe; revokedAtBlock?: Maybe; revokedAssetsAmount?: Maybe; revokedPoolAmount?: Maybe; revokedWithNavPoolPerShare?: Maybe; revokedWithNavAssetPerShare?: Maybe; claimedAt?: Maybe; claimedAtBlock?: Maybe; }; export type RedeemOrderPage = { __typename?: 'RedeemOrderPage'; items: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type RedeemOrderFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; poolId?: InputMaybe; poolId_not?: InputMaybe; poolId_in?: InputMaybe>>; poolId_not_in?: InputMaybe>>; poolId_gt?: InputMaybe; poolId_lt?: InputMaybe; poolId_gte?: InputMaybe; poolId_lte?: InputMaybe; tokenId?: InputMaybe; tokenId_not?: InputMaybe; tokenId_in?: InputMaybe>>; tokenId_not_in?: InputMaybe>>; tokenId_contains?: InputMaybe; tokenId_not_contains?: InputMaybe; tokenId_starts_with?: InputMaybe; tokenId_ends_with?: InputMaybe; tokenId_not_starts_with?: InputMaybe; tokenId_not_ends_with?: InputMaybe; assetId?: InputMaybe; assetId_not?: InputMaybe; assetId_in?: InputMaybe>>; assetId_not_in?: InputMaybe>>; assetId_gt?: InputMaybe; assetId_lt?: InputMaybe; assetId_gte?: InputMaybe; assetId_lte?: InputMaybe; account?: InputMaybe; account_not?: InputMaybe; account_in?: InputMaybe>>; account_not_in?: InputMaybe>>; account_contains?: InputMaybe; account_not_contains?: InputMaybe; account_starts_with?: InputMaybe; account_ends_with?: InputMaybe; account_not_starts_with?: InputMaybe; account_not_ends_with?: InputMaybe; index?: InputMaybe; index_not?: InputMaybe; index_in?: InputMaybe>>; index_not_in?: InputMaybe>>; index_gt?: InputMaybe; index_lt?: InputMaybe; index_gte?: InputMaybe; index_lte?: InputMaybe; approvedAt?: InputMaybe; approvedAt_not?: InputMaybe; approvedAt_in?: InputMaybe>>; approvedAt_not_in?: InputMaybe>>; approvedAt_contains?: InputMaybe; approvedAt_not_contains?: InputMaybe; approvedAt_starts_with?: InputMaybe; approvedAt_ends_with?: InputMaybe; approvedAt_not_starts_with?: InputMaybe; approvedAt_not_ends_with?: InputMaybe; approvedAtBlock?: InputMaybe; approvedAtBlock_not?: InputMaybe; approvedAtBlock_in?: InputMaybe>>; approvedAtBlock_not_in?: InputMaybe>>; approvedAtBlock_gt?: InputMaybe; approvedAtBlock_lt?: InputMaybe; approvedAtBlock_gte?: InputMaybe; approvedAtBlock_lte?: InputMaybe; approvedSharesAmount?: InputMaybe; approvedSharesAmount_not?: InputMaybe; approvedSharesAmount_in?: InputMaybe>>; approvedSharesAmount_not_in?: InputMaybe>>; approvedSharesAmount_gt?: InputMaybe; approvedSharesAmount_lt?: InputMaybe; approvedSharesAmount_gte?: InputMaybe; approvedSharesAmount_lte?: InputMaybe; revokedAt?: InputMaybe; revokedAt_not?: InputMaybe; revokedAt_in?: InputMaybe>>; revokedAt_not_in?: InputMaybe>>; revokedAt_contains?: InputMaybe; revokedAt_not_contains?: InputMaybe; revokedAt_starts_with?: InputMaybe; revokedAt_ends_with?: InputMaybe; revokedAt_not_starts_with?: InputMaybe; revokedAt_not_ends_with?: InputMaybe; revokedAtBlock?: InputMaybe; revokedAtBlock_not?: InputMaybe; revokedAtBlock_in?: InputMaybe>>; revokedAtBlock_not_in?: InputMaybe>>; revokedAtBlock_gt?: InputMaybe; revokedAtBlock_lt?: InputMaybe; revokedAtBlock_gte?: InputMaybe; revokedAtBlock_lte?: InputMaybe; revokedAssetsAmount?: InputMaybe; revokedAssetsAmount_not?: InputMaybe; revokedAssetsAmount_in?: InputMaybe>>; revokedAssetsAmount_not_in?: InputMaybe>>; revokedAssetsAmount_gt?: InputMaybe; revokedAssetsAmount_lt?: InputMaybe; revokedAssetsAmount_gte?: InputMaybe; revokedAssetsAmount_lte?: InputMaybe; revokedPoolAmount?: InputMaybe; revokedPoolAmount_not?: InputMaybe; revokedPoolAmount_in?: InputMaybe>>; revokedPoolAmount_not_in?: InputMaybe>>; revokedPoolAmount_gt?: InputMaybe; revokedPoolAmount_lt?: InputMaybe; revokedPoolAmount_gte?: InputMaybe; revokedPoolAmount_lte?: InputMaybe; revokedWithNavPoolPerShare?: InputMaybe; revokedWithNavPoolPerShare_not?: InputMaybe; revokedWithNavPoolPerShare_in?: InputMaybe>>; revokedWithNavPoolPerShare_not_in?: InputMaybe>>; revokedWithNavPoolPerShare_gt?: InputMaybe; revokedWithNavPoolPerShare_lt?: InputMaybe; revokedWithNavPoolPerShare_gte?: InputMaybe; revokedWithNavPoolPerShare_lte?: InputMaybe; revokedWithNavAssetPerShare?: InputMaybe; revokedWithNavAssetPerShare_not?: InputMaybe; revokedWithNavAssetPerShare_in?: InputMaybe>>; revokedWithNavAssetPerShare_not_in?: InputMaybe>>; revokedWithNavAssetPerShare_gt?: InputMaybe; revokedWithNavAssetPerShare_lt?: InputMaybe; revokedWithNavAssetPerShare_gte?: InputMaybe; revokedWithNavAssetPerShare_lte?: InputMaybe; claimedAt?: InputMaybe; claimedAt_not?: InputMaybe; claimedAt_in?: InputMaybe>>; claimedAt_not_in?: InputMaybe>>; claimedAt_contains?: InputMaybe; claimedAt_not_contains?: InputMaybe; claimedAt_starts_with?: InputMaybe; claimedAt_ends_with?: InputMaybe; claimedAt_not_starts_with?: InputMaybe; claimedAt_not_ends_with?: InputMaybe; claimedAtBlock?: InputMaybe; claimedAtBlock_not?: InputMaybe; claimedAtBlock_in?: InputMaybe>>; claimedAtBlock_not_in?: InputMaybe>>; claimedAtBlock_gt?: InputMaybe; claimedAtBlock_lt?: InputMaybe; claimedAtBlock_gte?: InputMaybe; claimedAtBlock_lte?: InputMaybe; }; export type EpochOutstandingInvest = { __typename?: 'EpochOutstandingInvest'; poolId: Scalars['BigInt']['output']; tokenId: Scalars['String']['output']; assetId: Scalars['BigInt']['output']; pendingAssetsAmount?: Maybe; updatedAt?: Maybe; updatedAtBlock?: Maybe; }; export type EpochOutstandingInvestPage = { __typename?: 'EpochOutstandingInvestPage'; items: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type EpochOutstandingInvestFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; poolId?: InputMaybe; poolId_not?: InputMaybe; poolId_in?: InputMaybe>>; poolId_not_in?: InputMaybe>>; poolId_gt?: InputMaybe; poolId_lt?: InputMaybe; poolId_gte?: InputMaybe; poolId_lte?: InputMaybe; tokenId?: InputMaybe; tokenId_not?: InputMaybe; tokenId_in?: InputMaybe>>; tokenId_not_in?: InputMaybe>>; tokenId_contains?: InputMaybe; tokenId_not_contains?: InputMaybe; tokenId_starts_with?: InputMaybe; tokenId_ends_with?: InputMaybe; tokenId_not_starts_with?: InputMaybe; tokenId_not_ends_with?: InputMaybe; assetId?: InputMaybe; assetId_not?: InputMaybe; assetId_in?: InputMaybe>>; assetId_not_in?: InputMaybe>>; assetId_gt?: InputMaybe; assetId_lt?: InputMaybe; assetId_gte?: InputMaybe; assetId_lte?: InputMaybe; pendingAssetsAmount?: InputMaybe; pendingAssetsAmount_not?: InputMaybe; pendingAssetsAmount_in?: InputMaybe>>; pendingAssetsAmount_not_in?: InputMaybe>>; pendingAssetsAmount_gt?: InputMaybe; pendingAssetsAmount_lt?: InputMaybe; pendingAssetsAmount_gte?: InputMaybe; pendingAssetsAmount_lte?: InputMaybe; updatedAt?: InputMaybe; updatedAt_not?: InputMaybe; updatedAt_in?: InputMaybe>>; updatedAt_not_in?: InputMaybe>>; updatedAt_contains?: InputMaybe; updatedAt_not_contains?: InputMaybe; updatedAt_starts_with?: InputMaybe; updatedAt_ends_with?: InputMaybe; updatedAt_not_starts_with?: InputMaybe; updatedAt_not_ends_with?: InputMaybe; updatedAtBlock?: InputMaybe; updatedAtBlock_not?: InputMaybe; updatedAtBlock_in?: InputMaybe>>; updatedAtBlock_not_in?: InputMaybe>>; updatedAtBlock_gt?: InputMaybe; updatedAtBlock_lt?: InputMaybe; updatedAtBlock_gte?: InputMaybe; updatedAtBlock_lte?: InputMaybe; }; export type EpochOutstandingRedeem = { __typename?: 'EpochOutstandingRedeem'; poolId: Scalars['BigInt']['output']; tokenId: Scalars['String']['output']; assetId: Scalars['BigInt']['output']; pendingSharesAmount?: Maybe; updatedAt?: Maybe; updatedAtBlock?: Maybe; }; export type EpochOutstandingRedeemPage = { __typename?: 'EpochOutstandingRedeemPage'; items: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type EpochOutstandingRedeemFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; poolId?: InputMaybe; poolId_not?: InputMaybe; poolId_in?: InputMaybe>>; poolId_not_in?: InputMaybe>>; poolId_gt?: InputMaybe; poolId_lt?: InputMaybe; poolId_gte?: InputMaybe; poolId_lte?: InputMaybe; tokenId?: InputMaybe; tokenId_not?: InputMaybe; tokenId_in?: InputMaybe>>; tokenId_not_in?: InputMaybe>>; tokenId_contains?: InputMaybe; tokenId_not_contains?: InputMaybe; tokenId_starts_with?: InputMaybe; tokenId_ends_with?: InputMaybe; tokenId_not_starts_with?: InputMaybe; tokenId_not_ends_with?: InputMaybe; assetId?: InputMaybe; assetId_not?: InputMaybe; assetId_in?: InputMaybe>>; assetId_not_in?: InputMaybe>>; assetId_gt?: InputMaybe; assetId_lt?: InputMaybe; assetId_gte?: InputMaybe; assetId_lte?: InputMaybe; pendingSharesAmount?: InputMaybe; pendingSharesAmount_not?: InputMaybe; pendingSharesAmount_in?: InputMaybe>>; pendingSharesAmount_not_in?: InputMaybe>>; pendingSharesAmount_gt?: InputMaybe; pendingSharesAmount_lt?: InputMaybe; pendingSharesAmount_gte?: InputMaybe; pendingSharesAmount_lte?: InputMaybe; updatedAt?: InputMaybe; updatedAt_not?: InputMaybe; updatedAt_in?: InputMaybe>>; updatedAt_not_in?: InputMaybe>>; updatedAt_contains?: InputMaybe; updatedAt_not_contains?: InputMaybe; updatedAt_starts_with?: InputMaybe; updatedAt_ends_with?: InputMaybe; updatedAt_not_starts_with?: InputMaybe; updatedAt_not_ends_with?: InputMaybe; updatedAtBlock?: InputMaybe; updatedAtBlock_not?: InputMaybe; updatedAtBlock_in?: InputMaybe>>; updatedAtBlock_not_in?: InputMaybe>>; updatedAtBlock_gt?: InputMaybe; updatedAtBlock_lt?: InputMaybe; updatedAtBlock_gte?: InputMaybe; updatedAtBlock_lte?: InputMaybe; }; export type EpochInvestOrder = { __typename?: 'EpochInvestOrder'; poolId: Scalars['BigInt']['output']; tokenId: Scalars['String']['output']; assetId: Scalars['BigInt']['output']; index: Scalars['Int']['output']; approvedAt?: Maybe; approvedAtBlock?: Maybe; approvedAssetsAmount?: Maybe; approvedPoolAmount?: Maybe; approvedPercentageOfTotalPending?: Maybe; issuedAt?: Maybe; issuedAtBlock?: Maybe; issuedSharesAmount?: Maybe; issuedWithNavPoolPerShare?: Maybe; issuedWithNavAssetPerShare?: Maybe; }; export type EpochInvestOrderPage = { __typename?: 'EpochInvestOrderPage'; items: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type EpochInvestOrderFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; poolId?: InputMaybe; poolId_not?: InputMaybe; poolId_in?: InputMaybe>>; poolId_not_in?: InputMaybe>>; poolId_gt?: InputMaybe; poolId_lt?: InputMaybe; poolId_gte?: InputMaybe; poolId_lte?: InputMaybe; tokenId?: InputMaybe; tokenId_not?: InputMaybe; tokenId_in?: InputMaybe>>; tokenId_not_in?: InputMaybe>>; tokenId_contains?: InputMaybe; tokenId_not_contains?: InputMaybe; tokenId_starts_with?: InputMaybe; tokenId_ends_with?: InputMaybe; tokenId_not_starts_with?: InputMaybe; tokenId_not_ends_with?: InputMaybe; assetId?: InputMaybe; assetId_not?: InputMaybe; assetId_in?: InputMaybe>>; assetId_not_in?: InputMaybe>>; assetId_gt?: InputMaybe; assetId_lt?: InputMaybe; assetId_gte?: InputMaybe; assetId_lte?: InputMaybe; index?: InputMaybe; index_not?: InputMaybe; index_in?: InputMaybe>>; index_not_in?: InputMaybe>>; index_gt?: InputMaybe; index_lt?: InputMaybe; index_gte?: InputMaybe; index_lte?: InputMaybe; approvedAt?: InputMaybe; approvedAt_not?: InputMaybe; approvedAt_in?: InputMaybe>>; approvedAt_not_in?: InputMaybe>>; approvedAt_contains?: InputMaybe; approvedAt_not_contains?: InputMaybe; approvedAt_starts_with?: InputMaybe; approvedAt_ends_with?: InputMaybe; approvedAt_not_starts_with?: InputMaybe; approvedAt_not_ends_with?: InputMaybe; approvedAtBlock?: InputMaybe; approvedAtBlock_not?: InputMaybe; approvedAtBlock_in?: InputMaybe>>; approvedAtBlock_not_in?: InputMaybe>>; approvedAtBlock_gt?: InputMaybe; approvedAtBlock_lt?: InputMaybe; approvedAtBlock_gte?: InputMaybe; approvedAtBlock_lte?: InputMaybe; approvedAssetsAmount?: InputMaybe; approvedAssetsAmount_not?: InputMaybe; approvedAssetsAmount_in?: InputMaybe>>; approvedAssetsAmount_not_in?: InputMaybe>>; approvedAssetsAmount_gt?: InputMaybe; approvedAssetsAmount_lt?: InputMaybe; approvedAssetsAmount_gte?: InputMaybe; approvedAssetsAmount_lte?: InputMaybe; approvedPoolAmount?: InputMaybe; approvedPoolAmount_not?: InputMaybe; approvedPoolAmount_in?: InputMaybe>>; approvedPoolAmount_not_in?: InputMaybe>>; approvedPoolAmount_gt?: InputMaybe; approvedPoolAmount_lt?: InputMaybe; approvedPoolAmount_gte?: InputMaybe; approvedPoolAmount_lte?: InputMaybe; approvedPercentageOfTotalPending?: InputMaybe; approvedPercentageOfTotalPending_not?: InputMaybe; approvedPercentageOfTotalPending_in?: InputMaybe>>; approvedPercentageOfTotalPending_not_in?: InputMaybe>>; approvedPercentageOfTotalPending_gt?: InputMaybe; approvedPercentageOfTotalPending_lt?: InputMaybe; approvedPercentageOfTotalPending_gte?: InputMaybe; approvedPercentageOfTotalPending_lte?: InputMaybe; issuedAt?: InputMaybe; issuedAt_not?: InputMaybe; issuedAt_in?: InputMaybe>>; issuedAt_not_in?: InputMaybe>>; issuedAt_contains?: InputMaybe; issuedAt_not_contains?: InputMaybe; issuedAt_starts_with?: InputMaybe; issuedAt_ends_with?: InputMaybe; issuedAt_not_starts_with?: InputMaybe; issuedAt_not_ends_with?: InputMaybe; issuedAtBlock?: InputMaybe; issuedAtBlock_not?: InputMaybe; issuedAtBlock_in?: InputMaybe>>; issuedAtBlock_not_in?: InputMaybe>>; issuedAtBlock_gt?: InputMaybe; issuedAtBlock_lt?: InputMaybe; issuedAtBlock_gte?: InputMaybe; issuedAtBlock_lte?: InputMaybe; issuedSharesAmount?: InputMaybe; issuedSharesAmount_not?: InputMaybe; issuedSharesAmount_in?: InputMaybe>>; issuedSharesAmount_not_in?: InputMaybe>>; issuedSharesAmount_gt?: InputMaybe; issuedSharesAmount_lt?: InputMaybe; issuedSharesAmount_gte?: InputMaybe; issuedSharesAmount_lte?: InputMaybe; issuedWithNavPoolPerShare?: InputMaybe; issuedWithNavPoolPerShare_not?: InputMaybe; issuedWithNavPoolPerShare_in?: InputMaybe>>; issuedWithNavPoolPerShare_not_in?: InputMaybe>>; issuedWithNavPoolPerShare_gt?: InputMaybe; issuedWithNavPoolPerShare_lt?: InputMaybe; issuedWithNavPoolPerShare_gte?: InputMaybe; issuedWithNavPoolPerShare_lte?: InputMaybe; issuedWithNavAssetPerShare?: InputMaybe; issuedWithNavAssetPerShare_not?: InputMaybe; issuedWithNavAssetPerShare_in?: InputMaybe>>; issuedWithNavAssetPerShare_not_in?: InputMaybe>>; issuedWithNavAssetPerShare_gt?: InputMaybe; issuedWithNavAssetPerShare_lt?: InputMaybe; issuedWithNavAssetPerShare_gte?: InputMaybe; issuedWithNavAssetPerShare_lte?: InputMaybe; }; export type EpochRedeemOrder = { __typename?: 'EpochRedeemOrder'; poolId: Scalars['BigInt']['output']; tokenId: Scalars['String']['output']; assetId: Scalars['BigInt']['output']; index: Scalars['Int']['output']; approvedAt?: Maybe; approvedAtBlock?: Maybe; approvedAssetsAmount?: Maybe; approvedPoolAmount?: Maybe; approvedPercentageOfTotalPending?: Maybe; revokedAt?: Maybe; revokedAtBlock?: Maybe; revokedSharesAmount?: Maybe; revokedAssetsAmount?: Maybe; revokedPoolAmount?: Maybe; revokedWithNavPoolPerShare?: Maybe; revokedWithNavAssetPerShare?: Maybe; }; export type EpochRedeemOrderPage = { __typename?: 'EpochRedeemOrderPage'; items: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type EpochRedeemOrderFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; poolId?: InputMaybe; poolId_not?: InputMaybe; poolId_in?: InputMaybe>>; poolId_not_in?: InputMaybe>>; poolId_gt?: InputMaybe; poolId_lt?: InputMaybe; poolId_gte?: InputMaybe; poolId_lte?: InputMaybe; tokenId?: InputMaybe; tokenId_not?: InputMaybe; tokenId_in?: InputMaybe>>; tokenId_not_in?: InputMaybe>>; tokenId_contains?: InputMaybe; tokenId_not_contains?: InputMaybe; tokenId_starts_with?: InputMaybe; tokenId_ends_with?: InputMaybe; tokenId_not_starts_with?: InputMaybe; tokenId_not_ends_with?: InputMaybe; assetId?: InputMaybe; assetId_not?: InputMaybe; assetId_in?: InputMaybe>>; assetId_not_in?: InputMaybe>>; assetId_gt?: InputMaybe; assetId_lt?: InputMaybe; assetId_gte?: InputMaybe; assetId_lte?: InputMaybe; index?: InputMaybe; index_not?: InputMaybe; index_in?: InputMaybe>>; index_not_in?: InputMaybe>>; index_gt?: InputMaybe; index_lt?: InputMaybe; index_gte?: InputMaybe; index_lte?: InputMaybe; approvedAt?: InputMaybe; approvedAt_not?: InputMaybe; approvedAt_in?: InputMaybe>>; approvedAt_not_in?: InputMaybe>>; approvedAt_contains?: InputMaybe; approvedAt_not_contains?: InputMaybe; approvedAt_starts_with?: InputMaybe; approvedAt_ends_with?: InputMaybe; approvedAt_not_starts_with?: InputMaybe; approvedAt_not_ends_with?: InputMaybe; approvedAtBlock?: InputMaybe; approvedAtBlock_not?: InputMaybe; approvedAtBlock_in?: InputMaybe>>; approvedAtBlock_not_in?: InputMaybe>>; approvedAtBlock_gt?: InputMaybe; approvedAtBlock_lt?: InputMaybe; approvedAtBlock_gte?: InputMaybe; approvedAtBlock_lte?: InputMaybe; approvedAssetsAmount?: InputMaybe; approvedAssetsAmount_not?: InputMaybe; approvedAssetsAmount_in?: InputMaybe>>; approvedAssetsAmount_not_in?: InputMaybe>>; approvedAssetsAmount_gt?: InputMaybe; approvedAssetsAmount_lt?: InputMaybe; approvedAssetsAmount_gte?: InputMaybe; approvedAssetsAmount_lte?: InputMaybe; approvedPoolAmount?: InputMaybe; approvedPoolAmount_not?: InputMaybe; approvedPoolAmount_in?: InputMaybe>>; approvedPoolAmount_not_in?: InputMaybe>>; approvedPoolAmount_gt?: InputMaybe; approvedPoolAmount_lt?: InputMaybe; approvedPoolAmount_gte?: InputMaybe; approvedPoolAmount_lte?: InputMaybe; approvedPercentageOfTotalPending?: InputMaybe; approvedPercentageOfTotalPending_not?: InputMaybe; approvedPercentageOfTotalPending_in?: InputMaybe>>; approvedPercentageOfTotalPending_not_in?: InputMaybe>>; approvedPercentageOfTotalPending_gt?: InputMaybe; approvedPercentageOfTotalPending_lt?: InputMaybe; approvedPercentageOfTotalPending_gte?: InputMaybe; approvedPercentageOfTotalPending_lte?: InputMaybe; revokedAt?: InputMaybe; revokedAt_not?: InputMaybe; revokedAt_in?: InputMaybe>>; revokedAt_not_in?: InputMaybe>>; revokedAt_contains?: InputMaybe; revokedAt_not_contains?: InputMaybe; revokedAt_starts_with?: InputMaybe; revokedAt_ends_with?: InputMaybe; revokedAt_not_starts_with?: InputMaybe; revokedAt_not_ends_with?: InputMaybe; revokedAtBlock?: InputMaybe; revokedAtBlock_not?: InputMaybe; revokedAtBlock_in?: InputMaybe>>; revokedAtBlock_not_in?: InputMaybe>>; revokedAtBlock_gt?: InputMaybe; revokedAtBlock_lt?: InputMaybe; revokedAtBlock_gte?: InputMaybe; revokedAtBlock_lte?: InputMaybe; revokedSharesAmount?: InputMaybe; revokedSharesAmount_not?: InputMaybe; revokedSharesAmount_in?: InputMaybe>>; revokedSharesAmount_not_in?: InputMaybe>>; revokedSharesAmount_gt?: InputMaybe; revokedSharesAmount_lt?: InputMaybe; revokedSharesAmount_gte?: InputMaybe; revokedSharesAmount_lte?: InputMaybe; revokedAssetsAmount?: InputMaybe; revokedAssetsAmount_not?: InputMaybe; revokedAssetsAmount_in?: InputMaybe>>; revokedAssetsAmount_not_in?: InputMaybe>>; revokedAssetsAmount_gt?: InputMaybe; revokedAssetsAmount_lt?: InputMaybe; revokedAssetsAmount_gte?: InputMaybe; revokedAssetsAmount_lte?: InputMaybe; revokedPoolAmount?: InputMaybe; revokedPoolAmount_not?: InputMaybe; revokedPoolAmount_in?: InputMaybe>>; revokedPoolAmount_not_in?: InputMaybe>>; revokedPoolAmount_gt?: InputMaybe; revokedPoolAmount_lt?: InputMaybe; revokedPoolAmount_gte?: InputMaybe; revokedPoolAmount_lte?: InputMaybe; revokedWithNavPoolPerShare?: InputMaybe; revokedWithNavPoolPerShare_not?: InputMaybe; revokedWithNavPoolPerShare_in?: InputMaybe>>; revokedWithNavPoolPerShare_not_in?: InputMaybe>>; revokedWithNavPoolPerShare_gt?: InputMaybe; revokedWithNavPoolPerShare_lt?: InputMaybe; revokedWithNavPoolPerShare_gte?: InputMaybe; revokedWithNavPoolPerShare_lte?: InputMaybe; revokedWithNavAssetPerShare?: InputMaybe; revokedWithNavAssetPerShare_not?: InputMaybe; revokedWithNavAssetPerShare_in?: InputMaybe>>; revokedWithNavAssetPerShare_not_in?: InputMaybe>>; revokedWithNavAssetPerShare_gt?: InputMaybe; revokedWithNavAssetPerShare_lt?: InputMaybe; revokedWithNavAssetPerShare_gte?: InputMaybe; revokedWithNavAssetPerShare_lte?: InputMaybe; }; export type HoldingAccount = { __typename?: 'HoldingAccount'; id: Scalars['String']['output']; tokenId: Scalars['String']['output']; kind: HoldingAccountType; holding?: Maybe; }; export declare enum HoldingAccountType { Asset = "Asset", Equity = "Equity", Loss = "Loss", Gain = "Gain", Expense = "Expense", Liability = "Liability" } export type HoldingAccountPage = { __typename?: 'HoldingAccountPage'; items: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type HoldingAccountFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; id?: InputMaybe; id_not?: InputMaybe; id_in?: InputMaybe>>; id_not_in?: InputMaybe>>; id_contains?: InputMaybe; id_not_contains?: InputMaybe; id_starts_with?: InputMaybe; id_ends_with?: InputMaybe; id_not_starts_with?: InputMaybe; id_not_ends_with?: InputMaybe; tokenId?: InputMaybe; tokenId_not?: InputMaybe; tokenId_in?: InputMaybe>>; tokenId_not_in?: InputMaybe>>; tokenId_contains?: InputMaybe; tokenId_not_contains?: InputMaybe; tokenId_starts_with?: InputMaybe; tokenId_ends_with?: InputMaybe; tokenId_not_starts_with?: InputMaybe; tokenId_not_ends_with?: InputMaybe; kind?: InputMaybe; kind_not?: InputMaybe; kind_in?: InputMaybe>>; kind_not_in?: InputMaybe>>; }; export type OfframpRelayer = { __typename?: 'OfframpRelayer'; address: Scalars['String']['output']; isEnabled: Scalars['Boolean']['output']; }; export type OfframpRelayerPage = { __typename?: 'OfframpRelayerPage'; items: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type OfframpRelayerFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; address?: InputMaybe; address_not?: InputMaybe; address_in?: InputMaybe>>; address_not_in?: InputMaybe>>; address_contains?: InputMaybe; address_not_contains?: InputMaybe; address_starts_with?: InputMaybe; address_ends_with?: InputMaybe; address_not_starts_with?: InputMaybe; address_not_ends_with?: InputMaybe; isEnabled?: InputMaybe; isEnabled_not?: InputMaybe; isEnabled_in?: InputMaybe>>; isEnabled_not_in?: InputMaybe>>; }; export type CrosschainPayload = { __typename?: 'CrosschainPayload'; id: Scalars['String']['output']; fromCentrifugeId: Scalars['String']['output']; toCentrifugeId: Scalars['String']['output']; poolId?: Maybe; votes: Scalars['Int']['output']; status: CrosschainPayloadStatus; createdAt: Scalars['String']['output']; createdAtBlock: Scalars['Int']['output']; deliveredAt?: Maybe; deliveredAtBlock?: Maybe; adapterSending?: Maybe; adapterReceiving?: Maybe; fromBlockchain?: Maybe; toBlockchain?: Maybe; crosschainMessages?: Maybe; pool?: Maybe; }; export type CrosschainPayloadCrosschainMessagesArgs = { where?: InputMaybe; orderBy?: InputMaybe; orderDirection?: InputMaybe; before?: InputMaybe; after?: InputMaybe; limit?: InputMaybe; }; export declare enum CrosschainPayloadStatus { Underpaid = "Underpaid", InProgress = "InProgress", Delivered = "Delivered", PartiallyFailed = "PartiallyFailed" } export type CrosschainMessagePage = { __typename?: 'CrosschainMessagePage'; items: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type CrosschainMessage = { __typename?: 'CrosschainMessage'; id: Scalars['String']['output']; index: Scalars['Int']['output']; poolId?: Maybe; payloadId?: Maybe; messageType: Scalars['String']['output']; status: CrosschainMessageStatus; data: Scalars['String']['output']; fromCentrifugeId: Scalars['String']['output']; toCentrifugeId: Scalars['String']['output']; createdAt: Scalars['String']['output']; createdAtBlock: Scalars['Int']['output']; executedAt?: Maybe; executedAtBlock?: Maybe; crosschainPayload?: Maybe; pool?: Maybe; fromBlockchain?: Maybe; toBlockchain?: Maybe; }; export declare enum CrosschainMessageStatus { AwaitingBatchDelivery = "AwaitingBatchDelivery", Failed = "Failed", Executed = "Executed" } export type CrosschainMessageFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; id?: InputMaybe; id_not?: InputMaybe; id_in?: InputMaybe>>; id_not_in?: InputMaybe>>; id_contains?: InputMaybe; id_not_contains?: InputMaybe; id_starts_with?: InputMaybe; id_ends_with?: InputMaybe; id_not_starts_with?: InputMaybe; id_not_ends_with?: InputMaybe; index?: InputMaybe; index_not?: InputMaybe; index_in?: InputMaybe>>; index_not_in?: InputMaybe>>; index_gt?: InputMaybe; index_lt?: InputMaybe; index_gte?: InputMaybe; index_lte?: InputMaybe; poolId?: InputMaybe; poolId_not?: InputMaybe; poolId_in?: InputMaybe>>; poolId_not_in?: InputMaybe>>; poolId_gt?: InputMaybe; poolId_lt?: InputMaybe; poolId_gte?: InputMaybe; poolId_lte?: InputMaybe; payloadId?: InputMaybe; payloadId_not?: InputMaybe; payloadId_in?: InputMaybe>>; payloadId_not_in?: InputMaybe>>; payloadId_contains?: InputMaybe; payloadId_not_contains?: InputMaybe; payloadId_starts_with?: InputMaybe; payloadId_ends_with?: InputMaybe; payloadId_not_starts_with?: InputMaybe; payloadId_not_ends_with?: InputMaybe; messageType?: InputMaybe; messageType_not?: InputMaybe; messageType_in?: InputMaybe>>; messageType_not_in?: InputMaybe>>; messageType_contains?: InputMaybe; messageType_not_contains?: InputMaybe; messageType_starts_with?: InputMaybe; messageType_ends_with?: InputMaybe; messageType_not_starts_with?: InputMaybe; messageType_not_ends_with?: InputMaybe; status?: InputMaybe; status_not?: InputMaybe; status_in?: InputMaybe>>; status_not_in?: InputMaybe>>; data?: InputMaybe; data_not?: InputMaybe; data_in?: InputMaybe>>; data_not_in?: InputMaybe>>; data_contains?: InputMaybe; data_not_contains?: InputMaybe; data_starts_with?: InputMaybe; data_ends_with?: InputMaybe; data_not_starts_with?: InputMaybe; data_not_ends_with?: InputMaybe; fromCentrifugeId?: InputMaybe; fromCentrifugeId_not?: InputMaybe; fromCentrifugeId_in?: InputMaybe>>; fromCentrifugeId_not_in?: InputMaybe>>; fromCentrifugeId_contains?: InputMaybe; fromCentrifugeId_not_contains?: InputMaybe; fromCentrifugeId_starts_with?: InputMaybe; fromCentrifugeId_ends_with?: InputMaybe; fromCentrifugeId_not_starts_with?: InputMaybe; fromCentrifugeId_not_ends_with?: InputMaybe; toCentrifugeId?: InputMaybe; toCentrifugeId_not?: InputMaybe; toCentrifugeId_in?: InputMaybe>>; toCentrifugeId_not_in?: InputMaybe>>; toCentrifugeId_contains?: InputMaybe; toCentrifugeId_not_contains?: InputMaybe; toCentrifugeId_starts_with?: InputMaybe; toCentrifugeId_ends_with?: InputMaybe; toCentrifugeId_not_starts_with?: InputMaybe; toCentrifugeId_not_ends_with?: InputMaybe; createdAt?: InputMaybe; createdAt_not?: InputMaybe; createdAt_in?: InputMaybe>>; createdAt_not_in?: InputMaybe>>; createdAt_contains?: InputMaybe; createdAt_not_contains?: InputMaybe; createdAt_starts_with?: InputMaybe; createdAt_ends_with?: InputMaybe; createdAt_not_starts_with?: InputMaybe; createdAt_not_ends_with?: InputMaybe; createdAtBlock?: InputMaybe; createdAtBlock_not?: InputMaybe; createdAtBlock_in?: InputMaybe>>; createdAtBlock_not_in?: InputMaybe>>; createdAtBlock_gt?: InputMaybe; createdAtBlock_lt?: InputMaybe; createdAtBlock_gte?: InputMaybe; createdAtBlock_lte?: InputMaybe; executedAt?: InputMaybe; executedAt_not?: InputMaybe; executedAt_in?: InputMaybe>>; executedAt_not_in?: InputMaybe>>; executedAt_contains?: InputMaybe; executedAt_not_contains?: InputMaybe; executedAt_starts_with?: InputMaybe; executedAt_ends_with?: InputMaybe; executedAt_not_starts_with?: InputMaybe; executedAt_not_ends_with?: InputMaybe; executedAtBlock?: InputMaybe; executedAtBlock_not?: InputMaybe; executedAtBlock_in?: InputMaybe>>; executedAtBlock_not_in?: InputMaybe>>; executedAtBlock_gt?: InputMaybe; executedAtBlock_lt?: InputMaybe; executedAtBlock_gte?: InputMaybe; executedAtBlock_lte?: InputMaybe; }; export type CrosschainPayloadPage = { __typename?: 'CrosschainPayloadPage'; items: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type CrosschainPayloadFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; id?: InputMaybe; id_not?: InputMaybe; id_in?: InputMaybe>>; id_not_in?: InputMaybe>>; id_contains?: InputMaybe; id_not_contains?: InputMaybe; id_starts_with?: InputMaybe; id_ends_with?: InputMaybe; id_not_starts_with?: InputMaybe; id_not_ends_with?: InputMaybe; fromCentrifugeId?: InputMaybe; fromCentrifugeId_not?: InputMaybe; fromCentrifugeId_in?: InputMaybe>>; fromCentrifugeId_not_in?: InputMaybe>>; fromCentrifugeId_contains?: InputMaybe; fromCentrifugeId_not_contains?: InputMaybe; fromCentrifugeId_starts_with?: InputMaybe; fromCentrifugeId_ends_with?: InputMaybe; fromCentrifugeId_not_starts_with?: InputMaybe; fromCentrifugeId_not_ends_with?: InputMaybe; toCentrifugeId?: InputMaybe; toCentrifugeId_not?: InputMaybe; toCentrifugeId_in?: InputMaybe>>; toCentrifugeId_not_in?: InputMaybe>>; toCentrifugeId_contains?: InputMaybe; toCentrifugeId_not_contains?: InputMaybe; toCentrifugeId_starts_with?: InputMaybe; toCentrifugeId_ends_with?: InputMaybe; toCentrifugeId_not_starts_with?: InputMaybe; toCentrifugeId_not_ends_with?: InputMaybe; poolId?: InputMaybe; poolId_not?: InputMaybe; poolId_in?: InputMaybe>>; poolId_not_in?: InputMaybe>>; poolId_gt?: InputMaybe; poolId_lt?: InputMaybe; poolId_gte?: InputMaybe; poolId_lte?: InputMaybe; votes?: InputMaybe; votes_not?: InputMaybe; votes_in?: InputMaybe>>; votes_not_in?: InputMaybe>>; votes_gt?: InputMaybe; votes_lt?: InputMaybe; votes_gte?: InputMaybe; votes_lte?: InputMaybe; status?: InputMaybe; status_not?: InputMaybe; status_in?: InputMaybe>>; status_not_in?: InputMaybe>>; createdAt?: InputMaybe; createdAt_not?: InputMaybe; createdAt_in?: InputMaybe>>; createdAt_not_in?: InputMaybe>>; createdAt_contains?: InputMaybe; createdAt_not_contains?: InputMaybe; createdAt_starts_with?: InputMaybe; createdAt_ends_with?: InputMaybe; createdAt_not_starts_with?: InputMaybe; createdAt_not_ends_with?: InputMaybe; createdAtBlock?: InputMaybe; createdAtBlock_not?: InputMaybe; createdAtBlock_in?: InputMaybe>>; createdAtBlock_not_in?: InputMaybe>>; createdAtBlock_gt?: InputMaybe; createdAtBlock_lt?: InputMaybe; createdAtBlock_gte?: InputMaybe; createdAtBlock_lte?: InputMaybe; deliveredAt?: InputMaybe; deliveredAt_not?: InputMaybe; deliveredAt_in?: InputMaybe>>; deliveredAt_not_in?: InputMaybe>>; deliveredAt_contains?: InputMaybe; deliveredAt_not_contains?: InputMaybe; deliveredAt_starts_with?: InputMaybe; deliveredAt_ends_with?: InputMaybe; deliveredAt_not_starts_with?: InputMaybe; deliveredAt_not_ends_with?: InputMaybe; deliveredAtBlock?: InputMaybe; deliveredAtBlock_not?: InputMaybe; deliveredAtBlock_in?: InputMaybe>>; deliveredAtBlock_not_in?: InputMaybe>>; deliveredAtBlock_gt?: InputMaybe; deliveredAtBlock_lt?: InputMaybe; deliveredAtBlock_gte?: InputMaybe; deliveredAtBlock_lte?: InputMaybe; adapterSending?: InputMaybe; adapterSending_not?: InputMaybe; adapterSending_in?: InputMaybe>>; adapterSending_not_in?: InputMaybe>>; adapterSending_contains?: InputMaybe; adapterSending_not_contains?: InputMaybe; adapterSending_starts_with?: InputMaybe; adapterSending_ends_with?: InputMaybe; adapterSending_not_starts_with?: InputMaybe; adapterSending_not_ends_with?: InputMaybe; adapterReceiving?: InputMaybe; adapterReceiving_not?: InputMaybe; adapterReceiving_in?: InputMaybe>>; adapterReceiving_not_in?: InputMaybe>>; adapterReceiving_contains?: InputMaybe; adapterReceiving_not_contains?: InputMaybe; adapterReceiving_starts_with?: InputMaybe; adapterReceiving_ends_with?: InputMaybe; adapterReceiving_not_starts_with?: InputMaybe; adapterReceiving_not_ends_with?: InputMaybe; }; export type TokenSnapshot = { __typename?: 'TokenSnapshot'; timestamp: Scalars['String']['output']; blockNumber: Scalars['Int']['output']; trigger: Scalars['String']['output']; triggerTxHash?: Maybe; triggerChainId: Scalars['String']['output']; id: Scalars['String']['output']; totalIssuance?: Maybe; tokenPrice?: Maybe; }; export type TokenSnapshotPage = { __typename?: 'TokenSnapshotPage'; items: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type TokenSnapshotFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; timestamp?: InputMaybe; timestamp_not?: InputMaybe; timestamp_in?: InputMaybe>>; timestamp_not_in?: InputMaybe>>; timestamp_contains?: InputMaybe; timestamp_not_contains?: InputMaybe; timestamp_starts_with?: InputMaybe; timestamp_ends_with?: InputMaybe; timestamp_not_starts_with?: InputMaybe; timestamp_not_ends_with?: InputMaybe; blockNumber?: InputMaybe; blockNumber_not?: InputMaybe; blockNumber_in?: InputMaybe>>; blockNumber_not_in?: InputMaybe>>; blockNumber_gt?: InputMaybe; blockNumber_lt?: InputMaybe; blockNumber_gte?: InputMaybe; blockNumber_lte?: InputMaybe; trigger?: InputMaybe; trigger_not?: InputMaybe; trigger_in?: InputMaybe>>; trigger_not_in?: InputMaybe>>; trigger_contains?: InputMaybe; trigger_not_contains?: InputMaybe; trigger_starts_with?: InputMaybe; trigger_ends_with?: InputMaybe; trigger_not_starts_with?: InputMaybe; trigger_not_ends_with?: InputMaybe; triggerTxHash?: InputMaybe; triggerTxHash_not?: InputMaybe; triggerTxHash_in?: InputMaybe>>; triggerTxHash_not_in?: InputMaybe>>; triggerTxHash_contains?: InputMaybe; triggerTxHash_not_contains?: InputMaybe; triggerTxHash_starts_with?: InputMaybe; triggerTxHash_ends_with?: InputMaybe; triggerTxHash_not_starts_with?: InputMaybe; triggerTxHash_not_ends_with?: InputMaybe; triggerChainId?: InputMaybe; triggerChainId_not?: InputMaybe; triggerChainId_in?: InputMaybe>>; triggerChainId_not_in?: InputMaybe>>; triggerChainId_contains?: InputMaybe; triggerChainId_not_contains?: InputMaybe; triggerChainId_starts_with?: InputMaybe; triggerChainId_ends_with?: InputMaybe; triggerChainId_not_starts_with?: InputMaybe; triggerChainId_not_ends_with?: InputMaybe; id?: InputMaybe; id_not?: InputMaybe; id_in?: InputMaybe>>; id_not_in?: InputMaybe>>; id_contains?: InputMaybe; id_not_contains?: InputMaybe; id_starts_with?: InputMaybe; id_ends_with?: InputMaybe; id_not_starts_with?: InputMaybe; id_not_ends_with?: InputMaybe; totalIssuance?: InputMaybe; totalIssuance_not?: InputMaybe; totalIssuance_in?: InputMaybe>>; totalIssuance_not_in?: InputMaybe>>; totalIssuance_gt?: InputMaybe; totalIssuance_lt?: InputMaybe; totalIssuance_gte?: InputMaybe; totalIssuance_lte?: InputMaybe; tokenPrice?: InputMaybe; tokenPrice_not?: InputMaybe; tokenPrice_in?: InputMaybe>>; tokenPrice_not_in?: InputMaybe>>; tokenPrice_gt?: InputMaybe; tokenPrice_lt?: InputMaybe; tokenPrice_gte?: InputMaybe; tokenPrice_lte?: InputMaybe; }; export type TokenInstanceSnapshot = { __typename?: 'TokenInstanceSnapshot'; timestamp: Scalars['String']['output']; blockNumber: Scalars['Int']['output']; trigger: Scalars['String']['output']; triggerTxHash?: Maybe; triggerChainId: Scalars['String']['output']; centrifugeId: Scalars['String']['output']; tokenId: Scalars['String']['output']; tokenPrice?: Maybe; totalIssuance?: Maybe; }; export type TokenInstanceSnapshotPage = { __typename?: 'TokenInstanceSnapshotPage'; items: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type TokenInstanceSnapshotFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; timestamp?: InputMaybe; timestamp_not?: InputMaybe; timestamp_in?: InputMaybe>>; timestamp_not_in?: InputMaybe>>; timestamp_contains?: InputMaybe; timestamp_not_contains?: InputMaybe; timestamp_starts_with?: InputMaybe; timestamp_ends_with?: InputMaybe; timestamp_not_starts_with?: InputMaybe; timestamp_not_ends_with?: InputMaybe; blockNumber?: InputMaybe; blockNumber_not?: InputMaybe; blockNumber_in?: InputMaybe>>; blockNumber_not_in?: InputMaybe>>; blockNumber_gt?: InputMaybe; blockNumber_lt?: InputMaybe; blockNumber_gte?: InputMaybe; blockNumber_lte?: InputMaybe; trigger?: InputMaybe; trigger_not?: InputMaybe; trigger_in?: InputMaybe>>; trigger_not_in?: InputMaybe>>; trigger_contains?: InputMaybe; trigger_not_contains?: InputMaybe; trigger_starts_with?: InputMaybe; trigger_ends_with?: InputMaybe; trigger_not_starts_with?: InputMaybe; trigger_not_ends_with?: InputMaybe; triggerTxHash?: InputMaybe; triggerTxHash_not?: InputMaybe; triggerTxHash_in?: InputMaybe>>; triggerTxHash_not_in?: InputMaybe>>; triggerTxHash_contains?: InputMaybe; triggerTxHash_not_contains?: InputMaybe; triggerTxHash_starts_with?: InputMaybe; triggerTxHash_ends_with?: InputMaybe; triggerTxHash_not_starts_with?: InputMaybe; triggerTxHash_not_ends_with?: InputMaybe; triggerChainId?: InputMaybe; triggerChainId_not?: InputMaybe; triggerChainId_in?: InputMaybe>>; triggerChainId_not_in?: InputMaybe>>; triggerChainId_contains?: InputMaybe; triggerChainId_not_contains?: InputMaybe; triggerChainId_starts_with?: InputMaybe; triggerChainId_ends_with?: InputMaybe; triggerChainId_not_starts_with?: InputMaybe; triggerChainId_not_ends_with?: InputMaybe; centrifugeId?: InputMaybe; centrifugeId_not?: InputMaybe; centrifugeId_in?: InputMaybe>>; centrifugeId_not_in?: InputMaybe>>; centrifugeId_contains?: InputMaybe; centrifugeId_not_contains?: InputMaybe; centrifugeId_starts_with?: InputMaybe; centrifugeId_ends_with?: InputMaybe; centrifugeId_not_starts_with?: InputMaybe; centrifugeId_not_ends_with?: InputMaybe; tokenId?: InputMaybe; tokenId_not?: InputMaybe; tokenId_in?: InputMaybe>>; tokenId_not_in?: InputMaybe>>; tokenId_contains?: InputMaybe; tokenId_not_contains?: InputMaybe; tokenId_starts_with?: InputMaybe; tokenId_ends_with?: InputMaybe; tokenId_not_starts_with?: InputMaybe; tokenId_not_ends_with?: InputMaybe; tokenPrice?: InputMaybe; tokenPrice_not?: InputMaybe; tokenPrice_in?: InputMaybe>>; tokenPrice_not_in?: InputMaybe>>; tokenPrice_gt?: InputMaybe; tokenPrice_lt?: InputMaybe; tokenPrice_gte?: InputMaybe; tokenPrice_lte?: InputMaybe; totalIssuance?: InputMaybe; totalIssuance_not?: InputMaybe; totalIssuance_in?: InputMaybe>>; totalIssuance_not_in?: InputMaybe>>; totalIssuance_gt?: InputMaybe; totalIssuance_lt?: InputMaybe; totalIssuance_gte?: InputMaybe; totalIssuance_lte?: InputMaybe; }; export type HoldingSnapshot = { __typename?: 'HoldingSnapshot'; timestamp: Scalars['String']['output']; blockNumber: Scalars['Int']['output']; trigger: Scalars['String']['output']; triggerTxHash?: Maybe; triggerChainId: Scalars['String']['output']; tokenId: Scalars['String']['output']; assetId: Scalars['BigInt']['output']; assetQuantity: Scalars['BigInt']['output']; totalValue: Scalars['BigInt']['output']; }; export type HoldingSnapshotPage = { __typename?: 'HoldingSnapshotPage'; items: Array; pageInfo: PageInfo; totalCount: Scalars['Int']['output']; }; export type HoldingSnapshotFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; timestamp?: InputMaybe; timestamp_not?: InputMaybe; timestamp_in?: InputMaybe>>; timestamp_not_in?: InputMaybe>>; timestamp_contains?: InputMaybe; timestamp_not_contains?: InputMaybe; timestamp_starts_with?: InputMaybe; timestamp_ends_with?: InputMaybe; timestamp_not_starts_with?: InputMaybe; timestamp_not_ends_with?: InputMaybe; blockNumber?: InputMaybe; blockNumber_not?: InputMaybe; blockNumber_in?: InputMaybe>>; blockNumber_not_in?: InputMaybe>>; blockNumber_gt?: InputMaybe; blockNumber_lt?: InputMaybe; blockNumber_gte?: InputMaybe; blockNumber_lte?: InputMaybe; trigger?: InputMaybe; trigger_not?: InputMaybe; trigger_in?: InputMaybe>>; trigger_not_in?: InputMaybe>>; trigger_contains?: InputMaybe; trigger_not_contains?: InputMaybe; trigger_starts_with?: InputMaybe; trigger_ends_with?: InputMaybe; trigger_not_starts_with?: InputMaybe; trigger_not_ends_with?: InputMaybe; triggerTxHash?: InputMaybe; triggerTxHash_not?: InputMaybe; triggerTxHash_in?: InputMaybe>>; triggerTxHash_not_in?: InputMaybe>>; triggerTxHash_contains?: InputMaybe; triggerTxHash_not_contains?: InputMaybe; triggerTxHash_starts_with?: InputMaybe; triggerTxHash_ends_with?: InputMaybe; triggerTxHash_not_starts_with?: InputMaybe; triggerTxHash_not_ends_with?: InputMaybe; triggerChainId?: InputMaybe; triggerChainId_not?: InputMaybe; triggerChainId_in?: InputMaybe>>; triggerChainId_not_in?: InputMaybe>>; triggerChainId_contains?: InputMaybe; triggerChainId_not_contains?: InputMaybe; triggerChainId_starts_with?: InputMaybe; triggerChainId_ends_with?: InputMaybe; triggerChainId_not_starts_with?: InputMaybe; triggerChainId_not_ends_with?: InputMaybe; tokenId?: InputMaybe; tokenId_not?: InputMaybe; tokenId_in?: InputMaybe>>; tokenId_not_in?: InputMaybe>>; tokenId_contains?: InputMaybe; tokenId_not_contains?: InputMaybe; tokenId_starts_with?: InputMaybe; tokenId_ends_with?: InputMaybe; tokenId_not_starts_with?: InputMaybe; tokenId_not_ends_with?: InputMaybe; assetId?: InputMaybe; assetId_not?: InputMaybe; assetId_in?: InputMaybe>>; assetId_not_in?: InputMaybe>>; assetId_gt?: InputMaybe; assetId_lt?: InputMaybe; assetId_gte?: InputMaybe; assetId_lte?: InputMaybe; assetQuantity?: InputMaybe; assetQuantity_not?: InputMaybe; assetQuantity_in?: InputMaybe>>; assetQuantity_not_in?: InputMaybe>>; assetQuantity_gt?: InputMaybe; assetQuantity_lt?: InputMaybe; assetQuantity_gte?: InputMaybe; assetQuantity_lte?: InputMaybe; totalValue?: InputMaybe; totalValue_not?: InputMaybe; totalValue_in?: InputMaybe>>; totalValue_not_in?: InputMaybe>>; totalValue_gt?: InputMaybe; totalValue_lt?: InputMaybe; totalValue_gte?: InputMaybe; totalValue_lte?: InputMaybe; }; //# sourceMappingURL=indexer.d.ts.map