@stacks/blockchain-api-client 6.2.2-beta.1 → 7.0.0-stacks-2.1.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/lib/generated/apis/AccountsApi.d.ts +4 -4
- package/lib/generated/apis/AccountsApi.js +2 -2
- package/lib/generated/apis/NonFungibleTokensApi.d.ts +4 -4
- package/lib/generated/apis/NonFungibleTokensApi.js +2 -2
- package/lib/generated/apis/RosettaApi.d.ts +16 -16
- package/lib/generated/apis/RosettaApi.js +8 -8
- package/lib/generated/models/ChainTip.d.ts +6 -0
- package/lib/generated/models/ChainTip.js +2 -0
- package/lib/generated/models/ChainTip.js.map +1 -1
- package/lib/generated/models/InboundStxTransfer.d.ts +2 -1
- package/lib/generated/models/InboundStxTransfer.js +1 -0
- package/lib/generated/models/InboundStxTransfer.js.map +1 -1
- package/lib/generated/models/ServerStatusResponse.d.ts +6 -0
- package/lib/generated/models/ServerStatusResponse.js +2 -0
- package/lib/generated/models/ServerStatusResponse.js.map +1 -1
- package/lib/index.umd.js +19 -14
- package/lib/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/generated/apis/AccountsApi.ts +4 -4
- package/src/generated/apis/NonFungibleTokensApi.ts +4 -4
- package/src/generated/apis/RosettaApi.ts +16 -16
- package/src/generated/models/ChainTip.ts +8 -0
- package/src/generated/models/InboundStxTransfer.ts +2 -1
- package/src/generated/models/ServerStatusResponse.ts +8 -0
|
@@ -238,7 +238,7 @@ export interface AccountsApiInterface {
|
|
|
238
238
|
*/
|
|
239
239
|
getAccountTransactionsWithTransfers(requestParameters: GetAccountTransactionsWithTransfersRequest, initOverrides?: RequestInit): Promise<AddressTransactionsWithTransfersListResponse>;
|
|
240
240
|
/**
|
|
241
|
-
* Retrieves transaction details for a given
|
|
241
|
+
* Retrieves transaction details for a given Transcation Id `tx_id`, for a given account or contract Identifier.
|
|
242
242
|
* @summary Get account transaction information for specific transaction
|
|
243
243
|
* @param {string} principal Stacks address or a contract identifier
|
|
244
244
|
* @param {string} txId Transaction id
|
|
@@ -248,7 +248,7 @@ export interface AccountsApiInterface {
|
|
|
248
248
|
*/
|
|
249
249
|
getSingleTransactionWithTransfersRaw(requestParameters: GetSingleTransactionWithTransfersRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<AddressTransactionWithTransfers>>;
|
|
250
250
|
/**
|
|
251
|
-
* Retrieves transaction details for a given
|
|
251
|
+
* Retrieves transaction details for a given Transcation Id `tx_id`, for a given account or contract Identifier.
|
|
252
252
|
* Get account transaction information for specific transaction
|
|
253
253
|
*/
|
|
254
254
|
getSingleTransactionWithTransfers(requestParameters: GetSingleTransactionWithTransfersRequest, initOverrides?: RequestInit): Promise<AddressTransactionWithTransfers>;
|
|
@@ -348,12 +348,12 @@ export declare class AccountsApi extends runtime.BaseAPI implements AccountsApiI
|
|
|
348
348
|
*/
|
|
349
349
|
getAccountTransactionsWithTransfers(requestParameters: GetAccountTransactionsWithTransfersRequest, initOverrides?: RequestInit): Promise<AddressTransactionsWithTransfersListResponse>;
|
|
350
350
|
/**
|
|
351
|
-
* Retrieves transaction details for a given
|
|
351
|
+
* Retrieves transaction details for a given Transcation Id `tx_id`, for a given account or contract Identifier.
|
|
352
352
|
* Get account transaction information for specific transaction
|
|
353
353
|
*/
|
|
354
354
|
getSingleTransactionWithTransfersRaw(requestParameters: GetSingleTransactionWithTransfersRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<AddressTransactionWithTransfers>>;
|
|
355
355
|
/**
|
|
356
|
-
* Retrieves transaction details for a given
|
|
356
|
+
* Retrieves transaction details for a given Transcation Id `tx_id`, for a given account or contract Identifier.
|
|
357
357
|
* Get account transaction information for specific transaction
|
|
358
358
|
*/
|
|
359
359
|
getSingleTransactionWithTransfers(requestParameters: GetSingleTransactionWithTransfersRequest, initOverrides?: RequestInit): Promise<AddressTransactionWithTransfers>;
|
|
@@ -348,7 +348,7 @@ class AccountsApi extends runtime.BaseAPI {
|
|
|
348
348
|
return await response.value();
|
|
349
349
|
}
|
|
350
350
|
/**
|
|
351
|
-
* Retrieves transaction details for a given
|
|
351
|
+
* Retrieves transaction details for a given Transcation Id `tx_id`, for a given account or contract Identifier.
|
|
352
352
|
* Get account transaction information for specific transaction
|
|
353
353
|
*/
|
|
354
354
|
async getSingleTransactionWithTransfersRaw(requestParameters, initOverrides) {
|
|
@@ -369,7 +369,7 @@ class AccountsApi extends runtime.BaseAPI {
|
|
|
369
369
|
return new runtime.JSONApiResponse(response, (jsonValue) => (0, models_1.AddressTransactionWithTransfersFromJSON)(jsonValue));
|
|
370
370
|
}
|
|
371
371
|
/**
|
|
372
|
-
* Retrieves transaction details for a given
|
|
372
|
+
* Retrieves transaction details for a given Transcation Id `tx_id`, for a given account or contract Identifier.
|
|
373
373
|
* Get account transaction information for specific transaction
|
|
374
374
|
*/
|
|
375
375
|
async getSingleTransactionWithTransfers(requestParameters, initOverrides) {
|
|
@@ -50,7 +50,7 @@ export interface GetNftMintsRequest {
|
|
|
50
50
|
export interface NonFungibleTokensApiInterface {
|
|
51
51
|
/**
|
|
52
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).
|
|
53
|
-
* @summary Non fungible tokens metadata for contract
|
|
53
|
+
* @summary Non fungible tokens metadata for contract id
|
|
54
54
|
* @param {string} contractId token\'s contract id
|
|
55
55
|
* @param {*} [options] Override http request option.
|
|
56
56
|
* @throws {RequiredError}
|
|
@@ -59,7 +59,7 @@ export interface NonFungibleTokensApiInterface {
|
|
|
59
59
|
getContractNftMetadataRaw(requestParameters: GetContractNftMetadataRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<NonFungibleTokenMetadata>>;
|
|
60
60
|
/**
|
|
61
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).
|
|
62
|
-
* Non fungible tokens metadata for contract
|
|
62
|
+
* Non fungible tokens metadata for contract id
|
|
63
63
|
*/
|
|
64
64
|
getContractNftMetadata(requestParameters: GetContractNftMetadataRequest, initOverrides?: RequestInit): Promise<NonFungibleTokenMetadata>;
|
|
65
65
|
/**
|
|
@@ -140,12 +140,12 @@ export interface NonFungibleTokensApiInterface {
|
|
|
140
140
|
export declare class NonFungibleTokensApi extends runtime.BaseAPI implements NonFungibleTokensApiInterface {
|
|
141
141
|
/**
|
|
142
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).
|
|
143
|
-
* Non fungible tokens metadata for contract
|
|
143
|
+
* Non fungible tokens metadata for contract id
|
|
144
144
|
*/
|
|
145
145
|
getContractNftMetadataRaw(requestParameters: GetContractNftMetadataRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<NonFungibleTokenMetadata>>;
|
|
146
146
|
/**
|
|
147
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).
|
|
148
|
-
* Non fungible tokens metadata for contract
|
|
148
|
+
* Non fungible tokens metadata for contract id
|
|
149
149
|
*/
|
|
150
150
|
getContractNftMetadata(requestParameters: GetContractNftMetadataRequest, initOverrides?: RequestInit): Promise<NonFungibleTokenMetadata>;
|
|
151
151
|
/**
|
|
@@ -22,7 +22,7 @@ const models_1 = require("../models");
|
|
|
22
22
|
class NonFungibleTokensApi extends runtime.BaseAPI {
|
|
23
23
|
/**
|
|
24
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).
|
|
25
|
-
* Non fungible tokens metadata for contract
|
|
25
|
+
* Non fungible tokens metadata for contract id
|
|
26
26
|
*/
|
|
27
27
|
async getContractNftMetadataRaw(requestParameters, initOverrides) {
|
|
28
28
|
if (requestParameters.contractId === null || requestParameters.contractId === undefined) {
|
|
@@ -40,7 +40,7 @@ class NonFungibleTokensApi extends runtime.BaseAPI {
|
|
|
40
40
|
}
|
|
41
41
|
/**
|
|
42
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).
|
|
43
|
-
* Non fungible tokens metadata for contract
|
|
43
|
+
* Non fungible tokens metadata for contract id
|
|
44
44
|
*/
|
|
45
45
|
async getContractNftMetadata(requestParameters, initOverrides) {
|
|
46
46
|
const response = await this.getContractNftMetadataRaw(requestParameters, initOverrides);
|
|
@@ -106,7 +106,7 @@ export interface RosettaApiInterface {
|
|
|
106
106
|
*/
|
|
107
107
|
rosettaBlockTransaction(requestParameters: RosettaBlockTransactionOperationRequest, initOverrides?: RequestInit): Promise<RosettaBlockTransactionResponse>;
|
|
108
108
|
/**
|
|
109
|
-
* Take unsigned transaction and signature, combine both and return signed transaction
|
|
109
|
+
* Take unsigned transaction and signature, combine both and return signed transaction
|
|
110
110
|
* @summary Create Network Transaction from Signatures
|
|
111
111
|
* @param {RosettaConstructionCombineRequest} rosettaConstructionCombineRequest
|
|
112
112
|
* @param {*} [options] Override http request option.
|
|
@@ -115,7 +115,7 @@ export interface RosettaApiInterface {
|
|
|
115
115
|
*/
|
|
116
116
|
rosettaConstructionCombineRaw(requestParameters: RosettaConstructionCombineOperationRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<RosettaConstructionCombineResponse>>;
|
|
117
117
|
/**
|
|
118
|
-
* Take unsigned transaction and signature, combine both and return signed transaction
|
|
118
|
+
* Take unsigned transaction and signature, combine both and return signed transaction
|
|
119
119
|
* Create Network Transaction from Signatures
|
|
120
120
|
*/
|
|
121
121
|
rosettaConstructionCombine(requestParameters: RosettaConstructionCombineOperationRequest, initOverrides?: RequestInit): Promise<RosettaConstructionCombineResponse>;
|
|
@@ -176,7 +176,7 @@ export interface RosettaApiInterface {
|
|
|
176
176
|
*/
|
|
177
177
|
rosettaConstructionParse(requestParameters: RosettaConstructionParseOperationRequest, initOverrides?: RequestInit): Promise<RosettaConstructionParseResponse>;
|
|
178
178
|
/**
|
|
179
|
-
* Generate
|
|
179
|
+
* Generate and unsigned transaction from operations and metadata
|
|
180
180
|
* @summary Generate an Unsigned Transaction and Signing Payloads
|
|
181
181
|
* @param {RosettaConstructionPayloadsRequest} rosettaConstructionPayloadsRequest
|
|
182
182
|
* @param {*} [options] Override http request option.
|
|
@@ -185,7 +185,7 @@ export interface RosettaApiInterface {
|
|
|
185
185
|
*/
|
|
186
186
|
rosettaConstructionPayloadsRaw(requestParameters: RosettaConstructionPayloadsOperationRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<RosettaConstructionPayloadResponse>>;
|
|
187
187
|
/**
|
|
188
|
-
* Generate
|
|
188
|
+
* Generate and unsigned transaction from operations and metadata
|
|
189
189
|
* Generate an Unsigned Transaction and Signing Payloads
|
|
190
190
|
*/
|
|
191
191
|
rosettaConstructionPayloads(requestParameters: RosettaConstructionPayloadsOperationRequest, initOverrides?: RequestInit): Promise<RosettaConstructionPayloadResponse>;
|
|
@@ -204,7 +204,7 @@ export interface RosettaApiInterface {
|
|
|
204
204
|
*/
|
|
205
205
|
rosettaConstructionPreprocess(requestParameters: RosettaConstructionPreprocessOperationRequest, initOverrides?: RequestInit): Promise<RosettaConstructionPreprocessResponse>;
|
|
206
206
|
/**
|
|
207
|
-
* Submit a pre-signed transaction to the node.
|
|
207
|
+
* Submit a pre-signed transaction to the node.
|
|
208
208
|
* @summary Submit a Signed Transaction
|
|
209
209
|
* @param {RosettaConstructionSubmitRequest} rosettaConstructionSubmitRequest
|
|
210
210
|
* @param {*} [options] Override http request option.
|
|
@@ -213,12 +213,12 @@ export interface RosettaApiInterface {
|
|
|
213
213
|
*/
|
|
214
214
|
rosettaConstructionSubmitRaw(requestParameters: RosettaConstructionSubmitOperationRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<RosettaConstructionSubmitResponse>>;
|
|
215
215
|
/**
|
|
216
|
-
* Submit a pre-signed transaction to the node.
|
|
216
|
+
* Submit a pre-signed transaction to the node.
|
|
217
217
|
* Submit a Signed Transaction
|
|
218
218
|
*/
|
|
219
219
|
rosettaConstructionSubmit(requestParameters: RosettaConstructionSubmitOperationRequest, initOverrides?: RequestInit): Promise<RosettaConstructionSubmitResponse>;
|
|
220
220
|
/**
|
|
221
|
-
* Retrieves a list of
|
|
221
|
+
* Retrieves a list of transcations currently in the mempool for a given network.
|
|
222
222
|
* @summary Get All Mempool Transactions
|
|
223
223
|
* @param {RosettaMempoolRequest} rosettaMempoolRequest
|
|
224
224
|
* @param {*} [options] Override http request option.
|
|
@@ -227,7 +227,7 @@ export interface RosettaApiInterface {
|
|
|
227
227
|
*/
|
|
228
228
|
rosettaMempoolRaw(requestParameters: RosettaMempoolOperationRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<RosettaMempoolResponse>>;
|
|
229
229
|
/**
|
|
230
|
-
* Retrieves a list of
|
|
230
|
+
* Retrieves a list of transcations currently in the mempool for a given network.
|
|
231
231
|
* Get All Mempool Transactions
|
|
232
232
|
*/
|
|
233
233
|
rosettaMempool(requestParameters: RosettaMempoolOperationRequest, initOverrides?: RequestInit): Promise<RosettaMempoolResponse>;
|
|
@@ -322,12 +322,12 @@ export declare class RosettaApi extends runtime.BaseAPI implements RosettaApiInt
|
|
|
322
322
|
*/
|
|
323
323
|
rosettaBlockTransaction(requestParameters: RosettaBlockTransactionOperationRequest, initOverrides?: RequestInit): Promise<RosettaBlockTransactionResponse>;
|
|
324
324
|
/**
|
|
325
|
-
* Take unsigned transaction and signature, combine both and return signed transaction
|
|
325
|
+
* Take unsigned transaction and signature, combine both and return signed transaction
|
|
326
326
|
* Create Network Transaction from Signatures
|
|
327
327
|
*/
|
|
328
328
|
rosettaConstructionCombineRaw(requestParameters: RosettaConstructionCombineOperationRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<RosettaConstructionCombineResponse>>;
|
|
329
329
|
/**
|
|
330
|
-
* Take unsigned transaction and signature, combine both and return signed transaction
|
|
330
|
+
* Take unsigned transaction and signature, combine both and return signed transaction
|
|
331
331
|
* Create Network Transaction from Signatures
|
|
332
332
|
*/
|
|
333
333
|
rosettaConstructionCombine(requestParameters: RosettaConstructionCombineOperationRequest, initOverrides?: RequestInit): Promise<RosettaConstructionCombineResponse>;
|
|
@@ -372,12 +372,12 @@ export declare class RosettaApi extends runtime.BaseAPI implements RosettaApiInt
|
|
|
372
372
|
*/
|
|
373
373
|
rosettaConstructionParse(requestParameters: RosettaConstructionParseOperationRequest, initOverrides?: RequestInit): Promise<RosettaConstructionParseResponse>;
|
|
374
374
|
/**
|
|
375
|
-
* Generate
|
|
375
|
+
* Generate and unsigned transaction from operations and metadata
|
|
376
376
|
* Generate an Unsigned Transaction and Signing Payloads
|
|
377
377
|
*/
|
|
378
378
|
rosettaConstructionPayloadsRaw(requestParameters: RosettaConstructionPayloadsOperationRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<RosettaConstructionPayloadResponse>>;
|
|
379
379
|
/**
|
|
380
|
-
* Generate
|
|
380
|
+
* Generate and unsigned transaction from operations and metadata
|
|
381
381
|
* Generate an Unsigned Transaction and Signing Payloads
|
|
382
382
|
*/
|
|
383
383
|
rosettaConstructionPayloads(requestParameters: RosettaConstructionPayloadsOperationRequest, initOverrides?: RequestInit): Promise<RosettaConstructionPayloadResponse>;
|
|
@@ -392,22 +392,22 @@ export declare class RosettaApi extends runtime.BaseAPI implements RosettaApiInt
|
|
|
392
392
|
*/
|
|
393
393
|
rosettaConstructionPreprocess(requestParameters: RosettaConstructionPreprocessOperationRequest, initOverrides?: RequestInit): Promise<RosettaConstructionPreprocessResponse>;
|
|
394
394
|
/**
|
|
395
|
-
* Submit a pre-signed transaction to the node.
|
|
395
|
+
* Submit a pre-signed transaction to the node.
|
|
396
396
|
* Submit a Signed Transaction
|
|
397
397
|
*/
|
|
398
398
|
rosettaConstructionSubmitRaw(requestParameters: RosettaConstructionSubmitOperationRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<RosettaConstructionSubmitResponse>>;
|
|
399
399
|
/**
|
|
400
|
-
* Submit a pre-signed transaction to the node.
|
|
400
|
+
* Submit a pre-signed transaction to the node.
|
|
401
401
|
* Submit a Signed Transaction
|
|
402
402
|
*/
|
|
403
403
|
rosettaConstructionSubmit(requestParameters: RosettaConstructionSubmitOperationRequest, initOverrides?: RequestInit): Promise<RosettaConstructionSubmitResponse>;
|
|
404
404
|
/**
|
|
405
|
-
* Retrieves a list of
|
|
405
|
+
* Retrieves a list of transcations currently in the mempool for a given network.
|
|
406
406
|
* Get All Mempool Transactions
|
|
407
407
|
*/
|
|
408
408
|
rosettaMempoolRaw(requestParameters: RosettaMempoolOperationRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<RosettaMempoolResponse>>;
|
|
409
409
|
/**
|
|
410
|
-
* Retrieves a list of
|
|
410
|
+
* Retrieves a list of transcations currently in the mempool for a given network.
|
|
411
411
|
* Get All Mempool Transactions
|
|
412
412
|
*/
|
|
413
413
|
rosettaMempool(requestParameters: RosettaMempoolOperationRequest, initOverrides?: RequestInit): Promise<RosettaMempoolResponse>;
|
|
@@ -105,7 +105,7 @@ class RosettaApi extends runtime.BaseAPI {
|
|
|
105
105
|
return await response.value();
|
|
106
106
|
}
|
|
107
107
|
/**
|
|
108
|
-
* Take unsigned transaction and signature, combine both and return signed transaction
|
|
108
|
+
* Take unsigned transaction and signature, combine both and return signed transaction
|
|
109
109
|
* Create Network Transaction from Signatures
|
|
110
110
|
*/
|
|
111
111
|
async rosettaConstructionCombineRaw(requestParameters, initOverrides) {
|
|
@@ -125,7 +125,7 @@ class RosettaApi extends runtime.BaseAPI {
|
|
|
125
125
|
return new runtime.JSONApiResponse(response, (jsonValue) => (0, models_1.RosettaConstructionCombineResponseFromJSON)(jsonValue));
|
|
126
126
|
}
|
|
127
127
|
/**
|
|
128
|
-
* Take unsigned transaction and signature, combine both and return signed transaction
|
|
128
|
+
* Take unsigned transaction and signature, combine both and return signed transaction
|
|
129
129
|
* Create Network Transaction from Signatures
|
|
130
130
|
*/
|
|
131
131
|
async rosettaConstructionCombine(requestParameters, initOverrides) {
|
|
@@ -245,7 +245,7 @@ class RosettaApi extends runtime.BaseAPI {
|
|
|
245
245
|
return await response.value();
|
|
246
246
|
}
|
|
247
247
|
/**
|
|
248
|
-
* Generate
|
|
248
|
+
* Generate and unsigned transaction from operations and metadata
|
|
249
249
|
* Generate an Unsigned Transaction and Signing Payloads
|
|
250
250
|
*/
|
|
251
251
|
async rosettaConstructionPayloadsRaw(requestParameters, initOverrides) {
|
|
@@ -265,7 +265,7 @@ class RosettaApi extends runtime.BaseAPI {
|
|
|
265
265
|
return new runtime.JSONApiResponse(response, (jsonValue) => (0, models_1.RosettaConstructionPayloadResponseFromJSON)(jsonValue));
|
|
266
266
|
}
|
|
267
267
|
/**
|
|
268
|
-
* Generate
|
|
268
|
+
* Generate and unsigned transaction from operations and metadata
|
|
269
269
|
* Generate an Unsigned Transaction and Signing Payloads
|
|
270
270
|
*/
|
|
271
271
|
async rosettaConstructionPayloads(requestParameters, initOverrides) {
|
|
@@ -301,7 +301,7 @@ class RosettaApi extends runtime.BaseAPI {
|
|
|
301
301
|
return await response.value();
|
|
302
302
|
}
|
|
303
303
|
/**
|
|
304
|
-
* Submit a pre-signed transaction to the node.
|
|
304
|
+
* Submit a pre-signed transaction to the node.
|
|
305
305
|
* Submit a Signed Transaction
|
|
306
306
|
*/
|
|
307
307
|
async rosettaConstructionSubmitRaw(requestParameters, initOverrides) {
|
|
@@ -321,7 +321,7 @@ class RosettaApi extends runtime.BaseAPI {
|
|
|
321
321
|
return new runtime.JSONApiResponse(response, (jsonValue) => (0, models_1.RosettaConstructionSubmitResponseFromJSON)(jsonValue));
|
|
322
322
|
}
|
|
323
323
|
/**
|
|
324
|
-
* Submit a pre-signed transaction to the node.
|
|
324
|
+
* Submit a pre-signed transaction to the node.
|
|
325
325
|
* Submit a Signed Transaction
|
|
326
326
|
*/
|
|
327
327
|
async rosettaConstructionSubmit(requestParameters, initOverrides) {
|
|
@@ -329,7 +329,7 @@ class RosettaApi extends runtime.BaseAPI {
|
|
|
329
329
|
return await response.value();
|
|
330
330
|
}
|
|
331
331
|
/**
|
|
332
|
-
* Retrieves a list of
|
|
332
|
+
* Retrieves a list of transcations currently in the mempool for a given network.
|
|
333
333
|
* Get All Mempool Transactions
|
|
334
334
|
*/
|
|
335
335
|
async rosettaMempoolRaw(requestParameters, initOverrides) {
|
|
@@ -349,7 +349,7 @@ class RosettaApi extends runtime.BaseAPI {
|
|
|
349
349
|
return new runtime.JSONApiResponse(response, (jsonValue) => (0, models_1.RosettaMempoolResponseFromJSON)(jsonValue));
|
|
350
350
|
}
|
|
351
351
|
/**
|
|
352
|
-
* Retrieves a list of
|
|
352
|
+
* Retrieves a list of transcations currently in the mempool for a given network.
|
|
353
353
|
* Get All Mempool Transactions
|
|
354
354
|
*/
|
|
355
355
|
async rosettaMempool(requestParameters, initOverrides) {
|
|
@@ -45,6 +45,12 @@ export interface ChainTip {
|
|
|
45
45
|
* @memberof ChainTip
|
|
46
46
|
*/
|
|
47
47
|
microblock_sequence?: number;
|
|
48
|
+
/**
|
|
49
|
+
* the current burn chain block height
|
|
50
|
+
* @type {number}
|
|
51
|
+
* @memberof ChainTip
|
|
52
|
+
*/
|
|
53
|
+
burn_block_height: number;
|
|
48
54
|
}
|
|
49
55
|
export declare function ChainTipFromJSON(json: any): ChainTip;
|
|
50
56
|
export declare function ChainTipFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChainTip;
|
|
@@ -29,6 +29,7 @@ function ChainTipFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
29
29
|
'index_block_hash': json['index_block_hash'],
|
|
30
30
|
'microblock_hash': !(0, runtime_1.exists)(json, 'microblock_hash') ? undefined : json['microblock_hash'],
|
|
31
31
|
'microblock_sequence': !(0, runtime_1.exists)(json, 'microblock_sequence') ? undefined : json['microblock_sequence'],
|
|
32
|
+
'burn_block_height': json['burn_block_height'],
|
|
32
33
|
};
|
|
33
34
|
}
|
|
34
35
|
exports.ChainTipFromJSONTyped = ChainTipFromJSONTyped;
|
|
@@ -45,6 +46,7 @@ function ChainTipToJSON(value) {
|
|
|
45
46
|
'index_block_hash': value.index_block_hash,
|
|
46
47
|
'microblock_hash': value.microblock_hash,
|
|
47
48
|
'microblock_sequence': value.microblock_sequence,
|
|
49
|
+
'burn_block_height': value.burn_block_height,
|
|
48
50
|
};
|
|
49
51
|
}
|
|
50
52
|
exports.ChainTipToJSON = ChainTipToJSON;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ChainTip.js","sourceRoot":"","sources":["../../../src/generated/models/ChainTip.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAEH,wCAA+C;
|
|
1
|
+
{"version":3,"file":"ChainTip.js","sourceRoot":"","sources":["../../../src/generated/models/ChainTip.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAEH,wCAA+C;AA6C/C,SAAgB,gBAAgB,CAAC,IAAS;IACtC,OAAO,qBAAqB,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC9C,CAAC;AAFD,4CAEC;AAED,SAAgB,qBAAqB,CAAC,IAAS,EAAE,mBAA4B;IACzE,IAAI,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,KAAK,IAAI,CAAC,EAAE;QACzC,OAAO,IAAI,CAAC;KACf;IACD,OAAO;QAEH,cAAc,EAAE,IAAI,CAAC,cAAc,CAAC;QACpC,YAAY,EAAE,IAAI,CAAC,YAAY,CAAC;QAChC,kBAAkB,EAAE,IAAI,CAAC,kBAAkB,CAAC;QAC5C,iBAAiB,EAAE,CAAC,IAAA,gBAAM,EAAC,IAAI,EAAE,iBAAiB,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC;QACzF,qBAAqB,EAAE,CAAC,IAAA,gBAAM,EAAC,IAAI,EAAE,qBAAqB,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,qBAAqB,CAAC;QACrG,mBAAmB,EAAE,IAAI,CAAC,mBAAmB,CAAC;KACjD,CAAC;AACN,CAAC;AAbD,sDAaC;AAED,SAAgB,cAAc,CAAC,KAAuB;IAClD,IAAI,KAAK,KAAK,SAAS,EAAE;QACrB,OAAO,SAAS,CAAC;KACpB;IACD,IAAI,KAAK,KAAK,IAAI,EAAE;QAChB,OAAO,IAAI,CAAC;KACf;IACD,OAAO;QAEH,cAAc,EAAE,KAAK,CAAC,YAAY;QAClC,YAAY,EAAE,KAAK,CAAC,UAAU;QAC9B,kBAAkB,EAAE,KAAK,CAAC,gBAAgB;QAC1C,iBAAiB,EAAE,KAAK,CAAC,eAAe;QACxC,qBAAqB,EAAE,KAAK,CAAC,mBAAmB;QAChD,mBAAmB,EAAE,KAAK,CAAC,iBAAiB;KAC/C,CAAC;AACN,CAAC;AAhBD,wCAgBC"}
|
|
@@ -64,7 +64,8 @@ export interface InboundStxTransfer {
|
|
|
64
64
|
*/
|
|
65
65
|
export declare enum InboundStxTransferTransferTypeEnum {
|
|
66
66
|
bulk_send = "bulk-send",
|
|
67
|
-
stx_transfer = "stx-transfer"
|
|
67
|
+
stx_transfer = "stx-transfer",
|
|
68
|
+
stx_transfer_memo = "stx-transfer-memo"
|
|
68
69
|
}
|
|
69
70
|
export declare function InboundStxTransferFromJSON(json: any): InboundStxTransfer;
|
|
70
71
|
export declare function InboundStxTransferFromJSONTyped(json: any, ignoreDiscriminator: boolean): InboundStxTransfer;
|
|
@@ -22,6 +22,7 @@ var InboundStxTransferTransferTypeEnum;
|
|
|
22
22
|
(function (InboundStxTransferTransferTypeEnum) {
|
|
23
23
|
InboundStxTransferTransferTypeEnum["bulk_send"] = "bulk-send";
|
|
24
24
|
InboundStxTransferTransferTypeEnum["stx_transfer"] = "stx-transfer";
|
|
25
|
+
InboundStxTransferTransferTypeEnum["stx_transfer_memo"] = "stx-transfer-memo";
|
|
25
26
|
})(InboundStxTransferTransferTypeEnum = exports.InboundStxTransferTransferTypeEnum || (exports.InboundStxTransferTransferTypeEnum = {}));
|
|
26
27
|
function InboundStxTransferFromJSON(json) {
|
|
27
28
|
return InboundStxTransferFromJSONTyped(json, false);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"InboundStxTransfer.js","sourceRoot":"","sources":["../../../src/generated/models/InboundStxTransfer.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAqDH;;;EAGE;AACF,IAAY,
|
|
1
|
+
{"version":3,"file":"InboundStxTransfer.js","sourceRoot":"","sources":["../../../src/generated/models/InboundStxTransfer.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAqDH;;;EAGE;AACF,IAAY,kCAIX;AAJD,WAAY,kCAAkC;IAC1C,6DAAuB,CAAA;IACvB,mEAA6B,CAAA;IAC7B,6EAAuC,CAAA;AAC3C,CAAC,EAJW,kCAAkC,GAAlC,0CAAkC,KAAlC,0CAAkC,QAI7C;AAED,SAAgB,0BAA0B,CAAC,IAAS;IAChD,OAAO,+BAA+B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACxD,CAAC;AAFD,gEAEC;AAED,SAAgB,+BAA+B,CAAC,IAAS,EAAE,mBAA4B;IACnF,IAAI,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,KAAK,IAAI,CAAC,EAAE;QACzC,OAAO,IAAI,CAAC;KACf;IACD,OAAO;QAEH,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC;QACxB,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC;QACxB,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC;QACpB,cAAc,EAAE,IAAI,CAAC,cAAc,CAAC;QACpC,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC;QACtB,eAAe,EAAE,IAAI,CAAC,eAAe,CAAC;QACtC,UAAU,EAAE,IAAI,CAAC,UAAU,CAAC;KAC/B,CAAC;AACN,CAAC;AAdD,0EAcC;AAED,SAAgB,wBAAwB,CAAC,KAAiC;IACtE,IAAI,KAAK,KAAK,SAAS,EAAE;QACrB,OAAO,SAAS,CAAC;KACpB;IACD,IAAI,KAAK,KAAK,IAAI,EAAE;QAChB,OAAO,IAAI,CAAC;KACf;IACD,OAAO;QAEH,QAAQ,EAAE,KAAK,CAAC,MAAM;QACtB,QAAQ,EAAE,KAAK,CAAC,MAAM;QACtB,MAAM,EAAE,KAAK,CAAC,IAAI;QAClB,cAAc,EAAE,KAAK,CAAC,YAAY;QAClC,OAAO,EAAE,KAAK,CAAC,KAAK;QACpB,eAAe,EAAE,KAAK,CAAC,aAAa;QACpC,UAAU,EAAE,KAAK,CAAC,QAAQ;KAC7B,CAAC;AACN,CAAC;AAjBD,4DAiBC"}
|
|
@@ -27,6 +27,7 @@ function ServerStatusResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
27
27
|
return {
|
|
28
28
|
'server_version': !(0, runtime_1.exists)(json, 'server_version') ? undefined : json['server_version'],
|
|
29
29
|
'status': json['status'],
|
|
30
|
+
'pox_v1_unlock_height': !(0, runtime_1.exists)(json, 'pox_v1_unlock_height') ? undefined : json['pox_v1_unlock_height'],
|
|
30
31
|
'chain_tip': !(0, runtime_1.exists)(json, 'chain_tip') ? undefined : (0, _1.ChainTipFromJSON)(json['chain_tip']),
|
|
31
32
|
};
|
|
32
33
|
}
|
|
@@ -41,6 +42,7 @@ function ServerStatusResponseToJSON(value) {
|
|
|
41
42
|
return {
|
|
42
43
|
'server_version': value.server_version,
|
|
43
44
|
'status': value.status,
|
|
45
|
+
'pox_v1_unlock_height': value.pox_v1_unlock_height,
|
|
44
46
|
'chain_tip': (0, _1.ChainTipToJSON)(value.chain_tip),
|
|
45
47
|
};
|
|
46
48
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ServerStatusResponse.js","sourceRoot":"","sources":["../../../src/generated/models/ServerStatusResponse.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAEH,wCAA+C;AAC/C,yBAKY;
|
|
1
|
+
{"version":3,"file":"ServerStatusResponse.js","sourceRoot":"","sources":["../../../src/generated/models/ServerStatusResponse.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAEH,wCAA+C;AAC/C,yBAKY;AAkCZ,SAAgB,4BAA4B,CAAC,IAAS;IAClD,OAAO,iCAAiC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC1D,CAAC;AAFD,oEAEC;AAED,SAAgB,iCAAiC,CAAC,IAAS,EAAE,mBAA4B;IACrF,IAAI,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,KAAK,IAAI,CAAC,EAAE;QACzC,OAAO,IAAI,CAAC;KACf;IACD,OAAO;QAEH,gBAAgB,EAAE,CAAC,IAAA,gBAAM,EAAC,IAAI,EAAE,gBAAgB,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC;QACtF,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC;QACxB,sBAAsB,EAAE,CAAC,IAAA,gBAAM,EAAC,IAAI,EAAE,sBAAsB,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,sBAAsB,CAAC;QACxG,WAAW,EAAE,CAAC,IAAA,gBAAM,EAAC,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAA,mBAAgB,EAAC,IAAI,CAAC,WAAW,CAAC,CAAC;KAC5F,CAAC;AACN,CAAC;AAXD,8EAWC;AAED,SAAgB,0BAA0B,CAAC,KAAmC;IAC1E,IAAI,KAAK,KAAK,SAAS,EAAE;QACrB,OAAO,SAAS,CAAC;KACpB;IACD,IAAI,KAAK,KAAK,IAAI,EAAE;QAChB,OAAO,IAAI,CAAC;KACf;IACD,OAAO;QAEH,gBAAgB,EAAE,KAAK,CAAC,cAAc;QACtC,QAAQ,EAAE,KAAK,CAAC,MAAM;QACtB,sBAAsB,EAAE,KAAK,CAAC,oBAAoB;QAClD,WAAW,EAAE,IAAA,iBAAc,EAAC,KAAK,CAAC,SAAS,CAAC;KAC/C,CAAC;AACN,CAAC;AAdD,gEAcC"}
|
package/lib/index.umd.js
CHANGED
|
@@ -1971,7 +1971,8 @@
|
|
|
1971
1971
|
'block_hash': json['block_hash'],
|
|
1972
1972
|
'index_block_hash': json['index_block_hash'],
|
|
1973
1973
|
'microblock_hash': !exists(json, 'microblock_hash') ? undefined : json['microblock_hash'],
|
|
1974
|
-
'microblock_sequence': !exists(json, 'microblock_sequence') ? undefined : json['microblock_sequence']
|
|
1974
|
+
'microblock_sequence': !exists(json, 'microblock_sequence') ? undefined : json['microblock_sequence'],
|
|
1975
|
+
'burn_block_height': json['burn_block_height']
|
|
1975
1976
|
};
|
|
1976
1977
|
}
|
|
1977
1978
|
function ChainTipToJSON(value) {
|
|
@@ -1988,7 +1989,8 @@
|
|
|
1988
1989
|
'block_hash': value.block_hash,
|
|
1989
1990
|
'index_block_hash': value.index_block_hash,
|
|
1990
1991
|
'microblock_hash': value.microblock_hash,
|
|
1991
|
-
'microblock_sequence': value.microblock_sequence
|
|
1992
|
+
'microblock_sequence': value.microblock_sequence,
|
|
1993
|
+
'burn_block_height': value.burn_block_height
|
|
1992
1994
|
};
|
|
1993
1995
|
}
|
|
1994
1996
|
|
|
@@ -2575,6 +2577,7 @@
|
|
|
2575
2577
|
(function (InboundStxTransferTransferTypeEnum) {
|
|
2576
2578
|
InboundStxTransferTransferTypeEnum["bulk_send"] = "bulk-send";
|
|
2577
2579
|
InboundStxTransferTransferTypeEnum["stx_transfer"] = "stx-transfer";
|
|
2580
|
+
InboundStxTransferTransferTypeEnum["stx_transfer_memo"] = "stx-transfer-memo";
|
|
2578
2581
|
})(exports.InboundStxTransferTransferTypeEnum || (exports.InboundStxTransferTransferTypeEnum = {}));
|
|
2579
2582
|
|
|
2580
2583
|
function InboundStxTransferFromJSON(json) {
|
|
@@ -5845,6 +5848,7 @@
|
|
|
5845
5848
|
return {
|
|
5846
5849
|
'server_version': !exists(json, 'server_version') ? undefined : json['server_version'],
|
|
5847
5850
|
'status': json['status'],
|
|
5851
|
+
'pox_v1_unlock_height': !exists(json, 'pox_v1_unlock_height') ? undefined : json['pox_v1_unlock_height'],
|
|
5848
5852
|
'chain_tip': !exists(json, 'chain_tip') ? undefined : ChainTipFromJSON(json['chain_tip'])
|
|
5849
5853
|
};
|
|
5850
5854
|
}
|
|
@@ -5860,6 +5864,7 @@
|
|
|
5860
5864
|
return {
|
|
5861
5865
|
'server_version': value.server_version,
|
|
5862
5866
|
'status': value.status,
|
|
5867
|
+
'pox_v1_unlock_height': value.pox_v1_unlock_height,
|
|
5863
5868
|
'chain_tip': ChainTipToJSON(value.chain_tip)
|
|
5864
5869
|
};
|
|
5865
5870
|
}
|
|
@@ -6945,7 +6950,7 @@
|
|
|
6945
6950
|
}
|
|
6946
6951
|
}
|
|
6947
6952
|
/**
|
|
6948
|
-
* Retrieves transaction details for a given
|
|
6953
|
+
* Retrieves transaction details for a given Transcation Id `tx_id`, for a given account or contract Identifier.
|
|
6949
6954
|
* Get account transaction information for specific transaction
|
|
6950
6955
|
*/
|
|
6951
6956
|
;
|
|
@@ -6979,7 +6984,7 @@
|
|
|
6979
6984
|
}
|
|
6980
6985
|
}
|
|
6981
6986
|
/**
|
|
6982
|
-
* Retrieves transaction details for a given
|
|
6987
|
+
* Retrieves transaction details for a given Transcation Id `tx_id`, for a given account or contract Identifier.
|
|
6983
6988
|
* Get account transaction information for specific transaction
|
|
6984
6989
|
*/
|
|
6985
6990
|
;
|
|
@@ -8725,7 +8730,7 @@
|
|
|
8725
8730
|
|
|
8726
8731
|
/**
|
|
8727
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).
|
|
8728
|
-
* Non fungible tokens metadata for contract
|
|
8733
|
+
* Non fungible tokens metadata for contract id
|
|
8729
8734
|
*/
|
|
8730
8735
|
_proto.getContractNftMetadataRaw = function getContractNftMetadataRaw(requestParameters, initOverrides) {
|
|
8731
8736
|
try {
|
|
@@ -8753,7 +8758,7 @@
|
|
|
8753
8758
|
}
|
|
8754
8759
|
/**
|
|
8755
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).
|
|
8756
|
-
* Non fungible tokens metadata for contract
|
|
8761
|
+
* Non fungible tokens metadata for contract id
|
|
8757
8762
|
*/
|
|
8758
8763
|
;
|
|
8759
8764
|
|
|
@@ -9199,7 +9204,7 @@
|
|
|
9199
9204
|
}
|
|
9200
9205
|
}
|
|
9201
9206
|
/**
|
|
9202
|
-
* Take unsigned transaction and signature, combine both and return signed transaction
|
|
9207
|
+
* Take unsigned transaction and signature, combine both and return signed transaction
|
|
9203
9208
|
* Create Network Transaction from Signatures
|
|
9204
9209
|
*/
|
|
9205
9210
|
;
|
|
@@ -9231,7 +9236,7 @@
|
|
|
9231
9236
|
}
|
|
9232
9237
|
}
|
|
9233
9238
|
/**
|
|
9234
|
-
* Take unsigned transaction and signature, combine both and return signed transaction
|
|
9239
|
+
* Take unsigned transaction and signature, combine both and return signed transaction
|
|
9235
9240
|
* Create Network Transaction from Signatures
|
|
9236
9241
|
*/
|
|
9237
9242
|
;
|
|
@@ -9444,7 +9449,7 @@
|
|
|
9444
9449
|
}
|
|
9445
9450
|
}
|
|
9446
9451
|
/**
|
|
9447
|
-
* Generate
|
|
9452
|
+
* Generate and unsigned transaction from operations and metadata
|
|
9448
9453
|
* Generate an Unsigned Transaction and Signing Payloads
|
|
9449
9454
|
*/
|
|
9450
9455
|
;
|
|
@@ -9476,7 +9481,7 @@
|
|
|
9476
9481
|
}
|
|
9477
9482
|
}
|
|
9478
9483
|
/**
|
|
9479
|
-
* Generate
|
|
9484
|
+
* Generate and unsigned transaction from operations and metadata
|
|
9480
9485
|
* Generate an Unsigned Transaction and Signing Payloads
|
|
9481
9486
|
*/
|
|
9482
9487
|
;
|
|
@@ -9542,7 +9547,7 @@
|
|
|
9542
9547
|
}
|
|
9543
9548
|
}
|
|
9544
9549
|
/**
|
|
9545
|
-
* Submit a pre-signed transaction to the node.
|
|
9550
|
+
* Submit a pre-signed transaction to the node.
|
|
9546
9551
|
* Submit a Signed Transaction
|
|
9547
9552
|
*/
|
|
9548
9553
|
;
|
|
@@ -9574,7 +9579,7 @@
|
|
|
9574
9579
|
}
|
|
9575
9580
|
}
|
|
9576
9581
|
/**
|
|
9577
|
-
* Submit a pre-signed transaction to the node.
|
|
9582
|
+
* Submit a pre-signed transaction to the node.
|
|
9578
9583
|
* Submit a Signed Transaction
|
|
9579
9584
|
*/
|
|
9580
9585
|
;
|
|
@@ -9591,7 +9596,7 @@
|
|
|
9591
9596
|
}
|
|
9592
9597
|
}
|
|
9593
9598
|
/**
|
|
9594
|
-
* Retrieves a list of
|
|
9599
|
+
* Retrieves a list of transcations currently in the mempool for a given network.
|
|
9595
9600
|
* Get All Mempool Transactions
|
|
9596
9601
|
*/
|
|
9597
9602
|
;
|
|
@@ -9623,7 +9628,7 @@
|
|
|
9623
9628
|
}
|
|
9624
9629
|
}
|
|
9625
9630
|
/**
|
|
9626
|
-
* Retrieves a list of
|
|
9631
|
+
* Retrieves a list of transcations currently in the mempool for a given network.
|
|
9627
9632
|
* Get All Mempool Transactions
|
|
9628
9633
|
*/
|
|
9629
9634
|
;
|