@sentio/sdk 2.56.0 → 2.57.0-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -106,10 +106,10 @@ export namespace token {
106
106
  }
107
107
  }
108
108
 
109
- export interface MutationInstance extends TypedEventInstance<Mutation> {
109
+ export type MutationInstance = TypedEventInstance<Mutation> & {
110
110
  data_decoded: Mutation;
111
111
  type_arguments: [];
112
- }
112
+ };
113
113
 
114
114
  export interface MutationEvent {
115
115
  mutated_field_name: string;
@@ -127,11 +127,10 @@ export namespace token {
127
127
  }
128
128
  }
129
129
 
130
- export interface MutationEventInstance
131
- extends TypedEventInstance<MutationEvent> {
130
+ export type MutationEventInstance = TypedEventInstance<MutationEvent> & {
132
131
  data_decoded: MutationEvent;
133
132
  type_arguments: [];
134
- }
133
+ };
135
134
 
136
135
  export interface ConcurrentTokenIdentifiers {
137
136
  index: _0x1.aggregator_v2.AggregatorSnapshot<bigint>;
@@ -570,10 +569,10 @@ export namespace collection {
570
569
  }
571
570
  }
572
571
 
573
- export interface BurnInstance extends TypedEventInstance<Burn> {
572
+ export type BurnInstance = TypedEventInstance<Burn> & {
574
573
  data_decoded: Burn;
575
574
  type_arguments: [];
576
- }
575
+ };
577
576
 
578
577
  export interface BurnEvent {
579
578
  index: bigint;
@@ -590,10 +589,10 @@ export namespace collection {
590
589
  }
591
590
  }
592
591
 
593
- export interface BurnEventInstance extends TypedEventInstance<BurnEvent> {
592
+ export type BurnEventInstance = TypedEventInstance<BurnEvent> & {
594
593
  data_decoded: BurnEvent;
595
594
  type_arguments: [];
596
- }
595
+ };
597
596
 
598
597
  export interface Collection {
599
598
  creator: MoveAddressType;
@@ -631,11 +630,11 @@ export namespace collection {
631
630
  }
632
631
  }
633
632
 
634
- export interface ConcurrentBurnEventInstance
635
- extends TypedEventInstance<ConcurrentBurnEvent> {
636
- data_decoded: ConcurrentBurnEvent;
637
- type_arguments: [];
638
- }
633
+ export type ConcurrentBurnEventInstance =
634
+ TypedEventInstance<ConcurrentBurnEvent> & {
635
+ data_decoded: ConcurrentBurnEvent;
636
+ type_arguments: [];
637
+ };
639
638
 
640
639
  export interface ConcurrentMintEvent {
641
640
  collection_addr: MoveAddressType;
@@ -655,11 +654,11 @@ export namespace collection {
655
654
  }
656
655
  }
657
656
 
658
- export interface ConcurrentMintEventInstance
659
- extends TypedEventInstance<ConcurrentMintEvent> {
660
- data_decoded: ConcurrentMintEvent;
661
- type_arguments: [];
662
- }
657
+ export type ConcurrentMintEventInstance =
658
+ TypedEventInstance<ConcurrentMintEvent> & {
659
+ data_decoded: ConcurrentMintEvent;
660
+ type_arguments: [];
661
+ };
663
662
 
664
663
  export interface FixedSupply {
665
664
  current_supply: bigint;
@@ -695,10 +694,10 @@ export namespace collection {
695
694
  }
696
695
  }
697
696
 
698
- export interface MintInstance extends TypedEventInstance<Mint> {
697
+ export type MintInstance = TypedEventInstance<Mint> & {
699
698
  data_decoded: Mint;
700
699
  type_arguments: [];
701
- }
700
+ };
702
701
 
703
702
  export interface MintEvent {
704
703
  index: bigint;
@@ -715,10 +714,10 @@ export namespace collection {
715
714
  }
716
715
  }
717
716
 
