@polymeshassociation/polymesh-sdk 24.0.0-alpha.1 → 24.0.0-alpha.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1688,6 +1688,8 @@ export declare type Asset = Node & {
1688
1688
  identitiesByTickerExternalAgentHistoryAssetIdAndIdentityId: AssetIdentitiesByTickerExternalAgentHistoryAssetIdAndIdentityIdManyToManyConnection;
1689
1689
  /** Reads and enables pagination through a set of `Identity`. */
1690
1690
  identitiesByTransferComplianceAssetIdAndClaimIssuerId: AssetIdentitiesByTransferComplianceAssetIdAndClaimIssuerIdManyToManyConnection;
1691
+ /** Reads and enables pagination through a set of `Instruction`. */
1692
+ instructionsByAssetTransactionAssetIdAndInstructionId: AssetInstructionsByAssetTransactionAssetIdAndInstructionIdManyToManyConnection;
1691
1693
  isCompliancePaused: Scalars['Boolean']['output'];
1692
1694
  isDivisible: Scalars['Boolean']['output'];
1693
1695
  isFrozen: Scalars['Boolean']['output'];
@@ -2288,6 +2290,17 @@ export declare type AssetIdentitiesByTransferComplianceAssetIdAndClaimIssuerIdAr
2288
2290
  orderBy?: InputMaybe<Array<IdentitiesOrderBy>>;
2289
2291
  };
2290
2292
  /** Represents a tokenized Asset on the Polymesh chain. The central data structure for the ecosystem */
2293
+ export declare type AssetInstructionsByAssetTransactionAssetIdAndInstructionIdArgs = {
2294
+ after?: InputMaybe<Scalars['Cursor']['input']>;
2295
+ before?: InputMaybe<Scalars['Cursor']['input']>;
2296
+ distinct?: InputMaybe<Array<InputMaybe<Instructions_Distinct_Enum>>>;
2297
+ filter?: InputMaybe<InstructionFilter>;
2298
+ first?: InputMaybe<Scalars['Int']['input']>;
2299
+ last?: InputMaybe<Scalars['Int']['input']>;
2300
+ offset?: InputMaybe<Scalars['Int']['input']>;
2301
+ orderBy?: InputMaybe<Array<InstructionsOrderBy>>;
2302
+ };
2303
+ /** Represents a tokenized Asset on the Polymesh chain. The central data structure for the ecosystem */
2291
2304
  export declare type AssetNftHoldersArgs = {
2292
2305
  after?: InputMaybe<Scalars['Cursor']['input']>;
2293
2306
  before?: InputMaybe<Scalars['Cursor']['input']>;
@@ -5236,6 +5249,48 @@ export declare type AssetIdentitiesByTransferComplianceAssetIdAndClaimIssuerIdMa
5236
5249
  offset?: InputMaybe<Scalars['Int']['input']>;
5237
5250
  orderBy?: InputMaybe<Array<TransferCompliancesOrderBy>>;
5238
5251
  };
