@sentio/sdk 2.56.0-rc.3 → 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.
@@ -410,10 +410,10 @@ export namespace token {
410
410
  }
411
411
  }
412
412
 
413
- export interface DepositInstance extends TypedEventInstance<Deposit> {
413
+ export type DepositInstance = TypedEventInstance<Deposit> & {
414
414
  data_decoded: Deposit;
415
415
  type_arguments: [];
416
- }
416
+ };
417
417
 
418
418
  export interface DepositEvent {
419
419
  id: token.TokenId;
@@ -430,11 +430,10 @@ export namespace token {
430
430
  }
431
431
  }
432
432
 
433
- export interface DepositEventInstance
434
- extends TypedEventInstance<DepositEvent> {
433
+ export type DepositEventInstance = TypedEventInstance<DepositEvent> & {
435
434
  data_decoded: DepositEvent;
436
435
  type_arguments: [];
437
- }
436
+ };
438
437
 
439
438
  export interface Withdraw {
440
439
  id: token.TokenId;
@@ -451,10 +450,10 @@ export namespace token {
451
450
  }
452
451
  }
453
452
 
454
- export interface WithdrawInstance extends TypedEventInstance<Withdraw> {
453
+ export type WithdrawInstance = TypedEventInstance<Withdraw> & {
455
454
  data_decoded: Withdraw;
456
455
  type_arguments: [];
457
- }
456
+ };
458
457
 
459
458
  export interface WithdrawEvent {
460
459
  id: token.TokenId;
@@ -471,11 +470,10 @@ export namespace token {
471
470
  }
472
471
  }
473
472
 
474
- export interface WithdrawEventInstance
475
- extends TypedEventInstance<WithdrawEvent> {
473
+ export type WithdrawEventInstance = TypedEventInstance<WithdrawEvent> & {
476
474
  data_decoded: WithdrawEvent;
477
475
  type_arguments: [];
478
- }
476
+ };
479
477
 
480
478
  export interface Burn {
481
479
  account: MoveAddressType;
@@ -493,10 +491,10 @@ export namespace token {
493
491
  }
494
492
  }
495
493
 
496
- export interface BurnInstance extends TypedEventInstance<Burn> {
494
+ export type BurnInstance = TypedEventInstance<Burn> & {
497
495
  data_decoded: Burn;
498
496
  type_arguments: [];
499
- }
497
+ };
500
498
 
501
499
  export interface BurnToken {
502
500
  id: token.TokenId;
@@ -513,10 +511,10 @@ export namespace token {
513
511
  }
514
512
  }
515
513
 
516
- export interface BurnTokenInstance extends TypedEventInstance<BurnToken> {
514
+ export type BurnTokenInstance = TypedEventInstance<BurnToken> & {
517
515
  data_decoded: BurnToken;
518
516
  type_arguments: [];
519
- }
517
+ };
520
518
 
521
519
  export interface BurnTokenEvent {
522
520
  id: token.TokenId;
@@ -533,11 +531,10 @@ export namespace token {
533
531
  }
534
532
  }
535
533
 
536
- export interface BurnTokenEventInstance
537
- extends TypedEventInstance<BurnTokenEvent> {
534
+ export type BurnTokenEventInstance = TypedEventInstance<BurnTokenEvent> & {
538
535
  data_decoded: BurnTokenEvent;
539
536
  type_arguments: [];
540
- }
537
+ };
541
538
 
542
539
  export interface CollectionData {
543
540
  description: string;
@@ -614,11 +611,11 @@ export namespace token {
614
611
  }
615
612
  }
616
613
 
617
- export interface CreateCollectionInstance
618
- extends TypedEventInstance<CreateCollection> {
619
- data_decoded: CreateCollection;
620
- type_arguments: [];
621
- }
614
+ export type CreateCollectionInstance =
615
+ TypedEventInstance<CreateCollection> & {
616
+ data_decoded: CreateCollection;
617
+ type_arguments: [];
618
+ };
622
619
 
