@stacks/blockchain-api-client 8.0.2 → 8.1.0-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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stacks/blockchain-api-client",
3
- "version": "8.0.2",
3
+ "version": "8.1.0-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",
@@ -840,7 +840,7 @@ export interface paths {
840
840
  };
841
841
  /**
842
842
  * Get account balances
843
- * @description Retrieves total account balance information for a given Address or Contract Identifier. This includes the balances of STX Tokens, Fungible Tokens and Non-Fungible Tokens for the account.
843
+ * @description Retrieves total account balance information for a given Address or Contract Identifier. This includes the balances of STX Tokens, Fungible Tokens and Non-Fungible Tokens for the account.
844
844
  */
845
845
  get: operations["get_account_balance"];
846
846
  put?: never;
@@ -17832,6 +17832,8 @@ export interface operations {
17832
17832
  content: {
17833
17833
  "application/json": {
17834
17834
  balance: string;
17835
+ /** @description Total STX balance considering pending mempool transactions */
17836
+ estimated_balance?: string;
17835
17837
  total_sent: string;
17836
17838
  total_received: string;
17837
17839
  total_fees_sent: string;
@@ -17896,6 +17898,8 @@ export interface operations {
17896
17898
  /** StxBalance */
17897
17899
  stx: {
17898
17900
  balance: string;
17901
+ /** @description Total STX balance considering pending mempool transactions */
17902
+ estimated_balance?: string;
17899
17903
  total_sent: string;
17900
17904
  total_received: string;
17901
17905
  total_fees_sent: string;
@@ -22924,6 +22928,8 @@ export interface operations {
22924
22928
  */
22925
22929
  metadata?: {
22926
22930
  balance: string;
22931
+ /** @description Total STX balance considering pending mempool transactions */
22932
+ estimated_balance?: string;
22927
22933
  total_sent: string;
22928
22934
  total_received: string;
22929
22935
  total_fees_sent: string;