@stacks/blockchain-api-client 7.4.0-nakamoto.4 → 7.4.0-nakamoto.6
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.
|
@@ -10,7 +10,10 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import * as runtime from '../runtime';
|
|
13
|
-
import { Block, BlockListResponse, BurnBlockListResponse, NakamotoBlockListResponse } from '../models';
|
|
13
|
+
import { Block, BlockListResponse, BurnBlock, BurnBlockListResponse, NakamotoBlock, NakamotoBlockListResponse } from '../models';
|
|
14
|
+
export interface GetBlockRequest {
|
|
15
|
+
heightOrHash: number | string;
|
|
16
|
+
}
|
|
14
17
|
export interface GetBlockByBurnBlockHashRequest {
|
|
15
18
|
burnBlockHash: string;
|
|
16
19
|
}
|
|
@@ -33,11 +36,12 @@ export interface GetBlocksRequest {
|
|
|
33
36
|
burnBlockHash?: string;
|
|
34
37
|
burnBlockHeight?: number;
|
|
35
38
|
}
|
|
36
|
-
export interface
|
|
39
|
+
export interface GetBurnBlockRequest {
|
|
40
|
+
heightOrHash: number | string;
|
|
41
|
+
}
|
|
42
|
+
export interface GetBurnBlocksRequest {
|
|
37
43
|
limit?: number;
|
|
38
44
|
offset?: number;
|
|
39
|
-
height?: number;
|
|
40
|
-
hash?: string;
|
|
41
45
|
}
|
|
42
46
|
/**
|
|
43
47
|
* BlocksApi - interface
|
|
@@ -46,6 +50,20 @@ export interface GetBurnBlockListRequest {
|
|
|
46
50
|
* @interface BlocksApiInterface
|
|
47
51
|
*/
|
|
48
52
|
export interface BlocksApiInterface {
|
|
53
|
+
/**
|
|
54
|
+
* Retrieves a single block
|
|
55
|
+
* @summary Get block
|
|
56
|
+
* @param {number | string} heightOrHash filter by block height, hash, index block hash or the constant `latest` to filter for the most recent block
|
|
57
|
+
* @param {*} [options] Override http request option.
|
|
58
|
+
* @throws {RequiredError}
|
|
59
|
+
* @memberof BlocksApiInterface
|
|
60
|
+
*/
|
|
61
|
+
getBlockRaw(requestParameters: GetBlockRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<NakamotoBlock>>;
|
|
62
|
+
/**
|
|
63
|
+
* Retrieves a single block
|
|
64
|
+
* Get block
|
|
65
|
+
*/
|
|
66
|
+
getBlock(requestParameters: GetBlockRequest, initOverrides?: RequestInit): Promise<NakamotoBlock>;
|
|
49
67
|
/**
|
|
50
68
|
* **NOTE:** This endpoint is deprecated in favor of [Get blocks](#operation/get_blocks). Retrieves block details of a specific block for a given burnchain block hash
|
|
51
69
|
* @summary Get block by burnchain block hash
|
|
@@ -75,7 +93,7 @@ export interface BlocksApiInterface {
|
|
|
75
93
|
*/
|
|
76
94
|
getBlockByBurnBlockHeight(requestParameters: GetBlockByBurnBlockHeightRequest, initOverrides?: RequestInit): Promise<Block>;
|
|
77
95
|
/**
|
|
78
|
-
* Retrieves block details of a specific block for a given chain height. You can use the hash from your latest block (\'get_block_list\' API) to get your block details.
|
|
96
|
+
* **NOTE:** This endpoint is deprecated in favor of [Get block](#operation/get_block). Retrieves block details of a specific block for a given chain height. You can use the hash from your latest block (\'get_block_list\' API) to get your block details.
|
|
79
97
|
* @summary Get block by hash
|
|
80
98
|
* @param {string} hash Hash of the block
|
|
81
99
|
* @param {*} [options] Override http request option.
|
|
@@ -84,12 +102,12 @@ export interface BlocksApiInterface {
|
|
|
84
102
|
*/
|
|
85
103
|
getBlockByHashRaw(requestParameters: GetBlockByHashRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<Block>>;
|
|
86
104
|
/**
|
|
87
|
-
* Retrieves block details of a specific block for a given chain height. You can use the hash from your latest block (\'get_block_list\' API) to get your block details.
|
|
105
|
+
* **NOTE:** This endpoint is deprecated in favor of [Get block](#operation/get_block). Retrieves block details of a specific block for a given chain height. You can use the hash from your latest block (\'get_block_list\' API) to get your block details.
|
|
88
106
|
* Get block by hash
|
|
89
107
|
*/
|
|
90
108
|
getBlockByHash(requestParameters: GetBlockByHashRequest, initOverrides?: RequestInit): Promise<Block>;
|
|
91
109
|
/**
|
|
92
|
-
* Retrieves block details of a specific block at a given block height
|
|
110
|
+
* **NOTE:** This endpoint is deprecated in favor of [Get block](#operation/get_block). Retrieves block details of a specific block at a given block height
|
|
93
111
|
* @summary Get block by height
|
|
94
112
|
* @param {number} height Height of the block
|
|
95
113
|
* @param {*} [options] Override http request option.
|
|
@@ -98,7 +116,7 @@ export interface BlocksApiInterface {
|
|
|
98
116
|
*/
|
|
99
117
|
getBlockByHeightRaw(requestParameters: GetBlockByHeightRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<Block>>;
|
|
100
118
|
/**
|
|
101
|
-
* Retrieves block details of a specific block at a given block height
|
|
119
|
+
* **NOTE:** This endpoint is deprecated in favor of [Get block](#operation/get_block). Retrieves block details of a specific block at a given block height
|
|
102
120
|
* Get block by height
|
|
103
121
|
*/
|
|
104
122
|
getBlockByHeight(requestParameters: GetBlockByHeightRequest, initOverrides?: RequestInit): Promise<Block>;
|
|
@@ -134,28 +152,50 @@ export interface BlocksApiInterface {
|
|
|
134
152
|
* Get blocks
|
|
135
153
|
*/
|
|
136
154
|
getBlocks(requestParameters: GetBlocksRequest, initOverrides?: RequestInit): Promise<NakamotoBlockListResponse>;
|
|
155
|
+
/**
|
|
156
|
+
* Retrieves a single burn block
|
|
157
|
+
* @summary Get burn block
|
|
158
|
+
* @param {number | string} heightOrHash filter by burn block height, hash, or the constant `latest` to filter for the most recent burn block
|
|
159
|
+
* @param {*} [options] Override http request option.
|
|
160
|
+
* @throws {RequiredError}
|
|
161
|
+
* @memberof BlocksApiInterface
|
|
162
|
+
*/
|
|
163
|
+
getBurnBlockRaw(requestParameters: GetBurnBlockRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<BurnBlock>>;
|
|
164
|
+
/**
|
|
165
|
+
* Retrieves a single burn block
|
|
166
|
+
* Get burn block
|
|
167
|
+
*/
|
|
168
|
+
getBurnBlock(requestParameters: GetBurnBlockRequest, initOverrides?: RequestInit): Promise<BurnBlock>;
|
|
137
169
|
/**
|
|
138
170
|
* Retrieves a list of recent burn blocks
|
|
139
|
-
* @summary Get
|
|
171
|
+
* @summary Get burn blocks
|
|
140
172
|
* @param {number} [limit] max number of burn blocks to fetch
|
|
141
173
|
* @param {number} [offset] index of first burn block to fetch
|
|
142
|
-
* @param {number} [height] filter by burn block height
|
|
143
|
-
* @param {string} [hash] filter by burn block hash or the constant \'latest\' to filter for the most recent burn block
|
|
144
174
|
* @param {*} [options] Override http request option.
|
|
145
175
|
* @throws {RequiredError}
|
|
146
176
|
* @memberof BlocksApiInterface
|
|
147
177
|
*/
|
|
148
|
-
|
|
178
|
+
getBurnBlocksRaw(requestParameters: GetBurnBlocksRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<BurnBlockListResponse>>;
|
|
149
179
|
/**
|
|
150
180
|
* Retrieves a list of recent burn blocks
|
|
151
|
-
* Get
|
|
181
|
+
* Get burn blocks
|
|
152
182
|
*/
|
|
153
|
-
|
|
183
|
+
getBurnBlocks(requestParameters: GetBurnBlocksRequest, initOverrides?: RequestInit): Promise<BurnBlockListResponse>;
|
|
154
184
|
}
|
|
155
185
|
/**
|
|
156
186
|
*
|
|
157
187
|
*/
|
|
158
188
|
export declare class BlocksApi extends runtime.BaseAPI implements BlocksApiInterface {
|
|
189
|
+
/**
|
|
190
|
+
* Retrieves a single block
|
|
191
|
+
* Get block
|
|
192
|
+
*/
|
|
193
|
+
getBlockRaw(requestParameters: GetBlockRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<NakamotoBlock>>;
|
|
194
|
+
/**
|
|
195
|
+
* Retrieves a single block
|
|
196
|
+
* Get block
|
|
197
|
+
*/
|
|
198
|
+
getBlock(requestParameters: GetBlockRequest, initOverrides?: RequestInit): Promise<NakamotoBlock>;
|
|
159
199
|
/**
|
|
160
200
|
* **NOTE:** This endpoint is deprecated in favor of [Get blocks](#operation/get_blocks). Retrieves block details of a specific block for a given burnchain block hash
|
|
161
201
|
* Get block by burnchain block hash
|
|
@@ -177,22 +217,22 @@ export declare class BlocksApi extends runtime.BaseAPI implements BlocksApiInter
|
|
|
177
217
|
*/
|
|
178
218
|
getBlockByBurnBlockHeight(requestParameters: GetBlockByBurnBlockHeightRequest, initOverrides?: RequestInit): Promise<Block>;
|
|
179
219
|
/**
|
|
180
|
-
* Retrieves block details of a specific block for a given chain height. You can use the hash from your latest block (\'get_block_list\' API) to get your block details.
|
|
220
|
+
* **NOTE:** This endpoint is deprecated in favor of [Get block](#operation/get_block). Retrieves block details of a specific block for a given chain height. You can use the hash from your latest block (\'get_block_list\' API) to get your block details.
|
|
181
221
|
* Get block by hash
|
|
182
222
|
*/
|
|
183
223
|
getBlockByHashRaw(requestParameters: GetBlockByHashRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<Block>>;
|
|
184
224
|
/**
|
|
185
|
-
* Retrieves block details of a specific block for a given chain height. You can use the hash from your latest block (\'get_block_list\' API) to get your block details.
|
|
225
|
+
* **NOTE:** This endpoint is deprecated in favor of [Get block](#operation/get_block). Retrieves block details of a specific block for a given chain height. You can use the hash from your latest block (\'get_block_list\' API) to get your block details.
|
|
186
226
|
* Get block by hash
|
|
187
227
|
*/
|
|
188
228
|
getBlockByHash(requestParameters: GetBlockByHashRequest, initOverrides?: RequestInit): Promise<Block>;
|
|
189
229
|
/**
|
|
190
|
-
* Retrieves block details of a specific block at a given block height
|
|
230
|
+
* **NOTE:** This endpoint is deprecated in favor of [Get block](#operation/get_block). Retrieves block details of a specific block at a given block height
|
|
191
231
|
* Get block by height
|
|
192
232
|
*/
|
|
193
233
|
getBlockByHeightRaw(requestParameters: GetBlockByHeightRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<Block>>;
|
|
194
234
|
/**
|
|
195
|
-
* Retrieves block details of a specific block at a given block height
|
|
235
|
+
* **NOTE:** This endpoint is deprecated in favor of [Get block](#operation/get_block). Retrieves block details of a specific block at a given block height
|
|
196
236
|
* Get block by height
|
|
197
237
|
*/
|
|
198
238
|
getBlockByHeight(requestParameters: GetBlockByHeightRequest, initOverrides?: RequestInit): Promise<Block>;
|
|
@@ -216,14 +256,24 @@ export declare class BlocksApi extends runtime.BaseAPI implements BlocksApiInter
|
|
|
216
256
|
* Get blocks
|
|
217
257
|
*/
|
|
218
258
|
getBlocks(requestParameters: GetBlocksRequest, initOverrides?: RequestInit): Promise<NakamotoBlockListResponse>;
|
|
259
|
+
/**
|
|
260
|
+
* Retrieves a single burn block
|
|
261
|
+
* Get burn block
|
|
262
|
+
*/
|
|
263
|
+
getBurnBlockRaw(requestParameters: GetBurnBlockRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<BurnBlock>>;
|
|
264
|
+
/**
|
|
265
|
+
* Retrieves a single burn block
|
|
266
|
+
* Get burn block
|
|
267
|
+
*/
|
|
268
|
+
getBurnBlock(requestParameters: GetBurnBlockRequest, initOverrides?: RequestInit): Promise<BurnBlock>;
|
|
219
269
|
/**
|
|
220
270
|
* Retrieves a list of recent burn blocks
|
|
221
|
-
* Get
|
|
271
|
+
* Get burn blocks
|
|
222
272
|
*/
|
|
223
|
-
|
|
273
|
+
getBurnBlocksRaw(requestParameters: GetBurnBlocksRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<BurnBlockListResponse>>;
|
|
224
274
|
/**
|
|
225
275
|
* Retrieves a list of recent burn blocks
|
|
226
|
-
* Get
|
|
276
|
+
* Get burn blocks
|
|
227
277
|
*/
|
|
228
|
-
|
|
278
|
+
getBurnBlocks(requestParameters: GetBurnBlocksRequest, initOverrides?: RequestInit): Promise<BurnBlockListResponse>;
|
|
229
279
|
}
|
|
@@ -20,6 +20,32 @@ const models_1 = require("../models");
|
|
|
20
20
|
*
|
|
21
21
|
*/
|
|
22
22
|
class BlocksApi extends runtime.BaseAPI {
|
|
23
|
+
/**
|
|
24
|
+
* Retrieves a single block
|
|
25
|
+
* Get block
|
|
26
|
+
*/
|
|
27
|
+
async getBlockRaw(requestParameters, initOverrides) {
|
|
28
|
+
if (requestParameters.heightOrHash === null || requestParameters.heightOrHash === undefined) {
|
|
29
|
+
throw new runtime.RequiredError('heightOrHash', 'Required parameter requestParameters.heightOrHash was null or undefined when calling getBlock.');
|
|
30
|
+
}
|
|
31
|
+
const queryParameters = {};
|
|
32
|
+
const headerParameters = {};
|
|
33
|
+
const response = await this.request({
|
|
34
|
+
path: `/extended/v2/blocks/{height_or_hash}`.replace(`{${"height_or_hash"}}`, encodeURIComponent(String(requestParameters.heightOrHash))),
|
|
35
|
+
method: 'GET',
|
|
36
|
+
headers: headerParameters,
|
|
37
|
+
query: queryParameters,
|
|
38
|
+
}, initOverrides);
|
|
39
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => (0, models_1.NakamotoBlockFromJSON)(jsonValue));
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* Retrieves a single block
|
|
43
|
+
* Get block
|
|
44
|
+
*/
|
|
45
|
+
async getBlock(requestParameters, initOverrides) {
|
|
46
|
+
const response = await this.getBlockRaw(requestParameters, initOverrides);
|
|
47
|
+
return await response.value();
|
|
48
|
+
}
|
|
23
49
|
/**
|
|
24
50
|
* **NOTE:** This endpoint is deprecated in favor of [Get blocks](#operation/get_blocks). Retrieves block details of a specific block for a given burnchain block hash
|
|
25
51
|
* Get block by burnchain block hash
|
|
@@ -73,7 +99,7 @@ class BlocksApi extends runtime.BaseAPI {
|
|
|
73
99
|
return await response.value();
|
|
74
100
|
}
|
|
75
101
|
/**
|
|
76
|
-
* Retrieves block details of a specific block for a given chain height. You can use the hash from your latest block (\'get_block_list\' API) to get your block details.
|
|
102
|
+
* **NOTE:** This endpoint is deprecated in favor of [Get block](#operation/get_block). Retrieves block details of a specific block for a given chain height. You can use the hash from your latest block (\'get_block_list\' API) to get your block details.
|
|
77
103
|
* Get block by hash
|
|
78
104
|
*/
|
|
79
105
|
async getBlockByHashRaw(requestParameters, initOverrides) {
|
|
@@ -91,7 +117,7 @@ class BlocksApi extends runtime.BaseAPI {
|
|
|
91
117
|
return new runtime.JSONApiResponse(response, (jsonValue) => (0, models_1.BlockFromJSON)(jsonValue));
|
|
92
118
|
}
|
|
93
119
|
/**
|
|
94
|
-
* Retrieves block details of a specific block for a given chain height. You can use the hash from your latest block (\'get_block_list\' API) to get your block details.
|
|
120
|
+
* **NOTE:** This endpoint is deprecated in favor of [Get block](#operation/get_block). Retrieves block details of a specific block for a given chain height. You can use the hash from your latest block (\'get_block_list\' API) to get your block details.
|
|
95
121
|
* Get block by hash
|
|
96
122
|
*/
|
|
97
123
|
async getBlockByHash(requestParameters, initOverrides) {
|
|
@@ -99,7 +125,7 @@ class BlocksApi extends runtime.BaseAPI {
|
|
|
99
125
|
return await response.value();
|
|
100
126
|
}
|
|
101
127
|
/**
|
|
102
|
-
* Retrieves block details of a specific block at a given block height
|
|
128
|
+
* **NOTE:** This endpoint is deprecated in favor of [Get block](#operation/get_block). Retrieves block details of a specific block at a given block height
|
|
103
129
|
* Get block by height
|
|
104
130
|
*/
|
|
105
131
|
async getBlockByHeightRaw(requestParameters, initOverrides) {
|
|
@@ -117,7 +143,7 @@ class BlocksApi extends runtime.BaseAPI {
|
|
|
117
143
|
return new runtime.JSONApiResponse(response, (jsonValue) => (0, models_1.BlockFromJSON)(jsonValue));
|
|
118
144
|
}
|
|
119
145
|
/**
|
|
120
|
-
* Retrieves block details of a specific block at a given block height
|
|
146
|
+
* **NOTE:** This endpoint is deprecated in favor of [Get block](#operation/get_block). Retrieves block details of a specific block at a given block height
|
|
121
147
|
* Get block by height
|
|
122
148
|
*/
|
|
123
149
|
async getBlockByHeight(requestParameters, initOverrides) {
|
|
@@ -188,11 +214,37 @@ class BlocksApi extends runtime.BaseAPI {
|
|
|
188
214
|
const response = await this.getBlocksRaw(requestParameters, initOverrides);
|
|
189
215
|
return await response.value();
|
|
190
216
|
}
|
|
217
|
+
/**
|
|
218
|
+
* Retrieves a single burn block
|
|
219
|
+
* Get burn block
|
|
220
|
+
*/
|
|
221
|
+
async getBurnBlockRaw(requestParameters, initOverrides) {
|
|
222
|
+
if (requestParameters.heightOrHash === null || requestParameters.heightOrHash === undefined) {
|
|
223
|
+
throw new runtime.RequiredError('heightOrHash', 'Required parameter requestParameters.heightOrHash was null or undefined when calling getBurnBlock.');
|
|
224
|
+
}
|
|
225
|
+
const queryParameters = {};
|
|
226
|
+
const headerParameters = {};
|
|
227
|
+
const response = await this.request({
|
|
228
|
+
path: `/extended/v2/burn-blocks/{height_or_hash}`.replace(`{${"height_or_hash"}}`, encodeURIComponent(String(requestParameters.heightOrHash))),
|
|
229
|
+
method: 'GET',
|
|
230
|
+
headers: headerParameters,
|
|
231
|
+
query: queryParameters,
|
|
232
|
+
}, initOverrides);
|
|
233
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => (0, models_1.BurnBlockFromJSON)(jsonValue));
|
|
234
|
+
}
|
|
235
|
+
/**
|
|
236
|
+
* Retrieves a single burn block
|
|
237
|
+
* Get burn block
|
|
238
|
+
*/
|
|
239
|
+
async getBurnBlock(requestParameters, initOverrides) {
|
|
240
|
+
const response = await this.getBurnBlockRaw(requestParameters, initOverrides);
|
|
241
|
+
return await response.value();
|
|
242
|
+
}
|
|
191
243
|
/**
|
|
192
244
|
* Retrieves a list of recent burn blocks
|
|
193
|
-
* Get
|
|
245
|
+
* Get burn blocks
|
|
194
246
|
*/
|
|
195
|
-
async
|
|
247
|
+
async getBurnBlocksRaw(requestParameters, initOverrides) {
|
|
196
248
|
const queryParameters = {};
|
|
197
249
|
if (requestParameters.limit !== undefined) {
|
|
198
250
|
queryParameters['limit'] = requestParameters.limit;
|
|
@@ -200,15 +252,9 @@ class BlocksApi extends runtime.BaseAPI {
|
|
|
200
252
|
if (requestParameters.offset !== undefined) {
|
|
201
253
|
queryParameters['offset'] = requestParameters.offset;
|
|
202
254
|
}
|
|
203
|
-
if (requestParameters.height !== undefined) {
|
|
204
|
-
queryParameters['height'] = requestParameters.height;
|
|
205
|
-
}
|
|
206
|
-
if (requestParameters.hash !== undefined) {
|
|
207
|
-
queryParameters['hash'] = requestParameters.hash;
|
|
208
|
-
}
|
|
209
255
|
const headerParameters = {};
|
|
210
256
|
const response = await this.request({
|
|
211
|
-
path: `/extended/
|
|
257
|
+
path: `/extended/v2/burn-blocks`,
|
|
212
258
|
method: 'GET',
|
|
213
259
|
headers: headerParameters,
|
|
214
260
|
query: queryParameters,
|
|
@@ -217,10 +263,10 @@ class BlocksApi extends runtime.BaseAPI {
|
|
|
217
263
|
}
|
|
218
264
|
/**
|
|
219
265
|
* Retrieves a list of recent burn blocks
|
|
220
|
-
* Get
|
|
266
|
+
* Get burn blocks
|
|
221
267
|
*/
|
|
222
|
-
async
|
|
223
|
-
const response = await this.
|
|
268
|
+
async getBurnBlocks(requestParameters, initOverrides) {
|
|
269
|
+
const response = await this.getBurnBlocksRaw(requestParameters, initOverrides);
|
|
224
270
|
return await response.value();
|
|
225
271
|
}
|
|
226
272
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BlocksApi.js","sourceRoot":"","sources":["../../../src/generated/apis/BlocksApi.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAGH,sCAAsC;AACtC,
|
|
1
|
+
{"version":3,"file":"BlocksApi.js","sourceRoot":"","sources":["../../../src/generated/apis/BlocksApi.ts"],"names":[],"mappings":"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"}
|