623
620
  export interface CreateCollectionEvent {
624
621
  creator: MoveAddressType;
@@ -640,11 +637,11 @@ export namespace token {
640
637
  }
641
638
  }
642
639
 
643
- export interface CreateCollectionEventInstance
644
- extends TypedEventInstance<CreateCollectionEvent> {
645
- data_decoded: CreateCollectionEvent;
646
- type_arguments: [];
647
- }
640
+ export type CreateCollectionEventInstance =
641
+ TypedEventInstance<CreateCollectionEvent> & {
642
+ data_decoded: CreateCollectionEvent;
643
+ type_arguments: [];
644
+ };
648
645
 
649
646
  export interface CreateTokenData {
650
647
  id: token.TokenDataId;
@@ -673,11 +670,10 @@ export namespace token {
673
670
  }
674
671
  }
675
672
 
676
- export interface CreateTokenDataInstance
677
- extends TypedEventInstance<CreateTokenData> {
673
+ export type CreateTokenDataInstance = TypedEventInstance<CreateTokenData> & {
678
674
  data_decoded: CreateTokenData;
679
675
  type_arguments: [];
680
- }
676
+ };
681
677
 
682
678
  export interface CreateTokenDataEvent {
683
679
  id: token.TokenDataId;
@@ -706,11 +702,11 @@ export namespace token {
706
702
  }
707
703
  }
708
704
 
709
- export interface CreateTokenDataEventInstance
710
- extends TypedEventInstance<CreateTokenDataEvent> {
711
- data_decoded: CreateTokenDataEvent;
712
- type_arguments: [];
713
- }
705
+ export type CreateTokenDataEventInstance =
706
+ TypedEventInstance<CreateTokenDataEvent> & {
707
+ data_decoded: CreateTokenDataEvent;
708
+ type_arguments: [];
709
+ };
714
710
 
715
711
  export interface Mint {
716
712
  creator: MoveAddressType;
@@ -728,10 +724,10 @@ export namespace token {
728
724
  }
729
725
  }
730
726
 
731
- export interface MintInstance extends TypedEventInstance<Mint> {
727
+ export type MintInstance = TypedEventInstance<Mint> & {
732
728
  data_decoded: Mint;
733
729
  type_arguments: [];
734
- }
730
+ };
735
731
 
736
732
  export interface MintToken {
737
733
  id: token.TokenDataId;
@@ -748,10 +744,10 @@ export namespace token {
748
744
  }
749
745
  }
750
746
 
751
- export interface MintTokenInstance extends TypedEventInstance<MintToken> {
747
+ export type MintTokenInstance = TypedEventInstance<MintToken> & {
752
748
  data_decoded: MintToken;
753
749
  type_arguments: [];
754
- }
750
+ };
755
751
 
756
752
  export interface MintTokenEvent {
757
753
  id: token.TokenDataId;
@@ -768,11 +764,10 @@ export namespace token {
768
764
  }
769
765
  }
770
766
 
771
- export interface MintTokenEventInstance
772
- extends TypedEventInstance<MintTokenEvent> {
767
+ export type MintTokenEventInstance = TypedEventInstance<MintTokenEvent> & {
773
768
  data_decoded: MintTokenEvent;
774
769
  type_arguments: [];
775
- }
770
+ };
776
771
 
777
772
  export interface MutatePropertyMap {
778
773
  account: MoveAddressType;
@@ -795,11 +790,11 @@ export namespace token {
795
790
  }
796
791
  }
797
792
 
798
- export interface MutatePropertyMapInstance
799
- extends TypedEventInstance<MutatePropertyMap> {
800
- data_decoded: MutatePropertyMap;
801
- type_arguments: [];
802
- }
793
+ export type MutatePropertyMapInstance =
794
+ TypedEventInstance<MutatePropertyMap> & {
795
+ data_decoded: MutatePropertyMap;
796
+ type_arguments: [];
797
+ };
803
798
 
804
799
  export interface MutateTokenPropertyMap {
805
800
  old_id: token.TokenId;
@@ -821,11 +816,11 @@ export namespace token {
821
816
  }
822
817
  }
