@stacks/blockchain-api-client 8.0.0 → 8.0.2-beta.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.
- package/package.json +1 -1
- package/src/generated/schema.d.ts +12 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacks/blockchain-api-client",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.2-beta.1",
|
|
4
4
|
"access": "public",
|
|
5
5
|
"description": "Client for the Stacks Blockchain API",
|
|
6
6
|
"homepage": "https://github.com/hirosystems/stacks-blockchain-api/tree/master/client#readme",
|
|
@@ -249,7 +249,6 @@ export interface paths {
|
|
|
249
249
|
/**
|
|
250
250
|
* Get total and unlocked STX supply
|
|
251
251
|
* @description Retrieves the total and unlocked STX supply. More information on Stacking can be found [here] (https://docs.stacks.co/understand-stacks/stacking).
|
|
252
|
-
* **Note:** This uses the estimated future total supply for the year 2050.
|
|
253
252
|
*/
|
|
254
253
|
get: operations["get_stx_supply"];
|
|
255
254
|
put?: never;
|
|
@@ -269,8 +268,8 @@ export interface paths {
|
|
|
269
268
|
};
|
|
270
269
|
/**
|
|
271
270
|
* Get total STX supply in plain text format
|
|
272
|
-
* @
|
|
273
|
-
*
|
|
271
|
+
* @deprecated
|
|
272
|
+
* @description Retrieves the total circulating STX token supply as plain text.
|
|
274
273
|
*/
|
|
275
274
|
get: operations["get_stx_supply_total_supply_plain"];
|
|
276
275
|
put?: never;
|
|
@@ -290,6 +289,7 @@ export interface paths {
|
|
|
290
289
|
};
|
|
291
290
|
/**
|
|
292
291
|
* Get circulating STX supply in plain text format
|
|
292
|
+
* @deprecated
|
|
293
293
|
* @description Retrieves the STX tokens currently in circulation that have been unlocked as plain text.
|
|
294
294
|
*/
|
|
295
295
|
get: operations["get_stx_supply_circulating_plain"];
|
|
@@ -310,8 +310,8 @@ export interface paths {
|
|
|
310
310
|
};
|
|
311
311
|
/**
|
|
312
312
|
* Get total and unlocked STX supply (results formatted the same as the legacy 1.0 API)
|
|
313
|
+
* @deprecated
|
|
313
314
|
* @description Retrieves total supply of STX tokens including those currently in circulation that have been unlocked.
|
|
314
|
-
* **Note:** this uses the estimated future total supply for the year 2050.
|
|
315
315
|
*/
|
|
316
316
|
get: operations["get_total_stx_supply_legacy_format"];
|
|
317
317
|
put?: never;
|
|
@@ -11266,8 +11266,10 @@ export interface operations {
|
|
|
11266
11266
|
"application/json": {
|
|
11267
11267
|
/** @description String quoted decimal number of the percentage of STX that have unlocked */
|
|
11268
11268
|
unlocked_percent: string;
|
|
11269
|
-
/** @description String quoted decimal number of the total
|
|
11269
|
+
/** @description String quoted decimal number of the total circulating number of STX (at the input block height if provided, otherwise the current block height) */
|
|
11270
11270
|
total_stx: string;
|
|
11271
|
+
/** @description String quoted decimal number of total circulating STX supply in year 2050. STX supply grows approx 0.3% annually thereafter in perpetuity. */
|
|
11272
|
+
total_stx_year_2050: string;
|
|
11271
11273
|
/** @description String quoted decimal number of the STX that have been mined or unlocked */
|
|
11272
11274
|
unlocked_stx: string;
|
|
11273
11275
|
/** @description The block height at which this information was queried */
|
|
@@ -11350,10 +11352,14 @@ export interface operations {
|
|
|
11350
11352
|
"application/json": {
|
|
11351
11353
|
/** @description String quoted decimal number of the percentage of STX that have unlocked */
|
|
11352
11354
|
unlockedPercent: string;
|
|
11353
|
-
/** @description String quoted decimal number of the total
|
|
11355
|
+
/** @description String quoted decimal number of the total circulating number of STX (at the input block height if provided, otherwise the current block height) */
|
|
11354
11356
|
totalStacks: string;
|
|
11355
11357
|
/** @description Same as `totalStacks` but formatted with comma thousands separators */
|
|
11356
11358
|
totalStacksFormatted: string;
|
|
11359
|
+
/** @description String quoted decimal number of total circulating STX supply in year 2050. STX supply grows approx 0.3% annually thereafter in perpetuity. */
|
|
11360
|
+
totalStacksYear2050: string;
|
|
11361
|
+
/** @description Same as `totalStacksYear2050` but formatted with comma thousands separators */
|
|
11362
|
+
totalStacksYear2050Formatted: string;
|
|
11357
11363
|
/** @description String quoted decimal number of the STX that have been mined or unlocked */
|
|
11358
11364
|
unlockedSupply: string;
|
|
11359
11365
|
/** @description Same as `unlockedSupply` but formatted with comma thousands separators */
|