@stacks/blockchain-api-client 8.11.6 → 8.12.0

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.
@@ -1945,6 +1945,8 @@ export interface operations {
1945
1945
  * @example 123
1946
1946
  */
1947
1947
  nonce?: number;
1948
+ /** @description Exclude function_args from contract call responses for smaller transaction sizes. */
1949
+ exclude_function_args?: boolean;
1948
1950
  };
1949
1951
  header?: never;
1950
1952
  path?: never;
@@ -3302,6 +3304,8 @@ export interface operations {
3302
3304
  * @example true
3303
3305
  */
3304
3306
  unanchored?: boolean;
3307
+ /** @description Exclude function_args from contract call responses for smaller transaction sizes. */
3308
+ exclude_function_args?: boolean;
3305
3309
  };
3306
3310
  header?: never;
3307
3311
  path?: never;
@@ -4709,6 +4713,7 @@ export interface operations {
4709
4713
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
4710
4714
  /** @description Status of the transaction */
4711
4715
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
4716
+ replaced_by_tx_id: string | null;
4712
4717
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
4713
4718
  receipt_time: number;
4714
4719
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -4808,6 +4813,7 @@ export interface operations {
4808
4813
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
4809
4814
  /** @description Status of the transaction */
4810
4815
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
4816
+ replaced_by_tx_id: string | null;
4811
4817
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
4812
4818
  receipt_time: number;
4813
4819
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -4907,6 +4913,7 @@ export interface operations {
4907
4913
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
4908
4914
  /** @description Status of the transaction */
4909
4915
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
4916
+ replaced_by_tx_id: string | null;
4910
4917
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
4911
4918
  receipt_time: number;
4912
4919
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -5013,6 +5020,7 @@ export interface operations {
5013
5020
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
5014
5021
  /** @description Status of the transaction */
5015
5022
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
5023
+ replaced_by_tx_id: string | null;
5016
5024
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
5017
5025
  receipt_time: number;
5018
5026
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -5111,6 +5119,7 @@ export interface operations {
5111
5119
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
5112
5120
  /** @description Status of the transaction */
5113
5121
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
5122
+ replaced_by_tx_id: string | null;
5114
5123
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
5115
5124
  receipt_time: number;
5116
5125
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -5209,6 +5218,7 @@ export interface operations {
5209
5218
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
5210
5219
  /** @description Status of the transaction */
5211
5220
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
5221
+ replaced_by_tx_id: string | null;
5212
5222
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
5213
5223
  receipt_time: number;
5214
5224
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -5289,6 +5299,8 @@ export interface operations {
5289
5299
  offset?: number;
5290
5300
  /** @description Results per page */
5291
5301
  limit?: number;
5302
+ /** @description Exclude function_args from contract call responses for smaller transaction sizes. */
5303
+ exclude_function_args?: boolean;
5292
5304
  };
5293
5305
  header?: never;
5294
5306
  path?: never;
@@ -5395,6 +5407,7 @@ export interface operations {
5395
5407
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
5396
5408
  /** @description Status of the transaction */
5397
5409
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
5410
+ replaced_by_tx_id: string | null;
5398
5411
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
5399
5412
  receipt_time: number;
5400
5413
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -5494,6 +5507,7 @@ export interface operations {
5494
5507
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
5495
5508
  /** @description Status of the transaction */
5496
5509
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
5510
+ replaced_by_tx_id: string | null;
5497
5511
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
5498
5512
  receipt_time: number;
5499
5513
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -5593,6 +5607,7 @@ export interface operations {
5593
5607
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
5594
5608
  /** @description Status of the transaction */
5595
5609
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
5610
+ replaced_by_tx_id: string | null;
5596
5611
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
5597
5612
  receipt_time: number;
5598
5613
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -5699,6 +5714,7 @@ export interface operations {
5699
5714
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
5700
5715
  /** @description Status of the transaction */
5701
5716
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
5717
+ replaced_by_tx_id: string | null;
5702
5718
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
5703
5719
  receipt_time: number;
5704
5720
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -5797,6 +5813,7 @@ export interface operations {
5797
5813
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
5798
5814
  /** @description Status of the transaction */
5799
5815
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
5816
+ replaced_by_tx_id: string | null;
5800
5817
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
5801
5818
  receipt_time: number;
5802
5819
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -5895,6 +5912,7 @@ export interface operations {
5895
5912
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
5896
5913
  /** @description Status of the transaction */
5897
5914
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
5915
+ replaced_by_tx_id: string | null;
5898
5916
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
5899
5917
  receipt_time: number;
5900
5918
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -6140,6 +6158,8 @@ export interface operations {
6140
6158
  * @example true
6141
6159
  */
6142
6160
  unanchored?: boolean;
6161
+ /** @description Exclude function_args from contract call responses for smaller transaction sizes. */
6162
+ exclude_function_args?: boolean;
6143
6163
  };
6144
6164
  header?: never;
6145
6165
  path: {
@@ -7549,6 +7569,7 @@ export interface operations {
7549
7569
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
7550
7570
  /** @description Status of the transaction */
7551
7571
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
7572
+ replaced_by_tx_id: string | null;
7552
7573
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
7553
7574
  receipt_time: number;
7554
7575
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -7648,6 +7669,7 @@ export interface operations {
7648
7669
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
7649
7670
  /** @description Status of the transaction */
7650
7671
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
7672
+ replaced_by_tx_id: string | null;
7651
7673
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
7652
7674
  receipt_time: number;
7653
7675
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -7747,6 +7769,7 @@ export interface operations {
7747
7769
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
7748
7770
  /** @description Status of the transaction */
7749
7771
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
7772
+ replaced_by_tx_id: string | null;
7750
7773
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
7751
7774
  receipt_time: number;
7752
7775
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -7853,6 +7876,7 @@ export interface operations {
7853
7876
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
7854
7877
  /** @description Status of the transaction */
7855
7878
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
7879
+ replaced_by_tx_id: string | null;
7856
7880
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
7857
7881
  receipt_time: number;
7858
7882
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -7951,6 +7975,7 @@ export interface operations {
7951
7975
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
7952
7976
  /** @description Status of the transaction */
7953
7977
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
7978
+ replaced_by_tx_id: string | null;
7954
7979
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
7955
7980
  receipt_time: number;
7956
7981
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -8049,6 +8074,7 @@ export interface operations {
8049
8074
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
8050
8075
  /** @description Status of the transaction */
8051
8076
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
8077
+ replaced_by_tx_id: string | null;
8052
8078
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
8053
8079
  receipt_time: number;
8054
8080
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -8144,6 +8170,8 @@ export interface operations {
8144
8170
  offset?: number;
8145
8171
  /** @description Results per page */
8146
8172
  limit?: number;
8173
+ /** @description Exclude function_args from contract call responses for smaller transaction sizes. */
8174
+ exclude_function_args?: boolean;
8147
8175
  };
8148
8176
  header?: never;
8149
8177
  path: {
@@ -9497,6 +9525,8 @@ export interface operations {
9497
9525
  offset?: number;
9498
9526
  /** @description Results per page */
9499
9527
  limit?: number;
9528
+ /** @description Exclude function_args from contract call responses for smaller transaction sizes. */
9529
+ exclude_function_args?: boolean;
9500
9530
  };
9501
9531
  header?: never;
9502
9532
  path: {
@@ -18018,6 +18048,8 @@ export interface operations {
18018
18048
  unanchored?: boolean;
18019
18049
  /** @description Block hash or block height. Return data representing the state up until that point in time, rather than the current block. Note - Use either of the query parameters but not both at a time. */
18020
18050
  until_block?: string;
18051
+ /** @description Exclude function_args from contract call responses for smaller transaction sizes. */
18052
+ exclude_function_args?: boolean;
18021
18053
  };
18022
18054
  header?: never;
18023
18055
  path: {
@@ -22353,6 +22385,8 @@ export interface operations {
22353
22385
  * @example true
22354
22386
  */
22355
22387
  unanchored?: boolean;
22388
+ /** @description Exclude function_args from contract call responses for smaller transaction sizes. */
22389
+ exclude_function_args?: boolean;
22356
22390
  };
22357
22391
  header?: never;
22358
22392
  path: {
@@ -22461,6 +22495,7 @@ export interface operations {
22461
22495
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
22462
22496
  /** @description Status of the transaction */
22463
22497
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
22498
+ replaced_by_tx_id: string | null;
22464
22499
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
22465
22500
  receipt_time: number;
22466
22501
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -22560,6 +22595,7 @@ export interface operations {
22560
22595
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
22561
22596
  /** @description Status of the transaction */
22562
22597
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
22598
+ replaced_by_tx_id: string | null;
22563
22599
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
22564
22600
  receipt_time: number;
22565
22601
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -22659,6 +22695,7 @@ export interface operations {
22659
22695
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
22660
22696
  /** @description Status of the transaction */
22661
22697
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
22698
+ replaced_by_tx_id: string | null;
22662
22699
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
22663
22700
  receipt_time: number;
22664
22701
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -22765,6 +22802,7 @@ export interface operations {
22765
22802
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
22766
22803
  /** @description Status of the transaction */
22767
22804
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
22805
+ replaced_by_tx_id: string | null;
22768
22806
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
22769
22807
  receipt_time: number;
22770
22808
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -22863,6 +22901,7 @@ export interface operations {
22863
22901
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
22864
22902
  /** @description Status of the transaction */
22865
22903
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
22904
+ replaced_by_tx_id: string | null;
22866
22905
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
22867
22906
  receipt_time: number;
22868
22907
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -22961,6 +23000,7 @@ export interface operations {
22961
23000
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
22962
23001
  /** @description Status of the transaction */
22963
23002
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
23003
+ replaced_by_tx_id: string | null;
22964
23004
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
22965
23005
  receipt_time: number;
22966
23006
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -24605,6 +24645,7 @@ export interface operations {
24605
24645
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
24606
24646
  /** @description Status of the transaction */
24607
24647
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
24648
+ replaced_by_tx_id: string | null;
24608
24649
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
24609
24650
  receipt_time: number;
24610
24651
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -24704,6 +24745,7 @@ export interface operations {
24704
24745
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
24705
24746
  /** @description Status of the transaction */
24706
24747
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
24748
+ replaced_by_tx_id: string | null;
24707
24749
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
24708
24750
  receipt_time: number;
24709
24751
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -24803,6 +24845,7 @@ export interface operations {
24803
24845
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
24804
24846
  /** @description Status of the transaction */
24805
24847
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
24848
+ replaced_by_tx_id: string | null;
24806
24849
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
24807
24850
  receipt_time: number;
24808
24851
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -24909,6 +24952,7 @@ export interface operations {
24909
24952
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
24910
24953
  /** @description Status of the transaction */
24911
24954
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
24955
+ replaced_by_tx_id: string | null;
24912
24956
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
24913
24957
  receipt_time: number;
24914
24958
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -25007,6 +25051,7 @@ export interface operations {
25007
25051
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
25008
25052
  /** @description Status of the transaction */
25009
25053
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
25054
+ replaced_by_tx_id: string | null;
25010
25055
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
25011
25056
  receipt_time: number;
25012
25057
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -25105,6 +25150,7 @@ export interface operations {
25105
25150
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
25106
25151
  /** @description Status of the transaction */
25107
25152
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
25153
+ replaced_by_tx_id: string | null;
25108
25154
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
25109
25155
  receipt_time: number;
25110
25156
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -25222,6 +25268,7 @@ export interface operations {
25222
25268
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
25223
25269
  /** @description Status of the transaction */
25224
25270
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
25271
+ replaced_by_tx_id: string | null;
25225
25272
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
25226
25273
  receipt_time: number;
25227
25274
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -25321,6 +25368,7 @@ export interface operations {
25321
25368
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
25322
25369
  /** @description Status of the transaction */
25323
25370
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
25371
+ replaced_by_tx_id: string | null;
25324
25372
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
25325
25373
  receipt_time: number;
25326
25374
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -25420,6 +25468,7 @@ export interface operations {
25420
25468
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
25421
25469
  /** @description Status of the transaction */
25422
25470
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
25471
+ replaced_by_tx_id: string | null;
25423
25472
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
25424
25473
  receipt_time: number;
25425
25474
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -25526,6 +25575,7 @@ export interface operations {
25526
25575
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
25527
25576
  /** @description Status of the transaction */
25528
25577
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
25578
+ replaced_by_tx_id: string | null;
25529
25579
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
25530
25580
  receipt_time: number;
25531
25581
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -25624,6 +25674,7 @@ export interface operations {
25624
25674
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
25625
25675
  /** @description Status of the transaction */
25626
25676
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
25677
+ replaced_by_tx_id: string | null;
25627
25678
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
25628
25679
  receipt_time: number;
25629
25680
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -25722,6 +25773,7 @@ export interface operations {
25722
25773
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
25723
25774
  /** @description Status of the transaction */
25724
25775
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
25776
+ replaced_by_tx_id: string | null;
25725
25777
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
25726
25778
  receipt_time: number;
25727
25779
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -29651,6 +29703,8 @@ export interface operations {
29651
29703
  limit?: number;
29652
29704
  /** @description Result offset */
29653
29705
  offset?: number;
29706
+ /** @description Exclude function_args from contract call responses for smaller transaction sizes. */
29707
+ exclude_function_args?: boolean;
29654
29708
  };
29655
29709
  header?: never;
29656
29710
  path: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stacks/blockchain-api-client",
3
- "version": "8.11.6",
3
+ "version": "8.12.0",
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",
@@ -1945,6 +1945,8 @@ export interface operations {
1945
1945
  * @example 123
1946
1946
  */
1947
1947
  nonce?: number;
1948
+ /** @description Exclude function_args from contract call responses for smaller transaction sizes. */
1949
+ exclude_function_args?: boolean;
1948
1950
  };
1949
1951
  header?: never;
1950
1952
  path?: never;
@@ -3302,6 +3304,8 @@ export interface operations {
3302
3304
  * @example true
3303
3305
  */
3304
3306
  unanchored?: boolean;
3307
+ /** @description Exclude function_args from contract call responses for smaller transaction sizes. */
3308
+ exclude_function_args?: boolean;
3305
3309
  };
3306
3310
  header?: never;
3307
3311
  path?: never;
@@ -4709,6 +4713,7 @@ export interface operations {
4709
4713
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
4710
4714
  /** @description Status of the transaction */
4711
4715
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
4716
+ replaced_by_tx_id: string | null;
4712
4717
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
4713
4718
  receipt_time: number;
4714
4719
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -4808,6 +4813,7 @@ export interface operations {
4808
4813
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
4809
4814
  /** @description Status of the transaction */
4810
4815
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
4816
+ replaced_by_tx_id: string | null;
4811
4817
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
4812
4818
  receipt_time: number;
4813
4819
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -4907,6 +4913,7 @@ export interface operations {
4907
4913
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
4908
4914
  /** @description Status of the transaction */
4909
4915
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
4916
+ replaced_by_tx_id: string | null;
4910
4917
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
4911
4918
  receipt_time: number;
4912
4919
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -5013,6 +5020,7 @@ export interface operations {
5013
5020
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
5014
5021
  /** @description Status of the transaction */
5015
5022
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
5023
+ replaced_by_tx_id: string | null;
5016
5024
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
5017
5025
  receipt_time: number;
5018
5026
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -5111,6 +5119,7 @@ export interface operations {
5111
5119
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
5112
5120
  /** @description Status of the transaction */
5113
5121
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
5122
+ replaced_by_tx_id: string | null;
5114
5123
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
5115
5124
  receipt_time: number;
5116
5125
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -5209,6 +5218,7 @@ export interface operations {
5209
5218
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
5210
5219
  /** @description Status of the transaction */
5211
5220
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
5221
+ replaced_by_tx_id: string | null;
5212
5222
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
5213
5223
  receipt_time: number;
5214
5224
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -5289,6 +5299,8 @@ export interface operations {
5289
5299
  offset?: number;
5290
5300
  /** @description Results per page */
5291
5301
  limit?: number;
5302
+ /** @description Exclude function_args from contract call responses for smaller transaction sizes. */
5303
+ exclude_function_args?: boolean;
5292
5304
  };
5293
5305
  header?: never;
5294
5306
  path?: never;
@@ -5395,6 +5407,7 @@ export interface operations {
5395
5407
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
5396
5408
  /** @description Status of the transaction */
5397
5409
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
5410
+ replaced_by_tx_id: string | null;
5398
5411
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
5399
5412
  receipt_time: number;
5400
5413
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -5494,6 +5507,7 @@ export interface operations {
5494
5507
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
5495
5508
  /** @description Status of the transaction */
5496
5509
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
5510
+ replaced_by_tx_id: string | null;
5497
5511
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
5498
5512
  receipt_time: number;
5499
5513
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -5593,6 +5607,7 @@ export interface operations {
5593
5607
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
5594
5608
  /** @description Status of the transaction */
5595
5609
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
5610
+ replaced_by_tx_id: string | null;
5596
5611
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
5597
5612
  receipt_time: number;
5598
5613
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -5699,6 +5714,7 @@ export interface operations {
5699
5714
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
5700
5715
  /** @description Status of the transaction */
5701
5716
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
5717
+ replaced_by_tx_id: string | null;
5702
5718
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
5703
5719
  receipt_time: number;
5704
5720
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -5797,6 +5813,7 @@ export interface operations {
5797
5813
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
5798
5814
  /** @description Status of the transaction */
5799
5815
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
5816
+ replaced_by_tx_id: string | null;
5800
5817
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
5801
5818
  receipt_time: number;
5802
5819
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -5895,6 +5912,7 @@ export interface operations {
5895
5912
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
5896
5913
  /** @description Status of the transaction */
5897
5914
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
5915
+ replaced_by_tx_id: string | null;
5898
5916
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
5899
5917
  receipt_time: number;
5900
5918
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -6140,6 +6158,8 @@ export interface operations {
6140
6158
  * @example true
6141
6159
  */
6142
6160
  unanchored?: boolean;
6161
+ /** @description Exclude function_args from contract call responses for smaller transaction sizes. */
6162
+ exclude_function_args?: boolean;
6143
6163
  };
6144
6164
  header?: never;
6145
6165
  path: {
@@ -7549,6 +7569,7 @@ export interface operations {
7549
7569
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
7550
7570
  /** @description Status of the transaction */
7551
7571
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
7572
+ replaced_by_tx_id: string | null;
7552
7573
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
7553
7574
  receipt_time: number;
7554
7575
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -7648,6 +7669,7 @@ export interface operations {
7648
7669
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
7649
7670
  /** @description Status of the transaction */
7650
7671
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
7672
+ replaced_by_tx_id: string | null;
7651
7673
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
7652
7674
  receipt_time: number;
7653
7675
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -7747,6 +7769,7 @@ export interface operations {
7747
7769
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
7748
7770
  /** @description Status of the transaction */
7749
7771
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
7772
+ replaced_by_tx_id: string | null;
7750
7773
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
7751
7774
  receipt_time: number;
7752
7775
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -7853,6 +7876,7 @@ export interface operations {
7853
7876
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
7854
7877
  /** @description Status of the transaction */
7855
7878
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
7879
+ replaced_by_tx_id: string | null;
7856
7880
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
7857
7881
  receipt_time: number;
7858
7882
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -7951,6 +7975,7 @@ export interface operations {
7951
7975
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
7952
7976
  /** @description Status of the transaction */
7953
7977
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
7978
+ replaced_by_tx_id: string | null;
7954
7979
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
7955
7980
  receipt_time: number;
7956
7981
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -8049,6 +8074,7 @@ export interface operations {
8049
8074
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
8050
8075
  /** @description Status of the transaction */
8051
8076
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
8077
+ replaced_by_tx_id: string | null;
8052
8078
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
8053
8079
  receipt_time: number;
8054
8080
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -8144,6 +8170,8 @@ export interface operations {
8144
8170
  offset?: number;
8145
8171
  /** @description Results per page */
8146
8172
  limit?: number;
8173
+ /** @description Exclude function_args from contract call responses for smaller transaction sizes. */
8174
+ exclude_function_args?: boolean;
8147
8175
  };
8148
8176
  header?: never;
8149
8177
  path: {
@@ -9497,6 +9525,8 @@ export interface operations {
9497
9525
  offset?: number;
9498
9526
  /** @description Results per page */
9499
9527
  limit?: number;
9528
+ /** @description Exclude function_args from contract call responses for smaller transaction sizes. */
9529
+ exclude_function_args?: boolean;
9500
9530
  };
9501
9531
  header?: never;
9502
9532
  path: {
@@ -18018,6 +18048,8 @@ export interface operations {
18018
18048
  unanchored?: boolean;
18019
18049
  /** @description Block hash or block height. Return data representing the state up until that point in time, rather than the current block. Note - Use either of the query parameters but not both at a time. */
18020
18050
  until_block?: string;
18051
+ /** @description Exclude function_args from contract call responses for smaller transaction sizes. */
18052
+ exclude_function_args?: boolean;
18021
18053
  };
18022
18054
  header?: never;
18023
18055
  path: {
@@ -22353,6 +22385,8 @@ export interface operations {
22353
22385
  * @example true
22354
22386
  */
22355
22387
  unanchored?: boolean;
22388
+ /** @description Exclude function_args from contract call responses for smaller transaction sizes. */
22389
+ exclude_function_args?: boolean;
22356
22390
  };
22357
22391
  header?: never;
22358
22392
  path: {
@@ -22461,6 +22495,7 @@ export interface operations {
22461
22495
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
22462
22496
  /** @description Status of the transaction */
22463
22497
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
22498
+ replaced_by_tx_id: string | null;
22464
22499
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
22465
22500
  receipt_time: number;
22466
22501
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -22560,6 +22595,7 @@ export interface operations {
22560
22595
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
22561
22596
  /** @description Status of the transaction */
22562
22597
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
22598
+ replaced_by_tx_id: string | null;
22563
22599
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
22564
22600
  receipt_time: number;
22565
22601
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -22659,6 +22695,7 @@ export interface operations {
22659
22695
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
22660
22696
  /** @description Status of the transaction */
22661
22697
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
22698
+ replaced_by_tx_id: string | null;
22662
22699
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
22663
22700
  receipt_time: number;
22664
22701
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -22765,6 +22802,7 @@ export interface operations {
22765
22802
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
22766
22803
  /** @description Status of the transaction */
22767
22804
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
22805
+ replaced_by_tx_id: string | null;
22768
22806
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
22769
22807
  receipt_time: number;
22770
22808
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -22863,6 +22901,7 @@ export interface operations {
22863
22901
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
22864
22902
  /** @description Status of the transaction */
22865
22903
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
22904
+ replaced_by_tx_id: string | null;
22866
22905
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
22867
22906
  receipt_time: number;
22868
22907
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -22961,6 +23000,7 @@ export interface operations {
22961
23000
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
22962
23001
  /** @description Status of the transaction */
22963
23002
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
23003
+ replaced_by_tx_id: string | null;
22964
23004
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
22965
23005
  receipt_time: number;
22966
23006
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -24605,6 +24645,7 @@ export interface operations {
24605
24645
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
24606
24646
  /** @description Status of the transaction */
24607
24647
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
24648
+ replaced_by_tx_id: string | null;
24608
24649
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
24609
24650
  receipt_time: number;
24610
24651
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -24704,6 +24745,7 @@ export interface operations {
24704
24745
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
24705
24746
  /** @description Status of the transaction */
24706
24747
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
24748
+ replaced_by_tx_id: string | null;
24707
24749
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
24708
24750
  receipt_time: number;
24709
24751
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -24803,6 +24845,7 @@ export interface operations {
24803
24845
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
24804
24846
  /** @description Status of the transaction */
24805
24847
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
24848
+ replaced_by_tx_id: string | null;
24806
24849
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
24807
24850
  receipt_time: number;
24808
24851
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -24909,6 +24952,7 @@ export interface operations {
24909
24952
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
24910
24953
  /** @description Status of the transaction */
24911
24954
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
24955
+ replaced_by_tx_id: string | null;
24912
24956
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
24913
24957
  receipt_time: number;
24914
24958
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -25007,6 +25051,7 @@ export interface operations {
25007
25051
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
25008
25052
  /** @description Status of the transaction */
25009
25053
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
25054
+ replaced_by_tx_id: string | null;
25010
25055
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
25011
25056
  receipt_time: number;
25012
25057
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -25105,6 +25150,7 @@ export interface operations {
25105
25150
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
25106
25151
  /** @description Status of the transaction */
25107
25152
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
25153
+ replaced_by_tx_id: string | null;
25108
25154
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
25109
25155
  receipt_time: number;
25110
25156
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -25222,6 +25268,7 @@ export interface operations {
25222
25268
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
25223
25269
  /** @description Status of the transaction */
25224
25270
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
25271
+ replaced_by_tx_id: string | null;
25225
25272
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
25226
25273
  receipt_time: number;
25227
25274
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -25321,6 +25368,7 @@ export interface operations {
25321
25368
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
25322
25369
  /** @description Status of the transaction */
25323
25370
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
25371
+ replaced_by_tx_id: string | null;
25324
25372
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
25325
25373
  receipt_time: number;
25326
25374
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -25420,6 +25468,7 @@ export interface operations {
25420
25468
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
25421
25469
  /** @description Status of the transaction */
25422
25470
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
25471
+ replaced_by_tx_id: string | null;
25423
25472
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
25424
25473
  receipt_time: number;
25425
25474
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -25526,6 +25575,7 @@ export interface operations {
25526
25575
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
25527
25576
  /** @description Status of the transaction */
25528
25577
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
25578
+ replaced_by_tx_id: string | null;
25529
25579
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
25530
25580
  receipt_time: number;
25531
25581
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -25624,6 +25674,7 @@ export interface operations {
25624
25674
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
25625
25675
  /** @description Status of the transaction */
25626
25676
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
25677
+ replaced_by_tx_id: string | null;
25627
25678
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
25628
25679
  receipt_time: number;
25629
25680
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -25722,6 +25773,7 @@ export interface operations {
25722
25773
  anchor_mode: "on_chain_only" | "off_chain_only" | "any";
25723
25774
  /** @description Status of the transaction */
25724
25775
  tx_status: "pending" | "dropped_replace_by_fee" | "dropped_replace_across_fork" | "dropped_too_expensive" | "dropped_stale_garbage_collect" | "dropped_problematic";
25776
+ replaced_by_tx_id: string | null;
25725
25777
  /** @description A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. */
25726
25778
  receipt_time: number;
25727
25779
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
@@ -29651,6 +29703,8 @@ export interface operations {
29651
29703
  limit?: number;
29652
29704
  /** @description Result offset */
29653
29705
  offset?: number;
29706
+ /** @description Exclude function_args from contract call responses for smaller transaction sizes. */
29707
+ exclude_function_args?: boolean;
29654
29708
  };
29655
29709
  header?: never;
29656
29710
  path: {