5252
+ /** A connection to a list of `Instruction` values, with data from `AssetTransaction`. */
5253
+ export declare type AssetInstructionsByAssetTransactionAssetIdAndInstructionIdManyToManyConnection = {
5254
+ __typename?: 'AssetInstructionsByAssetTransactionAssetIdAndInstructionIdManyToManyConnection';
5255
+ /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */
5256
+ aggregates?: Maybe<InstructionAggregates>;
5257
+ /** A list of edges which contains the `Instruction`, info from the `AssetTransaction`, and the cursor to aid in pagination. */
5258
+ edges: Array<AssetInstructionsByAssetTransactionAssetIdAndInstructionIdManyToManyEdge>;
5259
+ /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */
5260
+ groupedAggregates?: Maybe<Array<InstructionAggregates>>;
5261
+ /** A list of `Instruction` objects. */
5262
+ nodes: Array<Maybe<Instruction>>;
5263
+ /** Information to aid in pagination. */
5264
+ pageInfo: PageInfo;
5265
+ /** The count of *all* `Instruction` you could get from the connection. */
5266
+ totalCount: Scalars['Int']['output'];
5267
+ };
5268
+ /** A connection to a list of `Instruction` values, with data from `AssetTransaction`. */
5269
+ export declare type AssetInstructionsByAssetTransactionAssetIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = {
5270
+ groupBy: Array<InstructionsGroupBy>;
5271
+ having?: InputMaybe<InstructionsHavingInput>;
5272
+ };
5273
+ /** A `Instruction` edge in the connection, with data from `AssetTransaction`. */
5274
+ export declare type AssetInstructionsByAssetTransactionAssetIdAndInstructionIdManyToManyEdge = {
5275
+ __typename?: 'AssetInstructionsByAssetTransactionAssetIdAndInstructionIdManyToManyEdge';
5276
+ /** Reads and enables pagination through a set of `AssetTransaction`. */
5277
+ assetTransactions: AssetTransactionsConnection;
5278
+ /** A cursor for use in pagination. */
5279
+ cursor?: Maybe<Scalars['Cursor']['output']>;
5280
+ /** The `Instruction` at the end of the edge. */
5281
+ node?: Maybe<Instruction>;
5282
+ };
5283
+ /** A `Instruction` edge in the connection, with data from `AssetTransaction`. */
5284
+ export declare type AssetInstructionsByAssetTransactionAssetIdAndInstructionIdManyToManyEdgeAssetTransactionsArgs = {
5285
+ after?: InputMaybe<Scalars['Cursor']['input']>;
5286
+ before?: InputMaybe<Scalars['Cursor']['input']>;
5287
+ distinct?: InputMaybe<Array<InputMaybe<Asset_Transactions_Distinct_Enum>>>;
5288
+ filter?: InputMaybe<AssetTransactionFilter>;
5289
+ first?: InputMaybe<Scalars['Int']['input']>;
5290
+ last?: InputMaybe<Scalars['Int']['input']>;
5291
+ offset?: InputMaybe<Scalars['Int']['input']>;
5292
+ orderBy?: InputMaybe<Array<AssetTransactionsOrderBy>>;
5293
+ };
5239
5294
  export declare type AssetMaxAggregateFilter = {
5240
5295
  eventIdx?: InputMaybe<IntFilter>;
5241
5296
  totalSupply?: InputMaybe<BigFloatFilter>;
@@ -6075,6 +6130,12 @@ export declare type AssetTransaction = Node & {
6075
6130
  /** `fundingRound` will only be present for the cases where Assets are issued with a fundingRound name */
6076
6131
  fundingRound?: Maybe<Scalars['String']['output']>;
6077
6132
  id: Scalars['String']['output'];
6133
+ /** Reads a single `Instruction` that is related to this `AssetTransaction`. */
6134
+ instruction?: Maybe<Instruction>;
6135
+ /** `instruction` will only be present for the cases where Assets are transferred once instruction is executed */
6136
+ instructionId?: Maybe<Scalars['String']['output']>;
6137
+ /** `instructionMemo` will only be present for the cases where memo is provided for the instruction which got executed */
6138
+ instructionMemo?: Maybe<Scalars['String']['output']>;
6078
6139
  /** `nftIds` are the IDs of the non-fungible tokens involved in this transaction */
6079
6140
  nftIds?: Maybe<Scalars['JSON']['output']>;
6080
6141
  /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
@@ -6159,6 +6220,8 @@ export declare type AssetTransactionDistinctCountAggregateFilter = {
6159
6220
  fromPortfolioId?: InputMaybe<BigIntFilter>;
6160
6221
  fundingRound?: InputMaybe<BigIntFilter>;
6161
6222
  id?: InputMaybe<BigIntFilter>;
6223
+ instructionId?: InputMaybe<BigIntFilter>;
6224
+ instructionMemo?: InputMaybe<BigIntFilter>;
6162
6225
  nftIds?: InputMaybe<BigIntFilter>;
6163
6226
  toPortfolioId?: InputMaybe<BigIntFilter>;
6164
6227
  updatedAt?: InputMaybe<BigIntFilter>;
@@ -6188,6 +6251,10 @@ export declare type AssetTransactionDistinctCountAggregates = {
6188
6251
  fundingRound?: Maybe<Scalars['BigInt']['output']>;
6189
6252
  /** Distinct count of id across the matching connection */
6190
6253
  id?: Maybe<Scalars['BigInt']['output']>;
6254
+ /** Distinct count of instructionId across the matching connection */
6255
+ instructionId?: Maybe<Scalars['BigInt']['output']>;
6256
+ /** Distinct count of instructionMemo across the matching connection */
6257
+ instructionMemo?: Maybe<Scalars['BigInt']['output']>;
6191
6258
  /** Distinct count of nftIds across the matching connection */
6192
6259
  nftIds?: Maybe<Scalars['BigInt']['output']>;
6193
6260
  /** Distinct count of toPortfolioId across the matching connection */
@@ -6231,6 +6298,14 @@ export declare type AssetTransactionFilter = {
6231
6298
  fundingRound?: InputMaybe<StringFilter>;
6232
6299
  /** Filter by the object’s `id` field. */
6233
6300
  id?: InputMaybe<StringFilter>;
6301
+ /** Filter by the object’s `instruction` relation. */
6302
+ instruction?: InputMaybe<InstructionFilter>;
6303
+ /** A related `instruction` exists. */
6304
+ instructionExists?: InputMaybe<Scalars['Boolean']['input']>;
6305
+ /** Filter by the object’s `instructionId` field. */
6306
+ instructionId?: InputMaybe<StringFilter>;
6307
+ /** Filter by the object’s `instructionMemo` field. */
6308
+ instructionMemo?: InputMaybe<StringFilter>;
6234
6309
  /** Filter by the object’s `nftIds` field. */
6235
6310
  nftIds?: InputMaybe<JsonFilter>;
6236
6311
  /** Negates the expression. */
@@ -6393,6 +6468,8 @@ export declare enum AssetTransactionsGroupBy {
6393
6468
  ExtrinsicIdx = "EXTRINSIC_IDX",
6394
6469
  FromPortfolioId = "FROM_PORTFOLIO_ID",
6395
6470
  FundingRound = "FUNDING_ROUND",
6471
+ InstructionId = "INSTRUCTION_ID",
6472
+ InstructionMemo = "INSTRUCTION_MEMO",
6396
6473
  NftIds = "NFT_IDS",
6397
6474
  ToPortfolioId = "TO_PORTFOLIO_ID",
6398
6475
  UpdatedAt = "UPDATED_AT",
@@ -6510,6 +6587,10 @@ export declare enum AssetTransactionsOrderBy {
6510
6587
  FundingRoundDesc = "FUNDING_ROUND_DESC",
6511
6588
  IdAsc = "ID_ASC",
6512
6589
  IdDesc = "ID_DESC",
6590
+ InstructionIdAsc = "INSTRUCTION_ID_ASC",
6591
+ InstructionIdDesc = "INSTRUCTION_ID_DESC",
6592
+ InstructionMemoAsc = "INSTRUCTION_MEMO_ASC",
6593
+ InstructionMemoDesc = "INSTRUCTION_MEMO_DESC",
6513
6594
  Natural = "NATURAL",
6514
6595
  NftIdsAsc = "NFT_IDS_ASC",
6515
6596
  NftIdsDesc = "NFT_IDS_DESC",
@@ -6746,6 +6827,10 @@ export declare enum AssetsOrderBy {
6746
6827
  AssetTransactionsAverageFundingRoundDesc = "ASSET_TRANSACTIONS_AVERAGE_FUNDING_ROUND_DESC",
6747
6828
  AssetTransactionsAverageIdAsc = "ASSET_TRANSACTIONS_AVERAGE_ID_ASC",
6748
6829
  AssetTransactionsAverageIdDesc = "ASSET_TRANSACTIONS_AVERAGE_ID_DESC",
6830
+ AssetTransactionsAverageInstructionIdAsc = "ASSET_TRANSACTIONS_AVERAGE_INSTRUCTION_ID_ASC",
6831
+ AssetTransactionsAverageInstructionIdDesc = "ASSET_TRANSACTIONS_AVERAGE_INSTRUCTION_ID_DESC",
6832
+ AssetTransactionsAverageInstructionMemoAsc = "ASSET_TRANSACTIONS_AVERAGE_INSTRUCTION_MEMO_ASC",
6833
+ AssetTransactionsAverageInstructionMemoDesc = "ASSET_TRANSACTIONS_AVERAGE_INSTRUCTION_MEMO_DESC",
6749
6834
  AssetTransactionsAverageNftIdsAsc = "ASSET_TRANSACTIONS_AVERAGE_NFT_IDS_ASC",
6750
6835
  AssetTransactionsAverageNftIdsDesc = "ASSET_TRANSACTIONS_AVERAGE_NFT_IDS_DESC",
6751
6836
  AssetTransactionsAverageToPortfolioIdAsc = "ASSET_TRANSACTIONS_AVERAGE_TO_PORTFOLIO_ID_ASC",
@@ -6778,6 +6863,10 @@ export declare enum AssetsOrderBy {
6778
6863
  AssetTransactionsDistinctCountFundingRoundDesc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_FUNDING_ROUND_DESC",
6779
6864
  AssetTransactionsDistinctCountIdAsc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_ID_ASC",
6780
6865
  AssetTransactionsDistinctCountIdDesc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_ID_DESC",
6866
+ AssetTransactionsDistinctCountInstructionIdAsc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_INSTRUCTION_ID_ASC",
6867
+ AssetTransactionsDistinctCountInstructionIdDesc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_INSTRUCTION_ID_DESC",
6868
+ AssetTransactionsDistinctCountInstructionMemoAsc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_INSTRUCTION_MEMO_ASC",
6869
+ AssetTransactionsDistinctCountInstructionMemoDesc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_INSTRUCTION_MEMO_DESC",
6781
6870
  AssetTransactionsDistinctCountNftIdsAsc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_NFT_IDS_ASC",
6782
6871
  AssetTransactionsDistinctCountNftIdsDesc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_NFT_IDS_DESC",
6783
6872
  AssetTransactionsDistinctCountToPortfolioIdAsc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_TO_PORTFOLIO_ID_ASC",
@@ -6808,6 +6897,10 @@ export declare enum AssetsOrderBy {
6808
6897
  AssetTransactionsMaxFundingRoundDesc = "ASSET_TRANSACTIONS_MAX_FUNDING_ROUND_DESC",
6809
6898
  AssetTransactionsMaxIdAsc = "ASSET_TRANSACTIONS_MAX_ID_ASC",
6810
6899
  AssetTransactionsMaxIdDesc = "ASSET_TRANSACTIONS_MAX_ID_DESC",
6900
+ AssetTransactionsMaxInstructionIdAsc = "ASSET_TRANSACTIONS_MAX_INSTRUCTION_ID_ASC",
6901
+ AssetTransactionsMaxInstructionIdDesc = "ASSET_TRANSACTIONS_MAX_INSTRUCTION_ID_DESC",
6902
+ AssetTransactionsMaxInstructionMemoAsc = "ASSET_TRANSACTIONS_MAX_INSTRUCTION_MEMO_ASC",
6903
+ AssetTransactionsMaxInstructionMemoDesc = "ASSET_TRANSACTIONS_MAX_INSTRUCTION_MEMO_DESC",
6811
6904
  AssetTransactionsMaxNftIdsAsc = "ASSET_TRANSACTIONS_MAX_NFT_IDS_ASC",
6812
6905
  AssetTransactionsMaxNftIdsDesc = "ASSET_TRANSACTIONS_MAX_NFT_IDS_DESC",
6813
6906
  AssetTransactionsMaxToPortfolioIdAsc = "ASSET_TRANSACTIONS_MAX_TO_PORTFOLIO_ID_ASC",
@@ -6838,6 +6931,10 @@ export declare enum AssetsOrderBy {
6838
6931
  AssetTransactionsMinFundingRoundDesc = "ASSET_TRANSACTIONS_MIN_FUNDING_ROUND_DESC",
6839
6932
  AssetTransactionsMinIdAsc = "ASSET_TRANSACTIONS_MIN_ID_ASC",
6840
6933
  AssetTransactionsMinIdDesc = "ASSET_TRANSACTIONS_MIN_ID_DESC",
6934
+ AssetTransactionsMinInstructionIdAsc = "ASSET_TRANSACTIONS_MIN_INSTRUCTION_ID_ASC",
6935
+ AssetTransactionsMinInstructionIdDesc = "ASSET_TRANSACTIONS_MIN_INSTRUCTION_ID_DESC",
6936
+ AssetTransactionsMinInstructionMemoAsc = "ASSET_TRANSACTIONS_MIN_INSTRUCTION_MEMO_ASC",
6937
+ AssetTransactionsMinInstructionMemoDesc = "ASSET_TRANSACTIONS_MIN_INSTRUCTION_MEMO_DESC",
6841
6938
  AssetTransactionsMinNftIdsAsc = "ASSET_TRANSACTIONS_MIN_NFT_IDS_ASC",
6842
6939
  AssetTransactionsMinNftIdsDesc = "ASSET_TRANSACTIONS_MIN_NFT_IDS_DESC",
6843
6940
  AssetTransactionsMinToPortfolioIdAsc = "ASSET_TRANSACTIONS_MIN_TO_PORTFOLIO_ID_ASC",
@@ -6868,6 +6965,10 @@ export declare enum AssetsOrderBy {
6868
6965
  AssetTransactionsStddevPopulationFundingRoundDesc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_FUNDING_ROUND_DESC",
6869
6966
  AssetTransactionsStddevPopulationIdAsc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_ID_ASC",
6870
6967
  AssetTransactionsStddevPopulationIdDesc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_ID_DESC",
6968
+ AssetTransactionsStddevPopulationInstructionIdAsc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_INSTRUCTION_ID_ASC",
6969
+ AssetTransactionsStddevPopulationInstructionIdDesc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_INSTRUCTION_ID_DESC",
6970
+ AssetTransactionsStddevPopulationInstructionMemoAsc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_INSTRUCTION_MEMO_ASC",
6971
+ AssetTransactionsStddevPopulationInstructionMemoDesc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_INSTRUCTION_MEMO_DESC",
6871
6972
  AssetTransactionsStddevPopulationNftIdsAsc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_NFT_IDS_ASC",
6872
6973
  AssetTransactionsStddevPopulationNftIdsDesc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_NFT_IDS_DESC",
6873
6974
  AssetTransactionsStddevPopulationToPortfolioIdAsc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_TO_PORTFOLIO_ID_ASC",
@@ -6898,6 +6999,10 @@ export declare enum AssetsOrderBy {
6898
6999
  AssetTransactionsStddevSampleFundingRoundDesc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_FUNDING_ROUND_DESC",
6899
7000
  AssetTransactionsStddevSampleIdAsc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_ID_ASC",
6900
7001
  AssetTransactionsStddevSampleIdDesc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_ID_DESC",
7002
+ AssetTransactionsStddevSampleInstructionIdAsc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_INSTRUCTION_ID_ASC",
7003
+ AssetTransactionsStddevSampleInstructionIdDesc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_INSTRUCTION_ID_DESC",
7004
+ AssetTransactionsStddevSampleInstructionMemoAsc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_INSTRUCTION_MEMO_ASC",
7005
+ AssetTransactionsStddevSampleInstructionMemoDesc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_INSTRUCTION_MEMO_DESC",
6901
7006
  AssetTransactionsStddevSampleNftIdsAsc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_NFT_IDS_ASC",
6902
7007
  AssetTransactionsStddevSampleNftIdsDesc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_NFT_IDS_DESC",
6903
7008
  AssetTransactionsStddevSampleToPortfolioIdAsc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_TO_PORTFOLIO_ID_ASC",
@@ -6928,6 +7033,10 @@ export declare enum AssetsOrderBy {
6928
7033
  AssetTransactionsSumFundingRoundDesc = "ASSET_TRANSACTIONS_SUM_FUNDING_ROUND_DESC",
6929
7034
  AssetTransactionsSumIdAsc = "ASSET_TRANSACTIONS_SUM_ID_ASC",
6930
7035
  AssetTransactionsSumIdDesc = "ASSET_TRANSACTIONS_SUM_ID_DESC",
7036
+ AssetTransactionsSumInstructionIdAsc = "ASSET_TRANSACTIONS_SUM_INSTRUCTION_ID_ASC",
7037
+ AssetTransactionsSumInstructionIdDesc = "ASSET_TRANSACTIONS_SUM_INSTRUCTION_ID_DESC",
7038
+ AssetTransactionsSumInstructionMemoAsc = "ASSET_TRANSACTIONS_SUM_INSTRUCTION_MEMO_ASC",
7039
+ AssetTransactionsSumInstructionMemoDesc = "ASSET_TRANSACTIONS_SUM_INSTRUCTION_MEMO_DESC",
6931
7040
  AssetTransactionsSumNftIdsAsc = "ASSET_TRANSACTIONS_SUM_NFT_IDS_ASC",
6932
7041
  AssetTransactionsSumNftIdsDesc = "ASSET_TRANSACTIONS_SUM_NFT_IDS_DESC",
6933
7042
  AssetTransactionsSumToPortfolioIdAsc = "ASSET_TRANSACTIONS_SUM_TO_PORTFOLIO_ID_ASC",
@@ -6958,6 +7067,10 @@ export declare enum AssetsOrderBy {
6958
7067
  AssetTransactionsVariancePopulationFundingRoundDesc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_FUNDING_ROUND_DESC",
6959
7068
  AssetTransactionsVariancePopulationIdAsc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_ID_ASC",
6960
7069
  AssetTransactionsVariancePopulationIdDesc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_ID_DESC",
7070
+ AssetTransactionsVariancePopulationInstructionIdAsc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_INSTRUCTION_ID_ASC",
7071
+ AssetTransactionsVariancePopulationInstructionIdDesc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_INSTRUCTION_ID_DESC",
7072
+ AssetTransactionsVariancePopulationInstructionMemoAsc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_INSTRUCTION_MEMO_ASC",
7073
+ AssetTransactionsVariancePopulationInstructionMemoDesc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_INSTRUCTION_MEMO_DESC",
6961
7074
  AssetTransactionsVariancePopulationNftIdsAsc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_NFT_IDS_ASC",
6962
7075
  AssetTransactionsVariancePopulationNftIdsDesc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_NFT_IDS_DESC",
6963
7076
  AssetTransactionsVariancePopulationToPortfolioIdAsc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_TO_PORTFOLIO_ID_ASC",
@@ -6988,6 +7101,10 @@ export declare enum AssetsOrderBy {
6988
7101
  AssetTransactionsVarianceSampleFundingRoundDesc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_FUNDING_ROUND_DESC",
6989
7102
  AssetTransactionsVarianceSampleIdAsc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_ID_ASC",
6990
7103
  AssetTransactionsVarianceSampleIdDesc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_ID_DESC",
7104
+ AssetTransactionsVarianceSampleInstructionIdAsc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_INSTRUCTION_ID_ASC",
7105
+ AssetTransactionsVarianceSampleInstructionIdDesc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_INSTRUCTION_ID_DESC",
7106
+ AssetTransactionsVarianceSampleInstructionMemoAsc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_INSTRUCTION_MEMO_ASC",
7107
+ AssetTransactionsVarianceSampleInstructionMemoDesc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_INSTRUCTION_MEMO_DESC",
6991
7108
  AssetTransactionsVarianceSampleNftIdsAsc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_NFT_IDS_ASC",
6992
7109
  AssetTransactionsVarianceSampleNftIdsDesc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_NFT_IDS_DESC",
6993
7110
  AssetTransactionsVarianceSampleToPortfolioIdAsc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_TO_PORTFOLIO_ID_ASC",
@@ -11059,6 +11176,10 @@ export declare type Block = Node & {
11059
11176
  /** Reads and enables pagination through a set of `Identity`. */
11060
11177
  identitiesByVenueUpdatedBlockIdAndOwnerId: BlockIdentitiesByVenueUpdatedBlockIdAndOwnerIdManyToManyConnection;
11061
11178
  /** Reads and enables pagination through a set of `Instruction`. */
11179
+ instructionsByAssetTransactionCreatedBlockIdAndInstructionId: BlockInstructionsByAssetTransactionCreatedBlockIdAndInstructionIdManyToManyConnection;
11180
+ /** Reads and enables pagination through a set of `Instruction`. */
11181
+ instructionsByAssetTransactionUpdatedBlockIdAndInstructionId: BlockInstructionsByAssetTransactionUpdatedBlockIdAndInstructionIdManyToManyConnection;
11182
+ /** Reads and enables pagination through a set of `Instruction`. */
11062
11183
  instructionsByCreatedBlockId: InstructionsConnection;
11063
11184
  /** Reads and enables pagination through a set of `Instruction`. */
11064
11185
  instructionsByLegCreatedBlockIdAndInstructionId: BlockInstructionsByLegCreatedBlockIdAndInstructionIdManyToManyConnection;
@@ -13814,6 +13935,28 @@ export declare type BlockIdentitiesByVenueUpdatedBlockIdAndOwnerIdArgs = {
13814
13935
  orderBy?: InputMaybe<Array<IdentitiesOrderBy>>;
13815
13936
  };
13816
13937
  /** A set of transactions that were executed together. Includes a reference to its parent, which reference its parent, this forms a chain to the genesis block */
13938
+ export declare type BlockInstructionsByAssetTransactionCreatedBlockIdAndInstructionIdArgs = {
13939
+ after?: InputMaybe<Scalars['Cursor']['input']>;
13940
+ before?: InputMaybe<Scalars['Cursor']['input']>;
13941
+ distinct?: InputMaybe<Array<InputMaybe<Instructions_Distinct_Enum>>>;
13942
+ filter?: InputMaybe<InstructionFilter>;
13943
+ first?: InputMaybe<Scalars['Int']['input']>;
13944
+ last?: InputMaybe<Scalars['Int']['input']>;
13945
+ offset?: InputMaybe<Scalars['Int']['input']>;
13946
+ orderBy?: InputMaybe<Array<InstructionsOrderBy>>;
13947
+ };
13948
+ /** A set of transactions that were executed together. Includes a reference to its parent, which reference its parent, this forms a chain to the genesis block */
13949
+ export declare type BlockInstructionsByAssetTransactionUpdatedBlockIdAndInstructionIdArgs = {
13950
+ after?: InputMaybe<Scalars['Cursor']['input']>;
13951
+ before?: InputMaybe<Scalars['Cursor']['input']>;
13952
+ distinct?: InputMaybe<Array<InputMaybe<Instructions_Distinct_Enum>>>;
13953
+ filter?: InputMaybe<InstructionFilter>;
13954
+ first?: InputMaybe<Scalars['Int']['input']>;
13955
+ last?: InputMaybe<Scalars['Int']['input']>;
13956
+ offset?: InputMaybe<Scalars['Int']['input']>;
13957
+ orderBy?: InputMaybe<Array<InstructionsOrderBy>>;
13958
+ };
13959
+ /** A set of transactions that were executed together. Includes a reference to its parent, which reference its parent, this forms a chain to the genesis block */
13817
13960
  export declare type BlockInstructionsByCreatedBlockIdArgs = {
13818
13961
  after?: InputMaybe<Scalars['Cursor']['input']>;
13819
13962
  before?: InputMaybe<Scalars['Cursor']['input']>;
@@ -23346,6 +23489,90 @@ export declare type BlockIdentitiesByVenueUpdatedBlockIdAndOwnerIdManyToManyEdge
23346
23489
  offset?: InputMaybe<Scalars['Int']['input']>;
23347
23490
  orderBy?: InputMaybe<Array<VenuesOrderBy>>;
23348
23491
  };
23492
+ /** A connection to a list of `Instruction` values, with data from `AssetTransaction`. */
23493
+ export declare type BlockInstructionsByAssetTransactionCreatedBlockIdAndInstructionIdManyToManyConnection = {
23494
+ __typename?: 'BlockInstructionsByAssetTransactionCreatedBlockIdAndInstructionIdManyToManyConnection';
23495
+ /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */
23496
+ aggregates?: Maybe<InstructionAggregates>;
23497
+ /** A list of edges which contains the `Instruction`, info from the `AssetTransaction`, and the cursor to aid in pagination. */
23498
+ edges: Array<BlockInstructionsByAssetTransactionCreatedBlockIdAndInstructionIdManyToManyEdge>;
23499
+ /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */
23500
+ groupedAggregates?: Maybe<Array<InstructionAggregates>>;
23501
+ /** A list of `Instruction` objects. */
23502
+ nodes: Array<Maybe<Instruction>>;
23503
+ /** Information to aid in pagination. */
23504
+ pageInfo: PageInfo;
23505
+ /** The count of *all* `Instruction` you could get from the connection. */
23506
+ totalCount: Scalars['Int']['output'];
23507
+ };
23508
+ /** A connection to a list of `Instruction` values, with data from `AssetTransaction`. */
23509
+ export declare type BlockInstructionsByAssetTransactionCreatedBlockIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = {
23510
+ groupBy: Array<InstructionsGroupBy>;
23511
+ having?: InputMaybe<InstructionsHavingInput>;
23512
+ };
23513
+ /** A `Instruction` edge in the connection, with data from `AssetTransaction`. */
23514
+ export declare type BlockInstructionsByAssetTransactionCreatedBlockIdAndInstructionIdManyToManyEdge = {
23515
+ __typename?: 'BlockInstructionsByAssetTransactionCreatedBlockIdAndInstructionIdManyToManyEdge';
23516
+ /** Reads and enables pagination through a set of `AssetTransaction`. */
23517
+ assetTransactions: AssetTransactionsConnection;
23518
+ /** A cursor for use in pagination. */
23519
+ cursor?: Maybe<Scalars['Cursor']['output']>;
23520
+ /** The `Instruction` at the end of the edge. */
23521
+ node?: Maybe<Instruction>;
23522
+ };
23523
+ /** A `Instruction` edge in the connection, with data from `AssetTransaction`. */
23524
+ export declare type BlockInstructionsByAssetTransactionCreatedBlockIdAndInstructionIdManyToManyEdgeAssetTransactionsArgs = {
23525
+ after?: InputMaybe<Scalars['Cursor']['input']>;
23526
+ before?: InputMaybe<Scalars['Cursor']['input']>;
23527
+ distinct?: InputMaybe<Array<InputMaybe<Asset_Transactions_Distinct_Enum>>>;
23528
+ filter?: InputMaybe<AssetTransactionFilter>;
23529
+ first?: InputMaybe<Scalars['Int']['input']>;
23530
+ last?: InputMaybe<Scalars['Int']['input']>;
23531
+ offset?: InputMaybe<Scalars['Int']['input']>;
23532
+ orderBy?: InputMaybe<Array<AssetTransactionsOrderBy>>;
23533
+ };
23534
+ /** A connection to a list of `Instruction` values, with data from `AssetTransaction`. */
23535
+ export declare type BlockInstructionsByAssetTransactionUpdatedBlockIdAndInstructionIdManyToManyConnection = {
23536
+ __typename?: 'BlockInstructionsByAssetTransactionUpdatedBlockIdAndInstructionIdManyToManyConnection';
23537
+ /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */
23538
+ aggregates?: Maybe<InstructionAggregates>;
23539
+ /** A list of edges which contains the `Instruction`, info from the `AssetTransaction`, and the cursor to aid in pagination. */
23540
+ edges: Array<BlockInstructionsByAssetTransactionUpdatedBlockIdAndInstructionIdManyToManyEdge>;
23541
+ /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */
23542
+ groupedAggregates?: Maybe<Array<InstructionAggregates>>;
23543
+ /** A list of `Instruction` objects. */
23544
+ nodes: Array<Maybe<Instruction>>;
23545
+ /** Information to aid in pagination. */
23546
+ pageInfo: PageInfo;
23547
+ /** The count of *all* `Instruction` you could get from the connection. */
23548
+ totalCount: Scalars['Int']['output'];
23549
+ };
23550
+ /** A connection to a list of `Instruction` values, with data from `AssetTransaction`. */
23551
+ export declare type BlockInstructionsByAssetTransactionUpdatedBlockIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = {
23552
+ groupBy: Array<InstructionsGroupBy>;
23553
+ having?: InputMaybe<InstructionsHavingInput>;
23554
+ };
23555
+ /** A `Instruction` edge in the connection, with data from `AssetTransaction`. */
23556
+ export declare type BlockInstructionsByAssetTransactionUpdatedBlockIdAndInstructionIdManyToManyEdge = {
23557
+ __typename?: 'BlockInstructionsByAssetTransactionUpdatedBlockIdAndInstructionIdManyToManyEdge';
23558
+ /** Reads and enables pagination through a set of `AssetTransaction`. */
23559
+ assetTransactions: AssetTransactionsConnection;
23560
+ /** A cursor for use in pagination. */
23561
+ cursor?: Maybe<Scalars['Cursor']['output']>;
23562
+ /** The `Instruction` at the end of the edge. */
23563
+ node?: Maybe<Instruction>;
23564
+ };
23565
+ /** A `Instruction` edge in the connection, with data from `AssetTransaction`. */
23566
+ export declare type BlockInstructionsByAssetTransactionUpdatedBlockIdAndInstructionIdManyToManyEdgeAssetTransactionsArgs = {
23567
+ after?: InputMaybe<Scalars['Cursor']['input']>;
23568
+ before?: InputMaybe<Scalars['Cursor']['input']>;
23569
+ distinct?: InputMaybe<Array<InputMaybe<Asset_Transactions_Distinct_Enum>>>;
23570
+ filter?: InputMaybe<AssetTransactionFilter>;
23571
+ first?: InputMaybe<Scalars['Int']['input']>;
23572
+ last?: InputMaybe<Scalars['Int']['input']>;
23573
+ offset?: InputMaybe<Scalars['Int']['input']>;
23574
+ orderBy?: InputMaybe<Array<AssetTransactionsOrderBy>>;
23575
+ };
23349
23576
  /** A connection to a list of `Instruction` values, with data from `Leg`. */
23350
23577
  export declare type BlockInstructionsByLegCreatedBlockIdAndInstructionIdManyToManyConnection = {
23351
23578
  __typename?: 'BlockInstructionsByLegCreatedBlockIdAndInstructionIdManyToManyConnection';
@@ -28901,6 +29128,10 @@ export declare enum BlocksOrderBy {
28901
29128
  AssetTransactionsByCreatedBlockIdAverageFundingRoundDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_FUNDING_ROUND_DESC",
28902
29129
  AssetTransactionsByCreatedBlockIdAverageIdAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC",
28903
29130
  AssetTransactionsByCreatedBlockIdAverageIdDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC",
29131
+ AssetTransactionsByCreatedBlockIdAverageInstructionIdAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_INSTRUCTION_ID_ASC",
29132
+ AssetTransactionsByCreatedBlockIdAverageInstructionIdDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_INSTRUCTION_ID_DESC",
29133
+ AssetTransactionsByCreatedBlockIdAverageInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_INSTRUCTION_MEMO_ASC",
29134
+ AssetTransactionsByCreatedBlockIdAverageInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_INSTRUCTION_MEMO_DESC",
28904
29135
  AssetTransactionsByCreatedBlockIdAverageNftIdsAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_NFT_IDS_ASC",
28905
29136
  AssetTransactionsByCreatedBlockIdAverageNftIdsDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_NFT_IDS_DESC",
28906
29137
  AssetTransactionsByCreatedBlockIdAverageToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_TO_PORTFOLIO_ID_ASC",
@@ -28933,6 +29164,10 @@ export declare enum BlocksOrderBy {
28933
29164
  AssetTransactionsByCreatedBlockIdDistinctCountFundingRoundDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_FUNDING_ROUND_DESC",
28934
29165
  AssetTransactionsByCreatedBlockIdDistinctCountIdAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC",
28935
29166
  AssetTransactionsByCreatedBlockIdDistinctCountIdDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC",
29167
+ AssetTransactionsByCreatedBlockIdDistinctCountInstructionIdAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_INSTRUCTION_ID_ASC",
29168
+ AssetTransactionsByCreatedBlockIdDistinctCountInstructionIdDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_INSTRUCTION_ID_DESC",
29169
+ AssetTransactionsByCreatedBlockIdDistinctCountInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_INSTRUCTION_MEMO_ASC",
29170
+ AssetTransactionsByCreatedBlockIdDistinctCountInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_INSTRUCTION_MEMO_DESC",
28936
29171
  AssetTransactionsByCreatedBlockIdDistinctCountNftIdsAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_NFT_IDS_ASC",
28937
29172
  AssetTransactionsByCreatedBlockIdDistinctCountNftIdsDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_NFT_IDS_DESC",
28938
29173
  AssetTransactionsByCreatedBlockIdDistinctCountToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TO_PORTFOLIO_ID_ASC",
@@ -28963,6 +29198,10 @@ export declare enum BlocksOrderBy {
28963
29198
  AssetTransactionsByCreatedBlockIdMaxFundingRoundDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_FUNDING_ROUND_DESC",
28964
29199
  AssetTransactionsByCreatedBlockIdMaxIdAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_ID_ASC",
28965
29200
  AssetTransactionsByCreatedBlockIdMaxIdDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_ID_DESC",
29201
+ AssetTransactionsByCreatedBlockIdMaxInstructionIdAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_INSTRUCTION_ID_ASC",
29202
+ AssetTransactionsByCreatedBlockIdMaxInstructionIdDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_INSTRUCTION_ID_DESC",
29203
+ AssetTransactionsByCreatedBlockIdMaxInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_INSTRUCTION_MEMO_ASC",
29204
+ AssetTransactionsByCreatedBlockIdMaxInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_INSTRUCTION_MEMO_DESC",
28966
29205
  AssetTransactionsByCreatedBlockIdMaxNftIdsAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_NFT_IDS_ASC",
28967
29206
  AssetTransactionsByCreatedBlockIdMaxNftIdsDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_NFT_IDS_DESC",
28968
29207
  AssetTransactionsByCreatedBlockIdMaxToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_TO_PORTFOLIO_ID_ASC",
@@ -28993,6 +29232,10 @@ export declare enum BlocksOrderBy {
28993
29232
  AssetTransactionsByCreatedBlockIdMinFundingRoundDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_FUNDING_ROUND_DESC",
28994
29233
  AssetTransactionsByCreatedBlockIdMinIdAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_ID_ASC",
28995
29234
  AssetTransactionsByCreatedBlockIdMinIdDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_ID_DESC",
29235
+ AssetTransactionsByCreatedBlockIdMinInstructionIdAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_INSTRUCTION_ID_ASC",
29236
+ AssetTransactionsByCreatedBlockIdMinInstructionIdDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_INSTRUCTION_ID_DESC",
29237
+ AssetTransactionsByCreatedBlockIdMinInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_INSTRUCTION_MEMO_ASC",
29238
+ AssetTransactionsByCreatedBlockIdMinInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_INSTRUCTION_MEMO_DESC",
28996
29239
  AssetTransactionsByCreatedBlockIdMinNftIdsAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_NFT_IDS_ASC",
28997
29240
  AssetTransactionsByCreatedBlockIdMinNftIdsDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_NFT_IDS_DESC",
28998
29241
  AssetTransactionsByCreatedBlockIdMinToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_TO_PORTFOLIO_ID_ASC",
@@ -29023,6 +29266,10 @@ export declare enum BlocksOrderBy {
29023
29266
  AssetTransactionsByCreatedBlockIdStddevPopulationFundingRoundDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_FUNDING_ROUND_DESC",
29024
29267
  AssetTransactionsByCreatedBlockIdStddevPopulationIdAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC",
29025
29268
  AssetTransactionsByCreatedBlockIdStddevPopulationIdDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC",
29269
+ AssetTransactionsByCreatedBlockIdStddevPopulationInstructionIdAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_INSTRUCTION_ID_ASC",
29270
+ AssetTransactionsByCreatedBlockIdStddevPopulationInstructionIdDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_INSTRUCTION_ID_DESC",
29271
+ AssetTransactionsByCreatedBlockIdStddevPopulationInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_INSTRUCTION_MEMO_ASC",
29272
+ AssetTransactionsByCreatedBlockIdStddevPopulationInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_INSTRUCTION_MEMO_DESC",
29026
29273
  AssetTransactionsByCreatedBlockIdStddevPopulationNftIdsAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_NFT_IDS_ASC",
29027
29274
  AssetTransactionsByCreatedBlockIdStddevPopulationNftIdsDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_NFT_IDS_DESC",
29028
29275
  AssetTransactionsByCreatedBlockIdStddevPopulationToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TO_PORTFOLIO_ID_ASC",
@@ -29053,6 +29300,10 @@ export declare enum BlocksOrderBy {
29053
29300
  AssetTransactionsByCreatedBlockIdStddevSampleFundingRoundDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_FUNDING_ROUND_DESC",
29054
29301
  AssetTransactionsByCreatedBlockIdStddevSampleIdAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC",
29055
29302
  AssetTransactionsByCreatedBlockIdStddevSampleIdDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC",
29303
+ AssetTransactionsByCreatedBlockIdStddevSampleInstructionIdAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_INSTRUCTION_ID_ASC",
29304
+ AssetTransactionsByCreatedBlockIdStddevSampleInstructionIdDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_INSTRUCTION_ID_DESC",
29305
+ AssetTransactionsByCreatedBlockIdStddevSampleInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_INSTRUCTION_MEMO_ASC",
29306
+ AssetTransactionsByCreatedBlockIdStddevSampleInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_INSTRUCTION_MEMO_DESC",
29056
29307
  AssetTransactionsByCreatedBlockIdStddevSampleNftIdsAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_NFT_IDS_ASC",
29057
29308
  AssetTransactionsByCreatedBlockIdStddevSampleNftIdsDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_NFT_IDS_DESC",
29058
29309
  AssetTransactionsByCreatedBlockIdStddevSampleToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TO_PORTFOLIO_ID_ASC",
@@ -29083,6 +29334,10 @@ export declare enum BlocksOrderBy {
29083
29334
  AssetTransactionsByCreatedBlockIdSumFundingRoundDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_FUNDING_ROUND_DESC",
29084
29335
  AssetTransactionsByCreatedBlockIdSumIdAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_ID_ASC",
29085
29336
  AssetTransactionsByCreatedBlockIdSumIdDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_ID_DESC",
29337
+ AssetTransactionsByCreatedBlockIdSumInstructionIdAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_INSTRUCTION_ID_ASC",
29338
+ AssetTransactionsByCreatedBlockIdSumInstructionIdDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_INSTRUCTION_ID_DESC",
29339
+ AssetTransactionsByCreatedBlockIdSumInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_INSTRUCTION_MEMO_ASC",
29340
+ AssetTransactionsByCreatedBlockIdSumInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_INSTRUCTION_MEMO_DESC",
29086
29341
  AssetTransactionsByCreatedBlockIdSumNftIdsAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_NFT_IDS_ASC",
29087
29342
  AssetTransactionsByCreatedBlockIdSumNftIdsDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_NFT_IDS_DESC",
29088
29343
  AssetTransactionsByCreatedBlockIdSumToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_TO_PORTFOLIO_ID_ASC",
@@ -29113,6 +29368,10 @@ export declare enum BlocksOrderBy {
29113
29368
  AssetTransactionsByCreatedBlockIdVariancePopulationFundingRoundDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_FUNDING_ROUND_DESC",
29114
29369
  AssetTransactionsByCreatedBlockIdVariancePopulationIdAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC",
29115
29370
  AssetTransactionsByCreatedBlockIdVariancePopulationIdDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC",
29371
+ AssetTransactionsByCreatedBlockIdVariancePopulationInstructionIdAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_INSTRUCTION_ID_ASC",
29372
+ AssetTransactionsByCreatedBlockIdVariancePopulationInstructionIdDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_INSTRUCTION_ID_DESC",
29373
+ AssetTransactionsByCreatedBlockIdVariancePopulationInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_INSTRUCTION_MEMO_ASC",
29374
+ AssetTransactionsByCreatedBlockIdVariancePopulationInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_INSTRUCTION_MEMO_DESC",
29116
29375
  AssetTransactionsByCreatedBlockIdVariancePopulationNftIdsAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_NFT_IDS_ASC",
29117
29376
  AssetTransactionsByCreatedBlockIdVariancePopulationNftIdsDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_NFT_IDS_DESC",
29118
29377
  AssetTransactionsByCreatedBlockIdVariancePopulationToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TO_PORTFOLIO_ID_ASC",
@@ -29143,6 +29402,10 @@ export declare enum BlocksOrderBy {
29143
29402
  AssetTransactionsByCreatedBlockIdVarianceSampleFundingRoundDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_FUNDING_ROUND_DESC",
29144
29403
  AssetTransactionsByCreatedBlockIdVarianceSampleIdAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC",
29145
29404
  AssetTransactionsByCreatedBlockIdVarianceSampleIdDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC",
29405
+ AssetTransactionsByCreatedBlockIdVarianceSampleInstructionIdAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_INSTRUCTION_ID_ASC",
29406
+ AssetTransactionsByCreatedBlockIdVarianceSampleInstructionIdDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_INSTRUCTION_ID_DESC",
29407
+ AssetTransactionsByCreatedBlockIdVarianceSampleInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_INSTRUCTION_MEMO_ASC",
29408
+ AssetTransactionsByCreatedBlockIdVarianceSampleInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_INSTRUCTION_MEMO_DESC",
29146
29409
  AssetTransactionsByCreatedBlockIdVarianceSampleNftIdsAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_NFT_IDS_ASC",
29147
29410
  AssetTransactionsByCreatedBlockIdVarianceSampleNftIdsDesc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_NFT_IDS_DESC",
29148
29411
  AssetTransactionsByCreatedBlockIdVarianceSampleToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TO_PORTFOLIO_ID_ASC",
@@ -29173,6 +29436,10 @@ export declare enum BlocksOrderBy {
29173
29436
  AssetTransactionsByUpdatedBlockIdAverageFundingRoundDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_FUNDING_ROUND_DESC",
29174
29437
  AssetTransactionsByUpdatedBlockIdAverageIdAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC",
29175
29438
  AssetTransactionsByUpdatedBlockIdAverageIdDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC",
29439
+ AssetTransactionsByUpdatedBlockIdAverageInstructionIdAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_INSTRUCTION_ID_ASC",
29440
+ AssetTransactionsByUpdatedBlockIdAverageInstructionIdDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_INSTRUCTION_ID_DESC",
29441
+ AssetTransactionsByUpdatedBlockIdAverageInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_INSTRUCTION_MEMO_ASC",
29442
+ AssetTransactionsByUpdatedBlockIdAverageInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_INSTRUCTION_MEMO_DESC",
29176
29443
  AssetTransactionsByUpdatedBlockIdAverageNftIdsAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_NFT_IDS_ASC",
29177
29444
  AssetTransactionsByUpdatedBlockIdAverageNftIdsDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_NFT_IDS_DESC",
29178
29445
  AssetTransactionsByUpdatedBlockIdAverageToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_TO_PORTFOLIO_ID_ASC",
@@ -29205,6 +29472,10 @@ export declare enum BlocksOrderBy {
29205
29472
  AssetTransactionsByUpdatedBlockIdDistinctCountFundingRoundDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_FUNDING_ROUND_DESC",
29206
29473
  AssetTransactionsByUpdatedBlockIdDistinctCountIdAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC",
29207
29474
  AssetTransactionsByUpdatedBlockIdDistinctCountIdDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC",
29475
+ AssetTransactionsByUpdatedBlockIdDistinctCountInstructionIdAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_INSTRUCTION_ID_ASC",
29476
+ AssetTransactionsByUpdatedBlockIdDistinctCountInstructionIdDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_INSTRUCTION_ID_DESC",
29477
+ AssetTransactionsByUpdatedBlockIdDistinctCountInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_INSTRUCTION_MEMO_ASC",
29478
+ AssetTransactionsByUpdatedBlockIdDistinctCountInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_INSTRUCTION_MEMO_DESC",
29208
29479
  AssetTransactionsByUpdatedBlockIdDistinctCountNftIdsAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_NFT_IDS_ASC",
29209
29480
  AssetTransactionsByUpdatedBlockIdDistinctCountNftIdsDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_NFT_IDS_DESC",
29210
29481
  AssetTransactionsByUpdatedBlockIdDistinctCountToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TO_PORTFOLIO_ID_ASC",
@@ -29235,6 +29506,10 @@ export declare enum BlocksOrderBy {
29235
29506
  AssetTransactionsByUpdatedBlockIdMaxFundingRoundDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_FUNDING_ROUND_DESC",
29236
29507
  AssetTransactionsByUpdatedBlockIdMaxIdAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC",
29237
29508
  AssetTransactionsByUpdatedBlockIdMaxIdDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC",
29509
+ AssetTransactionsByUpdatedBlockIdMaxInstructionIdAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_INSTRUCTION_ID_ASC",
29510
+ AssetTransactionsByUpdatedBlockIdMaxInstructionIdDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_INSTRUCTION_ID_DESC",
29511
+ AssetTransactionsByUpdatedBlockIdMaxInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_INSTRUCTION_MEMO_ASC",
29512
+ AssetTransactionsByUpdatedBlockIdMaxInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_INSTRUCTION_MEMO_DESC",
29238
29513
  AssetTransactionsByUpdatedBlockIdMaxNftIdsAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_NFT_IDS_ASC",
29239
29514
  AssetTransactionsByUpdatedBlockIdMaxNftIdsDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_NFT_IDS_DESC",
29240
29515
  AssetTransactionsByUpdatedBlockIdMaxToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_TO_PORTFOLIO_ID_ASC",
@@ -29265,6 +29540,10 @@ export declare enum BlocksOrderBy {
29265
29540
  AssetTransactionsByUpdatedBlockIdMinFundingRoundDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_FUNDING_ROUND_DESC",
29266
29541
  AssetTransactionsByUpdatedBlockIdMinIdAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC",
29267
29542
  AssetTransactionsByUpdatedBlockIdMinIdDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC",
29543
+ AssetTransactionsByUpdatedBlockIdMinInstructionIdAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_INSTRUCTION_ID_ASC",
29544
+ AssetTransactionsByUpdatedBlockIdMinInstructionIdDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_INSTRUCTION_ID_DESC",
29545
+ AssetTransactionsByUpdatedBlockIdMinInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_INSTRUCTION_MEMO_ASC",
29546
+ AssetTransactionsByUpdatedBlockIdMinInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_INSTRUCTION_MEMO_DESC",
29268
29547
  AssetTransactionsByUpdatedBlockIdMinNftIdsAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_NFT_IDS_ASC",
29269
29548
  AssetTransactionsByUpdatedBlockIdMinNftIdsDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_NFT_IDS_DESC",
29270
29549
  AssetTransactionsByUpdatedBlockIdMinToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_TO_PORTFOLIO_ID_ASC",
@@ -29295,6 +29574,10 @@ export declare enum BlocksOrderBy {
29295
29574
  AssetTransactionsByUpdatedBlockIdStddevPopulationFundingRoundDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_FUNDING_ROUND_DESC",
29296
29575
  AssetTransactionsByUpdatedBlockIdStddevPopulationIdAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC",
29297
29576
  AssetTransactionsByUpdatedBlockIdStddevPopulationIdDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC",
29577
+ AssetTransactionsByUpdatedBlockIdStddevPopulationInstructionIdAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_INSTRUCTION_ID_ASC",
29578
+ AssetTransactionsByUpdatedBlockIdStddevPopulationInstructionIdDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_INSTRUCTION_ID_DESC",
29579
+ AssetTransactionsByUpdatedBlockIdStddevPopulationInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_INSTRUCTION_MEMO_ASC",
29580
+ AssetTransactionsByUpdatedBlockIdStddevPopulationInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_INSTRUCTION_MEMO_DESC",
29298
29581
  AssetTransactionsByUpdatedBlockIdStddevPopulationNftIdsAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_NFT_IDS_ASC",
29299
29582
  AssetTransactionsByUpdatedBlockIdStddevPopulationNftIdsDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_NFT_IDS_DESC",
29300
29583
  AssetTransactionsByUpdatedBlockIdStddevPopulationToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TO_PORTFOLIO_ID_ASC",
@@ -29325,6 +29608,10 @@ export declare enum BlocksOrderBy {
29325
29608
  AssetTransactionsByUpdatedBlockIdStddevSampleFundingRoundDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_FUNDING_ROUND_DESC",
29326
29609
  AssetTransactionsByUpdatedBlockIdStddevSampleIdAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC",
29327
29610
  AssetTransactionsByUpdatedBlockIdStddevSampleIdDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC",
29611
+ AssetTransactionsByUpdatedBlockIdStddevSampleInstructionIdAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_INSTRUCTION_ID_ASC",
29612
+ AssetTransactionsByUpdatedBlockIdStddevSampleInstructionIdDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_INSTRUCTION_ID_DESC",
29613
+ AssetTransactionsByUpdatedBlockIdStddevSampleInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_INSTRUCTION_MEMO_ASC",
29614
+ AssetTransactionsByUpdatedBlockIdStddevSampleInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_INSTRUCTION_MEMO_DESC",
29328
29615
  AssetTransactionsByUpdatedBlockIdStddevSampleNftIdsAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_NFT_IDS_ASC",
29329
29616
  AssetTransactionsByUpdatedBlockIdStddevSampleNftIdsDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_NFT_IDS_DESC",
29330
29617
  AssetTransactionsByUpdatedBlockIdStddevSampleToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TO_PORTFOLIO_ID_ASC",
@@ -29355,6 +29642,10 @@ export declare enum BlocksOrderBy {
29355
29642
  AssetTransactionsByUpdatedBlockIdSumFundingRoundDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_FUNDING_ROUND_DESC",
29356
29643
  AssetTransactionsByUpdatedBlockIdSumIdAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC",
29357
29644
  AssetTransactionsByUpdatedBlockIdSumIdDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC",
29645
+ AssetTransactionsByUpdatedBlockIdSumInstructionIdAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_INSTRUCTION_ID_ASC",
29646
+ AssetTransactionsByUpdatedBlockIdSumInstructionIdDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_INSTRUCTION_ID_DESC",
29647
+ AssetTransactionsByUpdatedBlockIdSumInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_INSTRUCTION_MEMO_ASC",
29648
+ AssetTransactionsByUpdatedBlockIdSumInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_INSTRUCTION_MEMO_DESC",
29358
29649
  AssetTransactionsByUpdatedBlockIdSumNftIdsAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_NFT_IDS_ASC",
29359
29650
  AssetTransactionsByUpdatedBlockIdSumNftIdsDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_NFT_IDS_DESC",
29360
29651
  AssetTransactionsByUpdatedBlockIdSumToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_TO_PORTFOLIO_ID_ASC",
@@ -29385,6 +29676,10 @@ export declare enum BlocksOrderBy {
29385
29676
  AssetTransactionsByUpdatedBlockIdVariancePopulationFundingRoundDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_FUNDING_ROUND_DESC",
29386
29677
  AssetTransactionsByUpdatedBlockIdVariancePopulationIdAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC",
29387
29678
  AssetTransactionsByUpdatedBlockIdVariancePopulationIdDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC",
29679
+ AssetTransactionsByUpdatedBlockIdVariancePopulationInstructionIdAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_INSTRUCTION_ID_ASC",
29680
+ AssetTransactionsByUpdatedBlockIdVariancePopulationInstructionIdDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_INSTRUCTION_ID_DESC",
29681
+ AssetTransactionsByUpdatedBlockIdVariancePopulationInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_INSTRUCTION_MEMO_ASC",
29682
+ AssetTransactionsByUpdatedBlockIdVariancePopulationInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_INSTRUCTION_MEMO_DESC",
29388
29683
  AssetTransactionsByUpdatedBlockIdVariancePopulationNftIdsAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_NFT_IDS_ASC",
29389
29684
  AssetTransactionsByUpdatedBlockIdVariancePopulationNftIdsDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_NFT_IDS_DESC",
29390
29685
  AssetTransactionsByUpdatedBlockIdVariancePopulationToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TO_PORTFOLIO_ID_ASC",
@@ -29415,6 +29710,10 @@ export declare enum BlocksOrderBy {
29415
29710
  AssetTransactionsByUpdatedBlockIdVarianceSampleFundingRoundDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_FUNDING_ROUND_DESC",
29416
29711
  AssetTransactionsByUpdatedBlockIdVarianceSampleIdAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC",
29417
29712
  AssetTransactionsByUpdatedBlockIdVarianceSampleIdDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC",
29713
+ AssetTransactionsByUpdatedBlockIdVarianceSampleInstructionIdAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_INSTRUCTION_ID_ASC",
29714
+ AssetTransactionsByUpdatedBlockIdVarianceSampleInstructionIdDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_INSTRUCTION_ID_DESC",
29715
+ AssetTransactionsByUpdatedBlockIdVarianceSampleInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_INSTRUCTION_MEMO_ASC",
29716
+ AssetTransactionsByUpdatedBlockIdVarianceSampleInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_INSTRUCTION_MEMO_DESC",
29418
29717
  AssetTransactionsByUpdatedBlockIdVarianceSampleNftIdsAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_NFT_IDS_ASC",
29419
29718
  AssetTransactionsByUpdatedBlockIdVarianceSampleNftIdsDesc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_NFT_IDS_DESC",
29420
29719
  AssetTransactionsByUpdatedBlockIdVarianceSampleToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TO_PORTFOLIO_ID_ASC",
@@ -45558,6 +45857,7 @@ export declare enum CallIdEnum {
45558
45857
  ApproveAsKey = "approve_as_key",
45559
45858
  ApproveCommitteeProposal = "approve_committee_proposal",
45560
45859
  ArchiveExtension = "archive_extension",
45860
+ AsDerivative = "as_derivative",
45561
45861
  AttachBallot = "attach_ballot",
45562
45862
  AuthorizeInstruction = "authorize_instruction",
45563
45863
  AuthorizeWithReceipts = "authorize_with_receipts",
@@ -64310,6 +64610,14 @@ export declare type IdentityVenuesByStoCreatorIdAndVenueIdManyToManyEdgeStosArgs
64310
64610
  */
64311
64611
  export declare type Instruction = Node & {
64312
64612
  __typename?: 'Instruction';
64613
+ /** Reads and enables pagination through a set of `AssetTransaction`. */
64614
+ assetTransactions: AssetTransactionsConnection;
64615
+ /** Reads and enables pagination through a set of `Asset`. */
64616
+ assetsByAssetTransactionInstructionIdAndAssetId: InstructionAssetsByAssetTransactionInstructionIdAndAssetIdManyToManyConnection;
64617
+ /** Reads and enables pagination through a set of `Block`. */
64618
+ blocksByAssetTransactionInstructionIdAndCreatedBlockId: InstructionBlocksByAssetTransactionInstructionIdAndCreatedBlockIdManyToManyConnection;
64619
+ /** Reads and enables pagination through a set of `Block`. */
64620
+ blocksByAssetTransactionInstructionIdAndUpdatedBlockId: InstructionBlocksByAssetTransactionInstructionIdAndUpdatedBlockIdManyToManyConnection;
64313
64621
  /** Reads and enables pagination through a set of `Block`. */
64314
64622
  blocksByLegInstructionIdAndCreatedBlockId: InstructionBlocksByLegInstructionIdAndCreatedBlockIdManyToManyConnection;
64315
64623
  /** Reads and enables pagination through a set of `Block`. */
@@ -64328,6 +64636,10 @@ export declare type Instruction = Node & {
64328
64636
  /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
64329
64637
  nodeId: Scalars['ID']['output'];
64330
64638
  /** Reads and enables pagination through a set of `Portfolio`. */
64639
+ portfoliosByAssetTransactionInstructionIdAndFromPortfolioId: InstructionPortfoliosByAssetTransactionInstructionIdAndFromPortfolioIdManyToManyConnection;
64640
+ /** Reads and enables pagination through a set of `Portfolio`. */
64641
+ portfoliosByAssetTransactionInstructionIdAndToPortfolioId: InstructionPortfoliosByAssetTransactionInstructionIdAndToPortfolioIdManyToManyConnection;
64642
+ /** Reads and enables pagination through a set of `Portfolio`. */
64331
64643
  portfoliosByLegInstructionIdAndFromId: InstructionPortfoliosByLegInstructionIdAndFromIdManyToManyConnection;
64332
64644
  /** Reads and enables pagination through a set of `Portfolio`. */
64333
64645
  portfoliosByLegInstructionIdAndToId: InstructionPortfoliosByLegInstructionIdAndToIdManyToManyConnection;
@@ -64345,6 +64657,66 @@ export declare type Instruction = Node & {
64345
64657
  venue?: Maybe<Venue>;
64346
64658
  venueId: Scalars['String']['output'];
64347
64659
  };
64660
+ /**
64661
+ * Represents a request to exchange Assets between parties.
64662
+ *
64663
+ * Before an Instruction is executed all involved parties must sign and submit an affirmation. Once an Instruction is affirmed it will then be attempted to be executed. If any party fails to satisfy any compliance or transfer restriction the Instruction will fail, and no movement of assets will occur.
64664
+ */
64665
+ export declare type InstructionAssetTransactionsArgs = {
64666
+ after?: InputMaybe<Scalars['Cursor']['input']>;
64667
+ before?: InputMaybe<Scalars['Cursor']['input']>;
64668
+ distinct?: InputMaybe<Array<InputMaybe<Asset_Transactions_Distinct_Enum>>>;
64669
+ filter?: InputMaybe<AssetTransactionFilter>;
64670
+ first?: InputMaybe<Scalars['Int']['input']>;
64671
+ last?: InputMaybe<Scalars['Int']['input']>;
64672
+ offset?: InputMaybe<Scalars['Int']['input']>;
64673
+ orderBy?: InputMaybe<Array<AssetTransactionsOrderBy>>;
64674
+ };
64675
+ /**
64676
+ * Represents a request to exchange Assets between parties.
64677
+ *
64678
+ * Before an Instruction is executed all involved parties must sign and submit an affirmation. Once an Instruction is affirmed it will then be attempted to be executed. If any party fails to satisfy any compliance or transfer restriction the Instruction will fail, and no movement of assets will occur.
64679
+ */
64680
+ export declare type InstructionAssetsByAssetTransactionInstructionIdAndAssetIdArgs = {
64681
+ after?: InputMaybe<Scalars['Cursor']['input']>;
64682
+ before?: InputMaybe<Scalars['Cursor']['input']>;
64683
+ distinct?: InputMaybe<Array<InputMaybe<Assets_Distinct_Enum>>>;
64684
+ filter?: InputMaybe<AssetFilter>;
64685
+ first?: InputMaybe<Scalars['Int']['input']>;
64686
+ last?: InputMaybe<Scalars['Int']['input']>;
64687
+ offset?: InputMaybe<Scalars['Int']['input']>;
64688
+ orderBy?: InputMaybe<Array<AssetsOrderBy>>;
64689
+ };
64690
+ /**
64691
+ * Represents a request to exchange Assets between parties.
64692
+ *
64693
+ * Before an Instruction is executed all involved parties must sign and submit an affirmation. Once an Instruction is affirmed it will then be attempted to be executed. If any party fails to satisfy any compliance or transfer restriction the Instruction will fail, and no movement of assets will occur.
64694
+ */
64695
+ export declare type InstructionBlocksByAssetTransactionInstructionIdAndCreatedBlockIdArgs = {
64696
+ after?: InputMaybe<Scalars['Cursor']['input']>;
64697
+ before?: InputMaybe<Scalars['Cursor']['input']>;
64698
+ distinct?: InputMaybe<Array<InputMaybe<Blocks_Distinct_Enum>>>;
64699
+ filter?: InputMaybe<BlockFilter>;
64700
+ first?: InputMaybe<Scalars['Int']['input']>;
64701
+ last?: InputMaybe<Scalars['Int']['input']>;
64702
+ offset?: InputMaybe<Scalars['Int']['input']>;
64703
+ orderBy?: InputMaybe<Array<BlocksOrderBy>>;
64704
+ };
64705
+ /**
64706
+ * Represents a request to exchange Assets between parties.
64707
+ *
64708
+ * Before an Instruction is executed all involved parties must sign and submit an affirmation. Once an Instruction is affirmed it will then be attempted to be executed. If any party fails to satisfy any compliance or transfer restriction the Instruction will fail, and no movement of assets will occur.
64709
+ */
64710
+ export declare type InstructionBlocksByAssetTransactionInstructionIdAndUpdatedBlockIdArgs = {
64711
+ after?: InputMaybe<Scalars['Cursor']['input']>;
64712
+ before?: InputMaybe<Scalars['Cursor']['input']>;
64713
+ distinct?: InputMaybe<Array<InputMaybe<Blocks_Distinct_Enum>>>;
64714
+ filter?: InputMaybe<BlockFilter>;
64715
+ first?: InputMaybe<Scalars['Int']['input']>;
64716
+ last?: InputMaybe<Scalars['Int']['input']>;
64717
+ offset?: InputMaybe<Scalars['Int']['input']>;
64718
+ orderBy?: InputMaybe<Array<BlocksOrderBy>>;
64719
+ };
64348
64720
  /**
64349
64721
  * Represents a request to exchange Assets between parties.
64350
64722
  *
@@ -64390,6 +64762,36 @@ export declare type InstructionLegsArgs = {
64390
64762
  offset?: InputMaybe<Scalars['Int']['input']>;
64391
64763
  orderBy?: InputMaybe<Array<LegsOrderBy>>;
64392
64764
  };
64765
+ /**
64766
+ * Represents a request to exchange Assets between parties.
64767
+ *
64768
+ * Before an Instruction is executed all involved parties must sign and submit an affirmation. Once an Instruction is affirmed it will then be attempted to be executed. If any party fails to satisfy any compliance or transfer restriction the Instruction will fail, and no movement of assets will occur.
64769
+ */
64770
+ export declare type InstructionPortfoliosByAssetTransactionInstructionIdAndFromPortfolioIdArgs = {
64771
+ after?: InputMaybe<Scalars['Cursor']['input']>;
64772
+ before?: InputMaybe<Scalars['Cursor']['input']>;
64773
+ distinct?: InputMaybe<Array<InputMaybe<Portfolios_Distinct_Enum>>>;
64774
+ filter?: InputMaybe<PortfolioFilter>;
64775
+ first?: InputMaybe<Scalars['Int']['input']>;
64776
+ last?: InputMaybe<Scalars['Int']['input']>;
64777
+ offset?: InputMaybe<Scalars['Int']['input']>;
64778
+ orderBy?: InputMaybe<Array<PortfoliosOrderBy>>;
64779
+ };
64780
+ /**
64781
+ * Represents a request to exchange Assets between parties.
64782
+ *
64783
+ * Before an Instruction is executed all involved parties must sign and submit an affirmation. Once an Instruction is affirmed it will then be attempted to be executed. If any party fails to satisfy any compliance or transfer restriction the Instruction will fail, and no movement of assets will occur.
64784
+ */
64785
+ export declare type InstructionPortfoliosByAssetTransactionInstructionIdAndToPortfolioIdArgs = {
64786
+ after?: InputMaybe<Scalars['Cursor']['input']>;
64787
+ before?: InputMaybe<Scalars['Cursor']['input']>;
64788
+ distinct?: InputMaybe<Array<InputMaybe<Portfolios_Distinct_Enum>>>;
64789
+ filter?: InputMaybe<PortfolioFilter>;
64790
+ first?: InputMaybe<Scalars['Int']['input']>;
64791
+ last?: InputMaybe<Scalars['Int']['input']>;
64792
+ offset?: InputMaybe<Scalars['Int']['input']>;
64793
+ orderBy?: InputMaybe<Array<PortfoliosOrderBy>>;
64794
+ };
64393
64795
  /**
64394
64796
  * Represents a request to exchange Assets between parties.
64395
64797
  *
@@ -64480,6 +64882,48 @@ export declare type InstructionAggregatesFilter = {
64480
64882
  /** Sample variance aggregate over matching `Instruction` objects. */
64481
64883
  varianceSample?: InputMaybe<InstructionVarianceSampleAggregateFilter>;
64482
64884
  };
64885
+ /** A connection to a list of `Asset` values, with data from `AssetTransaction`. */
64886
+ export declare type InstructionAssetsByAssetTransactionInstructionIdAndAssetIdManyToManyConnection = {
64887
+ __typename?: 'InstructionAssetsByAssetTransactionInstructionIdAndAssetIdManyToManyConnection';
64888
+ /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */
64889
+ aggregates?: Maybe<AssetAggregates>;
64890
+ /** A list of edges which contains the `Asset`, info from the `AssetTransaction`, and the cursor to aid in pagination. */
64891
+ edges: Array<InstructionAssetsByAssetTransactionInstructionIdAndAssetIdManyToManyEdge>;
64892
+ /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */
64893
+ groupedAggregates?: Maybe<Array<AssetAggregates>>;
64894
+ /** A list of `Asset` objects. */
64895
+ nodes: Array<Maybe<Asset>>;
64896
+ /** Information to aid in pagination. */
64897
+ pageInfo: PageInfo;
64898
+ /** The count of *all* `Asset` you could get from the connection. */
64899
+ totalCount: Scalars['Int']['output'];
64900
+ };
64901
+ /** A connection to a list of `Asset` values, with data from `AssetTransaction`. */
64902
+ export declare type InstructionAssetsByAssetTransactionInstructionIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = {
64903
+ groupBy: Array<AssetsGroupBy>;
64904
+ having?: InputMaybe<AssetsHavingInput>;
64905
+ };
64906
+ /** A `Asset` edge in the connection, with data from `AssetTransaction`. */
64907
+ export declare type InstructionAssetsByAssetTransactionInstructionIdAndAssetIdManyToManyEdge = {
64908
+ __typename?: 'InstructionAssetsByAssetTransactionInstructionIdAndAssetIdManyToManyEdge';
64909
+ /** Reads and enables pagination through a set of `AssetTransaction`. */
64910
+ assetTransactions: AssetTransactionsConnection;
64911
+ /** A cursor for use in pagination. */
64912
+ cursor?: Maybe<Scalars['Cursor']['output']>;
64913
+ /** The `Asset` at the end of the edge. */
64914
+ node?: Maybe<Asset>;
64915
+ };
64916
+ /** A `Asset` edge in the connection, with data from `AssetTransaction`. */
64917
+ export declare type InstructionAssetsByAssetTransactionInstructionIdAndAssetIdManyToManyEdgeAssetTransactionsArgs = {
64918
+ after?: InputMaybe<Scalars['Cursor']['input']>;
64919
+ before?: InputMaybe<Scalars['Cursor']['input']>;
64920
+ distinct?: InputMaybe<Array<InputMaybe<Asset_Transactions_Distinct_Enum>>>;
64921
+ filter?: InputMaybe<AssetTransactionFilter>;
64922
+ first?: InputMaybe<Scalars['Int']['input']>;
64923
+ last?: InputMaybe<Scalars['Int']['input']>;
64924
+ offset?: InputMaybe<Scalars['Int']['input']>;
64925
+ orderBy?: InputMaybe<Array<AssetTransactionsOrderBy>>;
64926
+ };
64483
64927
  export declare type InstructionAverageAggregateFilter = {
64484
64928
  endBlock?: InputMaybe<BigFloatFilter>;
64485
64929
  eventIdx?: InputMaybe<BigFloatFilter>;
@@ -64491,6 +64935,90 @@ export declare type InstructionAverageAggregates = {
64491
64935
  /** Mean average of eventIdx across the matching connection */
64492
64936
  eventIdx?: Maybe<Scalars['BigFloat']['output']>;
64493
64937
  };
64938
+ /** A connection to a list of `Block` values, with data from `AssetTransaction`. */
64939
+ export declare type InstructionBlocksByAssetTransactionInstructionIdAndCreatedBlockIdManyToManyConnection = {
64940
+ __typename?: 'InstructionBlocksByAssetTransactionInstructionIdAndCreatedBlockIdManyToManyConnection';
64941
+ /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */
64942
+ aggregates?: Maybe<BlockAggregates>;
64943
+ /** A list of edges which contains the `Block`, info from the `AssetTransaction`, and the cursor to aid in pagination. */
64944
+ edges: Array<InstructionBlocksByAssetTransactionInstructionIdAndCreatedBlockIdManyToManyEdge>;
64945
+ /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */
64946
+ groupedAggregates?: Maybe<Array<BlockAggregates>>;
64947
+ /** A list of `Block` objects. */
64948
+ nodes: Array<Maybe<Block>>;
64949
+ /** Information to aid in pagination. */
64950
+ pageInfo: PageInfo;
64951
+ /** The count of *all* `Block` you could get from the connection. */
64952
+ totalCount: Scalars['Int']['output'];
64953
+ };
64954
+ /** A connection to a list of `Block` values, with data from `AssetTransaction`. */
64955
+ export declare type InstructionBlocksByAssetTransactionInstructionIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = {
64956
+ groupBy: Array<BlocksGroupBy>;
64957
+ having?: InputMaybe<BlocksHavingInput>;
64958
+ };
64959
+ /** A `Block` edge in the connection, with data from `AssetTransaction`. */
64960
+ export declare type InstructionBlocksByAssetTransactionInstructionIdAndCreatedBlockIdManyToManyEdge = {
64961
+ __typename?: 'InstructionBlocksByAssetTransactionInstructionIdAndCreatedBlockIdManyToManyEdge';
64962
+ /** Reads and enables pagination through a set of `AssetTransaction`. */
64963
+ assetTransactionsByCreatedBlockId: AssetTransactionsConnection;
64964
+ /** A cursor for use in pagination. */
64965
+ cursor?: Maybe<Scalars['Cursor']['output']>;
64966
+ /** The `Block` at the end of the edge. */
64967
+ node?: Maybe<Block>;
64968
+ };
64969
+ /** A `Block` edge in the connection, with data from `AssetTransaction`. */
64970
+ export declare type InstructionBlocksByAssetTransactionInstructionIdAndCreatedBlockIdManyToManyEdgeAssetTransactionsByCreatedBlockIdArgs = {
64971
+ after?: InputMaybe<Scalars['Cursor']['input']>;
64972
+ before?: InputMaybe<Scalars['Cursor']['input']>;
64973
+ distinct?: InputMaybe<Array<InputMaybe<Asset_Transactions_Distinct_Enum>>>;
64974
+ filter?: InputMaybe<AssetTransactionFilter>;
64975
+ first?: InputMaybe<Scalars['Int']['input']>;
64976
+ last?: InputMaybe<Scalars['Int']['input']>;
64977
+ offset?: InputMaybe<Scalars['Int']['input']>;
64978
+ orderBy?: InputMaybe<Array<AssetTransactionsOrderBy>>;
64979
+ };
64980
+ /** A connection to a list of `Block` values, with data from `AssetTransaction`. */
64981
+ export declare type InstructionBlocksByAssetTransactionInstructionIdAndUpdatedBlockIdManyToManyConnection = {
64982
+ __typename?: 'InstructionBlocksByAssetTransactionInstructionIdAndUpdatedBlockIdManyToManyConnection';
64983
+ /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */
64984
+ aggregates?: Maybe<BlockAggregates>;
64985
+ /** A list of edges which contains the `Block`, info from the `AssetTransaction`, and the cursor to aid in pagination. */
64986
+ edges: Array<InstructionBlocksByAssetTransactionInstructionIdAndUpdatedBlockIdManyToManyEdge>;
64987
+ /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */
64988
+ groupedAggregates?: Maybe<Array<BlockAggregates>>;
64989
+ /** A list of `Block` objects. */
64990
+ nodes: Array<Maybe<Block>>;
64991
+ /** Information to aid in pagination. */
64992
+ pageInfo: PageInfo;
64993
+ /** The count of *all* `Block` you could get from the connection. */
64994
+ totalCount: Scalars['Int']['output'];
64995
+ };
64996
+ /** A connection to a list of `Block` values, with data from `AssetTransaction`. */
64997
+ export declare type InstructionBlocksByAssetTransactionInstructionIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = {
64998
+ groupBy: Array<BlocksGroupBy>;
64999
+ having?: InputMaybe<BlocksHavingInput>;
65000
+ };
65001
+ /** A `Block` edge in the connection, with data from `AssetTransaction`. */
65002
+ export declare type InstructionBlocksByAssetTransactionInstructionIdAndUpdatedBlockIdManyToManyEdge = {
65003
+ __typename?: 'InstructionBlocksByAssetTransactionInstructionIdAndUpdatedBlockIdManyToManyEdge';
65004
+ /** Reads and enables pagination through a set of `AssetTransaction`. */
65005
+ assetTransactionsByUpdatedBlockId: AssetTransactionsConnection;
65006
+ /** A cursor for use in pagination. */
65007
+ cursor?: Maybe<Scalars['Cursor']['output']>;
65008
+ /** The `Block` at the end of the edge. */
65009
+ node?: Maybe<Block>;
65010
+ };
65011
+ /** A `Block` edge in the connection, with data from `AssetTransaction`. */
65012
+ export declare type InstructionBlocksByAssetTransactionInstructionIdAndUpdatedBlockIdManyToManyEdgeAssetTransactionsByUpdatedBlockIdArgs = {
65013
+ after?: InputMaybe<Scalars['Cursor']['input']>;
65014
+ before?: InputMaybe<Scalars['Cursor']['input']>;
65015
+ distinct?: InputMaybe<Array<InputMaybe<Asset_Transactions_Distinct_Enum>>>;
65016
+ filter?: InputMaybe<AssetTransactionFilter>;
65017
+ first?: InputMaybe<Scalars['Int']['input']>;
65018
+ last?: InputMaybe<Scalars['Int']['input']>;
65019
+ offset?: InputMaybe<Scalars['Int']['input']>;
65020
+ orderBy?: InputMaybe<Array<AssetTransactionsOrderBy>>;
65021
+ };
64494
65022
  /** A connection to a list of `Block` values, with data from `Leg`. */
64495
65023
  export declare type InstructionBlocksByLegInstructionIdAndCreatedBlockIdManyToManyConnection = {
64496
65024
  __typename?: 'InstructionBlocksByLegInstructionIdAndCreatedBlockIdManyToManyConnection';
@@ -64626,6 +65154,10 @@ export declare type InstructionDistinctCountAggregates = {
64626
65154
  export declare type InstructionFilter = {
64627
65155
  /** Checks for all expressions in this list. */
64628
65156
  and?: InputMaybe<Array<InstructionFilter>>;
65157
+ /** Filter by the object’s `assetTransactions` relation. */
65158
+ assetTransactions?: InputMaybe<InstructionToManyAssetTransactionFilter>;
65159
+ /** Some related `assetTransactions` exist. */
65160
+ assetTransactionsExist?: InputMaybe<Scalars['Boolean']['input']>;
64629
65161
  /** Filter by the object’s `createdAt` field. */
64630
65162
  createdAt?: InputMaybe<DatetimeFilter>;
64631
65163
  /** Filter by the object’s `createdBlock` relation. */
@@ -64691,6 +65223,90 @@ export declare type InstructionMinAggregates = {
64691
65223
  /** Minimum of eventIdx across the matching connection */
64692
65224
  eventIdx?: Maybe<Scalars['Int']['output']>;
64693
65225
  };
65226
+ /** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */
65227
+ export declare type InstructionPortfoliosByAssetTransactionInstructionIdAndFromPortfolioIdManyToManyConnection = {
65228
+ __typename?: 'InstructionPortfoliosByAssetTransactionInstructionIdAndFromPortfolioIdManyToManyConnection';
65229
+ /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */
65230
+ aggregates?: Maybe<PortfolioAggregates>;
65231
+ /** A list of edges which contains the `Portfolio`, info from the `AssetTransaction`, and the cursor to aid in pagination. */
65232
+ edges: Array<InstructionPortfoliosByAssetTransactionInstructionIdAndFromPortfolioIdManyToManyEdge>;
65233
+ /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */
65234
+ groupedAggregates?: Maybe<Array<PortfolioAggregates>>;
65235
+ /** A list of `Portfolio` objects. */
65236
+ nodes: Array<Maybe<Portfolio>>;
65237
+ /** Information to aid in pagination. */
65238
+ pageInfo: PageInfo;
65239
+ /** The count of *all* `Portfolio` you could get from the connection. */
65240
+ totalCount: Scalars['Int']['output'];
65241
+ };
65242
+ /** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */
65243
+ export declare type InstructionPortfoliosByAssetTransactionInstructionIdAndFromPortfolioIdManyToManyConnectionGroupedAggregatesArgs = {
65244
+ groupBy: Array<PortfoliosGroupBy>;
65245
+ having?: InputMaybe<PortfoliosHavingInput>;
65246
+ };
65247
+ /** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */
65248
+ export declare type InstructionPortfoliosByAssetTransactionInstructionIdAndFromPortfolioIdManyToManyEdge = {
65249
+ __typename?: 'InstructionPortfoliosByAssetTransactionInstructionIdAndFromPortfolioIdManyToManyEdge';
65250
+ /** Reads and enables pagination through a set of `AssetTransaction`. */
65251
+ assetTransactionsByFromPortfolioId: AssetTransactionsConnection;
65252
+ /** A cursor for use in pagination. */
65253
+ cursor?: Maybe<Scalars['Cursor']['output']>;
65254
+ /** The `Portfolio` at the end of the edge. */
65255
+ node?: Maybe<Portfolio>;
65256
+ };
65257
+ /** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */
65258
+ export declare type InstructionPortfoliosByAssetTransactionInstructionIdAndFromPortfolioIdManyToManyEdgeAssetTransactionsByFromPortfolioIdArgs = {
65259
+ after?: InputMaybe<Scalars['Cursor']['input']>;
65260
+ before?: InputMaybe<Scalars['Cursor']['input']>;
65261
+ distinct?: InputMaybe<Array<InputMaybe<Asset_Transactions_Distinct_Enum>>>;
65262
+ filter?: InputMaybe<AssetTransactionFilter>;
65263
+ first?: InputMaybe<Scalars['Int']['input']>;
65264
+ last?: InputMaybe<Scalars['Int']['input']>;
65265
+ offset?: InputMaybe<Scalars['Int']['input']>;
65266
+ orderBy?: InputMaybe<Array<AssetTransactionsOrderBy>>;
65267
+ };
65268
+ /** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */
65269
+ export declare type InstructionPortfoliosByAssetTransactionInstructionIdAndToPortfolioIdManyToManyConnection = {
65270
+ __typename?: 'InstructionPortfoliosByAssetTransactionInstructionIdAndToPortfolioIdManyToManyConnection';
65271
+ /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */
65272
+ aggregates?: Maybe<PortfolioAggregates>;
65273
+ /** A list of edges which contains the `Portfolio`, info from the `AssetTransaction`, and the cursor to aid in pagination. */
65274
+ edges: Array<InstructionPortfoliosByAssetTransactionInstructionIdAndToPortfolioIdManyToManyEdge>;
65275
+ /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */
65276
+ groupedAggregates?: Maybe<Array<PortfolioAggregates>>;
65277
+ /** A list of `Portfolio` objects. */
65278
+ nodes: Array<Maybe<Portfolio>>;
65279
+ /** Information to aid in pagination. */
65280
+ pageInfo: PageInfo;
65281
+ /** The count of *all* `Portfolio` you could get from the connection. */
65282
+ totalCount: Scalars['Int']['output'];
65283
+ };
65284
+ /** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */
65285
+ export declare type InstructionPortfoliosByAssetTransactionInstructionIdAndToPortfolioIdManyToManyConnectionGroupedAggregatesArgs = {
65286
+ groupBy: Array<PortfoliosGroupBy>;
65287
+ having?: InputMaybe<PortfoliosHavingInput>;
65288
+ };
65289
+ /** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */
65290
+ export declare type InstructionPortfoliosByAssetTransactionInstructionIdAndToPortfolioIdManyToManyEdge = {
65291
+ __typename?: 'InstructionPortfoliosByAssetTransactionInstructionIdAndToPortfolioIdManyToManyEdge';
65292
+ /** Reads and enables pagination through a set of `AssetTransaction`. */
65293
+ assetTransactionsByToPortfolioId: AssetTransactionsConnection;
65294
+ /** A cursor for use in pagination. */
65295
+ cursor?: Maybe<Scalars['Cursor']['output']>;
65296
+ /** The `Portfolio` at the end of the edge. */
65297
+ node?: Maybe<Portfolio>;
65298
+ };
65299
+ /** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */
65300
+ export declare type InstructionPortfoliosByAssetTransactionInstructionIdAndToPortfolioIdManyToManyEdgeAssetTransactionsByToPortfolioIdArgs = {
65301
+ after?: InputMaybe<Scalars['Cursor']['input']>;
65302
+ before?: InputMaybe<Scalars['Cursor']['input']>;
65303
+ distinct?: InputMaybe<Array<InputMaybe<Asset_Transactions_Distinct_Enum>>>;
65304
+ filter?: InputMaybe<AssetTransactionFilter>;
65305
+ first?: InputMaybe<Scalars['Int']['input']>;
65306
+ last?: InputMaybe<Scalars['Int']['input']>;
65307
+ offset?: InputMaybe<Scalars['Int']['input']>;
65308
+ orderBy?: InputMaybe<Array<AssetTransactionsOrderBy>>;
65309
+ };
64694
65310
  /** A connection to a list of `Portfolio` values, with data from `Leg`. */
64695
65311
  export declare type InstructionPortfoliosByLegInstructionIdAndFromIdManyToManyConnection = {
64696
65312
  __typename?: 'InstructionPortfoliosByLegInstructionIdAndFromIdManyToManyConnection';
@@ -64882,6 +65498,17 @@ export declare type InstructionSumAggregates = {
64882
65498
  /** Sum of eventIdx across the matching connection */
64883
65499
  eventIdx: Scalars['BigInt']['output'];
64884
65500
  };
65501
+ /** A filter to be used against many `AssetTransaction` object types. All fields are combined with a logical ‘and.’ */
65502
+ export declare type InstructionToManyAssetTransactionFilter = {
65503
+ /** Aggregates across related `AssetTransaction` match the filter criteria. */
65504
+ aggregates?: InputMaybe<AssetTransactionAggregatesFilter>;
65505
+ /** Every related `AssetTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */
65506
+ every?: InputMaybe<AssetTransactionFilter>;
65507
+ /** No related `AssetTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */
65508
+ none?: InputMaybe<AssetTransactionFilter>;
65509
+ /** Some related `AssetTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */
65510
+ some?: InputMaybe<AssetTransactionFilter>;
65511
+ };
64885
65512
  /** A filter to be used against many `Leg` object types. All fields are combined with a logical ‘and.’ */
64886
65513
  export declare type InstructionToManyLegFilter = {
64887
65514
  /** Aggregates across related `Leg` match the filter criteria. */
@@ -65056,6 +65683,314 @@ export declare type InstructionsHavingVarianceSampleInput = {
65056
65683
  };
65057
65684
  /** Methods to use when ordering `Instruction`. */
65058
65685
  export declare enum InstructionsOrderBy {
65686
+ AssetTransactionsAverageAmountAsc = "ASSET_TRANSACTIONS_AVERAGE_AMOUNT_ASC",
65687
+ AssetTransactionsAverageAmountDesc = "ASSET_TRANSACTIONS_AVERAGE_AMOUNT_DESC",
65688
+ AssetTransactionsAverageAssetIdAsc = "ASSET_TRANSACTIONS_AVERAGE_ASSET_ID_ASC",
65689
+ AssetTransactionsAverageAssetIdDesc = "ASSET_TRANSACTIONS_AVERAGE_ASSET_ID_DESC",
65690
+ AssetTransactionsAverageCreatedAtAsc = "ASSET_TRANSACTIONS_AVERAGE_CREATED_AT_ASC",
65691
+ AssetTransactionsAverageCreatedAtDesc = "ASSET_TRANSACTIONS_AVERAGE_CREATED_AT_DESC",
65692
+ AssetTransactionsAverageCreatedBlockIdAsc = "ASSET_TRANSACTIONS_AVERAGE_CREATED_BLOCK_ID_ASC",
65693
+ AssetTransactionsAverageCreatedBlockIdDesc = "ASSET_TRANSACTIONS_AVERAGE_CREATED_BLOCK_ID_DESC",
65694
+ AssetTransactionsAverageDatetimeAsc = "ASSET_TRANSACTIONS_AVERAGE_DATETIME_ASC",
65695
+ AssetTransactionsAverageDatetimeDesc = "ASSET_TRANSACTIONS_AVERAGE_DATETIME_DESC",
65696
+ AssetTransactionsAverageEventIdxAsc = "ASSET_TRANSACTIONS_AVERAGE_EVENT_IDX_ASC",
65697
+ AssetTransactionsAverageEventIdxDesc = "ASSET_TRANSACTIONS_AVERAGE_EVENT_IDX_DESC",
65698
+ AssetTransactionsAverageEventIdAsc = "ASSET_TRANSACTIONS_AVERAGE_EVENT_ID_ASC",
65699
+ AssetTransactionsAverageEventIdDesc = "ASSET_TRANSACTIONS_AVERAGE_EVENT_ID_DESC",
65700
+ AssetTransactionsAverageExtrinsicIdxAsc = "ASSET_TRANSACTIONS_AVERAGE_EXTRINSIC_IDX_ASC",
65701
+ AssetTransactionsAverageExtrinsicIdxDesc = "ASSET_TRANSACTIONS_AVERAGE_EXTRINSIC_IDX_DESC",
65702
+ AssetTransactionsAverageFromPortfolioIdAsc = "ASSET_TRANSACTIONS_AVERAGE_FROM_PORTFOLIO_ID_ASC",
65703
+ AssetTransactionsAverageFromPortfolioIdDesc = "ASSET_TRANSACTIONS_AVERAGE_FROM_PORTFOLIO_ID_DESC",
65704
+ AssetTransactionsAverageFundingRoundAsc = "ASSET_TRANSACTIONS_AVERAGE_FUNDING_ROUND_ASC",
65705
+ AssetTransactionsAverageFundingRoundDesc = "ASSET_TRANSACTIONS_AVERAGE_FUNDING_ROUND_DESC",
65706
+ AssetTransactionsAverageIdAsc = "ASSET_TRANSACTIONS_AVERAGE_ID_ASC",
65707
+ AssetTransactionsAverageIdDesc = "ASSET_TRANSACTIONS_AVERAGE_ID_DESC",
65708
+ AssetTransactionsAverageInstructionIdAsc = "ASSET_TRANSACTIONS_AVERAGE_INSTRUCTION_ID_ASC",
65709
+ AssetTransactionsAverageInstructionIdDesc = "ASSET_TRANSACTIONS_AVERAGE_INSTRUCTION_ID_DESC",
65710
+ AssetTransactionsAverageInstructionMemoAsc = "ASSET_TRANSACTIONS_AVERAGE_INSTRUCTION_MEMO_ASC",
65711
+ AssetTransactionsAverageInstructionMemoDesc = "ASSET_TRANSACTIONS_AVERAGE_INSTRUCTION_MEMO_DESC",
65712
+ AssetTransactionsAverageNftIdsAsc = "ASSET_TRANSACTIONS_AVERAGE_NFT_IDS_ASC",
65713
+ AssetTransactionsAverageNftIdsDesc = "ASSET_TRANSACTIONS_AVERAGE_NFT_IDS_DESC",
65714
+ AssetTransactionsAverageToPortfolioIdAsc = "ASSET_TRANSACTIONS_AVERAGE_TO_PORTFOLIO_ID_ASC",
65715
+ AssetTransactionsAverageToPortfolioIdDesc = "ASSET_TRANSACTIONS_AVERAGE_TO_PORTFOLIO_ID_DESC",
65716
+ AssetTransactionsAverageUpdatedAtAsc = "ASSET_TRANSACTIONS_AVERAGE_UPDATED_AT_ASC",
65717
+ AssetTransactionsAverageUpdatedAtDesc = "ASSET_TRANSACTIONS_AVERAGE_UPDATED_AT_DESC",
65718
+ AssetTransactionsAverageUpdatedBlockIdAsc = "ASSET_TRANSACTIONS_AVERAGE_UPDATED_BLOCK_ID_ASC",
65719
+ AssetTransactionsAverageUpdatedBlockIdDesc = "ASSET_TRANSACTIONS_AVERAGE_UPDATED_BLOCK_ID_DESC",
65720
+ AssetTransactionsCountAsc = "ASSET_TRANSACTIONS_COUNT_ASC",
65721
+ AssetTransactionsCountDesc = "ASSET_TRANSACTIONS_COUNT_DESC",
65722
+ AssetTransactionsDistinctCountAmountAsc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_AMOUNT_ASC",
65723
+ AssetTransactionsDistinctCountAmountDesc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_AMOUNT_DESC",
65724
+ AssetTransactionsDistinctCountAssetIdAsc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_ASSET_ID_ASC",
65725
+ AssetTransactionsDistinctCountAssetIdDesc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_ASSET_ID_DESC",
65726
+ AssetTransactionsDistinctCountCreatedAtAsc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_CREATED_AT_ASC",
65727
+ AssetTransactionsDistinctCountCreatedAtDesc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_CREATED_AT_DESC",
65728
+ AssetTransactionsDistinctCountCreatedBlockIdAsc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC",
65729
+ AssetTransactionsDistinctCountCreatedBlockIdDesc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC",
65730
+ AssetTransactionsDistinctCountDatetimeAsc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_DATETIME_ASC",
65731
+ AssetTransactionsDistinctCountDatetimeDesc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_DATETIME_DESC",
65732
+ AssetTransactionsDistinctCountEventIdxAsc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_EVENT_IDX_ASC",
65733
+ AssetTransactionsDistinctCountEventIdxDesc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_EVENT_IDX_DESC",
65734
+ AssetTransactionsDistinctCountEventIdAsc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_EVENT_ID_ASC",
65735
+ AssetTransactionsDistinctCountEventIdDesc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_EVENT_ID_DESC",
65736
+ AssetTransactionsDistinctCountExtrinsicIdxAsc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_EXTRINSIC_IDX_ASC",
65737
+ AssetTransactionsDistinctCountExtrinsicIdxDesc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_EXTRINSIC_IDX_DESC",
65738
+ AssetTransactionsDistinctCountFromPortfolioIdAsc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_FROM_PORTFOLIO_ID_ASC",
65739
+ AssetTransactionsDistinctCountFromPortfolioIdDesc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_FROM_PORTFOLIO_ID_DESC",
65740
+ AssetTransactionsDistinctCountFundingRoundAsc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_FUNDING_ROUND_ASC",
65741
+ AssetTransactionsDistinctCountFundingRoundDesc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_FUNDING_ROUND_DESC",
65742
+ AssetTransactionsDistinctCountIdAsc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_ID_ASC",
65743
+ AssetTransactionsDistinctCountIdDesc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_ID_DESC",
65744
+ AssetTransactionsDistinctCountInstructionIdAsc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_INSTRUCTION_ID_ASC",
65745
+ AssetTransactionsDistinctCountInstructionIdDesc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_INSTRUCTION_ID_DESC",
65746
+ AssetTransactionsDistinctCountInstructionMemoAsc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_INSTRUCTION_MEMO_ASC",
65747
+ AssetTransactionsDistinctCountInstructionMemoDesc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_INSTRUCTION_MEMO_DESC",
65748
+ AssetTransactionsDistinctCountNftIdsAsc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_NFT_IDS_ASC",
65749
+ AssetTransactionsDistinctCountNftIdsDesc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_NFT_IDS_DESC",
65750
+ AssetTransactionsDistinctCountToPortfolioIdAsc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_TO_PORTFOLIO_ID_ASC",
65751
+ AssetTransactionsDistinctCountToPortfolioIdDesc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_TO_PORTFOLIO_ID_DESC",
65752
+ AssetTransactionsDistinctCountUpdatedAtAsc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_UPDATED_AT_ASC",
65753
+ AssetTransactionsDistinctCountUpdatedAtDesc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_UPDATED_AT_DESC",
65754
+ AssetTransactionsDistinctCountUpdatedBlockIdAsc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC",
65755
+ AssetTransactionsDistinctCountUpdatedBlockIdDesc = "ASSET_TRANSACTIONS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC",
65756
+ AssetTransactionsMaxAmountAsc = "ASSET_TRANSACTIONS_MAX_AMOUNT_ASC",
65757
+ AssetTransactionsMaxAmountDesc = "ASSET_TRANSACTIONS_MAX_AMOUNT_DESC",
65758
+ AssetTransactionsMaxAssetIdAsc = "ASSET_TRANSACTIONS_MAX_ASSET_ID_ASC",
65759
+ AssetTransactionsMaxAssetIdDesc = "ASSET_TRANSACTIONS_MAX_ASSET_ID_DESC",
65760
+ AssetTransactionsMaxCreatedAtAsc = "ASSET_TRANSACTIONS_MAX_CREATED_AT_ASC",
65761
+ AssetTransactionsMaxCreatedAtDesc = "ASSET_TRANSACTIONS_MAX_CREATED_AT_DESC",
65762
+ AssetTransactionsMaxCreatedBlockIdAsc = "ASSET_TRANSACTIONS_MAX_CREATED_BLOCK_ID_ASC",
65763
+ AssetTransactionsMaxCreatedBlockIdDesc = "ASSET_TRANSACTIONS_MAX_CREATED_BLOCK_ID_DESC",
65764
+ AssetTransactionsMaxDatetimeAsc = "ASSET_TRANSACTIONS_MAX_DATETIME_ASC",
65765
+ AssetTransactionsMaxDatetimeDesc = "ASSET_TRANSACTIONS_MAX_DATETIME_DESC",
65766
+ AssetTransactionsMaxEventIdxAsc = "ASSET_TRANSACTIONS_MAX_EVENT_IDX_ASC",
65767
+ AssetTransactionsMaxEventIdxDesc = "ASSET_TRANSACTIONS_MAX_EVENT_IDX_DESC",
65768
+ AssetTransactionsMaxEventIdAsc = "ASSET_TRANSACTIONS_MAX_EVENT_ID_ASC",
65769
+ AssetTransactionsMaxEventIdDesc = "ASSET_TRANSACTIONS_MAX_EVENT_ID_DESC",
65770
+ AssetTransactionsMaxExtrinsicIdxAsc = "ASSET_TRANSACTIONS_MAX_EXTRINSIC_IDX_ASC",
65771
+ AssetTransactionsMaxExtrinsicIdxDesc = "ASSET_TRANSACTIONS_MAX_EXTRINSIC_IDX_DESC",
65772
+ AssetTransactionsMaxFromPortfolioIdAsc = "ASSET_TRANSACTIONS_MAX_FROM_PORTFOLIO_ID_ASC",
65773
+ AssetTransactionsMaxFromPortfolioIdDesc = "ASSET_TRANSACTIONS_MAX_FROM_PORTFOLIO_ID_DESC",
65774
+ AssetTransactionsMaxFundingRoundAsc = "ASSET_TRANSACTIONS_MAX_FUNDING_ROUND_ASC",
65775
+ AssetTransactionsMaxFundingRoundDesc = "ASSET_TRANSACTIONS_MAX_FUNDING_ROUND_DESC",
65776
+ AssetTransactionsMaxIdAsc = "ASSET_TRANSACTIONS_MAX_ID_ASC",
65777
+ AssetTransactionsMaxIdDesc = "ASSET_TRANSACTIONS_MAX_ID_DESC",
65778
+ AssetTransactionsMaxInstructionIdAsc = "ASSET_TRANSACTIONS_MAX_INSTRUCTION_ID_ASC",
65779
+ AssetTransactionsMaxInstructionIdDesc = "ASSET_TRANSACTIONS_MAX_INSTRUCTION_ID_DESC",
65780
+ AssetTransactionsMaxInstructionMemoAsc = "ASSET_TRANSACTIONS_MAX_INSTRUCTION_MEMO_ASC",
65781
+ AssetTransactionsMaxInstructionMemoDesc = "ASSET_TRANSACTIONS_MAX_INSTRUCTION_MEMO_DESC",
65782
+ AssetTransactionsMaxNftIdsAsc = "ASSET_TRANSACTIONS_MAX_NFT_IDS_ASC",
65783
+ AssetTransactionsMaxNftIdsDesc = "ASSET_TRANSACTIONS_MAX_NFT_IDS_DESC",
65784
+ AssetTransactionsMaxToPortfolioIdAsc = "ASSET_TRANSACTIONS_MAX_TO_PORTFOLIO_ID_ASC",
65785
+ AssetTransactionsMaxToPortfolioIdDesc = "ASSET_TRANSACTIONS_MAX_TO_PORTFOLIO_ID_DESC",
65786
+ AssetTransactionsMaxUpdatedAtAsc = "ASSET_TRANSACTIONS_MAX_UPDATED_AT_ASC",
65787
+ AssetTransactionsMaxUpdatedAtDesc = "ASSET_TRANSACTIONS_MAX_UPDATED_AT_DESC",
65788
+ AssetTransactionsMaxUpdatedBlockIdAsc = "ASSET_TRANSACTIONS_MAX_UPDATED_BLOCK_ID_ASC",
65789
+ AssetTransactionsMaxUpdatedBlockIdDesc = "ASSET_TRANSACTIONS_MAX_UPDATED_BLOCK_ID_DESC",
65790
+ AssetTransactionsMinAmountAsc = "ASSET_TRANSACTIONS_MIN_AMOUNT_ASC",
65791
+ AssetTransactionsMinAmountDesc = "ASSET_TRANSACTIONS_MIN_AMOUNT_DESC",
65792
+ AssetTransactionsMinAssetIdAsc = "ASSET_TRANSACTIONS_MIN_ASSET_ID_ASC",
65793
+ AssetTransactionsMinAssetIdDesc = "ASSET_TRANSACTIONS_MIN_ASSET_ID_DESC",
65794
+ AssetTransactionsMinCreatedAtAsc = "ASSET_TRANSACTIONS_MIN_CREATED_AT_ASC",
65795
+ AssetTransactionsMinCreatedAtDesc = "ASSET_TRANSACTIONS_MIN_CREATED_AT_DESC",
65796
+ AssetTransactionsMinCreatedBlockIdAsc = "ASSET_TRANSACTIONS_MIN_CREATED_BLOCK_ID_ASC",
65797
+ AssetTransactionsMinCreatedBlockIdDesc = "ASSET_TRANSACTIONS_MIN_CREATED_BLOCK_ID_DESC",
65798
+ AssetTransactionsMinDatetimeAsc = "ASSET_TRANSACTIONS_MIN_DATETIME_ASC",
65799
+ AssetTransactionsMinDatetimeDesc = "ASSET_TRANSACTIONS_MIN_DATETIME_DESC",
65800
+ AssetTransactionsMinEventIdxAsc = "ASSET_TRANSACTIONS_MIN_EVENT_IDX_ASC",
65801
+ AssetTransactionsMinEventIdxDesc = "ASSET_TRANSACTIONS_MIN_EVENT_IDX_DESC",
65802
+ AssetTransactionsMinEventIdAsc = "ASSET_TRANSACTIONS_MIN_EVENT_ID_ASC",
65803
+ AssetTransactionsMinEventIdDesc = "ASSET_TRANSACTIONS_MIN_EVENT_ID_DESC",
65804
+ AssetTransactionsMinExtrinsicIdxAsc = "ASSET_TRANSACTIONS_MIN_EXTRINSIC_IDX_ASC",
65805
+ AssetTransactionsMinExtrinsicIdxDesc = "ASSET_TRANSACTIONS_MIN_EXTRINSIC_IDX_DESC",
65806
+ AssetTransactionsMinFromPortfolioIdAsc = "ASSET_TRANSACTIONS_MIN_FROM_PORTFOLIO_ID_ASC",
65807
+ AssetTransactionsMinFromPortfolioIdDesc = "ASSET_TRANSACTIONS_MIN_FROM_PORTFOLIO_ID_DESC",
65808
+ AssetTransactionsMinFundingRoundAsc = "ASSET_TRANSACTIONS_MIN_FUNDING_ROUND_ASC",
65809
+ AssetTransactionsMinFundingRoundDesc = "ASSET_TRANSACTIONS_MIN_FUNDING_ROUND_DESC",
65810
+ AssetTransactionsMinIdAsc = "ASSET_TRANSACTIONS_MIN_ID_ASC",
65811
+ AssetTransactionsMinIdDesc = "ASSET_TRANSACTIONS_MIN_ID_DESC",
65812
+ AssetTransactionsMinInstructionIdAsc = "ASSET_TRANSACTIONS_MIN_INSTRUCTION_ID_ASC",
65813
+ AssetTransactionsMinInstructionIdDesc = "ASSET_TRANSACTIONS_MIN_INSTRUCTION_ID_DESC",
65814
+ AssetTransactionsMinInstructionMemoAsc = "ASSET_TRANSACTIONS_MIN_INSTRUCTION_MEMO_ASC",
65815
+ AssetTransactionsMinInstructionMemoDesc = "ASSET_TRANSACTIONS_MIN_INSTRUCTION_MEMO_DESC",
65816
+ AssetTransactionsMinNftIdsAsc = "ASSET_TRANSACTIONS_MIN_NFT_IDS_ASC",
65817
+ AssetTransactionsMinNftIdsDesc = "ASSET_TRANSACTIONS_MIN_NFT_IDS_DESC",
65818
+ AssetTransactionsMinToPortfolioIdAsc = "ASSET_TRANSACTIONS_MIN_TO_PORTFOLIO_ID_ASC",
65819
+ AssetTransactionsMinToPortfolioIdDesc = "ASSET_TRANSACTIONS_MIN_TO_PORTFOLIO_ID_DESC",
65820
+ AssetTransactionsMinUpdatedAtAsc = "ASSET_TRANSACTIONS_MIN_UPDATED_AT_ASC",
65821
+ AssetTransactionsMinUpdatedAtDesc = "ASSET_TRANSACTIONS_MIN_UPDATED_AT_DESC",
65822
+ AssetTransactionsMinUpdatedBlockIdAsc = "ASSET_TRANSACTIONS_MIN_UPDATED_BLOCK_ID_ASC",
65823
+ AssetTransactionsMinUpdatedBlockIdDesc = "ASSET_TRANSACTIONS_MIN_UPDATED_BLOCK_ID_DESC",
65824
+ AssetTransactionsStddevPopulationAmountAsc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_AMOUNT_ASC",
65825
+ AssetTransactionsStddevPopulationAmountDesc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_AMOUNT_DESC",
65826
+ AssetTransactionsStddevPopulationAssetIdAsc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_ASSET_ID_ASC",
65827
+ AssetTransactionsStddevPopulationAssetIdDesc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_ASSET_ID_DESC",
65828
+ AssetTransactionsStddevPopulationCreatedAtAsc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_CREATED_AT_ASC",
65829
+ AssetTransactionsStddevPopulationCreatedAtDesc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_CREATED_AT_DESC",
65830
+ AssetTransactionsStddevPopulationCreatedBlockIdAsc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC",
65831
+ AssetTransactionsStddevPopulationCreatedBlockIdDesc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC",
65832
+ AssetTransactionsStddevPopulationDatetimeAsc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_DATETIME_ASC",
65833
+ AssetTransactionsStddevPopulationDatetimeDesc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_DATETIME_DESC",
65834
+ AssetTransactionsStddevPopulationEventIdxAsc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_EVENT_IDX_ASC",
65835
+ AssetTransactionsStddevPopulationEventIdxDesc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_EVENT_IDX_DESC",
65836
+ AssetTransactionsStddevPopulationEventIdAsc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_EVENT_ID_ASC",
65837
+ AssetTransactionsStddevPopulationEventIdDesc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_EVENT_ID_DESC",
65838
+ AssetTransactionsStddevPopulationExtrinsicIdxAsc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_EXTRINSIC_IDX_ASC",
65839
+ AssetTransactionsStddevPopulationExtrinsicIdxDesc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_EXTRINSIC_IDX_DESC",
65840
+ AssetTransactionsStddevPopulationFromPortfolioIdAsc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_FROM_PORTFOLIO_ID_ASC",
65841
+ AssetTransactionsStddevPopulationFromPortfolioIdDesc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_FROM_PORTFOLIO_ID_DESC",
65842
+ AssetTransactionsStddevPopulationFundingRoundAsc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_FUNDING_ROUND_ASC",
65843
+ AssetTransactionsStddevPopulationFundingRoundDesc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_FUNDING_ROUND_DESC",
65844
+ AssetTransactionsStddevPopulationIdAsc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_ID_ASC",
65845
+ AssetTransactionsStddevPopulationIdDesc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_ID_DESC",
65846
+ AssetTransactionsStddevPopulationInstructionIdAsc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_INSTRUCTION_ID_ASC",
65847
+ AssetTransactionsStddevPopulationInstructionIdDesc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_INSTRUCTION_ID_DESC",
65848
+ AssetTransactionsStddevPopulationInstructionMemoAsc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_INSTRUCTION_MEMO_ASC",
65849
+ AssetTransactionsStddevPopulationInstructionMemoDesc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_INSTRUCTION_MEMO_DESC",
65850
+ AssetTransactionsStddevPopulationNftIdsAsc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_NFT_IDS_ASC",
65851
+ AssetTransactionsStddevPopulationNftIdsDesc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_NFT_IDS_DESC",
65852
+ AssetTransactionsStddevPopulationToPortfolioIdAsc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_TO_PORTFOLIO_ID_ASC",
65853
+ AssetTransactionsStddevPopulationToPortfolioIdDesc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_TO_PORTFOLIO_ID_DESC",
65854
+ AssetTransactionsStddevPopulationUpdatedAtAsc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_UPDATED_AT_ASC",
65855
+ AssetTransactionsStddevPopulationUpdatedAtDesc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_UPDATED_AT_DESC",
65856
+ AssetTransactionsStddevPopulationUpdatedBlockIdAsc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC",
65857
+ AssetTransactionsStddevPopulationUpdatedBlockIdDesc = "ASSET_TRANSACTIONS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC",
65858
+ AssetTransactionsStddevSampleAmountAsc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_AMOUNT_ASC",
65859
+ AssetTransactionsStddevSampleAmountDesc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_AMOUNT_DESC",
65860
+ AssetTransactionsStddevSampleAssetIdAsc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_ASSET_ID_ASC",
65861
+ AssetTransactionsStddevSampleAssetIdDesc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_ASSET_ID_DESC",
65862
+ AssetTransactionsStddevSampleCreatedAtAsc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_CREATED_AT_ASC",
65863
+ AssetTransactionsStddevSampleCreatedAtDesc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_CREATED_AT_DESC",
65864
+ AssetTransactionsStddevSampleCreatedBlockIdAsc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC",
65865
+ AssetTransactionsStddevSampleCreatedBlockIdDesc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC",
65866
+ AssetTransactionsStddevSampleDatetimeAsc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_DATETIME_ASC",
65867
+ AssetTransactionsStddevSampleDatetimeDesc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_DATETIME_DESC",
65868
+ AssetTransactionsStddevSampleEventIdxAsc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_EVENT_IDX_ASC",
65869
+ AssetTransactionsStddevSampleEventIdxDesc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_EVENT_IDX_DESC",
65870
+ AssetTransactionsStddevSampleEventIdAsc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_EVENT_ID_ASC",
65871
+ AssetTransactionsStddevSampleEventIdDesc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_EVENT_ID_DESC",
65872
+ AssetTransactionsStddevSampleExtrinsicIdxAsc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_EXTRINSIC_IDX_ASC",
65873
+ AssetTransactionsStddevSampleExtrinsicIdxDesc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_EXTRINSIC_IDX_DESC",
65874
+ AssetTransactionsStddevSampleFromPortfolioIdAsc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_FROM_PORTFOLIO_ID_ASC",
65875
+ AssetTransactionsStddevSampleFromPortfolioIdDesc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_FROM_PORTFOLIO_ID_DESC",
65876
+ AssetTransactionsStddevSampleFundingRoundAsc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_FUNDING_ROUND_ASC",
65877
+ AssetTransactionsStddevSampleFundingRoundDesc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_FUNDING_ROUND_DESC",
65878
+ AssetTransactionsStddevSampleIdAsc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_ID_ASC",
65879
+ AssetTransactionsStddevSampleIdDesc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_ID_DESC",
65880
+ AssetTransactionsStddevSampleInstructionIdAsc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_INSTRUCTION_ID_ASC",
65881
+ AssetTransactionsStddevSampleInstructionIdDesc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_INSTRUCTION_ID_DESC",
65882
+ AssetTransactionsStddevSampleInstructionMemoAsc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_INSTRUCTION_MEMO_ASC",
65883
+ AssetTransactionsStddevSampleInstructionMemoDesc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_INSTRUCTION_MEMO_DESC",
65884
+ AssetTransactionsStddevSampleNftIdsAsc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_NFT_IDS_ASC",
65885
+ AssetTransactionsStddevSampleNftIdsDesc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_NFT_IDS_DESC",
65886
+ AssetTransactionsStddevSampleToPortfolioIdAsc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_TO_PORTFOLIO_ID_ASC",
65887
+ AssetTransactionsStddevSampleToPortfolioIdDesc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_TO_PORTFOLIO_ID_DESC",
65888
+ AssetTransactionsStddevSampleUpdatedAtAsc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_UPDATED_AT_ASC",
65889
+ AssetTransactionsStddevSampleUpdatedAtDesc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_UPDATED_AT_DESC",
65890
+ AssetTransactionsStddevSampleUpdatedBlockIdAsc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC",
65891
+ AssetTransactionsStddevSampleUpdatedBlockIdDesc = "ASSET_TRANSACTIONS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC",
65892
+ AssetTransactionsSumAmountAsc = "ASSET_TRANSACTIONS_SUM_AMOUNT_ASC",
65893
+ AssetTransactionsSumAmountDesc = "ASSET_TRANSACTIONS_SUM_AMOUNT_DESC",
65894
+ AssetTransactionsSumAssetIdAsc = "ASSET_TRANSACTIONS_SUM_ASSET_ID_ASC",
65895
+ AssetTransactionsSumAssetIdDesc = "ASSET_TRANSACTIONS_SUM_ASSET_ID_DESC",
65896
+ AssetTransactionsSumCreatedAtAsc = "ASSET_TRANSACTIONS_SUM_CREATED_AT_ASC",
65897
+ AssetTransactionsSumCreatedAtDesc = "ASSET_TRANSACTIONS_SUM_CREATED_AT_DESC",
65898
+ AssetTransactionsSumCreatedBlockIdAsc = "ASSET_TRANSACTIONS_SUM_CREATED_BLOCK_ID_ASC",
65899
+ AssetTransactionsSumCreatedBlockIdDesc = "ASSET_TRANSACTIONS_SUM_CREATED_BLOCK_ID_DESC",
65900
+ AssetTransactionsSumDatetimeAsc = "ASSET_TRANSACTIONS_SUM_DATETIME_ASC",
65901
+ AssetTransactionsSumDatetimeDesc = "ASSET_TRANSACTIONS_SUM_DATETIME_DESC",
65902
+ AssetTransactionsSumEventIdxAsc = "ASSET_TRANSACTIONS_SUM_EVENT_IDX_ASC",
65903
+ AssetTransactionsSumEventIdxDesc = "ASSET_TRANSACTIONS_SUM_EVENT_IDX_DESC",
65904
+ AssetTransactionsSumEventIdAsc = "ASSET_TRANSACTIONS_SUM_EVENT_ID_ASC",
65905
+ AssetTransactionsSumEventIdDesc = "ASSET_TRANSACTIONS_SUM_EVENT_ID_DESC",
65906
+ AssetTransactionsSumExtrinsicIdxAsc = "ASSET_TRANSACTIONS_SUM_EXTRINSIC_IDX_ASC",
65907
+ AssetTransactionsSumExtrinsicIdxDesc = "ASSET_TRANSACTIONS_SUM_EXTRINSIC_IDX_DESC",
65908
+ AssetTransactionsSumFromPortfolioIdAsc = "ASSET_TRANSACTIONS_SUM_FROM_PORTFOLIO_ID_ASC",
65909
+ AssetTransactionsSumFromPortfolioIdDesc = "ASSET_TRANSACTIONS_SUM_FROM_PORTFOLIO_ID_DESC",
65910
+ AssetTransactionsSumFundingRoundAsc = "ASSET_TRANSACTIONS_SUM_FUNDING_ROUND_ASC",
65911
+ AssetTransactionsSumFundingRoundDesc = "ASSET_TRANSACTIONS_SUM_FUNDING_ROUND_DESC",
65912
+ AssetTransactionsSumIdAsc = "ASSET_TRANSACTIONS_SUM_ID_ASC",
65913
+ AssetTransactionsSumIdDesc = "ASSET_TRANSACTIONS_SUM_ID_DESC",
65914
+ AssetTransactionsSumInstructionIdAsc = "ASSET_TRANSACTIONS_SUM_INSTRUCTION_ID_ASC",
65915
+ AssetTransactionsSumInstructionIdDesc = "ASSET_TRANSACTIONS_SUM_INSTRUCTION_ID_DESC",
65916
+ AssetTransactionsSumInstructionMemoAsc = "ASSET_TRANSACTIONS_SUM_INSTRUCTION_MEMO_ASC",
65917
+ AssetTransactionsSumInstructionMemoDesc = "ASSET_TRANSACTIONS_SUM_INSTRUCTION_MEMO_DESC",
65918
+ AssetTransactionsSumNftIdsAsc = "ASSET_TRANSACTIONS_SUM_NFT_IDS_ASC",
65919
+ AssetTransactionsSumNftIdsDesc = "ASSET_TRANSACTIONS_SUM_NFT_IDS_DESC",
65920
+ AssetTransactionsSumToPortfolioIdAsc = "ASSET_TRANSACTIONS_SUM_TO_PORTFOLIO_ID_ASC",
65921
+ AssetTransactionsSumToPortfolioIdDesc = "ASSET_TRANSACTIONS_SUM_TO_PORTFOLIO_ID_DESC",
65922
+ AssetTransactionsSumUpdatedAtAsc = "ASSET_TRANSACTIONS_SUM_UPDATED_AT_ASC",
65923
+ AssetTransactionsSumUpdatedAtDesc = "ASSET_TRANSACTIONS_SUM_UPDATED_AT_DESC",
65924
+ AssetTransactionsSumUpdatedBlockIdAsc = "ASSET_TRANSACTIONS_SUM_UPDATED_BLOCK_ID_ASC",
65925
+ AssetTransactionsSumUpdatedBlockIdDesc = "ASSET_TRANSACTIONS_SUM_UPDATED_BLOCK_ID_DESC",
65926
+ AssetTransactionsVariancePopulationAmountAsc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_AMOUNT_ASC",
65927
+ AssetTransactionsVariancePopulationAmountDesc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_AMOUNT_DESC",
65928
+ AssetTransactionsVariancePopulationAssetIdAsc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_ASSET_ID_ASC",
65929
+ AssetTransactionsVariancePopulationAssetIdDesc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_ASSET_ID_DESC",
65930
+ AssetTransactionsVariancePopulationCreatedAtAsc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_CREATED_AT_ASC",
65931
+ AssetTransactionsVariancePopulationCreatedAtDesc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_CREATED_AT_DESC",
65932
+ AssetTransactionsVariancePopulationCreatedBlockIdAsc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC",
65933
+ AssetTransactionsVariancePopulationCreatedBlockIdDesc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC",
65934
+ AssetTransactionsVariancePopulationDatetimeAsc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_DATETIME_ASC",
65935
+ AssetTransactionsVariancePopulationDatetimeDesc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_DATETIME_DESC",
65936
+ AssetTransactionsVariancePopulationEventIdxAsc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_EVENT_IDX_ASC",
65937
+ AssetTransactionsVariancePopulationEventIdxDesc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_EVENT_IDX_DESC",
65938
+ AssetTransactionsVariancePopulationEventIdAsc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_EVENT_ID_ASC",
65939
+ AssetTransactionsVariancePopulationEventIdDesc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_EVENT_ID_DESC",
65940
+ AssetTransactionsVariancePopulationExtrinsicIdxAsc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_EXTRINSIC_IDX_ASC",
65941
+ AssetTransactionsVariancePopulationExtrinsicIdxDesc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_EXTRINSIC_IDX_DESC",
65942
+ AssetTransactionsVariancePopulationFromPortfolioIdAsc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_FROM_PORTFOLIO_ID_ASC",
65943
+ AssetTransactionsVariancePopulationFromPortfolioIdDesc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_FROM_PORTFOLIO_ID_DESC",
65944
+ AssetTransactionsVariancePopulationFundingRoundAsc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_FUNDING_ROUND_ASC",
65945
+ AssetTransactionsVariancePopulationFundingRoundDesc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_FUNDING_ROUND_DESC",
65946
+ AssetTransactionsVariancePopulationIdAsc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_ID_ASC",
65947
+ AssetTransactionsVariancePopulationIdDesc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_ID_DESC",
65948
+ AssetTransactionsVariancePopulationInstructionIdAsc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_INSTRUCTION_ID_ASC",
65949
+ AssetTransactionsVariancePopulationInstructionIdDesc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_INSTRUCTION_ID_DESC",
65950
+ AssetTransactionsVariancePopulationInstructionMemoAsc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_INSTRUCTION_MEMO_ASC",
65951
+ AssetTransactionsVariancePopulationInstructionMemoDesc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_INSTRUCTION_MEMO_DESC",
65952
+ AssetTransactionsVariancePopulationNftIdsAsc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_NFT_IDS_ASC",
65953
+ AssetTransactionsVariancePopulationNftIdsDesc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_NFT_IDS_DESC",
65954
+ AssetTransactionsVariancePopulationToPortfolioIdAsc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_TO_PORTFOLIO_ID_ASC",
65955
+ AssetTransactionsVariancePopulationToPortfolioIdDesc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_TO_PORTFOLIO_ID_DESC",
65956
+ AssetTransactionsVariancePopulationUpdatedAtAsc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_UPDATED_AT_ASC",
65957
+ AssetTransactionsVariancePopulationUpdatedAtDesc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_UPDATED_AT_DESC",
65958
+ AssetTransactionsVariancePopulationUpdatedBlockIdAsc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC",
65959
+ AssetTransactionsVariancePopulationUpdatedBlockIdDesc = "ASSET_TRANSACTIONS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC",
65960
+ AssetTransactionsVarianceSampleAmountAsc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_AMOUNT_ASC",
65961
+ AssetTransactionsVarianceSampleAmountDesc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_AMOUNT_DESC",
65962
+ AssetTransactionsVarianceSampleAssetIdAsc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_ASSET_ID_ASC",
65963
+ AssetTransactionsVarianceSampleAssetIdDesc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_ASSET_ID_DESC",
65964
+ AssetTransactionsVarianceSampleCreatedAtAsc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_CREATED_AT_ASC",
65965
+ AssetTransactionsVarianceSampleCreatedAtDesc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_CREATED_AT_DESC",
65966
+ AssetTransactionsVarianceSampleCreatedBlockIdAsc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC",
65967
+ AssetTransactionsVarianceSampleCreatedBlockIdDesc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC",
65968
+ AssetTransactionsVarianceSampleDatetimeAsc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_DATETIME_ASC",
65969
+ AssetTransactionsVarianceSampleDatetimeDesc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_DATETIME_DESC",
65970
+ AssetTransactionsVarianceSampleEventIdxAsc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_EVENT_IDX_ASC",
65971
+ AssetTransactionsVarianceSampleEventIdxDesc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_EVENT_IDX_DESC",
65972
+ AssetTransactionsVarianceSampleEventIdAsc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_EVENT_ID_ASC",
65973
+ AssetTransactionsVarianceSampleEventIdDesc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_EVENT_ID_DESC",
65974
+ AssetTransactionsVarianceSampleExtrinsicIdxAsc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_EXTRINSIC_IDX_ASC",
65975
+ AssetTransactionsVarianceSampleExtrinsicIdxDesc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_EXTRINSIC_IDX_DESC",
65976
+ AssetTransactionsVarianceSampleFromPortfolioIdAsc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_FROM_PORTFOLIO_ID_ASC",
65977
+ AssetTransactionsVarianceSampleFromPortfolioIdDesc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_FROM_PORTFOLIO_ID_DESC",
65978
+ AssetTransactionsVarianceSampleFundingRoundAsc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_FUNDING_ROUND_ASC",
65979
+ AssetTransactionsVarianceSampleFundingRoundDesc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_FUNDING_ROUND_DESC",
65980
+ AssetTransactionsVarianceSampleIdAsc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_ID_ASC",
65981
+ AssetTransactionsVarianceSampleIdDesc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_ID_DESC",
65982
+ AssetTransactionsVarianceSampleInstructionIdAsc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_INSTRUCTION_ID_ASC",
65983
+ AssetTransactionsVarianceSampleInstructionIdDesc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_INSTRUCTION_ID_DESC",
65984
+ AssetTransactionsVarianceSampleInstructionMemoAsc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_INSTRUCTION_MEMO_ASC",
65985
+ AssetTransactionsVarianceSampleInstructionMemoDesc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_INSTRUCTION_MEMO_DESC",
65986
+ AssetTransactionsVarianceSampleNftIdsAsc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_NFT_IDS_ASC",
65987
+ AssetTransactionsVarianceSampleNftIdsDesc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_NFT_IDS_DESC",
65988
+ AssetTransactionsVarianceSampleToPortfolioIdAsc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_TO_PORTFOLIO_ID_ASC",
65989
+ AssetTransactionsVarianceSampleToPortfolioIdDesc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_TO_PORTFOLIO_ID_DESC",
65990
+ AssetTransactionsVarianceSampleUpdatedAtAsc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_UPDATED_AT_ASC",
65991
+ AssetTransactionsVarianceSampleUpdatedAtDesc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_UPDATED_AT_DESC",
65992
+ AssetTransactionsVarianceSampleUpdatedBlockIdAsc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC",
65993
+ AssetTransactionsVarianceSampleUpdatedBlockIdDesc = "ASSET_TRANSACTIONS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC",
65059
65994
  CreatedAtAsc = "CREATED_AT_ASC",
65060
65995
  CreatedAtDesc = "CREATED_AT_DESC",
65061
65996
  CreatedBlockIdAsc = "CREATED_BLOCK_ID_ASC",
@@ -71057,6 +71992,10 @@ export declare type Portfolio = Node & {
71057
71992
  identity?: Maybe<Identity>;
71058
71993
  identityId: Scalars['String']['output'];
71059
71994
  /** Reads and enables pagination through a set of `Instruction`. */
71995
+ instructionsByAssetTransactionFromPortfolioIdAndInstructionId: PortfolioInstructionsByAssetTransactionFromPortfolioIdAndInstructionIdManyToManyConnection;
71996
+ /** Reads and enables pagination through a set of `Instruction`. */
71997
+ instructionsByAssetTransactionToPortfolioIdAndInstructionId: PortfolioInstructionsByAssetTransactionToPortfolioIdAndInstructionIdManyToManyConnection;
71998
+ /** Reads and enables pagination through a set of `Instruction`. */
71060
71999
  instructionsByLegFromIdAndInstructionId: PortfolioInstructionsByLegFromIdAndInstructionIdManyToManyConnection;
71061
72000
  /** Reads and enables pagination through a set of `Instruction`. */
71062
72001
  instructionsByLegToIdAndInstructionId: PortfolioInstructionsByLegToIdAndInstructionIdManyToManyConnection;
@@ -71570,6 +72509,36 @@ export declare type PortfolioIdentitiesByStoRaisingPortfolioIdAndCreatorIdArgs =
71570
72509
  offset?: InputMaybe<Scalars['Int']['input']>;
71571
72510
  orderBy?: InputMaybe<Array<IdentitiesOrderBy>>;
71572
72511
  };
72512
+ /**
72513
+ * Represents a grouping of Assets held by an Identity. Particular accounts maybe authorized only over certain portfolios
72514
+ *
72515
+ * Note: identities will always have a default Portfolio (id = 0)
72516
+ */
72517
+ export declare type PortfolioInstructionsByAssetTransactionFromPortfolioIdAndInstructionIdArgs = {
72518
+ after?: InputMaybe<Scalars['Cursor']['input']>;
72519
+ before?: InputMaybe<Scalars['Cursor']['input']>;
72520
+ distinct?: InputMaybe<Array<InputMaybe<Instructions_Distinct_Enum>>>;
72521
+ filter?: InputMaybe<InstructionFilter>;
72522
+ first?: InputMaybe<Scalars['Int']['input']>;
72523
+ last?: InputMaybe<Scalars['Int']['input']>;
72524
+ offset?: InputMaybe<Scalars['Int']['input']>;
72525
+ orderBy?: InputMaybe<Array<InstructionsOrderBy>>;
72526
+ };
72527
+ /**
72528
+ * Represents a grouping of Assets held by an Identity. Particular accounts maybe authorized only over certain portfolios
72529
+ *
72530
+ * Note: identities will always have a default Portfolio (id = 0)
72531
+ */
72532
+ export declare type PortfolioInstructionsByAssetTransactionToPortfolioIdAndInstructionIdArgs = {
72533
+ after?: InputMaybe<Scalars['Cursor']['input']>;
72534
+ before?: InputMaybe<Scalars['Cursor']['input']>;
72535
+ distinct?: InputMaybe<Array<InputMaybe<Instructions_Distinct_Enum>>>;
72536
+ filter?: InputMaybe<InstructionFilter>;
72537
+ first?: InputMaybe<Scalars['Int']['input']>;
72538
+ last?: InputMaybe<Scalars['Int']['input']>;
72539
+ offset?: InputMaybe<Scalars['Int']['input']>;
72540
+ orderBy?: InputMaybe<Array<InstructionsOrderBy>>;
72541
+ };
71573
72542
  /**
71574
72543
  * Represents a grouping of Assets held by an Identity. Particular accounts maybe authorized only over certain portfolios
71575
72544
  *
@@ -73217,6 +74186,90 @@ export declare type PortfolioIdentitiesByStoRaisingPortfolioIdAndCreatorIdManyTo
73217
74186
  offset?: InputMaybe<Scalars['Int']['input']>;
73218
74187
  orderBy?: InputMaybe<Array<StosOrderBy>>;
73219
74188
  };
74189
+ /** A connection to a list of `Instruction` values, with data from `AssetTransaction`. */
74190
+ export declare type PortfolioInstructionsByAssetTransactionFromPortfolioIdAndInstructionIdManyToManyConnection = {
74191
+ __typename?: 'PortfolioInstructionsByAssetTransactionFromPortfolioIdAndInstructionIdManyToManyConnection';
74192
+ /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */
74193
+ aggregates?: Maybe<InstructionAggregates>;
74194
+ /** A list of edges which contains the `Instruction`, info from the `AssetTransaction`, and the cursor to aid in pagination. */
74195
+ edges: Array<PortfolioInstructionsByAssetTransactionFromPortfolioIdAndInstructionIdManyToManyEdge>;
74196
+ /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */
74197
+ groupedAggregates?: Maybe<Array<InstructionAggregates>>;
74198
+ /** A list of `Instruction` objects. */
74199
+ nodes: Array<Maybe<Instruction>>;
74200
+ /** Information to aid in pagination. */
74201
+ pageInfo: PageInfo;
74202
+ /** The count of *all* `Instruction` you could get from the connection. */
74203
+ totalCount: Scalars['Int']['output'];
74204
+ };
74205
+ /** A connection to a list of `Instruction` values, with data from `AssetTransaction`. */
74206
+ export declare type PortfolioInstructionsByAssetTransactionFromPortfolioIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = {
74207
+ groupBy: Array<InstructionsGroupBy>;
74208
+ having?: InputMaybe<InstructionsHavingInput>;
74209
+ };
74210
+ /** A `Instruction` edge in the connection, with data from `AssetTransaction`. */
74211
+ export declare type PortfolioInstructionsByAssetTransactionFromPortfolioIdAndInstructionIdManyToManyEdge = {
74212
+ __typename?: 'PortfolioInstructionsByAssetTransactionFromPortfolioIdAndInstructionIdManyToManyEdge';
74213
+ /** Reads and enables pagination through a set of `AssetTransaction`. */
74214
+ assetTransactions: AssetTransactionsConnection;
74215
+ /** A cursor for use in pagination. */
74216
+ cursor?: Maybe<Scalars['Cursor']['output']>;
74217
+ /** The `Instruction` at the end of the edge. */
74218
+ node?: Maybe<Instruction>;
74219
+ };
74220
+ /** A `Instruction` edge in the connection, with data from `AssetTransaction`. */
74221
+ export declare type PortfolioInstructionsByAssetTransactionFromPortfolioIdAndInstructionIdManyToManyEdgeAssetTransactionsArgs = {
74222
+ after?: InputMaybe<Scalars['Cursor']['input']>;
74223
+ before?: InputMaybe<Scalars['Cursor']['input']>;
74224
+ distinct?: InputMaybe<Array<InputMaybe<Asset_Transactions_Distinct_Enum>>>;
74225
+ filter?: InputMaybe<AssetTransactionFilter>;
74226
+ first?: InputMaybe<Scalars['Int']['input']>;
74227
+ last?: InputMaybe<Scalars['Int']['input']>;
74228
+ offset?: InputMaybe<Scalars['Int']['input']>;
74229
+ orderBy?: InputMaybe<Array<AssetTransactionsOrderBy>>;
74230
+ };
74231
+ /** A connection to a list of `Instruction` values, with data from `AssetTransaction`. */
74232
+ export declare type PortfolioInstructionsByAssetTransactionToPortfolioIdAndInstructionIdManyToManyConnection = {
74233
+ __typename?: 'PortfolioInstructionsByAssetTransactionToPortfolioIdAndInstructionIdManyToManyConnection';
74234
+ /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */
74235
+ aggregates?: Maybe<InstructionAggregates>;
74236
+ /** A list of edges which contains the `Instruction`, info from the `AssetTransaction`, and the cursor to aid in pagination. */
74237
+ edges: Array<PortfolioInstructionsByAssetTransactionToPortfolioIdAndInstructionIdManyToManyEdge>;
74238
+ /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */
74239
+ groupedAggregates?: Maybe<Array<InstructionAggregates>>;
74240
+ /** A list of `Instruction` objects. */
74241
+ nodes: Array<Maybe<Instruction>>;
74242
+ /** Information to aid in pagination. */
74243
+ pageInfo: PageInfo;
74244
+ /** The count of *all* `Instruction` you could get from the connection. */
74245
+ totalCount: Scalars['Int']['output'];
74246
+ };
74247
+ /** A connection to a list of `Instruction` values, with data from `AssetTransaction`. */
74248
+ export declare type PortfolioInstructionsByAssetTransactionToPortfolioIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = {
74249
+ groupBy: Array<InstructionsGroupBy>;
74250
+ having?: InputMaybe<InstructionsHavingInput>;
74251
+ };
74252
+ /** A `Instruction` edge in the connection, with data from `AssetTransaction`. */
74253
+ export declare type PortfolioInstructionsByAssetTransactionToPortfolioIdAndInstructionIdManyToManyEdge = {
74254
+ __typename?: 'PortfolioInstructionsByAssetTransactionToPortfolioIdAndInstructionIdManyToManyEdge';
74255
+ /** Reads and enables pagination through a set of `AssetTransaction`. */
74256
+ assetTransactions: AssetTransactionsConnection;
74257
+ /** A cursor for use in pagination. */
74258
+ cursor?: Maybe<Scalars['Cursor']['output']>;
74259
+ /** The `Instruction` at the end of the edge. */
74260
+ node?: Maybe<Instruction>;
74261
+ };
74262
+ /** A `Instruction` edge in the connection, with data from `AssetTransaction`. */
74263
+ export declare type PortfolioInstructionsByAssetTransactionToPortfolioIdAndInstructionIdManyToManyEdgeAssetTransactionsArgs = {
74264
+ after?: InputMaybe<Scalars['Cursor']['input']>;
74265
+ before?: InputMaybe<Scalars['Cursor']['input']>;
74266
+ distinct?: InputMaybe<Array<InputMaybe<Asset_Transactions_Distinct_Enum>>>;
74267
+ filter?: InputMaybe<AssetTransactionFilter>;
74268
+ first?: InputMaybe<Scalars['Int']['input']>;
74269
+ last?: InputMaybe<Scalars['Int']['input']>;
74270
+ offset?: InputMaybe<Scalars['Int']['input']>;
74271
+ orderBy?: InputMaybe<Array<AssetTransactionsOrderBy>>;
74272
+ };
73220
74273
  /** A connection to a list of `Instruction` values, with data from `Leg`. */
73221
74274
  export declare type PortfolioInstructionsByLegFromIdAndInstructionIdManyToManyConnection = {
73222
74275
  __typename?: 'PortfolioInstructionsByLegFromIdAndInstructionIdManyToManyConnection';
@@ -74487,6 +75540,10 @@ export declare enum PortfoliosOrderBy {
74487
75540
  AssetTransactionsByFromPortfolioIdAverageFundingRoundDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_FUNDING_ROUND_DESC",
74488
75541
  AssetTransactionsByFromPortfolioIdAverageIdAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_ID_ASC",
74489
75542
  AssetTransactionsByFromPortfolioIdAverageIdDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_ID_DESC",
75543
+ AssetTransactionsByFromPortfolioIdAverageInstructionIdAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_INSTRUCTION_ID_ASC",
75544
+ AssetTransactionsByFromPortfolioIdAverageInstructionIdDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_INSTRUCTION_ID_DESC",
75545
+ AssetTransactionsByFromPortfolioIdAverageInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_INSTRUCTION_MEMO_ASC",
75546
+ AssetTransactionsByFromPortfolioIdAverageInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_INSTRUCTION_MEMO_DESC",
74490
75547
  AssetTransactionsByFromPortfolioIdAverageNftIdsAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_NFT_IDS_ASC",
74491
75548
  AssetTransactionsByFromPortfolioIdAverageNftIdsDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_NFT_IDS_DESC",
74492
75549
  AssetTransactionsByFromPortfolioIdAverageToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_TO_PORTFOLIO_ID_ASC",
@@ -74519,6 +75576,10 @@ export declare enum PortfoliosOrderBy {
74519
75576
  AssetTransactionsByFromPortfolioIdDistinctCountFundingRoundDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_FUNDING_ROUND_DESC",
74520
75577
  AssetTransactionsByFromPortfolioIdDistinctCountIdAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_ID_ASC",
74521
75578
  AssetTransactionsByFromPortfolioIdDistinctCountIdDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_ID_DESC",
75579
+ AssetTransactionsByFromPortfolioIdDistinctCountInstructionIdAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_INSTRUCTION_ID_ASC",
75580
+ AssetTransactionsByFromPortfolioIdDistinctCountInstructionIdDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_INSTRUCTION_ID_DESC",
75581
+ AssetTransactionsByFromPortfolioIdDistinctCountInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_INSTRUCTION_MEMO_ASC",
75582
+ AssetTransactionsByFromPortfolioIdDistinctCountInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_INSTRUCTION_MEMO_DESC",
74522
75583
  AssetTransactionsByFromPortfolioIdDistinctCountNftIdsAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_NFT_IDS_ASC",
74523
75584
  AssetTransactionsByFromPortfolioIdDistinctCountNftIdsDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_NFT_IDS_DESC",
74524
75585
  AssetTransactionsByFromPortfolioIdDistinctCountToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_TO_PORTFOLIO_ID_ASC",
@@ -74549,6 +75610,10 @@ export declare enum PortfoliosOrderBy {
74549
75610
  AssetTransactionsByFromPortfolioIdMaxFundingRoundDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_FUNDING_ROUND_DESC",
74550
75611
  AssetTransactionsByFromPortfolioIdMaxIdAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_ID_ASC",
74551
75612
  AssetTransactionsByFromPortfolioIdMaxIdDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_ID_DESC",
75613
+ AssetTransactionsByFromPortfolioIdMaxInstructionIdAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_INSTRUCTION_ID_ASC",
75614
+ AssetTransactionsByFromPortfolioIdMaxInstructionIdDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_INSTRUCTION_ID_DESC",
75615
+ AssetTransactionsByFromPortfolioIdMaxInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_INSTRUCTION_MEMO_ASC",
75616
+ AssetTransactionsByFromPortfolioIdMaxInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_INSTRUCTION_MEMO_DESC",
74552
75617
  AssetTransactionsByFromPortfolioIdMaxNftIdsAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_NFT_IDS_ASC",
74553
75618
  AssetTransactionsByFromPortfolioIdMaxNftIdsDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_NFT_IDS_DESC",
74554
75619
  AssetTransactionsByFromPortfolioIdMaxToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_TO_PORTFOLIO_ID_ASC",
@@ -74579,6 +75644,10 @@ export declare enum PortfoliosOrderBy {
74579
75644
  AssetTransactionsByFromPortfolioIdMinFundingRoundDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_FUNDING_ROUND_DESC",
74580
75645
  AssetTransactionsByFromPortfolioIdMinIdAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_ID_ASC",
74581
75646
  AssetTransactionsByFromPortfolioIdMinIdDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_ID_DESC",
75647
+ AssetTransactionsByFromPortfolioIdMinInstructionIdAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_INSTRUCTION_ID_ASC",
75648
+ AssetTransactionsByFromPortfolioIdMinInstructionIdDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_INSTRUCTION_ID_DESC",
75649
+ AssetTransactionsByFromPortfolioIdMinInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_INSTRUCTION_MEMO_ASC",
75650
+ AssetTransactionsByFromPortfolioIdMinInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_INSTRUCTION_MEMO_DESC",
74582
75651
  AssetTransactionsByFromPortfolioIdMinNftIdsAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_NFT_IDS_ASC",
74583
75652
  AssetTransactionsByFromPortfolioIdMinNftIdsDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_NFT_IDS_DESC",
74584
75653
  AssetTransactionsByFromPortfolioIdMinToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_TO_PORTFOLIO_ID_ASC",
@@ -74609,6 +75678,10 @@ export declare enum PortfoliosOrderBy {
74609
75678
  AssetTransactionsByFromPortfolioIdStddevPopulationFundingRoundDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_FUNDING_ROUND_DESC",
74610
75679
  AssetTransactionsByFromPortfolioIdStddevPopulationIdAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_ID_ASC",
74611
75680
  AssetTransactionsByFromPortfolioIdStddevPopulationIdDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_ID_DESC",
75681
+ AssetTransactionsByFromPortfolioIdStddevPopulationInstructionIdAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_INSTRUCTION_ID_ASC",
75682
+ AssetTransactionsByFromPortfolioIdStddevPopulationInstructionIdDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_INSTRUCTION_ID_DESC",
75683
+ AssetTransactionsByFromPortfolioIdStddevPopulationInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_INSTRUCTION_MEMO_ASC",
75684
+ AssetTransactionsByFromPortfolioIdStddevPopulationInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_INSTRUCTION_MEMO_DESC",
74612
75685
  AssetTransactionsByFromPortfolioIdStddevPopulationNftIdsAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_NFT_IDS_ASC",
74613
75686
  AssetTransactionsByFromPortfolioIdStddevPopulationNftIdsDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_NFT_IDS_DESC",
74614
75687
  AssetTransactionsByFromPortfolioIdStddevPopulationToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_TO_PORTFOLIO_ID_ASC",
@@ -74639,6 +75712,10 @@ export declare enum PortfoliosOrderBy {
74639
75712
  AssetTransactionsByFromPortfolioIdStddevSampleFundingRoundDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_FUNDING_ROUND_DESC",
74640
75713
  AssetTransactionsByFromPortfolioIdStddevSampleIdAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_ID_ASC",
74641
75714
  AssetTransactionsByFromPortfolioIdStddevSampleIdDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_ID_DESC",
75715
+ AssetTransactionsByFromPortfolioIdStddevSampleInstructionIdAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_INSTRUCTION_ID_ASC",
75716
+ AssetTransactionsByFromPortfolioIdStddevSampleInstructionIdDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_INSTRUCTION_ID_DESC",
75717
+ AssetTransactionsByFromPortfolioIdStddevSampleInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_INSTRUCTION_MEMO_ASC",
75718
+ AssetTransactionsByFromPortfolioIdStddevSampleInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_INSTRUCTION_MEMO_DESC",
74642
75719
  AssetTransactionsByFromPortfolioIdStddevSampleNftIdsAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_NFT_IDS_ASC",
74643
75720
  AssetTransactionsByFromPortfolioIdStddevSampleNftIdsDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_NFT_IDS_DESC",
74644
75721
  AssetTransactionsByFromPortfolioIdStddevSampleToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_TO_PORTFOLIO_ID_ASC",
@@ -74669,6 +75746,10 @@ export declare enum PortfoliosOrderBy {
74669
75746
  AssetTransactionsByFromPortfolioIdSumFundingRoundDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_FUNDING_ROUND_DESC",
74670
75747
  AssetTransactionsByFromPortfolioIdSumIdAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_ID_ASC",
74671
75748
  AssetTransactionsByFromPortfolioIdSumIdDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_ID_DESC",
75749
+ AssetTransactionsByFromPortfolioIdSumInstructionIdAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_INSTRUCTION_ID_ASC",
75750
+ AssetTransactionsByFromPortfolioIdSumInstructionIdDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_INSTRUCTION_ID_DESC",
75751
+ AssetTransactionsByFromPortfolioIdSumInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_INSTRUCTION_MEMO_ASC",
75752
+ AssetTransactionsByFromPortfolioIdSumInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_INSTRUCTION_MEMO_DESC",
74672
75753
  AssetTransactionsByFromPortfolioIdSumNftIdsAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_NFT_IDS_ASC",
74673
75754
  AssetTransactionsByFromPortfolioIdSumNftIdsDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_NFT_IDS_DESC",
74674
75755
  AssetTransactionsByFromPortfolioIdSumToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_TO_PORTFOLIO_ID_ASC",
@@ -74699,6 +75780,10 @@ export declare enum PortfoliosOrderBy {
74699
75780
  AssetTransactionsByFromPortfolioIdVariancePopulationFundingRoundDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_FUNDING_ROUND_DESC",
74700
75781
  AssetTransactionsByFromPortfolioIdVariancePopulationIdAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_ID_ASC",
74701
75782
  AssetTransactionsByFromPortfolioIdVariancePopulationIdDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_ID_DESC",
75783
+ AssetTransactionsByFromPortfolioIdVariancePopulationInstructionIdAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_INSTRUCTION_ID_ASC",
75784
+ AssetTransactionsByFromPortfolioIdVariancePopulationInstructionIdDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_INSTRUCTION_ID_DESC",
75785
+ AssetTransactionsByFromPortfolioIdVariancePopulationInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_INSTRUCTION_MEMO_ASC",
75786
+ AssetTransactionsByFromPortfolioIdVariancePopulationInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_INSTRUCTION_MEMO_DESC",
74702
75787
  AssetTransactionsByFromPortfolioIdVariancePopulationNftIdsAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_NFT_IDS_ASC",
74703
75788
  AssetTransactionsByFromPortfolioIdVariancePopulationNftIdsDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_NFT_IDS_DESC",
74704
75789
  AssetTransactionsByFromPortfolioIdVariancePopulationToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_TO_PORTFOLIO_ID_ASC",
@@ -74729,6 +75814,10 @@ export declare enum PortfoliosOrderBy {
74729
75814
  AssetTransactionsByFromPortfolioIdVarianceSampleFundingRoundDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_FUNDING_ROUND_DESC",
74730
75815
  AssetTransactionsByFromPortfolioIdVarianceSampleIdAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_ID_ASC",
74731
75816
  AssetTransactionsByFromPortfolioIdVarianceSampleIdDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_ID_DESC",
75817
+ AssetTransactionsByFromPortfolioIdVarianceSampleInstructionIdAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_INSTRUCTION_ID_ASC",
75818
+ AssetTransactionsByFromPortfolioIdVarianceSampleInstructionIdDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_INSTRUCTION_ID_DESC",
75819
+ AssetTransactionsByFromPortfolioIdVarianceSampleInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_INSTRUCTION_MEMO_ASC",
75820
+ AssetTransactionsByFromPortfolioIdVarianceSampleInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_INSTRUCTION_MEMO_DESC",
74732
75821
  AssetTransactionsByFromPortfolioIdVarianceSampleNftIdsAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_NFT_IDS_ASC",
74733
75822
  AssetTransactionsByFromPortfolioIdVarianceSampleNftIdsDesc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_NFT_IDS_DESC",
74734
75823
  AssetTransactionsByFromPortfolioIdVarianceSampleToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_TO_PORTFOLIO_ID_ASC",
@@ -74759,6 +75848,10 @@ export declare enum PortfoliosOrderBy {
74759
75848
  AssetTransactionsByToPortfolioIdAverageFundingRoundDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_FUNDING_ROUND_DESC",
74760
75849
  AssetTransactionsByToPortfolioIdAverageIdAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_ID_ASC",
74761
75850
  AssetTransactionsByToPortfolioIdAverageIdDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_ID_DESC",
75851
+ AssetTransactionsByToPortfolioIdAverageInstructionIdAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_INSTRUCTION_ID_ASC",
75852
+ AssetTransactionsByToPortfolioIdAverageInstructionIdDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_INSTRUCTION_ID_DESC",
75853
+ AssetTransactionsByToPortfolioIdAverageInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_INSTRUCTION_MEMO_ASC",
75854
+ AssetTransactionsByToPortfolioIdAverageInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_INSTRUCTION_MEMO_DESC",
74762
75855
  AssetTransactionsByToPortfolioIdAverageNftIdsAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_NFT_IDS_ASC",
74763
75856
  AssetTransactionsByToPortfolioIdAverageNftIdsDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_NFT_IDS_DESC",
74764
75857
  AssetTransactionsByToPortfolioIdAverageToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_TO_PORTFOLIO_ID_ASC",
@@ -74791,6 +75884,10 @@ export declare enum PortfoliosOrderBy {
74791
75884
  AssetTransactionsByToPortfolioIdDistinctCountFundingRoundDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_FUNDING_ROUND_DESC",
74792
75885
  AssetTransactionsByToPortfolioIdDistinctCountIdAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_ID_ASC",
74793
75886
  AssetTransactionsByToPortfolioIdDistinctCountIdDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_ID_DESC",
75887
+ AssetTransactionsByToPortfolioIdDistinctCountInstructionIdAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_INSTRUCTION_ID_ASC",
75888
+ AssetTransactionsByToPortfolioIdDistinctCountInstructionIdDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_INSTRUCTION_ID_DESC",
75889
+ AssetTransactionsByToPortfolioIdDistinctCountInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_INSTRUCTION_MEMO_ASC",
75890
+ AssetTransactionsByToPortfolioIdDistinctCountInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_INSTRUCTION_MEMO_DESC",
74794
75891
  AssetTransactionsByToPortfolioIdDistinctCountNftIdsAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_NFT_IDS_ASC",
74795
75892
  AssetTransactionsByToPortfolioIdDistinctCountNftIdsDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_NFT_IDS_DESC",
74796
75893
  AssetTransactionsByToPortfolioIdDistinctCountToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_TO_PORTFOLIO_ID_ASC",
@@ -74821,6 +75918,10 @@ export declare enum PortfoliosOrderBy {
74821
75918
  AssetTransactionsByToPortfolioIdMaxFundingRoundDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_FUNDING_ROUND_DESC",
74822
75919
  AssetTransactionsByToPortfolioIdMaxIdAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_ID_ASC",
74823
75920
  AssetTransactionsByToPortfolioIdMaxIdDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_ID_DESC",
75921
+ AssetTransactionsByToPortfolioIdMaxInstructionIdAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_INSTRUCTION_ID_ASC",
75922
+ AssetTransactionsByToPortfolioIdMaxInstructionIdDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_INSTRUCTION_ID_DESC",
75923
+ AssetTransactionsByToPortfolioIdMaxInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_INSTRUCTION_MEMO_ASC",
75924
+ AssetTransactionsByToPortfolioIdMaxInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_INSTRUCTION_MEMO_DESC",
74824
75925
  AssetTransactionsByToPortfolioIdMaxNftIdsAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_NFT_IDS_ASC",
74825
75926
  AssetTransactionsByToPortfolioIdMaxNftIdsDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_NFT_IDS_DESC",
74826
75927
  AssetTransactionsByToPortfolioIdMaxToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_TO_PORTFOLIO_ID_ASC",
@@ -74851,6 +75952,10 @@ export declare enum PortfoliosOrderBy {
74851
75952
  AssetTransactionsByToPortfolioIdMinFundingRoundDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_FUNDING_ROUND_DESC",
74852
75953
  AssetTransactionsByToPortfolioIdMinIdAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_ID_ASC",
74853
75954
  AssetTransactionsByToPortfolioIdMinIdDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_ID_DESC",
75955
+ AssetTransactionsByToPortfolioIdMinInstructionIdAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_INSTRUCTION_ID_ASC",
75956
+ AssetTransactionsByToPortfolioIdMinInstructionIdDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_INSTRUCTION_ID_DESC",
75957
+ AssetTransactionsByToPortfolioIdMinInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_INSTRUCTION_MEMO_ASC",
75958
+ AssetTransactionsByToPortfolioIdMinInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_INSTRUCTION_MEMO_DESC",
74854
75959
  AssetTransactionsByToPortfolioIdMinNftIdsAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_NFT_IDS_ASC",
74855
75960
  AssetTransactionsByToPortfolioIdMinNftIdsDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_NFT_IDS_DESC",
74856
75961
  AssetTransactionsByToPortfolioIdMinToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_TO_PORTFOLIO_ID_ASC",
@@ -74881,6 +75986,10 @@ export declare enum PortfoliosOrderBy {
74881
75986
  AssetTransactionsByToPortfolioIdStddevPopulationFundingRoundDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_FUNDING_ROUND_DESC",
74882
75987
  AssetTransactionsByToPortfolioIdStddevPopulationIdAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_ID_ASC",
74883
75988
  AssetTransactionsByToPortfolioIdStddevPopulationIdDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_ID_DESC",
75989
+ AssetTransactionsByToPortfolioIdStddevPopulationInstructionIdAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_INSTRUCTION_ID_ASC",
75990
+ AssetTransactionsByToPortfolioIdStddevPopulationInstructionIdDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_INSTRUCTION_ID_DESC",
75991
+ AssetTransactionsByToPortfolioIdStddevPopulationInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_INSTRUCTION_MEMO_ASC",
75992
+ AssetTransactionsByToPortfolioIdStddevPopulationInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_INSTRUCTION_MEMO_DESC",
74884
75993
  AssetTransactionsByToPortfolioIdStddevPopulationNftIdsAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_NFT_IDS_ASC",
74885
75994
  AssetTransactionsByToPortfolioIdStddevPopulationNftIdsDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_NFT_IDS_DESC",
74886
75995
  AssetTransactionsByToPortfolioIdStddevPopulationToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_TO_PORTFOLIO_ID_ASC",
@@ -74911,6 +76020,10 @@ export declare enum PortfoliosOrderBy {
74911
76020
  AssetTransactionsByToPortfolioIdStddevSampleFundingRoundDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_FUNDING_ROUND_DESC",
74912
76021
  AssetTransactionsByToPortfolioIdStddevSampleIdAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_ID_ASC",
74913
76022
  AssetTransactionsByToPortfolioIdStddevSampleIdDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_ID_DESC",
76023
+ AssetTransactionsByToPortfolioIdStddevSampleInstructionIdAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_INSTRUCTION_ID_ASC",
76024
+ AssetTransactionsByToPortfolioIdStddevSampleInstructionIdDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_INSTRUCTION_ID_DESC",
76025
+ AssetTransactionsByToPortfolioIdStddevSampleInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_INSTRUCTION_MEMO_ASC",
76026
+ AssetTransactionsByToPortfolioIdStddevSampleInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_INSTRUCTION_MEMO_DESC",
74914
76027
  AssetTransactionsByToPortfolioIdStddevSampleNftIdsAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_NFT_IDS_ASC",
74915
76028
  AssetTransactionsByToPortfolioIdStddevSampleNftIdsDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_NFT_IDS_DESC",
74916
76029
  AssetTransactionsByToPortfolioIdStddevSampleToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_TO_PORTFOLIO_ID_ASC",
@@ -74941,6 +76054,10 @@ export declare enum PortfoliosOrderBy {
74941
76054
  AssetTransactionsByToPortfolioIdSumFundingRoundDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_FUNDING_ROUND_DESC",
74942
76055
  AssetTransactionsByToPortfolioIdSumIdAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_ID_ASC",
74943
76056
  AssetTransactionsByToPortfolioIdSumIdDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_ID_DESC",
76057
+ AssetTransactionsByToPortfolioIdSumInstructionIdAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_INSTRUCTION_ID_ASC",
76058
+ AssetTransactionsByToPortfolioIdSumInstructionIdDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_INSTRUCTION_ID_DESC",
76059
+ AssetTransactionsByToPortfolioIdSumInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_INSTRUCTION_MEMO_ASC",
76060
+ AssetTransactionsByToPortfolioIdSumInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_INSTRUCTION_MEMO_DESC",
74944
76061
  AssetTransactionsByToPortfolioIdSumNftIdsAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_NFT_IDS_ASC",
74945
76062
  AssetTransactionsByToPortfolioIdSumNftIdsDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_NFT_IDS_DESC",
74946
76063
  AssetTransactionsByToPortfolioIdSumToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_TO_PORTFOLIO_ID_ASC",
@@ -74971,6 +76088,10 @@ export declare enum PortfoliosOrderBy {
74971
76088
  AssetTransactionsByToPortfolioIdVariancePopulationFundingRoundDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_FUNDING_ROUND_DESC",
74972
76089
  AssetTransactionsByToPortfolioIdVariancePopulationIdAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_ID_ASC",
74973
76090
  AssetTransactionsByToPortfolioIdVariancePopulationIdDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_ID_DESC",
76091
+ AssetTransactionsByToPortfolioIdVariancePopulationInstructionIdAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_INSTRUCTION_ID_ASC",
76092
+ AssetTransactionsByToPortfolioIdVariancePopulationInstructionIdDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_INSTRUCTION_ID_DESC",
76093
+ AssetTransactionsByToPortfolioIdVariancePopulationInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_INSTRUCTION_MEMO_ASC",
76094
+ AssetTransactionsByToPortfolioIdVariancePopulationInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_INSTRUCTION_MEMO_DESC",
74974
76095
  AssetTransactionsByToPortfolioIdVariancePopulationNftIdsAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_NFT_IDS_ASC",
74975
76096
  AssetTransactionsByToPortfolioIdVariancePopulationNftIdsDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_NFT_IDS_DESC",
74976
76097
  AssetTransactionsByToPortfolioIdVariancePopulationToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_TO_PORTFOLIO_ID_ASC",
@@ -75001,6 +76122,10 @@ export declare enum PortfoliosOrderBy {
75001
76122
  AssetTransactionsByToPortfolioIdVarianceSampleFundingRoundDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_FUNDING_ROUND_DESC",
75002
76123
  AssetTransactionsByToPortfolioIdVarianceSampleIdAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_ID_ASC",
75003
76124
  AssetTransactionsByToPortfolioIdVarianceSampleIdDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_ID_DESC",
76125
+ AssetTransactionsByToPortfolioIdVarianceSampleInstructionIdAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_INSTRUCTION_ID_ASC",
76126
+ AssetTransactionsByToPortfolioIdVarianceSampleInstructionIdDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_INSTRUCTION_ID_DESC",
76127
+ AssetTransactionsByToPortfolioIdVarianceSampleInstructionMemoAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_INSTRUCTION_MEMO_ASC",
76128
+ AssetTransactionsByToPortfolioIdVarianceSampleInstructionMemoDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_INSTRUCTION_MEMO_DESC",
75004
76129
  AssetTransactionsByToPortfolioIdVarianceSampleNftIdsAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_NFT_IDS_ASC",
75005
76130
  AssetTransactionsByToPortfolioIdVarianceSampleNftIdsDesc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_NFT_IDS_DESC",
75006
76131
  AssetTransactionsByToPortfolioIdVarianceSampleToPortfolioIdAsc = "ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_TO_PORTFOLIO_ID_ASC",
@@ -85940,6 +87065,8 @@ export declare enum Asset_Transactions_Distinct_Enum {
85940
87065
  FromPortfolioId = "FROM_PORTFOLIO_ID",
85941
87066
  FundingRound = "FUNDING_ROUND",
85942
87067
  Id = "ID",
87068
+ InstructionId = "INSTRUCTION_ID",
87069
+ InstructionMemo = "INSTRUCTION_MEMO",
85943
87070
  NftIds = "NFT_IDS",
85944
87071
  ToPortfolioId = "TO_PORTFOLIO_ID",
85945
87072
  UpdatedAt = "UPDATED_AT",