718
- export interface MintEventInstance extends TypedEventInstance<MintEvent> {
717
+ export type MintEventInstance = TypedEventInstance<MintEvent> & {
719
718
  data_decoded: MintEvent;
720
719
  type_arguments: [];
721
- }
720
+ };
722
721
 
723
722
  export interface Mutation {
724
723
  mutated_field_name: string;
@@ -737,10 +736,10 @@ export namespace collection {
737
736
  }
738
737
  }
739
738
 
740
- export interface MutationInstance extends TypedEventInstance<Mutation> {
739
+ export type MutationInstance = TypedEventInstance<Mutation> & {
741
740
  data_decoded: Mutation;
742
741
  type_arguments: [];
743
- }
742
+ };
744
743
 
745
744
  export interface MutationEvent {
746
745
  mutated_field_name: string;
@@ -756,11 +755,10 @@ export namespace collection {
756
755
  }
757
756
  }
758
757
 
759
- export interface MutationEventInstance
760
- extends TypedEventInstance<MutationEvent> {
758
+ export type MutationEventInstance = TypedEventInstance<MutationEvent> & {
761
759
  data_decoded: MutationEvent;
762
760
  type_arguments: [];
763
- }
761
+ };
764
762
 
765
763
  export interface SetMaxSupply {
766
764
  collection: _0x1.object$.Object<collection.Collection>;
@@ -778,11 +776,10 @@ export namespace collection {
778
776
  }
779
777
  }
780
778
 
781
- export interface SetMaxSupplyInstance
782
- extends TypedEventInstance<SetMaxSupply> {
779
+ export type SetMaxSupplyInstance = TypedEventInstance<SetMaxSupply> & {
783
780
  data_decoded: SetMaxSupply;
784
781
  type_arguments: [];
785
- }
782
+ };
786
783
 
787
784
  export interface UnlimitedSupply {
788
785
  current_supply: bigint;
@@ -745,10 +745,10 @@ export namespace bit_vector {
745
745
  }
746
746
  }
747
747
 
748
- export interface BitVectorInstance extends TypedEventInstance<BitVector> {
748
+ export type BitVectorInstance = TypedEventInstance<BitVector> & {
749
749
  data_decoded: BitVector;
750
750
  type_arguments: [];
751
- }
751
+ };
752
752
 
