You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Packages/ZkEvmApi/Documentation~/ChainWithDetails.md
+2
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,8 @@ Name | Type | Description | Notes
7
7
**Id** | **string** | The id of chain |
8
8
**Name** | **string** | The name of chain |
9
9
**RpcUrl** | **string** | URL for RPC node |
10
+
**OperatorAllowlistAddress** | **string** | The address of the Operator Allowlist - https://docs.immutable.com/products/zkevm/minting/royalties/allowlist-spec/ |
11
+
**MinterAddress** | **string** | The address of the minter used in the Minting API - https://docs.immutable.com/products/zkEVM/minting/minting-api#minting-api-prerequisites |
10
12
11
13
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
**Values** | [**List<FilterValue>**](FilterValue.md) | List of 100 most common values for this trait sorted by number of associated NFTs |
9
+
**OmittedValuesCount** | **int** | Indicated how many more distinct values exist |
10
+
11
+
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
**ContractAddress** | **string** | ETH Address of collection that the asset belongs to |
9
+
**Filters** | [**List<Filter>**](Filter.md) | List of all filters and the most common values |
10
+
11
+
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
**NftCount** | **string** | Number of NFTs that have this trait. Uint256 as string |
9
+
10
+
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
Copy file name to clipboardExpand all lines: src/Packages/ZkEvmApi/Documentation~/StacksApi.md
+100
Original file line number
Diff line number
Diff line change
@@ -4,10 +4,110 @@ All URIs are relative to *https://api.sandbox.immutable.com*
4
4
5
5
| Method | HTTP request | Description |
6
6
|--------|--------------|-------------|
7
+
|[**ListFilters**](StacksApi.md#listfilters)|**GET** /experimental/chains/{chain_name}/search/filters/{contract_address} | Experimental: Get list of metadata attribute filters |
7
8
|[**ListStacks**](StacksApi.md#liststacks)|**GET** /experimental/chains/{chain_name}/stacks | Experimental: List NFT stacks by stack_id |
Debug.Print("Exception when calling StacksApi.ListFiltersWithHttpInfo: "+e.Message);
72
+
Debug.Print("Status Code: "+e.ErrorCode);
73
+
Debug.Print(e.StackTrace);
74
+
}
75
+
```
76
+
77
+
### Parameters
78
+
79
+
| Name | Type | Description | Notes |
80
+
|------|------|-------------|-------|
81
+
|**chainName**|**string**| The name of chain ||
82
+
|**contractAddress**|**string**| Contract addresses for collection ||
83
+
84
+
### Return type
85
+
86
+
[**ListFiltersResult**](ListFiltersResult.md)
87
+
88
+
### Authorization
89
+
90
+
No authorization required
91
+
92
+
### HTTP request headers
93
+
94
+
-**Content-Type**: Not defined
95
+
-**Accept**: application/json
96
+
97
+
98
+
### HTTP response details
99
+
| Status code | Description | Response headers |
100
+
|-------------|-------------|------------------|
101
+
|**200**| 200 response | - |
102
+
|**400**| Bad Request (400) | - |
103
+
|**401**| Unauthorised Request (401) | - |
104
+
|**403**| Forbidden Request (403) | - |
105
+
|**404**| The specified resource was not found (404) | - |
106
+
|**429**| Too Many Requests (429) | * Retry-After - <br> |
107
+
|**500**| Internal Server Error (500) | - |
108
+
109
+
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
@@ -376,6 +424,146 @@ public Immutable.Api.ZkEvm.Client.ExceptionFactory ExceptionFactory
376
424
set{_exceptionFactory=value;}
377
425
}
378
426
427
+
/// <summary>
428
+
/// Experimental: Get list of metadata attribute filters  Get list of metadata filters
429
+
/// </summary>
430
+
/// <exception cref="Immutable.Api.ZkEvm.Client.ApiException">Thrown when fails to make API call</exception>
431
+
/// <param name="chainName">The name of chain</param>
432
+
/// <param name="contractAddress">Contract addresses for collection</param>
/// Experimental: Get list of metadata attribute filters  Get list of metadata filters
442
+
/// </summary>
443
+
/// <exception cref="Immutable.Api.ZkEvm.Client.ApiException">Thrown when fails to make API call</exception>
444
+
/// <param name="chainName">The name of chain</param>
445
+
/// <param name="contractAddress">Contract addresses for collection</param>
446
+
/// <returns>ApiResponse of ListFiltersResult</returns>
/// Experimental: Get list of metadata attribute filters  Get list of metadata filters
491
+
/// </summary>
492
+
/// <exception cref="Immutable.Api.ZkEvm.Client.ApiException">Thrown when fails to make API call</exception>
493
+
/// <param name="chainName">The name of chain</param>
494
+
/// <param name="contractAddress">Contract addresses for collection</param>
495
+
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
/// Experimental: Get list of metadata attribute filters  Get list of metadata filters
510
+
/// </summary>
511
+
/// <exception cref="Immutable.Api.ZkEvm.Client.ApiException">Thrown when fails to make API call</exception>
512
+
/// <param name="chainName">The name of chain</param>
513
+
/// <param name="contractAddress">Contract addresses for collection</param>
514
+
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
515
+
/// <returns>Task of ApiResponse (ListFiltersResult)</returns>
0 commit comments