@stacks/blockchain-api-client 7.13.0-beta.1 → 7.13.1-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.
|
@@ -175,7 +175,7 @@ export interface AccountsApiInterface {
|
|
|
175
175
|
*/
|
|
176
176
|
getAccountStxBalance(requestParameters: GetAccountStxBalanceRequest, initOverrides?: RequestInit): Promise<object>;
|
|
177
177
|
/**
|
|
178
|
-
* Retrieves a list of all Transactions for a given Address or Contract Identifier. More information on Transaction types can be found [here](https://docs.stacks.co/understand-stacks/transactions#types). If you need to actively monitor new transactions for an address or contract id, we highly recommend subscribing to [WebSockets or Socket.io](https://github.com/hirosystems/stacks-blockchain-api/tree/master/client) for real-time updates.
|
|
178
|
+
* **NOTE:** This endpoint is deprecated in favor of [Get address transactions](/api/get-address-transactions). Retrieves a list of all Transactions for a given Address or Contract Identifier. More information on Transaction types can be found [here](https://docs.stacks.co/understand-stacks/transactions#types). If you need to actively monitor new transactions for an address or contract id, we highly recommend subscribing to [WebSockets or Socket.io](https://github.com/hirosystems/stacks-blockchain-api/tree/master/client) for real-time updates.
|
|
179
179
|
* @summary Get account transactions
|
|
180
180
|
* @param {string} principal Stacks address or a Contract identifier
|
|
181
181
|
* @param {number} [limit] max number of account transactions to fetch
|
|
@@ -189,7 +189,7 @@ export interface AccountsApiInterface {
|
|
|
189
189
|
*/
|
|
190
190
|
getAccountTransactionsRaw(requestParameters: GetAccountTransactionsRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<AddressTransactionsListResponse>>;
|
|
191
191
|
/**
|
|
192
|
-
* Retrieves a list of all Transactions for a given Address or Contract Identifier. More information on Transaction types can be found [here](https://docs.stacks.co/understand-stacks/transactions#types). If you need to actively monitor new transactions for an address or contract id, we highly recommend subscribing to [WebSockets or Socket.io](https://github.com/hirosystems/stacks-blockchain-api/tree/master/client) for real-time updates.
|
|
192
|
+
* **NOTE:** This endpoint is deprecated in favor of [Get address transactions](/api/get-address-transactions). Retrieves a list of all Transactions for a given Address or Contract Identifier. More information on Transaction types can be found [here](https://docs.stacks.co/understand-stacks/transactions#types). If you need to actively monitor new transactions for an address or contract id, we highly recommend subscribing to [WebSockets or Socket.io](https://github.com/hirosystems/stacks-blockchain-api/tree/master/client) for real-time updates.
|
|
193
193
|
* Get account transactions
|
|
194
194
|
*/
|
|
195
195
|
getAccountTransactions(requestParameters: GetAccountTransactionsRequest, initOverrides?: RequestInit): Promise<AddressTransactionsListResponse>;
|
|
@@ -213,7 +213,7 @@ export interface AccountsApiInterface {
|
|
|
213
213
|
*/
|
|
214
214
|
getAccountTransactionsWithTransfers(requestParameters: GetAccountTransactionsWithTransfersRequest, initOverrides?: RequestInit): Promise<AddressTransactionsWithTransfersListResponse>;
|
|
215
215
|
/**
|
|
216
|
-
* Retrieves transaction details for a given Transaction Id `tx_id`, for a given account or contract Identifier.
|
|
216
|
+
* **NOTE:** This endpoint is deprecated in favor of [Get events for an address transaction](/api/get-address-transaction-events). Retrieves transaction details for a given Transaction Id `tx_id`, for a given account or contract Identifier.
|
|
217
217
|
* @summary Get account transaction information for specific transaction
|
|
218
218
|
* @param {string} principal Stacks address or a contract identifier
|
|
219
219
|
* @param {string} txId Transaction id
|
|
@@ -223,7 +223,7 @@ export interface AccountsApiInterface {
|
|
|
223
223
|
*/
|
|
224
224
|
getSingleTransactionWithTransfersRaw(requestParameters: GetSingleTransactionWithTransfersRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<AddressTransactionWithTransfers>>;
|
|
225
225
|
/**
|
|
226
|
-
* Retrieves transaction details for a given Transaction Id `tx_id`, for a given account or contract Identifier.
|
|
226
|
+
* **NOTE:** This endpoint is deprecated in favor of [Get events for an address transaction](/api/get-address-transaction-events). Retrieves transaction details for a given Transaction Id `tx_id`, for a given account or contract Identifier.
|
|
227
227
|
* Get account transaction information for specific transaction
|
|
228
228
|
*/
|
|
229
229
|
getSingleTransactionWithTransfers(requestParameters: GetSingleTransactionWithTransfersRequest, initOverrides?: RequestInit): Promise<AddressTransactionWithTransfers>;
|
|
@@ -293,12 +293,12 @@ export declare class AccountsApi extends runtime.BaseAPI implements AccountsApiI
|
|
|
293
293
|
*/
|
|
294
294
|
getAccountStxBalance(requestParameters: GetAccountStxBalanceRequest, initOverrides?: RequestInit): Promise<object>;
|
|
295
295
|
/**
|
|
296
|
-
* Retrieves a list of all Transactions for a given Address or Contract Identifier. More information on Transaction types can be found [here](https://docs.stacks.co/understand-stacks/transactions#types). If you need to actively monitor new transactions for an address or contract id, we highly recommend subscribing to [WebSockets or Socket.io](https://github.com/hirosystems/stacks-blockchain-api/tree/master/client) for real-time updates.
|
|
296
|
+
* **NOTE:** This endpoint is deprecated in favor of [Get address transactions](/api/get-address-transactions). Retrieves a list of all Transactions for a given Address or Contract Identifier. More information on Transaction types can be found [here](https://docs.stacks.co/understand-stacks/transactions#types). If you need to actively monitor new transactions for an address or contract id, we highly recommend subscribing to [WebSockets or Socket.io](https://github.com/hirosystems/stacks-blockchain-api/tree/master/client) for real-time updates.
|
|
297
297
|
* Get account transactions
|
|
298
298
|
*/
|
|
299
299
|
getAccountTransactionsRaw(requestParameters: GetAccountTransactionsRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<AddressTransactionsListResponse>>;
|
|
300
300
|
/**
|
|
301
|
-
* Retrieves a list of all Transactions for a given Address or Contract Identifier. More information on Transaction types can be found [here](https://docs.stacks.co/understand-stacks/transactions#types). If you need to actively monitor new transactions for an address or contract id, we highly recommend subscribing to [WebSockets or Socket.io](https://github.com/hirosystems/stacks-blockchain-api/tree/master/client) for real-time updates.
|
|
301
|
+
* **NOTE:** This endpoint is deprecated in favor of [Get address transactions](/api/get-address-transactions). Retrieves a list of all Transactions for a given Address or Contract Identifier. More information on Transaction types can be found [here](https://docs.stacks.co/understand-stacks/transactions#types). If you need to actively monitor new transactions for an address or contract id, we highly recommend subscribing to [WebSockets or Socket.io](https://github.com/hirosystems/stacks-blockchain-api/tree/master/client) for real-time updates.
|
|
302
302
|
* Get account transactions
|
|
303
303
|
*/
|
|
304
304
|
getAccountTransactions(requestParameters: GetAccountTransactionsRequest, initOverrides?: RequestInit): Promise<AddressTransactionsListResponse>;
|
|
@@ -313,12 +313,12 @@ export declare class AccountsApi extends runtime.BaseAPI implements AccountsApiI
|
|
|
313
313
|
*/
|
|
314
314
|
getAccountTransactionsWithTransfers(requestParameters: GetAccountTransactionsWithTransfersRequest, initOverrides?: RequestInit): Promise<AddressTransactionsWithTransfersListResponse>;
|
|
315
315
|
/**
|
|
316
|
-
* Retrieves transaction details for a given Transaction Id `tx_id`, for a given account or contract Identifier.
|
|
316
|
+
* **NOTE:** This endpoint is deprecated in favor of [Get events for an address transaction](/api/get-address-transaction-events). Retrieves transaction details for a given Transaction Id `tx_id`, for a given account or contract Identifier.
|
|
317
317
|
* Get account transaction information for specific transaction
|
|
318
318
|
*/
|
|
319
319
|
getSingleTransactionWithTransfersRaw(requestParameters: GetSingleTransactionWithTransfersRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<AddressTransactionWithTransfers>>;
|
|
320
320
|
/**
|
|
321
|
-
* Retrieves transaction details for a given Transaction Id `tx_id`, for a given account or contract Identifier.
|
|
321
|
+
* **NOTE:** This endpoint is deprecated in favor of [Get events for an address transaction](/api/get-address-transaction-events). Retrieves transaction details for a given Transaction Id `tx_id`, for a given account or contract Identifier.
|
|
322
322
|
* Get account transaction information for specific transaction
|
|
323
323
|
*/
|
|
324
324
|
getSingleTransactionWithTransfers(requestParameters: GetSingleTransactionWithTransfersRequest, initOverrides?: RequestInit): Promise<AddressTransactionWithTransfers>;
|
|
@@ -228,7 +228,7 @@ class AccountsApi extends runtime.BaseAPI {
|
|
|
228
228
|
return await response.value();
|
|
229
229
|
}
|
|
230
230
|
/**
|
|
231
|
-
* Retrieves a list of all Transactions for a given Address or Contract Identifier. More information on Transaction types can be found [here](https://docs.stacks.co/understand-stacks/transactions#types). If you need to actively monitor new transactions for an address or contract id, we highly recommend subscribing to [WebSockets or Socket.io](https://github.com/hirosystems/stacks-blockchain-api/tree/master/client) for real-time updates.
|
|
231
|
+
* **NOTE:** This endpoint is deprecated in favor of [Get address transactions](/api/get-address-transactions). Retrieves a list of all Transactions for a given Address or Contract Identifier. More information on Transaction types can be found [here](https://docs.stacks.co/understand-stacks/transactions#types). If you need to actively monitor new transactions for an address or contract id, we highly recommend subscribing to [WebSockets or Socket.io](https://github.com/hirosystems/stacks-blockchain-api/tree/master/client) for real-time updates.
|
|
232
232
|
* Get account transactions
|
|
233
233
|
*/
|
|
234
234
|
async getAccountTransactionsRaw(requestParameters, initOverrides) {
|
|
@@ -261,7 +261,7 @@ class AccountsApi extends runtime.BaseAPI {
|
|
|
261
261
|
return new runtime.JSONApiResponse(response, (jsonValue) => (0, models_1.AddressTransactionsListResponseFromJSON)(jsonValue));
|
|
262
262
|
}
|
|
263
263
|
/**
|
|
264
|
-
* Retrieves a list of all Transactions for a given Address or Contract Identifier. More information on Transaction types can be found [here](https://docs.stacks.co/understand-stacks/transactions#types). If you need to actively monitor new transactions for an address or contract id, we highly recommend subscribing to [WebSockets or Socket.io](https://github.com/hirosystems/stacks-blockchain-api/tree/master/client) for real-time updates.
|
|
264
|
+
* **NOTE:** This endpoint is deprecated in favor of [Get address transactions](/api/get-address-transactions). Retrieves a list of all Transactions for a given Address or Contract Identifier. More information on Transaction types can be found [here](https://docs.stacks.co/understand-stacks/transactions#types). If you need to actively monitor new transactions for an address or contract id, we highly recommend subscribing to [WebSockets or Socket.io](https://github.com/hirosystems/stacks-blockchain-api/tree/master/client) for real-time updates.
|
|
265
265
|
* Get account transactions
|
|
266
266
|
*/
|
|
267
267
|
async getAccountTransactions(requestParameters, initOverrides) {
|
|
@@ -310,7 +310,7 @@ class AccountsApi extends runtime.BaseAPI {
|
|
|
310
310
|
return await response.value();
|
|
311
311
|
}
|
|
312
312
|
/**
|
|
313
|
-
* Retrieves transaction details for a given Transaction Id `tx_id`, for a given account or contract Identifier.
|
|
313
|
+
* **NOTE:** This endpoint is deprecated in favor of [Get events for an address transaction](/api/get-address-transaction-events). Retrieves transaction details for a given Transaction Id `tx_id`, for a given account or contract Identifier.
|
|
314
314
|
* Get account transaction information for specific transaction
|
|
315
315
|
*/
|
|
316
316
|
async getSingleTransactionWithTransfersRaw(requestParameters, initOverrides) {
|
|
@@ -331,7 +331,7 @@ class AccountsApi extends runtime.BaseAPI {
|
|
|
331
331
|
return new runtime.JSONApiResponse(response, (jsonValue) => (0, models_1.AddressTransactionWithTransfersFromJSON)(jsonValue));
|
|
332
332
|
}
|
|
333
333
|
/**
|
|
334
|
-
* Retrieves transaction details for a given Transaction Id `tx_id`, for a given account or contract Identifier.
|
|
334
|
+
* **NOTE:** This endpoint is deprecated in favor of [Get events for an address transaction](/api/get-address-transaction-events). Retrieves transaction details for a given Transaction Id `tx_id`, for a given account or contract Identifier.
|
|
335
335
|
* Get account transaction information for specific transaction
|
|
336
336
|
*/
|
|
337
337
|
async getSingleTransactionWithTransfers(requestParameters, initOverrides) {
|
package/lib/index.umd.js
CHANGED
|
@@ -7387,7 +7387,7 @@
|
|
|
7387
7387
|
}
|
|
7388
7388
|
}
|
|
7389
7389
|
/**
|
|
7390
|
-
* Retrieves a list of all Transactions for a given Address or Contract Identifier. More information on Transaction types can be found [here](https://docs.stacks.co/understand-stacks/transactions#types). If you need to actively monitor new transactions for an address or contract id, we highly recommend subscribing to [WebSockets or Socket.io](https://github.com/hirosystems/stacks-blockchain-api/tree/master/client) for real-time updates.
|
|
7390
|
+
* **NOTE:** This endpoint is deprecated in favor of [Get address transactions](/api/get-address-transactions). Retrieves a list of all Transactions for a given Address or Contract Identifier. More information on Transaction types can be found [here](https://docs.stacks.co/understand-stacks/transactions#types). If you need to actively monitor new transactions for an address or contract id, we highly recommend subscribing to [WebSockets or Socket.io](https://github.com/hirosystems/stacks-blockchain-api/tree/master/client) for real-time updates.
|
|
7391
7391
|
* Get account transactions
|
|
7392
7392
|
*/
|
|
7393
7393
|
;
|
|
@@ -7438,7 +7438,7 @@
|
|
|
7438
7438
|
}
|
|
7439
7439
|
}
|
|
7440
7440
|
/**
|
|
7441
|
-
* Retrieves a list of all Transactions for a given Address or Contract Identifier. More information on Transaction types can be found [here](https://docs.stacks.co/understand-stacks/transactions#types). If you need to actively monitor new transactions for an address or contract id, we highly recommend subscribing to [WebSockets or Socket.io](https://github.com/hirosystems/stacks-blockchain-api/tree/master/client) for real-time updates.
|
|
7441
|
+
* **NOTE:** This endpoint is deprecated in favor of [Get address transactions](/api/get-address-transactions). Retrieves a list of all Transactions for a given Address or Contract Identifier. More information on Transaction types can be found [here](https://docs.stacks.co/understand-stacks/transactions#types). If you need to actively monitor new transactions for an address or contract id, we highly recommend subscribing to [WebSockets or Socket.io](https://github.com/hirosystems/stacks-blockchain-api/tree/master/client) for real-time updates.
|
|
7442
7442
|
* Get account transactions
|
|
7443
7443
|
*/
|
|
7444
7444
|
;
|
|
@@ -7523,7 +7523,7 @@
|
|
|
7523
7523
|
}
|
|
7524
7524
|
}
|
|
7525
7525
|
/**
|
|
7526
|
-
* Retrieves transaction details for a given Transaction Id `tx_id`, for a given account or contract Identifier.
|
|
7526
|
+
* **NOTE:** This endpoint is deprecated in favor of [Get events for an address transaction](/api/get-address-transaction-events). Retrieves transaction details for a given Transaction Id `tx_id`, for a given account or contract Identifier.
|
|
7527
7527
|
* Get account transaction information for specific transaction
|
|
7528
7528
|
*/
|
|
7529
7529
|
;
|
|
@@ -7557,7 +7557,7 @@
|
|
|
7557
7557
|
}
|
|
7558
7558
|
}
|
|
7559
7559
|
/**
|
|
7560
|
-
* Retrieves transaction details for a given Transaction Id `tx_id`, for a given account or contract Identifier.
|
|
7560
|
+
* **NOTE:** This endpoint is deprecated in favor of [Get events for an address transaction](/api/get-address-transaction-events). Retrieves transaction details for a given Transaction Id `tx_id`, for a given account or contract Identifier.
|
|
7561
7561
|
* Get account transaction information for specific transaction
|
|
7562
7562
|
*/
|
|
7563
7563
|
;
|