@stacks/blockchain-api-client 9.0.0-next.19 → 9.0.0-next.23

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.
@@ -469,7 +469,10 @@ export interface paths {
469
469
  };
470
470
  /**
471
471
  * Get contract events
472
- * @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`
473
476
  */
474
477
  get: operations["get_contract_events_by_id"];
475
478
  put?: never;
@@ -1225,6 +1228,26 @@ export interface paths {
1225
1228
  patch?: never;
1226
1229
  trace?: never;
1227
1230
  };
1231
+ "/extended/v2/blocks/at-time/{timestamp}": {
1232
+ parameters: {
1233
+ query?: never;
1234
+ header?: never;
1235
+ path?: never;
1236
+ cookie?: never;
1237
+ };
1238
+ /**
1239
+ * Get block at time
1240
+ * @description Retrieves the most recent block mined at or before a given Unix timestamp (in seconds)
1241
+ */
1242
+ get: operations["get_block_at_time"];
1243
+ put?: never;
1244
+ post?: never;
1245
+ delete?: never;
1246
+ options?: never;
1247
+ head?: never;
1248
+ patch?: never;
1249
+ trace?: never;
1250
+ };
1228
1251
  "/extended/v2/blocks/{height_or_hash}": {
1229
1252
  parameters: {
1230
1253
  query?: never;
@@ -1405,6 +1428,26 @@ export interface paths {
1405
1428
  patch?: never;
1406
1429
  trace?: never;
1407
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
+ };
1408
1451
  "/extended/v2/mempool/fees": {
1409
1452
  parameters: {
1410
1453
  query?: never;
@@ -1995,7 +2038,7 @@ export interface operations {
1995
2038
  /** @description Denotes whether the originating account is the same as the paying account */
1996
2039
  sponsored: boolean;
1997
2040
  sponsor_address?: string;
1998
- post_condition_mode: "allow" | "deny";
2041
+ post_condition_mode: "allow" | "deny" | "originator";
1999
2042
  post_conditions: ({
2000
2043
  principal: {
2001
2044
  /** @enum {string} */
@@ -2051,7 +2094,7 @@ export interface operations {
2051
2094
  address: string;
2052
2095
  contract_name: string;
2053
2096
  };
2054
- condition_code: "sent" | "not_sent";
2097
+ condition_code: "sent" | "not_sent" | "maybe_sent";
2055
2098
  /** @enum {string} */
2056
2099
  type: "non_fungible";
2057
2100
  asset_value: {
@@ -2210,7 +2253,7 @@ export interface operations {
2210
2253
  /** @description Denotes whether the originating account is the same as the paying account */
2211
2254
  sponsored: boolean;
2212
2255
  sponsor_address?: string;
2213
- post_condition_mode: "allow" | "deny";
2256
+ post_condition_mode: "allow" | "deny" | "originator";
2214
2257
  post_conditions: ({
2215
2258
  principal: {
2216
2259
  /** @enum {string} */
@@ -2266,7 +2309,7 @@ export interface operations {
2266
2309
  address: string;
2267
2310
  contract_name: string;
2268
2311
  };
2269
- condition_code: "sent" | "not_sent";
2312
+ condition_code: "sent" | "not_sent" | "maybe_sent";
2270
2313
  /** @enum {string} */
2271
2314
  type: "non_fungible";
2272
2315
  asset_value: {
@@ -2425,7 +2468,7 @@ export interface operations {
2425
2468
  /** @description Denotes whether the originating account is the same as the paying account */
2426
2469
  sponsored: boolean;
2427
2470
  sponsor_address?: string;
2428
- post_condition_mode: "allow" | "deny";
2471
+ post_condition_mode: "allow" | "deny" | "originator";
2429
2472
  post_conditions: ({
2430
2473
  principal: {
2431
2474
  /** @enum {string} */
@@ -2481,7 +2524,7 @@ export interface operations {
2481
2524
  address: string;
2482
2525
  contract_name: string;
2483
2526
  };
2484
- condition_code: "sent" | "not_sent";
2527
+ condition_code: "sent" | "not_sent" | "maybe_sent";
2485
2528
  /** @enum {string} */
2486
2529
  type: "non_fungible";
2487
2530
  asset_value: {
@@ -2647,7 +2690,7 @@ export interface operations {
2647
2690
  /** @description Denotes whether the originating account is the same as the paying account */
2648
2691
  sponsored: boolean;
2649
2692
  sponsor_address?: string;
2650
- post_condition_mode: "allow" | "deny";
2693
+ post_condition_mode: "allow" | "deny" | "originator";
2651
2694
  post_conditions: ({
2652
2695
  principal: {
2653
2696
  /** @enum {string} */
@@ -2703,7 +2746,7 @@ export interface operations {
2703
2746
  address: string;
2704
2747
  contract_name: string;
2705
2748
  };
2706
- condition_code: "sent" | "not_sent";
2749
+ condition_code: "sent" | "not_sent" | "maybe_sent";
2707
2750
  /** @enum {string} */
2708
2751
  type: "non_fungible";
2709
2752
  asset_value: {
@@ -2861,7 +2904,7 @@ export interface operations {
2861
2904
  /** @description Denotes whether the originating account is the same as the paying account */
2862
2905
  sponsored: boolean;
2863
2906
  sponsor_address?: string;
2864
- post_condition_mode: "allow" | "deny";
2907
+ post_condition_mode: "allow" | "deny" | "originator";
2865
2908
  post_conditions: ({
2866
2909
  principal: {
2867
2910
  /** @enum {string} */
@@ -2917,7 +2960,7 @@ export interface operations {
2917
2960
  address: string;
2918
2961
  contract_name: string;
2919
2962
  };
2920
- condition_code: "sent" | "not_sent";
2963
+ condition_code: "sent" | "not_sent" | "maybe_sent";
2921
2964
  /** @enum {string} */
2922
2965
  type: "non_fungible";
2923
2966
  asset_value: {
@@ -3075,7 +3118,7 @@ export interface operations {
3075
3118
  /** @description Denotes whether the originating account is the same as the paying account */
3076
3119
  sponsored: boolean;
3077
3120
  sponsor_address?: string;
3078
- post_condition_mode: "allow" | "deny";
3121
+ post_condition_mode: "allow" | "deny" | "originator";
3079
3122
  post_conditions: ({
3080
3123
  principal: {
3081
3124
  /** @enum {string} */
@@ -3131,7 +3174,7 @@ export interface operations {
3131
3174
  address: string;
3132
3175
  contract_name: string;
3133
3176
  };
3134
- condition_code: "sent" | "not_sent";
3177
+ condition_code: "sent" | "not_sent" | "maybe_sent";
3135
3178
  /** @enum {string} */
3136
3179
  type: "non_fungible";
3137
3180
  asset_value: {
@@ -3336,7 +3379,7 @@ export interface operations {
3336
3379
  content: {
3337
3380
  "application/json": {
3338
3381
  [key: string]: {
3339
- /** @constant */
3382
+ /** @enum {boolean} */
3340
3383
  found: true;
3341
3384
  result: ({
3342
3385
  /** @description Transaction ID */
@@ -3351,42 +3394,42 @@ export interface operations {
3351
3394
  /** @description Denotes whether the originating account is the same as the paying account */
3352
3395
  sponsored: boolean;
3353
3396
  sponsor_address?: string;
3354
- post_condition_mode: "allow" | "deny";
3397
+ post_condition_mode: "allow" | "deny" | "originator";
3355
3398
  post_conditions: ({
3356
3399
  principal: {
3357
- /** @constant */
3400
+ /** @enum {string} */
3358
3401
  type_id: "principal_origin";
3359
3402
  } | {
3360
- /** @constant */
3403
+ /** @enum {string} */
3361
3404
  type_id: "principal_standard";
3362
3405
  address: string;
3363
3406
  } | {
3364
- /** @constant */
3407
+ /** @enum {string} */
3365
3408
  type_id: "principal_contract";
3366
3409
  address: string;
3367
3410
  contract_name: string;
3368
3411
  };
3369
3412
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
3370
3413
  amount: string;
3371
- /** @constant */
3414
+ /** @enum {string} */
3372
3415
  type: "stx";
3373
3416
  } | {
3374
3417
  principal: {
3375
- /** @constant */
3418
+ /** @enum {string} */
3376
3419
  type_id: "principal_origin";
3377
3420
  } | {
3378
- /** @constant */
3421
+ /** @enum {string} */
3379
3422
  type_id: "principal_standard";
3380
3423
  address: string;
3381
3424
  } | {
3382
- /** @constant */
3425
+ /** @enum {string} */
3383
3426
  type_id: "principal_contract";
3384
3427
  address: string;
3385
3428
  contract_name: string;
3386
3429
  };
3387
3430
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
3388
3431
  amount: string;
3389
- /** @constant */
3432
+ /** @enum {string} */
3390
3433
  type: "fungible";
3391
3434
  asset: {
3392
3435
  asset_name: string;
@@ -3395,20 +3438,20 @@ export interface operations {
3395
3438
  };
3396
3439
  } | {
3397
3440
  principal: {
3398
- /** @constant */
3441
+ /** @enum {string} */
3399
3442
  type_id: "principal_origin";
3400
3443
  } | {
3401
- /** @constant */
3444
+ /** @enum {string} */
3402
3445
  type_id: "principal_standard";
3403
3446
  address: string;
3404
3447
  } | {
3405
- /** @constant */
3448
+ /** @enum {string} */
3406
3449
  type_id: "principal_contract";
3407
3450
  address: string;
3408
3451
  contract_name: string;
3409
3452
  };
3410
- condition_code: "sent" | "not_sent";
3411
- /** @constant */
3453
+ condition_code: "sent" | "not_sent" | "maybe_sent";
3454
+ /** @enum {string} */
3412
3455
  type: "non_fungible";
3413
3456
  asset_value: {
3414
3457
  hex: string;
@@ -3479,7 +3522,7 @@ export interface operations {
3479
3522
  events: (({
3480
3523
  event_index: number;
3481
3524
  } & {
3482
- /** @constant */
3525
+ /** @enum {string} */
3483
3526
  event_type: "smart_contract_log";
3484
3527
  tx_id: string;
3485
3528
  contract_log: {
@@ -3493,7 +3536,7 @@ export interface operations {
3493
3536
  }) | ({
3494
3537
  event_index: number;
3495
3538
  } & {
3496
- /** @constant */
3539
+ /** @enum {string} */
3497
3540
  event_type: "stx_lock";
3498
3541
  tx_id: string;
3499
3542
  stx_lock_event: {
@@ -3504,7 +3547,7 @@ export interface operations {
3504
3547
  }) | ({
3505
3548
  event_index: number;
3506
3549
  } & {
3507
- /** @constant */
3550
+ /** @enum {string} */
3508
3551
  event_type: "stx_asset";
3509
3552
  tx_id: string;
3510
3553
  asset: {
@@ -3517,7 +3560,7 @@ export interface operations {
3517
3560
  }) | ({
3518
3561
  event_index: number;
3519
3562
  } & {
3520
- /** @constant */
3563
+ /** @enum {string} */
3521
3564
  event_type: "fungible_token_asset";
3522
3565
  tx_id: string;
3523
3566
  asset: {
@@ -3530,7 +3573,7 @@ export interface operations {
3530
3573
  }) | ({
3531
3574
  event_index: number;
3532
3575
  } & {
3533
- /** @constant */
3576
+ /** @enum {string} */
3534
3577
  event_type: "non_fungible_token_asset";
3535
3578
  tx_id: string;
3536
3579
  asset: {
@@ -3544,7 +3587,7 @@ export interface operations {
3544
3587
  };
3545
3588
  };
3546
3589
  }))[];
3547
- /** @constant */
3590
+ /** @enum {string} */
3548
3591
  tx_type: "token_transfer";
3549
3592
  token_transfer: {
3550
3593
  recipient_address: string;
@@ -3566,42 +3609,42 @@ export interface operations {
3566
3609
  /** @description Denotes whether the originating account is the same as the paying account */
3567
3610
  sponsored: boolean;
3568
3611
  sponsor_address?: string;
3569
- post_condition_mode: "allow" | "deny";
3612
+ post_condition_mode: "allow" | "deny" | "originator";
3570
3613
  post_conditions: ({
3571
3614
  principal: {
3572
- /** @constant */
3615
+ /** @enum {string} */
3573
3616
  type_id: "principal_origin";
3574
3617
  } | {
3575
- /** @constant */
3618
+ /** @enum {string} */
3576
3619
  type_id: "principal_standard";
3577
3620
  address: string;
3578
3621
  } | {
3579
- /** @constant */
3622
+ /** @enum {string} */
3580
3623
  type_id: "principal_contract";
3581
3624
  address: string;
3582
3625
  contract_name: string;
3583
3626
  };
3584
3627
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
3585
3628
  amount: string;
3586
- /** @constant */
3629
+ /** @enum {string} */
3587
3630
  type: "stx";
3588
3631
  } | {
3589
3632
  principal: {
3590
- /** @constant */
3633
+ /** @enum {string} */
3591
3634
  type_id: "principal_origin";
3592
3635
  } | {
3593
- /** @constant */
3636
+ /** @enum {string} */
3594
3637
  type_id: "principal_standard";
3595
3638
  address: string;
3596
3639
  } | {
3597
- /** @constant */
3640
+ /** @enum {string} */
3598
3641
  type_id: "principal_contract";
3599
3642
  address: string;
3600
3643
  contract_name: string;
3601
3644
  };
3602
3645
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
3603
3646
  amount: string;
3604
- /** @constant */
3647
+ /** @enum {string} */
3605
3648
  type: "fungible";
3606
3649
  asset: {
3607
3650
  asset_name: string;
@@ -3610,20 +3653,20 @@ export interface operations {
3610
3653
  };
3611
3654
  } | {
3612
3655
  principal: {
3613
- /** @constant */
3656
+ /** @enum {string} */
3614
3657
  type_id: "principal_origin";
3615
3658
  } | {
3616
- /** @constant */
3659
+ /** @enum {string} */
3617
3660
  type_id: "principal_standard";
3618
3661
  address: string;
3619
3662
  } | {
3620
- /** @constant */
3663
+ /** @enum {string} */
3621
3664
  type_id: "principal_contract";
3622
3665
  address: string;
3623
3666
  contract_name: string;
3624
3667
  };
3625
- condition_code: "sent" | "not_sent";
3626
- /** @constant */
3668
+ condition_code: "sent" | "not_sent" | "maybe_sent";
3669
+ /** @enum {string} */
3627
3670
  type: "non_fungible";
3628
3671
  asset_value: {
3629
3672
  hex: string;
@@ -3694,7 +3737,7 @@ export interface operations {
3694
3737
  events: (({
3695
3738
  event_index: number;
3696
3739
  } & {
3697
- /** @constant */
3740
+ /** @enum {string} */
3698
3741
  event_type: "smart_contract_log";
3699
3742
  tx_id: string;
3700
3743
  contract_log: {
@@ -3708,7 +3751,7 @@ export interface operations {
3708
3751
  }) | ({
3709
3752
  event_index: number;
3710
3753
  } & {
3711
- /** @constant */
3754
+ /** @enum {string} */
3712
3755
  event_type: "stx_lock";
3713
3756
  tx_id: string;
3714
3757
  stx_lock_event: {
@@ -3719,7 +3762,7 @@ export interface operations {
3719
3762
  }) | ({
3720
3763
  event_index: number;
3721
3764
  } & {
3722
- /** @constant */
3765
+ /** @enum {string} */
3723
3766
  event_type: "stx_asset";
3724
3767
  tx_id: string;
3725
3768
  asset: {
@@ -3732,7 +3775,7 @@ export interface operations {
3732
3775
  }) | ({
3733
3776
  event_index: number;
3734
3777
  } & {
3735
- /** @constant */
3778
+ /** @enum {string} */
3736
3779
  event_type: "fungible_token_asset";
3737
3780
  tx_id: string;
3738
3781
  asset: {
@@ -3745,7 +3788,7 @@ export interface operations {
3745
3788
  }) | ({
3746
3789
  event_index: number;
3747
3790
  } & {
3748
- /** @constant */
3791
+ /** @enum {string} */
3749
3792
  event_type: "non_fungible_token_asset";
3750
3793
  tx_id: string;
3751
3794
  asset: {
@@ -3759,7 +3802,7 @@ export interface operations {
3759
3802
  };
3760
3803
  };
3761
3804
  }))[];
3762
- /** @constant */
3805
+ /** @enum {string} */
3763
3806
  tx_type: "smart_contract";
3764
3807
  smart_contract: {
3765
3808
  clarity_version: number | null;
@@ -3781,42 +3824,42 @@ export interface operations {
3781
3824
  /** @description Denotes whether the originating account is the same as the paying account */
3782
3825
  sponsored: boolean;
3783
3826
  sponsor_address?: string;
3784
- post_condition_mode: "allow" | "deny";
3827
+ post_condition_mode: "allow" | "deny" | "originator";
3785
3828
  post_conditions: ({
3786
3829
  principal: {
3787
- /** @constant */
3830
+ /** @enum {string} */
3788
3831
  type_id: "principal_origin";
3789
3832
  } | {
3790
- /** @constant */
3833
+ /** @enum {string} */
3791
3834
  type_id: "principal_standard";
3792
3835
  address: string;
3793
3836
  } | {
3794
- /** @constant */
3837
+ /** @enum {string} */
3795
3838
  type_id: "principal_contract";
3796
3839
  address: string;
3797
3840
  contract_name: string;
3798
3841
  };
3799
3842
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
3800
3843
  amount: string;
3801
- /** @constant */
3844
+ /** @enum {string} */
3802
3845
  type: "stx";
3803
3846
  } | {
3804
3847
  principal: {
3805
- /** @constant */
3848
+ /** @enum {string} */
3806
3849
  type_id: "principal_origin";
3807
3850
  } | {
3808
- /** @constant */
3851
+ /** @enum {string} */
3809
3852
  type_id: "principal_standard";
3810
3853
  address: string;
3811
3854
  } | {
3812
- /** @constant */
3855
+ /** @enum {string} */
3813
3856
  type_id: "principal_contract";
3814
3857
  address: string;
3815
3858
  contract_name: string;
3816
3859
  };
3817
3860
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
3818
3861
  amount: string;
3819
- /** @constant */
3862
+ /** @enum {string} */
3820
3863
  type: "fungible";
3821
3864
  asset: {
3822
3865
  asset_name: string;
@@ -3825,20 +3868,20 @@ export interface operations {
3825
3868
  };
3826
3869
  } | {
3827
3870
  principal: {
3828
- /** @constant */
3871
+ /** @enum {string} */
3829
3872
  type_id: "principal_origin";
3830
3873
  } | {
3831
- /** @constant */
3874
+ /** @enum {string} */
3832
3875
  type_id: "principal_standard";
3833
3876
  address: string;
3834
3877
  } | {
3835
- /** @constant */
3878
+ /** @enum {string} */
3836
3879
  type_id: "principal_contract";
3837
3880
  address: string;
3838
3881
  contract_name: string;
3839
3882
  };
3840
- condition_code: "sent" | "not_sent";
3841
- /** @constant */
3883
+ condition_code: "sent" | "not_sent" | "maybe_sent";
3884
+ /** @enum {string} */
3842
3885
  type: "non_fungible";
3843
3886
  asset_value: {
3844
3887
  hex: string;
@@ -3909,7 +3952,7 @@ export interface operations {
3909
3952
  events: (({
3910
3953
  event_index: number;
3911
3954
  } & {
3912
- /** @constant */
3955
+ /** @enum {string} */
3913
3956
  event_type: "smart_contract_log";
3914
3957
  tx_id: string;
3915
3958
  contract_log: {
@@ -3923,7 +3966,7 @@ export interface operations {
3923
3966
  }) | ({
3924
3967
  event_index: number;
3925
3968
  } & {
3926
- /** @constant */
3969
+ /** @enum {string} */
3927
3970
  event_type: "stx_lock";
3928
3971
  tx_id: string;
3929
3972
  stx_lock_event: {
@@ -3934,7 +3977,7 @@ export interface operations {
3934
3977
  }) | ({
3935
3978
  event_index: number;
3936
3979
  } & {
3937
- /** @constant */
3980
+ /** @enum {string} */
3938
3981
  event_type: "stx_asset";
3939
3982
  tx_id: string;
3940
3983
  asset: {
@@ -3947,7 +3990,7 @@ export interface operations {
3947
3990
  }) | ({
3948
3991
  event_index: number;
3949
3992
  } & {
3950
- /** @constant */
3993
+ /** @enum {string} */
3951
3994
  event_type: "fungible_token_asset";
3952
3995
  tx_id: string;
3953
3996
  asset: {
@@ -3960,7 +4003,7 @@ export interface operations {
3960
4003
  }) | ({
3961
4004
  event_index: number;
3962
4005
  } & {
3963
- /** @constant */
4006
+ /** @enum {string} */
3964
4007
  event_type: "non_fungible_token_asset";
3965
4008
  tx_id: string;
3966
4009
  asset: {
@@ -3974,7 +4017,7 @@ export interface operations {
3974
4017
  };
3975
4018
  };
3976
4019
  }))[];
3977
- /** @constant */
4020
+ /** @enum {string} */
3978
4021
  tx_type: "contract_call";
3979
4022
  contract_call: {
3980
4023
  /** @description Contract identifier formatted as `<principaladdress>.<contract_name>` */
@@ -4003,42 +4046,42 @@ export interface operations {
4003
4046
  /** @description Denotes whether the originating account is the same as the paying account */
4004
4047
  sponsored: boolean;
4005
4048
  sponsor_address?: string;
4006
- post_condition_mode: "allow" | "deny";
4049
+ post_condition_mode: "allow" | "deny" | "originator";
4007
4050
  post_conditions: ({
4008
4051
  principal: {
4009
- /** @constant */
4052
+ /** @enum {string} */
4010
4053
  type_id: "principal_origin";
4011
4054
  } | {
4012
- /** @constant */
4055
+ /** @enum {string} */
4013
4056
  type_id: "principal_standard";
4014
4057
  address: string;
4015
4058
  } | {
4016
- /** @constant */
4059
+ /** @enum {string} */
4017
4060
  type_id: "principal_contract";
4018
4061
  address: string;
4019
4062
  contract_name: string;
4020
4063
  };
4021
4064
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
4022
4065
  amount: string;
4023
- /** @constant */
4066
+ /** @enum {string} */
4024
4067
  type: "stx";
4025
4068
  } | {
4026
4069
  principal: {
4027
- /** @constant */
4070
+ /** @enum {string} */
4028
4071
  type_id: "principal_origin";
4029
4072
  } | {
4030
- /** @constant */
4073
+ /** @enum {string} */
4031
4074
  type_id: "principal_standard";
4032
4075
  address: string;
4033
4076
  } | {
4034
- /** @constant */
4077
+ /** @enum {string} */
4035
4078
  type_id: "principal_contract";
4036
4079
  address: string;
4037
4080
  contract_name: string;
4038
4081
  };
4039
4082
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
4040
4083
  amount: string;
4041
- /** @constant */
4084
+ /** @enum {string} */
4042
4085
  type: "fungible";
4043
4086
  asset: {
4044
4087
  asset_name: string;
@@ -4047,20 +4090,20 @@ export interface operations {
4047
4090
  };
4048
4091
  } | {
4049
4092
  principal: {
4050
- /** @constant */
4093
+ /** @enum {string} */
4051
4094
  type_id: "principal_origin";
4052
4095
  } | {
4053
- /** @constant */
4096
+ /** @enum {string} */
4054
4097
  type_id: "principal_standard";
4055
4098
  address: string;
4056
4099
  } | {
4057
- /** @constant */
4100
+ /** @enum {string} */
4058
4101
  type_id: "principal_contract";
4059
4102
  address: string;
4060
4103
  contract_name: string;
4061
4104
  };
4062
- condition_code: "sent" | "not_sent";
4063
- /** @constant */
4105
+ condition_code: "sent" | "not_sent" | "maybe_sent";
4106
+ /** @enum {string} */
4064
4107
  type: "non_fungible";
4065
4108
  asset_value: {
4066
4109
  hex: string;
@@ -4131,7 +4174,7 @@ export interface operations {
4131
4174
  events: (({
4132
4175
  event_index: number;
4133
4176
  } & {
4134
- /** @constant */
4177
+ /** @enum {string} */
4135
4178
  event_type: "smart_contract_log";
4136
4179
  tx_id: string;
4137
4180
  contract_log: {
@@ -4145,7 +4188,7 @@ export interface operations {
4145
4188
  }) | ({
4146
4189
  event_index: number;
4147
4190
  } & {
4148
- /** @constant */
4191
+ /** @enum {string} */
4149
4192
  event_type: "stx_lock";
4150
4193
  tx_id: string;
4151
4194
  stx_lock_event: {
@@ -4156,7 +4199,7 @@ export interface operations {
4156
4199
  }) | ({
4157
4200
  event_index: number;
4158
4201
  } & {
4159
- /** @constant */
4202
+ /** @enum {string} */
4160
4203
  event_type: "stx_asset";
4161
4204
  tx_id: string;
4162
4205
  asset: {
@@ -4169,7 +4212,7 @@ export interface operations {
4169
4212
  }) | ({
4170
4213
  event_index: number;
4171
4214
  } & {
4172
- /** @constant */
4215
+ /** @enum {string} */
4173
4216
  event_type: "fungible_token_asset";
4174
4217
  tx_id: string;
4175
4218
  asset: {
@@ -4182,7 +4225,7 @@ export interface operations {
4182
4225
  }) | ({
4183
4226
  event_index: number;
4184
4227
  } & {
4185
- /** @constant */
4228
+ /** @enum {string} */
4186
4229
  event_type: "non_fungible_token_asset";
4187
4230
  tx_id: string;
4188
4231
  asset: {
@@ -4196,7 +4239,7 @@ export interface operations {
4196
4239
  };
4197
4240
  };
4198
4241
  }))[];
4199
- /** @constant */
4242
+ /** @enum {string} */
4200
4243
  tx_type: "poison_microblock";
4201
4244
  poison_microblock: {
4202
4245
  /** @description Hex encoded microblock header */
@@ -4217,42 +4260,42 @@ export interface operations {
4217
4260
  /** @description Denotes whether the originating account is the same as the paying account */
4218
4261
  sponsored: boolean;
4219
4262
  sponsor_address?: string;
4220
- post_condition_mode: "allow" | "deny";
4263
+ post_condition_mode: "allow" | "deny" | "originator";
4221
4264
  post_conditions: ({
4222
4265
  principal: {
4223
- /** @constant */
4266
+ /** @enum {string} */
4224
4267
  type_id: "principal_origin";
4225
4268
  } | {
4226
- /** @constant */
4269
+ /** @enum {string} */
4227
4270
  type_id: "principal_standard";
4228
4271
  address: string;
4229
4272
  } | {
4230
- /** @constant */
4273
+ /** @enum {string} */
4231
4274
  type_id: "principal_contract";
4232
4275
  address: string;
4233
4276
  contract_name: string;
4234
4277
  };
4235
4278
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
4236
4279
  amount: string;
4237
- /** @constant */
4280
+ /** @enum {string} */
4238
4281
  type: "stx";
4239
4282
  } | {
4240
4283
  principal: {
4241
- /** @constant */
4284
+ /** @enum {string} */
4242
4285
  type_id: "principal_origin";
4243
4286
  } | {
4244
- /** @constant */
4287
+ /** @enum {string} */
4245
4288
  type_id: "principal_standard";
4246
4289
  address: string;
4247
4290
  } | {
4248
- /** @constant */
4291
+ /** @enum {string} */
4249
4292
  type_id: "principal_contract";
4250
4293
  address: string;
4251
4294
  contract_name: string;
4252
4295
  };
4253
4296
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
4254
4297
  amount: string;
4255
- /** @constant */
4298
+ /** @enum {string} */
4256
4299
  type: "fungible";
4257
4300
  asset: {
4258
4301
  asset_name: string;
@@ -4261,20 +4304,20 @@ export interface operations {
4261
4304
  };
4262
4305
  } | {
4263
4306
  principal: {
4264
- /** @constant */
4307
+ /** @enum {string} */
4265
4308
  type_id: "principal_origin";
4266
4309
  } | {
4267
- /** @constant */
4310
+ /** @enum {string} */
4268
4311
  type_id: "principal_standard";
4269
4312
  address: string;
4270
4313
  } | {
4271
- /** @constant */
4314
+ /** @enum {string} */
4272
4315
  type_id: "principal_contract";
4273
4316
  address: string;
4274
4317
  contract_name: string;
4275
4318
  };
4276
- condition_code: "sent" | "not_sent";
4277
- /** @constant */
4319
+ condition_code: "sent" | "not_sent" | "maybe_sent";
4320
+ /** @enum {string} */
4278
4321
  type: "non_fungible";
4279
4322
  asset_value: {
4280
4323
  hex: string;
@@ -4345,7 +4388,7 @@ export interface operations {
4345
4388
  events: (({
4346
4389
  event_index: number;
4347
4390
  } & {
4348
- /** @constant */
4391
+ /** @enum {string} */
4349
4392
  event_type: "smart_contract_log";
4350
4393
  tx_id: string;
4351
4394
  contract_log: {
@@ -4359,7 +4402,7 @@ export interface operations {
4359
4402
  }) | ({
4360
4403
  event_index: number;
4361
4404
  } & {
4362
- /** @constant */
4405
+ /** @enum {string} */
4363
4406
  event_type: "stx_lock";
4364
4407
  tx_id: string;
4365
4408
  stx_lock_event: {
@@ -4370,7 +4413,7 @@ export interface operations {
4370
4413
  }) | ({
4371
4414
  event_index: number;
4372
4415
  } & {
4373
- /** @constant */
4416
+ /** @enum {string} */
4374
4417
  event_type: "stx_asset";
4375
4418
  tx_id: string;
4376
4419
  asset: {
@@ -4383,7 +4426,7 @@ export interface operations {
4383
4426
  }) | ({
4384
4427
  event_index: number;
4385
4428
  } & {
4386
- /** @constant */
4429
+ /** @enum {string} */
4387
4430
  event_type: "fungible_token_asset";
4388
4431
  tx_id: string;
4389
4432
  asset: {
@@ -4396,7 +4439,7 @@ export interface operations {
4396
4439
  }) | ({
4397
4440
  event_index: number;
4398
4441
  } & {
4399
- /** @constant */
4442
+ /** @enum {string} */
4400
4443
  event_type: "non_fungible_token_asset";
4401
4444
  tx_id: string;
4402
4445
  asset: {
@@ -4410,7 +4453,7 @@ export interface operations {
4410
4453
  };
4411
4454
  };
4412
4455
  }))[];
4413
- /** @constant */
4456
+ /** @enum {string} */
4414
4457
  tx_type: "coinbase";
4415
4458
  coinbase_payload: {
4416
4459
  /** @description Hex encoded 32-byte scratch space for block leader's use */
@@ -4431,42 +4474,42 @@ export interface operations {
4431
4474
  /** @description Denotes whether the originating account is the same as the paying account */
4432
4475
  sponsored: boolean;
4433
4476
  sponsor_address?: string;
4434
- post_condition_mode: "allow" | "deny";
4477
+ post_condition_mode: "allow" | "deny" | "originator";
4435
4478
  post_conditions: ({
4436
4479
  principal: {
4437
- /** @constant */
4480
+ /** @enum {string} */
4438
4481
  type_id: "principal_origin";
4439
4482
  } | {
4440
- /** @constant */
4483
+ /** @enum {string} */
4441
4484
  type_id: "principal_standard";
4442
4485
  address: string;
4443
4486
  } | {
4444
- /** @constant */
4487
+ /** @enum {string} */
4445
4488
  type_id: "principal_contract";
4446
4489
  address: string;
4447
4490
  contract_name: string;
4448
4491
  };
4449
4492
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
4450
4493
  amount: string;
4451
- /** @constant */
4494
+ /** @enum {string} */
4452
4495
  type: "stx";
4453
4496
  } | {
4454
4497
  principal: {
4455
- /** @constant */
4498
+ /** @enum {string} */
4456
4499
  type_id: "principal_origin";
4457
4500
  } | {
4458
- /** @constant */
4501
+ /** @enum {string} */
4459
4502
  type_id: "principal_standard";
4460
4503
  address: string;
4461
4504
  } | {
4462
- /** @constant */
4505
+ /** @enum {string} */
4463
4506
  type_id: "principal_contract";
4464
4507
  address: string;
4465
4508
  contract_name: string;
4466
4509
  };
4467
4510
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
4468
4511
  amount: string;
4469
- /** @constant */
4512
+ /** @enum {string} */
4470
4513
  type: "fungible";
4471
4514
  asset: {
4472
4515
  asset_name: string;
@@ -4475,20 +4518,20 @@ export interface operations {
4475
4518
  };
4476
4519
  } | {
4477
4520
  principal: {
4478
- /** @constant */
4521
+ /** @enum {string} */
4479
4522
  type_id: "principal_origin";
4480
4523
  } | {
4481
- /** @constant */
4524
+ /** @enum {string} */
4482
4525
  type_id: "principal_standard";
4483
4526
  address: string;
4484
4527
  } | {
4485
- /** @constant */
4528
+ /** @enum {string} */
4486
4529
  type_id: "principal_contract";
4487
4530
  address: string;
4488
4531
  contract_name: string;
4489
4532
  };
4490
- condition_code: "sent" | "not_sent";
4491
- /** @constant */
4533
+ condition_code: "sent" | "not_sent" | "maybe_sent";
4534
+ /** @enum {string} */
4492
4535
  type: "non_fungible";
4493
4536
  asset_value: {
4494
4537
  hex: string;
@@ -4559,7 +4602,7 @@ export interface operations {
4559
4602
  events: (({
4560
4603
  event_index: number;
4561
4604
  } & {
4562
- /** @constant */
4605
+ /** @enum {string} */
4563
4606
  event_type: "smart_contract_log";
4564
4607
  tx_id: string;
4565
4608
  contract_log: {
@@ -4573,7 +4616,7 @@ export interface operations {
4573
4616
  }) | ({
4574
4617
  event_index: number;
4575
4618
  } & {
4576
- /** @constant */
4619
+ /** @enum {string} */
4577
4620
  event_type: "stx_lock";
4578
4621
  tx_id: string;
4579
4622
  stx_lock_event: {
@@ -4584,7 +4627,7 @@ export interface operations {
4584
4627
  }) | ({
4585
4628
  event_index: number;
4586
4629
  } & {
4587
- /** @constant */
4630
+ /** @enum {string} */
4588
4631
  event_type: "stx_asset";
4589
4632
  tx_id: string;
4590
4633
  asset: {
@@ -4597,7 +4640,7 @@ export interface operations {
4597
4640
  }) | ({
4598
4641
  event_index: number;
4599
4642
  } & {
4600
- /** @constant */
4643
+ /** @enum {string} */
4601
4644
  event_type: "fungible_token_asset";
4602
4645
  tx_id: string;
4603
4646
  asset: {
@@ -4610,7 +4653,7 @@ export interface operations {
4610
4653
  }) | ({
4611
4654
  event_index: number;
4612
4655
  } & {
4613
- /** @constant */
4656
+ /** @enum {string} */
4614
4657
  event_type: "non_fungible_token_asset";
4615
4658
  tx_id: string;
4616
4659
  asset: {
@@ -4624,7 +4667,7 @@ export interface operations {
4624
4667
  };
4625
4668
  };
4626
4669
  }))[];
4627
- /** @constant */
4670
+ /** @enum {string} */
4628
4671
  tx_type: "tenure_change";
4629
4672
  tenure_change_payload: {
4630
4673
  /** @description Consensus hash of this tenure. Corresponds to the sortition in which the miner of this block was chosen. */
@@ -4655,42 +4698,42 @@ export interface operations {
4655
4698
  /** @description Denotes whether the originating account is the same as the paying account */
4656
4699
  sponsored: boolean;
4657
4700
  sponsor_address?: string;
4658
- post_condition_mode: "allow" | "deny";
4701
+ post_condition_mode: "allow" | "deny" | "originator";
4659
4702
  post_conditions: ({
4660
4703
  principal: {
4661
- /** @constant */
4704
+ /** @enum {string} */
4662
4705
  type_id: "principal_origin";
4663
4706
  } | {
4664
- /** @constant */
4707
+ /** @enum {string} */
4665
4708
  type_id: "principal_standard";
4666
4709
  address: string;
4667
4710
  } | {
4668
- /** @constant */
4711
+ /** @enum {string} */
4669
4712
  type_id: "principal_contract";
4670
4713
  address: string;
4671
4714
  contract_name: string;
4672
4715
  };
4673
4716
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
4674
4717
  amount: string;
4675
- /** @constant */
4718
+ /** @enum {string} */
4676
4719
  type: "stx";
4677
4720
  } | {
4678
4721
  principal: {
4679
- /** @constant */
4722
+ /** @enum {string} */
4680
4723
  type_id: "principal_origin";
4681
4724
  } | {
4682
- /** @constant */
4725
+ /** @enum {string} */
4683
4726
  type_id: "principal_standard";
4684
4727
  address: string;
4685
4728
  } | {
4686
- /** @constant */
4729
+ /** @enum {string} */
4687
4730
  type_id: "principal_contract";
4688
4731
  address: string;
4689
4732
  contract_name: string;
4690
4733
  };
4691
4734
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
4692
4735
  amount: string;
4693
- /** @constant */
4736
+ /** @enum {string} */
4694
4737
  type: "fungible";
4695
4738
  asset: {
4696
4739
  asset_name: string;
@@ -4699,20 +4742,20 @@ export interface operations {
4699
4742
  };
4700
4743
  } | {
4701
4744
  principal: {
4702
- /** @constant */
4745
+ /** @enum {string} */
4703
4746
  type_id: "principal_origin";
4704
4747
  } | {
4705
- /** @constant */
4748
+ /** @enum {string} */
4706
4749
  type_id: "principal_standard";
4707
4750
  address: string;
4708
4751
  } | {
4709
- /** @constant */
4752
+ /** @enum {string} */
4710
4753
  type_id: "principal_contract";
4711
4754
  address: string;
4712
4755
  contract_name: string;
4713
4756
  };
4714
- condition_code: "sent" | "not_sent";
4715
- /** @constant */
4757
+ condition_code: "sent" | "not_sent" | "maybe_sent";
4758
+ /** @enum {string} */
4716
4759
  type: "non_fungible";
4717
4760
  asset_value: {
4718
4761
  hex: string;
@@ -4733,7 +4776,7 @@ export interface operations {
4733
4776
  receipt_time: number;
4734
4777
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
4735
4778
  receipt_time_iso: string;
4736
- /** @constant */
4779
+ /** @enum {string} */
4737
4780
  tx_type: "token_transfer";
4738
4781
  token_transfer: {
4739
4782
  recipient_address: string;
@@ -4755,42 +4798,42 @@ export interface operations {
4755
4798
  /** @description Denotes whether the originating account is the same as the paying account */
4756
4799
  sponsored: boolean;
4757
4800
  sponsor_address?: string;
4758
- post_condition_mode: "allow" | "deny";
4801
+ post_condition_mode: "allow" | "deny" | "originator";
4759
4802
  post_conditions: ({
4760
4803
  principal: {
4761
- /** @constant */
4804
+ /** @enum {string} */
4762
4805
  type_id: "principal_origin";
4763
4806
  } | {
4764
- /** @constant */
4807
+ /** @enum {string} */
4765
4808
  type_id: "principal_standard";
4766
4809
  address: string;
4767
4810
  } | {
4768
- /** @constant */
4811
+ /** @enum {string} */
4769
4812
  type_id: "principal_contract";
4770
4813
  address: string;
4771
4814
  contract_name: string;
4772
4815
  };
4773
4816
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
4774
4817
  amount: string;
4775
- /** @constant */
4818
+ /** @enum {string} */
4776
4819
  type: "stx";
4777
4820
  } | {
4778
4821
  principal: {
4779
- /** @constant */
4822
+ /** @enum {string} */
4780
4823
  type_id: "principal_origin";
4781
4824
  } | {
4782
- /** @constant */
4825
+ /** @enum {string} */
4783
4826
  type_id: "principal_standard";
4784
4827
  address: string;
4785
4828
  } | {
4786
- /** @constant */
4829
+ /** @enum {string} */
4787
4830
  type_id: "principal_contract";
4788
4831
  address: string;
4789
4832
  contract_name: string;
4790
4833
  };
4791
4834
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
4792
4835
  amount: string;
4793
- /** @constant */
4836
+ /** @enum {string} */
4794
4837
  type: "fungible";
4795
4838
  asset: {
4796
4839
  asset_name: string;
@@ -4799,20 +4842,20 @@ export interface operations {
4799
4842
  };
4800
4843
  } | {
4801
4844
  principal: {
4802
- /** @constant */
4845
+ /** @enum {string} */
4803
4846
  type_id: "principal_origin";
4804
4847
  } | {
4805
- /** @constant */
4848
+ /** @enum {string} */
4806
4849
  type_id: "principal_standard";
4807
4850
  address: string;
4808
4851
  } | {
4809
- /** @constant */
4852
+ /** @enum {string} */
4810
4853
  type_id: "principal_contract";
4811
4854
  address: string;
4812
4855
  contract_name: string;
4813
4856
  };
4814
- condition_code: "sent" | "not_sent";
4815
- /** @constant */
4857
+ condition_code: "sent" | "not_sent" | "maybe_sent";
4858
+ /** @enum {string} */
4816
4859
  type: "non_fungible";
4817
4860
  asset_value: {
4818
4861
  hex: string;
@@ -4833,7 +4876,7 @@ export interface operations {
4833
4876
  receipt_time: number;
4834
4877
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
4835
4878
  receipt_time_iso: string;
4836
- /** @constant */
4879
+ /** @enum {string} */
4837
4880
  tx_type: "smart_contract";
4838
4881
  smart_contract: {
4839
4882
  clarity_version: number | null;
@@ -4855,42 +4898,42 @@ export interface operations {
4855
4898
  /** @description Denotes whether the originating account is the same as the paying account */
4856
4899
  sponsored: boolean;
4857
4900
  sponsor_address?: string;
4858
- post_condition_mode: "allow" | "deny";
4901
+ post_condition_mode: "allow" | "deny" | "originator";
4859
4902
  post_conditions: ({
4860
4903
  principal: {
4861
- /** @constant */
4904
+ /** @enum {string} */
4862
4905
  type_id: "principal_origin";
4863
4906
  } | {
4864
- /** @constant */
4907
+ /** @enum {string} */
4865
4908
  type_id: "principal_standard";
4866
4909
  address: string;
4867
4910
  } | {
4868
- /** @constant */
4911
+ /** @enum {string} */
4869
4912
  type_id: "principal_contract";
4870
4913
  address: string;
4871
4914
  contract_name: string;
4872
4915
  };
4873
4916
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
4874
4917
  amount: string;
4875
- /** @constant */
4918
+ /** @enum {string} */
4876
4919
  type: "stx";
4877
4920
  } | {
4878
4921
  principal: {
4879
- /** @constant */
4922
+ /** @enum {string} */
4880
4923
  type_id: "principal_origin";
4881
4924
  } | {
4882
- /** @constant */
4925
+ /** @enum {string} */
4883
4926
  type_id: "principal_standard";
4884
4927
  address: string;
4885
4928
  } | {
4886
- /** @constant */
4929
+ /** @enum {string} */
4887
4930
  type_id: "principal_contract";
4888
4931
  address: string;
4889
4932
  contract_name: string;
4890
4933
  };
4891
4934
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
4892
4935
  amount: string;
4893
- /** @constant */
4936
+ /** @enum {string} */
4894
4937
  type: "fungible";
4895
4938
  asset: {
4896
4939
  asset_name: string;
@@ -4899,20 +4942,20 @@ export interface operations {
4899
4942
  };
4900
4943
  } | {
4901
4944
  principal: {
4902
- /** @constant */
4945
+ /** @enum {string} */
4903
4946
  type_id: "principal_origin";
4904
4947
  } | {
4905
- /** @constant */
4948
+ /** @enum {string} */
4906
4949
  type_id: "principal_standard";
4907
4950
  address: string;
4908
4951
  } | {
4909
- /** @constant */
4952
+ /** @enum {string} */
4910
4953
  type_id: "principal_contract";
4911
4954
  address: string;
4912
4955
  contract_name: string;
4913
4956
  };
4914
- condition_code: "sent" | "not_sent";
4915
- /** @constant */
4957
+ condition_code: "sent" | "not_sent" | "maybe_sent";
4958
+ /** @enum {string} */
4916
4959
  type: "non_fungible";
4917
4960
  asset_value: {
4918
4961
  hex: string;
@@ -4933,7 +4976,7 @@ export interface operations {
4933
4976
  receipt_time: number;
4934
4977
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
4935
4978
  receipt_time_iso: string;
4936
- /** @constant */
4979
+ /** @enum {string} */
4937
4980
  tx_type: "contract_call";
4938
4981
  contract_call: {
4939
4982
  /** @description Contract identifier formatted as `<principaladdress>.<contract_name>` */
@@ -4962,42 +5005,42 @@ export interface operations {
4962
5005
  /** @description Denotes whether the originating account is the same as the paying account */
4963
5006
  sponsored: boolean;
4964
5007
  sponsor_address?: string;
4965
- post_condition_mode: "allow" | "deny";
5008
+ post_condition_mode: "allow" | "deny" | "originator";
4966
5009
  post_conditions: ({
4967
5010
  principal: {
4968
- /** @constant */
5011
+ /** @enum {string} */
4969
5012
  type_id: "principal_origin";
4970
5013
  } | {
4971
- /** @constant */
5014
+ /** @enum {string} */
4972
5015
  type_id: "principal_standard";
4973
5016
  address: string;
4974
5017
  } | {
4975
- /** @constant */
5018
+ /** @enum {string} */
4976
5019
  type_id: "principal_contract";
4977
5020
  address: string;
4978
5021
  contract_name: string;
4979
5022
  };
4980
5023
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
4981
5024
  amount: string;
4982
- /** @constant */
5025
+ /** @enum {string} */
4983
5026
  type: "stx";
4984
5027
  } | {
4985
5028
  principal: {
4986
- /** @constant */
5029
+ /** @enum {string} */
4987
5030
  type_id: "principal_origin";
4988
5031
  } | {
4989
- /** @constant */
5032
+ /** @enum {string} */
4990
5033
  type_id: "principal_standard";
4991
5034
  address: string;
4992
5035
  } | {
4993
- /** @constant */
5036
+ /** @enum {string} */
4994
5037
  type_id: "principal_contract";
4995
5038
  address: string;
4996
5039
  contract_name: string;
4997
5040
  };
4998
5041
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
4999
5042
  amount: string;
5000
- /** @constant */
5043
+ /** @enum {string} */
5001
5044
  type: "fungible";
5002
5045
  asset: {
5003
5046
  asset_name: string;
@@ -5006,20 +5049,20 @@ export interface operations {
5006
5049
  };
5007
5050
  } | {
5008
5051
  principal: {
5009
- /** @constant */
5052
+ /** @enum {string} */
5010
5053
  type_id: "principal_origin";
5011
5054
  } | {
5012
- /** @constant */
5055
+ /** @enum {string} */
5013
5056
  type_id: "principal_standard";
5014
5057
  address: string;
5015
5058
  } | {
5016
- /** @constant */
5059
+ /** @enum {string} */
5017
5060
  type_id: "principal_contract";
5018
5061
  address: string;
5019
5062
  contract_name: string;
5020
5063
  };
5021
- condition_code: "sent" | "not_sent";
5022
- /** @constant */
5064
+ condition_code: "sent" | "not_sent" | "maybe_sent";
5065
+ /** @enum {string} */
5023
5066
  type: "non_fungible";
5024
5067
  asset_value: {
5025
5068
  hex: string;
@@ -5040,7 +5083,7 @@ export interface operations {
5040
5083
  receipt_time: number;
5041
5084
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
5042
5085
  receipt_time_iso: string;
5043
- /** @constant */
5086
+ /** @enum {string} */
5044
5087
  tx_type: "poison_microblock";
5045
5088
  poison_microblock: {
5046
5089
  /** @description Hex encoded microblock header */
@@ -5061,42 +5104,42 @@ export interface operations {
5061
5104
  /** @description Denotes whether the originating account is the same as the paying account */
5062
5105
  sponsored: boolean;
5063
5106
  sponsor_address?: string;
5064
- post_condition_mode: "allow" | "deny";
5107
+ post_condition_mode: "allow" | "deny" | "originator";
5065
5108
  post_conditions: ({
5066
5109
  principal: {
5067
- /** @constant */
5110
+ /** @enum {string} */
5068
5111
  type_id: "principal_origin";
5069
5112
  } | {
5070
- /** @constant */
5113
+ /** @enum {string} */
5071
5114
  type_id: "principal_standard";
5072
5115
  address: string;
5073
5116
  } | {
5074
- /** @constant */
5117
+ /** @enum {string} */
5075
5118
  type_id: "principal_contract";
5076
5119
  address: string;
5077
5120
  contract_name: string;
5078
5121
  };
5079
5122
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
5080
5123
  amount: string;
5081
- /** @constant */
5124
+ /** @enum {string} */
5082
5125
  type: "stx";
5083
5126
  } | {
5084
5127
  principal: {
5085
- /** @constant */
5128
+ /** @enum {string} */
5086
5129
  type_id: "principal_origin";
5087
5130
  } | {
5088
- /** @constant */
5131
+ /** @enum {string} */
5089
5132
  type_id: "principal_standard";
5090
5133
  address: string;
5091
5134
  } | {
5092
- /** @constant */
5135
+ /** @enum {string} */
5093
5136
  type_id: "principal_contract";
5094
5137
  address: string;
5095
5138
  contract_name: string;
5096
5139
  };
5097
5140
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
5098
5141
  amount: string;
5099
- /** @constant */
5142
+ /** @enum {string} */
5100
5143
  type: "fungible";
5101
5144
  asset: {
5102
5145
  asset_name: string;
@@ -5105,20 +5148,20 @@ export interface operations {
5105
5148
  };
5106
5149
  } | {
5107
5150
  principal: {
5108
- /** @constant */
5151
+ /** @enum {string} */
5109
5152
  type_id: "principal_origin";
5110
5153
  } | {
5111
- /** @constant */
5154
+ /** @enum {string} */
5112
5155
  type_id: "principal_standard";
5113
5156
  address: string;
5114
5157
  } | {
5115
- /** @constant */
5158
+ /** @enum {string} */
5116
5159
  type_id: "principal_contract";
5117
5160
  address: string;
5118
5161
  contract_name: string;
5119
5162
  };
5120
- condition_code: "sent" | "not_sent";
5121
- /** @constant */
5163
+ condition_code: "sent" | "not_sent" | "maybe_sent";
5164
+ /** @enum {string} */
5122
5165
  type: "non_fungible";
5123
5166
  asset_value: {
5124
5167
  hex: string;
@@ -5139,7 +5182,7 @@ export interface operations {
5139
5182
  receipt_time: number;
5140
5183
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
5141
5184
  receipt_time_iso: string;
5142
- /** @constant */
5185
+ /** @enum {string} */
5143
5186
  tx_type: "coinbase";
5144
5187
  coinbase_payload: {
5145
5188
  /** @description Hex encoded 32-byte scratch space for block leader's use */
@@ -5160,42 +5203,42 @@ export interface operations {
5160
5203
  /** @description Denotes whether the originating account is the same as the paying account */
5161
5204
  sponsored: boolean;
5162
5205
  sponsor_address?: string;
5163
- post_condition_mode: "allow" | "deny";
5206
+ post_condition_mode: "allow" | "deny" | "originator";
5164
5207
  post_conditions: ({
5165
5208
  principal: {
5166
- /** @constant */
5209
+ /** @enum {string} */
5167
5210
  type_id: "principal_origin";
5168
5211
  } | {
5169
- /** @constant */
5212
+ /** @enum {string} */
5170
5213
  type_id: "principal_standard";
5171
5214
  address: string;
5172
5215
  } | {
5173
- /** @constant */
5216
+ /** @enum {string} */
5174
5217
  type_id: "principal_contract";
5175
5218
  address: string;
5176
5219
  contract_name: string;
5177
5220
  };
5178
5221
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
5179
5222
  amount: string;
5180
- /** @constant */
5223
+ /** @enum {string} */
5181
5224
  type: "stx";
5182
5225
  } | {
5183
5226
  principal: {
5184
- /** @constant */
5227
+ /** @enum {string} */
5185
5228
  type_id: "principal_origin";
5186
5229
  } | {
5187
- /** @constant */
5230
+ /** @enum {string} */
5188
5231
  type_id: "principal_standard";
5189
5232
  address: string;
5190
5233
  } | {
5191
- /** @constant */
5234
+ /** @enum {string} */
5192
5235
  type_id: "principal_contract";
5193
5236
  address: string;
5194
5237
  contract_name: string;
5195
5238
  };
5196
5239
  condition_code: "sent_equal_to" | "sent_greater_than" | "sent_greater_than_or_equal_to" | "sent_less_than" | "sent_less_than_or_equal_to";
5197
5240
  amount: string;
5198
- /** @constant */
5241
+ /** @enum {string} */
5199
5242
  type: "fungible";
5200
5243
  asset: {
5201
5244
  asset_name: string;
@@ -5204,20 +5247,20 @@ export interface operations {
5204
5247
  };
5205
5248
  } | {
5206
5249
  principal: {
5207
- /** @constant */
5250
+ /** @enum {string} */
5208
5251
  type_id: "principal_origin";
5209
5252
  } | {
5210
- /** @constant */
5253
+ /** @enum {string} */
5211
5254
  type_id: "principal_standard";
5212
5255
  address: string;
5213
5256
  } | {
5214
- /** @constant */
5257
+ /** @enum {string} */
5215
5258
  type_id: "principal_contract";
5216
5259
  address: string;
5217
5260
  contract_name: string;
5218
5261
  };
5219
- condition_code: "sent" | "not_sent";
5220
- /** @constant */
5262
+ condition_code: "sent" | "not_sent" | "maybe_sent";
5263
+ /** @enum {string} */
5221
5264
  type: "non_fungible";
5222
5265
  asset_value: {
5223
5266
  hex: string;
@@ -5238,7 +5281,7 @@ export interface operations {
5238
5281
  receipt_time: number;
5239
5282
  /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. */
5240
5283
  receipt_time_iso: string;
5241
- /** @constant */
5284
+ /** @enum {string} */
5242
5285
  tx_type: "tenure_change";
5243
5286
  tenure_change_payload: {
5244
5287
  /** @description Consensus hash of this tenure. Corresponds to the sortition in which the miner of this block was chosen. */
@@ -5258,7 +5301,7 @@ export interface operations {
5258
5301
  };
5259
5302
  });
5260
5303
  } | {
5261
- /** @constant */
5304
+ /** @enum {boolean} */
5262
5305
  found: false;
5263
5306
  result: {
5264
5307
  tx_id: string;
@@ -5349,7 +5392,7 @@ export interface operations {
5349
5392
  /** @description Denotes whether the originating account is the same as the paying account */
5350
5393
  sponsored: boolean;
5351
5394
  sponsor_address?: string;
5352
- post_condition_mode: "allow" | "deny";
5395
+ post_condition_mode: "allow" | "deny" | "originator";
5353
5396
  post_conditions: ({
5354
5397
  principal: {
5355
5398
  /** @enum {string} */
@@ -5405,7 +5448,7 @@ export interface operations {
5405
5448
  address: string;
5406
5449
  contract_name: string;
5407
5450
  };
5408
- condition_code: "sent" | "not_sent";
5451
+ condition_code: "sent" | "not_sent" | "maybe_sent";
5409
5452
  /** @enum {string} */
5410
5453
  type: "non_fungible";
5411
5454
  asset_value: {
@@ -5449,7 +5492,7 @@ export interface operations {
5449
5492
  /** @description Denotes whether the originating account is the same as the paying account */
5450
5493
  sponsored: boolean;
5451
5494
  sponsor_address?: string;
5452
- post_condition_mode: "allow" | "deny";
5495
+ post_condition_mode: "allow" | "deny" | "originator";
5453
5496
  post_conditions: ({
5454
5497
  principal: {
5455
5498
  /** @enum {string} */
@@ -5505,7 +5548,7 @@ export interface operations {
5505
5548
  address: string;
5506
5549
  contract_name: string;
5507
5550
  };
5508
- condition_code: "sent" | "not_sent";
5551
+ condition_code: "sent" | "not_sent" | "maybe_sent";
5509
5552
  /** @enum {string} */
5510
5553
  type: "non_fungible";
5511
5554
  asset_value: {
@@ -5549,7 +5592,7 @@ export interface operations {
5549
5592
  /** @description Denotes whether the originating account is the same as the paying account */
5550
5593
  sponsored: boolean;
5551
5594
  sponsor_address?: string;
5552
- post_condition_mode: "allow" | "deny";
5595
+ post_condition_mode: "allow" | "deny" | "originator";
5553
5596
  post_conditions: ({
5554
5597
  principal: {
5555
5598
  /** @enum {string} */
@@ -5605,7 +5648,7 @@ export interface operations {
5605
5648
  address: string;
5606
5649
  contract_name: string;
5607
5650
  };
5608
- condition_code: "sent" | "not_sent";
5651
+ condition_code: "sent" | "not_sent" | "maybe_sent";
5609
5652
  /** @enum {string} */
5610
5653
  type: "non_fungible";
5611
5654
  asset_value: {
@@ -5656,7 +5699,7 @@ export interface operations {
5656
5699
  /** @description Denotes whether the originating account is the same as the paying account */
5657
5700
  sponsored: boolean;
5658
5701
  sponsor_address?: string;
5659
- post_condition_mode: "allow" | "deny";
5702
+ post_condition_mode: "allow" | "deny" | "originator";
5660
5703
  post_conditions: ({
5661
5704
  principal: {
5662
5705
  /** @enum {string} */
@@ -5712,7 +5755,7 @@ export interface operations {
5712
5755
  address: string;
5713
5756
  contract_name: string;
5714
5757
  };
5715
- condition_code: "sent" | "not_sent";
5758
+ condition_code: "sent" | "not_sent" | "maybe_sent";
5716
5759
  /** @enum {string} */
5717
5760
  type: "non_fungible";
5718
5761
  asset_value: {
@@ -5755,7 +5798,7 @@ export interface operations {
5755
5798
  /** @description Denotes whether the originating account is the same as the paying account */
5756
5799
  sponsored: boolean;
5757
5800
  sponsor_address?: string;
5758
- post_condition_mode: "allow" | "deny";
5801
+ post_condition_mode: "allow" | "deny" | "originator";
5759
5802
  post_conditions: ({
5760
5803
  principal: {
5761
5804
  /** @enum {string} */
@@ -5811,7 +5854,7 @@ export interface operations {
5811
5854
  address: string;
5812
5855
  contract_name: string;
5813
5856
  };
5814
- condition_code: "sent" | "not_sent";
5857
+ condition_code: "sent" | "not_sent" | "maybe_sent";
5815
5858
  /** @enum {string} */
5816
5859
  type: "non_fungible";
5817
5860
  asset_value: {
@@ -5854,7 +5897,7 @@ export interface operations {
5854
5897
  /** @description Denotes whether the originating account is the same as the paying account */
5855
5898
  sponsored: boolean;
5856
5899
  sponsor_address?: string;
5857
- post_condition_mode: "allow" | "deny";
5900
+ post_condition_mode: "allow" | "deny" | "originator";
5858
5901
  post_conditions: ({
5859
5902
  principal: {
5860
5903
  /** @enum {string} */
@@ -5910,7 +5953,7 @@ export interface operations {
5910
5953
  address: string;
5911
5954
  contract_name: string;
5912
5955
  };
5913
- condition_code: "sent" | "not_sent";
5956
+ condition_code: "sent" | "not_sent" | "maybe_sent";
5914
5957
  /** @enum {string} */
5915
5958
  type: "non_fungible";
5916
5959
  asset_value: {
@@ -6207,7 +6250,7 @@ export interface operations {
6207
6250
  /** @description Denotes whether the originating account is the same as the paying account */
6208
6251
  sponsored: boolean;
6209
6252
  sponsor_address?: string;
6210
- post_condition_mode: "allow" | "deny";
6253
+ post_condition_mode: "allow" | "deny" | "originator";
6211
6254
  post_conditions: ({
6212
6255
  principal: {
6213
6256
  /** @enum {string} */
@@ -6263,7 +6306,7 @@ export interface operations {
6263
6306
  address: string;
6264
6307
  contract_name: string;
6265
6308
  };
6266
- condition_code: "sent" | "not_sent";
6309
+ condition_code: "sent" | "not_sent" | "maybe_sent";
6267
6310
  /** @enum {string} */
6268
6311
  type: "non_fungible";
6269
6312
  asset_value: {
@@ -6422,7 +6465,7 @@ export interface operations {
6422
6465
  /** @description Denotes whether the originating account is the same as the paying account */
6423
6466
  sponsored: boolean;
6424
6467
  sponsor_address?: string;
6425
- post_condition_mode: "allow" | "deny";
6468
+ post_condition_mode: "allow" | "deny" | "originator";
6426
6469
  post_conditions: ({
6427
6470
  principal: {
6428
6471
  /** @enum {string} */
@@ -6478,7 +6521,7 @@ export interface operations {
6478
6521
  address: string;
6479
6522
  contract_name: string;
6480
6523
  };
6481
- condition_code: "sent" | "not_sent";
6524
+ condition_code: "sent" | "not_sent" | "maybe_sent";
6482
6525
  /** @enum {string} */
6483
6526
  type: "non_fungible";
6484
6527
  asset_value: {
@@ -6637,7 +6680,7 @@ export interface operations {
6637
6680
  /** @description Denotes whether the originating account is the same as the paying account */
6638
6681
  sponsored: boolean;
6639
6682
  sponsor_address?: string;
6640
- post_condition_mode: "allow" | "deny";
6683
+ post_condition_mode: "allow" | "deny" | "originator";
6641
6684
  post_conditions: ({
6642
6685
  principal: {
6643
6686
  /** @enum {string} */
@@ -6693,7 +6736,7 @@ export interface operations {
6693
6736
  address: string;
6694
6737
  contract_name: string;
6695
6738
  };
6696
- condition_code: "sent" | "not_sent";
6739
+ condition_code: "sent" | "not_sent" | "maybe_sent";
6697
6740
  /** @enum {string} */
6698
6741
  type: "non_fungible";
6699
6742
  asset_value: {
@@ -6859,7 +6902,7 @@ export interface operations {
6859
6902
  /** @description Denotes whether the originating account is the same as the paying account */
6860
6903
  sponsored: boolean;
6861
6904
  sponsor_address?: string;
6862
- post_condition_mode: "allow" | "deny";
6905
+ post_condition_mode: "allow" | "deny" | "originator";
6863
6906
  post_conditions: ({
6864
6907
  principal: {
6865
6908
  /** @enum {string} */
@@ -6915,7 +6958,7 @@ export interface operations {
6915
6958
  address: string;
6916
6959
  contract_name: string;
6917
6960
  };
6918
- condition_code: "sent" | "not_sent";
6961
+ condition_code: "sent" | "not_sent" | "maybe_sent";
6919
6962
  /** @enum {string} */
6920
6963
  type: "non_fungible";
6921
6964
  asset_value: {
@@ -7073,7 +7116,7 @@ export interface operations {
7073
7116
  /** @description Denotes whether the originating account is the same as the paying account */
7074
7117
  sponsored: boolean;
7075
7118
  sponsor_address?: string;
7076
- post_condition_mode: "allow" | "deny";
7119
+ post_condition_mode: "allow" | "deny" | "originator";
7077
7120
  post_conditions: ({
7078
7121
  principal: {
7079
7122
  /** @enum {string} */
@@ -7129,7 +7172,7 @@ export interface operations {
7129
7172
  address: string;
7130
7173
  contract_name: string;
7131
7174
  };
7132
- condition_code: "sent" | "not_sent";
7175
+ condition_code: "sent" | "not_sent" | "maybe_sent";
7133
7176
  /** @enum {string} */
7134
7177
  type: "non_fungible";
7135
7178
  asset_value: {
@@ -7287,7 +7330,7 @@ export interface operations {
7287
7330
  /** @description Denotes whether the originating account is the same as the paying account */
7288
7331
  sponsored: boolean;
7289
7332
  sponsor_address?: string;
7290
- post_condition_mode: "allow" | "deny";
7333
+ post_condition_mode: "allow" | "deny" | "originator";
7291
7334
  post_conditions: ({
7292
7335
  principal: {
7293
7336
  /** @enum {string} */
@@ -7343,7 +7386,7 @@ export interface operations {
7343
7386
  address: string;
7344
7387
  contract_name: string;
7345
7388
  };
7346
- condition_code: "sent" | "not_sent";
7389
+ condition_code: "sent" | "not_sent" | "maybe_sent";
7347
7390
  /** @enum {string} */
7348
7391
  type: "non_fungible";
7349
7392
  asset_value: {
@@ -7511,7 +7554,7 @@ export interface operations {
7511
7554
  /** @description Denotes whether the originating account is the same as the paying account */
7512
7555
  sponsored: boolean;
7513
7556
  sponsor_address?: string;
7514
- post_condition_mode: "allow" | "deny";
7557
+ post_condition_mode: "allow" | "deny" | "originator";
7515
7558
  post_conditions: ({
7516
7559
  principal: {
7517
7560
  /** @enum {string} */
@@ -7567,7 +7610,7 @@ export interface operations {
7567
7610
  address: string;
7568
7611
  contract_name: string;
7569
7612
  };
7570
- condition_code: "sent" | "not_sent";
7613
+ condition_code: "sent" | "not_sent" | "maybe_sent";
7571
7614
  /** @enum {string} */
7572
7615
  type: "non_fungible";
7573
7616
  asset_value: {
@@ -7611,7 +7654,7 @@ export interface operations {
7611
7654
  /** @description Denotes whether the originating account is the same as the paying account */
7612
7655
  sponsored: boolean;
7613
7656
  sponsor_address?: string;
7614
- post_condition_mode: "allow" | "deny";
7657
+ post_condition_mode: "allow" | "deny" | "originator";
7615
7658
  post_conditions: ({
7616
7659
  principal: {
7617
7660
  /** @enum {string} */
@@ -7667,7 +7710,7 @@ export interface operations {
7667
7710
  address: string;
7668
7711
  contract_name: string;
7669
7712
  };
7670
- condition_code: "sent" | "not_sent";
7713
+ condition_code: "sent" | "not_sent" | "maybe_sent";
7671
7714
  /** @enum {string} */
7672
7715
  type: "non_fungible";
7673
7716
  asset_value: {
@@ -7711,7 +7754,7 @@ export interface operations {
7711
7754
  /** @description Denotes whether the originating account is the same as the paying account */
7712
7755
  sponsored: boolean;
7713
7756
  sponsor_address?: string;
7714
- post_condition_mode: "allow" | "deny";
7757
+ post_condition_mode: "allow" | "deny" | "originator";
7715
7758
  post_conditions: ({
7716
7759
  principal: {
7717
7760
  /** @enum {string} */
@@ -7767,7 +7810,7 @@ export interface operations {
7767
7810
  address: string;
7768
7811
  contract_name: string;
7769
7812
  };
7770
- condition_code: "sent" | "not_sent";
7813
+ condition_code: "sent" | "not_sent" | "maybe_sent";
7771
7814
  /** @enum {string} */
7772
7815
  type: "non_fungible";
7773
7816
  asset_value: {
@@ -7818,7 +7861,7 @@ export interface operations {
7818
7861
  /** @description Denotes whether the originating account is the same as the paying account */
7819
7862
  sponsored: boolean;
7820
7863
  sponsor_address?: string;
7821
- post_condition_mode: "allow" | "deny";
7864
+ post_condition_mode: "allow" | "deny" | "originator";
7822
7865
  post_conditions: ({
7823
7866
  principal: {
7824
7867
  /** @enum {string} */
@@ -7874,7 +7917,7 @@ export interface operations {
7874
7917
  address: string;
7875
7918
  contract_name: string;
7876
7919
  };
7877
- condition_code: "sent" | "not_sent";
7920
+ condition_code: "sent" | "not_sent" | "maybe_sent";
7878
7921
  /** @enum {string} */
7879
7922
  type: "non_fungible";
7880
7923
  asset_value: {
@@ -7917,7 +7960,7 @@ export interface operations {
7917
7960
  /** @description Denotes whether the originating account is the same as the paying account */
7918
7961
  sponsored: boolean;
7919
7962
  sponsor_address?: string;
7920
- post_condition_mode: "allow" | "deny";
7963
+ post_condition_mode: "allow" | "deny" | "originator";
7921
7964
  post_conditions: ({
7922
7965
  principal: {
7923
7966
  /** @enum {string} */
@@ -7973,7 +8016,7 @@ export interface operations {
7973
8016
  address: string;
7974
8017
  contract_name: string;
7975
8018
  };
7976
- condition_code: "sent" | "not_sent";
8019
+ condition_code: "sent" | "not_sent" | "maybe_sent";
7977
8020
  /** @enum {string} */
7978
8021
  type: "non_fungible";
7979
8022
  asset_value: {
@@ -8016,7 +8059,7 @@ export interface operations {
8016
8059
  /** @description Denotes whether the originating account is the same as the paying account */
8017
8060
  sponsored: boolean;
8018
8061
  sponsor_address?: string;
8019
- post_condition_mode: "allow" | "deny";
8062
+ post_condition_mode: "allow" | "deny" | "originator";
8020
8063
  post_conditions: ({
8021
8064
  principal: {
8022
8065
  /** @enum {string} */
@@ -8072,7 +8115,7 @@ export interface operations {
8072
8115
  address: string;
8073
8116
  contract_name: string;
8074
8117
  };
8075
- condition_code: "sent" | "not_sent";
8118
+ condition_code: "sent" | "not_sent" | "maybe_sent";
8076
8119
  /** @enum {string} */
8077
8120
  type: "non_fungible";
8078
8121
  asset_value: {
@@ -8222,7 +8265,7 @@ export interface operations {
8222
8265
  /** @description Denotes whether the originating account is the same as the paying account */
8223
8266
  sponsored: boolean;
8224
8267
  sponsor_address?: string;
8225
- post_condition_mode: "allow" | "deny";
8268
+ post_condition_mode: "allow" | "deny" | "originator";
8226
8269
  post_conditions: ({
8227
8270
  principal: {
8228
8271
  /** @enum {string} */
@@ -8278,7 +8321,7 @@ export interface operations {
8278
8321
  address: string;
8279
8322
  contract_name: string;
8280
8323
  };
8281
- condition_code: "sent" | "not_sent";
8324
+ condition_code: "sent" | "not_sent" | "maybe_sent";
8282
8325
  /** @enum {string} */
8283
8326
  type: "non_fungible";
8284
8327
  asset_value: {
@@ -8437,7 +8480,7 @@ export interface operations {
8437
8480
  /** @description Denotes whether the originating account is the same as the paying account */
8438
8481
  sponsored: boolean;
8439
8482
  sponsor_address?: string;
8440
- post_condition_mode: "allow" | "deny";
8483
+ post_condition_mode: "allow" | "deny" | "originator";
8441
8484
  post_conditions: ({
8442
8485
  principal: {
8443
8486
  /** @enum {string} */
@@ -8493,7 +8536,7 @@ export interface operations {
8493
8536
  address: string;
8494
8537
  contract_name: string;
8495
8538
  };
8496
- condition_code: "sent" | "not_sent";
8539
+ condition_code: "sent" | "not_sent" | "maybe_sent";
8497
8540
  /** @enum {string} */
8498
8541
  type: "non_fungible";
8499
8542
  asset_value: {
@@ -8652,7 +8695,7 @@ export interface operations {
8652
8695
  /** @description Denotes whether the originating account is the same as the paying account */
8653
8696
  sponsored: boolean;
8654
8697
  sponsor_address?: string;
8655
- post_condition_mode: "allow" | "deny";
8698
+ post_condition_mode: "allow" | "deny" | "originator";
8656
8699
  post_conditions: ({
8657
8700
  principal: {
8658
8701
  /** @enum {string} */
@@ -8708,7 +8751,7 @@ export interface operations {
8708
8751
  address: string;
8709
8752
  contract_name: string;
8710
8753
  };
8711
- condition_code: "sent" | "not_sent";
8754
+ condition_code: "sent" | "not_sent" | "maybe_sent";
8712
8755
  /** @enum {string} */
8713
8756
  type: "non_fungible";
8714
8757
  asset_value: {
@@ -8874,7 +8917,7 @@ export interface operations {
8874
8917
  /** @description Denotes whether the originating account is the same as the paying account */
8875
8918
  sponsored: boolean;
8876
8919
  sponsor_address?: string;
8877
- post_condition_mode: "allow" | "deny";
8920
+ post_condition_mode: "allow" | "deny" | "originator";
8878
8921
  post_conditions: ({
8879
8922
  principal: {
8880
8923
  /** @enum {string} */
@@ -8930,7 +8973,7 @@ export interface operations {
8930
8973
  address: string;
8931
8974
  contract_name: string;
8932
8975
  };
8933
- condition_code: "sent" | "not_sent";
8976
+ condition_code: "sent" | "not_sent" | "maybe_sent";
8934
8977
  /** @enum {string} */
8935
8978
  type: "non_fungible";
8936
8979
  asset_value: {
@@ -9088,7 +9131,7 @@ export interface operations {
9088
9131
  /** @description Denotes whether the originating account is the same as the paying account */
9089
9132
  sponsored: boolean;
9090
9133
  sponsor_address?: string;
9091
- post_condition_mode: "allow" | "deny";
9134
+ post_condition_mode: "allow" | "deny" | "originator";
9092
9135
  post_conditions: ({
9093
9136
  principal: {
9094
9137
  /** @enum {string} */
@@ -9144,7 +9187,7 @@ export interface operations {
9144
9187
  address: string;
9145
9188
  contract_name: string;
9146
9189
  };
9147
- condition_code: "sent" | "not_sent";
9190
+ condition_code: "sent" | "not_sent" | "maybe_sent";
9148
9191
  /** @enum {string} */
9149
9192
  type: "non_fungible";
9150
9193
  asset_value: {
@@ -9302,7 +9345,7 @@ export interface operations {
9302
9345
  /** @description Denotes whether the originating account is the same as the paying account */
9303
9346
  sponsored: boolean;
9304
9347
  sponsor_address?: string;
9305
- post_condition_mode: "allow" | "deny";
9348
+ post_condition_mode: "allow" | "deny" | "originator";
9306
9349
  post_conditions: ({
9307
9350
  principal: {
9308
9351
  /** @enum {string} */
@@ -9358,7 +9401,7 @@ export interface operations {
9358
9401
  address: string;
9359
9402
  contract_name: string;
9360
9403
  };
9361
- condition_code: "sent" | "not_sent";
9404
+ condition_code: "sent" | "not_sent" | "maybe_sent";
9362
9405
  /** @enum {string} */
9363
9406
  type: "non_fungible";
9364
9407
  asset_value: {
@@ -9581,7 +9624,7 @@ export interface operations {
9581
9624
  /** @description Denotes whether the originating account is the same as the paying account */
9582
9625
  sponsored: boolean;
9583
9626
  sponsor_address?: string;
9584
- post_condition_mode: "allow" | "deny";
9627
+ post_condition_mode: "allow" | "deny" | "originator";
9585
9628
  post_conditions: ({
9586
9629
  principal: {
9587
9630
  /** @enum {string} */
@@ -9637,7 +9680,7 @@ export interface operations {
9637
9680
  address: string;
9638
9681
  contract_name: string;
9639
9682
  };
9640
- condition_code: "sent" | "not_sent";
9683
+ condition_code: "sent" | "not_sent" | "maybe_sent";
9641
9684
  /** @enum {string} */
9642
9685
  type: "non_fungible";
9643
9686
  asset_value: {
@@ -9796,7 +9839,7 @@ export interface operations {
9796
9839
  /** @description Denotes whether the originating account is the same as the paying account */
9797
9840
  sponsored: boolean;
9798
9841
  sponsor_address?: string;
9799
- post_condition_mode: "allow" | "deny";
9842
+ post_condition_mode: "allow" | "deny" | "originator";
9800
9843
  post_conditions: ({
9801
9844
  principal: {
9802
9845
  /** @enum {string} */
@@ -9852,7 +9895,7 @@ export interface operations {
9852
9895
  address: string;
9853
9896
  contract_name: string;
9854
9897
  };
9855
- condition_code: "sent" | "not_sent";
9898
+ condition_code: "sent" | "not_sent" | "maybe_sent";
9856
9899
  /** @enum {string} */
9857
9900
  type: "non_fungible";
9858
9901
  asset_value: {
@@ -10011,7 +10054,7 @@ export interface operations {
10011
10054
  /** @description Denotes whether the originating account is the same as the paying account */
10012
10055
  sponsored: boolean;
10013
10056
  sponsor_address?: string;
10014
- post_condition_mode: "allow" | "deny";
10057
+ post_condition_mode: "allow" | "deny" | "originator";
10015
10058
  post_conditions: ({
10016
10059
  principal: {
10017
10060
  /** @enum {string} */
@@ -10067,7 +10110,7 @@ export interface operations {
10067
10110
  address: string;
10068
10111
  contract_name: string;
10069
10112
  };
10070
- condition_code: "sent" | "not_sent";
10113
+ condition_code: "sent" | "not_sent" | "maybe_sent";
10071
10114
  /** @enum {string} */
10072
10115
  type: "non_fungible";
10073
10116
  asset_value: {
@@ -10233,7 +10276,7 @@ export interface operations {
10233
10276
  /** @description Denotes whether the originating account is the same as the paying account */
10234
10277
  sponsored: boolean;
10235
10278
  sponsor_address?: string;
10236
- post_condition_mode: "allow" | "deny";
10279
+ post_condition_mode: "allow" | "deny" | "originator";
10237
10280
  post_conditions: ({
10238
10281
  principal: {
10239
10282
  /** @enum {string} */
@@ -10289,7 +10332,7 @@ export interface operations {
10289
10332
  address: string;
10290
10333
  contract_name: string;
10291
10334
  };
10292
- condition_code: "sent" | "not_sent";
10335
+ condition_code: "sent" | "not_sent" | "maybe_sent";
10293
10336
  /** @enum {string} */
10294
10337
  type: "non_fungible";
10295
10338
  asset_value: {
@@ -10447,7 +10490,7 @@ export interface operations {
10447
10490
  /** @description Denotes whether the originating account is the same as the paying account */
10448
10491
  sponsored: boolean;
10449
10492
  sponsor_address?: string;
10450
- post_condition_mode: "allow" | "deny";
10493
+ post_condition_mode: "allow" | "deny" | "originator";
10451
10494
  post_conditions: ({
10452
10495
  principal: {
10453
10496
  /** @enum {string} */
@@ -10503,7 +10546,7 @@ export interface operations {
10503
10546
  address: string;
10504
10547
  contract_name: string;
10505
10548
  };
10506
- condition_code: "sent" | "not_sent";
10549
+ condition_code: "sent" | "not_sent" | "maybe_sent";
10507
10550
  /** @enum {string} */
10508
10551
  type: "non_fungible";
10509
10552
  asset_value: {
@@ -10661,7 +10704,7 @@ export interface operations {
10661
10704
  /** @description Denotes whether the originating account is the same as the paying account */
10662
10705
  sponsored: boolean;
10663
10706
  sponsor_address?: string;
10664
- post_condition_mode: "allow" | "deny";
10707
+ post_condition_mode: "allow" | "deny" | "originator";
10665
10708
  post_conditions: ({
10666
10709
  principal: {
10667
10710
  /** @enum {string} */
@@ -10717,7 +10760,7 @@ export interface operations {
10717
10760
  address: string;
10718
10761
  contract_name: string;
10719
10762
  };
10720
- condition_code: "sent" | "not_sent";
10763
+ condition_code: "sent" | "not_sent" | "maybe_sent";
10721
10764
  /** @enum {string} */
10722
10765
  type: "non_fungible";
10723
10766
  asset_value: {
@@ -10963,9 +11006,7 @@ export interface operations {
10963
11006
  [name: string]: unknown;
10964
11007
  };
10965
11008
  content: {
10966
- "application/json": {
10967
- content?: unknown;
10968
- };
11009
+ "text/plain": string;
10969
11010
  };
10970
11011
  };
10971
11012
  /** @description Default Response */
@@ -10999,9 +11040,7 @@ export interface operations {
10999
11040
  [name: string]: unknown;
11000
11041
  };
11001
11042
  content: {
11002
- "application/json": {
11003
- content?: unknown;
11004
- };
11043
+ "text/plain": string;
11005
11044
  };
11006
11045
  };
11007
11046
  /** @description Default Response */
@@ -11226,7 +11265,7 @@ export interface operations {
11226
11265
  /** @description Denotes whether the originating account is the same as the paying account */
11227
11266
  sponsored: boolean;
11228
11267
  sponsor_address?: string;
11229
- post_condition_mode: "allow" | "deny";
11268
+ post_condition_mode: "allow" | "deny" | "originator";
11230
11269
  post_conditions: ({
11231
11270
  principal: {
11232
11271
  /** @enum {string} */
@@ -11282,7 +11321,7 @@ export interface operations {
11282
11321
  address: string;
11283
11322
  contract_name: string;
11284
11323
  };
11285
- condition_code: "sent" | "not_sent";
11324
+ condition_code: "sent" | "not_sent" | "maybe_sent";
11286
11325
  /** @enum {string} */
11287
11326
  type: "non_fungible";
11288
11327
  asset_value: {
@@ -11441,7 +11480,7 @@ export interface operations {
11441
11480
  /** @description Denotes whether the originating account is the same as the paying account */
11442
11481
  sponsored: boolean;
11443
11482
  sponsor_address?: string;
11444
- post_condition_mode: "allow" | "deny";
11483
+ post_condition_mode: "allow" | "deny" | "originator";
11445
11484
  post_conditions: ({
11446
11485
  principal: {
11447
11486
  /** @enum {string} */
@@ -11497,7 +11536,7 @@ export interface operations {
11497
11536
  address: string;
11498
11537
  contract_name: string;
11499
11538
  };
11500
- condition_code: "sent" | "not_sent";
11539
+ condition_code: "sent" | "not_sent" | "maybe_sent";
11501
11540
  /** @enum {string} */
11502
11541
  type: "non_fungible";
11503
11542
  asset_value: {
@@ -11656,7 +11695,7 @@ export interface operations {
11656
11695
  /** @description Denotes whether the originating account is the same as the paying account */
11657
11696
  sponsored: boolean;
11658
11697
  sponsor_address?: string;
11659
- post_condition_mode: "allow" | "deny";
11698
+ post_condition_mode: "allow" | "deny" | "originator";
11660
11699
  post_conditions: ({
11661
11700
  principal: {
11662
11701
  /** @enum {string} */
@@ -11712,7 +11751,7 @@ export interface operations {
11712
11751
  address: string;
11713
11752
  contract_name: string;
11714
11753
  };
11715
- condition_code: "sent" | "not_sent";
11754
+ condition_code: "sent" | "not_sent" | "maybe_sent";
11716
11755
  /** @enum {string} */
11717
11756
  type: "non_fungible";
11718
11757
  asset_value: {
@@ -11878,7 +11917,7 @@ export interface operations {
11878
11917
  /** @description Denotes whether the originating account is the same as the paying account */
11879
11918
  sponsored: boolean;
11880
11919
  sponsor_address?: string;
11881
- post_condition_mode: "allow" | "deny";
11920
+ post_condition_mode: "allow" | "deny" | "originator";
11882
11921
  post_conditions: ({
11883
11922
  principal: {
11884
11923
  /** @enum {string} */
@@ -11934,7 +11973,7 @@ export interface operations {
11934
11973
  address: string;
11935
11974
  contract_name: string;
11936
11975
  };
11937
- condition_code: "sent" | "not_sent";
11976
+ condition_code: "sent" | "not_sent" | "maybe_sent";
11938
11977
  /** @enum {string} */
11939
11978
  type: "non_fungible";
11940
11979
  asset_value: {
@@ -12092,7 +12131,7 @@ export interface operations {
12092
12131
  /** @description Denotes whether the originating account is the same as the paying account */
12093
12132
  sponsored: boolean;
12094
12133
  sponsor_address?: string;
12095
- post_condition_mode: "allow" | "deny";
12134
+ post_condition_mode: "allow" | "deny" | "originator";
12096
12135
  post_conditions: ({
12097
12136
  principal: {
12098
12137
  /** @enum {string} */
@@ -12148,7 +12187,7 @@ export interface operations {
12148
12187
  address: string;
12149
12188
  contract_name: string;
12150
12189
  };
12151
- condition_code: "sent" | "not_sent";
12190
+ condition_code: "sent" | "not_sent" | "maybe_sent";
12152
12191
  /** @enum {string} */
12153
12192
  type: "non_fungible";
12154
12193
  asset_value: {
@@ -12306,7 +12345,7 @@ export interface operations {
12306
12345
  /** @description Denotes whether the originating account is the same as the paying account */
12307
12346
  sponsored: boolean;
12308
12347
  sponsor_address?: string;
12309
- post_condition_mode: "allow" | "deny";
12348
+ post_condition_mode: "allow" | "deny" | "originator";
12310
12349
  post_conditions: ({
12311
12350
  principal: {
12312
12351
  /** @enum {string} */
@@ -12362,7 +12401,7 @@ export interface operations {
12362
12401
  address: string;
12363
12402
  contract_name: string;
12364
12403
  };
12365
- condition_code: "sent" | "not_sent";
12404
+ condition_code: "sent" | "not_sent" | "maybe_sent";
12366
12405
  /** @enum {string} */
12367
12406
  type: "non_fungible";
12368
12407
  asset_value: {
@@ -12606,7 +12645,7 @@ export interface operations {
12606
12645
  /** @description Denotes whether the originating account is the same as the paying account */
12607
12646
  sponsored: boolean;
12608
12647
  sponsor_address?: string;
12609
- post_condition_mode: "allow" | "deny";
12648
+ post_condition_mode: "allow" | "deny" | "originator";
12610
12649
  post_conditions: ({
12611
12650
  principal: {
12612
12651
  /** @enum {string} */
@@ -12662,7 +12701,7 @@ export interface operations {
12662
12701
  address: string;
12663
12702
  contract_name: string;
12664
12703
  };
12665
- condition_code: "sent" | "not_sent";
12704
+ condition_code: "sent" | "not_sent" | "maybe_sent";
12666
12705
  /** @enum {string} */
12667
12706
  type: "non_fungible";
12668
12707
  asset_value: {
@@ -12821,7 +12860,7 @@ export interface operations {
12821
12860
  /** @description Denotes whether the originating account is the same as the paying account */
12822
12861
  sponsored: boolean;
12823
12862
  sponsor_address?: string;
12824
- post_condition_mode: "allow" | "deny";
12863
+ post_condition_mode: "allow" | "deny" | "originator";
12825
12864
  post_conditions: ({
12826
12865
  principal: {
12827
12866
  /** @enum {string} */
@@ -12877,7 +12916,7 @@ export interface operations {
12877
12916
  address: string;
12878
12917
  contract_name: string;
12879
12918
  };
12880
- condition_code: "sent" | "not_sent";
12919
+ condition_code: "sent" | "not_sent" | "maybe_sent";
12881
12920
  /** @enum {string} */
12882
12921
  type: "non_fungible";
12883
12922
  asset_value: {
@@ -13036,7 +13075,7 @@ export interface operations {
13036
13075
  /** @description Denotes whether the originating account is the same as the paying account */
13037
13076
  sponsored: boolean;
13038
13077
  sponsor_address?: string;
13039
- post_condition_mode: "allow" | "deny";
13078
+ post_condition_mode: "allow" | "deny" | "originator";
13040
13079
  post_conditions: ({
13041
13080
  principal: {
13042
13081
  /** @enum {string} */
@@ -13092,7 +13131,7 @@ export interface operations {
13092
13131
  address: string;
13093
13132
  contract_name: string;
13094
13133
  };
13095
- condition_code: "sent" | "not_sent";
13134
+ condition_code: "sent" | "not_sent" | "maybe_sent";
13096
13135
  /** @enum {string} */
13097
13136
  type: "non_fungible";
13098
13137
  asset_value: {
@@ -13258,7 +13297,7 @@ export interface operations {
13258
13297
  /** @description Denotes whether the originating account is the same as the paying account */
13259
13298
  sponsored: boolean;
13260
13299
  sponsor_address?: string;
13261
- post_condition_mode: "allow" | "deny";
13300
+ post_condition_mode: "allow" | "deny" | "originator";
13262
13301
  post_conditions: ({
13263
13302
  principal: {
13264
13303
  /** @enum {string} */
@@ -13314,7 +13353,7 @@ export interface operations {
13314
13353
  address: string;
13315
13354
  contract_name: string;
13316
13355
  };
13317
- condition_code: "sent" | "not_sent";
13356
+ condition_code: "sent" | "not_sent" | "maybe_sent";
13318
13357
  /** @enum {string} */
13319
13358
  type: "non_fungible";
13320
13359
  asset_value: {
@@ -13472,7 +13511,7 @@ export interface operations {
13472
13511
  /** @description Denotes whether the originating account is the same as the paying account */
13473
13512
  sponsored: boolean;
13474
13513
  sponsor_address?: string;
13475
- post_condition_mode: "allow" | "deny";
13514
+ post_condition_mode: "allow" | "deny" | "originator";
13476
13515
  post_conditions: ({
13477
13516
  principal: {
13478
13517
  /** @enum {string} */
@@ -13528,7 +13567,7 @@ export interface operations {
13528
13567
  address: string;
13529
13568
  contract_name: string;
13530
13569
  };
13531
- condition_code: "sent" | "not_sent";
13570
+ condition_code: "sent" | "not_sent" | "maybe_sent";
13532
13571
  /** @enum {string} */
13533
13572
  type: "non_fungible";
13534
13573
  asset_value: {
@@ -13686,7 +13725,7 @@ export interface operations {
13686
13725
  /** @description Denotes whether the originating account is the same as the paying account */
13687
13726
  sponsored: boolean;
13688
13727
  sponsor_address?: string;
13689
- post_condition_mode: "allow" | "deny";
13728
+ post_condition_mode: "allow" | "deny" | "originator";
13690
13729
  post_conditions: ({
13691
13730
  principal: {
13692
13731
  /** @enum {string} */
@@ -13742,7 +13781,7 @@ export interface operations {
13742
13781
  address: string;
13743
13782
  contract_name: string;
13744
13783
  };
13745
- condition_code: "sent" | "not_sent";
13784
+ condition_code: "sent" | "not_sent" | "maybe_sent";
13746
13785
  /** @enum {string} */
13747
13786
  type: "non_fungible";
13748
13787
  asset_value: {
@@ -13991,7 +14030,7 @@ export interface operations {
13991
14030
  /** @description Denotes whether the originating account is the same as the paying account */
13992
14031
  sponsored: boolean;
13993
14032
  sponsor_address?: string;
13994
- post_condition_mode: "allow" | "deny";
14033
+ post_condition_mode: "allow" | "deny" | "originator";
13995
14034
  post_conditions: ({
13996
14035
  principal: {
13997
14036
  /** @enum {string} */
@@ -14047,7 +14086,7 @@ export interface operations {
14047
14086
  address: string;
14048
14087
  contract_name: string;
14049
14088
  };
14050
- condition_code: "sent" | "not_sent";
14089
+ condition_code: "sent" | "not_sent" | "maybe_sent";
14051
14090
  /** @enum {string} */
14052
14091
  type: "non_fungible";
14053
14092
  asset_value: {
@@ -14206,7 +14245,7 @@ export interface operations {
14206
14245
  /** @description Denotes whether the originating account is the same as the paying account */
14207
14246
  sponsored: boolean;
14208
14247
  sponsor_address?: string;
14209
- post_condition_mode: "allow" | "deny";
14248
+ post_condition_mode: "allow" | "deny" | "originator";
14210
14249
  post_conditions: ({
14211
14250
  principal: {
14212
14251
  /** @enum {string} */
@@ -14262,7 +14301,7 @@ export interface operations {
14262
14301
  address: string;
14263
14302
  contract_name: string;
14264
14303
  };
14265
- condition_code: "sent" | "not_sent";
14304
+ condition_code: "sent" | "not_sent" | "maybe_sent";
14266
14305
  /** @enum {string} */
14267
14306
  type: "non_fungible";
14268
14307
  asset_value: {
@@ -14421,7 +14460,7 @@ export interface operations {
14421
14460
  /** @description Denotes whether the originating account is the same as the paying account */
14422
14461
  sponsored: boolean;
14423
14462
  sponsor_address?: string;
14424
- post_condition_mode: "allow" | "deny";
14463
+ post_condition_mode: "allow" | "deny" | "originator";
14425
14464
  post_conditions: ({
14426
14465
  principal: {
14427
14466
  /** @enum {string} */
@@ -14477,7 +14516,7 @@ export interface operations {
14477
14516
  address: string;
14478
14517
  contract_name: string;
14479
14518
  };
14480
- condition_code: "sent" | "not_sent";
14519
+ condition_code: "sent" | "not_sent" | "maybe_sent";
14481
14520
  /** @enum {string} */
14482
14521
  type: "non_fungible";
14483
14522
  asset_value: {
@@ -14643,7 +14682,7 @@ export interface operations {
14643
14682
  /** @description Denotes whether the originating account is the same as the paying account */
14644
14683
  sponsored: boolean;
14645
14684
  sponsor_address?: string;
14646
- post_condition_mode: "allow" | "deny";
14685
+ post_condition_mode: "allow" | "deny" | "originator";
14647
14686
  post_conditions: ({
14648
14687
  principal: {
14649
14688
  /** @enum {string} */
@@ -14699,7 +14738,7 @@ export interface operations {
14699
14738
  address: string;
14700
14739
  contract_name: string;
14701
14740
  };
14702
- condition_code: "sent" | "not_sent";
14741
+ condition_code: "sent" | "not_sent" | "maybe_sent";
14703
14742
  /** @enum {string} */
14704
14743
  type: "non_fungible";
14705
14744
  asset_value: {
@@ -14857,7 +14896,7 @@ export interface operations {
14857
14896
  /** @description Denotes whether the originating account is the same as the paying account */
14858
14897
  sponsored: boolean;
14859
14898
  sponsor_address?: string;
14860
- post_condition_mode: "allow" | "deny";
14899
+ post_condition_mode: "allow" | "deny" | "originator";
14861
14900
  post_conditions: ({
14862
14901
  principal: {
14863
14902
  /** @enum {string} */
@@ -14913,7 +14952,7 @@ export interface operations {
14913
14952
  address: string;
14914
14953
  contract_name: string;
14915
14954
  };
14916
- condition_code: "sent" | "not_sent";
14955
+ condition_code: "sent" | "not_sent" | "maybe_sent";
14917
14956
  /** @enum {string} */
14918
14957
  type: "non_fungible";
14919
14958
  asset_value: {
@@ -15071,7 +15110,7 @@ export interface operations {
15071
15110
  /** @description Denotes whether the originating account is the same as the paying account */
15072
15111
  sponsored: boolean;
15073
15112
  sponsor_address?: string;
15074
- post_condition_mode: "allow" | "deny";
15113
+ post_condition_mode: "allow" | "deny" | "originator";
15075
15114
  post_conditions: ({
15076
15115
  principal: {
15077
15116
  /** @enum {string} */
@@ -15127,7 +15166,7 @@ export interface operations {
15127
15166
  address: string;
15128
15167
  contract_name: string;
15129
15168
  };
15130
- condition_code: "sent" | "not_sent";
15169
+ condition_code: "sent" | "not_sent" | "maybe_sent";
15131
15170
  /** @enum {string} */
15132
15171
  type: "non_fungible";
15133
15172
  asset_value: {
@@ -15805,7 +15844,7 @@ export interface operations {
15805
15844
  /** @description Denotes whether the originating account is the same as the paying account */
15806
15845
  sponsored: boolean;
15807
15846
  sponsor_address?: string;
15808
- post_condition_mode: "allow" | "deny";
15847
+ post_condition_mode: "allow" | "deny" | "originator";
15809
15848
  post_conditions: ({
15810
15849
  principal: {
15811
15850
  /** @enum {string} */
@@ -15861,7 +15900,7 @@ export interface operations {
15861
15900
  address: string;
15862
15901
  contract_name: string;
15863
15902
  };
15864
- condition_code: "sent" | "not_sent";
15903
+ condition_code: "sent" | "not_sent" | "maybe_sent";
15865
15904
  /** @enum {string} */
15866
15905
  type: "non_fungible";
15867
15906
  asset_value: {
@@ -16020,7 +16059,7 @@ export interface operations {
16020
16059
  /** @description Denotes whether the originating account is the same as the paying account */
16021
16060
  sponsored: boolean;
16022
16061
  sponsor_address?: string;
16023
- post_condition_mode: "allow" | "deny";
16062
+ post_condition_mode: "allow" | "deny" | "originator";
16024
16063
  post_conditions: ({
16025
16064
  principal: {
16026
16065
  /** @enum {string} */
@@ -16076,7 +16115,7 @@ export interface operations {
16076
16115
  address: string;
16077
16116
  contract_name: string;
16078
16117
  };
16079
- condition_code: "sent" | "not_sent";
16118
+ condition_code: "sent" | "not_sent" | "maybe_sent";
16080
16119
  /** @enum {string} */
16081
16120
  type: "non_fungible";
16082
16121
  asset_value: {
@@ -16235,7 +16274,7 @@ export interface operations {
16235
16274
  /** @description Denotes whether the originating account is the same as the paying account */
16236
16275
  sponsored: boolean;
16237
16276
  sponsor_address?: string;
16238
- post_condition_mode: "allow" | "deny";
16277
+ post_condition_mode: "allow" | "deny" | "originator";
16239
16278
  post_conditions: ({
16240
16279
  principal: {
16241
16280
  /** @enum {string} */
@@ -16291,7 +16330,7 @@ export interface operations {
16291
16330
  address: string;
16292
16331
  contract_name: string;
16293
16332
  };
16294
- condition_code: "sent" | "not_sent";
16333
+ condition_code: "sent" | "not_sent" | "maybe_sent";
16295
16334
  /** @enum {string} */
16296
16335
  type: "non_fungible";
16297
16336
  asset_value: {
@@ -16457,7 +16496,7 @@ export interface operations {
16457
16496
  /** @description Denotes whether the originating account is the same as the paying account */
16458
16497
  sponsored: boolean;
16459
16498
  sponsor_address?: string;
16460
- post_condition_mode: "allow" | "deny";
16499
+ post_condition_mode: "allow" | "deny" | "originator";
16461
16500
  post_conditions: ({
16462
16501
  principal: {
16463
16502
  /** @enum {string} */
@@ -16513,7 +16552,7 @@ export interface operations {
16513
16552
  address: string;
16514
16553
  contract_name: string;
16515
16554
  };
16516
- condition_code: "sent" | "not_sent";
16555
+ condition_code: "sent" | "not_sent" | "maybe_sent";
16517
16556
  /** @enum {string} */
16518
16557
  type: "non_fungible";
16519
16558
  asset_value: {
@@ -16671,7 +16710,7 @@ export interface operations {
16671
16710
  /** @description Denotes whether the originating account is the same as the paying account */
16672
16711
  sponsored: boolean;
16673
16712
  sponsor_address?: string;
16674
- post_condition_mode: "allow" | "deny";
16713
+ post_condition_mode: "allow" | "deny" | "originator";
16675
16714
  post_conditions: ({
16676
16715
  principal: {
16677
16716
  /** @enum {string} */
@@ -16727,7 +16766,7 @@ export interface operations {
16727
16766
  address: string;
16728
16767
  contract_name: string;
16729
16768
  };
16730
- condition_code: "sent" | "not_sent";
16769
+ condition_code: "sent" | "not_sent" | "maybe_sent";
16731
16770
  /** @enum {string} */
16732
16771
  type: "non_fungible";
16733
16772
  asset_value: {
@@ -16885,7 +16924,7 @@ export interface operations {
16885
16924
  /** @description Denotes whether the originating account is the same as the paying account */
16886
16925
  sponsored: boolean;
16887
16926
  sponsor_address?: string;
16888
- post_condition_mode: "allow" | "deny";
16927
+ post_condition_mode: "allow" | "deny" | "originator";
16889
16928
  post_conditions: ({
16890
16929
  principal: {
16891
16930
  /** @enum {string} */
@@ -16941,7 +16980,7 @@ export interface operations {
16941
16980
  address: string;
16942
16981
  contract_name: string;
16943
16982
  };
16944
- condition_code: "sent" | "not_sent";
16983
+ condition_code: "sent" | "not_sent" | "maybe_sent";
16945
16984
  /** @enum {string} */
16946
16985
  type: "non_fungible";
16947
16986
  asset_value: {
@@ -18100,7 +18139,7 @@ export interface operations {
18100
18139
  /** @description Denotes whether the originating account is the same as the paying account */
18101
18140
  sponsored: boolean;
18102
18141
  sponsor_address?: string;
18103
- post_condition_mode: "allow" | "deny";
18142
+ post_condition_mode: "allow" | "deny" | "originator";
18104
18143
  post_conditions: ({
18105
18144
  principal: {
18106
18145
  /** @enum {string} */
@@ -18156,7 +18195,7 @@ export interface operations {
18156
18195
  address: string;
18157
18196
  contract_name: string;
18158
18197
  };
18159
- condition_code: "sent" | "not_sent";
18198
+ condition_code: "sent" | "not_sent" | "maybe_sent";
18160
18199
  /** @enum {string} */
18161
18200
  type: "non_fungible";
18162
18201
  asset_value: {
@@ -18315,7 +18354,7 @@ export interface operations {
18315
18354
  /** @description Denotes whether the originating account is the same as the paying account */
18316
18355
  sponsored: boolean;
18317
18356
  sponsor_address?: string;
18318
- post_condition_mode: "allow" | "deny";
18357
+ post_condition_mode: "allow" | "deny" | "originator";
18319
18358
  post_conditions: ({
18320
18359
  principal: {
18321
18360
  /** @enum {string} */
@@ -18371,7 +18410,7 @@ export interface operations {
18371
18410
  address: string;
18372
18411
  contract_name: string;
18373
18412
  };
18374
- condition_code: "sent" | "not_sent";
18413
+ condition_code: "sent" | "not_sent" | "maybe_sent";
18375
18414
  /** @enum {string} */
18376
18415
  type: "non_fungible";
18377
18416
  asset_value: {
@@ -18530,7 +18569,7 @@ export interface operations {
18530
18569
  /** @description Denotes whether the originating account is the same as the paying account */
18531
18570
  sponsored: boolean;
18532
18571
  sponsor_address?: string;
18533
- post_condition_mode: "allow" | "deny";
18572
+ post_condition_mode: "allow" | "deny" | "originator";
18534
18573
  post_conditions: ({
18535
18574
  principal: {
18536
18575
  /** @enum {string} */
@@ -18586,7 +18625,7 @@ export interface operations {
18586
18625
  address: string;
18587
18626
  contract_name: string;
18588
18627
  };
18589
- condition_code: "sent" | "not_sent";
18628
+ condition_code: "sent" | "not_sent" | "maybe_sent";
18590
18629
  /** @enum {string} */
18591
18630
  type: "non_fungible";
18592
18631
  asset_value: {
@@ -18752,7 +18791,7 @@ export interface operations {
18752
18791
  /** @description Denotes whether the originating account is the same as the paying account */
18753
18792
  sponsored: boolean;
18754
18793
  sponsor_address?: string;
18755
- post_condition_mode: "allow" | "deny";
18794
+ post_condition_mode: "allow" | "deny" | "originator";
18756
18795
  post_conditions: ({
18757
18796
  principal: {
18758
18797
  /** @enum {string} */
@@ -18808,7 +18847,7 @@ export interface operations {
18808
18847
  address: string;
18809
18848
  contract_name: string;
18810
18849
  };
18811
- condition_code: "sent" | "not_sent";
18850
+ condition_code: "sent" | "not_sent" | "maybe_sent";
18812
18851
  /** @enum {string} */
18813
18852
  type: "non_fungible";
18814
18853
  asset_value: {
@@ -18966,7 +19005,7 @@ export interface operations {
18966
19005
  /** @description Denotes whether the originating account is the same as the paying account */
18967
19006
  sponsored: boolean;
18968
19007
  sponsor_address?: string;
18969
- post_condition_mode: "allow" | "deny";
19008
+ post_condition_mode: "allow" | "deny" | "originator";
18970
19009
  post_conditions: ({
18971
19010
  principal: {
18972
19011
  /** @enum {string} */
@@ -19022,7 +19061,7 @@ export interface operations {
19022
19061
  address: string;
19023
19062
  contract_name: string;
19024
19063
  };
19025
- condition_code: "sent" | "not_sent";
19064
+ condition_code: "sent" | "not_sent" | "maybe_sent";
19026
19065
  /** @enum {string} */
19027
19066
  type: "non_fungible";
19028
19067
  asset_value: {
@@ -19180,7 +19219,7 @@ export interface operations {
19180
19219
  /** @description Denotes whether the originating account is the same as the paying account */
19181
19220
  sponsored: boolean;
19182
19221
  sponsor_address?: string;
19183
- post_condition_mode: "allow" | "deny";
19222
+ post_condition_mode: "allow" | "deny" | "originator";
19184
19223
  post_conditions: ({
19185
19224
  principal: {
19186
19225
  /** @enum {string} */
@@ -19236,7 +19275,7 @@ export interface operations {
19236
19275
  address: string;
19237
19276
  contract_name: string;
19238
19277
  };
19239
- condition_code: "sent" | "not_sent";
19278
+ condition_code: "sent" | "not_sent" | "maybe_sent";
19240
19279
  /** @enum {string} */
19241
19280
  type: "non_fungible";
19242
19281
  asset_value: {
@@ -19447,7 +19486,7 @@ export interface operations {
19447
19486
  /** @description Denotes whether the originating account is the same as the paying account */
19448
19487
  sponsored: boolean;
19449
19488
  sponsor_address?: string;
19450
- post_condition_mode: "allow" | "deny";
19489
+ post_condition_mode: "allow" | "deny" | "originator";
19451
19490
  post_conditions: ({
19452
19491
  principal: {
19453
19492
  /** @enum {string} */
@@ -19503,7 +19542,7 @@ export interface operations {
19503
19542
  address: string;
19504
19543
  contract_name: string;
19505
19544
  };
19506
- condition_code: "sent" | "not_sent";
19545
+ condition_code: "sent" | "not_sent" | "maybe_sent";
19507
19546
  /** @enum {string} */
19508
19547
  type: "non_fungible";
19509
19548
  asset_value: {
@@ -19662,7 +19701,7 @@ export interface operations {
19662
19701
  /** @description Denotes whether the originating account is the same as the paying account */
19663
19702
  sponsored: boolean;
19664
19703
  sponsor_address?: string;
19665
- post_condition_mode: "allow" | "deny";
19704
+ post_condition_mode: "allow" | "deny" | "originator";
19666
19705
  post_conditions: ({
19667
19706
  principal: {
19668
19707
  /** @enum {string} */
@@ -19718,7 +19757,7 @@ export interface operations {
19718
19757
  address: string;
19719
19758
  contract_name: string;
19720
19759
  };
19721
- condition_code: "sent" | "not_sent";
19760
+ condition_code: "sent" | "not_sent" | "maybe_sent";
19722
19761
  /** @enum {string} */
19723
19762
  type: "non_fungible";
19724
19763
  asset_value: {
@@ -19877,7 +19916,7 @@ export interface operations {
19877
19916
  /** @description Denotes whether the originating account is the same as the paying account */
19878
19917
  sponsored: boolean;
19879
19918
  sponsor_address?: string;
19880
- post_condition_mode: "allow" | "deny";
19919
+ post_condition_mode: "allow" | "deny" | "originator";
19881
19920
  post_conditions: ({
19882
19921
  principal: {
19883
19922
  /** @enum {string} */
@@ -19933,7 +19972,7 @@ export interface operations {
19933
19972
  address: string;
19934
19973
  contract_name: string;
19935
19974
  };
19936
- condition_code: "sent" | "not_sent";
19975
+ condition_code: "sent" | "not_sent" | "maybe_sent";
19937
19976
  /** @enum {string} */
19938
19977
  type: "non_fungible";
19939
19978
  asset_value: {
@@ -20099,7 +20138,7 @@ export interface operations {
20099
20138
  /** @description Denotes whether the originating account is the same as the paying account */
20100
20139
  sponsored: boolean;
20101
20140
  sponsor_address?: string;
20102
- post_condition_mode: "allow" | "deny";
20141
+ post_condition_mode: "allow" | "deny" | "originator";
20103
20142
  post_conditions: ({
20104
20143
  principal: {
20105
20144
  /** @enum {string} */
@@ -20155,7 +20194,7 @@ export interface operations {
20155
20194
  address: string;
20156
20195
  contract_name: string;
20157
20196
  };
20158
- condition_code: "sent" | "not_sent";
20197
+ condition_code: "sent" | "not_sent" | "maybe_sent";
20159
20198
  /** @enum {string} */
20160
20199
  type: "non_fungible";
20161
20200
  asset_value: {
@@ -20313,7 +20352,7 @@ export interface operations {
20313
20352
  /** @description Denotes whether the originating account is the same as the paying account */
20314
20353
  sponsored: boolean;
20315
20354
  sponsor_address?: string;
20316
- post_condition_mode: "allow" | "deny";
20355
+ post_condition_mode: "allow" | "deny" | "originator";
20317
20356
  post_conditions: ({
20318
20357
  principal: {
20319
20358
  /** @enum {string} */
@@ -20369,7 +20408,7 @@ export interface operations {
20369
20408
  address: string;
20370
20409
  contract_name: string;
20371
20410
  };
20372
- condition_code: "sent" | "not_sent";
20411
+ condition_code: "sent" | "not_sent" | "maybe_sent";
20373
20412
  /** @enum {string} */
20374
20413
  type: "non_fungible";
20375
20414
  asset_value: {
@@ -20527,7 +20566,7 @@ export interface operations {
20527
20566
  /** @description Denotes whether the originating account is the same as the paying account */
20528
20567
  sponsored: boolean;
20529
20568
  sponsor_address?: string;
20530
- post_condition_mode: "allow" | "deny";
20569
+ post_condition_mode: "allow" | "deny" | "originator";
20531
20570
  post_conditions: ({
20532
20571
  principal: {
20533
20572
  /** @enum {string} */
@@ -20583,7 +20622,7 @@ export interface operations {
20583
20622
  address: string;
20584
20623
  contract_name: string;
20585
20624
  };
20586
- condition_code: "sent" | "not_sent";
20625
+ condition_code: "sent" | "not_sent" | "maybe_sent";
20587
20626
  /** @enum {string} */
20588
20627
  type: "non_fungible";
20589
20628
  asset_value: {
@@ -20845,7 +20884,7 @@ export interface operations {
20845
20884
  /** @description Denotes whether the originating account is the same as the paying account */
20846
20885
  sponsored: boolean;
20847
20886
  sponsor_address?: string;
20848
- post_condition_mode: "allow" | "deny";
20887
+ post_condition_mode: "allow" | "deny" | "originator";
20849
20888
  post_conditions: ({
20850
20889
  principal: {
20851
20890
  /** @enum {string} */
@@ -20901,7 +20940,7 @@ export interface operations {
20901
20940
  address: string;
20902
20941
  contract_name: string;
20903
20942
  };
20904
- condition_code: "sent" | "not_sent";
20943
+ condition_code: "sent" | "not_sent" | "maybe_sent";
20905
20944
  /** @enum {string} */
20906
20945
  type: "non_fungible";
20907
20946
  asset_value: {
@@ -21060,7 +21099,7 @@ export interface operations {
21060
21099
  /** @description Denotes whether the originating account is the same as the paying account */
21061
21100
  sponsored: boolean;
21062
21101
  sponsor_address?: string;
21063
- post_condition_mode: "allow" | "deny";
21102
+ post_condition_mode: "allow" | "deny" | "originator";
21064
21103
  post_conditions: ({
21065
21104
  principal: {
21066
21105
  /** @enum {string} */
@@ -21116,7 +21155,7 @@ export interface operations {
21116
21155
  address: string;
21117
21156
  contract_name: string;
21118
21157
  };
21119
- condition_code: "sent" | "not_sent";
21158
+ condition_code: "sent" | "not_sent" | "maybe_sent";
21120
21159
  /** @enum {string} */
21121
21160
  type: "non_fungible";
21122
21161
  asset_value: {
@@ -21275,7 +21314,7 @@ export interface operations {
21275
21314
  /** @description Denotes whether the originating account is the same as the paying account */
21276
21315
  sponsored: boolean;
21277
21316
  sponsor_address?: string;
21278
- post_condition_mode: "allow" | "deny";
21317
+ post_condition_mode: "allow" | "deny" | "originator";
21279
21318
  post_conditions: ({
21280
21319
  principal: {
21281
21320
  /** @enum {string} */
@@ -21331,7 +21370,7 @@ export interface operations {
21331
21370
  address: string;
21332
21371
  contract_name: string;
21333
21372
  };
21334
- condition_code: "sent" | "not_sent";
21373
+ condition_code: "sent" | "not_sent" | "maybe_sent";
21335
21374
  /** @enum {string} */
21336
21375
  type: "non_fungible";
21337
21376
  asset_value: {
@@ -21497,7 +21536,7 @@ export interface operations {
21497
21536
  /** @description Denotes whether the originating account is the same as the paying account */
21498
21537
  sponsored: boolean;
21499
21538
  sponsor_address?: string;
21500
- post_condition_mode: "allow" | "deny";
21539
+ post_condition_mode: "allow" | "deny" | "originator";
21501
21540
  post_conditions: ({
21502
21541
  principal: {
21503
21542
  /** @enum {string} */
@@ -21553,7 +21592,7 @@ export interface operations {
21553
21592
  address: string;
21554
21593
  contract_name: string;
21555
21594
  };
21556
- condition_code: "sent" | "not_sent";
21595
+ condition_code: "sent" | "not_sent" | "maybe_sent";
21557
21596
  /** @enum {string} */
21558
21597
  type: "non_fungible";
21559
21598
  asset_value: {
@@ -21711,7 +21750,7 @@ export interface operations {
21711
21750
  /** @description Denotes whether the originating account is the same as the paying account */
21712
21751
  sponsored: boolean;
21713
21752
  sponsor_address?: string;
21714
- post_condition_mode: "allow" | "deny";
21753
+ post_condition_mode: "allow" | "deny" | "originator";
21715
21754
  post_conditions: ({
21716
21755
  principal: {
21717
21756
  /** @enum {string} */
@@ -21767,7 +21806,7 @@ export interface operations {
21767
21806
  address: string;
21768
21807
  contract_name: string;
21769
21808
  };
21770
- condition_code: "sent" | "not_sent";
21809
+ condition_code: "sent" | "not_sent" | "maybe_sent";
21771
21810
  /** @enum {string} */
21772
21811
  type: "non_fungible";
21773
21812
  asset_value: {
@@ -21925,7 +21964,7 @@ export interface operations {
21925
21964
  /** @description Denotes whether the originating account is the same as the paying account */
21926
21965
  sponsored: boolean;
21927
21966
  sponsor_address?: string;
21928
- post_condition_mode: "allow" | "deny";
21967
+ post_condition_mode: "allow" | "deny" | "originator";
21929
21968
  post_conditions: ({
21930
21969
  principal: {
21931
21970
  /** @enum {string} */
@@ -21981,7 +22020,7 @@ export interface operations {
21981
22020
  address: string;
21982
22021
  contract_name: string;
21983
22022
  };
21984
- condition_code: "sent" | "not_sent";
22023
+ condition_code: "sent" | "not_sent" | "maybe_sent";
21985
22024
  /** @enum {string} */
21986
22025
  type: "non_fungible";
21987
22026
  asset_value: {
@@ -22437,7 +22476,7 @@ export interface operations {
22437
22476
  /** @description Denotes whether the originating account is the same as the paying account */
22438
22477
  sponsored: boolean;
22439
22478
  sponsor_address?: string;
22440
- post_condition_mode: "allow" | "deny";
22479
+ post_condition_mode: "allow" | "deny" | "originator";
22441
22480
  post_conditions: ({
22442
22481
  principal: {
22443
22482
  /** @enum {string} */
@@ -22493,7 +22532,7 @@ export interface operations {
22493
22532
  address: string;
22494
22533
  contract_name: string;
22495
22534
  };
22496
- condition_code: "sent" | "not_sent";
22535
+ condition_code: "sent" | "not_sent" | "maybe_sent";
22497
22536
  /** @enum {string} */
22498
22537
  type: "non_fungible";
22499
22538
  asset_value: {
@@ -22537,7 +22576,7 @@ export interface operations {
22537
22576
  /** @description Denotes whether the originating account is the same as the paying account */
22538
22577
  sponsored: boolean;
22539
22578
  sponsor_address?: string;
22540
- post_condition_mode: "allow" | "deny";
22579
+ post_condition_mode: "allow" | "deny" | "originator";
22541
22580
  post_conditions: ({
22542
22581
  principal: {
22543
22582
  /** @enum {string} */
@@ -22593,7 +22632,7 @@ export interface operations {
22593
22632
  address: string;
22594
22633
  contract_name: string;
22595
22634
  };
22596
- condition_code: "sent" | "not_sent";
22635
+ condition_code: "sent" | "not_sent" | "maybe_sent";
22597
22636
  /** @enum {string} */
22598
22637
  type: "non_fungible";
22599
22638
  asset_value: {
@@ -22637,7 +22676,7 @@ export interface operations {
22637
22676
  /** @description Denotes whether the originating account is the same as the paying account */
22638
22677
  sponsored: boolean;
22639
22678
  sponsor_address?: string;
22640
- post_condition_mode: "allow" | "deny";
22679
+ post_condition_mode: "allow" | "deny" | "originator";
22641
22680
  post_conditions: ({
22642
22681
  principal: {
22643
22682
  /** @enum {string} */
@@ -22693,7 +22732,7 @@ export interface operations {
22693
22732
  address: string;
22694
22733
  contract_name: string;
22695
22734
  };
22696
- condition_code: "sent" | "not_sent";
22735
+ condition_code: "sent" | "not_sent" | "maybe_sent";
22697
22736
  /** @enum {string} */
22698
22737
  type: "non_fungible";
22699
22738
  asset_value: {
@@ -22744,7 +22783,7 @@ export interface operations {
22744
22783
  /** @description Denotes whether the originating account is the same as the paying account */
22745
22784
  sponsored: boolean;
22746
22785
  sponsor_address?: string;
22747
- post_condition_mode: "allow" | "deny";
22786
+ post_condition_mode: "allow" | "deny" | "originator";
22748
22787
  post_conditions: ({
22749
22788
  principal: {
22750
22789
  /** @enum {string} */
@@ -22800,7 +22839,7 @@ export interface operations {
22800
22839
  address: string;
22801
22840
  contract_name: string;
22802
22841
  };
22803
- condition_code: "sent" | "not_sent";
22842
+ condition_code: "sent" | "not_sent" | "maybe_sent";
22804
22843
  /** @enum {string} */
22805
22844
  type: "non_fungible";
22806
22845
  asset_value: {
@@ -22843,7 +22882,7 @@ export interface operations {
22843
22882
  /** @description Denotes whether the originating account is the same as the paying account */
22844
22883
  sponsored: boolean;
22845
22884
  sponsor_address?: string;
22846
- post_condition_mode: "allow" | "deny";
22885
+ post_condition_mode: "allow" | "deny" | "originator";
22847
22886
  post_conditions: ({
22848
22887
  principal: {
22849
22888
  /** @enum {string} */
@@ -22899,7 +22938,7 @@ export interface operations {
22899
22938
  address: string;
22900
22939
  contract_name: string;
22901
22940
  };
22902
- condition_code: "sent" | "not_sent";
22941
+ condition_code: "sent" | "not_sent" | "maybe_sent";
22903
22942
  /** @enum {string} */
22904
22943
  type: "non_fungible";
22905
22944
  asset_value: {
@@ -22942,7 +22981,7 @@ export interface operations {
22942
22981
  /** @description Denotes whether the originating account is the same as the paying account */
22943
22982
  sponsored: boolean;
22944
22983
  sponsor_address?: string;
22945
- post_condition_mode: "allow" | "deny";
22984
+ post_condition_mode: "allow" | "deny" | "originator";
22946
22985
  post_conditions: ({
22947
22986
  principal: {
22948
22987
  /** @enum {string} */
@@ -22998,7 +23037,7 @@ export interface operations {
22998
23037
  address: string;
22999
23038
  contract_name: string;
23000
23039
  };
23001
- condition_code: "sent" | "not_sent";
23040
+ condition_code: "sent" | "not_sent" | "maybe_sent";
23002
23041
  /** @enum {string} */
23003
23042
  type: "non_fungible";
23004
23043
  asset_value: {
@@ -23283,7 +23322,7 @@ export interface operations {
23283
23322
  /** @description Denotes whether the originating account is the same as the paying account */
23284
23323
  sponsored: boolean;
23285
23324
  sponsor_address?: string;
23286
- post_condition_mode: "allow" | "deny";
23325
+ post_condition_mode: "allow" | "deny" | "originator";
23287
23326
  post_conditions: ({
23288
23327
  principal: {
23289
23328
  /** @enum {string} */
@@ -23339,7 +23378,7 @@ export interface operations {
23339
23378
  address: string;
23340
23379
  contract_name: string;
23341
23380
  };
23342
- condition_code: "sent" | "not_sent";
23381
+ condition_code: "sent" | "not_sent" | "maybe_sent";
23343
23382
  /** @enum {string} */
23344
23383
  type: "non_fungible";
23345
23384
  asset_value: {
@@ -23498,7 +23537,7 @@ export interface operations {
23498
23537
  /** @description Denotes whether the originating account is the same as the paying account */
23499
23538
  sponsored: boolean;
23500
23539
  sponsor_address?: string;
23501
- post_condition_mode: "allow" | "deny";
23540
+ post_condition_mode: "allow" | "deny" | "originator";
23502
23541
  post_conditions: ({
23503
23542
  principal: {
23504
23543
  /** @enum {string} */
@@ -23554,7 +23593,7 @@ export interface operations {
23554
23593
  address: string;
23555
23594
  contract_name: string;
23556
23595
  };
23557
- condition_code: "sent" | "not_sent";
23596
+ condition_code: "sent" | "not_sent" | "maybe_sent";
23558
23597
  /** @enum {string} */
23559
23598
  type: "non_fungible";
23560
23599
  asset_value: {
@@ -23713,7 +23752,7 @@ export interface operations {
23713
23752
  /** @description Denotes whether the originating account is the same as the paying account */
23714
23753
  sponsored: boolean;
23715
23754
  sponsor_address?: string;
23716
- post_condition_mode: "allow" | "deny";
23755
+ post_condition_mode: "allow" | "deny" | "originator";
23717
23756
  post_conditions: ({
23718
23757
  principal: {
23719
23758
  /** @enum {string} */
@@ -23769,7 +23808,7 @@ export interface operations {
23769
23808
  address: string;
23770
23809
  contract_name: string;
23771
23810
  };
23772
- condition_code: "sent" | "not_sent";
23811
+ condition_code: "sent" | "not_sent" | "maybe_sent";
23773
23812
  /** @enum {string} */
23774
23813
  type: "non_fungible";
23775
23814
  asset_value: {
@@ -23935,7 +23974,7 @@ export interface operations {
23935
23974
  /** @description Denotes whether the originating account is the same as the paying account */
23936
23975
  sponsored: boolean;
23937
23976
  sponsor_address?: string;
23938
- post_condition_mode: "allow" | "deny";
23977
+ post_condition_mode: "allow" | "deny" | "originator";
23939
23978
  post_conditions: ({
23940
23979
  principal: {
23941
23980
  /** @enum {string} */
@@ -23991,7 +24030,7 @@ export interface operations {
23991
24030
  address: string;
23992
24031
  contract_name: string;
23993
24032
  };
23994
- condition_code: "sent" | "not_sent";
24033
+ condition_code: "sent" | "not_sent" | "maybe_sent";
23995
24034
  /** @enum {string} */
23996
24035
  type: "non_fungible";
23997
24036
  asset_value: {
@@ -24149,7 +24188,7 @@ export interface operations {
24149
24188
  /** @description Denotes whether the originating account is the same as the paying account */
24150
24189
  sponsored: boolean;
24151
24190
  sponsor_address?: string;
24152
- post_condition_mode: "allow" | "deny";
24191
+ post_condition_mode: "allow" | "deny" | "originator";
24153
24192
  post_conditions: ({
24154
24193
  principal: {
24155
24194
  /** @enum {string} */
@@ -24205,7 +24244,7 @@ export interface operations {
24205
24244
  address: string;
24206
24245
  contract_name: string;
24207
24246
  };
24208
- condition_code: "sent" | "not_sent";
24247
+ condition_code: "sent" | "not_sent" | "maybe_sent";
24209
24248
  /** @enum {string} */
24210
24249
  type: "non_fungible";
24211
24250
  asset_value: {
@@ -24363,7 +24402,7 @@ export interface operations {
24363
24402
  /** @description Denotes whether the originating account is the same as the paying account */
24364
24403
  sponsored: boolean;
24365
24404
  sponsor_address?: string;
24366
- post_condition_mode: "allow" | "deny";
24405
+ post_condition_mode: "allow" | "deny" | "originator";
24367
24406
  post_conditions: ({
24368
24407
  principal: {
24369
24408
  /** @enum {string} */
@@ -24419,7 +24458,7 @@ export interface operations {
24419
24458
  address: string;
24420
24459
  contract_name: string;
24421
24460
  };
24422
- condition_code: "sent" | "not_sent";
24461
+ condition_code: "sent" | "not_sent" | "maybe_sent";
24423
24462
  /** @enum {string} */
24424
24463
  type: "non_fungible";
24425
24464
  asset_value: {
@@ -24587,7 +24626,7 @@ export interface operations {
24587
24626
  /** @description Denotes whether the originating account is the same as the paying account */
24588
24627
  sponsored: boolean;
24589
24628
  sponsor_address?: string;
24590
- post_condition_mode: "allow" | "deny";
24629
+ post_condition_mode: "allow" | "deny" | "originator";
24591
24630
  post_conditions: ({
24592
24631
  principal: {
24593
24632
  /** @enum {string} */
@@ -24643,7 +24682,7 @@ export interface operations {
24643
24682
  address: string;
24644
24683
  contract_name: string;
24645
24684
  };
24646
- condition_code: "sent" | "not_sent";
24685
+ condition_code: "sent" | "not_sent" | "maybe_sent";
24647
24686
  /** @enum {string} */
24648
24687
  type: "non_fungible";
24649
24688
  asset_value: {
@@ -24687,7 +24726,7 @@ export interface operations {
24687
24726
  /** @description Denotes whether the originating account is the same as the paying account */
24688
24727
  sponsored: boolean;
24689
24728
  sponsor_address?: string;
24690
- post_condition_mode: "allow" | "deny";
24729
+ post_condition_mode: "allow" | "deny" | "originator";
24691
24730
  post_conditions: ({
24692
24731
  principal: {
24693
24732
  /** @enum {string} */
@@ -24743,7 +24782,7 @@ export interface operations {
24743
24782
  address: string;
24744
24783
  contract_name: string;
24745
24784
  };
24746
- condition_code: "sent" | "not_sent";
24785
+ condition_code: "sent" | "not_sent" | "maybe_sent";
24747
24786
  /** @enum {string} */
24748
24787
  type: "non_fungible";
24749
24788
  asset_value: {
@@ -24787,7 +24826,7 @@ export interface operations {
24787
24826
  /** @description Denotes whether the originating account is the same as the paying account */
24788
24827
  sponsored: boolean;
24789
24828
  sponsor_address?: string;
24790
- post_condition_mode: "allow" | "deny";
24829
+ post_condition_mode: "allow" | "deny" | "originator";
24791
24830
  post_conditions: ({
24792
24831
  principal: {
24793
24832
  /** @enum {string} */
@@ -24843,7 +24882,7 @@ export interface operations {
24843
24882
  address: string;
24844
24883
  contract_name: string;
24845
24884
  };
24846
- condition_code: "sent" | "not_sent";
24885
+ condition_code: "sent" | "not_sent" | "maybe_sent";
24847
24886
  /** @enum {string} */
24848
24887
  type: "non_fungible";
24849
24888
  asset_value: {
@@ -24894,7 +24933,7 @@ export interface operations {
24894
24933
  /** @description Denotes whether the originating account is the same as the paying account */
24895
24934
  sponsored: boolean;
24896
24935
  sponsor_address?: string;
24897
- post_condition_mode: "allow" | "deny";
24936
+ post_condition_mode: "allow" | "deny" | "originator";
24898
24937
  post_conditions: ({
24899
24938
  principal: {
24900
24939
  /** @enum {string} */
@@ -24950,7 +24989,7 @@ export interface operations {
24950
24989
  address: string;
24951
24990
  contract_name: string;
24952
24991
  };
24953
- condition_code: "sent" | "not_sent";
24992
+ condition_code: "sent" | "not_sent" | "maybe_sent";
24954
24993
  /** @enum {string} */
24955
24994
  type: "non_fungible";
24956
24995
  asset_value: {
@@ -24993,7 +25032,7 @@ export interface operations {
24993
25032
  /** @description Denotes whether the originating account is the same as the paying account */
24994
25033
  sponsored: boolean;
24995
25034
  sponsor_address?: string;
24996
- post_condition_mode: "allow" | "deny";
25035
+ post_condition_mode: "allow" | "deny" | "originator";
24997
25036
  post_conditions: ({
24998
25037
  principal: {
24999
25038
  /** @enum {string} */
@@ -25049,7 +25088,7 @@ export interface operations {
25049
25088
  address: string;
25050
25089
  contract_name: string;
25051
25090
  };
25052
- condition_code: "sent" | "not_sent";
25091
+ condition_code: "sent" | "not_sent" | "maybe_sent";
25053
25092
  /** @enum {string} */
25054
25093
  type: "non_fungible";
25055
25094
  asset_value: {
@@ -25092,7 +25131,7 @@ export interface operations {
25092
25131
  /** @description Denotes whether the originating account is the same as the paying account */
25093
25132
  sponsored: boolean;
25094
25133
  sponsor_address?: string;
25095
- post_condition_mode: "allow" | "deny";
25134
+ post_condition_mode: "allow" | "deny" | "originator";
25096
25135
  post_conditions: ({
25097
25136
  principal: {
25098
25137
  /** @enum {string} */
@@ -25148,7 +25187,7 @@ export interface operations {
25148
25187
  address: string;
25149
25188
  contract_name: string;
25150
25189
  };
25151
- condition_code: "sent" | "not_sent";
25190
+ condition_code: "sent" | "not_sent" | "maybe_sent";
25152
25191
  /** @enum {string} */
25153
25192
  type: "non_fungible";
25154
25193
  asset_value: {
@@ -25210,7 +25249,7 @@ export interface operations {
25210
25249
  /** @description Denotes whether the originating account is the same as the paying account */
25211
25250
  sponsored: boolean;
25212
25251
  sponsor_address?: string;
25213
- post_condition_mode: "allow" | "deny";
25252
+ post_condition_mode: "allow" | "deny" | "originator";
25214
25253
  post_conditions: ({
25215
25254
  principal: {
25216
25255
  /** @enum {string} */
@@ -25266,7 +25305,7 @@ export interface operations {
25266
25305
  address: string;
25267
25306
  contract_name: string;
25268
25307
  };
25269
- condition_code: "sent" | "not_sent";
25308
+ condition_code: "sent" | "not_sent" | "maybe_sent";
25270
25309
  /** @enum {string} */
25271
25310
  type: "non_fungible";
25272
25311
  asset_value: {
@@ -25310,7 +25349,7 @@ export interface operations {
25310
25349
  /** @description Denotes whether the originating account is the same as the paying account */
25311
25350
  sponsored: boolean;
25312
25351
  sponsor_address?: string;
25313
- post_condition_mode: "allow" | "deny";
25352
+ post_condition_mode: "allow" | "deny" | "originator";
25314
25353
  post_conditions: ({
25315
25354
  principal: {
25316
25355
  /** @enum {string} */
@@ -25366,7 +25405,7 @@ export interface operations {
25366
25405
  address: string;
25367
25406
  contract_name: string;
25368
25407
  };
25369
- condition_code: "sent" | "not_sent";
25408
+ condition_code: "sent" | "not_sent" | "maybe_sent";
25370
25409
  /** @enum {string} */
25371
25410
  type: "non_fungible";
25372
25411
  asset_value: {
@@ -25410,7 +25449,7 @@ export interface operations {
25410
25449
  /** @description Denotes whether the originating account is the same as the paying account */
25411
25450
  sponsored: boolean;
25412
25451
  sponsor_address?: string;
25413
- post_condition_mode: "allow" | "deny";
25452
+ post_condition_mode: "allow" | "deny" | "originator";
25414
25453
  post_conditions: ({
25415
25454
  principal: {
25416
25455
  /** @enum {string} */
@@ -25466,7 +25505,7 @@ export interface operations {
25466
25505
  address: string;
25467
25506
  contract_name: string;
25468
25507
  };
25469
- condition_code: "sent" | "not_sent";
25508
+ condition_code: "sent" | "not_sent" | "maybe_sent";
25470
25509
  /** @enum {string} */
25471
25510
  type: "non_fungible";
25472
25511
  asset_value: {
@@ -25517,7 +25556,7 @@ export interface operations {
25517
25556
  /** @description Denotes whether the originating account is the same as the paying account */
25518
25557
  sponsored: boolean;
25519
25558
  sponsor_address?: string;
25520
- post_condition_mode: "allow" | "deny";
25559
+ post_condition_mode: "allow" | "deny" | "originator";
25521
25560
  post_conditions: ({
25522
25561
  principal: {
25523
25562
  /** @enum {string} */
@@ -25573,7 +25612,7 @@ export interface operations {
25573
25612
  address: string;
25574
25613
  contract_name: string;
25575
25614
  };
25576
- condition_code: "sent" | "not_sent";
25615
+ condition_code: "sent" | "not_sent" | "maybe_sent";
25577
25616
  /** @enum {string} */
25578
25617
  type: "non_fungible";
25579
25618
  asset_value: {
@@ -25616,7 +25655,7 @@ export interface operations {
25616
25655
  /** @description Denotes whether the originating account is the same as the paying account */
25617
25656
  sponsored: boolean;
25618
25657
  sponsor_address?: string;
25619
- post_condition_mode: "allow" | "deny";
25658
+ post_condition_mode: "allow" | "deny" | "originator";
25620
25659
  post_conditions: ({
25621
25660
  principal: {
25622
25661
  /** @enum {string} */
@@ -25672,7 +25711,7 @@ export interface operations {
25672
25711
  address: string;
25673
25712
  contract_name: string;
25674
25713
  };
25675
- condition_code: "sent" | "not_sent";
25714
+ condition_code: "sent" | "not_sent" | "maybe_sent";
25676
25715
  /** @enum {string} */
25677
25716
  type: "non_fungible";
25678
25717
  asset_value: {
@@ -25715,7 +25754,7 @@ export interface operations {
25715
25754
  /** @description Denotes whether the originating account is the same as the paying account */
25716
25755
  sponsored: boolean;
25717
25756
  sponsor_address?: string;
25718
- post_condition_mode: "allow" | "deny";
25757
+ post_condition_mode: "allow" | "deny" | "originator";
25719
25758
  post_conditions: ({
25720
25759
  principal: {
25721
25760
  /** @enum {string} */
@@ -25771,7 +25810,7 @@ export interface operations {
25771
25810
  address: string;
25772
25811
  contract_name: string;
25773
25812
  };
25774
- condition_code: "sent" | "not_sent";
25813
+ condition_code: "sent" | "not_sent" | "maybe_sent";
25775
25814
  /** @enum {string} */
25776
25815
  type: "non_fungible";
25777
25816
  asset_value: {
@@ -25837,7 +25876,7 @@ export interface operations {
25837
25876
  /** @description Denotes whether the originating account is the same as the paying account */
25838
25877
  sponsored: boolean;
25839
25878
  sponsor_address?: string;
25840
- post_condition_mode: "allow" | "deny";
25879
+ post_condition_mode: "allow" | "deny" | "originator";
25841
25880
  post_conditions: ({
25842
25881
  principal: {
25843
25882
  /** @enum {string} */
@@ -25893,7 +25932,7 @@ export interface operations {
25893
25932
  address: string;
25894
25933
  contract_name: string;
25895
25934
  };
25896
- condition_code: "sent" | "not_sent";
25935
+ condition_code: "sent" | "not_sent" | "maybe_sent";
25897
25936
  /** @enum {string} */
25898
25937
  type: "non_fungible";
25899
25938
  asset_value: {
@@ -26052,7 +26091,7 @@ export interface operations {
26052
26091
  /** @description Denotes whether the originating account is the same as the paying account */
26053
26092
  sponsored: boolean;
26054
26093
  sponsor_address?: string;
26055
- post_condition_mode: "allow" | "deny";
26094
+ post_condition_mode: "allow" | "deny" | "originator";
26056
26095
  post_conditions: ({
26057
26096
  principal: {
26058
26097
  /** @enum {string} */
@@ -26108,7 +26147,7 @@ export interface operations {
26108
26147
  address: string;
26109
26148
  contract_name: string;
26110
26149
  };
26111
- condition_code: "sent" | "not_sent";
26150
+ condition_code: "sent" | "not_sent" | "maybe_sent";
26112
26151
  /** @enum {string} */
26113
26152
  type: "non_fungible";
26114
26153
  asset_value: {
@@ -26267,7 +26306,7 @@ export interface operations {
26267
26306
  /** @description Denotes whether the originating account is the same as the paying account */
26268
26307
  sponsored: boolean;
26269
26308
  sponsor_address?: string;
26270
- post_condition_mode: "allow" | "deny";
26309
+ post_condition_mode: "allow" | "deny" | "originator";
26271
26310
  post_conditions: ({
26272
26311
  principal: {
26273
26312
  /** @enum {string} */
@@ -26323,7 +26362,7 @@ export interface operations {
26323
26362
  address: string;
26324
26363
  contract_name: string;
26325
26364
  };
26326
- condition_code: "sent" | "not_sent";
26365
+ condition_code: "sent" | "not_sent" | "maybe_sent";
26327
26366
  /** @enum {string} */
26328
26367
  type: "non_fungible";
26329
26368
  asset_value: {
@@ -26489,7 +26528,7 @@ export interface operations {
26489
26528
  /** @description Denotes whether the originating account is the same as the paying account */
26490
26529
  sponsored: boolean;
26491
26530
  sponsor_address?: string;
26492
- post_condition_mode: "allow" | "deny";
26531
+ post_condition_mode: "allow" | "deny" | "originator";
26493
26532
  post_conditions: ({
26494
26533
  principal: {
26495
26534
  /** @enum {string} */
@@ -26545,7 +26584,7 @@ export interface operations {
26545
26584
  address: string;
26546
26585
  contract_name: string;
26547
26586
  };
26548
- condition_code: "sent" | "not_sent";
26587
+ condition_code: "sent" | "not_sent" | "maybe_sent";
26549
26588
  /** @enum {string} */
26550
26589
  type: "non_fungible";
26551
26590
  asset_value: {
@@ -26703,7 +26742,7 @@ export interface operations {
26703
26742
  /** @description Denotes whether the originating account is the same as the paying account */
26704
26743
  sponsored: boolean;
26705
26744
  sponsor_address?: string;
26706
- post_condition_mode: "allow" | "deny";
26745
+ post_condition_mode: "allow" | "deny" | "originator";
26707
26746
  post_conditions: ({
26708
26747
  principal: {
26709
26748
  /** @enum {string} */
@@ -26759,7 +26798,7 @@ export interface operations {
26759
26798
  address: string;
26760
26799
  contract_name: string;
26761
26800
  };
26762
- condition_code: "sent" | "not_sent";
26801
+ condition_code: "sent" | "not_sent" | "maybe_sent";
26763
26802
  /** @enum {string} */
26764
26803
  type: "non_fungible";
26765
26804
  asset_value: {
@@ -26917,7 +26956,7 @@ export interface operations {
26917
26956
  /** @description Denotes whether the originating account is the same as the paying account */
26918
26957
  sponsored: boolean;
26919
26958
  sponsor_address?: string;
26920
- post_condition_mode: "allow" | "deny";
26959
+ post_condition_mode: "allow" | "deny" | "originator";
26921
26960
  post_conditions: ({
26922
26961
  principal: {
26923
26962
  /** @enum {string} */
@@ -26973,7 +27012,7 @@ export interface operations {
26973
27012
  address: string;
26974
27013
  contract_name: string;
26975
27014
  };
26976
- condition_code: "sent" | "not_sent";
27015
+ condition_code: "sent" | "not_sent" | "maybe_sent";
26977
27016
  /** @enum {string} */
26978
27017
  type: "non_fungible";
26979
27018
  asset_value: {
@@ -27257,7 +27296,7 @@ export interface operations {
27257
27296
  path?: never;
27258
27297
  cookie?: never;
27259
27298
  };
27260
- requestBody?: {
27299
+ requestBody: {
27261
27300
  content: {
27262
27301
  "application/json": {
27263
27302
  /** @description A valid regtest BTC address */
@@ -27359,7 +27398,7 @@ export interface operations {
27359
27398
  path?: never;
27360
27399
  cookie?: never;
27361
27400
  };
27362
- requestBody?: {
27401
+ requestBody: {
27363
27402
  content: {
27364
27403
  "application/json": {
27365
27404
  /** @description [Deprecated -- use query param rather than POST body] A valid testnet STX address */
@@ -27543,6 +27582,87 @@ export interface operations {
27543
27582
  };
27544
27583
  };
27545
27584
  };
27585
+ get_block_at_time: {
27586
+ parameters: {
27587
+ query?: never;
27588
+ header?: never;
27589
+ path: {
27590
+ /**
27591
+ * @description Unix timestamp (in seconds)
27592
+ * @example 1677731361
27593
+ */
27594
+ timestamp: number;
27595
+ };
27596
+ cookie?: never;
27597
+ };
27598
+ requestBody?: never;
27599
+ responses: {
27600
+ /** @description Default Response */
27601
+ 200: {
27602
+ headers: {
27603
+ [name: string]: unknown;
27604
+ };
27605
+ content: {
27606
+ "application/json": {
27607
+ /** @description Set to `true` if block corresponds to the canonical chain tip */
27608
+ canonical: boolean;
27609
+ /** @description Height of the block */
27610
+ height: number;
27611
+ /** @description Hash representing the block */
27612
+ hash: string;
27613
+ /** @description Unix timestamp (in seconds) indicating when this block was mined. */
27614
+ block_time: number;
27615
+ /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) indicating when this block was mined. */
27616
+ block_time_iso: string;
27617
+ /** @description The tenure height (AKA coinbase height) of this block */
27618
+ tenure_height: number;
27619
+ /** @description The only hash that can uniquely identify an anchored block or an unconfirmed state trie */
27620
+ index_block_hash: string;
27621
+ /** @description Hash of the parent block */
27622
+ parent_block_hash: string;
27623
+ /** @description Index block hash of the parent block */
27624
+ parent_index_block_hash: string;
27625
+ /** @description Unix timestamp (in seconds) indicating when this block was mined. */
27626
+ burn_block_time: number;
27627
+ /** @description An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) indicating when this block was mined. */
27628
+ burn_block_time_iso: string;
27629
+ /** @description Hash of the anchor chain block */
27630
+ burn_block_hash: string;
27631
+ /** @description Height of the anchor chain block */
27632
+ burn_block_height: number;
27633
+ /** @description Anchor chain transaction ID */
27634
+ miner_txid: string;
27635
+ /** @description Number of transactions included in the block */
27636
+ tx_count: number;
27637
+ /** @description Execution cost read count. */
27638
+ execution_cost_read_count: number;
27639
+ /** @description Execution cost read length. */
27640
+ execution_cost_read_length: number;
27641
+ /** @description Execution cost runtime. */
27642
+ execution_cost_runtime: number;
27643
+ /** @description Execution cost write count. */
27644
+ execution_cost_write_count: number;
27645
+ /** @description Execution cost write length. */
27646
+ execution_cost_write_length: number;
27647
+ };
27648
+ };
27649
+ };
27650
+ /** @description Default Response */
27651
+ "4XX": {
27652
+ headers: {
27653
+ [name: string]: unknown;
27654
+ };
27655
+ content: {
27656
+ "application/json": {
27657
+ error: string;
27658
+ message?: string;
27659
+ } & {
27660
+ [key: string]: unknown;
27661
+ };
27662
+ };
27663
+ };
27664
+ };
27665
+ };
27546
27666
  get_block: {
27547
27667
  parameters: {
27548
27668
  query?: never;
@@ -27662,7 +27782,7 @@ export interface operations {
27662
27782
  /** @description Denotes whether the originating account is the same as the paying account */
27663
27783
  sponsored: boolean;
27664
27784
  sponsor_address?: string;
27665
- post_condition_mode: "allow" | "deny";
27785
+ post_condition_mode: "allow" | "deny" | "originator";
27666
27786
  post_conditions: ({
27667
27787
  principal: {
27668
27788
  /** @enum {string} */
@@ -27718,7 +27838,7 @@ export interface operations {
27718
27838
  address: string;
27719
27839
  contract_name: string;
27720
27840
  };
27721
- condition_code: "sent" | "not_sent";
27841
+ condition_code: "sent" | "not_sent" | "maybe_sent";
27722
27842
  /** @enum {string} */
27723
27843
  type: "non_fungible";
27724
27844
  asset_value: {
@@ -27877,7 +27997,7 @@ export interface operations {
27877
27997
  /** @description Denotes whether the originating account is the same as the paying account */
27878
27998
  sponsored: boolean;
27879
27999
  sponsor_address?: string;
27880
- post_condition_mode: "allow" | "deny";
28000
+ post_condition_mode: "allow" | "deny" | "originator";
27881
28001
  post_conditions: ({
27882
28002
  principal: {
27883
28003
  /** @enum {string} */
@@ -27933,7 +28053,7 @@ export interface operations {
27933
28053
  address: string;
27934
28054
  contract_name: string;
27935
28055
  };
27936
- condition_code: "sent" | "not_sent";
28056
+ condition_code: "sent" | "not_sent" | "maybe_sent";
27937
28057
  /** @enum {string} */
27938
28058
  type: "non_fungible";
27939
28059
  asset_value: {
@@ -28092,7 +28212,7 @@ export interface operations {
28092
28212
  /** @description Denotes whether the originating account is the same as the paying account */
28093
28213
  sponsored: boolean;
28094
28214
  sponsor_address?: string;
28095
- post_condition_mode: "allow" | "deny";
28215
+ post_condition_mode: "allow" | "deny" | "originator";
28096
28216
  post_conditions: ({
28097
28217
  principal: {
28098
28218
  /** @enum {string} */
@@ -28148,7 +28268,7 @@ export interface operations {
28148
28268
  address: string;
28149
28269
  contract_name: string;
28150
28270
  };
28151
- condition_code: "sent" | "not_sent";
28271
+ condition_code: "sent" | "not_sent" | "maybe_sent";
28152
28272
  /** @enum {string} */
28153
28273
  type: "non_fungible";
28154
28274
  asset_value: {
@@ -28314,7 +28434,7 @@ export interface operations {
28314
28434
  /** @description Denotes whether the originating account is the same as the paying account */
28315
28435
  sponsored: boolean;
28316
28436
  sponsor_address?: string;
28317
- post_condition_mode: "allow" | "deny";
28437
+ post_condition_mode: "allow" | "deny" | "originator";
28318
28438
  post_conditions: ({
28319
28439
  principal: {
28320
28440
  /** @enum {string} */
@@ -28370,7 +28490,7 @@ export interface operations {
28370
28490
  address: string;
28371
28491
  contract_name: string;
28372
28492
  };
28373
- condition_code: "sent" | "not_sent";
28493
+ condition_code: "sent" | "not_sent" | "maybe_sent";
28374
28494
  /** @enum {string} */
28375
28495
  type: "non_fungible";
28376
28496
  asset_value: {
@@ -28528,7 +28648,7 @@ export interface operations {
28528
28648
  /** @description Denotes whether the originating account is the same as the paying account */
28529
28649
  sponsored: boolean;
28530
28650
  sponsor_address?: string;
28531
- post_condition_mode: "allow" | "deny";
28651
+ post_condition_mode: "allow" | "deny" | "originator";
28532
28652
  post_conditions: ({
28533
28653
  principal: {
28534
28654
  /** @enum {string} */
@@ -28584,7 +28704,7 @@ export interface operations {
28584
28704
  address: string;
28585
28705
  contract_name: string;
28586
28706
  };
28587
- condition_code: "sent" | "not_sent";
28707
+ condition_code: "sent" | "not_sent" | "maybe_sent";
28588
28708
  /** @enum {string} */
28589
28709
  type: "non_fungible";
28590
28710
  asset_value: {
@@ -28742,7 +28862,7 @@ export interface operations {
28742
28862
  /** @description Denotes whether the originating account is the same as the paying account */
28743
28863
  sponsored: boolean;
28744
28864
  sponsor_address?: string;
28745
- post_condition_mode: "allow" | "deny";
28865
+ post_condition_mode: "allow" | "deny" | "originator";
28746
28866
  post_conditions: ({
28747
28867
  principal: {
28748
28868
  /** @enum {string} */
@@ -28798,7 +28918,7 @@ export interface operations {
28798
28918
  address: string;
28799
28919
  contract_name: string;
28800
28920
  };
28801
- condition_code: "sent" | "not_sent";
28921
+ condition_code: "sent" | "not_sent" | "maybe_sent";
28802
28922
  /** @enum {string} */
28803
28923
  type: "non_fungible";
28804
28924
  asset_value: {
@@ -29405,7 +29525,7 @@ export interface operations {
29405
29525
  content: {
29406
29526
  "application/json": {
29407
29527
  [key: string]: {
29408
- /** @constant */
29528
+ /** @enum {boolean} */
29409
29529
  found: true;
29410
29530
  result: {
29411
29531
  /** @description Smart contract deployment transaction status */
@@ -29418,7 +29538,7 @@ export interface operations {
29418
29538
  block_height?: number;
29419
29539
  };
29420
29540
  } | {
29421
- /** @constant */
29541
+ /** @enum {boolean} */
29422
29542
  found: false;
29423
29543
  };
29424
29544
  };
@@ -29440,6 +29560,78 @@ export interface operations {
29440
29560
  };
29441
29561
  };
29442
29562
  };
29563
+ get_smart_contract_logs: {
29564
+ parameters: {
29565
+ query?: {
29566
+ /** @description Results per page */
29567
+ limit?: number;
29568
+ /** @description Result offset */
29569
+ offset?: number;
29570
+ /** @description Cursor for transaction event pagination (block_height:microblock_sequence:tx_index:event_index) */
29571
+ cursor?: string;
29572
+ };
29573
+ header?: never;
29574
+ path: {
29575
+ /**
29576
+ * @description Contract identifier formatted as `<contract_address>.<contract_name>`
29577
+ * @example SP000000000000000000002Q6VF78.pox-3
29578
+ */
29579
+ contract_id: string;
29580
+ };
29581
+ cookie?: never;
29582
+ };
29583
+ requestBody?: never;
29584
+ responses: {
29585
+ /** @description Default Response */
29586
+ 200: {
29587
+ headers: {
29588
+ [name: string]: unknown;
29589
+ };
29590
+ content: {
29591
+ "application/json": {
29592
+ /** @example 20 */
29593
+ limit: number;
29594
+ /** @example 0 */
29595
+ offset: number;
29596
+ /** @example 1 */
29597
+ total: number;
29598
+ next_cursor: string | null;
29599
+ prev_cursor: string | null;
29600
+ cursor: string | null;
29601
+ results: ({
29602
+ event_index: number;
29603
+ } & {
29604
+ /** @enum {string} */
29605
+ event_type: "smart_contract_log";
29606
+ tx_id: string;
29607
+ contract_log: {
29608
+ contract_id: string;
29609
+ topic: string;
29610
+ value: {
29611
+ hex: string;
29612
+ repr: string;
29613
+ };
29614
+ };
29615
+ })[];
29616
+ };
29617
+ };
29618
+ };
29619
+ /** @description Default Response */
29620
+ "4XX": {
29621
+ headers: {
29622
+ [name: string]: unknown;
29623
+ };
29624
+ content: {
29625
+ "application/json": {
29626
+ error: string;
29627
+ message?: string;
29628
+ } & {
29629
+ [key: string]: unknown;
29630
+ };
29631
+ };
29632
+ };
29633
+ };
29634
+ };
29443
29635
  get_mempool_fee_priorities: {
29444
29636
  parameters: {
29445
29637
  query?: never;
@@ -29821,7 +30013,7 @@ export interface operations {
29821
30013
  /** @description Denotes whether the originating account is the same as the paying account */
29822
30014
  sponsored: boolean;
29823
30015
  sponsor_address?: string;
29824
- post_condition_mode: "allow" | "deny";
30016
+ post_condition_mode: "allow" | "deny" | "originator";
29825
30017
  post_conditions: ({
29826
30018
  principal: {
29827
30019
  /** @enum {string} */
@@ -29877,7 +30069,7 @@ export interface operations {
29877
30069
  address: string;
29878
30070
  contract_name: string;
29879
30071
  };
29880
- condition_code: "sent" | "not_sent";
30072
+ condition_code: "sent" | "not_sent" | "maybe_sent";
29881
30073
  /** @enum {string} */
29882
30074
  type: "non_fungible";
29883
30075
  asset_value: {
@@ -30036,7 +30228,7 @@ export interface operations {
30036
30228
  /** @description Denotes whether the originating account is the same as the paying account */
30037
30229
  sponsored: boolean;
30038
30230
  sponsor_address?: string;
30039
- post_condition_mode: "allow" | "deny";
30231
+ post_condition_mode: "allow" | "deny" | "originator";
30040
30232
  post_conditions: ({
30041
30233
  principal: {
30042
30234
  /** @enum {string} */
@@ -30092,7 +30284,7 @@ export interface operations {
30092
30284
  address: string;
30093
30285
  contract_name: string;
30094
30286
  };
30095
- condition_code: "sent" | "not_sent";
30287
+ condition_code: "sent" | "not_sent" | "maybe_sent";
30096
30288
  /** @enum {string} */
30097
30289
  type: "non_fungible";
30098
30290
  asset_value: {
@@ -30251,7 +30443,7 @@ export interface operations {
30251
30443
  /** @description Denotes whether the originating account is the same as the paying account */
30252
30444
  sponsored: boolean;
30253
30445
  sponsor_address?: string;
30254
- post_condition_mode: "allow" | "deny";
30446
+ post_condition_mode: "allow" | "deny" | "originator";
30255
30447
  post_conditions: ({
30256
30448
  principal: {
30257
30449
  /** @enum {string} */
@@ -30307,7 +30499,7 @@ export interface operations {
30307
30499
  address: string;
30308
30500
  contract_name: string;
30309
30501
  };
30310
- condition_code: "sent" | "not_sent";
30502
+ condition_code: "sent" | "not_sent" | "maybe_sent";
30311
30503
  /** @enum {string} */
30312
30504
  type: "non_fungible";
30313
30505
  asset_value: {
@@ -30473,7 +30665,7 @@ export interface operations {
30473
30665
  /** @description Denotes whether the originating account is the same as the paying account */
30474
30666
  sponsored: boolean;
30475
30667
  sponsor_address?: string;
30476
- post_condition_mode: "allow" | "deny";
30668
+ post_condition_mode: "allow" | "deny" | "originator";
30477
30669
  post_conditions: ({
30478
30670
  principal: {
30479
30671
  /** @enum {string} */
@@ -30529,7 +30721,7 @@ export interface operations {
30529
30721
  address: string;
30530
30722
  contract_name: string;
30531
30723
  };
30532
- condition_code: "sent" | "not_sent";
30724
+ condition_code: "sent" | "not_sent" | "maybe_sent";
30533
30725
  /** @enum {string} */
30534
30726
  type: "non_fungible";
30535
30727
  asset_value: {
@@ -30687,7 +30879,7 @@ export interface operations {
30687
30879
  /** @description Denotes whether the originating account is the same as the paying account */
30688
30880
  sponsored: boolean;
30689
30881
  sponsor_address?: string;
30690
- post_condition_mode: "allow" | "deny";
30882
+ post_condition_mode: "allow" | "deny" | "originator";
30691
30883
  post_conditions: ({
30692
30884
  principal: {
30693
30885
  /** @enum {string} */
@@ -30743,7 +30935,7 @@ export interface operations {
30743
30935
  address: string;
30744
30936
  contract_name: string;
30745
30937
  };
30746
- condition_code: "sent" | "not_sent";
30938
+ condition_code: "sent" | "not_sent" | "maybe_sent";
30747
30939
  /** @enum {string} */
30748
30940
  type: "non_fungible";
30749
30941
  asset_value: {
@@ -30901,7 +31093,7 @@ export interface operations {
30901
31093
  /** @description Denotes whether the originating account is the same as the paying account */
30902
31094
  sponsored: boolean;
30903
31095
  sponsor_address?: string;
30904
- post_condition_mode: "allow" | "deny";
31096
+ post_condition_mode: "allow" | "deny" | "originator";
30905
31097
  post_conditions: ({
30906
31098
  principal: {
30907
31099
  /** @enum {string} */
@@ -30957,7 +31149,7 @@ export interface operations {
30957
31149
  address: string;
30958
31150
  contract_name: string;
30959
31151
  };
30960
- condition_code: "sent" | "not_sent";
31152
+ condition_code: "sent" | "not_sent" | "maybe_sent";
30961
31153
  /** @enum {string} */
30962
31154
  type: "non_fungible";
30963
31155
  asset_value: {
@@ -31705,10 +31897,7 @@ export interface operations {
31705
31897
  };
31706
31898
  content: {
31707
31899
  "application/json": {
31708
- error: string;
31709
- message?: string;
31710
- } & {
31711
- [key: string]: unknown;
31900
+ [key: string]: string;
31712
31901
  };
31713
31902
  };
31714
31903
  };
@@ -31802,10 +31991,7 @@ export interface operations {
31802
31991
  };
31803
31992
  content: {
31804
31993
  "application/json": {
31805
- error: string;
31806
- message?: string;
31807
- } & {
31808
- [key: string]: unknown;
31994
+ [key: string]: string;
31809
31995
  };
31810
31996
  };
31811
31997
  };