823
818
 
824
- export interface MutateTokenPropertyMapInstance
825
- extends TypedEventInstance<MutateTokenPropertyMap> {
826
- data_decoded: MutateTokenPropertyMap;
827
- type_arguments: [];
828
- }
819
+ export type MutateTokenPropertyMapInstance =
820
+ TypedEventInstance<MutateTokenPropertyMap> & {
821
+ data_decoded: MutateTokenPropertyMap;
822
+ type_arguments: [];
823
+ };
829
824
 
830
825
  export interface MutateTokenPropertyMapEvent {
831
826
  old_id: token.TokenId;
@@ -847,11 +842,11 @@ export namespace token {
847
842
  }
848
843
  }
849
844
 
850
- export interface MutateTokenPropertyMapEventInstance
851
- extends TypedEventInstance<MutateTokenPropertyMapEvent> {
852
- data_decoded: MutateTokenPropertyMapEvent;
853
- type_arguments: [];
854
- }
845
+ export type MutateTokenPropertyMapEventInstance =
846
+ TypedEventInstance<MutateTokenPropertyMapEvent> & {
847
+ data_decoded: MutateTokenPropertyMapEvent;
848
+ type_arguments: [];
849
+ };
855
850
 
856
851
  export interface Royalty {
857
852
  royalty_points_numerator: bigint;
@@ -935,11 +930,11 @@ export namespace token {
935
930
  }
936
931
  }
937
932
 
938
- export interface TokenDataCreationInstance
939
- extends TypedEventInstance<TokenDataCreation> {
940
- data_decoded: TokenDataCreation;
941
- type_arguments: [];
942
- }
933
+ export type TokenDataCreationInstance =
934
+ TypedEventInstance<TokenDataCreation> & {
935
+ data_decoded: TokenDataCreation;
936
+ type_arguments: [];
937
+ };
943
938
 
944
939
  export interface TokenDataId {
945
940
  creator: MoveAddressType;
@@ -973,11 +968,10 @@ export namespace token {
973
968
  }
974
969
  }
975
970
 
976
- export interface TokenDepositInstance
977
- extends TypedEventInstance<TokenDeposit> {
971
+ export type TokenDepositInstance = TypedEventInstance<TokenDeposit> & {
978
972
  data_decoded: TokenDeposit;
979
973
  type_arguments: [];
980
- }
974
+ };
981
975
 
982
976
  export interface TokenId {
983
977
  token_data_id: token.TokenDataId;
@@ -1049,11 +1043,10 @@ export namespace token {
1049
1043
  }
1050
1044
  }
1051
1045
 
1052
- export interface TokenWithdrawInstance
1053
- extends TypedEventInstance<TokenWithdraw> {
1046
+ export type TokenWithdrawInstance = TypedEventInstance<TokenWithdraw> & {
1054
1047
  data_decoded: TokenWithdraw;
1055
1048
  type_arguments: [];
1056
- }
1049
+ };
1057
1050
 
1058
1051
  export interface WithdrawCapability {
1059
1052
  token_owner: MoveAddressType;
@@ -1678,11 +1671,11 @@ export namespace token_coin_swap {
1678
1671
  }
1679
1672
  }
1680
1673
 
1681
- export interface TokenListingEventInstance
1682
- extends TypedEventInstance<TokenListingEvent> {
1683
- data_decoded: TokenListingEvent;
1684
- type_arguments: [];
1685
- }
1674
+ export type TokenListingEventInstance =
1675
+ TypedEventInstance<TokenListingEvent> & {
1676
+ data_decoded: TokenListingEvent;
1677
+ type_arguments: [];
1678
+ };
1686
1679
 
1687
1680
  export interface TokenListings<T0> {
1688
1681
  listings: _0x1.table.Table<
@@ -1741,11 +1734,10 @@ export namespace token_coin_swap {
1741
1734
  }
1742
1735
  }
1743
1736
 
