@stacks/blockchain-api-client 7.1.0-beta.1 → 7.1.0-subnets.1

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.
@@ -26,7 +26,7 @@ export interface GetFtMetadataListRequest {
26
26
  */
27
27
  export interface FungibleTokensApiInterface {
28
28
  /**
29
- * Retrieves the metadata for fungible tokens for a given contract id
29
+ * **NOTE:** This endpoint is deprecated in favor of the [Token Metadata Service](https://github.com/hirosystems/token-metadata-service). Retrieves the metadata for fungible tokens for a given contract id
30
30
  * @summary Fungible tokens metadata for contract id
31
31
  * @param {string} contractId token\'s contract id
32
32
  * @param {*} [options] Override http request option.
@@ -35,12 +35,12 @@ export interface FungibleTokensApiInterface {
35
35
  */
36
36
  getContractFtMetadataRaw(requestParameters: GetContractFtMetadataRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<FungibleTokenMetadata>>;
37
37
  /**
38
- * Retrieves the metadata for fungible tokens for a given contract id
38
+ * **NOTE:** This endpoint is deprecated in favor of the [Token Metadata Service](https://github.com/hirosystems/token-metadata-service). Retrieves the metadata for fungible tokens for a given contract id
39
39
  * Fungible tokens metadata for contract id
40
40
  */
41
41
  getContractFtMetadata(requestParameters: GetContractFtMetadataRequest, initOverrides?: RequestInit): Promise<FungibleTokenMetadata>;
42
42
  /**
43
- * Retrieves list of fungible tokens with their metadata. More information on Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#fungible-tokens).
43
+ * **NOTE:** This endpoint is deprecated in favor of the [Token Metadata Service](https://github.com/hirosystems/token-metadata-service). Retrieves list of fungible tokens with their metadata. More information on Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#fungible-tokens).
44
44
  * @summary Fungible tokens metadata list
45
45
  * @param {number} [limit] max number of tokens to fetch.
46
46
  * @param {number} [offset] index of first tokens to fetch
@@ -50,7 +50,7 @@ export interface FungibleTokensApiInterface {
50
50
  */
51
51
  getFtMetadataListRaw(requestParameters: GetFtMetadataListRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<FungibleTokensMetadataList>>;
52
52
  /**
53
- * Retrieves list of fungible tokens with their metadata. More information on Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#fungible-tokens).
53
+ * **NOTE:** This endpoint is deprecated in favor of the [Token Metadata Service](https://github.com/hirosystems/token-metadata-service). Retrieves list of fungible tokens with their metadata. More information on Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#fungible-tokens).
54
54
  * Fungible tokens metadata list
55
55
  */
56
56
  getFtMetadataList(requestParameters: GetFtMetadataListRequest, initOverrides?: RequestInit): Promise<FungibleTokensMetadataList>;
@@ -60,22 +60,22 @@ export interface FungibleTokensApiInterface {
60
60
  */
61
61
  export declare class FungibleTokensApi extends runtime.BaseAPI implements FungibleTokensApiInterface {
62
62
  /**
63
- * Retrieves the metadata for fungible tokens for a given contract id
63
+ * **NOTE:** This endpoint is deprecated in favor of the [Token Metadata Service](https://github.com/hirosystems/token-metadata-service). Retrieves the metadata for fungible tokens for a given contract id
64
64
  * Fungible tokens metadata for contract id
65
65
  */
66
66
  getContractFtMetadataRaw(requestParameters: GetContractFtMetadataRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<FungibleTokenMetadata>>;
67
67
  /**
68
- * Retrieves the metadata for fungible tokens for a given contract id
68
+ * **NOTE:** This endpoint is deprecated in favor of the [Token Metadata Service](https://github.com/hirosystems/token-metadata-service). Retrieves the metadata for fungible tokens for a given contract id
69
69
  * Fungible tokens metadata for contract id
70
70
  */
71
71
  getContractFtMetadata(requestParameters: GetContractFtMetadataRequest, initOverrides?: RequestInit): Promise<FungibleTokenMetadata>;
72
72
  /**
73
- * Retrieves list of fungible tokens with their metadata. More information on Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#fungible-tokens).
73
+ * **NOTE:** This endpoint is deprecated in favor of the [Token Metadata Service](https://github.com/hirosystems/token-metadata-service). Retrieves list of fungible tokens with their metadata. More information on Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#fungible-tokens).
74
74
  * Fungible tokens metadata list
75
75
  */
76
76
  getFtMetadataListRaw(requestParameters: GetFtMetadataListRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<FungibleTokensMetadataList>>;
77
77
  /**
78
- * Retrieves list of fungible tokens with their metadata. More information on Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#fungible-tokens).
78
+ * **NOTE:** This endpoint is deprecated in favor of the [Token Metadata Service](https://github.com/hirosystems/token-metadata-service). Retrieves list of fungible tokens with their metadata. More information on Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#fungible-tokens).
79
79
  * Fungible tokens metadata list
80
80
  */
81
81
  getFtMetadataList(requestParameters: GetFtMetadataListRequest, initOverrides?: RequestInit): Promise<FungibleTokensMetadataList>;
@@ -21,7 +21,7 @@ const models_1 = require("../models");
21
21
  */
22
22
  class FungibleTokensApi extends runtime.BaseAPI {
23
23
  /**
24
- * Retrieves the metadata for fungible tokens for a given contract id
24
+ * **NOTE:** This endpoint is deprecated in favor of the [Token Metadata Service](https://github.com/hirosystems/token-metadata-service). Retrieves the metadata for fungible tokens for a given contract id
25
25
  * Fungible tokens metadata for contract id
26
26
  */
27
27
  async getContractFtMetadataRaw(requestParameters, initOverrides) {
@@ -39,7 +39,7 @@ class FungibleTokensApi extends runtime.BaseAPI {
39
39
  return new runtime.JSONApiResponse(response, (jsonValue) => (0, models_1.FungibleTokenMetadataFromJSON)(jsonValue));
40
40
  }
41
41
  /**
42
- * Retrieves the metadata for fungible tokens for a given contract id
42
+ * **NOTE:** This endpoint is deprecated in favor of the [Token Metadata Service](https://github.com/hirosystems/token-metadata-service). Retrieves the metadata for fungible tokens for a given contract id
43
43
  * Fungible tokens metadata for contract id
44
44
  */
45
45
  async getContractFtMetadata(requestParameters, initOverrides) {
@@ -47,7 +47,7 @@ class FungibleTokensApi extends runtime.BaseAPI {
47
47
  return await response.value();
48
48
  }
49
49
  /**
50
- * Retrieves list of fungible tokens with their metadata. More information on Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#fungible-tokens).
50
+ * **NOTE:** This endpoint is deprecated in favor of the [Token Metadata Service](https://github.com/hirosystems/token-metadata-service). Retrieves list of fungible tokens with their metadata. More information on Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#fungible-tokens).
51
51
  * Fungible tokens metadata list
52
52
  */
53
53
  async getFtMetadataListRaw(requestParameters, initOverrides) {
@@ -68,7 +68,7 @@ class FungibleTokensApi extends runtime.BaseAPI {
68
68
  return new runtime.JSONApiResponse(response, (jsonValue) => (0, models_1.FungibleTokensMetadataListFromJSON)(jsonValue));
69
69
  }
70
70
  /**
71
- * Retrieves list of fungible tokens with their metadata. More information on Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#fungible-tokens).
71
+ * **NOTE:** This endpoint is deprecated in favor of the [Token Metadata Service](https://github.com/hirosystems/token-metadata-service). Retrieves list of fungible tokens with their metadata. More information on Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#fungible-tokens).
72
72
  * Fungible tokens metadata list
73
73
  */
74
74
  async getFtMetadataList(requestParameters, initOverrides) {
@@ -49,7 +49,7 @@ export interface GetNftMintsRequest {
49
49
  */
50
50
  export interface NonFungibleTokensApiInterface {
51
51
  /**
52
- * Retrieves metadata for non fungible tokens for a given contract id. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
52
+ * **NOTE:** This endpoint is deprecated in favor of the [Token Metadata Service](https://github.com/hirosystems/token-metadata-service). Retrieves metadata for non fungible tokens for a given contract id. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
53
53
  * @summary Non fungible tokens metadata for contract ID
54
54
  * @param {string} contractId token\&#39;s contract id
55
55
  * @param {*} [options] Override http request option.
@@ -58,7 +58,7 @@ export interface NonFungibleTokensApiInterface {
58
58
  */
59
59
  getContractNftMetadataRaw(requestParameters: GetContractNftMetadataRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<NonFungibleTokenMetadata>>;
60
60
  /**
61
- * Retrieves metadata for non fungible tokens for a given contract id. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
61
+ * **NOTE:** This endpoint is deprecated in favor of the [Token Metadata Service](https://github.com/hirosystems/token-metadata-service). Retrieves metadata for non fungible tokens for a given contract id. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
62
62
  * Non fungible tokens metadata for contract ID
63
63
  */
64
64
  getContractNftMetadata(requestParameters: GetContractNftMetadataRequest, initOverrides?: RequestInit): Promise<NonFungibleTokenMetadata>;
@@ -101,7 +101,7 @@ export interface NonFungibleTokensApiInterface {
101
101
  */
102
102
  getNftHoldings(requestParameters: GetNftHoldingsRequest, initOverrides?: RequestInit): Promise<NonFungibleTokenHoldingsList>;
103
103
  /**
104
- * Retrieves a list of non fungible tokens with their metadata. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
104
+ * **NOTE:** This endpoint is deprecated in favor of the [Token Metadata Service](https://github.com/hirosystems/token-metadata-service). Retrieves a list of non fungible tokens with their metadata. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
105
105
  * @summary Non fungible tokens metadata list
106
106
  * @param {number} [limit] max number of tokens to fetch
107
107
  * @param {number} [offset] index of first tokens to fetch
@@ -111,7 +111,7 @@ export interface NonFungibleTokensApiInterface {
111
111
  */
112
112
  getNftMetadataListRaw(requestParameters: GetNftMetadataListRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<NonFungibleTokensMetadataList>>;
113
113
  /**
114
- * Retrieves a list of non fungible tokens with their metadata. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
114
+ * **NOTE:** This endpoint is deprecated in favor of the [Token Metadata Service](https://github.com/hirosystems/token-metadata-service). Retrieves a list of non fungible tokens with their metadata. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
115
115
  * Non fungible tokens metadata list
116
116
  */
117
117
  getNftMetadataList(requestParameters: GetNftMetadataListRequest, initOverrides?: RequestInit): Promise<NonFungibleTokensMetadataList>;
@@ -139,12 +139,12 @@ export interface NonFungibleTokensApiInterface {
139
139
  */
140
140
  export declare class NonFungibleTokensApi extends runtime.BaseAPI implements NonFungibleTokensApiInterface {
141
141
  /**
142
- * Retrieves metadata for non fungible tokens for a given contract id. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
142
+ * **NOTE:** This endpoint is deprecated in favor of the [Token Metadata Service](https://github.com/hirosystems/token-metadata-service). Retrieves metadata for non fungible tokens for a given contract id. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
143
143
  * Non fungible tokens metadata for contract ID
144
144
  */
145
145
  getContractNftMetadataRaw(requestParameters: GetContractNftMetadataRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<NonFungibleTokenMetadata>>;
146
146
  /**
147
- * Retrieves metadata for non fungible tokens for a given contract id. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
147
+ * **NOTE:** This endpoint is deprecated in favor of the [Token Metadata Service](https://github.com/hirosystems/token-metadata-service). Retrieves metadata for non fungible tokens for a given contract id. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
148
148
  * Non fungible tokens metadata for contract ID
149
149
  */
150
150
  getContractNftMetadata(requestParameters: GetContractNftMetadataRequest, initOverrides?: RequestInit): Promise<NonFungibleTokenMetadata>;
@@ -169,12 +169,12 @@ export declare class NonFungibleTokensApi extends runtime.BaseAPI implements Non
169
169
  */
170
170
  getNftHoldings(requestParameters: GetNftHoldingsRequest, initOverrides?: RequestInit): Promise<NonFungibleTokenHoldingsList>;
171
171
  /**
172
- * Retrieves a list of non fungible tokens with their metadata. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
172
+ * **NOTE:** This endpoint is deprecated in favor of the [Token Metadata Service](https://github.com/hirosystems/token-metadata-service). Retrieves a list of non fungible tokens with their metadata. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
173
173
  * Non fungible tokens metadata list
174
174
  */
175
175
  getNftMetadataListRaw(requestParameters: GetNftMetadataListRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<NonFungibleTokensMetadataList>>;
176
176
  /**
177
- * Retrieves a list of non fungible tokens with their metadata. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
177
+ * **NOTE:** This endpoint is deprecated in favor of the [Token Metadata Service](https://github.com/hirosystems/token-metadata-service). Retrieves a list of non fungible tokens with their metadata. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
178
178
  * Non fungible tokens metadata list
179
179
  */
180
180
  getNftMetadataList(requestParameters: GetNftMetadataListRequest, initOverrides?: RequestInit): Promise<NonFungibleTokensMetadataList>;
@@ -21,7 +21,7 @@ const models_1 = require("../models");
21
21
  */
22
22
  class NonFungibleTokensApi extends runtime.BaseAPI {
23
23
  /**
24
- * Retrieves metadata for non fungible tokens for a given contract id. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
24
+ * **NOTE:** This endpoint is deprecated in favor of the [Token Metadata Service](https://github.com/hirosystems/token-metadata-service). Retrieves metadata for non fungible tokens for a given contract id. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
25
25
  * Non fungible tokens metadata for contract ID
26
26
  */
27
27
  async getContractNftMetadataRaw(requestParameters, initOverrides) {
@@ -39,7 +39,7 @@ class NonFungibleTokensApi extends runtime.BaseAPI {
39
39
  return new runtime.JSONApiResponse(response, (jsonValue) => (0, models_1.NonFungibleTokenMetadataFromJSON)(jsonValue));
40
40
  }
41
41
  /**
42
- * Retrieves metadata for non fungible tokens for a given contract id. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
42
+ * **NOTE:** This endpoint is deprecated in favor of the [Token Metadata Service](https://github.com/hirosystems/token-metadata-service). Retrieves metadata for non fungible tokens for a given contract id. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
43
43
  * Non fungible tokens metadata for contract ID
44
44
  */
45
45
  async getContractNftMetadata(requestParameters, initOverrides) {
@@ -138,7 +138,7 @@ class NonFungibleTokensApi extends runtime.BaseAPI {
138
138
  return await response.value();
139
139
  }
140
140
  /**
141
- * Retrieves a list of non fungible tokens with their metadata. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
141
+ * **NOTE:** This endpoint is deprecated in favor of the [Token Metadata Service](https://github.com/hirosystems/token-metadata-service). Retrieves a list of non fungible tokens with their metadata. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
142
142
  * Non fungible tokens metadata list
143
143
  */
144
144
  async getNftMetadataListRaw(requestParameters, initOverrides) {
@@ -159,7 +159,7 @@ class NonFungibleTokensApi extends runtime.BaseAPI {
159
159
  return new runtime.JSONApiResponse(response, (jsonValue) => (0, models_1.NonFungibleTokensMetadataListFromJSON)(jsonValue));
160
160
  }
161
161
  /**
162
- * Retrieves a list of non fungible tokens with their metadata. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
162
+ * **NOTE:** This endpoint is deprecated in favor of the [Token Metadata Service](https://github.com/hirosystems/token-metadata-service). Retrieves a list of non fungible tokens with their metadata. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
163
163
  * Non fungible tokens metadata list
164
164
  */
165
165
  async getNftMetadataList(requestParameters, initOverrides) {
package/lib/index.umd.js CHANGED
@@ -7550,7 +7550,7 @@
7550
7550
  var _proto = FungibleTokensApi.prototype;
7551
7551
 
7552
7552
  /**
7553
- * Retrieves the metadata for fungible tokens for a given contract id
7553
+ * **NOTE:** This endpoint is deprecated in favor of the [Token Metadata Service](https://github.com/hirosystems/token-metadata-service). Retrieves the metadata for fungible tokens for a given contract id
7554
7554
  * Fungible tokens metadata for contract id
7555
7555
  */
7556
7556
  _proto.getContractFtMetadataRaw = function getContractFtMetadataRaw(requestParameters, initOverrides) {
@@ -7578,7 +7578,7 @@
7578
7578
  }
7579
7579
  }
7580
7580
  /**
7581
- * Retrieves the metadata for fungible tokens for a given contract id
7581
+ * **NOTE:** This endpoint is deprecated in favor of the [Token Metadata Service](https://github.com/hirosystems/token-metadata-service). Retrieves the metadata for fungible tokens for a given contract id
7582
7582
  * Fungible tokens metadata for contract id
7583
7583
  */
7584
7584
  ;
@@ -7595,7 +7595,7 @@
7595
7595
  }
7596
7596
  }
7597
7597
  /**
7598
- * Retrieves list of fungible tokens with their metadata. More information on Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#fungible-tokens).
7598
+ * **NOTE:** This endpoint is deprecated in favor of the [Token Metadata Service](https://github.com/hirosystems/token-metadata-service). Retrieves list of fungible tokens with their metadata. More information on Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#fungible-tokens).
7599
7599
  * Fungible tokens metadata list
7600
7600
  */
7601
7601
  ;
@@ -7630,7 +7630,7 @@
7630
7630
  }
7631
7631
  }
7632
7632
  /**
7633
- * Retrieves list of fungible tokens with their metadata. More information on Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#fungible-tokens).
7633
+ * **NOTE:** This endpoint is deprecated in favor of the [Token Metadata Service](https://github.com/hirosystems/token-metadata-service). Retrieves list of fungible tokens with their metadata. More information on Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#fungible-tokens).
7634
7634
  * Fungible tokens metadata list
7635
7635
  */
7636
7636
  ;
@@ -8729,7 +8729,7 @@
8729
8729
  var _proto = NonFungibleTokensApi.prototype;
8730
8730
 
8731
8731
  /**
8732
- * Retrieves metadata for non fungible tokens for a given contract id. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
8732
+ * **NOTE:** This endpoint is deprecated in favor of the [Token Metadata Service](https://github.com/hirosystems/token-metadata-service). Retrieves metadata for non fungible tokens for a given contract id. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
8733
8733
  * Non fungible tokens metadata for contract ID
8734
8734
  */
8735
8735
  _proto.getContractNftMetadataRaw = function getContractNftMetadataRaw(requestParameters, initOverrides) {
@@ -8757,7 +8757,7 @@
8757
8757
  }
8758
8758
  }
8759
8759
  /**
8760
- * Retrieves metadata for non fungible tokens for a given contract id. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
8760
+ * **NOTE:** This endpoint is deprecated in favor of the [Token Metadata Service](https://github.com/hirosystems/token-metadata-service). Retrieves metadata for non fungible tokens for a given contract id. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
8761
8761
  * Non fungible tokens metadata for contract ID
8762
8762
  */
8763
8763
  ;
@@ -8922,7 +8922,7 @@
8922
8922
  }
8923
8923
  }
8924
8924
  /**
8925
- * Retrieves a list of non fungible tokens with their metadata. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
8925
+ * **NOTE:** This endpoint is deprecated in favor of the [Token Metadata Service](https://github.com/hirosystems/token-metadata-service). Retrieves a list of non fungible tokens with their metadata. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
8926
8926
  * Non fungible tokens metadata list
8927
8927
  */
8928
8928
  ;
@@ -8957,7 +8957,7 @@
8957
8957
  }
8958
8958
  }
8959
8959
  /**
8960
- * Retrieves a list of non fungible tokens with their metadata. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
8960
+ * **NOTE:** This endpoint is deprecated in favor of the [Token Metadata Service](https://github.com/hirosystems/token-metadata-service). Retrieves a list of non fungible tokens with their metadata. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
8961
8961
  * Non fungible tokens metadata list
8962
8962
  */
8963
8963
  ;