753
753
  export namespace builder {
754
754
  export function isIndexSet(
@@ -1082,11 +1082,10 @@ export namespace fixed_point32 {
1082
1082
  }
1083
1083
  }
1084
1084
 
1085
- export interface FixedPoint32Instance
1086
- extends TypedEventInstance<FixedPoint32> {
1085
+ export type FixedPoint32Instance = TypedEventInstance<FixedPoint32> & {
1087
1086
  data_decoded: FixedPoint32;
1088
1087
  type_arguments: [];
1089
- }
1088
+ };
1090
1089
 
1091
1090
  export namespace builder {
1092
1091
  export function createFromRational(
@@ -2015,10 +2014,10 @@ export namespace string$ {
2015
2014
  }
2016
2015
  }
2017
2016
 
2018
- export interface StringInstance extends TypedEventInstance<String> {
2017
+ export type StringInstance = TypedEventInstance<String> & {
2019
2018
  data_decoded: String;
2020
2019
  type_arguments: [];
2021
- }
2020
+ };
2022
2021
 
2023
2022
  export namespace builder {
2024
2023
  export function append(
@@ -2516,10 +2515,10 @@ export namespace type_name {
2516
2515
  }
2517
2516
  }
2518
2517
 
2519
- export interface TypeNameInstance extends TypedEventInstance<TypeName> {
2518
+ export type TypeNameInstance = TypedEventInstance<TypeName> & {
2520
2519
  data_decoded: TypeName;
2521
2520
  type_arguments: [];
2522
- }
2521
+ };
2523
2522
 
2524
2523
  export namespace builder {
2525
2524
  export function borrowString(
@@ -4580,10 +4579,10 @@ export namespace uq32_32 {
4580
4579
  }
4581
4580
  }
4582
4581
 
4583
- export interface UQ32_32Instance extends TypedEventInstance<UQ32_32> {
4582
+ export type UQ32_32Instance = TypedEventInstance<UQ32_32> & {
4584
4583
  data_decoded: UQ32_32;
4585
4584
  type_arguments: [];
4586
- }
4585
+ };
4587
4586
 
4588
4587
  export namespace builder {
4589
4588
  export function add(
@@ -5089,10 +5088,10 @@ export namespace uq64_64 {
5089
5088
  }
5090
5089
  }
5091
5090
 
5092
- export interface UQ64_64Instance extends TypedEventInstance<UQ64_64> {
5091
+ export type UQ64_64Instance = TypedEventInstance<UQ64_64> & {
5093
5092
  data_decoded: UQ64_64;
5094
5093
  type_arguments: [];
5095
- }
5094
+ };
5096
5095
 
5097
5096
  export namespace builder {
5098
5097
  export function add(
@@ -365,10 +365,10 @@ export namespace authenticator_state {
365
365
  }
366
366
  }
367
367
 
368
- export interface ActiveJwkInstance extends TypedEventInstance<ActiveJwk> {
368
+ export type ActiveJwkInstance = TypedEventInstance<ActiveJwk> & {
369
369
  data_decoded: ActiveJwk;
370
370
  type_arguments: [];
371
- }
371
+ };
372
372
 
373
373
  export interface AuthenticatorState {
374
374
  id: object$.UID;
@@ -422,10 +422,10 @@ export namespace authenticator_state {
422
422
  }
423
423
  }
424
424
 
425
- export interface JWKInstance extends TypedEventInstance<JWK> {
425
+ export type JWKInstance = TypedEventInstance<JWK> & {
426
426
  data_decoded: JWK;
427
427
  type_arguments: [];
428
- }
428
+ };
429
429
 
430
430
  export interface JwkId {
431
431
  iss: string;
@@ -442,10 +442,10 @@ export namespace authenticator_state {
442
442
  }
443
443
  }
444
444
 
445
- export interface JwkIdInstance extends TypedEventInstance<JwkId> {
445
+ export type JwkIdInstance = TypedEventInstance<JwkId> & {
446
446
  data_decoded: JwkId;
447
447
  type_arguments: [];
448
- }
448
+ };
449
449
 
450
450
  export namespace builder {}
451
451
  export namespace view {}
@@ -1306,10 +1306,10 @@ export namespace bcs {
1306
1306
  }
1307
1307
  }
1308
1308
 
1309
- export interface BCSInstance extends TypedEventInstance<BCS> {
1309
+ export type BCSInstance = TypedEventInstance<BCS> & {
1310
1310
  data_decoded: BCS;
1311
1311
  type_arguments: [];
1312
- }
1312
+ };
1313
1313
 
1314
1314
  export namespace builder {
1315
1315
  export function intoRemainderBytes(
@@ -3926,11 +3926,12 @@ export namespace coin {
3926
3926
  }
3927
3927
  }
3928
3928
 
3929
- export interface CurrencyCreatedInstance
3930
- extends TypedEventInstance<CurrencyCreated<any>> {
3929
+ export type CurrencyCreatedInstance = TypedEventInstance<
3930
+ CurrencyCreated<any>
3931
+ > & {
3931
3932
  data_decoded: CurrencyCreated<any>;
3932
3933
  type_arguments: [string];
3933
- }
3934
+ };
3934
3935
 
3935
3936
  export interface DenyCap<T0> {
3936
3937
  id: object$.UID;
@@ -6456,10 +6457,10 @@ export namespace deny_list {
6456
6457
  }
6457
6458
  }
6458
6459
 
6459
- export interface AddressKeyInstance extends TypedEventInstance<AddressKey> {
6460
+ export type AddressKeyInstance = TypedEventInstance<AddressKey> & {
6460
6461
  data_decoded: AddressKey;
6461
6462
  type_arguments: [];
6462
- }
6463
+ };
6463
6464
 
6464
6465
  export interface ConfigKey {
6465
6466
  per_type_index: bigint;
@@ -6476,10 +6477,10 @@ export namespace deny_list {
6476
6477
  }
6477
6478
  }
6478
6479
 
6479
- export interface ConfigKeyInstance extends TypedEventInstance<ConfigKey> {
6480
+ export type ConfigKeyInstance = TypedEventInstance<ConfigKey> & {
6480
6481
  data_decoded: ConfigKey;
6481
6482
  type_arguments: [];
6482
- }
6483
+ };
6483
6484
 
6484
6485
  export interface ConfigWriteCap {
6485
6486
  dummy_field: boolean;
@@ -6524,11 +6525,10 @@ export namespace deny_list {
6524
6525
  }
6525
6526
  }
6526
6527
 
6527
- export interface GlobalPauseKeyInstance
6528
- extends TypedEventInstance<GlobalPauseKey> {
6528
+ export type GlobalPauseKeyInstance = TypedEventInstance<GlobalPauseKey> & {
6529
6529
  data_decoded: GlobalPauseKey;
6530
6530
  type_arguments: [];
6531
- }
6531
+ };
6532
6532
 
6533
6533
  export interface PerTypeConfigCreated {
6534
6534
  key: deny_list.ConfigKey;
@@ -6547,11 +6547,11 @@ export namespace deny_list {
6547
6547
  }
6548
6548
  }
6549
6549
 
6550
- export interface PerTypeConfigCreatedInstance
6551
- extends TypedEventInstance<PerTypeConfigCreated> {
6552
- data_decoded: PerTypeConfigCreated;
6553
- type_arguments: [];
6554
- }
6550
+ export type PerTypeConfigCreatedInstance =
6551
+ TypedEventInstance<PerTypeConfigCreated> & {
6552
+ data_decoded: PerTypeConfigCreated;
6553
+ type_arguments: [];
6554
+ };
6555
6555
 
6556
6556
  export interface PerTypeList {
6557
6557
  id: object$.UID;
@@ -7207,11 +7207,12 @@ export namespace display {
7207
7207
  }
7208
7208
  }
7209
7209
 
7210
- export interface DisplayCreatedInstance
7211
- extends TypedEventInstance<DisplayCreated<any>> {
7210
+ export type DisplayCreatedInstance = TypedEventInstance<
7211
+ DisplayCreated<any>
7212
+ > & {
7212
7213
  data_decoded: DisplayCreated<any>;
7213
7214
  type_arguments: [string];
7214
- }
7215
+ };
7215
7216
 
7216
7217
  export interface VersionUpdated<T0> {
7217
7218
  id: object$.ID;
@@ -7233,11 +7234,12 @@ export namespace display {
7233
7234
  }
7234
7235
  }
7235
7236
 
7236
- export interface VersionUpdatedInstance
7237
- extends TypedEventInstance<VersionUpdated<any>> {
7237
+ export type VersionUpdatedInstance = TypedEventInstance<
7238
+ VersionUpdated<any>
7239
+ > & {
7238
7240
  data_decoded: VersionUpdated<any>;
7239
7241
  type_arguments: [string];
7240
- }
7242
+ };
7241
7243
 
7242
7244
  export namespace builder {
7243
7245
  export function add<T0 = any>(
@@ -8396,10 +8398,10 @@ export namespace dynamic_object_field {
8396
8398
  }
8397
8399
  }
8398
8400
 
8399
- export interface WrapperInstance extends TypedEventInstance<Wrapper<any>> {
8401
+ export type WrapperInstance = TypedEventInstance<Wrapper<any>> & {
8400
8402
  data_decoded: Wrapper<any>;
8401
8403
  type_arguments: [string];
8402
- }
8404
+ };
8403
8405
 
8404
8406
  export namespace builder {
8405
8407
  export function add<T0 = any, T1 = any>(
@@ -9308,10 +9310,10 @@ export namespace groth16 {
9308
9310
  }
9309
9311
  }
9310
9312
 
9311
- export interface CurveInstance extends TypedEventInstance<Curve> {
9313
+ export type CurveInstance = TypedEventInstance<Curve> & {
9312
9314
  data_decoded: Curve;
9313
9315
  type_arguments: [];
9314
- }
9316
+ };
9315
9317
 
9316
9318
  export interface PreparedVerifyingKey {
9317
9319
  vk_gamma_abc_g1_bytes: number[];
@@ -9332,11 +9334,11 @@ export namespace groth16 {
9332
9334
  }
9333
9335
  }
9334
9336
 
9335
- export interface PreparedVerifyingKeyInstance
9336
- extends TypedEventInstance<PreparedVerifyingKey> {
9337
- data_decoded: PreparedVerifyingKey;
9338
- type_arguments: [];
9339
- }
9337
+ export type PreparedVerifyingKeyInstance =
9338
+ TypedEventInstance<PreparedVerifyingKey> & {
9339
+ data_decoded: PreparedVerifyingKey;
9340
+ type_arguments: [];
9341
+ };
9340
9342
 
9341
9343
  export interface ProofPoints {
9342
9344
  bytes: number[];
@@ -9352,10 +9354,10 @@ export namespace groth16 {
9352
9354
  }
9353
9355
  }
9354
9356
 
9355
- export interface ProofPointsInstance extends TypedEventInstance<ProofPoints> {
9357
+ export type ProofPointsInstance = TypedEventInstance<ProofPoints> & {
9356
9358
  data_decoded: ProofPoints;
9357
9359
  type_arguments: [];
9358
- }
9360
+ };
9359
9361
 
9360
9362
  export interface PublicProofInputs {
9361
9363
  bytes: number[];
@@ -9373,11 +9375,11 @@ export namespace groth16 {
9373
9375
  }
9374
9376
  }
9375
9377
 
9376
- export interface PublicProofInputsInstance
9377
- extends TypedEventInstance<PublicProofInputs> {
9378
- data_decoded: PublicProofInputs;
9379
- type_arguments: [];
9380
- }
9378
+ export type PublicProofInputsInstance =
9379
+ TypedEventInstance<PublicProofInputs> & {
9380
+ data_decoded: PublicProofInputs;
9381
+ type_arguments: [];
9382
+ };
9381
9383
 
9382
9384
  export namespace builder {
9383
9385
  export function bls12381(
@@ -9675,10 +9677,10 @@ export namespace group_ops {
9675
9677
  }
9676
9678
  }
9677
9679
 
9678
- export interface ElementInstance extends TypedEventInstance<Element<any>> {
9680
+ export type ElementInstance = TypedEventInstance<Element<any>> & {
9679
9681
  data_decoded: Element<any>;
9680
9682
  type_arguments: [string];
9681
- }
9683
+ };
9682
9684
 
9683
9685
  export namespace builder {
9684
9686
  export function add<T0 = any>(
@@ -10508,10 +10510,10 @@ export namespace kiosk {
10508
10510
  }
10509
10511
  }
10510
10512
 
10511
- export interface ItemInstance extends TypedEventInstance<Item> {
10513
+ export type ItemInstance = TypedEventInstance<Item> & {
10512
10514
  data_decoded: Item;
10513
10515
  type_arguments: [];
10514
- }
10516
+ };
10515
10517
 
10516
10518
  export interface ItemDelisted<T0> {
10517
10519
  kiosk: object$.ID;
@@ -10530,11 +10532,10 @@ export namespace kiosk {
10530
10532
  }
10531
10533
  }
10532
10534
 
10533
- export interface ItemDelistedInstance
10534
- extends TypedEventInstance<ItemDelisted<any>> {
10535
+ export type ItemDelistedInstance = TypedEventInstance<ItemDelisted<any>> & {
10535
10536
  data_decoded: ItemDelisted<any>;
10536
10537
  type_arguments: [string];
10537
- }
10538
+ };
10538
10539
 
10539
10540
  export interface ItemListed<T0> {
10540
10541
  kiosk: object$.ID;
@@ -10554,11 +10555,10 @@ export namespace kiosk {
10554
10555
  }
10555
10556
  }
10556
10557
 
10557
- export interface ItemListedInstance
10558
- extends TypedEventInstance<ItemListed<any>> {
10558
+ export type ItemListedInstance = TypedEventInstance<ItemListed<any>> & {
10559
10559
  data_decoded: ItemListed<any>;
10560
10560
  type_arguments: [string];
10561
- }
10561
+ };
10562
10562
 
10563
10563
  export interface ItemPurchased<T0> {
10564
10564
  kiosk: object$.ID;
@@ -10580,11 +10580,10 @@ export namespace kiosk {
10580
10580
  }
10581
10581
  }
10582
10582
 
10583
- export interface ItemPurchasedInstance
10584
- extends TypedEventInstance<ItemPurchased<any>> {
10583
+ export type ItemPurchasedInstance = TypedEventInstance<ItemPurchased<any>> & {
10585
10584
  data_decoded: ItemPurchased<any>;
10586
10585
  type_arguments: [string];
10587
- }
10586
+ };
10588
10587
 
10589
10588
  export interface Kiosk {
10590
10589
  id: object$.UID;
@@ -10634,10 +10633,10 @@ export namespace kiosk {
10634
10633
  }
10635
10634
  }
10636
10635
 
10637
- export interface ListingInstance extends TypedEventInstance<Listing> {
10636
+ export type ListingInstance = TypedEventInstance<Listing> & {
10638
10637
  data_decoded: Listing;
10639
10638
  type_arguments: [];
10640
- }
10639
+ };
10641
10640
 
10642
10641
  export interface Lock {
10643
10642
  id: object$.ID;
@@ -10653,10 +10652,10 @@ export namespace kiosk {
10653
10652
  }
10654
10653
  }
10655
10654
 
10656
- export interface LockInstance extends TypedEventInstance<Lock> {
10655
+ export type LockInstance = TypedEventInstance<Lock> & {
10657
10656
  data_decoded: Lock;
10658
10657
  type_arguments: [];
10659
- }
10658
+ };
10660
10659
 
10661
10660
  export interface PurchaseCap<T0> {
10662
10661
  id: object$.UID;
@@ -12218,11 +12217,10 @@ export namespace kiosk_extension {
12218
12217
  }
12219
12218
  }
12220
12219
 
12221
- export interface ExtensionKeyInstance
12222
- extends TypedEventInstance<ExtensionKey<any>> {
12220
+ export type ExtensionKeyInstance = TypedEventInstance<ExtensionKey<any>> & {
12223
12221
  data_decoded: ExtensionKey<any>;
12224
12222
  type_arguments: [string];
12225
- }
12223
+ };
12226
12224
 
12227
12225
  export namespace builder {
12228
12226
  export function add<T0 = any>(
@@ -18292,10 +18290,10 @@ export namespace token {
18292
18290
  }
18293
18291
  }
18294
18292
 
18295
- export interface RuleKeyInstance extends TypedEventInstance<RuleKey<any>> {
18293
+ export type RuleKeyInstance = TypedEventInstance<RuleKey<any>> & {
18296
18294
  data_decoded: RuleKey<any>;
18297
18295
  type_arguments: [string];
18298
- }
18296
+ };
18299
18297
 
18300
18298
  export interface Token<T0> {
18301
18299
  id: object$.UID;
@@ -18370,11 +18368,12 @@ export namespace token {
18370
18368
  }
18371
18369
  }
18372
18370
 
18373
- export interface TokenPolicyCreatedInstance
18374
- extends TypedEventInstance<TokenPolicyCreated<any>> {
18371
+ export type TokenPolicyCreatedInstance = TypedEventInstance<
18372
+ TokenPolicyCreated<any>
18373
+ > & {
18375
18374
  data_decoded: TokenPolicyCreated<any>;
18376
18375
  type_arguments: [string];
18377
- }
18376
+ };
18378
18377
 
18379
18378
  export namespace builder {
18380
18379
  export function action<T0 = any>(
@@ -20668,10 +20667,10 @@ export namespace transfer_policy {
20668
20667
  }
20669
20668
  }
20670
20669
 
20671
- export interface RuleKeyInstance extends TypedEventInstance<RuleKey<any>> {
20670
+ export type RuleKeyInstance = TypedEventInstance<RuleKey<any>> & {
20672
20671
  data_decoded: RuleKey<any>;
20673
20672
  type_arguments: [string];
20674
- }
20673
+ };
20675
20674
 
20676
20675
  export interface TransferPolicy<T0> {
20677
20676
  id: object$.UID;
@@ -20730,11 +20729,12 @@ export namespace transfer_policy {
20730
20729
  }
20731
20730
  }
20732
20731
 
20733
- export interface TransferPolicyCreatedInstance
20734
- extends TypedEventInstance<TransferPolicyCreated<any>> {
20732
+ export type TransferPolicyCreatedInstance = TypedEventInstance<
20733
+ TransferPolicyCreated<any>
20734
+ > & {
20735
20735
  data_decoded: TransferPolicyCreated<any>;
20736
20736
  type_arguments: [string];
20737
- }
20737
+ };
20738
20738
 
20739
20739
  export interface TransferPolicyDestroyed<T0> {
20740
20740
  id: object$.ID;
@@ -20754,11 +20754,12 @@ export namespace transfer_policy {
20754
20754
  }
20755
20755
  }
20756
20756
 
20757
- export interface TransferPolicyDestroyedInstance
20758
- extends TypedEventInstance<TransferPolicyDestroyed<any>> {
20757
+ export type TransferPolicyDestroyedInstance = TypedEventInstance<
20758
+ TransferPolicyDestroyed<any>
20759
+ > & {
20759
20760
  data_decoded: TransferPolicyDestroyed<any>;
20760
20761
  type_arguments: [string];
20761
- }
20762
+ };
20762
20763
 
20763
20764
  export interface TransferRequest<T0> {
20764
20765
  item: object$.ID;
@@ -21767,10 +21768,10 @@ export namespace url {
21767
21768
  }
21768
21769
  }
21769
21770
 
21770
- export interface UrlInstance extends TypedEventInstance<Url> {
21771
+ export type UrlInstance = TypedEventInstance<Url> & {
21771
21772
  data_decoded: Url;
21772
21773
  type_arguments: [];
21773
- }
21774
+ };
21774
21775
 
21775
21776
  export namespace builder {
21776
21777
  export function innerUrl(
@@ -22020,10 +22021,10 @@ export namespace vec_map {
22020
22021
  }
22021
22022
  }
22022
22023
 
22023
- export interface EntryInstance extends TypedEventInstance<Entry<any, any>> {
22024
+ export type EntryInstance = TypedEventInstance<Entry<any, any>> & {
22024
22025
  data_decoded: Entry<any, any>;
22025
22026
  type_arguments: [string, string];
22026
- }
22027
+ };
22027
22028
 
22028
22029
  export interface VecMap<T0, T1> {
22029
22030
  contents: vec_map.Entry<T0, T1>[];
@@ -22042,10 +22043,10 @@ export namespace vec_map {
22042
22043
  }
22043
22044
  }
22044
22045
 
22045
- export interface VecMapInstance extends TypedEventInstance<VecMap<any, any>> {
22046
+ export type VecMapInstance = TypedEventInstance<VecMap<any, any>> & {
22046
22047
  data_decoded: VecMap<any, any>;
22047
22048
  type_arguments: [string, string];
22048
- }
22049
+ };
22049
22050
 
22050
22051
  export namespace builder {
22051
22052
  export function contains<T0 = any, T1 = any>(
@@ -22864,10 +22865,10 @@ export namespace vec_set {
22864
22865
  }
22865
22866
  }
22866
22867
 
22867
- export interface VecSetInstance extends TypedEventInstance<VecSet<any>> {
22868
+ export type VecSetInstance = TypedEventInstance<VecSet<any>> & {
22868
22869
  data_decoded: VecSet<any>;
22869
22870
  type_arguments: [string];
22870
- }
22871
+ };
22871
22872
 
22872
22873
  export namespace builder {
22873
22874
  export function contains<T0 = any>(