1744
- export interface TokenSwapEventInstance
1745
- extends TypedEventInstance<TokenSwapEvent> {
1737
+ export type TokenSwapEventInstance = TypedEventInstance<TokenSwapEvent> & {
1746
1738
  data_decoded: TokenSwapEvent;
1747
1739
  type_arguments: [];
1748
- }
1740
+ };
1749
1741
 
1750
1742
  export namespace entry {
1751
1743
  export async function listTokenForSwap<T0 = any>(
@@ -2022,10 +2014,10 @@ export namespace token_transfers {
2022
2014
  }
2023
2015
  }
2024
2016
 
2025
- export interface CancelOfferInstance extends TypedEventInstance<CancelOffer> {
2017
+ export type CancelOfferInstance = TypedEventInstance<CancelOffer> & {
2026
2018
  data_decoded: CancelOffer;
2027
2019
  type_arguments: [];
2028
- }
2020
+ };
2029
2021
 
2030
2022
  export interface Claim {
2031
2023
  account: MoveAddressType;
@@ -2044,10 +2036,10 @@ export namespace token_transfers {
2044
2036
  }
2045
2037
  }
2046
2038
 
2047
- export interface ClaimInstance extends TypedEventInstance<Claim> {
2039
+ export type ClaimInstance = TypedEventInstance<Claim> & {
2048
2040
  data_decoded: Claim;
2049
2041
  type_arguments: [];
2050
- }
2042
+ };
2051
2043
 
2052
2044
  export interface Offer {
2053
2045
  account: MoveAddressType;
@@ -2066,10 +2058,10 @@ export namespace token_transfers {
2066
2058
  }
2067
2059
  }
2068
2060
 
2069
- export interface OfferInstance extends TypedEventInstance<Offer> {
2061
+ export type OfferInstance = TypedEventInstance<Offer> & {
2070
2062
  data_decoded: Offer;
2071
2063
  type_arguments: [];
2072
- }
2064
+ };
2073
2065
 
2074
2066
  export interface PendingClaims {
2075
2067
  pending_claims: _0x1.table.Table<token_transfers.TokenOfferId, token.Token>;
@@ -2106,11 +2098,11 @@ export namespace token_transfers {
2106
2098
  }
2107
2099
  }
2108
2100
 
2109
- export interface TokenCancelOfferInstance
2110
- extends TypedEventInstance<TokenCancelOffer> {
2111
- data_decoded: TokenCancelOffer;
2112
- type_arguments: [];
2113
- }
2101
+ export type TokenCancelOfferInstance =
2102
+ TypedEventInstance<TokenCancelOffer> & {
2103
+ data_decoded: TokenCancelOffer;
2104
+ type_arguments: [];
2105
+ };
2114
2106
 
2115
2107
  export interface TokenCancelOfferEvent {
2116
2108
  to_address: MoveAddressType;
@@ -2130,11 +2122,11 @@ export namespace token_transfers {
2130
2122
  }
2131
2123
  }
2132
2124
 
2133
- export interface TokenCancelOfferEventInstance
2134
- extends TypedEventInstance<TokenCancelOfferEvent> {
2135
- data_decoded: TokenCancelOfferEvent;
2136
- type_arguments: [];
2137
- }
2125
+ export type TokenCancelOfferEventInstance =
2126
+ TypedEventInstance<TokenCancelOfferEvent> & {
2127
+ data_decoded: TokenCancelOfferEvent;
2128
+ type_arguments: [];
2129
+ };
2138
2130
 
2139
2131
  export interface TokenClaim {
2140
2132
  to_address: MoveAddressType;
@@ -2152,10 +2144,10 @@ export namespace token_transfers {
2152
2144
  }
2153
2145
  }
2154
2146
 
2155
- export interface TokenClaimInstance extends TypedEventInstance<TokenClaim> {
2147
+ export type TokenClaimInstance = TypedEventInstance<TokenClaim> & {
2156
2148
  data_decoded: TokenClaim;
2157
2149
  type_arguments: [];
2158
- }
2150
+ };
2159
2151
 
2160
2152
  export interface TokenClaimEvent {
2161
2153
  to_address: MoveAddressType;
@@ -2175,11 +2167,10 @@ export namespace token_transfers {
2175
2167
  }
2176
2168
  }
2177
2169
 
2178
- export interface TokenClaimEventInstance
2179
- extends TypedEventInstance<TokenClaimEvent> {
2170
+ export type TokenClaimEventInstance = TypedEventInstance<TokenClaimEvent> & {
2180
2171
  data_decoded: TokenClaimEvent;
2181
2172
  type_arguments: [];
2182
- }
2173
+ };
2183
2174
 
2184
2175
  export interface TokenOffer {
2185
2176
  to_address: MoveAddressType;
@@ -2197,10 +2188,10 @@ export namespace token_transfers {
2197
2188
  }
2198
2189
  }
2199
2190
 
2200
- export interface TokenOfferInstance extends TypedEventInstance<TokenOffer> {
2191
+ export type TokenOfferInstance = TypedEventInstance<TokenOffer> & {
2201
2192
  data_decoded: TokenOffer;
2202
2193
  type_arguments: [];
2203
- }
2194
+ };
2204
2195
 
2205
2196
  export interface TokenOfferEvent {
2206
2197
  to_address: MoveAddressType;
@@ -2220,11 +2211,10 @@ export namespace token_transfers {
2220
2211
  }
2221
2212
  }
2222
2213
 
2223
- export interface TokenOfferEventInstance
2224
- extends TypedEventInstance<TokenOfferEvent> {
2214
+ export type TokenOfferEventInstance = TypedEventInstance<TokenOfferEvent> & {
2225
2215
  data_decoded: TokenOfferEvent;
2226
2216
  type_arguments: [];
2227
- }
2217
+ };
2228
2218
 
2229
2219
  export interface TokenOfferId {
2230
2220
  to_addr: MoveAddressType;
@@ -2241,11 +2231,10 @@ export namespace token_transfers {
2241
2231
  }
2242
2232
  }
2243
2233
 
2244
- export interface TokenOfferIdInstance
2245
- extends TypedEventInstance<TokenOfferId> {
2234
+ export type TokenOfferIdInstance = TypedEventInstance<TokenOfferId> & {
2246
2235
  data_decoded: TokenOfferId;
2247
2236
  type_arguments: [];
2248
- }
2237
+ };
2249
2238
 
2250
2239
  export namespace entry {
2251
2240
  export async function cancelOfferScript(
@@ -2739,11 +2728,11 @@ export namespace token_event_store {
2739
2728
  }
2740
2729
  }
2741
2730
 
2742
- export interface CollectionDescriptionMutateInstance
2743
- extends TypedEventInstance<CollectionDescriptionMutate> {
2744
- data_decoded: CollectionDescriptionMutate;
2745
- type_arguments: [];
2746
- }
2731
+ export type CollectionDescriptionMutateInstance =
2732
+ TypedEventInstance<CollectionDescriptionMutate> & {
2733
+ data_decoded: CollectionDescriptionMutate;
2734
+ type_arguments: [];
2735
+ };
2747
2736
 
2748
2737
  export interface CollectionDescriptionMutateEvent {
2749
2738
  creator_addr: MoveAddressType;
@@ -2765,11 +2754,11 @@ export namespace token_event_store {
2765
2754
  }
2766
2755
  }
2767
2756
 
2768
- export interface CollectionDescriptionMutateEventInstance
2769
- extends TypedEventInstance<CollectionDescriptionMutateEvent> {
2770
- data_decoded: CollectionDescriptionMutateEvent;
2771
- type_arguments: [];
2772
- }
2757
+ export type CollectionDescriptionMutateEventInstance =
2758
+ TypedEventInstance<CollectionDescriptionMutateEvent> & {
2759
+ data_decoded: CollectionDescriptionMutateEvent;
2760
+ type_arguments: [];
2761
+ };
2773
2762
 
2774
2763
  export interface CollectionMaximumMutate {
2775
2764
  creator_addr: MoveAddressType;
@@ -2790,11 +2779,11 @@ export namespace token_event_store {
2790
2779
  }
2791
2780
  }
2792
2781
 
2793
- export interface CollectionMaximumMutateInstance
2794
- extends TypedEventInstance<CollectionMaximumMutate> {
2795
- data_decoded: CollectionMaximumMutate;
2796
- type_arguments: [];
2797
- }
2782
+ export type CollectionMaximumMutateInstance =
2783
+ TypedEventInstance<CollectionMaximumMutate> & {
2784
+ data_decoded: CollectionMaximumMutate;
2785
+ type_arguments: [];
2786
+ };
2798
2787
 
2799
2788
  export interface CollectionMaxiumMutate {
2800
2789
  creator_addr: MoveAddressType;
@@ -2815,11 +2804,11 @@ export namespace token_event_store {
2815
2804
  }
2816
2805
  }
2817
2806
 
2818
- export interface CollectionMaxiumMutateInstance
2819
- extends TypedEventInstance<CollectionMaxiumMutate> {
2820
- data_decoded: CollectionMaxiumMutate;
2821
- type_arguments: [];
2822
- }
2807
+ export type CollectionMaxiumMutateInstance =
2808
+ TypedEventInstance<CollectionMaxiumMutate> & {
2809
+ data_decoded: CollectionMaxiumMutate;
2810
+ type_arguments: [];
2811
+ };
2823
2812
 
2824
2813
  export interface CollectionMaxiumMutateEvent {
2825
2814
  creator_addr: MoveAddressType;
@@ -2841,11 +2830,11 @@ export namespace token_event_store {
2841
2830
  }
2842
2831
  }
2843
2832
 
2844
- export interface CollectionMaxiumMutateEventInstance
2845
- extends TypedEventInstance<CollectionMaxiumMutateEvent> {
2846
- data_decoded: CollectionMaxiumMutateEvent;
2847
- type_arguments: [];
2848
- }
2833
+ export type CollectionMaxiumMutateEventInstance =
2834
+ TypedEventInstance<CollectionMaxiumMutateEvent> & {
2835
+ data_decoded: CollectionMaxiumMutateEvent;
2836
+ type_arguments: [];
2837
+ };
2849
2838
 
2850
2839
  export interface CollectionUriMutate {
2851
2840
  creator_addr: MoveAddressType;
@@ -2866,11 +2855,11 @@ export namespace token_event_store {
2866
2855
  }
2867
2856
  }
2868
2857
 
2869
- export interface CollectionUriMutateInstance
2870
- extends TypedEventInstance<CollectionUriMutate> {
2871
- data_decoded: CollectionUriMutate;
2872
- type_arguments: [];
2873
- }
2858
+ export type CollectionUriMutateInstance =
2859
+ TypedEventInstance<CollectionUriMutate> & {
2860
+ data_decoded: CollectionUriMutate;
2861
+ type_arguments: [];
2862
+ };
2874
2863
 
2875
2864
  export interface CollectionUriMutateEvent {
2876
2865
  creator_addr: MoveAddressType;
@@ -2892,11 +2881,11 @@ export namespace token_event_store {
2892
2881
  }
2893
2882
  }
2894
2883
 
2895
- export interface CollectionUriMutateEventInstance
2896
- extends TypedEventInstance<CollectionUriMutateEvent> {
2897
- data_decoded: CollectionUriMutateEvent;
2898
- type_arguments: [];
2899
- }
2884
+ export type CollectionUriMutateEventInstance =
2885
+ TypedEventInstance<CollectionUriMutateEvent> & {
2886
+ data_decoded: CollectionUriMutateEvent;
2887
+ type_arguments: [];
2888
+ };
2900
2889
 
2901
2890
  export interface DefaultPropertyMutate {
2902
2891
  creator: MoveAddressType;
@@ -2919,11 +2908,11 @@ export namespace token_event_store {
2919
2908
  }
2920
2909
  }
2921
2910
 
2922
- export interface DefaultPropertyMutateInstance
2923
- extends TypedEventInstance<DefaultPropertyMutate> {
2924
- data_decoded: DefaultPropertyMutate;
2925
- type_arguments: [];
2926
- }
2911
+ export type DefaultPropertyMutateInstance =
2912
+ TypedEventInstance<DefaultPropertyMutate> & {
2913
+ data_decoded: DefaultPropertyMutate;
2914
+ type_arguments: [];
2915
+ };
2927
2916
 
2928
2917
  export interface DefaultPropertyMutateEvent {
2929
2918
  creator: MoveAddressType;
@@ -2947,11 +2936,11 @@ export namespace token_event_store {
2947
2936
  }
2948
2937
  }
2949
2938
 
2950
- export interface DefaultPropertyMutateEventInstance
2951
- extends TypedEventInstance<DefaultPropertyMutateEvent> {
2952
- data_decoded: DefaultPropertyMutateEvent;
2953
- type_arguments: [];
2954
- }
2939
+ export type DefaultPropertyMutateEventInstance =
2940
+ TypedEventInstance<DefaultPropertyMutateEvent> & {
2941
+ data_decoded: DefaultPropertyMutateEvent;
2942
+ type_arguments: [];
2943
+ };
2955
2944
 
2956
2945
  export interface DescriptionMutate {
2957
2946
  creator: MoveAddressType;
@@ -2973,11 +2962,11 @@ export namespace token_event_store {
2973
2962
  }
2974
2963
  }
2975
2964
 
2976
- export interface DescriptionMutateInstance
2977
- extends TypedEventInstance<DescriptionMutate> {
2978
- data_decoded: DescriptionMutate;
2979
- type_arguments: [];
2980
- }
2965
+ export type DescriptionMutateInstance =
2966
+ TypedEventInstance<DescriptionMutate> & {
2967
+ data_decoded: DescriptionMutate;
2968
+ type_arguments: [];
2969
+ };
2981
2970
 
2982
2971
  export interface DescriptionMutateEvent {
2983
2972
  creator: MoveAddressType;
@@ -2999,11 +2988,11 @@ export namespace token_event_store {
2999
2988
  }
3000
2989
  }
3001
2990
 
3002
- export interface DescriptionMutateEventInstance
3003
- extends TypedEventInstance<DescriptionMutateEvent> {
3004
- data_decoded: DescriptionMutateEvent;
3005
- type_arguments: [];
3006
- }
2991
+ export type DescriptionMutateEventInstance =
2992
+ TypedEventInstance<DescriptionMutateEvent> & {
2993
+ data_decoded: DescriptionMutateEvent;
2994
+ type_arguments: [];
2995
+ };
3007
2996
 
3008
2997
  export interface MaximumMutate {
3009
2998
  creator: MoveAddressType;
@@ -3023,11 +3012,10 @@ export namespace token_event_store {
3023
3012
  }
3024
3013
  }
3025
3014
 
3026
- export interface MaximumMutateInstance
3027
- extends TypedEventInstance<MaximumMutate> {
3015
+ export type MaximumMutateInstance = TypedEventInstance<MaximumMutate> & {
3028
3016
  data_decoded: MaximumMutate;
3029
3017
  type_arguments: [];
3030
- }
3018
+ };
3031
3019
 
3032
3020
  export interface MaxiumMutateEvent {
3033
3021
  creator: MoveAddressType;
@@ -3049,11 +3037,11 @@ export namespace token_event_store {
3049
3037
  }
3050
3038
  }
3051
3039
 
3052
- export interface MaxiumMutateEventInstance
3053
- extends TypedEventInstance<MaxiumMutateEvent> {
3054
- data_decoded: MaxiumMutateEvent;
3055
- type_arguments: [];
3056
- }
3040
+ export type MaxiumMutateEventInstance =
3041
+ TypedEventInstance<MaxiumMutateEvent> & {
3042
+ data_decoded: MaxiumMutateEvent;
3043
+ type_arguments: [];
3044
+ };
3057
3045
 
3058
3046
  export interface OptInTransfer {
3059
3047
  account_address: MoveAddressType;
@@ -3070,11 +3058,10 @@ export namespace token_event_store {
3070
3058
  }
3071
3059
  }
3072
3060
 
3073
- export interface OptInTransferInstance
3074
- extends TypedEventInstance<OptInTransfer> {
3061
+ export type OptInTransferInstance = TypedEventInstance<OptInTransfer> & {
3075
3062
  data_decoded: OptInTransfer;
3076
3063
  type_arguments: [];
3077
- }
3064
+ };
3078
3065
 
3079
3066
  export interface OptInTransferEvent {
3080
3067
  opt_in: boolean;
@@ -3092,11 +3079,11 @@ export namespace token_event_store {
3092
3079
  }
3093
3080
  }
3094
3081
 
3095
- export interface OptInTransferEventInstance
3096
- extends TypedEventInstance<OptInTransferEvent> {
3097
- data_decoded: OptInTransferEvent;
3098
- type_arguments: [];
3099
- }
3082
+ export type OptInTransferEventInstance =
3083
+ TypedEventInstance<OptInTransferEvent> & {
3084
+ data_decoded: OptInTransferEvent;
3085
+ type_arguments: [];
3086
+ };
3100
3087
 
3101
3088
  export interface RoyaltyMutate {
3102
3089
  creator: MoveAddressType;
@@ -3120,11 +3107,10 @@ export namespace token_event_store {
3120
3107
  }
3121
3108
  }
3122
3109
 
3123
- export interface RoyaltyMutateInstance
3124
- extends TypedEventInstance<RoyaltyMutate> {
3110
+ export type RoyaltyMutateInstance = TypedEventInstance<RoyaltyMutate> & {
3125
3111
  data_decoded: RoyaltyMutate;
3126
3112
  type_arguments: [];
3127
- }
3113
+ };
3128
3114
 
3129
3115
  export interface RoyaltyMutateEvent {
3130
3116
  creator: MoveAddressType;
@@ -3150,11 +3136,11 @@ export namespace token_event_store {
3150
3136
  }
3151
3137
  }
3152
3138
 
3153
- export interface RoyaltyMutateEventInstance
3154
- extends TypedEventInstance<RoyaltyMutateEvent> {
3155
- data_decoded: RoyaltyMutateEvent;
3156
- type_arguments: [];
3157
- }
3139
+ export type RoyaltyMutateEventInstance =
3140
+ TypedEventInstance<RoyaltyMutateEvent> & {
3141
+ data_decoded: RoyaltyMutateEvent;
3142
+ type_arguments: [];
3143
+ };
3158
3144
 
3159
3145
  export interface TokenEventStoreV1 {
3160
3146
  collection_uri_mutate_events: _0x1.event.EventHandle<token_event_store.CollectionUriMutateEvent>;
@@ -3199,10 +3185,10 @@ export namespace token_event_store {
3199
3185
  }
3200
3186
  }
3201
3187
 
3202
- export interface UriMutationInstance extends TypedEventInstance<UriMutation> {
3188
+ export type UriMutationInstance = TypedEventInstance<UriMutation> & {
3203
3189
  data_decoded: UriMutation;
3204
3190
  type_arguments: [];
3205
- }
3191
+ };
3206
3192
 
3207
3193
  export interface UriMutationEvent {
3208
3194
  creator: MoveAddressType;
@@ -3224,11 +3210,11 @@ export namespace token_event_store {
3224
3210
  }
3225
3211
  }
3226
3212
 
3227
- export interface UriMutationEventInstance
3228
- extends TypedEventInstance<UriMutationEvent> {
3229
- data_decoded: UriMutationEvent;
3230
- type_arguments: [];
3231
- }
3213
+ export type UriMutationEventInstance =
3214
+ TypedEventInstance<UriMutationEvent> & {
3215
+ data_decoded: UriMutationEvent;
3216
+ type_arguments: [];
3217
+ };
3232
3218
 
3233
3219
  export namespace entry {}
3234
3220
  export namespace view {}