@stacks/blockchain-api-client 9.0.0-next.9 → 9.0.0-pox5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -178,9 +178,7 @@ export interface paths {
178
178
  /**
179
179
  * Transactions by block hash
180
180
  * @deprecated
181
- * @description **NOTE:** This endpoint is deprecated in favor of [Get transactions by block](/api/get-transactions-by-block).
182
- *
183
- * Retrieves a list of all transactions within a block for a given block hash.
181
+ * @description Retrieves a list of all transactions within a block for a given block hash. **This endpoint is deprecated in favor of `get_transactions_by_block`.**
184
182
  */
185
183
  get: operations["get_transactions_by_block_hash"];
186
184
  put?: never;
@@ -201,9 +199,7 @@ export interface paths {
201
199
  /**
202
200
  * Transactions by block height
203
201
  * @deprecated
204
- * @description **NOTE:** This endpoint is deprecated in favor of [Get transactions by block](/api/get-transactions-by-block).
205
- *
206
- * Retrieves all transactions within a block at a given height
202
+ * @description Retrieves all transactions within a block at a given height. **This endpoint is deprecated in favor of `get_transactions_by_block`.**
207
203
  */
208
204
  get: operations["get_transactions_by_block_height"];
209
205
  put?: never;
@@ -223,7 +219,7 @@ export interface paths {
223
219
  };
224
220
  /**
225
221
  * Get total and unlocked STX supply
226
- * @description Retrieves the total and unlocked STX supply. More information on Stacking can be found [here] (https://docs.stacks.co/understand-stacks/stacking).
222
+ * @description Retrieves the total and unlocked STX supply. More information on Stacking can be found [here] (https://docs.stacks.co/block-production/stacking).
227
223
  */
228
224
  get: operations["get_stx_supply"];
229
225
  put?: never;
@@ -244,7 +240,7 @@ export interface paths {
244
240
  /**
245
241
  * Get total STX supply in plain text format
246
242
  * @deprecated
247
- * @description Retrieves the total circulating STX token supply as plain text.
243
+ * @description Retrieves the total circulating STX token supply as plain text. **This endpoint is deprecated in favor of `get_stx_supply`.**
248
244
  */
249
245
  get: operations["get_stx_supply_total_supply_plain"];
250
246
  put?: never;
@@ -265,7 +261,7 @@ export interface paths {
265
261
  /**
266
262
  * Get circulating STX supply in plain text format
267
263
  * @deprecated
268
- * @description Retrieves the STX tokens currently in circulation that have been unlocked as plain text.
264
+ * @description Retrieves the STX tokens currently in circulation that have been unlocked as plain text. **This endpoint is deprecated in favor of `get_stx_supply`.**
269
265
  */
270
266
  get: operations["get_stx_supply_circulating_plain"];
271
267
  put?: never;
@@ -286,7 +282,7 @@ export interface paths {
286
282
  /**
287
283
  * Get total and unlocked STX supply (results formatted the same as the legacy 1.0 API)
288
284
  * @deprecated
289
- * @description Retrieves total supply of STX tokens including those currently in circulation that have been unlocked.
285
+ * @description Retrieves total supply of STX tokens including those currently in circulation that have been unlocked. **This endpoint is deprecated in favor of `get_stx_supply`.**
290
286
  */
291
287
  get: operations["get_total_stx_supply_legacy_format"];
292
288
  put?: never;
@@ -349,7 +345,7 @@ export interface paths {
349
345
  * @description Retrieves the list of Non-Fungible Tokens owned by the given principal (STX address or Smart Contract ID).
350
346
  * Results can be filtered by one or more asset identifiers and can include metadata about the transaction that made the principal own each token.
351
347
  *
352
- * More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
348
+ * More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/build/create-tokens/creating-a-nft).
353
349
  */
354
350
  get: operations["get_nft_holdings"];
355
351
  put?: never;
@@ -371,7 +367,7 @@ export interface paths {
371
367
  * Non-Fungible Token history
372
368
  * @description Retrieves all events relevant to a Non-Fungible Token. Useful to determine the ownership history of a particular asset.
373
369
  *
374
- * More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
370
+ * More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/build/create-tokens/creating-a-nft).
375
371
  */
376
372
  get: operations["get_nft_history"];
377
373
  put?: never;
@@ -393,7 +389,7 @@ export interface paths {
393
389
  * Non-Fungible Token mints
394
390
  * @description Retrieves all mint events for a Non-Fungible Token asset class. Useful to determine which NFTs of a particular collection have been claimed.
395
391
  *
396
- * More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
392
+ * More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/build/create-tokens/creating-a-nft).
397
393
  */
398
394
  get: operations["get_nft_mints"];
399
395
  put?: never;
@@ -473,7 +469,10 @@ export interface paths {
473
469
  };
474
470
  /**
475
471
  * Get contract events
476
- * @description Retrieves a list of events that have been triggered by a given `contract_id`
472
+ * @deprecated
473
+ * @description **NOTE:** This endpoint is deprecated in favor of `get_smart_contract_logs`.
474
+ *
475
+ * Retrieves a list of events that have been triggered by a given `contract_id`
477
476
  */
478
477
  get: operations["get_contract_events_by_id"];
479
478
  put?: never;
@@ -579,11 +578,7 @@ export interface paths {
579
578
  /**
580
579
  * Get recent blocks
581
580
  * @deprecated
582
- * @description **NOTE:** This endpoint is deprecated in favor of [Get blocks](/api/get-blocks).
583
- *
584
- * Retrieves a list of recently mined blocks
585
- *
586
- * If you need to actively monitor new blocks, we highly recommend subscribing to [WebSockets or Socket.io](https://github.com/hirosystems/stacks-blockchain-api/tree/master/client) for real-time updates.
581
+ * @description Retrieves a list of recently mined blocks. **This endpoint is deprecated in favor of `get_blocks`.**
587
582
  */
588
583
  get: operations["get_block_list"];
589
584
  put?: never;
@@ -604,9 +599,7 @@ export interface paths {
604
599
  /**
605
600
  * Get block by height
606
601
  * @deprecated
607
- * @description **NOTE:** This endpoint is deprecated in favor of [Get block](/api/get-block).
608
- *
609
- * Retrieves block details of a specific block at a given block height
602
+ * @description Retrieves block details of a specific block at a given block height. **This endpoint is deprecated in favor of `get_block`.**
610
603
  */
611
604
  get: operations["get_block_by_height"];
612
605
  put?: never;
@@ -627,9 +620,7 @@ export interface paths {
627
620
  /**
628
621
  * Get block by burnchain height
629
622
  * @deprecated
630
- * @description **NOTE:** This endpoint is deprecated in favor of [Get blocks](/api/get-blocks).
631
- *
632
- * Retrieves block details of a specific block for a given burn chain height
623
+ * @description Retrieves block details of a specific block for a given burn chain height. **This endpoint is deprecated in favor of `get_blocks_by_burn_block`.**
633
624
  */
634
625
  get: operations["get_block_by_burn_block_height"];
635
626
  put?: never;
@@ -650,9 +641,7 @@ export interface paths {
650
641
  /**
651
642
  * Get block by hash
652
643
  * @deprecated
653
- * @description **NOTE:** This endpoint is deprecated in favor of [Get block](/api/get-block).
654
- *
655
- * Retrieves block details of a specific block for a given chain height. You can use the hash from your latest block ('get_block_list' API) to get your block details.
644
+ * @description Retrieves block details of a specific block for a given chain height. **This endpoint is deprecated in favor of `get_block`.**
656
645
  */
657
646
  get: operations["get_block_by_hash"];
658
647
  put?: never;
@@ -673,9 +662,7 @@ export interface paths {
673
662
  /**
674
663
  * Get block by burnchain block hash
675
664
  * @deprecated
676
- * @description **NOTE:** This endpoint is deprecated in favor of [Get blocks](/api/get-blocks).
677
- *
678
- * Retrieves block details of a specific block for a given burnchain block hash
665
+ * @description Retrieves block details of a specific block for a given burnchain block hash. **This endpoint is deprecated in favor of `get_blocks_by_burn_block`.**
679
666
  */
680
667
  get: operations["get_block_by_burn_block_hash"];
681
668
  put?: never;
@@ -796,9 +783,7 @@ export interface paths {
796
783
  /**
797
784
  * Get account STX balance
798
785
  * @deprecated
799
- * @description **NOTE:** This endpoint is deprecated in favor of [Get address STX balance](/api/get-principal-stx-balance).
800
- *
801
- * Retrieves STX token balance for a given Address or Contract Identifier.
786
+ * @description Retrieves STX token balance for a given Address or Contract Identifier. **This endpoint is deprecated in favor of `get_principal_stx_balance`.**
802
787
  */
803
788
  get: operations["get_account_stx_balance"];
804
789
  put?: never;
@@ -819,9 +804,7 @@ export interface paths {
819
804
  /**
820
805
  * Get account balances
821
806
  * @deprecated
822
- * @description **NOTE:** This endpoint is deprecated in favor of [Get address FT balances](/api/get-principal-ft-balances).
823
- *
824
- * Retrieves total account balance information for a given Address or Contract Identifier. This includes the balances of STX Tokens, Fungible Tokens and Non-Fungible Tokens for the account.
807
+ * @description Retrieves total account balance information for a given Address or Contract Identifier. This includes the balances of STX Tokens, Fungible Tokens and Non-Fungible Tokens for the account. **This endpoint is deprecated in favor of `get_principal_ft_balances`.**
825
808
  */
826
809
  get: operations["get_account_balance"];
827
810
  put?: never;
@@ -842,11 +825,7 @@ export interface paths {
842
825
  /**
843
826
  * Get account transactions
844
827
  * @deprecated
845
- * @description **NOTE:** This endpoint is deprecated in favor of [Get address transactions](/api/get-address-transactions).
846
- *
847
- * Retrieves a list of all Transactions for a given Address or Contract Identifier. More information on Transaction types can be found [here](https://docs.stacks.co/understand-stacks/transactions#types).
848
- *
849
- * If you need to actively monitor new transactions for an address or contract id, we highly recommend subscribing to [WebSockets or Socket.io](https://github.com/hirosystems/stacks-blockchain-api/tree/master/client) for real-time updates.
828
+ * @description Retrieves a list of all Transactions for a given Address or Contract Identifier. **This endpoint is deprecated in favor of `get_address_transactions`.**
850
829
  */
851
830
  get: operations["get_account_transactions"];
852
831
  put?: never;
@@ -867,9 +846,7 @@ export interface paths {
867
846
  /**
868
847
  * Get account transaction information for specific transaction
869
848
  * @deprecated
870
- * @description **NOTE:** This endpoint is deprecated in favor of [Get events for an address transaction](/api/get-address-transaction-events).
871
- *
872
- * Retrieves transaction details for a given Transaction Id `tx_id`, for a given account or contract Identifier.
849
+ * @description Retrieves transaction details for a given Transaction Id, for a given account or contract Identifier. **This endpoint is deprecated in favor of `get_address_transaction_events`.**
873
850
  */
874
851
  get: operations["get_single_transaction_with_transfers"];
875
852
  put?: never;
@@ -890,7 +867,7 @@ export interface paths {
890
867
  /**
891
868
  * Get account transactions including STX transfers for each transaction.
892
869
  * @deprecated
893
- * @description Retrieve all transactions for an account or contract identifier including STX transfers for each transaction.
870
+ * @description Retrieve all transactions for an account or contract identifier including STX transfers for each transaction. **This endpoint is deprecated in favor of `get_address_transactions`.**
894
871
  */
895
872
  get: operations["get_account_transactions_with_transfers"];
896
873
  put?: never;
@@ -910,7 +887,8 @@ export interface paths {
910
887
  };
911
888
  /**
912
889
  * Get account assets
913
- * @description Retrieves a list of all assets events associated with an account or a Contract Identifier. This includes Transfers, Mints.
890
+ * @deprecated
891
+ * @description Retrieves a list of all assets events associated with an account or a Contract Identifier. This includes Transfers, Mints. **This endpoint is deprecated in favor of `get_address_transaction_events`.**
914
892
  */
915
893
  get: operations["get_account_assets"];
916
894
  put?: never;
@@ -930,8 +908,8 @@ export interface paths {
930
908
  };
931
909
  /**
932
910
  * Get inbound STX transfers
933
- * @description Retrieves a list of STX transfers with memos to the given principal. This includes regular transfers from a stx-transfer transaction type,
934
- * and transfers from contract-call transactions a the `send-many-memo` bulk sending contract.
911
+ * @deprecated
912
+ * @description Retrieves a list of STX transfers with memos to the given principal. This includes regular transfers from a stx-transfer transaction type, and transfers from contract-call transactions a the `send-many-memo` bulk sending contract. **This endpoint is deprecated in favor of `get_address_transactions`.**
935
913
  */
936
914
  get: operations["get_account_inbound"];
937
915
  put?: never;
@@ -1250,6 +1228,26 @@ export interface paths {
1250
1228
  patch?: never;
1251
1229
  trace?: never;
1252
1230
  };
1231
+ "/extended/v2/blocks/by-block-time/{timestamp}": {
1232
+ parameters: {
1233
+ query?: never;
1234
+ header?: never;
1235
+ path?: never;
1236
+ cookie?: never;
1237
+ };
1238
+ /**
1239
+ * Get block by block time
1240
+ * @description Retrieves the most recent block mined at or before a given Unix timestamp (in seconds)
1241
+ */
1242
+ get: operations["get_block_by_block_time"];
1243
+ put?: never;
1244
+ post?: never;
1245
+ delete?: never;
1246
+ options?: never;
1247
+ head?: never;
1248
+ patch?: never;
1249
+ trace?: never;
1250
+ };
1253
1251
  "/extended/v2/blocks/{height_or_hash}": {
1254
1252
  parameters: {
1255
1253
  query?: never;
@@ -1370,6 +1368,26 @@ export interface paths {
1370
1368
  patch?: never;
1371
1369
  trace?: never;
1372
1370
  };
1371
+ "/extended/v2/burn-blocks/{height_or_hash}/pox-transactions": {
1372
+ parameters: {
1373
+ query?: never;
1374
+ header?: never;
1375
+ path?: never;
1376
+ cookie?: never;
1377
+ };
1378
+ /**
1379
+ * Get PoX transactions by burn block
1380
+ * @description Retrieves a list of PoX transactions confirmed by a specific burn block
1381
+ */
1382
+ get: operations["get_burn_block_pox_transactions"];
1383
+ put?: never;
1384
+ post?: never;
1385
+ delete?: never;
1386
+ options?: never;
1387
+ head?: never;
1388
+ patch?: never;
1389
+ trace?: never;
1390
+ };
1373
1391
  "/extended/v2/block-tenures/{tenure_height}/blocks": {
1374
1392
  parameters: {
1375
1393
  query?: never;
@@ -1410,6 +1428,26 @@ export interface paths {
1410
1428
  patch?: never;
1411
1429
  trace?: never;
1412
1430
  };
1431
+ "/extended/v2/smart-contracts/{contract_id}/logs": {
1432
+ parameters: {
1433
+ query?: never;
1434
+ header?: never;
1435
+ path?: never;
1436
+ cookie?: never;
1437
+ };
1438
+ /**
1439
+ * Get smart contract logs
1440
+ * @description Retrieves contract log events for a given smart contract.
1441
+ */
1442
+ get: operations["get_smart_contract_logs"];
1443
+ put?: never;
1444
+ post?: never;
1445
+ delete?: never;
1446
+ options?: never;
1447
+ head?: never;
1448
+ patch?: never;
1449
+ trace?: never;
1450
+ };
1413
1451
  "/extended/v2/mempool/fees": {
1414
1452
  parameters: {
1415
1453
  query?: never;
@@ -1541,7 +1579,7 @@ export interface paths {
1541
1579
  * Get address transactions
1542
1580
  * @description Retrieves a paginated list of confirmed transactions sent or received by a STX address or Smart Contract ID, alongside the total amount of STX sent or received and the number of STX, FT and NFT transfers contained within each transaction.
1543
1581
  *
1544
- * More information on Transaction types can be found [here](https://docs.stacks.co/understand-stacks/transactions#types).
1582
+ * More information on Transaction types can be found [here](https://docs.stacks.co/transactions/how-transactions-work#types).
1545
1583
  */
1546
1584
  get: operations["get_address_transactions"];
1547
1585
  put?: never;
@@ -1632,6 +1670,46 @@ export interface paths {
1632
1670
  patch?: never;
1633
1671
  trace?: never;
1634
1672
  };
1673
+ "/extended/v2/addresses/{burnchain_address}/pox-transactions": {
1674
+ parameters: {
1675
+ query?: never;
1676
+ header?: never;
1677
+ path?: never;
1678
+ cookie?: never;
1679
+ };
1680
+ /**
1681
+ * Get PoX transactions for a burnchain address
1682
+ * @description Retrieves a list of PoX transactions
1683
+ */
1684
+ get: operations["get_burnchain_address_pox_transactions"];
1685
+ put?: never;
1686
+ post?: never;
1687
+ delete?: never;
1688
+ options?: never;
1689
+ head?: never;
1690
+ patch?: never;
1691
+ trace?: never;
1692
+ };
1693
+ "/extended/v3/principals/{principal}/transactions": {
1694
+ parameters: {
1695
+ query?: never;
1696
+ header?: never;
1697
+ path?: never;
1698
+ cookie?: never;
1699
+ };
1700
+ /**
1701
+ * Get principal transactions
1702
+ * @description Returns a list of confirmed transactions sent or received by a Stacks principal, including the transaction summary, the involvement of the principal in the transaction, and the balances affected by the transaction.
1703
+ */
1704
+ get: operations["get_principal_transactions"];
1705
+ put?: never;
1706
+ post?: never;
1707
+ delete?: never;
1708
+ options?: never;
1709
+ head?: never;
1710
+ patch?: never;
1711
+ trace?: never;
1712
+ };
1635
1713
  "/v1/names/{name}/zonefile/{zoneFileHash}": {
1636
1714
  parameters: {
1637
1715
  query?: never;
@@ -1980,7 +2058,7 @@ export interface operations {
1980
2058
  /** @description Denotes whether the originating account is the same as the paying account */
1981
2059
  sponsored: boolean;
1982
2060
  sponsor_address?: string;
1983
- post_condition_mode: "allow" | "deny";
2061
+ post_condition_mode: "allow" | "deny" | "originator";
1984
2062
  post_conditions: ({
1985
2063
  principal: {
1986
2064
  /** @enum {string} */
@@ -2036,7 +2114,7 @@ export interface operations {
2036
2114
  address: string;
2037
2115
  contract_name: string;
2038
2116
  };
2039
- condition_code: "sent" | "not_sent";
2117
+ condition_code: "sent" | "not_sent" | "maybe_sent";
2040
2118
  /** @enum {string} */
2041
2119
  type: "non_fungible";
2042
2120
  asset_value: {
@@ -2195,7 +2273,7 @@ export interface operations {
2195
2273
  /** @description Denotes whether the originating account is the same as the paying account */
2196
2274
  sponsored: boolean;
2197
2275
  sponsor_address?: string;
2198
- post_condition_mode: "allow" | "deny";
2276
+ post_condition_mode: "allow" | "deny" | "originator";
2199
2277
  post_conditions: ({
2200
2278
  principal: {
2201
2279
  /** @enum {string} */
@@ -2251,7 +2329,7 @@ export interface operations {
2251
2329
  address: string;
2252
2330
  contract_name: string;
2253
2331
  };
2254
- condition_code: "sent" | "not_sent";
2332
+ condition_code: "sent" | "not_sent" | "maybe_sent";
2255
2333
  /** @enum {string} */
2256
2334
  type: "non_fungible";
2257
2335
  asset_value: {
@@ -2410,7 +2488,7 @@ export interface operations {
2410
2488
  /** @description Denotes whether the originating account is the same as the paying account */
2411
2489
  sponsored: boolean;
2412
2490
  sponsor_address?: string;
2413
- post_condition_mode: "allow" | "deny";
2491
+ post_condition_mode: "allow" | "deny" | "originator";
2414
2492
  post_conditions: ({
2415
2493
  principal: {
2416
2494
  /** @enum {string} */
@@ -2466,7 +2544,7 @@ export interface operations {
2466
2544
  address: string;
2467
2545
  contract_name: string;
2468
2546
  };
2469
- condition_code: "sent" | "not_sent";
2547
+ condition_code: "sent" | "not_sent" | "maybe_sent";
2470
2548
  /** @enum {string} */
2471
2549
  type: "non_fungible";
2472
2550
  asset_value: {
@@ -2632,7 +2710,7 @@ export interface operations {
2632
2710
  /** @description Denotes whether the originating account is the same as the paying account */
2633
2711
  sponsored: boolean;
2634
2712
  sponsor_address?: string;
2635
- post_condition_mode: "allow" | "deny";
2713
+ post_condition_mode: "allow" | "deny" | "originator";
2636
2714
  post_conditions: ({
2637
2715
  principal: {
2638
2716
  /** @enum {string} */
@@ -2688,7 +2766,7 @@ export interface operations {
2688
2766
  address: string;
2689
2767
  contract_name: string;
2690
2768
  };
2691
- condition_code: "sent" | "not_sent";
2769
+ condition_code: "sent" | "not_sent" | "maybe_sent";
2692
2770
  /** @enum {string} */
2693
2771
  type: "non_fungible";
2694
2772
  asset_value: {
@@ -2846,7 +2924,7 @@ export interface operations {
2846
2924
  /** @description Denotes whether the originating account is the same as the paying account */
2847
2925
  sponsored: boolean;
2848
2926
  sponsor_address?: string;
2849
- post_condition_mode: "allow" | "deny";
2927
+ post_condition_mode: "allow" | "deny" | "originator";
2850
2928
  post_conditions: ({
2851
2929
  principal: {
2852
2930
  /** @enum {string} */
@@ -2902,7 +2980,7 @@ export interface operations {
2902
2980
  address: string;
2903
2981
  contract_name: string;
2904
2982
  };
2905
- condition_code: "sent" | "not_sent";
2983
+ condition_code: "sent" | "not_sent" | "maybe_sent";
2906
2984
  /** @enum {string} */
2907
2985
  type: "non_fungible";
2908
2986
  asset_value: {
@@ -3060,7 +3138,7 @@ export interface operations {
3060
3138
  /** @description Denotes whether the originating account is the same as the paying account */
3061
3139
  sponsored: boolean;
3062
3140
  sponsor_address?: string;
3063
- post_condition_mode: "allow" | "deny";
3141
+ post_condition_mode: "allow" | "deny" | "originator";
3064
3142
  post_conditions: ({
3065
3143
  principal: {
3066
3144
  /** @enum {string} */
@@ -3116,7 +3194,7 @@ export interface operations {
3116
3194
  address: string;
3117
3195
  contract_name: string;
3118
3196
  };
3119
- condition_code: "sent" | "not_sent";
3197
+ condition_code: "sent" | "not_sent" | "maybe_sent";
3120
3198
  /** @enum {string} */
3121
3199
  type: "non_fungible";
3122
3200
  asset_value: {
@@ -3321,7 +3399,7 @@ export interface operations {
3321
3399
  content: {
3322
3400
  "application/json": {
3323
3401
  [key: string]: {
3324
- /** @constant */
3402
+ /** @enum {boolean} */
3325
3403
  found: true;
3326
3404
  result: ({
3327
3405
  /** @description Transaction ID */
@@ -3336,42 +3414,42 @@ export interface operations {
3336
3414
  /** @description Denotes whether the originating account is the same as the paying account */
3337
3415
  sponsored: boolean;
3338
3416
  sponsor_address?: string;
3339
- post_condition_mode: "allow" | "deny";
3417
+ post_condition_mode: "allow" | "deny" | "originator";
3340
3418
  post_conditions: ({
3341
3419
  principal: {
3342
- /** @constant */
3420
+ /** @enum {string} */
3343
3421
  type_id: "principal_origin";
3344
3422
  } | {
3345
- /** @constant */
3423
+ /** @enum {string} */
3346
3424
  type_id: "principal_standard";
3347
3425
  address: string;
3348
3426
  } | {
3349
- /** @constant */
3427
+ /** @enum {string} */
3350
3428
  type_id: "principal_contract";
3351
3429
  address: string;
3352
3430
  contract_name: string;
3353
3431
  };
3354
3432
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
3355
3433
  amount: string;
3356
- /** @constant */
3434
+ /** @enum {string} */
3357
3435
  type: "stx";
3358
3436
  } | {
3359
3437
  principal: {
3360
- /** @constant */
3438
+ /** @enum {string} */
3361
3439
  type_id: "principal_origin";
3362
3440
  } | {
3363
- /** @constant */
3441
+ /** @enum {string} */
3364
3442
  type_id: "principal_standard";
3365
3443
  address: string;
3366
3444
  } | {
3367
- /** @constant */
3445
+ /** @enum {string} */
3368
3446
  type_id: "principal_contract";
3369
3447
  address: string;
3370
3448
  contract_name: string;
3371
3449
  };
3372
3450
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
3373
3451
  amount: string;
3374
- /** @constant */
3452
+ /** @enum {string} */
3375
3453
  type: "fungible";
3376
3454
  asset: {
3377
3455
  asset_name: string;
@@ -3380,20 +3458,20 @@ export interface operations {
3380
3458
  };
3381
3459
  } | {
3382
3460
  principal: {
3383
- /** @constant */
3461
+ /** @enum {string} */
3384
3462
  type_id: "principal_origin";
3385
3463
  } | {
3386
- /** @constant */
3464
+ /** @enum {string} */
3387
3465
  type_id: "principal_standard";
3388
3466
  address: string;
3389
3467
  } | {
3390
- /** @constant */
3468
+ /** @enum {string} */
3391
3469
  type_id: "principal_contract";
3392
3470
  address: string;
3393
3471
  contract_name: string;
3394
3472
  };
3395
- condition_code: "sent" | "not_sent";
3396
- /** @constant */
3473
+ condition_code: "sent" | "not_sent" | "maybe_sent";
3474
+ /** @enum {string} */
3397
3475
  type: "non_fungible";
3398
3476
  asset_value: {
3399
3477
  hex: string;
@@ -3464,7 +3542,7 @@ export interface operations {
3464
3542
  events: (({
3465
3543
  event_index: number;
3466
3544
  } & {
3467
- /** @constant */
3545
+ /** @enum {string} */
3468
3546
  event_type: "smart_contract_log";
3469
3547
  tx_id: string;
3470
3548
  contract_log: {
@@ -3478,7 +3556,7 @@ export interface operations {
3478
3556
  }) | ({
3479
3557
  event_index: number;
3480
3558
  } & {
3481
- /** @constant */
3559
+ /** @enum {string} */
3482
3560
  event_type: "stx_lock";
3483
3561
  tx_id: string;
3484
3562
  stx_lock_event: {
@@ -3489,7 +3567,7 @@ export interface operations {
3489
3567
  }) | ({
3490
3568
  event_index: number;
3491
3569
  } & {
3492
- /** @constant */
3570
+ /** @enum {string} */
3493
3571
  event_type: "stx_asset";
3494
3572
  tx_id: string;
3495
3573
  asset: {
@@ -3502,7 +3580,7 @@ export interface operations {
3502
3580
  }) | ({
3503
3581
  event_index: number;
3504
3582
  } & {
3505
- /** @constant */
3583
+ /** @enum {string} */
3506
3584
  event_type: "fungible_token_asset";
3507
3585
  tx_id: string;
3508
3586
  asset: {
@@ -3515,7 +3593,7 @@ export interface operations {
3515
3593
  }) | ({
3516
3594
  event_index: number;
3517
3595
  } & {
3518
- /** @constant */
3596
+ /** @enum {string} */
3519
3597
  event_type: "non_fungible_token_asset";
3520
3598
  tx_id: string;
3521
3599
  asset: {
@@ -3529,7 +3607,7 @@ export interface operations {
3529
3607
  };
3530
3608
  };
3531
3609
  }))[];
3532
- /** @constant */
3610
+ /** @enum {string} */
3533
3611
  tx_type: "token_transfer";
3534
3612
  token_transfer: {
3535
3613
  recipient_address: string;
@@ -3551,42 +3629,42 @@ export interface operations {
3551
3629
  /** @description Denotes whether the originating account is the same as the paying account */
3552
3630
  sponsored: boolean;
3553
3631
  sponsor_address?: string;
3554
- post_condition_mode: "allow" | "deny";
3632
+ post_condition_mode: "allow" | "deny" | "originator";
3555
3633
  post_conditions: ({
3556
3634
  principal: {
3557
- /** @constant */
3635
+ /** @enum {string} */
3558
3636
  type_id: "principal_origin";
3559
3637
  } | {
3560
- /** @constant */
3638
+ /** @enum {string} */
3561
3639
  type_id: "principal_standard";
3562
3640
  address: string;
3563
3641
  } | {
3564
- /** @constant */
3642
+ /** @enum {string} */
3565
3643
  type_id: "principal_contract";
3566
3644
  address: string;
3567
3645
  contract_name: string;
3568
3646
  };
3569
3647
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
3570
3648
  amount: string;
3571
- /** @constant */
3649
+ /** @enum {string} */
3572
3650
  type: "stx";
3573
3651
  } | {
3574
3652
  principal: {
3575
- /** @constant */
3653
+ /** @enum {string} */
3576
3654
  type_id: "principal_origin";
3577
3655
  } | {
3578
- /** @constant */
3656
+ /** @enum {string} */
3579
3657
  type_id: "principal_standard";
3580
3658
  address: string;
3581
3659
  } | {
3582
- /** @constant */
3660
+ /** @enum {string} */
3583
3661
  type_id: "principal_contract";
3584
3662
  address: string;
3585
3663
  contract_name: string;
3586
3664
  };
3587
3665
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
3588
3666
  amount: string;
3589
- /** @constant */
3667
+ /** @enum {string} */
3590
3668
  type: "fungible";
3591
3669
  asset: {
3592
3670
  asset_name: string;
@@ -3595,20 +3673,20 @@ export interface operations {
3595
3673
  };
3596
3674
  } | {
3597
3675
  principal: {
3598
- /** @constant */
3676
+ /** @enum {string} */
3599
3677
  type_id: "principal_origin";
3600
3678
  } | {
3601
- /** @constant */
3679
+ /** @enum {string} */
3602
3680
  type_id: "principal_standard";
3603
3681
  address: string;
3604
3682
  } | {
3605
- /** @constant */
3683
+ /** @enum {string} */
3606
3684
  type_id: "principal_contract";
3607
3685
  address: string;
3608
3686
  contract_name: string;
3609
3687
  };
3610
- condition_code: "sent" | "not_sent";
3611
- /** @constant */
3688
+ condition_code: "sent" | "not_sent" | "maybe_sent";
3689
+ /** @enum {string} */
3612
3690
  type: "non_fungible";
3613
3691
  asset_value: {
3614
3692
  hex: string;
@@ -3679,7 +3757,7 @@ export interface operations {
3679
3757
  events: (({
3680
3758
  event_index: number;
3681
3759
  } & {
3682
- /** @constant */
3760
+ /** @enum {string} */
3683
3761
  event_type: "smart_contract_log";
3684
3762
  tx_id: string;
3685
3763
  contract_log: {
@@ -3693,7 +3771,7 @@ export interface operations {
3693
3771
  }) | ({
3694
3772
  event_index: number;
3695
3773
  } & {
3696
- /** @constant */
3774
+ /** @enum {string} */
3697
3775
  event_type: "stx_lock";
3698
3776
  tx_id: string;
3699
3777
  stx_lock_event: {
@@ -3704,7 +3782,7 @@ export interface operations {
3704
3782
  }) | ({
3705
3783
  event_index: number;
3706
3784
  } & {
3707
- /** @constant */
3785
+ /** @enum {string} */
3708
3786
  event_type: "stx_asset";
3709
3787
  tx_id: string;
3710
3788
  asset: {
@@ -3717,7 +3795,7 @@ export interface operations {
3717
3795
  }) | ({
3718
3796
  event_index: number;
3719
3797
  } & {
3720
- /** @constant */
3798
+ /** @enum {string} */
3721
3799
  event_type: "fungible_token_asset";
3722
3800
  tx_id: string;
3723
3801
  asset: {
@@ -3730,7 +3808,7 @@ export interface operations {
3730
3808
  }) | ({
3731
3809
  event_index: number;
3732
3810
  } & {
3733
- /** @constant */
3811
+ /** @enum {string} */
3734
3812
  event_type: "non_fungible_token_asset";
3735
3813
  tx_id: string;
3736
3814
  asset: {
@@ -3744,7 +3822,7 @@ export interface operations {
3744
3822
  };
3745
3823
  };
3746
3824
  }))[];
3747
- /** @constant */
3825
+ /** @enum {string} */
3748
3826
  tx_type: "smart_contract";
3749
3827
  smart_contract: {
3750
3828
  clarity_version: number | null;
@@ -3766,42 +3844,42 @@ export interface operations {
3766
3844
  /** @description Denotes whether the originating account is the same as the paying account */
3767
3845
  sponsored: boolean;
3768
3846
  sponsor_address?: string;
3769
- post_condition_mode: "allow" | "deny";
3847
+ post_condition_mode: "allow" | "deny" | "originator";
3770
3848
  post_conditions: ({
3771
3849
  principal: {
3772
- /** @constant */
3850
+ /** @enum {string} */
3773
3851
  type_id: "principal_origin";
3774
3852
  } | {
3775
- /** @constant */
3853
+ /** @enum {string} */
3776
3854
  type_id: "principal_standard";
3777
3855
  address: string;
3778
3856
  } | {
3779
- /** @constant */
3857
+ /** @enum {string} */
3780
3858
  type_id: "principal_contract";
3781
3859
  address: string;
3782
3860
  contract_name: string;
3783
3861
  };
3784
3862
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
3785
3863
  amount: string;
3786
- /** @constant */
3864
+ /** @enum {string} */
3787
3865
  type: "stx";
3788
3866
  } | {
3789
3867
  principal: {
3790
- /** @constant */
3868
+ /** @enum {string} */
3791
3869
  type_id: "principal_origin";
3792
3870
  } | {
3793
- /** @constant */
3871
+ /** @enum {string} */
3794
3872
  type_id: "principal_standard";
3795
3873
  address: string;
3796
3874
  } | {
3797
- /** @constant */
3875
+ /** @enum {string} */
3798
3876
  type_id: "principal_contract";
3799
3877
  address: string;
3800
3878
  contract_name: string;
3801
3879
  };
3802
3880
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
3803
3881
  amount: string;
3804
- /** @constant */
3882
+ /** @enum {string} */
3805
3883
  type: "fungible";
3806
3884
  asset: {
3807
3885
  asset_name: string;
@@ -3810,20 +3888,20 @@ export interface operations {
3810
3888
  };
3811
3889
  } | {
3812
3890
  principal: {
3813
- /** @constant */
3891
+ /** @enum {string} */
3814
3892
  type_id: "principal_origin";
3815
3893
  } | {
3816
- /** @constant */
3894
+ /** @enum {string} */
3817
3895
  type_id: "principal_standard";
3818
3896
  address: string;
3819
3897
  } | {
3820
- /** @constant */
3898
+ /** @enum {string} */
3821
3899
  type_id: "principal_contract";
3822
3900
  address: string;
3823
3901
  contract_name: string;
3824
3902
  };
3825
- condition_code: "sent" | "not_sent";
3826
- /** @constant */
3903
+ condition_code: "sent" | "not_sent" | "maybe_sent";
3904
+ /** @enum {string} */
3827
3905
  type: "non_fungible";
3828
3906
  asset_value: {
3829
3907
  hex: string;
@@ -3894,7 +3972,7 @@ export interface operations {
3894
3972
  events: (({
3895
3973
  event_index: number;
3896
3974
  } & {
3897
- /** @constant */
3975
+ /** @enum {string} */
3898
3976
  event_type: "smart_contract_log";
3899
3977
  tx_id: string;
3900
3978
  contract_log: {
@@ -3908,7 +3986,7 @@ export interface operations {
3908
3986
  }) | ({
3909
3987
  event_index: number;
3910
3988
  } & {
3911
- /** @constant */
3989
+ /** @enum {string} */
3912
3990
  event_type: "stx_lock";
3913
3991
  tx_id: string;
3914
3992
  stx_lock_event: {
@@ -3919,7 +3997,7 @@ export interface operations {
3919
3997
  }) | ({
3920
3998
  event_index: number;
3921
3999
  } & {
3922
- /** @constant */
4000
+ /** @enum {string} */
3923
4001
  event_type: "stx_asset";
3924
4002
  tx_id: string;
3925
4003
  asset: {
@@ -3932,7 +4010,7 @@ export interface operations {
3932
4010
  }) | ({
3933
4011
  event_index: number;
3934
4012
  } & {
3935
- /** @constant */
4013
+ /** @enum {string} */
3936
4014
  event_type: "fungible_token_asset";
3937
4015
  tx_id: string;
3938
4016
  asset: {
@@ -3945,7 +4023,7 @@ export interface operations {
3945
4023
  }) | ({
3946
4024
  event_index: number;
3947
4025
  } & {
3948
- /** @constant */
4026
+ /** @enum {string} */
3949
4027
  event_type: "non_fungible_token_asset";
3950
4028
  tx_id: string;
3951
4029
  asset: {
@@ -3959,7 +4037,7 @@ export interface operations {
3959
4037
  };
3960
4038
  };
3961
4039
  }))[];
3962
- /** @constant */
4040
+ /** @enum {string} */
3963
4041
  tx_type: "contract_call";
3964
4042
  contract_call: {
3965
4043
  /** @description Contract identifier formatted as `<principaladdress>.<contract_name>` */
@@ -3988,42 +4066,42 @@ export interface operations {
3988
4066
  /** @description Denotes whether the originating account is the same as the paying account */
3989
4067
  sponsored: boolean;
3990
4068
  sponsor_address?: string;
3991
- post_condition_mode: "allow" | "deny";
4069
+ post_condition_mode: "allow" | "deny" | "originator";
3992
4070
  post_conditions: ({
3993
4071
  principal: {
3994
- /** @constant */
4072
+ /** @enum {string} */
3995
4073
  type_id: "principal_origin";
3996
4074
  } | {
3997
- /** @constant */
4075
+ /** @enum {string} */
3998
4076
  type_id: "principal_standard";
3999
4077
  address: string;
4000
4078
  } | {
4001
- /** @constant */
4079
+ /** @enum {string} */
4002
4080
  type_id: "principal_contract";
4003
4081
  address: string;
4004
4082
  contract_name: string;
4005
4083
  };
4006
4084
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
4007
4085
  amount: string;
4008
- /** @constant */
4086
+ /** @enum {string} */
4009
4087
  type: "stx";
4010
4088
  } | {
4011
4089
  principal: {
4012
- /** @constant */
4090
+ /** @enum {string} */
4013
4091
  type_id: "principal_origin";
4014
4092
  } | {
4015
- /** @constant */
4093
+ /** @enum {string} */
4016
4094
  type_id: "principal_standard";
4017
4095
  address: string;
4018
4096
  } | {
4019
- /** @constant */
4097
+ /** @enum {string} */
4020
4098
  type_id: "principal_contract";
4021
4099
  address: string;
4022
4100
  contract_name: string;
4023
4101
  };
4024
4102
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
4025
4103
  amount: string;
4026
- /** @constant */
4104
+ /** @enum {string} */
4027
4105
  type: "fungible";
4028
4106
  asset: {
4029
4107
  asset_name: string;
@@ -4032,20 +4110,20 @@ export interface operations {
4032
4110
  };
4033
4111
  } | {
4034
4112
  principal: {
4035
- /** @constant */
4113
+ /** @enum {string} */
4036
4114
  type_id: "principal_origin";
4037
4115
  } | {
4038
- /** @constant */
4116
+ /** @enum {string} */
4039
4117
  type_id: "principal_standard";
4040
4118
  address: string;
4041
4119
  } | {
4042
- /** @constant */
4120
+ /** @enum {string} */
4043
4121
  type_id: "principal_contract";
4044
4122
  address: string;
4045
4123
  contract_name: string;
4046
4124
  };
4047
- condition_code: "sent" | "not_sent";
4048
- /** @constant */
4125
+ condition_code: "sent" | "not_sent" | "maybe_sent";
4126
+ /** @enum {string} */
4049
4127
  type: "non_fungible";
4050
4128
  asset_value: {
4051
4129
  hex: string;
@@ -4116,7 +4194,7 @@ export interface operations {
4116
4194
  events: (({
4117
4195
  event_index: number;
4118
4196
  } & {
4119
- /** @constant */
4197
+ /** @enum {string} */
4120
4198
  event_type: "smart_contract_log";
4121
4199
  tx_id: string;
4122
4200
  contract_log: {
@@ -4130,7 +4208,7 @@ export interface operations {
4130
4208
  }) | ({
4131
4209
  event_index: number;
4132
4210
  } & {
4133
- /** @constant */
4211
+ /** @enum {string} */
4134
4212
  event_type: "stx_lock";
4135
4213
  tx_id: string;
4136
4214
  stx_lock_event: {
@@ -4141,7 +4219,7 @@ export interface operations {
4141
4219
  }) | ({
4142
4220
  event_index: number;
4143
4221
  } & {
4144
- /** @constant */
4222
+ /** @enum {string} */
4145
4223
  event_type: "stx_asset";
4146
4224
  tx_id: string;
4147
4225
  asset: {
@@ -4154,7 +4232,7 @@ export interface operations {
4154
4232
  }) | ({
4155
4233
  event_index: number;
4156
4234
  } & {
4157
- /** @constant */
4235
+ /** @enum {string} */
4158
4236
  event_type: "fungible_token_asset";
4159
4237
  tx_id: string;
4160
4238
  asset: {
@@ -4167,7 +4245,7 @@ export interface operations {
4167
4245
  }) | ({
4168
4246
  event_index: number;
4169
4247
  } & {
4170
- /** @constant */
4248
+ /** @enum {string} */
4171
4249
  event_type: "non_fungible_token_asset";
4172
4250
  tx_id: string;
4173
4251
  asset: {
@@ -4181,7 +4259,7 @@ export interface operations {
4181
4259
  };
4182
4260
  };
4183
4261
  }))[];
4184
- /** @constant */
4262
+ /** @enum {string} */
4185
4263
  tx_type: "poison_microblock";
4186
4264
  poison_microblock: {
4187
4265
  /** @description Hex encoded microblock header */
@@ -4202,42 +4280,42 @@ export interface operations {
4202
4280
  /** @description Denotes whether the originating account is the same as the paying account */
4203
4281
  sponsored: boolean;
4204
4282
  sponsor_address?: string;
4205
- post_condition_mode: "allow" | "deny";
4283
+ post_condition_mode: "allow" | "deny" | "originator";
4206
4284
  post_conditions: ({
4207
4285
  principal: {
4208
- /** @constant */
4286
+ /** @enum {string} */
4209
4287
  type_id: "principal_origin";
4210
4288
  } | {
4211
- /** @constant */
4289
+ /** @enum {string} */
4212
4290
  type_id: "principal_standard";
4213
4291
  address: string;
4214
4292
  } | {
4215
- /** @constant */
4293
+ /** @enum {string} */
4216
4294
  type_id: "principal_contract";
4217
4295
  address: string;
4218
4296
  contract_name: string;
4219
4297
  };
4220
4298
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
4221
4299
  amount: string;
4222
- /** @constant */
4300
+ /** @enum {string} */
4223
4301
  type: "stx";
4224
4302
  } | {
4225
4303
  principal: {
4226
- /** @constant */
4304
+ /** @enum {string} */
4227
4305
  type_id: "principal_origin";
4228
4306
  } | {
4229
- /** @constant */
4307
+ /** @enum {string} */
4230
4308
  type_id: "principal_standard";
4231
4309
  address: string;
4232
4310
  } | {
4233
- /** @constant */
4311
+ /** @enum {string} */
4234
4312
  type_id: "principal_contract";
4235
4313
  address: string;
4236
4314
  contract_name: string;
4237
4315
  };
4238
4316
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
4239
4317
  amount: string;
4240
- /** @constant */
4318
+ /** @enum {string} */
4241
4319
  type: "fungible";
4242
4320
  asset: {
4243
4321
  asset_name: string;
@@ -4246,20 +4324,20 @@ export interface operations {
4246
4324
  };
4247
4325
  } | {
4248
4326
  principal: {
4249
- /** @constant */
4327
+ /** @enum {string} */
4250
4328
  type_id: "principal_origin";
4251
4329
  } | {
4252
- /** @constant */
4330
+ /** @enum {string} */
4253
4331
  type_id: "principal_standard";
4254
4332
  address: string;
4255
4333
  } | {
4256
- /** @constant */
4334
+ /** @enum {string} */
4257
4335
  type_id: "principal_contract";
4258
4336
  address: string;
4259
4337
  contract_name: string;
4260
4338
  };
4261
- condition_code: "sent" | "not_sent";
4262
- /** @constant */
4339
+ condition_code: "sent" | "not_sent" | "maybe_sent";
4340
+ /** @enum {string} */
4263
4341
  type: "non_fungible";
4264
4342
  asset_value: {
4265
4343
  hex: string;
@@ -4330,7 +4408,7 @@ export interface operations {
4330
4408
  events: (({
4331
4409
  event_index: number;
4332
4410
  } & {
4333
- /** @constant */
4411
+ /** @enum {string} */
4334
4412
  event_type: "smart_contract_log";
4335
4413
  tx_id: string;
4336
4414
  contract_log: {
@@ -4344,7 +4422,7 @@ export interface operations {
4344
4422
  }) | ({
4345
4423
  event_index: number;
4346
4424
  } & {
4347
- /** @constant */
4425
+ /** @enum {string} */
4348
4426
  event_type: "stx_lock";
4349
4427
  tx_id: string;
4350
4428
  stx_lock_event: {
@@ -4355,7 +4433,7 @@ export interface operations {
4355
4433
  }) | ({
4356
4434
  event_index: number;
4357
4435
  } & {
4358
- /** @constant */
4436
+ /** @enum {string} */
4359
4437
  event_type: "stx_asset";
4360
4438
  tx_id: string;
4361
4439
  asset: {
@@ -4368,7 +4446,7 @@ export interface operations {
4368
4446
  }) | ({
4369
4447
  event_index: number;
4370
4448
  } & {
4371
- /** @constant */
4449
+ /** @enum {string} */
4372
4450
  event_type: "fungible_token_asset";
4373
4451
  tx_id: string;
4374
4452
  asset: {
@@ -4381,7 +4459,7 @@ export interface operations {
4381
4459
  }) | ({
4382
4460
  event_index: number;
4383
4461
  } & {
4384
- /** @constant */
4462
+ /** @enum {string} */
4385
4463
  event_type: "non_fungible_token_asset";
4386
4464
  tx_id: string;
4387
4465
  asset: {
@@ -4395,7 +4473,7 @@ export interface operations {
4395
4473
  };
4396
4474
  };
4397
4475
  }))[];
4398
- /** @constant */
4476
+ /** @enum {string} */
4399
4477
  tx_type: "coinbase";
4400
4478
  coinbase_payload: {
4401
4479
  /** @description Hex encoded 32-byte scratch space for block leader's use */
@@ -4416,42 +4494,42 @@ export interface operations {
4416
4494
  /** @description Denotes whether the originating account is the same as the paying account */
4417
4495
  sponsored: boolean;
4418
4496
  sponsor_address?: string;
4419
- post_condition_mode: "allow" | "deny";
4497
+ post_condition_mode: "allow" | "deny" | "originator";
4420
4498
  post_conditions: ({
4421
4499
  principal: {
4422
- /** @constant */
4500
+ /** @enum {string} */
4423
4501
  type_id: "principal_origin";
4424
4502
  } | {
4425
- /** @constant */
4503
+ /** @enum {string} */
4426
4504
  type_id: "principal_standard";
4427
4505
  address: string;
4428
4506
  } | {
4429
- /** @constant */
4507
+ /** @enum {string} */
4430
4508
  type_id: "principal_contract";
4431
4509
  address: string;
4432
4510
  contract_name: string;
4433
4511
  };
4434
4512
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
4435
4513
  amount: string;
4436
- /** @constant */
4514
+ /** @enum {string} */
4437
4515
  type: "stx";
4438
4516
  } | {
4439
4517
  principal: {
4440
- /** @constant */
4518
+ /** @enum {string} */
4441
4519
  type_id: "principal_origin";
4442
4520
  } | {
4443
- /** @constant */
4521
+ /** @enum {string} */
4444
4522
  type_id: "principal_standard";
4445
4523
  address: string;
4446
4524
  } | {
4447
- /** @constant */
4525
+ /** @enum {string} */
4448
4526
  type_id: "principal_contract";
4449
4527
  address: string;
4450
4528
  contract_name: string;
4451
4529
  };
4452
4530
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
4453
4531
  amount: string;
4454
- /** @constant */
4532
+ /** @enum {string} */
4455
4533
  type: "fungible";
4456
4534
  asset: {
4457
4535
  asset_name: string;
@@ -4460,20 +4538,20 @@ export interface operations {
4460
4538
  };
4461
4539
  } | {
4462
4540
  principal: {
4463
- /** @constant */
4541
+ /** @enum {string} */
4464
4542
  type_id: "principal_origin";
4465
4543
  } | {
4466
- /** @constant */
4544
+ /** @enum {string} */
4467
4545
  type_id: "principal_standard";
4468
4546
  address: string;
4469
4547
  } | {
4470
- /** @constant */
4548
+ /** @enum {string} */
4471
4549
  type_id: "principal_contract";
4472
4550
  address: string;
4473
4551
  contract_name: string;
4474
4552
  };
4475
- condition_code: "sent" | "not_sent";
4476
- /** @constant */
4553
+ condition_code: "sent" | "not_sent" | "maybe_sent";
4554
+ /** @enum {string} */
4477
4555
  type: "non_fungible";
4478
4556
  asset_value: {
4479
4557
  hex: string;
@@ -4544,7 +4622,7 @@ export interface operations {
4544
4622
  events: (({
4545
4623
  event_index: number;
4546
4624
  } & {
4547
- /** @constant */
4625
+ /** @enum {string} */
4548
4626
  event_type: "smart_contract_log";
4549
4627
  tx_id: string;
4550
4628
  contract_log: {
@@ -4558,7 +4636,7 @@ export interface operations {
4558
4636
  }) | ({
4559
4637
  event_index: number;
4560
4638
  } & {
4561
- /** @constant */
4639
+ /** @enum {string} */
4562
4640
  event_type: "stx_lock";
4563
4641
  tx_id: string;
4564
4642
  stx_lock_event: {
@@ -4569,7 +4647,7 @@ export interface operations {
4569
4647
  }) | ({
4570
4648
  event_index: number;
4571
4649
  } & {
4572
- /** @constant */
4650
+ /** @enum {string} */
4573
4651
  event_type: "stx_asset";
4574
4652
  tx_id: string;
4575
4653
  asset: {
@@ -4582,7 +4660,7 @@ export interface operations {
4582
4660
  }) | ({
4583
4661
  event_index: number;
4584
4662
  } & {
4585
- /** @constant */
4663
+ /** @enum {string} */
4586
4664
  event_type: "fungible_token_asset";
4587
4665
  tx_id: string;
4588
4666
  asset: {
@@ -4595,7 +4673,7 @@ export interface operations {
4595
4673
  }) | ({
4596
4674
  event_index: number;
4597
4675
  } & {
4598
- /** @constant */
4676
+ /** @enum {string} */
4599
4677
  event_type: "non_fungible_token_asset";
4600
4678
  tx_id: string;
4601
4679
  asset: {
@@ -4609,7 +4687,7 @@ export interface operations {
4609
4687
  };
4610
4688
  };
4611
4689
  }))[];
4612
- /** @constant */
4690
+ /** @enum {string} */
4613
4691
  tx_type: "tenure_change";
4614
4692
  tenure_change_payload: {
4615
4693
  /** @description Consensus hash of this tenure. Corresponds to the sortition in which the miner of this block was chosen. */
@@ -4640,42 +4718,42 @@ export interface operations {
4640
4718
  /** @description Denotes whether the originating account is the same as the paying account */
4641
4719
  sponsored: boolean;
4642
4720
  sponsor_address?: string;
4643
- post_condition_mode: "allow" | "deny";
4721
+ post_condition_mode: "allow" | "deny" | "originator";
4644
4722
  post_conditions: ({
4645
4723
  principal: {
4646
- /** @constant */
4724
+ /** @enum {string} */
4647
4725
  type_id: "principal_origin";
4648
4726
  } | {
4649
- /** @constant */
4727
+ /** @enum {string} */
4650
4728
  type_id: "principal_standard";
4651
4729
  address: string;
4652
4730
  } | {
4653
- /** @constant */
4731
+ /** @enum {string} */
4654
4732
  type_id: "principal_contract";
4655
4733
  address: string;
4656
4734
  contract_name: string;
4657
4735
  };
4658
4736
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
4659
4737
  amount: string;
4660
- /** @constant */
4738
+ /** @enum {string} */
4661
4739
  type: "stx";
4662
4740
  } | {
4663
4741
  principal: {
4664
- /** @constant */
4742
+ /** @enum {string} */
4665
4743
  type_id: "principal_origin";
4666
4744
  } | {
4667
- /** @constant */
4745
+ /** @enum {string} */
4668
4746
  type_id: "principal_standard";
4669
4747
  address: string;
4670
4748
  } | {
4671
- /** @constant */
4749
+ /** @enum {string} */
4672
4750
  type_id: "principal_contract";
4673
4751
  address: string;
4674
4752
  contract_name: string;
4675
4753
  };
4676
4754
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
4677
4755
  amount: string;
4678
- /** @constant */
4756
+ /** @enum {string} */
4679
4757
  type: "fungible";
4680
4758
  asset: {
4681
4759
  asset_name: string;
@@ -4684,20 +4762,20 @@ export interface operations {
4684
4762
  };
4685
4763
  } | {
4686
4764
  principal: {
4687
- /** @constant */
4765
+ /** @enum {string} */
4688
4766
  type_id: "principal_origin";
4689
4767
  } | {
4690
- /** @constant */
4768
+ /** @enum {string} */
4691
4769
  type_id: "principal_standard";
4692
4770
  address: string;
4693
4771
  } | {
4694
- /** @constant */
4772
+ /** @enum {string} */
4695
4773
  type_id: "principal_contract";
4696
4774
  address: string;
4697
4775
  contract_name: string;
4698
4776
  };
4699
- condition_code: "sent" | "not_sent";
4700
- /** @constant */
4777
+ condition_code: "sent" | "not_sent" | "maybe_sent";
4778
+ /** @enum {string} */
4701
4779
  type: "non_fungible";
4702
4780
  asset_value: {
4703
4781
  hex: string;
@@ -4718,7 +4796,7 @@ export interface operations {
4718
4796
  receipt_time: number;
4719
4797
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
4720
4798
  receipt_time_iso: string;
4721
- /** @constant */
4799
+ /** @enum {string} */
4722
4800
  tx_type: "token_transfer";
4723
4801
  token_transfer: {
4724
4802
  recipient_address: string;
@@ -4740,42 +4818,42 @@ export interface operations {
4740
4818
  /** @description Denotes whether the originating account is the same as the paying account */
4741
4819
  sponsored: boolean;
4742
4820
  sponsor_address?: string;
4743
- post_condition_mode: "allow" | "deny";
4821
+ post_condition_mode: "allow" | "deny" | "originator";
4744
4822
  post_conditions: ({
4745
4823
  principal: {
4746
- /** @constant */
4824
+ /** @enum {string} */
4747
4825
  type_id: "principal_origin";
4748
4826
  } | {
4749
- /** @constant */
4827
+ /** @enum {string} */
4750
4828
  type_id: "principal_standard";
4751
4829
  address: string;
4752
4830
  } | {
4753
- /** @constant */
4831
+ /** @enum {string} */
4754
4832
  type_id: "principal_contract";
4755
4833
  address: string;
4756
4834
  contract_name: string;
4757
4835
  };
4758
4836
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
4759
4837
  amount: string;
4760
- /** @constant */
4838
+ /** @enum {string} */
4761
4839
  type: "stx";
4762
4840
  } | {
4763
4841
  principal: {
4764
- /** @constant */
4842
+ /** @enum {string} */
4765
4843
  type_id: "principal_origin";
4766
4844
  } | {
4767
- /** @constant */
4845
+ /** @enum {string} */
4768
4846
  type_id: "principal_standard";
4769
4847
  address: string;
4770
4848
  } | {
4771
- /** @constant */
4849
+ /** @enum {string} */
4772
4850
  type_id: "principal_contract";
4773
4851
  address: string;
4774
4852
  contract_name: string;
4775
4853
  };
4776
4854
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
4777
4855
  amount: string;
4778
- /** @constant */
4856
+ /** @enum {string} */
4779
4857
  type: "fungible";
4780
4858
  asset: {
4781
4859
  asset_name: string;
@@ -4784,20 +4862,20 @@ export interface operations {
4784
4862
  };
4785
4863
  } | {
4786
4864
  principal: {
4787
- /** @constant */
4865
+ /** @enum {string} */
4788
4866
  type_id: "principal_origin";
4789
4867
  } | {
4790
- /** @constant */
4868
+ /** @enum {string} */
4791
4869
  type_id: "principal_standard";
4792
4870
  address: string;
4793
4871
  } | {
4794
- /** @constant */
4872
+ /** @enum {string} */
4795
4873
  type_id: "principal_contract";
4796
4874
  address: string;
4797
4875
  contract_name: string;
4798
4876
  };
4799
- condition_code: "sent" | "not_sent";
4800
- /** @constant */
4877
+ condition_code: "sent" | "not_sent" | "maybe_sent";
4878
+ /** @enum {string} */
4801
4879
  type: "non_fungible";
4802
4880
  asset_value: {
4803
4881
  hex: string;
@@ -4818,7 +4896,7 @@ export interface operations {
4818
4896
  receipt_time: number;
4819
4897
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
4820
4898
  receipt_time_iso: string;
4821
- /** @constant */
4899
+ /** @enum {string} */
4822
4900
  tx_type: "smart_contract";
4823
4901
  smart_contract: {
4824
4902
  clarity_version: number | null;
@@ -4840,42 +4918,42 @@ export interface operations {
4840
4918
  /** @description Denotes whether the originating account is the same as the paying account */
4841
4919
  sponsored: boolean;
4842
4920
  sponsor_address?: string;
4843
- post_condition_mode: "allow" | "deny";
4921
+ post_condition_mode: "allow" | "deny" | "originator";
4844
4922
  post_conditions: ({
4845
4923
  principal: {
4846
- /** @constant */
4924
+ /** @enum {string} */
4847
4925
  type_id: "principal_origin";
4848
4926
  } | {
4849
- /** @constant */
4927
+ /** @enum {string} */
4850
4928
  type_id: "principal_standard";
4851
4929
  address: string;
4852
4930
  } | {
4853
- /** @constant */
4931
+ /** @enum {string} */
4854
4932
  type_id: "principal_contract";
4855
4933
  address: string;
4856
4934
  contract_name: string;
4857
4935
  };
4858
4936
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
4859
4937
  amount: string;
4860
- /** @constant */
4938
+ /** @enum {string} */
4861
4939
  type: "stx";
4862
4940
  } | {
4863
4941
  principal: {
4864
- /** @constant */
4942
+ /** @enum {string} */
4865
4943
  type_id: "principal_origin";
4866
4944
  } | {
4867
- /** @constant */
4945
+ /** @enum {string} */
4868
4946
  type_id: "principal_standard";
4869
4947
  address: string;
4870
4948
  } | {
4871
- /** @constant */
4949
+ /** @enum {string} */
4872
4950
  type_id: "principal_contract";
4873
4951
  address: string;
4874
4952
  contract_name: string;
4875
4953
  };
4876
4954
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
4877
4955
  amount: string;
4878
- /** @constant */
4956
+ /** @enum {string} */
4879
4957
  type: "fungible";
4880
4958
  asset: {
4881
4959
  asset_name: string;
@@ -4884,20 +4962,20 @@ export interface operations {
4884
4962
  };
4885
4963
  } | {
4886
4964
  principal: {
4887
- /** @constant */
4965
+ /** @enum {string} */
4888
4966
  type_id: "principal_origin";
4889
4967
  } | {
4890
- /** @constant */
4968
+ /** @enum {string} */
4891
4969
  type_id: "principal_standard";
4892
4970
  address: string;
4893
4971
  } | {
4894
- /** @constant */
4972
+ /** @enum {string} */
4895
4973
  type_id: "principal_contract";
4896
4974
  address: string;
4897
4975
  contract_name: string;
4898
4976
  };
4899
- condition_code: "sent" | "not_sent";
4900
- /** @constant */
4977
+ condition_code: "sent" | "not_sent" | "maybe_sent";
4978
+ /** @enum {string} */
4901
4979
  type: "non_fungible";
4902
4980
  asset_value: {
4903
4981
  hex: string;
@@ -4918,7 +4996,7 @@ export interface operations {
4918
4996
  receipt_time: number;
4919
4997
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
4920
4998
  receipt_time_iso: string;
4921
- /** @constant */
4999
+ /** @enum {string} */
4922
5000
  tx_type: "contract_call";
4923
5001
  contract_call: {
4924
5002
  /** @description Contract identifier formatted as `<principaladdress>.<contract_name>` */
@@ -4947,42 +5025,42 @@ export interface operations {
4947
5025
  /** @description Denotes whether the originating account is the same as the paying account */
4948
5026
  sponsored: boolean;
4949
5027
  sponsor_address?: string;
4950
- post_condition_mode: "allow" | "deny";
5028
+ post_condition_mode: "allow" | "deny" | "originator";
4951
5029
  post_conditions: ({
4952
5030
  principal: {
4953
- /** @constant */
5031
+ /** @enum {string} */
4954
5032
  type_id: "principal_origin";
4955
5033
  } | {
4956
- /** @constant */
5034
+ /** @enum {string} */
4957
5035
  type_id: "principal_standard";
4958
5036
  address: string;
4959
5037
  } | {
4960
- /** @constant */
5038
+ /** @enum {string} */
4961
5039
  type_id: "principal_contract";
4962
5040
  address: string;
4963
5041
  contract_name: string;
4964
5042
  };
4965
5043
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
4966
5044
  amount: string;
4967
- /** @constant */
5045
+ /** @enum {string} */
4968
5046
  type: "stx";
4969
5047
  } | {
4970
5048
  principal: {
4971
- /** @constant */
5049
+ /** @enum {string} */
4972
5050
  type_id: "principal_origin";
4973
5051
  } | {
4974
- /** @constant */
5052
+ /** @enum {string} */
4975
5053
  type_id: "principal_standard";
4976
5054
  address: string;
4977
5055
  } | {
4978
- /** @constant */
5056
+ /** @enum {string} */
4979
5057
  type_id: "principal_contract";
4980
5058
  address: string;
4981
5059
  contract_name: string;
4982
5060
  };
4983
5061
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
4984
5062
  amount: string;
4985
- /** @constant */
5063
+ /** @enum {string} */
4986
5064
  type: "fungible";
4987
5065
  asset: {
4988
5066
  asset_name: string;
@@ -4991,20 +5069,20 @@ export interface operations {
4991
5069
  };
4992
5070
  } | {
4993
5071
  principal: {
4994
- /** @constant */
5072
+ /** @enum {string} */
4995
5073
  type_id: "principal_origin";
4996
5074
  } | {
4997
- /** @constant */
5075
+ /** @enum {string} */
4998
5076
  type_id: "principal_standard";
4999
5077
  address: string;
5000
5078
  } | {
5001
- /** @constant */
5079
+ /** @enum {string} */
5002
5080
  type_id: "principal_contract";
5003
5081
  address: string;
5004
5082
  contract_name: string;
5005
5083
  };
5006
- condition_code: "sent" | "not_sent";
5007
- /** @constant */
5084
+ condition_code: "sent" | "not_sent" | "maybe_sent";
5085
+ /** @enum {string} */
5008
5086
  type: "non_fungible";
5009
5087
  asset_value: {
5010
5088
  hex: string;
@@ -5025,7 +5103,7 @@ export interface operations {
5025
5103
  receipt_time: number;
5026
5104
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
5027
5105
  receipt_time_iso: string;
5028
- /** @constant */
5106
+ /** @enum {string} */
5029
5107
  tx_type: "poison_microblock";
5030
5108
  poison_microblock: {
5031
5109
  /** @description Hex encoded microblock header */
@@ -5046,42 +5124,42 @@ export interface operations {
5046
5124
  /** @description Denotes whether the originating account is the same as the paying account */
5047
5125
  sponsored: boolean;
5048
5126
  sponsor_address?: string;
5049
- post_condition_mode: "allow" | "deny";
5127
+ post_condition_mode: "allow" | "deny" | "originator";
5050
5128
  post_conditions: ({
5051
5129
  principal: {
5052
- /** @constant */
5130
+ /** @enum {string} */
5053
5131
  type_id: "principal_origin";
5054
5132
  } | {
5055
- /** @constant */
5133
+ /** @enum {string} */
5056
5134
  type_id: "principal_standard";
5057
5135
  address: string;
5058
5136
  } | {
5059
- /** @constant */
5137
+ /** @enum {string} */
5060
5138
  type_id: "principal_contract";
5061
5139
  address: string;
5062
5140
  contract_name: string;
5063
5141
  };
5064
5142
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
5065
5143
  amount: string;
5066
- /** @constant */
5144
+ /** @enum {string} */
5067
5145
  type: "stx";
5068
5146
  } | {
5069
5147
  principal: {
5070
- /** @constant */
5148
+ /** @enum {string} */
5071
5149
  type_id: "principal_origin";
5072
5150
  } | {
5073
- /** @constant */
5151
+ /** @enum {string} */
5074
5152
  type_id: "principal_standard";
5075
5153
  address: string;
5076
5154
  } | {
5077
- /** @constant */
5155
+ /** @enum {string} */
5078
5156
  type_id: "principal_contract";
5079
5157
  address: string;
5080
5158
  contract_name: string;
5081
5159
  };
5082
5160
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
5083
5161
  amount: string;
5084
- /** @constant */
5162
+ /** @enum {string} */
5085
5163
  type: "fungible";
5086
5164
  asset: {
5087
5165
  asset_name: string;
@@ -5090,20 +5168,20 @@ export interface operations {
5090
5168
  };
5091
5169
  } | {
5092
5170
  principal: {
5093
- /** @constant */
5171
+ /** @enum {string} */
5094
5172
  type_id: "principal_origin";
5095
5173
  } | {
5096
- /** @constant */
5174
+ /** @enum {string} */
5097
5175
  type_id: "principal_standard";
5098
5176
  address: string;
5099
5177
  } | {
5100
- /** @constant */
5178
+ /** @enum {string} */
5101
5179
  type_id: "principal_contract";
5102
5180
  address: string;
5103
5181
  contract_name: string;
5104
5182
  };
5105
- condition_code: "sent" | "not_sent";
5106
- /** @constant */
5183
+ condition_code: "sent" | "not_sent" | "maybe_sent";
5184
+ /** @enum {string} */
5107
5185
  type: "non_fungible";
5108
5186
  asset_value: {
5109
5187
  hex: string;
@@ -5124,7 +5202,7 @@ export interface operations {
5124
5202
  receipt_time: number;
5125
5203
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
5126
5204
  receipt_time_iso: string;
5127
- /** @constant */
5205
+ /** @enum {string} */
5128
5206
  tx_type: "coinbase";
5129
5207
  coinbase_payload: {
5130
5208
  /** @description Hex encoded 32-byte scratch space for block leader's use */
@@ -5145,42 +5223,42 @@ export interface operations {
5145
5223
  /** @description Denotes whether the originating account is the same as the paying account */
5146
5224
  sponsored: boolean;
5147
5225
  sponsor_address?: string;
5148
- post_condition_mode: "allow" | "deny";
5226
+ post_condition_mode: "allow" | "deny" | "originator";
5149
5227
  post_conditions: ({
5150
5228
  principal: {
5151
- /** @constant */
5229
+ /** @enum {string} */
5152
5230
  type_id: "principal_origin";
5153
5231
  } | {
5154
- /** @constant */
5232
+ /** @enum {string} */
5155
5233
  type_id: "principal_standard";
5156
5234
  address: string;
5157
5235
  } | {
5158
- /** @constant */
5236
+ /** @enum {string} */
5159
5237
  type_id: "principal_contract";
5160
5238
  address: string;
5161
5239
  contract_name: string;
5162
5240
  };
5163
5241
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
5164
5242
  amount: string;
5165
- /** @constant */
5243
+ /** @enum {string} */
5166
5244
  type: "stx";
5167
5245
  } | {
5168
5246
  principal: {
5169
- /** @constant */
5247
+ /** @enum {string} */
5170
5248
  type_id: "principal_origin";
5171
5249
  } | {
5172
- /** @constant */
5250
+ /** @enum {string} */
5173
5251
  type_id: "principal_standard";
5174
5252
  address: string;
5175
5253
  } | {
5176
- /** @constant */
5254
+ /** @enum {string} */
5177
5255
  type_id: "principal_contract";
5178
5256
  address: string;
5179
5257
  contract_name: string;
5180
5258
  };
5181
5259
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
5182
5260
  amount: string;
5183
- /** @constant */
5261
+ /** @enum {string} */
5184
5262
  type: "fungible";
5185
5263
  asset: {
5186
5264
  asset_name: string;
@@ -5189,20 +5267,20 @@ export interface operations {
5189
5267
  };
5190
5268
  } | {
5191
5269
  principal: {
5192
- /** @constant */
5270
+ /** @enum {string} */
5193
5271
  type_id: "principal_origin";
5194
5272
  } | {
5195
- /** @constant */
5273
+ /** @enum {string} */
5196
5274
  type_id: "principal_standard";
5197
5275
  address: string;
5198
5276
  } | {
5199
- /** @constant */
5277
+ /** @enum {string} */
5200
5278
  type_id: "principal_contract";
5201
5279
  address: string;
5202
5280
  contract_name: string;
5203
5281
  };
5204
- condition_code: "sent" | "not_sent";
5205
- /** @constant */
5282
+ condition_code: "sent" | "not_sent" | "maybe_sent";
5283
+ /** @enum {string} */
5206
5284
  type: "non_fungible";
5207
5285
  asset_value: {
5208
5286
  hex: string;
@@ -5223,7 +5301,7 @@ export interface operations {
5223
5301
  receipt_time: number;
5224
5302
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
5225
5303
  receipt_time_iso: string;
5226
- /** @constant */
5304
+ /** @enum {string} */
5227
5305
  tx_type: "tenure_change";
5228
5306
  tenure_change_payload: {
5229
5307
  /** @description Consensus hash of this tenure. Corresponds to the sortition in which the miner of this block was chosen. */
@@ -5243,7 +5321,7 @@ export interface operations {
5243
5321
  };
5244
5322
  });
5245
5323
  } | {
5246
- /** @constant */
5324
+ /** @enum {boolean} */
5247
5325
  found: false;
5248
5326
  result: {
5249
5327
  tx_id: string;
@@ -5334,7 +5412,7 @@ export interface operations {
5334
5412
  /** @description Denotes whether the originating account is the same as the paying account */
5335
5413
  sponsored: boolean;
5336
5414
  sponsor_address?: string;
5337
- post_condition_mode: "allow" | "deny";
5415
+ post_condition_mode: "allow" | "deny" | "originator";
5338
5416
  post_conditions: ({
5339
5417
  principal: {
5340
5418
  /** @enum {string} */
@@ -5390,7 +5468,7 @@ export interface operations {
5390
5468
  address: string;
5391
5469
  contract_name: string;
5392
5470
  };
5393
- condition_code: "sent" | "not_sent";
5471
+ condition_code: "sent" | "not_sent" | "maybe_sent";
5394
5472
  /** @enum {string} */
5395
5473
  type: "non_fungible";
5396
5474
  asset_value: {
@@ -5434,7 +5512,7 @@ export interface operations {
5434
5512
  /** @description Denotes whether the originating account is the same as the paying account */
5435
5513
  sponsored: boolean;
5436
5514
  sponsor_address?: string;
5437
- post_condition_mode: "allow" | "deny";
5515
+ post_condition_mode: "allow" | "deny" | "originator";
5438
5516
  post_conditions: ({
5439
5517
  principal: {
5440
5518
  /** @enum {string} */
@@ -5490,7 +5568,7 @@ export interface operations {
5490
5568
  address: string;
5491
5569
  contract_name: string;
5492
5570
  };
5493
- condition_code: "sent" | "not_sent";
5571
+ condition_code: "sent" | "not_sent" | "maybe_sent";
5494
5572
  /** @enum {string} */
5495
5573
  type: "non_fungible";
5496
5574
  asset_value: {
@@ -5534,7 +5612,7 @@ export interface operations {
5534
5612
  /** @description Denotes whether the originating account is the same as the paying account */
5535
5613
  sponsored: boolean;
5536
5614
  sponsor_address?: string;
5537
- post_condition_mode: "allow" | "deny";
5615
+ post_condition_mode: "allow" | "deny" | "originator";
5538
5616
  post_conditions: ({
5539
5617
  principal: {
5540
5618
  /** @enum {string} */
@@ -5590,7 +5668,7 @@ export interface operations {
5590
5668
  address: string;
5591
5669
  contract_name: string;
5592
5670
  };
5593
- condition_code: "sent" | "not_sent";
5671
+ condition_code: "sent" | "not_sent" | "maybe_sent";
5594
5672
  /** @enum {string} */
5595
5673
  type: "non_fungible";
5596
5674
  asset_value: {
@@ -5641,7 +5719,7 @@ export interface operations {
5641
5719
  /** @description Denotes whether the originating account is the same as the paying account */
5642
5720
  sponsored: boolean;
5643
5721
  sponsor_address?: string;
5644
- post_condition_mode: "allow" | "deny";
5722
+ post_condition_mode: "allow" | "deny" | "originator";
5645
5723
  post_conditions: ({
5646
5724
  principal: {
5647
5725
  /** @enum {string} */
@@ -5697,7 +5775,7 @@ export interface operations {
5697
5775
  address: string;
5698
5776
  contract_name: string;
5699
5777
  };
5700
- condition_code: "sent" | "not_sent";
5778
+ condition_code: "sent" | "not_sent" | "maybe_sent";
5701
5779
  /** @enum {string} */
5702
5780
  type: "non_fungible";
5703
5781
  asset_value: {
@@ -5740,7 +5818,7 @@ export interface operations {
5740
5818
  /** @description Denotes whether the originating account is the same as the paying account */
5741
5819
  sponsored: boolean;
5742
5820
  sponsor_address?: string;
5743
- post_condition_mode: "allow" | "deny";
5821
+ post_condition_mode: "allow" | "deny" | "originator";
5744
5822
  post_conditions: ({
5745
5823
  principal: {
5746
5824
  /** @enum {string} */
@@ -5796,7 +5874,7 @@ export interface operations {
5796
5874
  address: string;
5797
5875
  contract_name: string;
5798
5876
  };
5799
- condition_code: "sent" | "not_sent";
5877
+ condition_code: "sent" | "not_sent" | "maybe_sent";
5800
5878
  /** @enum {string} */
5801
5879
  type: "non_fungible";
5802
5880
  asset_value: {
@@ -5839,7 +5917,7 @@ export interface operations {
5839
5917
  /** @description Denotes whether the originating account is the same as the paying account */
5840
5918
  sponsored: boolean;
5841
5919
  sponsor_address?: string;
5842
- post_condition_mode: "allow" | "deny";
5920
+ post_condition_mode: "allow" | "deny" | "originator";
5843
5921
  post_conditions: ({
5844
5922
  principal: {
5845
5923
  /** @enum {string} */
@@ -5895,7 +5973,7 @@ export interface operations {
5895
5973
  address: string;
5896
5974
  contract_name: string;
5897
5975
  };
5898
- condition_code: "sent" | "not_sent";
5976
+ condition_code: "sent" | "not_sent" | "maybe_sent";
5899
5977
  /** @enum {string} */
5900
5978
  type: "non_fungible";
5901
5979
  asset_value: {
@@ -6192,7 +6270,7 @@ export interface operations {
6192
6270
  /** @description Denotes whether the originating account is the same as the paying account */
6193
6271
  sponsored: boolean;
6194
6272
  sponsor_address?: string;
6195
- post_condition_mode: "allow" | "deny";
6273
+ post_condition_mode: "allow" | "deny" | "originator";
6196
6274
  post_conditions: ({
6197
6275
  principal: {
6198
6276
  /** @enum {string} */
@@ -6248,7 +6326,7 @@ export interface operations {
6248
6326
  address: string;
6249
6327
  contract_name: string;
6250
6328
  };
6251
- condition_code: "sent" | "not_sent";
6329
+ condition_code: "sent" | "not_sent" | "maybe_sent";
6252
6330
  /** @enum {string} */
6253
6331
  type: "non_fungible";
6254
6332
  asset_value: {
@@ -6407,7 +6485,7 @@ export interface operations {
6407
6485
  /** @description Denotes whether the originating account is the same as the paying account */
6408
6486
  sponsored: boolean;
6409
6487
  sponsor_address?: string;
6410
- post_condition_mode: "allow" | "deny";
6488
+ post_condition_mode: "allow" | "deny" | "originator";
6411
6489
  post_conditions: ({
6412
6490
  principal: {
6413
6491
  /** @enum {string} */
@@ -6463,7 +6541,7 @@ export interface operations {
6463
6541
  address: string;
6464
6542
  contract_name: string;
6465
6543
  };
6466
- condition_code: "sent" | "not_sent";
6544
+ condition_code: "sent" | "not_sent" | "maybe_sent";
6467
6545
  /** @enum {string} */
6468
6546
  type: "non_fungible";
6469
6547
  asset_value: {
@@ -6622,7 +6700,7 @@ export interface operations {
6622
6700
  /** @description Denotes whether the originating account is the same as the paying account */
6623
6701
  sponsored: boolean;
6624
6702
  sponsor_address?: string;
6625
- post_condition_mode: "allow" | "deny";
6703
+ post_condition_mode: "allow" | "deny" | "originator";
6626
6704
  post_conditions: ({
6627
6705
  principal: {
6628
6706
  /** @enum {string} */
@@ -6678,7 +6756,7 @@ export interface operations {
6678
6756
  address: string;
6679
6757
  contract_name: string;
6680
6758
  };
6681
- condition_code: "sent" | "not_sent";
6759
+ condition_code: "sent" | "not_sent" | "maybe_sent";
6682
6760
  /** @enum {string} */
6683
6761
  type: "non_fungible";
6684
6762
  asset_value: {
@@ -6844,7 +6922,7 @@ export interface operations {
6844
6922
  /** @description Denotes whether the originating account is the same as the paying account */
6845
6923
  sponsored: boolean;
6846
6924
  sponsor_address?: string;
6847
- post_condition_mode: "allow" | "deny";
6925
+ post_condition_mode: "allow" | "deny" | "originator";
6848
6926
  post_conditions: ({
6849
6927
  principal: {
6850
6928
  /** @enum {string} */
@@ -6900,7 +6978,7 @@ export interface operations {
6900
6978
  address: string;
6901
6979
  contract_name: string;
6902
6980
  };
6903
- condition_code: "sent" | "not_sent";
6981
+ condition_code: "sent" | "not_sent" | "maybe_sent";
6904
6982
  /** @enum {string} */
6905
6983
  type: "non_fungible";
6906
6984
  asset_value: {
@@ -7058,7 +7136,7 @@ export interface operations {
7058
7136
  /** @description Denotes whether the originating account is the same as the paying account */
7059
7137
  sponsored: boolean;
7060
7138
  sponsor_address?: string;
7061
- post_condition_mode: "allow" | "deny";
7139
+ post_condition_mode: "allow" | "deny" | "originator";
7062
7140
  post_conditions: ({
7063
7141
  principal: {
7064
7142
  /** @enum {string} */
@@ -7114,7 +7192,7 @@ export interface operations {
7114
7192
  address: string;
7115
7193
  contract_name: string;
7116
7194
  };
7117
- condition_code: "sent" | "not_sent";
7195
+ condition_code: "sent" | "not_sent" | "maybe_sent";
7118
7196
  /** @enum {string} */
7119
7197
  type: "non_fungible";
7120
7198
  asset_value: {
@@ -7272,7 +7350,7 @@ export interface operations {
7272
7350
  /** @description Denotes whether the originating account is the same as the paying account */
7273
7351
  sponsored: boolean;
7274
7352
  sponsor_address?: string;
7275
- post_condition_mode: "allow" | "deny";
7353
+ post_condition_mode: "allow" | "deny" | "originator";
7276
7354
  post_conditions: ({
7277
7355
  principal: {
7278
7356
  /** @enum {string} */
@@ -7328,7 +7406,7 @@ export interface operations {
7328
7406
  address: string;
7329
7407
  contract_name: string;
7330
7408
  };
7331
- condition_code: "sent" | "not_sent";
7409
+ condition_code: "sent" | "not_sent" | "maybe_sent";
7332
7410
  /** @enum {string} */
7333
7411
  type: "non_fungible";
7334
7412
  asset_value: {
@@ -7496,7 +7574,7 @@ export interface operations {
7496
7574
  /** @description Denotes whether the originating account is the same as the paying account */
7497
7575
  sponsored: boolean;
7498
7576
  sponsor_address?: string;
7499
- post_condition_mode: "allow" | "deny";
7577
+ post_condition_mode: "allow" | "deny" | "originator";
7500
7578
  post_conditions: ({
7501
7579
  principal: {
7502
7580
  /** @enum {string} */
@@ -7552,7 +7630,7 @@ export interface operations {
7552
7630
  address: string;
7553
7631
  contract_name: string;
7554
7632
  };
7555
- condition_code: "sent" | "not_sent";
7633
+ condition_code: "sent" | "not_sent" | "maybe_sent";
7556
7634
  /** @enum {string} */
7557
7635
  type: "non_fungible";
7558
7636
  asset_value: {
@@ -7596,7 +7674,7 @@ export interface operations {
7596
7674
  /** @description Denotes whether the originating account is the same as the paying account */
7597
7675
  sponsored: boolean;
7598
7676
  sponsor_address?: string;
7599
- post_condition_mode: "allow" | "deny";
7677
+ post_condition_mode: "allow" | "deny" | "originator";
7600
7678
  post_conditions: ({
7601
7679
  principal: {
7602
7680
  /** @enum {string} */
@@ -7652,7 +7730,7 @@ export interface operations {
7652
7730
  address: string;
7653
7731
  contract_name: string;
7654
7732
  };
7655
- condition_code: "sent" | "not_sent";
7733
+ condition_code: "sent" | "not_sent" | "maybe_sent";
7656
7734
  /** @enum {string} */
7657
7735
  type: "non_fungible";
7658
7736
  asset_value: {
@@ -7696,7 +7774,7 @@ export interface operations {
7696
7774
  /** @description Denotes whether the originating account is the same as the paying account */
7697
7775
  sponsored: boolean;
7698
7776
  sponsor_address?: string;
7699
- post_condition_mode: "allow" | "deny";
7777
+ post_condition_mode: "allow" | "deny" | "originator";
7700
7778
  post_conditions: ({
7701
7779
  principal: {
7702
7780
  /** @enum {string} */
@@ -7752,7 +7830,7 @@ export interface operations {
7752
7830
  address: string;
7753
7831
  contract_name: string;
7754
7832
  };
7755
- condition_code: "sent" | "not_sent";
7833
+ condition_code: "sent" | "not_sent" | "maybe_sent";
7756
7834
  /** @enum {string} */
7757
7835
  type: "non_fungible";
7758
7836
  asset_value: {
@@ -7803,7 +7881,7 @@ export interface operations {
7803
7881
  /** @description Denotes whether the originating account is the same as the paying account */
7804
7882
  sponsored: boolean;
7805
7883
  sponsor_address?: string;
7806
- post_condition_mode: "allow" | "deny";
7884
+ post_condition_mode: "allow" | "deny" | "originator";
7807
7885
  post_conditions: ({
7808
7886
  principal: {
7809
7887
  /** @enum {string} */
@@ -7859,7 +7937,7 @@ export interface operations {
7859
7937
  address: string;
7860
7938
  contract_name: string;
7861
7939
  };
7862
- condition_code: "sent" | "not_sent";
7940
+ condition_code: "sent" | "not_sent" | "maybe_sent";
7863
7941
  /** @enum {string} */
7864
7942
  type: "non_fungible";
7865
7943
  asset_value: {
@@ -7902,7 +7980,7 @@ export interface operations {
7902
7980
  /** @description Denotes whether the originating account is the same as the paying account */
7903
7981
  sponsored: boolean;
7904
7982
  sponsor_address?: string;
7905
- post_condition_mode: "allow" | "deny";
7983
+ post_condition_mode: "allow" | "deny" | "originator";
7906
7984
  post_conditions: ({
7907
7985
  principal: {
7908
7986
  /** @enum {string} */
@@ -7958,7 +8036,7 @@ export interface operations {
7958
8036
  address: string;
7959
8037
  contract_name: string;
7960
8038
  };
7961
- condition_code: "sent" | "not_sent";
8039
+ condition_code: "sent" | "not_sent" | "maybe_sent";
7962
8040
  /** @enum {string} */
7963
8041
  type: "non_fungible";
7964
8042
  asset_value: {
@@ -8001,7 +8079,7 @@ export interface operations {
8001
8079
  /** @description Denotes whether the originating account is the same as the paying account */
8002
8080
  sponsored: boolean;
8003
8081
  sponsor_address?: string;
8004
- post_condition_mode: "allow" | "deny";
8082
+ post_condition_mode: "allow" | "deny" | "originator";
8005
8083
  post_conditions: ({
8006
8084
  principal: {
8007
8085
  /** @enum {string} */
@@ -8057,7 +8135,7 @@ export interface operations {
8057
8135
  address: string;
8058
8136
  contract_name: string;
8059
8137
  };
8060
- condition_code: "sent" | "not_sent";
8138
+ condition_code: "sent" | "not_sent" | "maybe_sent";
8061
8139
  /** @enum {string} */
8062
8140
  type: "non_fungible";
8063
8141
  asset_value: {
@@ -8207,7 +8285,7 @@ export interface operations {
8207
8285
  /** @description Denotes whether the originating account is the same as the paying account */
8208
8286
  sponsored: boolean;
8209
8287
  sponsor_address?: string;
8210
- post_condition_mode: "allow" | "deny";
8288
+ post_condition_mode: "allow" | "deny" | "originator";
8211
8289
  post_conditions: ({
8212
8290
  principal: {
8213
8291
  /** @enum {string} */
@@ -8263,7 +8341,7 @@ export interface operations {
8263
8341
  address: string;
8264
8342
  contract_name: string;
8265
8343
  };
8266
- condition_code: "sent" | "not_sent";
8344
+ condition_code: "sent" | "not_sent" | "maybe_sent";
8267
8345
  /** @enum {string} */
8268
8346
  type: "non_fungible";
8269
8347
  asset_value: {
@@ -8422,7 +8500,7 @@ export interface operations {
8422
8500
  /** @description Denotes whether the originating account is the same as the paying account */
8423
8501
  sponsored: boolean;
8424
8502
  sponsor_address?: string;
8425
- post_condition_mode: "allow" | "deny";
8503
+ post_condition_mode: "allow" | "deny" | "originator";
8426
8504
  post_conditions: ({
8427
8505
  principal: {
8428
8506
  /** @enum {string} */
@@ -8478,7 +8556,7 @@ export interface operations {
8478
8556
  address: string;
8479
8557
  contract_name: string;
8480
8558
  };
8481
- condition_code: "sent" | "not_sent";
8559
+ condition_code: "sent" | "not_sent" | "maybe_sent";
8482
8560
  /** @enum {string} */
8483
8561
  type: "non_fungible";
8484
8562
  asset_value: {
@@ -8637,7 +8715,7 @@ export interface operations {
8637
8715
  /** @description Denotes whether the originating account is the same as the paying account */
8638
8716
  sponsored: boolean;
8639
8717
  sponsor_address?: string;
8640
- post_condition_mode: "allow" | "deny";
8718
+ post_condition_mode: "allow" | "deny" | "originator";
8641
8719
  post_conditions: ({
8642
8720
  principal: {
8643
8721
  /** @enum {string} */
@@ -8693,7 +8771,7 @@ export interface operations {
8693
8771
  address: string;
8694
8772
  contract_name: string;
8695
8773
  };
8696
- condition_code: "sent" | "not_sent";
8774
+ condition_code: "sent" | "not_sent" | "maybe_sent";
8697
8775
  /** @enum {string} */
8698
8776
  type: "non_fungible";
8699
8777
  asset_value: {
@@ -8859,7 +8937,7 @@ export interface operations {
8859
8937
  /** @description Denotes whether the originating account is the same as the paying account */
8860
8938
  sponsored: boolean;
8861
8939
  sponsor_address?: string;
8862
- post_condition_mode: "allow" | "deny";
8940
+ post_condition_mode: "allow" | "deny" | "originator";
8863
8941
  post_conditions: ({
8864
8942
  principal: {
8865
8943
  /** @enum {string} */
@@ -8915,7 +8993,7 @@ export interface operations {
8915
8993
  address: string;
8916
8994
  contract_name: string;
8917
8995
  };
8918
- condition_code: "sent" | "not_sent";
8996
+ condition_code: "sent" | "not_sent" | "maybe_sent";
8919
8997
  /** @enum {string} */
8920
8998
  type: "non_fungible";
8921
8999
  asset_value: {
@@ -9073,7 +9151,7 @@ export interface operations {
9073
9151
  /** @description Denotes whether the originating account is the same as the paying account */
9074
9152
  sponsored: boolean;
9075
9153
  sponsor_address?: string;
9076
- post_condition_mode: "allow" | "deny";
9154
+ post_condition_mode: "allow" | "deny" | "originator";
9077
9155
  post_conditions: ({
9078
9156
  principal: {
9079
9157
  /** @enum {string} */
@@ -9129,7 +9207,7 @@ export interface operations {
9129
9207
  address: string;
9130
9208
  contract_name: string;
9131
9209
  };
9132
- condition_code: "sent" | "not_sent";
9210
+ condition_code: "sent" | "not_sent" | "maybe_sent";
9133
9211
  /** @enum {string} */
9134
9212
  type: "non_fungible";
9135
9213
  asset_value: {
@@ -9287,7 +9365,7 @@ export interface operations {
9287
9365
  /** @description Denotes whether the originating account is the same as the paying account */
9288
9366
  sponsored: boolean;
9289
9367
  sponsor_address?: string;
9290
- post_condition_mode: "allow" | "deny";
9368
+ post_condition_mode: "allow" | "deny" | "originator";
9291
9369
  post_conditions: ({
9292
9370
  principal: {
9293
9371
  /** @enum {string} */
@@ -9343,7 +9421,7 @@ export interface operations {
9343
9421
  address: string;
9344
9422
  contract_name: string;
9345
9423
  };
9346
- condition_code: "sent" | "not_sent";
9424
+ condition_code: "sent" | "not_sent" | "maybe_sent";
9347
9425
  /** @enum {string} */
9348
9426
  type: "non_fungible";
9349
9427
  asset_value: {
@@ -9566,7 +9644,7 @@ export interface operations {
9566
9644
  /** @description Denotes whether the originating account is the same as the paying account */
9567
9645
  sponsored: boolean;
9568
9646
  sponsor_address?: string;
9569
- post_condition_mode: "allow" | "deny";
9647
+ post_condition_mode: "allow" | "deny" | "originator";
9570
9648
  post_conditions: ({
9571
9649
  principal: {
9572
9650
  /** @enum {string} */
@@ -9622,7 +9700,7 @@ export interface operations {
9622
9700
  address: string;
9623
9701
  contract_name: string;
9624
9702
  };
9625
- condition_code: "sent" | "not_sent";
9703
+ condition_code: "sent" | "not_sent" | "maybe_sent";
9626
9704
  /** @enum {string} */
9627
9705
  type: "non_fungible";
9628
9706
  asset_value: {
@@ -9781,7 +9859,7 @@ export interface operations {
9781
9859
  /** @description Denotes whether the originating account is the same as the paying account */
9782
9860
  sponsored: boolean;
9783
9861
  sponsor_address?: string;
9784
- post_condition_mode: "allow" | "deny";
9862
+ post_condition_mode: "allow" | "deny" | "originator";
9785
9863
  post_conditions: ({
9786
9864
  principal: {
9787
9865
  /** @enum {string} */
@@ -9837,7 +9915,7 @@ export interface operations {
9837
9915
  address: string;
9838
9916
  contract_name: string;
9839
9917
  };
9840
- condition_code: "sent" | "not_sent";
9918
+ condition_code: "sent" | "not_sent" | "maybe_sent";
9841
9919
  /** @enum {string} */
9842
9920
  type: "non_fungible";
9843
9921
  asset_value: {
@@ -9996,7 +10074,7 @@ export interface operations {
9996
10074
  /** @description Denotes whether the originating account is the same as the paying account */
9997
10075
  sponsored: boolean;
9998
10076
  sponsor_address?: string;
9999
- post_condition_mode: "allow" | "deny";
10077
+ post_condition_mode: "allow" | "deny" | "originator";
10000
10078
  post_conditions: ({
10001
10079
  principal: {
10002
10080
  /** @enum {string} */
@@ -10052,7 +10130,7 @@ export interface operations {
10052
10130
  address: string;
10053
10131
  contract_name: string;
10054
10132
  };
10055
- condition_code: "sent" | "not_sent";
10133
+ condition_code: "sent" | "not_sent" | "maybe_sent";
10056
10134
  /** @enum {string} */
10057
10135
  type: "non_fungible";
10058
10136
  asset_value: {
@@ -10218,7 +10296,7 @@ export interface operations {
10218
10296
  /** @description Denotes whether the originating account is the same as the paying account */
10219
10297
  sponsored: boolean;
10220
10298
  sponsor_address?: string;
10221
- post_condition_mode: "allow" | "deny";
10299
+ post_condition_mode: "allow" | "deny" | "originator";
10222
10300
  post_conditions: ({
10223
10301
  principal: {
10224
10302
  /** @enum {string} */
@@ -10274,7 +10352,7 @@ export interface operations {
10274
10352
  address: string;
10275
10353
  contract_name: string;
10276
10354
  };
10277
- condition_code: "sent" | "not_sent";
10355
+ condition_code: "sent" | "not_sent" | "maybe_sent";
10278
10356
  /** @enum {string} */
10279
10357
  type: "non_fungible";
10280
10358
  asset_value: {
@@ -10432,7 +10510,7 @@ export interface operations {
10432
10510
  /** @description Denotes whether the originating account is the same as the paying account */
10433
10511
  sponsored: boolean;
10434
10512
  sponsor_address?: string;
10435
- post_condition_mode: "allow" | "deny";
10513
+ post_condition_mode: "allow" | "deny" | "originator";
10436
10514
  post_conditions: ({
10437
10515
  principal: {
10438
10516
  /** @enum {string} */
@@ -10488,7 +10566,7 @@ export interface operations {
10488
10566
  address: string;
10489
10567
  contract_name: string;
10490
10568
  };
10491
- condition_code: "sent" | "not_sent";
10569
+ condition_code: "sent" | "not_sent" | "maybe_sent";
10492
10570
  /** @enum {string} */
10493
10571
  type: "non_fungible";
10494
10572
  asset_value: {
@@ -10646,7 +10724,7 @@ export interface operations {
10646
10724
  /** @description Denotes whether the originating account is the same as the paying account */
10647
10725
  sponsored: boolean;
10648
10726
  sponsor_address?: string;
10649
- post_condition_mode: "allow" | "deny";
10727
+ post_condition_mode: "allow" | "deny" | "originator";
10650
10728
  post_conditions: ({
10651
10729
  principal: {
10652
10730
  /** @enum {string} */
@@ -10702,7 +10780,7 @@ export interface operations {
10702
10780
  address: string;
10703
10781
  contract_name: string;
10704
10782
  };
10705
- condition_code: "sent" | "not_sent";
10783
+ condition_code: "sent" | "not_sent" | "maybe_sent";
10706
10784
  /** @enum {string} */
10707
10785
  type: "non_fungible";
10708
10786
  asset_value: {
@@ -10948,9 +11026,7 @@ export interface operations {
10948
11026
  [name: string]: unknown;
10949
11027
  };
10950
11028
  content: {
10951
- "application/json": {
10952
- content?: unknown;
10953
- };
11029
+ "text/plain": string;
10954
11030
  };
10955
11031
  };
10956
11032
  /** @description Default Response */
@@ -10984,9 +11060,7 @@ export interface operations {
10984
11060
  [name: string]: unknown;
10985
11061
  };
10986
11062
  content: {
10987
- "application/json": {
10988
- content?: unknown;
10989
- };
11063
+ "text/plain": string;
10990
11064
  };
10991
11065
  };
10992
11066
  /** @description Default Response */
@@ -11211,7 +11285,7 @@ export interface operations {
11211
11285
  /** @description Denotes whether the originating account is the same as the paying account */
11212
11286
  sponsored: boolean;
11213
11287
  sponsor_address?: string;
11214
- post_condition_mode: "allow" | "deny";
11288
+ post_condition_mode: "allow" | "deny" | "originator";
11215
11289
  post_conditions: ({
11216
11290
  principal: {
11217
11291
  /** @enum {string} */
@@ -11267,7 +11341,7 @@ export interface operations {
11267
11341
  address: string;
11268
11342
  contract_name: string;
11269
11343
  };
11270
- condition_code: "sent" | "not_sent";
11344
+ condition_code: "sent" | "not_sent" | "maybe_sent";
11271
11345
  /** @enum {string} */
11272
11346
  type: "non_fungible";
11273
11347
  asset_value: {
@@ -11426,7 +11500,7 @@ export interface operations {
11426
11500
  /** @description Denotes whether the originating account is the same as the paying account */
11427
11501
  sponsored: boolean;
11428
11502
  sponsor_address?: string;
11429
- post_condition_mode: "allow" | "deny";
11503
+ post_condition_mode: "allow" | "deny" | "originator";
11430
11504
  post_conditions: ({
11431
11505
  principal: {
11432
11506
  /** @enum {string} */
@@ -11482,7 +11556,7 @@ export interface operations {
11482
11556
  address: string;
11483
11557
  contract_name: string;
11484
11558
  };
11485
- condition_code: "sent" | "not_sent";
11559
+ condition_code: "sent" | "not_sent" | "maybe_sent";
11486
11560
  /** @enum {string} */
11487
11561
  type: "non_fungible";
11488
11562
  asset_value: {
@@ -11641,7 +11715,7 @@ export interface operations {
11641
11715
  /** @description Denotes whether the originating account is the same as the paying account */
11642
11716
  sponsored: boolean;
11643
11717
  sponsor_address?: string;
11644
- post_condition_mode: "allow" | "deny";
11718
+ post_condition_mode: "allow" | "deny" | "originator";
11645
11719
  post_conditions: ({
11646
11720
  principal: {
11647
11721
  /** @enum {string} */
@@ -11697,7 +11771,7 @@ export interface operations {
11697
11771
  address: string;
11698
11772
  contract_name: string;
11699
11773
  };
11700
- condition_code: "sent" | "not_sent";
11774
+ condition_code: "sent" | "not_sent" | "maybe_sent";
11701
11775
  /** @enum {string} */
11702
11776
  type: "non_fungible";
11703
11777
  asset_value: {
@@ -11863,7 +11937,7 @@ export interface operations {
11863
11937
  /** @description Denotes whether the originating account is the same as the paying account */
11864
11938
  sponsored: boolean;
11865
11939
  sponsor_address?: string;
11866
- post_condition_mode: "allow" | "deny";
11940
+ post_condition_mode: "allow" | "deny" | "originator";
11867
11941
  post_conditions: ({
11868
11942
  principal: {
11869
11943
  /** @enum {string} */
@@ -11919,7 +11993,7 @@ export interface operations {
11919
11993
  address: string;
11920
11994
  contract_name: string;
11921
11995
  };
11922
- condition_code: "sent" | "not_sent";
11996
+ condition_code: "sent" | "not_sent" | "maybe_sent";
11923
11997
  /** @enum {string} */
11924
11998
  type: "non_fungible";
11925
11999
  asset_value: {
@@ -12077,7 +12151,7 @@ export interface operations {
12077
12151
  /** @description Denotes whether the originating account is the same as the paying account */
12078
12152
  sponsored: boolean;
12079
12153
  sponsor_address?: string;
12080
- post_condition_mode: "allow" | "deny";
12154
+ post_condition_mode: "allow" | "deny" | "originator";
12081
12155
  post_conditions: ({
12082
12156
  principal: {
12083
12157
  /** @enum {string} */
@@ -12133,7 +12207,7 @@ export interface operations {
12133
12207
  address: string;
12134
12208
  contract_name: string;
12135
12209
  };
12136
- condition_code: "sent" | "not_sent";
12210
+ condition_code: "sent" | "not_sent" | "maybe_sent";
12137
12211
  /** @enum {string} */
12138
12212
  type: "non_fungible";
12139
12213
  asset_value: {
@@ -12291,7 +12365,7 @@ export interface operations {
12291
12365
  /** @description Denotes whether the originating account is the same as the paying account */
12292
12366
  sponsored: boolean;
12293
12367
  sponsor_address?: string;
12294
- post_condition_mode: "allow" | "deny";
12368
+ post_condition_mode: "allow" | "deny" | "originator";
12295
12369
  post_conditions: ({
12296
12370
  principal: {
12297
12371
  /** @enum {string} */
@@ -12347,7 +12421,7 @@ export interface operations {
12347
12421
  address: string;
12348
12422
  contract_name: string;
12349
12423
  };
12350
- condition_code: "sent" | "not_sent";
12424
+ condition_code: "sent" | "not_sent" | "maybe_sent";
12351
12425
  /** @enum {string} */
12352
12426
  type: "non_fungible";
12353
12427
  asset_value: {
@@ -12591,7 +12665,7 @@ export interface operations {
12591
12665
  /** @description Denotes whether the originating account is the same as the paying account */
12592
12666
  sponsored: boolean;
12593
12667
  sponsor_address?: string;
12594
- post_condition_mode: "allow" | "deny";
12668
+ post_condition_mode: "allow" | "deny" | "originator";
12595
12669
  post_conditions: ({
12596
12670
  principal: {
12597
12671
  /** @enum {string} */
@@ -12647,7 +12721,7 @@ export interface operations {
12647
12721
  address: string;
12648
12722
  contract_name: string;
12649
12723
  };
12650
- condition_code: "sent" | "not_sent";
12724
+ condition_code: "sent" | "not_sent" | "maybe_sent";
12651
12725
  /** @enum {string} */
12652
12726
  type: "non_fungible";
12653
12727
  asset_value: {
@@ -12806,7 +12880,7 @@ export interface operations {
12806
12880
  /** @description Denotes whether the originating account is the same as the paying account */
12807
12881
  sponsored: boolean;
12808
12882
  sponsor_address?: string;
12809
- post_condition_mode: "allow" | "deny";
12883
+ post_condition_mode: "allow" | "deny" | "originator";
12810
12884
  post_conditions: ({
12811
12885
  principal: {
12812
12886
  /** @enum {string} */
@@ -12862,7 +12936,7 @@ export interface operations {
12862
12936
  address: string;
12863
12937
  contract_name: string;
12864
12938
  };
12865
- condition_code: "sent" | "not_sent";
12939
+ condition_code: "sent" | "not_sent" | "maybe_sent";
12866
12940
  /** @enum {string} */
12867
12941
  type: "non_fungible";
12868
12942
  asset_value: {
@@ -13021,7 +13095,7 @@ export interface operations {
13021
13095
  /** @description Denotes whether the originating account is the same as the paying account */
13022
13096
  sponsored: boolean;
13023
13097
  sponsor_address?: string;
13024
- post_condition_mode: "allow" | "deny";
13098
+ post_condition_mode: "allow" | "deny" | "originator";
13025
13099
  post_conditions: ({
13026
13100
  principal: {
13027
13101
  /** @enum {string} */
@@ -13077,7 +13151,7 @@ export interface operations {
13077
13151
  address: string;
13078
13152
  contract_name: string;
13079
13153
  };
13080
- condition_code: "sent" | "not_sent";
13154
+ condition_code: "sent" | "not_sent" | "maybe_sent";
13081
13155
  /** @enum {string} */
13082
13156
  type: "non_fungible";
13083
13157
  asset_value: {
@@ -13243,7 +13317,7 @@ export interface operations {
13243
13317
  /** @description Denotes whether the originating account is the same as the paying account */
13244
13318
  sponsored: boolean;
13245
13319
  sponsor_address?: string;
13246
- post_condition_mode: "allow" | "deny";
13320
+ post_condition_mode: "allow" | "deny" | "originator";
13247
13321
  post_conditions: ({
13248
13322
  principal: {
13249
13323
  /** @enum {string} */
@@ -13299,7 +13373,7 @@ export interface operations {
13299
13373
  address: string;
13300
13374
  contract_name: string;
13301
13375
  };
13302
- condition_code: "sent" | "not_sent";
13376
+ condition_code: "sent" | "not_sent" | "maybe_sent";
13303
13377
  /** @enum {string} */
13304
13378
  type: "non_fungible";
13305
13379
  asset_value: {
@@ -13457,7 +13531,7 @@ export interface operations {
13457
13531
  /** @description Denotes whether the originating account is the same as the paying account */
13458
13532
  sponsored: boolean;
13459
13533
  sponsor_address?: string;
13460
- post_condition_mode: "allow" | "deny";
13534
+ post_condition_mode: "allow" | "deny" | "originator";
13461
13535
  post_conditions: ({
13462
13536
  principal: {
13463
13537
  /** @enum {string} */
@@ -13513,7 +13587,7 @@ export interface operations {
13513
13587
  address: string;
13514
13588
  contract_name: string;
13515
13589
  };
13516
- condition_code: "sent" | "not_sent";
13590
+ condition_code: "sent" | "not_sent" | "maybe_sent";
13517
13591
  /** @enum {string} */
13518
13592
  type: "non_fungible";
13519
13593
  asset_value: {
@@ -13671,7 +13745,7 @@ export interface operations {
13671
13745
  /** @description Denotes whether the originating account is the same as the paying account */
13672
13746
  sponsored: boolean;
13673
13747
  sponsor_address?: string;
13674
- post_condition_mode: "allow" | "deny";
13748
+ post_condition_mode: "allow" | "deny" | "originator";
13675
13749
  post_conditions: ({
13676
13750
  principal: {
13677
13751
  /** @enum {string} */
@@ -13727,7 +13801,7 @@ export interface operations {
13727
13801
  address: string;
13728
13802
  contract_name: string;
13729
13803
  };
13730
- condition_code: "sent" | "not_sent";
13804
+ condition_code: "sent" | "not_sent" | "maybe_sent";
13731
13805
  /** @enum {string} */
13732
13806
  type: "non_fungible";
13733
13807
  asset_value: {
@@ -13976,7 +14050,7 @@ export interface operations {
13976
14050
  /** @description Denotes whether the originating account is the same as the paying account */
13977
14051
  sponsored: boolean;
13978
14052
  sponsor_address?: string;
13979
- post_condition_mode: "allow" | "deny";
14053
+ post_condition_mode: "allow" | "deny" | "originator";
13980
14054
  post_conditions: ({
13981
14055
  principal: {
13982
14056
  /** @enum {string} */
@@ -14032,7 +14106,7 @@ export interface operations {
14032
14106
  address: string;
14033
14107
  contract_name: string;
14034
14108
  };
14035
- condition_code: "sent" | "not_sent";
14109
+ condition_code: "sent" | "not_sent" | "maybe_sent";
14036
14110
  /** @enum {string} */
14037
14111
  type: "non_fungible";
14038
14112
  asset_value: {
@@ -14191,7 +14265,7 @@ export interface operations {
14191
14265
  /** @description Denotes whether the originating account is the same as the paying account */
14192
14266
  sponsored: boolean;
14193
14267
  sponsor_address?: string;
14194
- post_condition_mode: "allow" | "deny";
14268
+ post_condition_mode: "allow" | "deny" | "originator";
14195
14269
  post_conditions: ({
14196
14270
  principal: {
14197
14271
  /** @enum {string} */
@@ -14247,7 +14321,7 @@ export interface operations {
14247
14321
  address: string;
14248
14322
  contract_name: string;
14249
14323
  };
14250
- condition_code: "sent" | "not_sent";
14324
+ condition_code: "sent" | "not_sent" | "maybe_sent";
14251
14325
  /** @enum {string} */
14252
14326
  type: "non_fungible";
14253
14327
  asset_value: {
@@ -14406,7 +14480,7 @@ export interface operations {
14406
14480
  /** @description Denotes whether the originating account is the same as the paying account */
14407
14481
  sponsored: boolean;
14408
14482
  sponsor_address?: string;
14409
- post_condition_mode: "allow" | "deny";
14483
+ post_condition_mode: "allow" | "deny" | "originator";
14410
14484
  post_conditions: ({
14411
14485
  principal: {
14412
14486
  /** @enum {string} */
@@ -14462,7 +14536,7 @@ export interface operations {
14462
14536
  address: string;
14463
14537
  contract_name: string;
14464
14538
  };
14465
- condition_code: "sent" | "not_sent";
14539
+ condition_code: "sent" | "not_sent" | "maybe_sent";
14466
14540
  /** @enum {string} */
14467
14541
  type: "non_fungible";
14468
14542
  asset_value: {
@@ -14628,7 +14702,7 @@ export interface operations {
14628
14702
  /** @description Denotes whether the originating account is the same as the paying account */
14629
14703
  sponsored: boolean;
14630
14704
  sponsor_address?: string;
14631
- post_condition_mode: "allow" | "deny";
14705
+ post_condition_mode: "allow" | "deny" | "originator";
14632
14706
  post_conditions: ({
14633
14707
  principal: {
14634
14708
  /** @enum {string} */
@@ -14684,7 +14758,7 @@ export interface operations {
14684
14758
  address: string;
14685
14759
  contract_name: string;
14686
14760
  };
14687
- condition_code: "sent" | "not_sent";
14761
+ condition_code: "sent" | "not_sent" | "maybe_sent";
14688
14762
  /** @enum {string} */
14689
14763
  type: "non_fungible";
14690
14764
  asset_value: {
@@ -14842,7 +14916,7 @@ export interface operations {
14842
14916
  /** @description Denotes whether the originating account is the same as the paying account */
14843
14917
  sponsored: boolean;
14844
14918
  sponsor_address?: string;
14845
- post_condition_mode: "allow" | "deny";
14919
+ post_condition_mode: "allow" | "deny" | "originator";
14846
14920
  post_conditions: ({
14847
14921
  principal: {
14848
14922
  /** @enum {string} */
@@ -14898,7 +14972,7 @@ export interface operations {
14898
14972
  address: string;
14899
14973
  contract_name: string;
14900
14974
  };
14901
- condition_code: "sent" | "not_sent";
14975
+ condition_code: "sent" | "not_sent" | "maybe_sent";
14902
14976
  /** @enum {string} */
14903
14977
  type: "non_fungible";
14904
14978
  asset_value: {
@@ -15056,7 +15130,7 @@ export interface operations {
15056
15130
  /** @description Denotes whether the originating account is the same as the paying account */
15057
15131
  sponsored: boolean;
15058
15132
  sponsor_address?: string;
15059
- post_condition_mode: "allow" | "deny";
15133
+ post_condition_mode: "allow" | "deny" | "originator";
15060
15134
  post_conditions: ({
15061
15135
  principal: {
15062
15136
  /** @enum {string} */
@@ -15112,7 +15186,7 @@ export interface operations {
15112
15186
  address: string;
15113
15187
  contract_name: string;
15114
15188
  };
15115
- condition_code: "sent" | "not_sent";
15189
+ condition_code: "sent" | "not_sent" | "maybe_sent";
15116
15190
  /** @enum {string} */
15117
15191
  type: "non_fungible";
15118
15192
  asset_value: {
@@ -15790,7 +15864,7 @@ export interface operations {
15790
15864
  /** @description Denotes whether the originating account is the same as the paying account */
15791
15865
  sponsored: boolean;
15792
15866
  sponsor_address?: string;
15793
- post_condition_mode: "allow" | "deny";
15867
+ post_condition_mode: "allow" | "deny" | "originator";
15794
15868
  post_conditions: ({
15795
15869
  principal: {
15796
15870
  /** @enum {string} */
@@ -15846,7 +15920,7 @@ export interface operations {
15846
15920
  address: string;
15847
15921
  contract_name: string;
15848
15922
  };
15849
- condition_code: "sent" | "not_sent";
15923
+ condition_code: "sent" | "not_sent" | "maybe_sent";
15850
15924
  /** @enum {string} */
15851
15925
  type: "non_fungible";
15852
15926
  asset_value: {
@@ -16005,7 +16079,7 @@ export interface operations {
16005
16079
  /** @description Denotes whether the originating account is the same as the paying account */
16006
16080
  sponsored: boolean;
16007
16081
  sponsor_address?: string;
16008
- post_condition_mode: "allow" | "deny";
16082
+ post_condition_mode: "allow" | "deny" | "originator";
16009
16083
  post_conditions: ({
16010
16084
  principal: {
16011
16085
  /** @enum {string} */
@@ -16061,7 +16135,7 @@ export interface operations {
16061
16135
  address: string;
16062
16136
  contract_name: string;
16063
16137
  };
16064
- condition_code: "sent" | "not_sent";
16138
+ condition_code: "sent" | "not_sent" | "maybe_sent";
16065
16139
  /** @enum {string} */
16066
16140
  type: "non_fungible";
16067
16141
  asset_value: {
@@ -16220,7 +16294,7 @@ export interface operations {
16220
16294
  /** @description Denotes whether the originating account is the same as the paying account */
16221
16295
  sponsored: boolean;
16222
16296
  sponsor_address?: string;
16223
- post_condition_mode: "allow" | "deny";
16297
+ post_condition_mode: "allow" | "deny" | "originator";
16224
16298
  post_conditions: ({
16225
16299
  principal: {
16226
16300
  /** @enum {string} */
@@ -16276,7 +16350,7 @@ export interface operations {
16276
16350
  address: string;
16277
16351
  contract_name: string;
16278
16352
  };
16279
- condition_code: "sent" | "not_sent";
16353
+ condition_code: "sent" | "not_sent" | "maybe_sent";
16280
16354
  /** @enum {string} */
16281
16355
  type: "non_fungible";
16282
16356
  asset_value: {
@@ -16442,7 +16516,7 @@ export interface operations {
16442
16516
  /** @description Denotes whether the originating account is the same as the paying account */
16443
16517
  sponsored: boolean;
16444
16518
  sponsor_address?: string;
16445
- post_condition_mode: "allow" | "deny";
16519
+ post_condition_mode: "allow" | "deny" | "originator";
16446
16520
  post_conditions: ({
16447
16521
  principal: {
16448
16522
  /** @enum {string} */
@@ -16498,7 +16572,7 @@ export interface operations {
16498
16572
  address: string;
16499
16573
  contract_name: string;
16500
16574
  };
16501
- condition_code: "sent" | "not_sent";
16575
+ condition_code: "sent" | "not_sent" | "maybe_sent";
16502
16576
  /** @enum {string} */
16503
16577
  type: "non_fungible";
16504
16578
  asset_value: {
@@ -16656,7 +16730,7 @@ export interface operations {
16656
16730
  /** @description Denotes whether the originating account is the same as the paying account */
16657
16731
  sponsored: boolean;
16658
16732
  sponsor_address?: string;
16659
- post_condition_mode: "allow" | "deny";
16733
+ post_condition_mode: "allow" | "deny" | "originator";
16660
16734
  post_conditions: ({
16661
16735
  principal: {
16662
16736
  /** @enum {string} */
@@ -16712,7 +16786,7 @@ export interface operations {
16712
16786
  address: string;
16713
16787
  contract_name: string;
16714
16788
  };
16715
- condition_code: "sent" | "not_sent";
16789
+ condition_code: "sent" | "not_sent" | "maybe_sent";
16716
16790
  /** @enum {string} */
16717
16791
  type: "non_fungible";
16718
16792
  asset_value: {
@@ -16870,7 +16944,7 @@ export interface operations {
16870
16944
  /** @description Denotes whether the originating account is the same as the paying account */
16871
16945
  sponsored: boolean;
16872
16946
  sponsor_address?: string;
16873
- post_condition_mode: "allow" | "deny";
16947
+ post_condition_mode: "allow" | "deny" | "originator";
16874
16948
  post_conditions: ({
16875
16949
  principal: {
16876
16950
  /** @enum {string} */
@@ -16926,7 +17000,7 @@ export interface operations {
16926
17000
  address: string;
16927
17001
  contract_name: string;
16928
17002
  };
16929
- condition_code: "sent" | "not_sent";
17003
+ condition_code: "sent" | "not_sent" | "maybe_sent";
16930
17004
  /** @enum {string} */
16931
17005
  type: "non_fungible";
16932
17006
  asset_value: {
@@ -18085,7 +18159,7 @@ export interface operations {
18085
18159
  /** @description Denotes whether the originating account is the same as the paying account */
18086
18160
  sponsored: boolean;
18087
18161
  sponsor_address?: string;
18088
- post_condition_mode: "allow" | "deny";
18162
+ post_condition_mode: "allow" | "deny" | "originator";
18089
18163
  post_conditions: ({
18090
18164
  principal: {
18091
18165
  /** @enum {string} */
@@ -18141,7 +18215,7 @@ export interface operations {
18141
18215
  address: string;
18142
18216
  contract_name: string;
18143
18217
  };
18144
- condition_code: "sent" | "not_sent";
18218
+ condition_code: "sent" | "not_sent" | "maybe_sent";
18145
18219
  /** @enum {string} */
18146
18220
  type: "non_fungible";
18147
18221
  asset_value: {
@@ -18300,7 +18374,7 @@ export interface operations {
18300
18374
  /** @description Denotes whether the originating account is the same as the paying account */
18301
18375
  sponsored: boolean;
18302
18376
  sponsor_address?: string;
18303
- post_condition_mode: "allow" | "deny";
18377
+ post_condition_mode: "allow" | "deny" | "originator";
18304
18378
  post_conditions: ({
18305
18379
  principal: {
18306
18380
  /** @enum {string} */
@@ -18356,7 +18430,7 @@ export interface operations {
18356
18430
  address: string;
18357
18431
  contract_name: string;
18358
18432
  };
18359
- condition_code: "sent" | "not_sent";
18433
+ condition_code: "sent" | "not_sent" | "maybe_sent";
18360
18434
  /** @enum {string} */
18361
18435
  type: "non_fungible";
18362
18436
  asset_value: {
@@ -18515,7 +18589,7 @@ export interface operations {
18515
18589
  /** @description Denotes whether the originating account is the same as the paying account */
18516
18590
  sponsored: boolean;
18517
18591
  sponsor_address?: string;
18518
- post_condition_mode: "allow" | "deny";
18592
+ post_condition_mode: "allow" | "deny" | "originator";
18519
18593
  post_conditions: ({
18520
18594
  principal: {
18521
18595
  /** @enum {string} */
@@ -18571,7 +18645,7 @@ export interface operations {
18571
18645
  address: string;
18572
18646
  contract_name: string;
18573
18647
  };
18574
- condition_code: "sent" | "not_sent";
18648
+ condition_code: "sent" | "not_sent" | "maybe_sent";
18575
18649
  /** @enum {string} */
18576
18650
  type: "non_fungible";
18577
18651
  asset_value: {
@@ -18737,7 +18811,7 @@ export interface operations {
18737
18811
  /** @description Denotes whether the originating account is the same as the paying account */
18738
18812
  sponsored: boolean;
18739
18813
  sponsor_address?: string;
18740
- post_condition_mode: "allow" | "deny";
18814
+ post_condition_mode: "allow" | "deny" | "originator";
18741
18815
  post_conditions: ({
18742
18816
  principal: {
18743
18817
  /** @enum {string} */
@@ -18793,7 +18867,7 @@ export interface operations {
18793
18867
  address: string;
18794
18868
  contract_name: string;
18795
18869
  };
18796
- condition_code: "sent" | "not_sent";
18870
+ condition_code: "sent" | "not_sent" | "maybe_sent";
18797
18871
  /** @enum {string} */
18798
18872
  type: "non_fungible";
18799
18873
  asset_value: {
@@ -18951,7 +19025,7 @@ export interface operations {
18951
19025
  /** @description Denotes whether the originating account is the same as the paying account */
18952
19026
  sponsored: boolean;
18953
19027
  sponsor_address?: string;
18954
- post_condition_mode: "allow" | "deny";
19028
+ post_condition_mode: "allow" | "deny" | "originator";
18955
19029
  post_conditions: ({
18956
19030
  principal: {
18957
19031
  /** @enum {string} */
@@ -19007,7 +19081,7 @@ export interface operations {
19007
19081
  address: string;
19008
19082
  contract_name: string;
19009
19083
  };
19010
- condition_code: "sent" | "not_sent";
19084
+ condition_code: "sent" | "not_sent" | "maybe_sent";
19011
19085
  /** @enum {string} */
19012
19086
  type: "non_fungible";
19013
19087
  asset_value: {
@@ -19165,7 +19239,7 @@ export interface operations {
19165
19239
  /** @description Denotes whether the originating account is the same as the paying account */
19166
19240
  sponsored: boolean;
19167
19241
  sponsor_address?: string;
19168
- post_condition_mode: "allow" | "deny";
19242
+ post_condition_mode: "allow" | "deny" | "originator";
19169
19243
  post_conditions: ({
19170
19244
  principal: {
19171
19245
  /** @enum {string} */
@@ -19221,7 +19295,7 @@ export interface operations {
19221
19295
  address: string;
19222
19296
  contract_name: string;
19223
19297
  };
19224
- condition_code: "sent" | "not_sent";
19298
+ condition_code: "sent" | "not_sent" | "maybe_sent";
19225
19299
  /** @enum {string} */
19226
19300
  type: "non_fungible";
19227
19301
  asset_value: {
@@ -19432,7 +19506,7 @@ export interface operations {
19432
19506
  /** @description Denotes whether the originating account is the same as the paying account */
19433
19507
  sponsored: boolean;
19434
19508
  sponsor_address?: string;
19435
- post_condition_mode: "allow" | "deny";
19509
+ post_condition_mode: "allow" | "deny" | "originator";
19436
19510
  post_conditions: ({
19437
19511
  principal: {
19438
19512
  /** @enum {string} */
@@ -19488,7 +19562,7 @@ export interface operations {
19488
19562
  address: string;
19489
19563
  contract_name: string;
19490
19564
  };
19491
- condition_code: "sent" | "not_sent";
19565
+ condition_code: "sent" | "not_sent" | "maybe_sent";
19492
19566
  /** @enum {string} */
19493
19567
  type: "non_fungible";
19494
19568
  asset_value: {
@@ -19647,7 +19721,7 @@ export interface operations {
19647
19721
  /** @description Denotes whether the originating account is the same as the paying account */
19648
19722
  sponsored: boolean;
19649
19723
  sponsor_address?: string;
19650
- post_condition_mode: "allow" | "deny";
19724
+ post_condition_mode: "allow" | "deny" | "originator";
19651
19725
  post_conditions: ({
19652
19726
  principal: {
19653
19727
  /** @enum {string} */
@@ -19703,7 +19777,7 @@ export interface operations {
19703
19777
  address: string;
19704
19778
  contract_name: string;
19705
19779
  };
19706
- condition_code: "sent" | "not_sent";
19780
+ condition_code: "sent" | "not_sent" | "maybe_sent";
19707
19781
  /** @enum {string} */
19708
19782
  type: "non_fungible";
19709
19783
  asset_value: {
@@ -19862,7 +19936,7 @@ export interface operations {
19862
19936
  /** @description Denotes whether the originating account is the same as the paying account */
19863
19937
  sponsored: boolean;
19864
19938
  sponsor_address?: string;
19865
- post_condition_mode: "allow" | "deny";
19939
+ post_condition_mode: "allow" | "deny" | "originator";
19866
19940
  post_conditions: ({
19867
19941
  principal: {
19868
19942
  /** @enum {string} */
@@ -19918,7 +19992,7 @@ export interface operations {
19918
19992
  address: string;
19919
19993
  contract_name: string;
19920
19994
  };
19921
- condition_code: "sent" | "not_sent";
19995
+ condition_code: "sent" | "not_sent" | "maybe_sent";
19922
19996
  /** @enum {string} */
19923
19997
  type: "non_fungible";
19924
19998
  asset_value: {
@@ -20084,7 +20158,7 @@ export interface operations {
20084
20158
  /** @description Denotes whether the originating account is the same as the paying account */
20085
20159
  sponsored: boolean;
20086
20160
  sponsor_address?: string;
20087
- post_condition_mode: "allow" | "deny";
20161
+ post_condition_mode: "allow" | "deny" | "originator";
20088
20162
  post_conditions: ({
20089
20163
  principal: {
20090
20164
  /** @enum {string} */
@@ -20140,7 +20214,7 @@ export interface operations {
20140
20214
  address: string;
20141
20215
  contract_name: string;
20142
20216
  };
20143
- condition_code: "sent" | "not_sent";
20217
+ condition_code: "sent" | "not_sent" | "maybe_sent";
20144
20218
  /** @enum {string} */
20145
20219
  type: "non_fungible";
20146
20220
  asset_value: {
@@ -20298,7 +20372,7 @@ export interface operations {
20298
20372
  /** @description Denotes whether the originating account is the same as the paying account */
20299
20373
  sponsored: boolean;
20300
20374
  sponsor_address?: string;
20301
- post_condition_mode: "allow" | "deny";
20375
+ post_condition_mode: "allow" | "deny" | "originator";
20302
20376
  post_conditions: ({
20303
20377
  principal: {
20304
20378
  /** @enum {string} */
@@ -20354,7 +20428,7 @@ export interface operations {
20354
20428
  address: string;
20355
20429
  contract_name: string;
20356
20430
  };
20357
- condition_code: "sent" | "not_sent";
20431
+ condition_code: "sent" | "not_sent" | "maybe_sent";
20358
20432
  /** @enum {string} */
20359
20433
  type: "non_fungible";
20360
20434
  asset_value: {
@@ -20512,7 +20586,7 @@ export interface operations {
20512
20586
  /** @description Denotes whether the originating account is the same as the paying account */
20513
20587
  sponsored: boolean;
20514
20588
  sponsor_address?: string;
20515
- post_condition_mode: "allow" | "deny";
20589
+ post_condition_mode: "allow" | "deny" | "originator";
20516
20590
  post_conditions: ({
20517
20591
  principal: {
20518
20592
  /** @enum {string} */
@@ -20568,7 +20642,7 @@ export interface operations {
20568
20642
  address: string;
20569
20643
  contract_name: string;
20570
20644
  };
20571
- condition_code: "sent" | "not_sent";
20645
+ condition_code: "sent" | "not_sent" | "maybe_sent";
20572
20646
  /** @enum {string} */
20573
20647
  type: "non_fungible";
20574
20648
  asset_value: {
@@ -20830,7 +20904,7 @@ export interface operations {
20830
20904
  /** @description Denotes whether the originating account is the same as the paying account */
20831
20905
  sponsored: boolean;
20832
20906
  sponsor_address?: string;
20833
- post_condition_mode: "allow" | "deny";
20907
+ post_condition_mode: "allow" | "deny" | "originator";
20834
20908
  post_conditions: ({
20835
20909
  principal: {
20836
20910
  /** @enum {string} */
@@ -20886,7 +20960,7 @@ export interface operations {
20886
20960
  address: string;
20887
20961
  contract_name: string;
20888
20962
  };
20889
- condition_code: "sent" | "not_sent";
20963
+ condition_code: "sent" | "not_sent" | "maybe_sent";
20890
20964
  /** @enum {string} */
20891
20965
  type: "non_fungible";
20892
20966
  asset_value: {
@@ -21045,7 +21119,7 @@ export interface operations {
21045
21119
  /** @description Denotes whether the originating account is the same as the paying account */
21046
21120
  sponsored: boolean;
21047
21121
  sponsor_address?: string;
21048
- post_condition_mode: "allow" | "deny";
21122
+ post_condition_mode: "allow" | "deny" | "originator";
21049
21123
  post_conditions: ({
21050
21124
  principal: {
21051
21125
  /** @enum {string} */
@@ -21101,7 +21175,7 @@ export interface operations {
21101
21175
  address: string;
21102
21176
  contract_name: string;
21103
21177
  };
21104
- condition_code: "sent" | "not_sent";
21178
+ condition_code: "sent" | "not_sent" | "maybe_sent";
21105
21179
  /** @enum {string} */
21106
21180
  type: "non_fungible";
21107
21181
  asset_value: {
@@ -21260,7 +21334,7 @@ export interface operations {
21260
21334
  /** @description Denotes whether the originating account is the same as the paying account */
21261
21335
  sponsored: boolean;
21262
21336
  sponsor_address?: string;
21263
- post_condition_mode: "allow" | "deny";
21337
+ post_condition_mode: "allow" | "deny" | "originator";
21264
21338
  post_conditions: ({
21265
21339
  principal: {
21266
21340
  /** @enum {string} */
@@ -21316,7 +21390,7 @@ export interface operations {
21316
21390
  address: string;
21317
21391
  contract_name: string;
21318
21392
  };
21319
- condition_code: "sent" | "not_sent";
21393
+ condition_code: "sent" | "not_sent" | "maybe_sent";
21320
21394
  /** @enum {string} */
21321
21395
  type: "non_fungible";
21322
21396
  asset_value: {
@@ -21482,7 +21556,7 @@ export interface operations {
21482
21556
  /** @description Denotes whether the originating account is the same as the paying account */
21483
21557
  sponsored: boolean;
21484
21558
  sponsor_address?: string;
21485
- post_condition_mode: "allow" | "deny";
21559
+ post_condition_mode: "allow" | "deny" | "originator";
21486
21560
  post_conditions: ({
21487
21561
  principal: {
21488
21562
  /** @enum {string} */
@@ -21538,7 +21612,7 @@ export interface operations {
21538
21612
  address: string;
21539
21613
  contract_name: string;
21540
21614
  };
21541
- condition_code: "sent" | "not_sent";
21615
+ condition_code: "sent" | "not_sent" | "maybe_sent";
21542
21616
  /** @enum {string} */
21543
21617
  type: "non_fungible";
21544
21618
  asset_value: {
@@ -21696,7 +21770,7 @@ export interface operations {
21696
21770
  /** @description Denotes whether the originating account is the same as the paying account */
21697
21771
  sponsored: boolean;
21698
21772
  sponsor_address?: string;
21699
- post_condition_mode: "allow" | "deny";
21773
+ post_condition_mode: "allow" | "deny" | "originator";
21700
21774
  post_conditions: ({
21701
21775
  principal: {
21702
21776
  /** @enum {string} */
@@ -21752,7 +21826,7 @@ export interface operations {
21752
21826
  address: string;
21753
21827
  contract_name: string;
21754
21828
  };
21755
- condition_code: "sent" | "not_sent";
21829
+ condition_code: "sent" | "not_sent" | "maybe_sent";
21756
21830
  /** @enum {string} */
21757
21831
  type: "non_fungible";
21758
21832
  asset_value: {
@@ -21910,7 +21984,7 @@ export interface operations {
21910
21984
  /** @description Denotes whether the originating account is the same as the paying account */
21911
21985
  sponsored: boolean;
21912
21986
  sponsor_address?: string;
21913
- post_condition_mode: "allow" | "deny";
21987
+ post_condition_mode: "allow" | "deny" | "originator";
21914
21988
  post_conditions: ({
21915
21989
  principal: {
21916
21990
  /** @enum {string} */
@@ -21966,7 +22040,7 @@ export interface operations {
21966
22040
  address: string;
21967
22041
  contract_name: string;
21968
22042
  };
21969
- condition_code: "sent" | "not_sent";
22043
+ condition_code: "sent" | "not_sent" | "maybe_sent";
21970
22044
  /** @enum {string} */
21971
22045
  type: "non_fungible";
21972
22046
  asset_value: {
@@ -22422,7 +22496,7 @@ export interface operations {
22422
22496
  /** @description Denotes whether the originating account is the same as the paying account */
22423
22497
  sponsored: boolean;
22424
22498
  sponsor_address?: string;
22425
- post_condition_mode: "allow" | "deny";
22499
+ post_condition_mode: "allow" | "deny" | "originator";
22426
22500
  post_conditions: ({
22427
22501
  principal: {
22428
22502
  /** @enum {string} */
@@ -22478,7 +22552,7 @@ export interface operations {
22478
22552
  address: string;
22479
22553
  contract_name: string;
22480
22554
  };
22481
- condition_code: "sent" | "not_sent";
22555
+ condition_code: "sent" | "not_sent" | "maybe_sent";
22482
22556
  /** @enum {string} */
22483
22557
  type: "non_fungible";
22484
22558
  asset_value: {
@@ -22522,7 +22596,7 @@ export interface operations {
22522
22596
  /** @description Denotes whether the originating account is the same as the paying account */
22523
22597
  sponsored: boolean;
22524
22598
  sponsor_address?: string;
22525
- post_condition_mode: "allow" | "deny";
22599
+ post_condition_mode: "allow" | "deny" | "originator";
22526
22600
  post_conditions: ({
22527
22601
  principal: {
22528
22602
  /** @enum {string} */
@@ -22578,7 +22652,7 @@ export interface operations {
22578
22652
  address: string;
22579
22653
  contract_name: string;
22580
22654
  };
22581
- condition_code: "sent" | "not_sent";
22655
+ condition_code: "sent" | "not_sent" | "maybe_sent";
22582
22656
  /** @enum {string} */
22583
22657
  type: "non_fungible";
22584
22658
  asset_value: {
@@ -22622,7 +22696,7 @@ export interface operations {
22622
22696
  /** @description Denotes whether the originating account is the same as the paying account */
22623
22697
  sponsored: boolean;
22624
22698
  sponsor_address?: string;
22625
- post_condition_mode: "allow" | "deny";
22699
+ post_condition_mode: "allow" | "deny" | "originator";
22626
22700
  post_conditions: ({
22627
22701
  principal: {
22628
22702
  /** @enum {string} */
@@ -22678,7 +22752,7 @@ export interface operations {
22678
22752
  address: string;
22679
22753
  contract_name: string;
22680
22754
  };
22681
- condition_code: "sent" | "not_sent";
22755
+ condition_code: "sent" | "not_sent" | "maybe_sent";
22682
22756
  /** @enum {string} */
22683
22757
  type: "non_fungible";
22684
22758
  asset_value: {
@@ -22729,7 +22803,7 @@ export interface operations {
22729
22803
  /** @description Denotes whether the originating account is the same as the paying account */
22730
22804
  sponsored: boolean;
22731
22805
  sponsor_address?: string;
22732
- post_condition_mode: "allow" | "deny";
22806
+ post_condition_mode: "allow" | "deny" | "originator";
22733
22807
  post_conditions: ({
22734
22808
  principal: {
22735
22809
  /** @enum {string} */
@@ -22785,7 +22859,7 @@ export interface operations {
22785
22859
  address: string;
22786
22860
  contract_name: string;
22787
22861
  };
22788
- condition_code: "sent" | "not_sent";
22862
+ condition_code: "sent" | "not_sent" | "maybe_sent";
22789
22863
  /** @enum {string} */
22790
22864
  type: "non_fungible";
22791
22865
  asset_value: {
@@ -22828,7 +22902,7 @@ export interface operations {
22828
22902
  /** @description Denotes whether the originating account is the same as the paying account */
22829
22903
  sponsored: boolean;
22830
22904
  sponsor_address?: string;
22831
- post_condition_mode: "allow" | "deny";
22905
+ post_condition_mode: "allow" | "deny" | "originator";
22832
22906
  post_conditions: ({
22833
22907
  principal: {
22834
22908
  /** @enum {string} */
@@ -22884,7 +22958,7 @@ export interface operations {
22884
22958
  address: string;
22885
22959
  contract_name: string;
22886
22960
  };
22887
- condition_code: "sent" | "not_sent";
22961
+ condition_code: "sent" | "not_sent" | "maybe_sent";
22888
22962
  /** @enum {string} */
22889
22963
  type: "non_fungible";
22890
22964
  asset_value: {
@@ -22927,7 +23001,7 @@ export interface operations {
22927
23001
  /** @description Denotes whether the originating account is the same as the paying account */
22928
23002
  sponsored: boolean;
22929
23003
  sponsor_address?: string;
22930
- post_condition_mode: "allow" | "deny";
23004
+ post_condition_mode: "allow" | "deny" | "originator";
22931
23005
  post_conditions: ({
22932
23006
  principal: {
22933
23007
  /** @enum {string} */
@@ -22983,7 +23057,7 @@ export interface operations {
22983
23057
  address: string;
22984
23058
  contract_name: string;
22985
23059
  };
22986
- condition_code: "sent" | "not_sent";
23060
+ condition_code: "sent" | "not_sent" | "maybe_sent";
22987
23061
  /** @enum {string} */
22988
23062
  type: "non_fungible";
22989
23063
  asset_value: {
@@ -23268,7 +23342,7 @@ export interface operations {
23268
23342
  /** @description Denotes whether the originating account is the same as the paying account */
23269
23343
  sponsored: boolean;
23270
23344
  sponsor_address?: string;
23271
- post_condition_mode: "allow" | "deny";
23345
+ post_condition_mode: "allow" | "deny" | "originator";
23272
23346
  post_conditions: ({
23273
23347
  principal: {
23274
23348
  /** @enum {string} */
@@ -23324,7 +23398,7 @@ export interface operations {
23324
23398
  address: string;
23325
23399
  contract_name: string;
23326
23400
  };
23327
- condition_code: "sent" | "not_sent";
23401
+ condition_code: "sent" | "not_sent" | "maybe_sent";
23328
23402
  /** @enum {string} */
23329
23403
  type: "non_fungible";
23330
23404
  asset_value: {
@@ -23483,7 +23557,7 @@ export interface operations {
23483
23557
  /** @description Denotes whether the originating account is the same as the paying account */
23484
23558
  sponsored: boolean;
23485
23559
  sponsor_address?: string;
23486
- post_condition_mode: "allow" | "deny";
23560
+ post_condition_mode: "allow" | "deny" | "originator";
23487
23561
  post_conditions: ({
23488
23562
  principal: {
23489
23563
  /** @enum {string} */
@@ -23539,7 +23613,7 @@ export interface operations {
23539
23613
  address: string;
23540
23614
  contract_name: string;
23541
23615
  };
23542
- condition_code: "sent" | "not_sent";
23616
+ condition_code: "sent" | "not_sent" | "maybe_sent";
23543
23617
  /** @enum {string} */
23544
23618
  type: "non_fungible";
23545
23619
  asset_value: {
@@ -23698,7 +23772,7 @@ export interface operations {
23698
23772
  /** @description Denotes whether the originating account is the same as the paying account */
23699
23773
  sponsored: boolean;
23700
23774
  sponsor_address?: string;
23701
- post_condition_mode: "allow" | "deny";
23775
+ post_condition_mode: "allow" | "deny" | "originator";
23702
23776
  post_conditions: ({
23703
23777
  principal: {
23704
23778
  /** @enum {string} */
@@ -23754,7 +23828,7 @@ export interface operations {
23754
23828
  address: string;
23755
23829
  contract_name: string;
23756
23830
  };
23757
- condition_code: "sent" | "not_sent";
23831
+ condition_code: "sent" | "not_sent" | "maybe_sent";
23758
23832
  /** @enum {string} */
23759
23833
  type: "non_fungible";
23760
23834
  asset_value: {
@@ -23920,7 +23994,7 @@ export interface operations {
23920
23994
  /** @description Denotes whether the originating account is the same as the paying account */
23921
23995
  sponsored: boolean;
23922
23996
  sponsor_address?: string;
23923
- post_condition_mode: "allow" | "deny";
23997
+ post_condition_mode: "allow" | "deny" | "originator";
23924
23998
  post_conditions: ({
23925
23999
  principal: {
23926
24000
  /** @enum {string} */
@@ -23976,7 +24050,7 @@ export interface operations {
23976
24050
  address: string;
23977
24051
  contract_name: string;
23978
24052
  };
23979
- condition_code: "sent" | "not_sent";
24053
+ condition_code: "sent" | "not_sent" | "maybe_sent";
23980
24054
  /** @enum {string} */
23981
24055
  type: "non_fungible";
23982
24056
  asset_value: {
@@ -24134,7 +24208,7 @@ export interface operations {
24134
24208
  /** @description Denotes whether the originating account is the same as the paying account */
24135
24209
  sponsored: boolean;
24136
24210
  sponsor_address?: string;
24137
- post_condition_mode: "allow" | "deny";
24211
+ post_condition_mode: "allow" | "deny" | "originator";
24138
24212
  post_conditions: ({
24139
24213
  principal: {
24140
24214
  /** @enum {string} */
@@ -24190,7 +24264,7 @@ export interface operations {
24190
24264
  address: string;
24191
24265
  contract_name: string;
24192
24266
  };
24193
- condition_code: "sent" | "not_sent";
24267
+ condition_code: "sent" | "not_sent" | "maybe_sent";
24194
24268
  /** @enum {string} */
24195
24269
  type: "non_fungible";
24196
24270
  asset_value: {
@@ -24348,7 +24422,7 @@ export interface operations {
24348
24422
  /** @description Denotes whether the originating account is the same as the paying account */
24349
24423
  sponsored: boolean;
24350
24424
  sponsor_address?: string;
24351
- post_condition_mode: "allow" | "deny";
24425
+ post_condition_mode: "allow" | "deny" | "originator";
24352
24426
  post_conditions: ({
24353
24427
  principal: {
24354
24428
  /** @enum {string} */
@@ -24404,7 +24478,7 @@ export interface operations {
24404
24478
  address: string;
24405
24479
  contract_name: string;
24406
24480
  };
24407
- condition_code: "sent" | "not_sent";
24481
+ condition_code: "sent" | "not_sent" | "maybe_sent";
24408
24482
  /** @enum {string} */
24409
24483
  type: "non_fungible";
24410
24484
  asset_value: {
@@ -24572,7 +24646,7 @@ export interface operations {
24572
24646
  /** @description Denotes whether the originating account is the same as the paying account */
24573
24647
  sponsored: boolean;
24574
24648
  sponsor_address?: string;
24575
- post_condition_mode: "allow" | "deny";
24649
+ post_condition_mode: "allow" | "deny" | "originator";
24576
24650
  post_conditions: ({
24577
24651
  principal: {
24578
24652
  /** @enum {string} */
@@ -24628,7 +24702,7 @@ export interface operations {
24628
24702
  address: string;
24629
24703
  contract_name: string;
24630
24704
  };
24631
- condition_code: "sent" | "not_sent";
24705
+ condition_code: "sent" | "not_sent" | "maybe_sent";
24632
24706
  /** @enum {string} */
24633
24707
  type: "non_fungible";
24634
24708
  asset_value: {
@@ -24672,7 +24746,7 @@ export interface operations {
24672
24746
  /** @description Denotes whether the originating account is the same as the paying account */
24673
24747
  sponsored: boolean;
24674
24748
  sponsor_address?: string;
24675
- post_condition_mode: "allow" | "deny";
24749
+ post_condition_mode: "allow" | "deny" | "originator";
24676
24750
  post_conditions: ({
24677
24751
  principal: {
24678
24752
  /** @enum {string} */
@@ -24728,7 +24802,7 @@ export interface operations {
24728
24802
  address: string;
24729
24803
  contract_name: string;
24730
24804
  };
24731
- condition_code: "sent" | "not_sent";
24805
+ condition_code: "sent" | "not_sent" | "maybe_sent";
24732
24806
  /** @enum {string} */
24733
24807
  type: "non_fungible";
24734
24808
  asset_value: {
@@ -24772,7 +24846,7 @@ export interface operations {
24772
24846
  /** @description Denotes whether the originating account is the same as the paying account */
24773
24847
  sponsored: boolean;
24774
24848
  sponsor_address?: string;
24775
- post_condition_mode: "allow" | "deny";
24849
+ post_condition_mode: "allow" | "deny" | "originator";
24776
24850
  post_conditions: ({
24777
24851
  principal: {
24778
24852
  /** @enum {string} */
@@ -24828,7 +24902,7 @@ export interface operations {
24828
24902
  address: string;
24829
24903
  contract_name: string;
24830
24904
  };
24831
- condition_code: "sent" | "not_sent";
24905
+ condition_code: "sent" | "not_sent" | "maybe_sent";
24832
24906
  /** @enum {string} */
24833
24907
  type: "non_fungible";
24834
24908
  asset_value: {
@@ -24879,7 +24953,7 @@ export interface operations {
24879
24953
  /** @description Denotes whether the originating account is the same as the paying account */
24880
24954
  sponsored: boolean;
24881
24955
  sponsor_address?: string;
24882
- post_condition_mode: "allow" | "deny";
24956
+ post_condition_mode: "allow" | "deny" | "originator";
24883
24957
  post_conditions: ({
24884
24958
  principal: {
24885
24959
  /** @enum {string} */
@@ -24935,7 +25009,7 @@ export interface operations {
24935
25009
  address: string;
24936
25010
  contract_name: string;
24937
25011
  };
24938
- condition_code: "sent" | "not_sent";
25012
+ condition_code: "sent" | "not_sent" | "maybe_sent";
24939
25013
  /** @enum {string} */
24940
25014
  type: "non_fungible";
24941
25015
  asset_value: {
@@ -24978,7 +25052,7 @@ export interface operations {
24978
25052
  /** @description Denotes whether the originating account is the same as the paying account */
24979
25053
  sponsored: boolean;
24980
25054
  sponsor_address?: string;
24981
- post_condition_mode: "allow" | "deny";
25055
+ post_condition_mode: "allow" | "deny" | "originator";
24982
25056
  post_conditions: ({
24983
25057
  principal: {
24984
25058
  /** @enum {string} */
@@ -25034,7 +25108,7 @@ export interface operations {
25034
25108
  address: string;
25035
25109
  contract_name: string;
25036
25110
  };
25037
- condition_code: "sent" | "not_sent";
25111
+ condition_code: "sent" | "not_sent" | "maybe_sent";
25038
25112
  /** @enum {string} */
25039
25113
  type: "non_fungible";
25040
25114
  asset_value: {
@@ -25077,7 +25151,7 @@ export interface operations {
25077
25151
  /** @description Denotes whether the originating account is the same as the paying account */
25078
25152
  sponsored: boolean;
25079
25153
  sponsor_address?: string;
25080
- post_condition_mode: "allow" | "deny";
25154
+ post_condition_mode: "allow" | "deny" | "originator";
25081
25155
  post_conditions: ({
25082
25156
  principal: {
25083
25157
  /** @enum {string} */
@@ -25133,7 +25207,7 @@ export interface operations {
25133
25207
  address: string;
25134
25208
  contract_name: string;
25135
25209
  };
25136
- condition_code: "sent" | "not_sent";
25210
+ condition_code: "sent" | "not_sent" | "maybe_sent";
25137
25211
  /** @enum {string} */
25138
25212
  type: "non_fungible";
25139
25213
  asset_value: {
@@ -25195,7 +25269,7 @@ export interface operations {
25195
25269
  /** @description Denotes whether the originating account is the same as the paying account */
25196
25270
  sponsored: boolean;
25197
25271
  sponsor_address?: string;
25198
- post_condition_mode: "allow" | "deny";
25272
+ post_condition_mode: "allow" | "deny" | "originator";
25199
25273
  post_conditions: ({
25200
25274
  principal: {
25201
25275
  /** @enum {string} */
@@ -25251,7 +25325,7 @@ export interface operations {
25251
25325
  address: string;
25252
25326
  contract_name: string;
25253
25327
  };
25254
- condition_code: "sent" | "not_sent";
25328
+ condition_code: "sent" | "not_sent" | "maybe_sent";
25255
25329
  /** @enum {string} */
25256
25330
  type: "non_fungible";
25257
25331
  asset_value: {
@@ -25295,7 +25369,7 @@ export interface operations {
25295
25369
  /** @description Denotes whether the originating account is the same as the paying account */
25296
25370
  sponsored: boolean;
25297
25371
  sponsor_address?: string;
25298
- post_condition_mode: "allow" | "deny";
25372
+ post_condition_mode: "allow" | "deny" | "originator";
25299
25373
  post_conditions: ({
25300
25374
  principal: {
25301
25375
  /** @enum {string} */
@@ -25351,7 +25425,7 @@ export interface operations {
25351
25425
  address: string;
25352
25426
  contract_name: string;
25353
25427
  };
25354
- condition_code: "sent" | "not_sent";
25428
+ condition_code: "sent" | "not_sent" | "maybe_sent";
25355
25429
  /** @enum {string} */
25356
25430
  type: "non_fungible";
25357
25431
  asset_value: {
@@ -25395,7 +25469,7 @@ export interface operations {
25395
25469
  /** @description Denotes whether the originating account is the same as the paying account */
25396
25470
  sponsored: boolean;
25397
25471
  sponsor_address?: string;
25398
- post_condition_mode: "allow" | "deny";
25472
+ post_condition_mode: "allow" | "deny" | "originator";
25399
25473
  post_conditions: ({
25400
25474
  principal: {
25401
25475
  /** @enum {string} */
@@ -25451,7 +25525,7 @@ export interface operations {
25451
25525
  address: string;
25452
25526
  contract_name: string;
25453
25527
  };
25454
- condition_code: "sent" | "not_sent";
25528
+ condition_code: "sent" | "not_sent" | "maybe_sent";
25455
25529
  /** @enum {string} */
25456
25530
  type: "non_fungible";
25457
25531
  asset_value: {
@@ -25502,7 +25576,7 @@ export interface operations {
25502
25576
  /** @description Denotes whether the originating account is the same as the paying account */
25503
25577
  sponsored: boolean;
25504
25578
  sponsor_address?: string;
25505
- post_condition_mode: "allow" | "deny";
25579
+ post_condition_mode: "allow" | "deny" | "originator";
25506
25580
  post_conditions: ({
25507
25581
  principal: {
25508
25582
  /** @enum {string} */
@@ -25558,7 +25632,7 @@ export interface operations {
25558
25632
  address: string;
25559
25633
  contract_name: string;
25560
25634
  };
25561
- condition_code: "sent" | "not_sent";
25635
+ condition_code: "sent" | "not_sent" | "maybe_sent";
25562
25636
  /** @enum {string} */
25563
25637
  type: "non_fungible";
25564
25638
  asset_value: {
@@ -25601,7 +25675,7 @@ export interface operations {
25601
25675
  /** @description Denotes whether the originating account is the same as the paying account */
25602
25676
  sponsored: boolean;
25603
25677
  sponsor_address?: string;
25604
- post_condition_mode: "allow" | "deny";
25678
+ post_condition_mode: "allow" | "deny" | "originator";
25605
25679
  post_conditions: ({
25606
25680
  principal: {
25607
25681
  /** @enum {string} */
@@ -25657,7 +25731,7 @@ export interface operations {
25657
25731
  address: string;
25658
25732
  contract_name: string;
25659
25733
  };
25660
- condition_code: "sent" | "not_sent";
25734
+ condition_code: "sent" | "not_sent" | "maybe_sent";
25661
25735
  /** @enum {string} */
25662
25736
  type: "non_fungible";
25663
25737
  asset_value: {
@@ -25700,7 +25774,7 @@ export interface operations {
25700
25774
  /** @description Denotes whether the originating account is the same as the paying account */
25701
25775
  sponsored: boolean;
25702
25776
  sponsor_address?: string;
25703
- post_condition_mode: "allow" | "deny";
25777
+ post_condition_mode: "allow" | "deny" | "originator";
25704
25778
  post_conditions: ({
25705
25779
  principal: {
25706
25780
  /** @enum {string} */
@@ -25756,7 +25830,7 @@ export interface operations {
25756
25830
  address: string;
25757
25831
  contract_name: string;
25758
25832
  };
25759
- condition_code: "sent" | "not_sent";
25833
+ condition_code: "sent" | "not_sent" | "maybe_sent";
25760
25834
  /** @enum {string} */
25761
25835
  type: "non_fungible";
25762
25836
  asset_value: {
@@ -25822,7 +25896,7 @@ export interface operations {
25822
25896
  /** @description Denotes whether the originating account is the same as the paying account */
25823
25897
  sponsored: boolean;
25824
25898
  sponsor_address?: string;
25825
- post_condition_mode: "allow" | "deny";
25899
+ post_condition_mode: "allow" | "deny" | "originator";
25826
25900
  post_conditions: ({
25827
25901
  principal: {
25828
25902
  /** @enum {string} */
@@ -25878,7 +25952,7 @@ export interface operations {
25878
25952
  address: string;
25879
25953
  contract_name: string;
25880
25954
  };
25881
- condition_code: "sent" | "not_sent";
25955
+ condition_code: "sent" | "not_sent" | "maybe_sent";
25882
25956
  /** @enum {string} */
25883
25957
  type: "non_fungible";
25884
25958
  asset_value: {
@@ -26037,7 +26111,7 @@ export interface operations {
26037
26111
  /** @description Denotes whether the originating account is the same as the paying account */
26038
26112
  sponsored: boolean;
26039
26113
  sponsor_address?: string;
26040
- post_condition_mode: "allow" | "deny";
26114
+ post_condition_mode: "allow" | "deny" | "originator";
26041
26115
  post_conditions: ({
26042
26116
  principal: {
26043
26117
  /** @enum {string} */
@@ -26093,7 +26167,7 @@ export interface operations {
26093
26167
  address: string;
26094
26168
  contract_name: string;
26095
26169
  };
26096
- condition_code: "sent" | "not_sent";
26170
+ condition_code: "sent" | "not_sent" | "maybe_sent";
26097
26171
  /** @enum {string} */
26098
26172
  type: "non_fungible";
26099
26173
  asset_value: {
@@ -26252,7 +26326,7 @@ export interface operations {
26252
26326
  /** @description Denotes whether the originating account is the same as the paying account */
26253
26327
  sponsored: boolean;
26254
26328
  sponsor_address?: string;
26255
- post_condition_mode: "allow" | "deny";
26329
+ post_condition_mode: "allow" | "deny" | "originator";
26256
26330
  post_conditions: ({
26257
26331
  principal: {
26258
26332
  /** @enum {string} */
@@ -26308,7 +26382,7 @@ export interface operations {
26308
26382
  address: string;
26309
26383
  contract_name: string;
26310
26384
  };
26311
- condition_code: "sent" | "not_sent";
26385
+ condition_code: "sent" | "not_sent" | "maybe_sent";
26312
26386
  /** @enum {string} */
26313
26387
  type: "non_fungible";
26314
26388
  asset_value: {
@@ -26474,7 +26548,7 @@ export interface operations {
26474
26548
  /** @description Denotes whether the originating account is the same as the paying account */
26475
26549
  sponsored: boolean;
26476
26550
  sponsor_address?: string;
26477
- post_condition_mode: "allow" | "deny";
26551
+ post_condition_mode: "allow" | "deny" | "originator";
26478
26552
  post_conditions: ({
26479
26553
  principal: {
26480
26554
  /** @enum {string} */
@@ -26530,7 +26604,7 @@ export interface operations {
26530
26604
  address: string;
26531
26605
  contract_name: string;
26532
26606
  };
26533
- condition_code: "sent" | "not_sent";
26607
+ condition_code: "sent" | "not_sent" | "maybe_sent";
26534
26608
  /** @enum {string} */
26535
26609
  type: "non_fungible";
26536
26610
  asset_value: {
@@ -26688,7 +26762,7 @@ export interface operations {
26688
26762
  /** @description Denotes whether the originating account is the same as the paying account */
26689
26763
  sponsored: boolean;
26690
26764
  sponsor_address?: string;
26691
- post_condition_mode: "allow" | "deny";
26765
+ post_condition_mode: "allow" | "deny" | "originator";
26692
26766
  post_conditions: ({
26693
26767
  principal: {
26694
26768
  /** @enum {string} */
@@ -26744,7 +26818,7 @@ export interface operations {
26744
26818
  address: string;
26745
26819
  contract_name: string;
26746
26820
  };
26747
- condition_code: "sent" | "not_sent";
26821
+ condition_code: "sent" | "not_sent" | "maybe_sent";
26748
26822
  /** @enum {string} */
26749
26823
  type: "non_fungible";
26750
26824
  asset_value: {
@@ -26902,7 +26976,7 @@ export interface operations {
26902
26976
  /** @description Denotes whether the originating account is the same as the paying account */
26903
26977
  sponsored: boolean;
26904
26978
  sponsor_address?: string;
26905
- post_condition_mode: "allow" | "deny";
26979
+ post_condition_mode: "allow" | "deny" | "originator";
26906
26980
  post_conditions: ({
26907
26981
  principal: {
26908
26982
  /** @enum {string} */
@@ -26958,7 +27032,7 @@ export interface operations {
26958
27032
  address: string;
26959
27033
  contract_name: string;
26960
27034
  };
26961
- condition_code: "sent" | "not_sent";
27035
+ condition_code: "sent" | "not_sent" | "maybe_sent";
26962
27036
  /** @enum {string} */
26963
27037
  type: "non_fungible";
26964
27038
  asset_value: {
@@ -27242,7 +27316,7 @@ export interface operations {
27242
27316
  path?: never;
27243
27317
  cookie?: never;
27244
27318
  };
27245
- requestBody?: {
27319
+ requestBody: {
27246
27320
  content: {
27247
27321
  "application/json": {
27248
27322
  /** @description A valid regtest BTC address */
@@ -27344,7 +27418,7 @@ export interface operations {
27344
27418
  path?: never;
27345
27419
  cookie?: never;
27346
27420
  };
27347
- requestBody?: {
27421
+ requestBody: {
27348
27422
  content: {
27349
27423
  "application/json": {
27350
27424
  /** @description [Deprecated -- use query param rather than POST body] A valid testnet STX address */
@@ -27528,6 +27602,87 @@ export interface operations {
27528
27602
  };
27529
27603
  };
27530
27604
  };
27605
+ get_block_by_block_time: {
27606
+ parameters: {
27607
+ query?: never;
27608
+ header?: never;
27609
+ path: {
27610
+ /**
27611
+ * @description Unix timestamp (in seconds)
27612
+ * @example 1677731361
27613
+ */
27614
+ timestamp: number;
27615
+ };
27616
+ cookie?: never;
27617
+ };
27618
+ requestBody?: never;
27619
+ responses: {
27620
+ /** @description Default Response */
27621
+ 200: {
27622
+ headers: {
27623
+ [name: string]: unknown;
27624
+ };
27625
+ content: {
27626
+ "application/json": {
27627
+ /** @description Set to `true` if block corresponds to the canonical chain tip */
27628
+ canonical: boolean;
27629
+ /** @description Height of the block */
27630
+ height: number;
27631
+ /** @description Hash representing the block */
27632
+ hash: string;
27633
+ /** @description Unix timestamp (in seconds) indicating when this block was mined. */
27634
+ block_time: number;
27635
+ /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) indicating when this block was mined. */
27636
+ block_time_iso: string;
27637
+ /** @description The tenure height (AKA coinbase height) of this block */
27638
+ tenure_height: number;
27639
+ /** @description The only hash that can uniquely identify an anchored block or an unconfirmed state trie */
27640
+ index_block_hash: string;
27641
+ /** @description Hash of the parent block */
27642
+ parent_block_hash: string;
27643
+ /** @description Index block hash of the parent block */
27644
+ parent_index_block_hash: string;
27645
+ /** @description Unix timestamp (in seconds) indicating when this block was mined. */
27646
+ burn_block_time: number;
27647
+ /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) indicating when this block was mined. */
27648
+ burn_block_time_iso: string;
27649
+ /** @description Hash of the anchor chain block */
27650
+ burn_block_hash: string;
27651
+ /** @description Height of the anchor chain block */
27652
+ burn_block_height: number;
27653
+ /** @description Anchor chain transaction ID */
27654
+ miner_txid: string;
27655
+ /** @description Number of transactions included in the block */
27656
+ tx_count: number;
27657
+ /** @description Execution cost read count. */
27658
+ execution_cost_read_count: number;
27659
+ /** @description Execution cost read length. */
27660
+ execution_cost_read_length: number;
27661
+ /** @description Execution cost runtime. */
27662
+ execution_cost_runtime: number;
27663
+ /** @description Execution cost write count. */
27664
+ execution_cost_write_count: number;
27665
+ /** @description Execution cost write length. */
27666
+ execution_cost_write_length: number;
27667
+ };
27668
+ };
27669
+ };
27670
+ /** @description Default Response */
27671
+ "4XX": {
27672
+ headers: {
27673
+ [name: string]: unknown;
27674
+ };
27675
+ content: {
27676
+ "application/json": {
27677
+ error: string;
27678
+ message?: string;
27679
+ } & {
27680
+ [key: string]: unknown;
27681
+ };
27682
+ };
27683
+ };
27684
+ };
27685
+ };
27531
27686
  get_block: {
27532
27687
  parameters: {
27533
27688
  query?: never;
@@ -27647,7 +27802,7 @@ export interface operations {
27647
27802
  /** @description Denotes whether the originating account is the same as the paying account */
27648
27803
  sponsored: boolean;
27649
27804
  sponsor_address?: string;
27650
- post_condition_mode: "allow" | "deny";
27805
+ post_condition_mode: "allow" | "deny" | "originator";
27651
27806
  post_conditions: ({
27652
27807
  principal: {
27653
27808
  /** @enum {string} */
@@ -27703,7 +27858,7 @@ export interface operations {
27703
27858
  address: string;
27704
27859
  contract_name: string;
27705
27860
  };
27706
- condition_code: "sent" | "not_sent";
27861
+ condition_code: "sent" | "not_sent" | "maybe_sent";
27707
27862
  /** @enum {string} */
27708
27863
  type: "non_fungible";
27709
27864
  asset_value: {
@@ -27862,7 +28017,7 @@ export interface operations {
27862
28017
  /** @description Denotes whether the originating account is the same as the paying account */
27863
28018
  sponsored: boolean;
27864
28019
  sponsor_address?: string;
27865
- post_condition_mode: "allow" | "deny";
28020
+ post_condition_mode: "allow" | "deny" | "originator";
27866
28021
  post_conditions: ({
27867
28022
  principal: {
27868
28023
  /** @enum {string} */
@@ -27918,7 +28073,7 @@ export interface operations {
27918
28073
  address: string;
27919
28074
  contract_name: string;
27920
28075
  };
27921
- condition_code: "sent" | "not_sent";
28076
+ condition_code: "sent" | "not_sent" | "maybe_sent";
27922
28077
  /** @enum {string} */
27923
28078
  type: "non_fungible";
27924
28079
  asset_value: {
@@ -28077,7 +28232,7 @@ export interface operations {
28077
28232
  /** @description Denotes whether the originating account is the same as the paying account */
28078
28233
  sponsored: boolean;
28079
28234
  sponsor_address?: string;
28080
- post_condition_mode: "allow" | "deny";
28235
+ post_condition_mode: "allow" | "deny" | "originator";
28081
28236
  post_conditions: ({
28082
28237
  principal: {
28083
28238
  /** @enum {string} */
@@ -28133,7 +28288,7 @@ export interface operations {
28133
28288
  address: string;
28134
28289
  contract_name: string;
28135
28290
  };
28136
- condition_code: "sent" | "not_sent";
28291
+ condition_code: "sent" | "not_sent" | "maybe_sent";
28137
28292
  /** @enum {string} */
28138
28293
  type: "non_fungible";
28139
28294
  asset_value: {
@@ -28299,7 +28454,7 @@ export interface operations {
28299
28454
  /** @description Denotes whether the originating account is the same as the paying account */
28300
28455
  sponsored: boolean;
28301
28456
  sponsor_address?: string;
28302
- post_condition_mode: "allow" | "deny";
28457
+ post_condition_mode: "allow" | "deny" | "originator";
28303
28458
  post_conditions: ({
28304
28459
  principal: {
28305
28460
  /** @enum {string} */
@@ -28355,7 +28510,7 @@ export interface operations {
28355
28510
  address: string;
28356
28511
  contract_name: string;
28357
28512
  };
28358
- condition_code: "sent" | "not_sent";
28513
+ condition_code: "sent" | "not_sent" | "maybe_sent";
28359
28514
  /** @enum {string} */
28360
28515
  type: "non_fungible";
28361
28516
  asset_value: {
@@ -28513,7 +28668,7 @@ export interface operations {
28513
28668
  /** @description Denotes whether the originating account is the same as the paying account */
28514
28669
  sponsored: boolean;
28515
28670
  sponsor_address?: string;
28516
- post_condition_mode: "allow" | "deny";
28671
+ post_condition_mode: "allow" | "deny" | "originator";
28517
28672
  post_conditions: ({
28518
28673
  principal: {
28519
28674
  /** @enum {string} */
@@ -28569,7 +28724,7 @@ export interface operations {
28569
28724
  address: string;
28570
28725
  contract_name: string;
28571
28726
  };
28572
- condition_code: "sent" | "not_sent";
28727
+ condition_code: "sent" | "not_sent" | "maybe_sent";
28573
28728
  /** @enum {string} */
28574
28729
  type: "non_fungible";
28575
28730
  asset_value: {
@@ -28727,7 +28882,7 @@ export interface operations {
28727
28882
  /** @description Denotes whether the originating account is the same as the paying account */
28728
28883
  sponsored: boolean;
28729
28884
  sponsor_address?: string;
28730
- post_condition_mode: "allow" | "deny";
28885
+ post_condition_mode: "allow" | "deny" | "originator";
28731
28886
  post_conditions: ({
28732
28887
  principal: {
28733
28888
  /** @enum {string} */
@@ -28783,7 +28938,7 @@ export interface operations {
28783
28938
  address: string;
28784
28939
  contract_name: string;
28785
28940
  };
28786
- condition_code: "sent" | "not_sent";
28941
+ condition_code: "sent" | "not_sent" | "maybe_sent";
28787
28942
  /** @enum {string} */
28788
28943
  type: "non_fungible";
28789
28944
  asset_value: {
@@ -29210,6 +29365,68 @@ export interface operations {
29210
29365
  };
29211
29366
  };
29212
29367
  };
29368
+ get_burn_block_pox_transactions: {
29369
+ parameters: {
29370
+ query?: {
29371
+ /** @description Results per page */
29372
+ limit?: number;
29373
+ /** @description Result offset */
29374
+ offset?: number;
29375
+ };
29376
+ header?: never;
29377
+ path: {
29378
+ height_or_hash: "latest" | string | number;
29379
+ };
29380
+ cookie?: never;
29381
+ };
29382
+ requestBody?: never;
29383
+ responses: {
29384
+ /** @description Default Response */
29385
+ 200: {
29386
+ headers: {
29387
+ [name: string]: unknown;
29388
+ };
29389
+ content: {
29390
+ "application/json": {
29391
+ /** @example 20 */
29392
+ limit: number;
29393
+ /** @example 0 */
29394
+ offset: number;
29395
+ /** @example 1 */
29396
+ total: number;
29397
+ results: {
29398
+ /** @description Height of the burn block */
29399
+ burn_block_height: number;
29400
+ /** @description Hash of the burn block */
29401
+ burn_block_hash: string;
29402
+ /** @description Transaction ID */
29403
+ tx_id: string;
29404
+ /** @description Recipient address */
29405
+ recipient: string;
29406
+ /** @description UTXO index */
29407
+ utxo_idx: number;
29408
+ /** @description Amount */
29409
+ amount: string;
29410
+ }[];
29411
+ };
29412
+ };
29413
+ };
29414
+ /** @description Default Response */
29415
+ "4XX": {
29416
+ headers: {
29417
+ [name: string]: unknown;
29418
+ };
29419
+ content: {
29420
+ "application/json": {
29421
+ error: string;
29422
+ message?: string;
29423
+ } & {
29424
+ [key: string]: unknown;
29425
+ };
29426
+ };
29427
+ };
29428
+ };
29429
+ };
29213
29430
  get_tenure_blocks: {
29214
29431
  parameters: {
29215
29432
  query?: {
@@ -29328,7 +29545,7 @@ export interface operations {
29328
29545
  content: {
29329
29546
  "application/json": {
29330
29547
  [key: string]: {
29331
- /** @constant */
29548
+ /** @enum {boolean} */
29332
29549
  found: true;
29333
29550
  result: {
29334
29551
  /** @description Smart contract deployment transaction status */
@@ -29341,7 +29558,7 @@ export interface operations {
29341
29558
  block_height?: number;
29342
29559
  };
29343
29560
  } | {
29344
- /** @constant */
29561
+ /** @enum {boolean} */
29345
29562
  found: false;
29346
29563
  };
29347
29564
  };
@@ -29363,6 +29580,78 @@ export interface operations {
29363
29580
  };
29364
29581
  };
29365
29582
  };
29583
+ get_smart_contract_logs: {
29584
+ parameters: {
29585
+ query?: {
29586
+ /** @description Results per page */
29587
+ limit?: number;
29588
+ /** @description Result offset */
29589
+ offset?: number;
29590
+ /** @description Cursor for transaction event pagination (block_height:microblock_sequence:tx_index:event_index) */
29591
+ cursor?: string;
29592
+ };
29593
+ header?: never;
29594
+ path: {
29595
+ /**
29596
+ * @description Contract identifier formatted as `<contract_address>.<contract_name>`
29597
+ * @example SP000000000000000000002Q6VF78.pox-3
29598
+ */
29599
+ contract_id: string;
29600
+ };
29601
+ cookie?: never;
29602
+ };
29603
+ requestBody?: never;
29604
+ responses: {
29605
+ /** @description Default Response */
29606
+ 200: {
29607
+ headers: {
29608
+ [name: string]: unknown;
29609
+ };
29610
+ content: {
29611
+ "application/json": {
29612
+ /** @example 20 */
29613
+ limit: number;
29614
+ /** @example 0 */
29615
+ offset: number;
29616
+ /** @example 1 */
29617
+ total: number;
29618
+ next_cursor: string | null;
29619
+ prev_cursor: string | null;
29620
+ cursor: string | null;
29621
+ results: ({
29622
+ event_index: number;
29623
+ } & {
29624
+ /** @enum {string} */
29625
+ event_type: "smart_contract_log";
29626
+ tx_id: string;
29627
+ contract_log: {
29628
+ contract_id: string;
29629
+ topic: string;
29630
+ value: {
29631
+ hex: string;
29632
+ repr: string;
29633
+ };
29634
+ };
29635
+ })[];
29636
+ };
29637
+ };
29638
+ };
29639
+ /** @description Default Response */
29640
+ "4XX": {
29641
+ headers: {
29642
+ [name: string]: unknown;
29643
+ };
29644
+ content: {
29645
+ "application/json": {
29646
+ error: string;
29647
+ message?: string;
29648
+ } & {
29649
+ [key: string]: unknown;
29650
+ };
29651
+ };
29652
+ };
29653
+ };
29654
+ };
29366
29655
  get_mempool_fee_priorities: {
29367
29656
  parameters: {
29368
29657
  query?: never;
@@ -29744,7 +30033,7 @@ export interface operations {
29744
30033
  /** @description Denotes whether the originating account is the same as the paying account */
29745
30034
  sponsored: boolean;
29746
30035
  sponsor_address?: string;
29747
- post_condition_mode: "allow" | "deny";
30036
+ post_condition_mode: "allow" | "deny" | "originator";
29748
30037
  post_conditions: ({
29749
30038
  principal: {
29750
30039
  /** @enum {string} */
@@ -29800,7 +30089,7 @@ export interface operations {
29800
30089
  address: string;
29801
30090
  contract_name: string;
29802
30091
  };
29803
- condition_code: "sent" | "not_sent";
30092
+ condition_code: "sent" | "not_sent" | "maybe_sent";
29804
30093
  /** @enum {string} */
29805
30094
  type: "non_fungible";
29806
30095
  asset_value: {
@@ -29959,7 +30248,7 @@ export interface operations {
29959
30248
  /** @description Denotes whether the originating account is the same as the paying account */
29960
30249
  sponsored: boolean;
29961
30250
  sponsor_address?: string;
29962
- post_condition_mode: "allow" | "deny";
30251
+ post_condition_mode: "allow" | "deny" | "originator";
29963
30252
  post_conditions: ({
29964
30253
  principal: {
29965
30254
  /** @enum {string} */
@@ -30015,7 +30304,7 @@ export interface operations {
30015
30304
  address: string;
30016
30305
  contract_name: string;
30017
30306
  };
30018
- condition_code: "sent" | "not_sent";
30307
+ condition_code: "sent" | "not_sent" | "maybe_sent";
30019
30308
  /** @enum {string} */
30020
30309
  type: "non_fungible";
30021
30310
  asset_value: {
@@ -30174,7 +30463,7 @@ export interface operations {
30174
30463
  /** @description Denotes whether the originating account is the same as the paying account */
30175
30464
  sponsored: boolean;
30176
30465
  sponsor_address?: string;
30177
- post_condition_mode: "allow" | "deny";
30466
+ post_condition_mode: "allow" | "deny" | "originator";
30178
30467
  post_conditions: ({
30179
30468
  principal: {
30180
30469
  /** @enum {string} */
@@ -30230,7 +30519,7 @@ export interface operations {
30230
30519
  address: string;
30231
30520
  contract_name: string;
30232
30521
  };
30233
- condition_code: "sent" | "not_sent";
30522
+ condition_code: "sent" | "not_sent" | "maybe_sent";
30234
30523
  /** @enum {string} */
30235
30524
  type: "non_fungible";
30236
30525
  asset_value: {
@@ -30396,7 +30685,7 @@ export interface operations {
30396
30685
  /** @description Denotes whether the originating account is the same as the paying account */
30397
30686
  sponsored: boolean;
30398
30687
  sponsor_address?: string;
30399
- post_condition_mode: "allow" | "deny";
30688
+ post_condition_mode: "allow" | "deny" | "originator";
30400
30689
  post_conditions: ({
30401
30690
  principal: {
30402
30691
  /** @enum {string} */
@@ -30452,7 +30741,7 @@ export interface operations {
30452
30741
  address: string;
30453
30742
  contract_name: string;
30454
30743
  };
30455
- condition_code: "sent" | "not_sent";
30744
+ condition_code: "sent" | "not_sent" | "maybe_sent";
30456
30745
  /** @enum {string} */
30457
30746
  type: "non_fungible";
30458
30747
  asset_value: {
@@ -30610,7 +30899,7 @@ export interface operations {
30610
30899
  /** @description Denotes whether the originating account is the same as the paying account */
30611
30900
  sponsored: boolean;
30612
30901
  sponsor_address?: string;
30613
- post_condition_mode: "allow" | "deny";
30902
+ post_condition_mode: "allow" | "deny" | "originator";
30614
30903
  post_conditions: ({
30615
30904
  principal: {
30616
30905
  /** @enum {string} */
@@ -30666,7 +30955,7 @@ export interface operations {
30666
30955
  address: string;
30667
30956
  contract_name: string;
30668
30957
  };
30669
- condition_code: "sent" | "not_sent";
30958
+ condition_code: "sent" | "not_sent" | "maybe_sent";
30670
30959
  /** @enum {string} */
30671
30960
  type: "non_fungible";
30672
30961
  asset_value: {
@@ -30824,7 +31113,7 @@ export interface operations {
30824
31113
  /** @description Denotes whether the originating account is the same as the paying account */
30825
31114
  sponsored: boolean;
30826
31115
  sponsor_address?: string;
30827
- post_condition_mode: "allow" | "deny";
31116
+ post_condition_mode: "allow" | "deny" | "originator";
30828
31117
  post_conditions: ({
30829
31118
  principal: {
30830
31119
  /** @enum {string} */
@@ -30880,7 +31169,7 @@ export interface operations {
30880
31169
  address: string;
30881
31170
  contract_name: string;
30882
31171
  };
30883
- condition_code: "sent" | "not_sent";
31172
+ condition_code: "sent" | "not_sent" | "maybe_sent";
30884
31173
  /** @enum {string} */
30885
31174
  type: "non_fungible";
30886
31175
  asset_value: {
@@ -31295,7 +31584,7 @@ export interface operations {
31295
31584
  header?: never;
31296
31585
  path: {
31297
31586
  principal: string;
31298
- /** @description fungible token identifier */
31587
+ /** @description fungible token identifier, e.g. `SM3VDXK3WZZSA84XXFKAFAF15NNZX32CTSG82JFQ4.sbtc-token::sbtc-token` */
31299
31588
  token: string;
31300
31589
  };
31301
31590
  cookie?: never;
@@ -31329,6 +31618,407 @@ export interface operations {
31329
31618
  };
31330
31619
  };
31331
31620
  };
31621
+ get_burnchain_address_pox_transactions: {
31622
+ parameters: {
31623
+ query?: {
31624
+ /** @description Results per page */
31625
+ limit?: number;
31626
+ /** @description Result offset */
31627
+ offset?: number;
31628
+ };
31629
+ header?: never;
31630
+ path: {
31631
+ /**
31632
+ * @description Bitcoin Address
31633
+ * @example bc1qar0srrr7xfkvy5l643lydnw9re59gtzzwf5mdq
31634
+ */
31635
+ burnchain_address: string;
31636
+ };
31637
+ cookie?: never;
31638
+ };
31639
+ requestBody?: never;
31640
+ responses: {
31641
+ /** @description Default Response */
31642
+ 200: {
31643
+ headers: {
31644
+ [name: string]: unknown;
31645
+ };
31646
+ content: {
31647
+ "application/json": {
31648
+ /** @example 20 */
31649
+ limit: number;
31650
+ /** @example 0 */
31651
+ offset: number;
31652
+ /** @example 1 */
31653
+ total: number;
31654
+ results: {
31655
+ /** @description Height of the burn block */
31656
+ burn_block_height: number;
31657
+ /** @description Hash of the burn block */
31658
+ burn_block_hash: string;
31659
+ /** @description Transaction ID */
31660
+ tx_id: string;
31661
+ /** @description Recipient address */
31662
+ recipient: string;
31663
+ /** @description UTXO index */
31664
+ utxo_idx: number;
31665
+ /** @description Amount */
31666
+ amount: string;
31667
+ }[];
31668
+ };
31669
+ };
31670
+ };
31671
+ /** @description Default Response */
31672
+ "4XX": {
31673
+ headers: {
31674
+ [name: string]: unknown;
31675
+ };
31676
+ content: {
31677
+ "application/json": {
31678
+ error: string;
31679
+ message?: string;
31680
+ } & {
31681
+ [key: string]: unknown;
31682
+ };
31683
+ };
31684
+ };
31685
+ };
31686
+ };
31687
+ get_principal_transactions: {
31688
+ parameters: {
31689
+ query?: {
31690
+ /** @description Number of results per page */
31691
+ limit?: number;
31692
+ /** @description Cursor for paginating transactions. Format: block_height:microblock_sequence:tx_index */
31693
+ cursor?: string;
31694
+ };
31695
+ header?: never;
31696
+ path: {
31697
+ principal: string;
31698
+ };
31699
+ cookie?: never;
31700
+ };
31701
+ requestBody?: never;
31702
+ responses: {
31703
+ /** @description Default Response */
31704
+ 200: {
31705
+ headers: {
31706
+ [name: string]: unknown;
31707
+ };
31708
+ content: {
31709
+ "application/json": {
31710
+ /** @example 1 */
31711
+ total: number;
31712
+ /**
31713
+ * @description Number of results per page
31714
+ * @default 20
31715
+ */
31716
+ limit: number;
31717
+ cursor: {
31718
+ next: string | null;
31719
+ previous: string | null;
31720
+ current: string | null;
31721
+ };
31722
+ results: {
31723
+ transaction: {
31724
+ /** @description Transaction ID */
31725
+ tx_id: string;
31726
+ sender: {
31727
+ /** @description Address of the transaction initiator */
31728
+ address: string;
31729
+ /** @description Nonce of the transaction initiator */
31730
+ nonce: number;
31731
+ };
31732
+ sponsor: {
31733
+ /** @description Address of the transaction initiator */
31734
+ address: string;
31735
+ /** @description Nonce of the transaction initiator */
31736
+ nonce: number;
31737
+ } | null;
31738
+ /** @description Transaction fee as Integer string (64-bit unsigned integer). */
31739
+ fee_rate: string;
31740
+ block: {
31741
+ /** @description Height of the block this transactions was associated with */
31742
+ height: number;
31743
+ /** @description Hash of the blocked this transactions was associated with */
31744
+ hash: string;
31745
+ /** @description Hash of the index block this transactions was associated with */
31746
+ index_hash: string;
31747
+ /** @description Unix timestamp (in seconds) indicating when this block was mined. */
31748
+ time: number;
31749
+ /** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
31750
+ tx_index: number;
31751
+ };
31752
+ bitcoin_block: {
31753
+ /** @description Height of the anchor burn block. */
31754
+ height: number;
31755
+ /** @description Unix timestamp (in seconds) indicating when this block was mined. */
31756
+ time: number;
31757
+ };
31758
+ /** @description Status of the transaction */
31759
+ status: "success" | "abort_by_response" | "abort_by_post_condition";
31760
+ /** @enum {string} */
31761
+ type: "token_transfer";
31762
+ token_transfer: {
31763
+ recipient: string;
31764
+ /** @description Transfer amount as Integer string (64-bit unsigned integer) */
31765
+ amount: string;
31766
+ memo: string | null;
31767
+ };
31768
+ } | {
31769
+ /** @description Transaction ID */
31770
+ tx_id: string;
31771
+ sender: {
31772
+ /** @description Address of the transaction initiator */
31773
+ address: string;
31774
+ /** @description Nonce of the transaction initiator */
31775
+ nonce: number;
31776
+ };
31777
+ sponsor: {
31778
+ /** @description Address of the transaction initiator */
31779
+ address: string;
31780
+ /** @description Nonce of the transaction initiator */
31781
+ nonce: number;
31782
+ } | null;
31783
+ /** @description Transaction fee as Integer string (64-bit unsigned integer). */
31784
+ fee_rate: string;
31785
+ block: {
31786
+ /** @description Height of the block this transactions was associated with */
31787
+ height: number;
31788
+ /** @description Hash of the blocked this transactions was associated with */
31789
+ hash: string;
31790
+ /** @description Hash of the index block this transactions was associated with */
31791
+ index_hash: string;
31792
+ /** @description Unix timestamp (in seconds) indicating when this block was mined. */
31793
+ time: number;
31794
+ /** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
31795
+ tx_index: number;
31796
+ };
31797
+ bitcoin_block: {
31798
+ /** @description Height of the anchor burn block. */
31799
+ height: number;
31800
+ /** @description Unix timestamp (in seconds) indicating when this block was mined. */
31801
+ time: number;
31802
+ };
31803
+ /** @description Status of the transaction */
31804
+ status: "success" | "abort_by_response" | "abort_by_post_condition";
31805
+ /** @enum {string} */
31806
+ type: "smart_contract";
31807
+ smart_contract: {
31808
+ clarity_version: number | null;
31809
+ /** @description Contract identifier formatted as `<principaladdress>.<contract_name>` */
31810
+ contract_id: string;
31811
+ };
31812
+ } | {
31813
+ /** @description Transaction ID */
31814
+ tx_id: string;
31815
+ sender: {
31816
+ /** @description Address of the transaction initiator */
31817
+ address: string;
31818
+ /** @description Nonce of the transaction initiator */
31819
+ nonce: number;
31820
+ };
31821
+ sponsor: {
31822
+ /** @description Address of the transaction initiator */
31823
+ address: string;
31824
+ /** @description Nonce of the transaction initiator */
31825
+ nonce: number;
31826
+ } | null;
31827
+ /** @description Transaction fee as Integer string (64-bit unsigned integer). */
31828
+ fee_rate: string;
31829
+ block: {
31830
+ /** @description Height of the block this transactions was associated with */
31831
+ height: number;
31832
+ /** @description Hash of the blocked this transactions was associated with */
31833
+ hash: string;
31834
+ /** @description Hash of the index block this transactions was associated with */
31835
+ index_hash: string;
31836
+ /** @description Unix timestamp (in seconds) indicating when this block was mined. */
31837
+ time: number;
31838
+ /** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
31839
+ tx_index: number;
31840
+ };
31841
+ bitcoin_block: {
31842
+ /** @description Height of the anchor burn block. */
31843
+ height: number;
31844
+ /** @description Unix timestamp (in seconds) indicating when this block was mined. */
31845
+ time: number;
31846
+ };
31847
+ /** @description Status of the transaction */
31848
+ status: "success" | "abort_by_response" | "abort_by_post_condition";
31849
+ /** @enum {string} */
31850
+ type: "contract_call";
31851
+ contract_call: {
31852
+ /** @description Contract identifier formatted as `<principaladdress>.<contract_name>` */
31853
+ contract_id: string;
31854
+ /** @description Name of the Clarity function to be invoked */
31855
+ function_name: string;
31856
+ };
31857
+ } | {
31858
+ /** @description Transaction ID */
31859
+ tx_id: string;
31860
+ sender: {
31861
+ /** @description Address of the transaction initiator */
31862
+ address: string;
31863
+ /** @description Nonce of the transaction initiator */
31864
+ nonce: number;
31865
+ };
31866
+ sponsor: {
31867
+ /** @description Address of the transaction initiator */
31868
+ address: string;
31869
+ /** @description Nonce of the transaction initiator */
31870
+ nonce: number;
31871
+ } | null;
31872
+ /** @description Transaction fee as Integer string (64-bit unsigned integer). */
31873
+ fee_rate: string;
31874
+ block: {
31875
+ /** @description Height of the block this transactions was associated with */
31876
+ height: number;
31877
+ /** @description Hash of the blocked this transactions was associated with */
31878
+ hash: string;
31879
+ /** @description Hash of the index block this transactions was associated with */
31880
+ index_hash: string;
31881
+ /** @description Unix timestamp (in seconds) indicating when this block was mined. */
31882
+ time: number;
31883
+ /** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
31884
+ tx_index: number;
31885
+ };
31886
+ bitcoin_block: {
31887
+ /** @description Height of the anchor burn block. */
31888
+ height: number;
31889
+ /** @description Unix timestamp (in seconds) indicating when this block was mined. */
31890
+ time: number;
31891
+ };
31892
+ /** @description Status of the transaction */
31893
+ status: "success" | "abort_by_response" | "abort_by_post_condition";
31894
+ /** @enum {string} */
31895
+ type: "poison_microblock";
31896
+ } | {
31897
+ /** @description Transaction ID */
31898
+ tx_id: string;
31899
+ sender: {
31900
+ /** @description Address of the transaction initiator */
31901
+ address: string;
31902
+ /** @description Nonce of the transaction initiator */
31903
+ nonce: number;
31904
+ };
31905
+ sponsor: {
31906
+ /** @description Address of the transaction initiator */
31907
+ address: string;
31908
+ /** @description Nonce of the transaction initiator */
31909
+ nonce: number;
31910
+ } | null;
31911
+ /** @description Transaction fee as Integer string (64-bit unsigned integer). */
31912
+ fee_rate: string;
31913
+ block: {
31914
+ /** @description Height of the block this transactions was associated with */
31915
+ height: number;
31916
+ /** @description Hash of the blocked this transactions was associated with */
31917
+ hash: string;
31918
+ /** @description Hash of the index block this transactions was associated with */
31919
+ index_hash: string;
31920
+ /** @description Unix timestamp (in seconds) indicating when this block was mined. */
31921
+ time: number;
31922
+ /** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
31923
+ tx_index: number;
31924
+ };
31925
+ bitcoin_block: {
31926
+ /** @description Height of the anchor burn block. */
31927
+ height: number;
31928
+ /** @description Unix timestamp (in seconds) indicating when this block was mined. */
31929
+ time: number;
31930
+ };
31931
+ /** @description Status of the transaction */
31932
+ status: "success" | "abort_by_response" | "abort_by_post_condition";
31933
+ /** @enum {string} */
31934
+ type: "coinbase";
31935
+ coinbase: {
31936
+ alt_recipient: string | null;
31937
+ };
31938
+ } | {
31939
+ /** @description Transaction ID */
31940
+ tx_id: string;
31941
+ sender: {
31942
+ /** @description Address of the transaction initiator */
31943
+ address: string;
31944
+ /** @description Nonce of the transaction initiator */
31945
+ nonce: number;
31946
+ };
31947
+ sponsor: {
31948
+ /** @description Address of the transaction initiator */
31949
+ address: string;
31950
+ /** @description Nonce of the transaction initiator */
31951
+ nonce: number;
31952
+ } | null;
31953
+ /** @description Transaction fee as Integer string (64-bit unsigned integer). */
31954
+ fee_rate: string;
31955
+ block: {
31956
+ /** @description Height of the block this transactions was associated with */
31957
+ height: number;
31958
+ /** @description Hash of the blocked this transactions was associated with */
31959
+ hash: string;
31960
+ /** @description Hash of the index block this transactions was associated with */
31961
+ index_hash: string;
31962
+ /** @description Unix timestamp (in seconds) indicating when this block was mined. */
31963
+ time: number;
31964
+ /** @description Index of the transaction, indicating the order. Starts at `0` and increases with each transaction */
31965
+ tx_index: number;
31966
+ };
31967
+ bitcoin_block: {
31968
+ /** @description Height of the anchor burn block. */
31969
+ height: number;
31970
+ /** @description Unix timestamp (in seconds) indicating when this block was mined. */
31971
+ time: number;
31972
+ };
31973
+ /** @description Status of the transaction */
31974
+ status: "success" | "abort_by_response" | "abort_by_post_condition";
31975
+ /** @enum {string} */
31976
+ type: "tenure_change";
31977
+ tenure_change: {
31978
+ /** @description Cause of change in mining tenure. Depending on cause, tenure can be ended or extended. */
31979
+ cause: "block_found" | "extended" | "extended_runtime" | "extended_read_count" | "extended_read_length" | "extended_write_count" | "extended_write_length";
31980
+ };
31981
+ };
31982
+ /** @description How the principal is involved in the transaction. */
31983
+ involvement: "sender" | "sponsor" | "affected";
31984
+ balance_changes: {
31985
+ stx: {
31986
+ /** @description Total sent from the given address, including the tx fee, in micro-STX as an integer string. */
31987
+ sent: string;
31988
+ /** @description Total received by the given address in micro-STX as an integer string. */
31989
+ received: string;
31990
+ /** @description Net change in the principal's STX balance in micro-STX as an integer string. */
31991
+ net: string;
31992
+ };
31993
+ };
31994
+ affected_balances: {
31995
+ /** @description Whether the principal's STX balance was affected by the transaction */
31996
+ stx: boolean;
31997
+ /** @description Whether the principal's FT balance was affected by the transaction */
31998
+ ft: boolean;
31999
+ /** @description Whether the principal's NFT balance was affected by the transaction */
32000
+ nft: boolean;
32001
+ };
32002
+ }[];
32003
+ };
32004
+ };
32005
+ };
32006
+ /** @description Default Response */
32007
+ "4XX": {
32008
+ headers: {
32009
+ [name: string]: unknown;
32010
+ };
32011
+ content: {
32012
+ "application/json": {
32013
+ error: string;
32014
+ message?: string;
32015
+ } & {
32016
+ [key: string]: unknown;
32017
+ };
32018
+ };
32019
+ };
32020
+ };
32021
+ };
31332
32022
  get_historical_zone_file: {
31333
32023
  parameters: {
31334
32024
  query?: {
@@ -31562,10 +32252,7 @@ export interface operations {
31562
32252
  };
31563
32253
  content: {
31564
32254
  "application/json": {
31565
- error: string;
31566
- message?: string;
31567
- } & {
31568
- [key: string]: unknown;
32255
+ [key: string]: string;
31569
32256
  };
31570
32257
  };
31571
32258
  };
@@ -31659,10 +32346,7 @@ export interface operations {
31659
32346
  };
31660
32347
  content: {
31661
32348
  "application/json": {
31662
- error: string;
31663
- message?: string;
31664
- } & {
31665
- [key: string]: unknown;
32349
+ [key: string]: string;
31666
32350
  };
31667
32351
  };
31668
32352
  };