@stacks/blockchain-api-client 9.0.0 → 9.0.2
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/schema.d.ts +132 -125
- package/lib/index.d.ts +1 -0
- package/lib/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/generated/schema.d.ts +132 -125
- package/src/index.ts +1 -0
|
@@ -527,7 +527,8 @@ export interface paths {
|
|
|
527
527
|
};
|
|
528
528
|
/**
|
|
529
529
|
* Get recent microblocks
|
|
530
|
-
* @
|
|
530
|
+
* @deprecated
|
|
531
|
+
* @description Retrieves a list of microblocks. **This endpoint is deprecated.** Microblocks were removed in the Stacks Nakamoto upgrade and are no longer produced.
|
|
531
532
|
*
|
|
532
533
|
* If you need to actively monitor new microblocks, we highly recommend subscribing to [WebSockets or Socket.io](https://github.com/hirosystems/stacks-blockchain-api/tree/master/client) for real-time updates.
|
|
533
534
|
*/
|
|
@@ -549,7 +550,8 @@ export interface paths {
|
|
|
549
550
|
};
|
|
550
551
|
/**
|
|
551
552
|
* Get microblock
|
|
552
|
-
* @
|
|
553
|
+
* @deprecated
|
|
554
|
+
* @description Retrieves a specific microblock by `hash`. **This endpoint is deprecated.** Microblocks were removed in the Stacks Nakamoto upgrade and are no longer produced.
|
|
553
555
|
*/
|
|
554
556
|
get: operations["get_microblock_by_hash"];
|
|
555
557
|
put?: never;
|
|
@@ -569,7 +571,8 @@ export interface paths {
|
|
|
569
571
|
};
|
|
570
572
|
/**
|
|
571
573
|
* Get the list of current transactions that belong to unanchored microblocks
|
|
572
|
-
* @
|
|
574
|
+
* @deprecated
|
|
575
|
+
* @description Retrieves transactions that have been streamed in microblocks but not yet accepted or rejected in an anchor block. **This endpoint is deprecated.** Microblocks were removed in the Stacks Nakamoto upgrade and are no longer produced.
|
|
573
576
|
*/
|
|
574
577
|
get: operations["get_unanchored_txs"];
|
|
575
578
|
put?: never;
|
|
@@ -1139,7 +1142,7 @@ export interface paths {
|
|
|
1139
1142
|
get?: never;
|
|
1140
1143
|
put?: never;
|
|
1141
1144
|
/**
|
|
1142
|
-
*
|
|
1145
|
+
* Get BTC regtest tokens
|
|
1143
1146
|
* @description Add 0.01 BTC token to the specified regtest BTC address.
|
|
1144
1147
|
*
|
|
1145
1148
|
* The endpoint returns the transaction ID, which you can use to view the transaction in a regtest Bitcoin block
|
|
@@ -1161,7 +1164,11 @@ export interface paths {
|
|
|
1161
1164
|
path?: never;
|
|
1162
1165
|
cookie?: never;
|
|
1163
1166
|
};
|
|
1164
|
-
/**
|
|
1167
|
+
/**
|
|
1168
|
+
* Get BTC balance for address
|
|
1169
|
+
* @deprecated
|
|
1170
|
+
* @description Get the BTC balance for an address. **This endpoint is deprecated.**
|
|
1171
|
+
*/
|
|
1165
1172
|
get: operations["get_btc_balance"];
|
|
1166
1173
|
put?: never;
|
|
1167
1174
|
post?: never;
|
|
@@ -2713,7 +2720,7 @@ export interface operations {
|
|
|
2713
2720
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
2714
2721
|
tx_index: number;
|
|
2715
2722
|
/** @description Status of the transaction */
|
|
2716
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
2723
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
2717
2724
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
2718
2725
|
tx_result: {
|
|
2719
2726
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -2963,7 +2970,7 @@ export interface operations {
|
|
|
2963
2970
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
2964
2971
|
tx_index: number;
|
|
2965
2972
|
/** @description Status of the transaction */
|
|
2966
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
2973
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
2967
2974
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
2968
2975
|
tx_result: {
|
|
2969
2976
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -3213,7 +3220,7 @@ export interface operations {
|
|
|
3213
3220
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
3214
3221
|
tx_index: number;
|
|
3215
3222
|
/** @description Status of the transaction */
|
|
3216
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
3223
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
3217
3224
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
3218
3225
|
tx_result: {
|
|
3219
3226
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -3470,7 +3477,7 @@ export interface operations {
|
|
|
3470
3477
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
3471
3478
|
tx_index: number;
|
|
3472
3479
|
/** @description Status of the transaction */
|
|
3473
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
3480
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
3474
3481
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
3475
3482
|
tx_result: {
|
|
3476
3483
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -3719,7 +3726,7 @@ export interface operations {
|
|
|
3719
3726
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
3720
3727
|
tx_index: number;
|
|
3721
3728
|
/** @description Status of the transaction */
|
|
3722
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
3729
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
3723
3730
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
3724
3731
|
tx_result: {
|
|
3725
3732
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -3968,7 +3975,7 @@ export interface operations {
|
|
|
3968
3975
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
3969
3976
|
tx_index: number;
|
|
3970
3977
|
/** @description Status of the transaction */
|
|
3971
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
3978
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
3972
3979
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
3973
3980
|
tx_result: {
|
|
3974
3981
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -4279,7 +4286,7 @@ export interface operations {
|
|
|
4279
4286
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
4280
4287
|
tx_index: number;
|
|
4281
4288
|
/** @description Status of the transaction */
|
|
4282
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
4289
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
4283
4290
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
4284
4291
|
tx_result: {
|
|
4285
4292
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -4529,7 +4536,7 @@ export interface operations {
|
|
|
4529
4536
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
4530
4537
|
tx_index: number;
|
|
4531
4538
|
/** @description Status of the transaction */
|
|
4532
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
4539
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
4533
4540
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
4534
4541
|
tx_result: {
|
|
4535
4542
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -4779,7 +4786,7 @@ export interface operations {
|
|
|
4779
4786
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
4780
4787
|
tx_index: number;
|
|
4781
4788
|
/** @description Status of the transaction */
|
|
4782
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
4789
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
4783
4790
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
4784
4791
|
tx_result: {
|
|
4785
4792
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -5036,7 +5043,7 @@ export interface operations {
|
|
|
5036
5043
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
5037
5044
|
tx_index: number;
|
|
5038
5045
|
/** @description Status of the transaction */
|
|
5039
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
5046
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
5040
5047
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
5041
5048
|
tx_result: {
|
|
5042
5049
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -5285,7 +5292,7 @@ export interface operations {
|
|
|
5285
5292
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
5286
5293
|
tx_index: number;
|
|
5287
5294
|
/** @description Status of the transaction */
|
|
5288
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
5295
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
5289
5296
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
5290
5297
|
tx_result: {
|
|
5291
5298
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -5534,7 +5541,7 @@ export interface operations {
|
|
|
5534
5541
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
5535
5542
|
tx_index: number;
|
|
5536
5543
|
/** @description Status of the transaction */
|
|
5537
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
5544
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
5538
5545
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
5539
5546
|
tx_result: {
|
|
5540
5547
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -7765,7 +7772,7 @@ export interface operations {
|
|
|
7765
7772
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
7766
7773
|
tx_index: number;
|
|
7767
7774
|
/** @description Status of the transaction */
|
|
7768
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
7775
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
7769
7776
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
7770
7777
|
tx_result: {
|
|
7771
7778
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -8015,7 +8022,7 @@ export interface operations {
|
|
|
8015
8022
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
8016
8023
|
tx_index: number;
|
|
8017
8024
|
/** @description Status of the transaction */
|
|
8018
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
8025
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
8019
8026
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
8020
8027
|
tx_result: {
|
|
8021
8028
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -8265,7 +8272,7 @@ export interface operations {
|
|
|
8265
8272
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
8266
8273
|
tx_index: number;
|
|
8267
8274
|
/** @description Status of the transaction */
|
|
8268
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
8275
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
8269
8276
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
8270
8277
|
tx_result: {
|
|
8271
8278
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -8522,7 +8529,7 @@ export interface operations {
|
|
|
8522
8529
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
8523
8530
|
tx_index: number;
|
|
8524
8531
|
/** @description Status of the transaction */
|
|
8525
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
8532
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
8526
8533
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
8527
8534
|
tx_result: {
|
|
8528
8535
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -8771,7 +8778,7 @@ export interface operations {
|
|
|
8771
8778
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
8772
8779
|
tx_index: number;
|
|
8773
8780
|
/** @description Status of the transaction */
|
|
8774
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
8781
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
8775
8782
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
8776
8783
|
tx_result: {
|
|
8777
8784
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -9020,7 +9027,7 @@ export interface operations {
|
|
|
9020
9027
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
9021
9028
|
tx_index: number;
|
|
9022
9029
|
/** @description Status of the transaction */
|
|
9023
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
9030
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
9024
9031
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
9025
9032
|
tx_result: {
|
|
9026
9033
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -10200,7 +10207,7 @@ export interface operations {
|
|
|
10200
10207
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
10201
10208
|
tx_index: number;
|
|
10202
10209
|
/** @description Status of the transaction */
|
|
10203
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
10210
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
10204
10211
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
10205
10212
|
tx_result: {
|
|
10206
10213
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -10450,7 +10457,7 @@ export interface operations {
|
|
|
10450
10457
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
10451
10458
|
tx_index: number;
|
|
10452
10459
|
/** @description Status of the transaction */
|
|
10453
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
10460
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
10454
10461
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
10455
10462
|
tx_result: {
|
|
10456
10463
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -10700,7 +10707,7 @@ export interface operations {
|
|
|
10700
10707
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
10701
10708
|
tx_index: number;
|
|
10702
10709
|
/** @description Status of the transaction */
|
|
10703
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
10710
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
10704
10711
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
10705
10712
|
tx_result: {
|
|
10706
10713
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -10957,7 +10964,7 @@ export interface operations {
|
|
|
10957
10964
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
10958
10965
|
tx_index: number;
|
|
10959
10966
|
/** @description Status of the transaction */
|
|
10960
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
10967
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
10961
10968
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
10962
10969
|
tx_result: {
|
|
10963
10970
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -11206,7 +11213,7 @@ export interface operations {
|
|
|
11206
11213
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
11207
11214
|
tx_index: number;
|
|
11208
11215
|
/** @description Status of the transaction */
|
|
11209
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
11216
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
11210
11217
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
11211
11218
|
tx_result: {
|
|
11212
11219
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -11455,7 +11462,7 @@ export interface operations {
|
|
|
11455
11462
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
11456
11463
|
tx_index: number;
|
|
11457
11464
|
/** @description Status of the transaction */
|
|
11458
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
11465
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
11459
11466
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
11460
11467
|
tx_result: {
|
|
11461
11468
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -11769,7 +11776,7 @@ export interface operations {
|
|
|
11769
11776
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
11770
11777
|
tx_index: number;
|
|
11771
11778
|
/** @description Status of the transaction */
|
|
11772
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
11779
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
11773
11780
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
11774
11781
|
tx_result: {
|
|
11775
11782
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -12019,7 +12026,7 @@ export interface operations {
|
|
|
12019
12026
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
12020
12027
|
tx_index: number;
|
|
12021
12028
|
/** @description Status of the transaction */
|
|
12022
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
12029
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
12023
12030
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
12024
12031
|
tx_result: {
|
|
12025
12032
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -12269,7 +12276,7 @@ export interface operations {
|
|
|
12269
12276
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
12270
12277
|
tx_index: number;
|
|
12271
12278
|
/** @description Status of the transaction */
|
|
12272
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
12279
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
12273
12280
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
12274
12281
|
tx_result: {
|
|
12275
12282
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -12526,7 +12533,7 @@ export interface operations {
|
|
|
12526
12533
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
12527
12534
|
tx_index: number;
|
|
12528
12535
|
/** @description Status of the transaction */
|
|
12529
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
12536
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
12530
12537
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
12531
12538
|
tx_result: {
|
|
12532
12539
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -12775,7 +12782,7 @@ export interface operations {
|
|
|
12775
12782
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
12776
12783
|
tx_index: number;
|
|
12777
12784
|
/** @description Status of the transaction */
|
|
12778
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
12785
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
12779
12786
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
12780
12787
|
tx_result: {
|
|
12781
12788
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -13024,7 +13031,7 @@ export interface operations {
|
|
|
13024
13031
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
13025
13032
|
tx_index: number;
|
|
13026
13033
|
/** @description Status of the transaction */
|
|
13027
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
13034
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
13028
13035
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
13029
13036
|
tx_result: {
|
|
13030
13037
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -13620,7 +13627,7 @@ export interface operations {
|
|
|
13620
13627
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
13621
13628
|
tx_index: number;
|
|
13622
13629
|
/** @description Status of the transaction */
|
|
13623
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
13630
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
13624
13631
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
13625
13632
|
tx_result: {
|
|
13626
13633
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -13870,7 +13877,7 @@ export interface operations {
|
|
|
13870
13877
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
13871
13878
|
tx_index: number;
|
|
13872
13879
|
/** @description Status of the transaction */
|
|
13873
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
13880
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
13874
13881
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
13875
13882
|
tx_result: {
|
|
13876
13883
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -14120,7 +14127,7 @@ export interface operations {
|
|
|
14120
14127
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
14121
14128
|
tx_index: number;
|
|
14122
14129
|
/** @description Status of the transaction */
|
|
14123
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
14130
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
14124
14131
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
14125
14132
|
tx_result: {
|
|
14126
14133
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -14377,7 +14384,7 @@ export interface operations {
|
|
|
14377
14384
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
14378
14385
|
tx_index: number;
|
|
14379
14386
|
/** @description Status of the transaction */
|
|
14380
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
14387
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
14381
14388
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
14382
14389
|
tx_result: {
|
|
14383
14390
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -14626,7 +14633,7 @@ export interface operations {
|
|
|
14626
14633
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
14627
14634
|
tx_index: number;
|
|
14628
14635
|
/** @description Status of the transaction */
|
|
14629
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
14636
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
14630
14637
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
14631
14638
|
tx_result: {
|
|
14632
14639
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -14875,7 +14882,7 @@ export interface operations {
|
|
|
14875
14882
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
14876
14883
|
tx_index: number;
|
|
14877
14884
|
/** @description Status of the transaction */
|
|
14878
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
14885
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
14879
14886
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
14880
14887
|
tx_result: {
|
|
14881
14888
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -15210,7 +15217,7 @@ export interface operations {
|
|
|
15210
15217
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
15211
15218
|
tx_index: number;
|
|
15212
15219
|
/** @description Status of the transaction */
|
|
15213
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
15220
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
15214
15221
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
15215
15222
|
tx_result: {
|
|
15216
15223
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -15460,7 +15467,7 @@ export interface operations {
|
|
|
15460
15467
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
15461
15468
|
tx_index: number;
|
|
15462
15469
|
/** @description Status of the transaction */
|
|
15463
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
15470
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
15464
15471
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
15465
15472
|
tx_result: {
|
|
15466
15473
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -15710,7 +15717,7 @@ export interface operations {
|
|
|
15710
15717
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
15711
15718
|
tx_index: number;
|
|
15712
15719
|
/** @description Status of the transaction */
|
|
15713
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
15720
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
15714
15721
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
15715
15722
|
tx_result: {
|
|
15716
15723
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -15967,7 +15974,7 @@ export interface operations {
|
|
|
15967
15974
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
15968
15975
|
tx_index: number;
|
|
15969
15976
|
/** @description Status of the transaction */
|
|
15970
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
15977
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
15971
15978
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
15972
15979
|
tx_result: {
|
|
15973
15980
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -16216,7 +16223,7 @@ export interface operations {
|
|
|
16216
16223
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
16217
16224
|
tx_index: number;
|
|
16218
16225
|
/** @description Status of the transaction */
|
|
16219
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
16226
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
16220
16227
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
16221
16228
|
tx_result: {
|
|
16222
16229
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -16465,7 +16472,7 @@ export interface operations {
|
|
|
16465
16472
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
16466
16473
|
tx_index: number;
|
|
16467
16474
|
/** @description Status of the transaction */
|
|
16468
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
16475
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
16469
16476
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
16470
16477
|
tx_result: {
|
|
16471
16478
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -16805,7 +16812,7 @@ export interface operations {
|
|
|
16805
16812
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
16806
16813
|
tx_index: number;
|
|
16807
16814
|
/** @description Status of the transaction */
|
|
16808
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
16815
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
16809
16816
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
16810
16817
|
tx_result: {
|
|
16811
16818
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -17055,7 +17062,7 @@ export interface operations {
|
|
|
17055
17062
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
17056
17063
|
tx_index: number;
|
|
17057
17064
|
/** @description Status of the transaction */
|
|
17058
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
17065
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
17059
17066
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
17060
17067
|
tx_result: {
|
|
17061
17068
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -17305,7 +17312,7 @@ export interface operations {
|
|
|
17305
17312
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
17306
17313
|
tx_index: number;
|
|
17307
17314
|
/** @description Status of the transaction */
|
|
17308
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
17315
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
17309
17316
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
17310
17317
|
tx_result: {
|
|
17311
17318
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -17562,7 +17569,7 @@ export interface operations {
|
|
|
17562
17569
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
17563
17570
|
tx_index: number;
|
|
17564
17571
|
/** @description Status of the transaction */
|
|
17565
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
17572
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
17566
17573
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
17567
17574
|
tx_result: {
|
|
17568
17575
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -17811,7 +17818,7 @@ export interface operations {
|
|
|
17811
17818
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
17812
17819
|
tx_index: number;
|
|
17813
17820
|
/** @description Status of the transaction */
|
|
17814
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
17821
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
17815
17822
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
17816
17823
|
tx_result: {
|
|
17817
17824
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -18060,7 +18067,7 @@ export interface operations {
|
|
|
18060
18067
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
18061
18068
|
tx_index: number;
|
|
18062
18069
|
/** @description Status of the transaction */
|
|
18063
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
18070
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
18064
18071
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
18065
18072
|
tx_result: {
|
|
18066
18073
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -18829,7 +18836,7 @@ export interface operations {
|
|
|
18829
18836
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
18830
18837
|
tx_index: number;
|
|
18831
18838
|
/** @description Status of the transaction */
|
|
18832
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
18839
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
18833
18840
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
18834
18841
|
tx_result: {
|
|
18835
18842
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -19079,7 +19086,7 @@ export interface operations {
|
|
|
19079
19086
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
19080
19087
|
tx_index: number;
|
|
19081
19088
|
/** @description Status of the transaction */
|
|
19082
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
19089
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
19083
19090
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
19084
19091
|
tx_result: {
|
|
19085
19092
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -19329,7 +19336,7 @@ export interface operations {
|
|
|
19329
19336
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
19330
19337
|
tx_index: number;
|
|
19331
19338
|
/** @description Status of the transaction */
|
|
19332
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
19339
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
19333
19340
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
19334
19341
|
tx_result: {
|
|
19335
19342
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -19586,7 +19593,7 @@ export interface operations {
|
|
|
19586
19593
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
19587
19594
|
tx_index: number;
|
|
19588
19595
|
/** @description Status of the transaction */
|
|
19589
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
19596
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
19590
19597
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
19591
19598
|
tx_result: {
|
|
19592
19599
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -19835,7 +19842,7 @@ export interface operations {
|
|
|
19835
19842
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
19836
19843
|
tx_index: number;
|
|
19837
19844
|
/** @description Status of the transaction */
|
|
19838
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
19845
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
19839
19846
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
19840
19847
|
tx_result: {
|
|
19841
19848
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -20084,7 +20091,7 @@ export interface operations {
|
|
|
20084
20091
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
20085
20092
|
tx_index: number;
|
|
20086
20093
|
/** @description Status of the transaction */
|
|
20087
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
20094
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
20088
20095
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
20089
20096
|
tx_result: {
|
|
20090
20097
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -21334,7 +21341,7 @@ export interface operations {
|
|
|
21334
21341
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
21335
21342
|
tx_index: number;
|
|
21336
21343
|
/** @description Status of the transaction */
|
|
21337
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
21344
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
21338
21345
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
21339
21346
|
tx_result: {
|
|
21340
21347
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -21584,7 +21591,7 @@ export interface operations {
|
|
|
21584
21591
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
21585
21592
|
tx_index: number;
|
|
21586
21593
|
/** @description Status of the transaction */
|
|
21587
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
21594
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
21588
21595
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
21589
21596
|
tx_result: {
|
|
21590
21597
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -21834,7 +21841,7 @@ export interface operations {
|
|
|
21834
21841
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
21835
21842
|
tx_index: number;
|
|
21836
21843
|
/** @description Status of the transaction */
|
|
21837
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
21844
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
21838
21845
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
21839
21846
|
tx_result: {
|
|
21840
21847
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -22091,7 +22098,7 @@ export interface operations {
|
|
|
22091
22098
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
22092
22099
|
tx_index: number;
|
|
22093
22100
|
/** @description Status of the transaction */
|
|
22094
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
22101
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
22095
22102
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
22096
22103
|
tx_result: {
|
|
22097
22104
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -22340,7 +22347,7 @@ export interface operations {
|
|
|
22340
22347
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
22341
22348
|
tx_index: number;
|
|
22342
22349
|
/** @description Status of the transaction */
|
|
22343
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
22350
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
22344
22351
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
22345
22352
|
tx_result: {
|
|
22346
22353
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -22589,7 +22596,7 @@ export interface operations {
|
|
|
22589
22596
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
22590
22597
|
tx_index: number;
|
|
22591
22598
|
/** @description Status of the transaction */
|
|
22592
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
22599
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
22593
22600
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
22594
22601
|
tx_result: {
|
|
22595
22602
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -22891,7 +22898,7 @@ export interface operations {
|
|
|
22891
22898
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
22892
22899
|
tx_index: number;
|
|
22893
22900
|
/** @description Status of the transaction */
|
|
22894
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
22901
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
22895
22902
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
22896
22903
|
tx_result: {
|
|
22897
22904
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -23141,7 +23148,7 @@ export interface operations {
|
|
|
23141
23148
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
23142
23149
|
tx_index: number;
|
|
23143
23150
|
/** @description Status of the transaction */
|
|
23144
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
23151
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
23145
23152
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
23146
23153
|
tx_result: {
|
|
23147
23154
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -23391,7 +23398,7 @@ export interface operations {
|
|
|
23391
23398
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
23392
23399
|
tx_index: number;
|
|
23393
23400
|
/** @description Status of the transaction */
|
|
23394
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
23401
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
23395
23402
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
23396
23403
|
tx_result: {
|
|
23397
23404
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -23648,7 +23655,7 @@ export interface operations {
|
|
|
23648
23655
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
23649
23656
|
tx_index: number;
|
|
23650
23657
|
/** @description Status of the transaction */
|
|
23651
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
23658
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
23652
23659
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
23653
23660
|
tx_result: {
|
|
23654
23661
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -23897,7 +23904,7 @@ export interface operations {
|
|
|
23897
23904
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
23898
23905
|
tx_index: number;
|
|
23899
23906
|
/** @description Status of the transaction */
|
|
23900
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
23907
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
23901
23908
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
23902
23909
|
tx_result: {
|
|
23903
23910
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -24146,7 +24153,7 @@ export interface operations {
|
|
|
24146
24153
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
24147
24154
|
tx_index: number;
|
|
24148
24155
|
/** @description Status of the transaction */
|
|
24149
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
24156
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
24150
24157
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
24151
24158
|
tx_result: {
|
|
24152
24159
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -24499,7 +24506,7 @@ export interface operations {
|
|
|
24499
24506
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
24500
24507
|
tx_index: number;
|
|
24501
24508
|
/** @description Status of the transaction */
|
|
24502
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
24509
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
24503
24510
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
24504
24511
|
tx_result: {
|
|
24505
24512
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -24749,7 +24756,7 @@ export interface operations {
|
|
|
24749
24756
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
24750
24757
|
tx_index: number;
|
|
24751
24758
|
/** @description Status of the transaction */
|
|
24752
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
24759
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
24753
24760
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
24754
24761
|
tx_result: {
|
|
24755
24762
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -24999,7 +25006,7 @@ export interface operations {
|
|
|
24999
25006
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
25000
25007
|
tx_index: number;
|
|
25001
25008
|
/** @description Status of the transaction */
|
|
25002
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
25009
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
25003
25010
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
25004
25011
|
tx_result: {
|
|
25005
25012
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -25256,7 +25263,7 @@ export interface operations {
|
|
|
25256
25263
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
25257
25264
|
tx_index: number;
|
|
25258
25265
|
/** @description Status of the transaction */
|
|
25259
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
25266
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
25260
25267
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
25261
25268
|
tx_result: {
|
|
25262
25269
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -25505,7 +25512,7 @@ export interface operations {
|
|
|
25505
25512
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
25506
25513
|
tx_index: number;
|
|
25507
25514
|
/** @description Status of the transaction */
|
|
25508
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
25515
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
25509
25516
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
25510
25517
|
tx_result: {
|
|
25511
25518
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -25754,7 +25761,7 @@ export interface operations {
|
|
|
25754
25761
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
25755
25762
|
tx_index: number;
|
|
25756
25763
|
/** @description Status of the transaction */
|
|
25757
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
25764
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
25758
25765
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
25759
25766
|
tx_result: {
|
|
25760
25767
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -27357,7 +27364,7 @@ export interface operations {
|
|
|
27357
27364
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
27358
27365
|
tx_index: number;
|
|
27359
27366
|
/** @description Status of the transaction */
|
|
27360
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
27367
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
27361
27368
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
27362
27369
|
tx_result: {
|
|
27363
27370
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -27607,7 +27614,7 @@ export interface operations {
|
|
|
27607
27614
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
27608
27615
|
tx_index: number;
|
|
27609
27616
|
/** @description Status of the transaction */
|
|
27610
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
27617
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
27611
27618
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
27612
27619
|
tx_result: {
|
|
27613
27620
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -27857,7 +27864,7 @@ export interface operations {
|
|
|
27857
27864
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
27858
27865
|
tx_index: number;
|
|
27859
27866
|
/** @description Status of the transaction */
|
|
27860
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
27867
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
27861
27868
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
27862
27869
|
tx_result: {
|
|
27863
27870
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -28114,7 +28121,7 @@ export interface operations {
|
|
|
28114
28121
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
28115
28122
|
tx_index: number;
|
|
28116
28123
|
/** @description Status of the transaction */
|
|
28117
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
28124
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
28118
28125
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
28119
28126
|
tx_result: {
|
|
28120
28127
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -28363,7 +28370,7 @@ export interface operations {
|
|
|
28363
28370
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
28364
28371
|
tx_index: number;
|
|
28365
28372
|
/** @description Status of the transaction */
|
|
28366
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
28373
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
28367
28374
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
28368
28375
|
tx_result: {
|
|
28369
28376
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -28612,7 +28619,7 @@ export interface operations {
|
|
|
28612
28619
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
28613
28620
|
tx_index: number;
|
|
28614
28621
|
/** @description Status of the transaction */
|
|
28615
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
28622
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
28616
28623
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
28617
28624
|
tx_result: {
|
|
28618
28625
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -30541,7 +30548,7 @@ export interface operations {
|
|
|
30541
30548
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
30542
30549
|
tx_index: number;
|
|
30543
30550
|
/** @description Status of the transaction */
|
|
30544
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
30551
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
30545
30552
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
30546
30553
|
tx_result: {
|
|
30547
30554
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -30791,7 +30798,7 @@ export interface operations {
|
|
|
30791
30798
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
30792
30799
|
tx_index: number;
|
|
30793
30800
|
/** @description Status of the transaction */
|
|
30794
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
30801
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
30795
30802
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
30796
30803
|
tx_result: {
|
|
30797
30804
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -31041,7 +31048,7 @@ export interface operations {
|
|
|
31041
31048
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
31042
31049
|
tx_index: number;
|
|
31043
31050
|
/** @description Status of the transaction */
|
|
31044
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
31051
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
31045
31052
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
31046
31053
|
tx_result: {
|
|
31047
31054
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -31298,7 +31305,7 @@ export interface operations {
|
|
|
31298
31305
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
31299
31306
|
tx_index: number;
|
|
31300
31307
|
/** @description Status of the transaction */
|
|
31301
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
31308
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
31302
31309
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
31303
31310
|
tx_result: {
|
|
31304
31311
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -31547,7 +31554,7 @@ export interface operations {
|
|
|
31547
31554
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
31548
31555
|
tx_index: number;
|
|
31549
31556
|
/** @description Status of the transaction */
|
|
31550
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
31557
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
31551
31558
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
31552
31559
|
tx_result: {
|
|
31553
31560
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -31796,7 +31803,7 @@ export interface operations {
|
|
|
31796
31803
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
31797
31804
|
tx_index: number;
|
|
31798
31805
|
/** @description Status of the transaction */
|
|
31799
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
31806
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
31800
31807
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
31801
31808
|
tx_result: {
|
|
31802
31809
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -32710,7 +32717,7 @@ export interface operations {
|
|
|
32710
32717
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
32711
32718
|
tx_index: number;
|
|
32712
32719
|
/** @description Status of the transaction */
|
|
32713
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
32720
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
32714
32721
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
32715
32722
|
tx_result: {
|
|
32716
32723
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -32960,7 +32967,7 @@ export interface operations {
|
|
|
32960
32967
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
32961
32968
|
tx_index: number;
|
|
32962
32969
|
/** @description Status of the transaction */
|
|
32963
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
32970
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
32964
32971
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
32965
32972
|
tx_result: {
|
|
32966
32973
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -33210,7 +33217,7 @@ export interface operations {
|
|
|
33210
33217
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
33211
33218
|
tx_index: number;
|
|
33212
33219
|
/** @description Status of the transaction */
|
|
33213
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
33220
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
33214
33221
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
33215
33222
|
tx_result: {
|
|
33216
33223
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -33467,7 +33474,7 @@ export interface operations {
|
|
|
33467
33474
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
33468
33475
|
tx_index: number;
|
|
33469
33476
|
/** @description Status of the transaction */
|
|
33470
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
33477
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
33471
33478
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
33472
33479
|
tx_result: {
|
|
33473
33480
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -33716,7 +33723,7 @@ export interface operations {
|
|
|
33716
33723
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
33717
33724
|
tx_index: number;
|
|
33718
33725
|
/** @description Status of the transaction */
|
|
33719
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
33726
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
33720
33727
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
33721
33728
|
tx_result: {
|
|
33722
33729
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -33965,7 +33972,7 @@ export interface operations {
|
|
|
33965
33972
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
33966
33973
|
tx_index: number;
|
|
33967
33974
|
/** @description Status of the transaction */
|
|
33968
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
33975
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
33969
33976
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
33970
33977
|
tx_result: {
|
|
33971
33978
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -35151,7 +35158,7 @@ export interface operations {
|
|
|
35151
35158
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
35152
35159
|
tx_index: number;
|
|
35153
35160
|
/** @description Status of the transaction */
|
|
35154
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
35161
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
35155
35162
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
35156
35163
|
tx_result: {
|
|
35157
35164
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -35401,7 +35408,7 @@ export interface operations {
|
|
|
35401
35408
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
35402
35409
|
tx_index: number;
|
|
35403
35410
|
/** @description Status of the transaction */
|
|
35404
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
35411
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
35405
35412
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
35406
35413
|
tx_result: {
|
|
35407
35414
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -35651,7 +35658,7 @@ export interface operations {
|
|
|
35651
35658
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
35652
35659
|
tx_index: number;
|
|
35653
35660
|
/** @description Status of the transaction */
|
|
35654
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
35661
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
35655
35662
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
35656
35663
|
tx_result: {
|
|
35657
35664
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -35908,7 +35915,7 @@ export interface operations {
|
|
|
35908
35915
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
35909
35916
|
tx_index: number;
|
|
35910
35917
|
/** @description Status of the transaction */
|
|
35911
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
35918
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
35912
35919
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
35913
35920
|
tx_result: {
|
|
35914
35921
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -36157,7 +36164,7 @@ export interface operations {
|
|
|
36157
36164
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
36158
36165
|
tx_index: number;
|
|
36159
36166
|
/** @description Status of the transaction */
|
|
36160
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
36167
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
36161
36168
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
36162
36169
|
tx_result: {
|
|
36163
36170
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -36406,7 +36413,7 @@ export interface operations {
|
|
|
36406
36413
|
/** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
|
|
36407
36414
|
tx_index: number;
|
|
36408
36415
|
/** @description Status of the transaction */
|
|
36409
|
-
tx_status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
36416
|
+
tx_status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
36410
36417
|
/** @description Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. */
|
|
36411
36418
|
tx_result: {
|
|
36412
36419
|
/** @description Hex string representing the value fo the transaction result */
|
|
@@ -36954,7 +36961,7 @@ export interface operations {
|
|
|
36954
36961
|
time: number;
|
|
36955
36962
|
};
|
|
36956
36963
|
/** @description Status of the transaction */
|
|
36957
|
-
status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
36964
|
+
status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
36958
36965
|
/** @enum {string} */
|
|
36959
36966
|
type: "token_transfer";
|
|
36960
36967
|
token_transfer: {
|
|
@@ -37002,7 +37009,7 @@ export interface operations {
|
|
|
37002
37009
|
time: number;
|
|
37003
37010
|
};
|
|
37004
37011
|
/** @description Status of the transaction */
|
|
37005
|
-
status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
37012
|
+
status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
37006
37013
|
/** @enum {string} */
|
|
37007
37014
|
type: "smart_contract";
|
|
37008
37015
|
smart_contract: {
|
|
@@ -37046,7 +37053,7 @@ export interface operations {
|
|
|
37046
37053
|
time: number;
|
|
37047
37054
|
};
|
|
37048
37055
|
/** @description Status of the transaction */
|
|
37049
|
-
status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
37056
|
+
status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
37050
37057
|
/** @enum {string} */
|
|
37051
37058
|
type: "contract_call";
|
|
37052
37059
|
contract_call: {
|
|
@@ -37091,7 +37098,7 @@ export interface operations {
|
|
|
37091
37098
|
time: number;
|
|
37092
37099
|
};
|
|
37093
37100
|
/** @description Status of the transaction */
|
|
37094
|
-
status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
37101
|
+
status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
37095
37102
|
/** @enum {string} */
|
|
37096
37103
|
type: "poison_microblock";
|
|
37097
37104
|
} | {
|
|
@@ -37130,7 +37137,7 @@ export interface operations {
|
|
|
37130
37137
|
time: number;
|
|
37131
37138
|
};
|
|
37132
37139
|
/** @description Status of the transaction */
|
|
37133
|
-
status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
37140
|
+
status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
37134
37141
|
/** @enum {string} */
|
|
37135
37142
|
type: "coinbase";
|
|
37136
37143
|
coinbase: {
|
|
@@ -37172,7 +37179,7 @@ export interface operations {
|
|
|
37172
37179
|
time: number;
|
|
37173
37180
|
};
|
|
37174
37181
|
/** @description Status of the transaction */
|
|
37175
|
-
status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
37182
|
+
status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
37176
37183
|
/** @enum {string} */
|
|
37177
37184
|
type: "tenure_change";
|
|
37178
37185
|
tenure_change: {
|
|
@@ -37494,7 +37501,7 @@ export interface operations {
|
|
|
37494
37501
|
time: number;
|
|
37495
37502
|
};
|
|
37496
37503
|
/** @description Status of the transaction */
|
|
37497
|
-
status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
37504
|
+
status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
37498
37505
|
/** @enum {string} */
|
|
37499
37506
|
type: "token_transfer";
|
|
37500
37507
|
token_transfer: {
|
|
@@ -37542,7 +37549,7 @@ export interface operations {
|
|
|
37542
37549
|
time: number;
|
|
37543
37550
|
};
|
|
37544
37551
|
/** @description Status of the transaction */
|
|
37545
|
-
status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
37552
|
+
status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
37546
37553
|
/** @enum {string} */
|
|
37547
37554
|
type: "smart_contract";
|
|
37548
37555
|
smart_contract: {
|
|
@@ -37586,7 +37593,7 @@ export interface operations {
|
|
|
37586
37593
|
time: number;
|
|
37587
37594
|
};
|
|
37588
37595
|
/** @description Status of the transaction */
|
|
37589
|
-
status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
37596
|
+
status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
37590
37597
|
/** @enum {string} */
|
|
37591
37598
|
type: "contract_call";
|
|
37592
37599
|
contract_call: {
|
|
@@ -37631,7 +37638,7 @@ export interface operations {
|
|
|
37631
37638
|
time: number;
|
|
37632
37639
|
};
|
|
37633
37640
|
/** @description Status of the transaction */
|
|
37634
|
-
status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
37641
|
+
status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
37635
37642
|
/** @enum {string} */
|
|
37636
37643
|
type: "poison_microblock";
|
|
37637
37644
|
} | {
|
|
@@ -37670,7 +37677,7 @@ export interface operations {
|
|
|
37670
37677
|
time: number;
|
|
37671
37678
|
};
|
|
37672
37679
|
/** @description Status of the transaction */
|
|
37673
|
-
status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
37680
|
+
status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
37674
37681
|
/** @enum {string} */
|
|
37675
37682
|
type: "coinbase";
|
|
37676
37683
|
coinbase: {
|
|
@@ -37712,7 +37719,7 @@ export interface operations {
|
|
|
37712
37719
|
time: number;
|
|
37713
37720
|
};
|
|
37714
37721
|
/** @description Status of the transaction */
|
|
37715
|
-
status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
37722
|
+
status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
37716
37723
|
/** @enum {string} */
|
|
37717
37724
|
type: "tenure_change";
|
|
37718
37725
|
tenure_change: {
|
|
@@ -39333,7 +39340,7 @@ export interface operations {
|
|
|
39333
39340
|
time: number;
|
|
39334
39341
|
};
|
|
39335
39342
|
/** @description Status of the transaction */
|
|
39336
|
-
status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
39343
|
+
status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
39337
39344
|
/** @enum {string} */
|
|
39338
39345
|
type: "token_transfer";
|
|
39339
39346
|
token_transfer: {
|
|
@@ -39381,7 +39388,7 @@ export interface operations {
|
|
|
39381
39388
|
time: number;
|
|
39382
39389
|
};
|
|
39383
39390
|
/** @description Status of the transaction */
|
|
39384
|
-
status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
39391
|
+
status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
39385
39392
|
/** @enum {string} */
|
|
39386
39393
|
type: "smart_contract";
|
|
39387
39394
|
smart_contract: {
|
|
@@ -39425,7 +39432,7 @@ export interface operations {
|
|
|
39425
39432
|
time: number;
|
|
39426
39433
|
};
|
|
39427
39434
|
/** @description Status of the transaction */
|
|
39428
|
-
status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
39435
|
+
status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
39429
39436
|
/** @enum {string} */
|
|
39430
39437
|
type: "contract_call";
|
|
39431
39438
|
contract_call: {
|
|
@@ -39470,7 +39477,7 @@ export interface operations {
|
|
|
39470
39477
|
time: number;
|
|
39471
39478
|
};
|
|
39472
39479
|
/** @description Status of the transaction */
|
|
39473
|
-
status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
39480
|
+
status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
39474
39481
|
/** @enum {string} */
|
|
39475
39482
|
type: "poison_microblock";
|
|
39476
39483
|
} | {
|
|
@@ -39509,7 +39516,7 @@ export interface operations {
|
|
|
39509
39516
|
time: number;
|
|
39510
39517
|
};
|
|
39511
39518
|
/** @description Status of the transaction */
|
|
39512
|
-
status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
39519
|
+
status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
39513
39520
|
/** @enum {string} */
|
|
39514
39521
|
type: "coinbase";
|
|
39515
39522
|
coinbase: {
|
|
@@ -39551,7 +39558,7 @@ export interface operations {
|
|
|
39551
39558
|
time: number;
|
|
39552
39559
|
};
|
|
39553
39560
|
/** @description Status of the transaction */
|
|
39554
|
-
status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
39561
|
+
status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
39555
39562
|
/** @enum {string} */
|
|
39556
39563
|
type: "tenure_change";
|
|
39557
39564
|
tenure_change: {
|
|
@@ -39638,7 +39645,7 @@ export interface operations {
|
|
|
39638
39645
|
time: number;
|
|
39639
39646
|
};
|
|
39640
39647
|
/** @description Status of the transaction */
|
|
39641
|
-
status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
39648
|
+
status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
39642
39649
|
parent_block: {
|
|
39643
39650
|
/** @description Hash of the parent block */
|
|
39644
39651
|
hash: string;
|
|
@@ -39816,7 +39823,7 @@ export interface operations {
|
|
|
39816
39823
|
time: number;
|
|
39817
39824
|
};
|
|
39818
39825
|
/** @description Status of the transaction */
|
|
39819
|
-
status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
39826
|
+
status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
39820
39827
|
parent_block: {
|
|
39821
39828
|
/** @description Hash of the parent block */
|
|
39822
39829
|
hash: string;
|
|
@@ -39991,7 +39998,7 @@ export interface operations {
|
|
|
39991
39998
|
time: number;
|
|
39992
39999
|
};
|
|
39993
40000
|
/** @description Status of the transaction */
|
|
39994
|
-
status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
40001
|
+
status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
39995
40002
|
parent_block: {
|
|
39996
40003
|
/** @description Hash of the parent block */
|
|
39997
40004
|
hash: string;
|
|
@@ -40170,7 +40177,7 @@ export interface operations {
|
|
|
40170
40177
|
time: number;
|
|
40171
40178
|
};
|
|
40172
40179
|
/** @description Status of the transaction */
|
|
40173
|
-
status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
40180
|
+
status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
40174
40181
|
parent_block: {
|
|
40175
40182
|
/** @description Hash of the parent block */
|
|
40176
40183
|
hash: string;
|
|
@@ -40338,7 +40345,7 @@ export interface operations {
|
|
|
40338
40345
|
time: number;
|
|
40339
40346
|
};
|
|
40340
40347
|
/** @description Status of the transaction */
|
|
40341
|
-
status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
40348
|
+
status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
40342
40349
|
parent_block: {
|
|
40343
40350
|
/** @description Hash of the parent block */
|
|
40344
40351
|
hash: string;
|
|
@@ -40522,7 +40529,7 @@ export interface operations {
|
|
|
40522
40529
|
time: number;
|
|
40523
40530
|
};
|
|
40524
40531
|
/** @description Status of the transaction */
|
|
40525
|
-
status: "success" | "abort_by_response" | "abort_by_post_condition";
|
|
40532
|
+
status: "success" | "abort_by_response" | "abort_by_post_condition" | "problematic_skipped";
|
|
40526
40533
|
parent_block: {
|
|
40527
40534
|
/** @description Hash of the parent block */
|
|
40528
40535
|
hash: string;
|