@sentio/sdk 2.56.0 → 2.57.0-rc.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/aptos/builtin/0x1.d.ts +308 -308
- package/lib/aptos/builtin/0x1.d.ts.map +1 -1
- package/lib/aptos/builtin/0x1.js.map +1 -1
- package/lib/aptos/builtin/0x3.d.ts +102 -102
- package/lib/aptos/builtin/0x3.d.ts.map +1 -1
- package/lib/aptos/builtin/0x3.js.map +1 -1
- package/lib/aptos/builtin/0x4.d.ts +22 -22
- package/lib/aptos/builtin/0x4.d.ts.map +1 -1
- package/lib/aptos/builtin/0x4.js.map +1 -1
- package/lib/fuel/asset-processor.d.ts +2 -2
- package/lib/fuel/asset-processor.d.ts.map +1 -1
- package/lib/fuel/asset-processor.js.map +1 -1
- package/lib/fuel/fuel-plugin.d.ts +2 -2
- package/lib/fuel/fuel-plugin.d.ts.map +1 -1
- package/lib/fuel/fuel-plugin.js +19 -18
- package/lib/fuel/fuel-plugin.js.map +1 -1
- package/lib/fuel/fuel-processor.d.ts +5 -4
- package/lib/fuel/fuel-processor.d.ts.map +1 -1
- package/lib/fuel/fuel-processor.js +38 -4
- package/lib/fuel/fuel-processor.js.map +1 -1
- package/lib/fuel/types.d.ts +10 -7
- package/lib/fuel/types.d.ts.map +1 -1
- package/lib/fuel/types.js.map +1 -1
- package/lib/sui/builtin/0x1.d.ts +12 -12
- package/lib/sui/builtin/0x1.d.ts.map +1 -1
- package/lib/sui/builtin/0x1.js.map +1 -1
- package/lib/sui/builtin/0x2.d.ts +66 -66
- package/lib/sui/builtin/0x2.d.ts.map +1 -1
- package/lib/sui/builtin/0x2.js.map +1 -1
- package/lib/sui/builtin/0x3.d.ts +26 -26
- package/lib/sui/builtin/0x3.d.ts.map +1 -1
- package/lib/testing/fuel-facet.js +3 -3
- package/lib/testing/fuel-facet.js.map +1 -1
- package/package.json +8 -8
- package/src/aptos/builtin/0x1.ts +539 -579
- package/src/aptos/builtin/0x3.ts +177 -191
- package/src/aptos/builtin/0x4.ts +28 -31
- package/src/fuel/asset-processor.ts +5 -2
- package/src/fuel/fuel-plugin.ts +22 -19
- package/src/fuel/fuel-processor.ts +54 -7
- package/src/fuel/types.ts +11 -6
- package/src/sui/builtin/0x1.ts +12 -13
- package/src/sui/builtin/0x2.ts +87 -86
- package/src/sui/builtin/0x3.ts +65 -65
- package/src/testing/fuel-facet.ts +3 -3
@@ -48,10 +48,10 @@ export declare namespace token {
|
|
48
48
|
const TYPE_QNAME = "0x3::token::Deposit";
|
49
49
|
function type(): TypeDescriptor<Deposit>;
|
50
50
|
}
|
51
|
-
|
51
|
+
type DepositInstance = TypedEventInstance<Deposit> & {
|
52
52
|
data_decoded: Deposit;
|
53
53
|
type_arguments: [];
|
54
|
-
}
|
54
|
+
};
|
55
55
|
interface DepositEvent {
|
56
56
|
id: token.TokenId;
|
57
57
|
amount: bigint;
|
@@ -60,10 +60,10 @@ export declare namespace token {
|
|
60
60
|
const TYPE_QNAME = "0x3::token::DepositEvent";
|
61
61
|
function type(): TypeDescriptor<DepositEvent>;
|
62
62
|
}
|
63
|
-
|
63
|
+
type DepositEventInstance = TypedEventInstance<DepositEvent> & {
|
64
64
|
data_decoded: DepositEvent;
|
65
65
|
type_arguments: [];
|
66
|
-
}
|
66
|
+
};
|
67
67
|
interface Withdraw {
|
68
68
|
id: token.TokenId;
|
69
69
|
amount: bigint;
|
@@ -72,10 +72,10 @@ export declare namespace token {
|
|
72
72
|
const TYPE_QNAME = "0x3::token::Withdraw";
|
73
73
|
function type(): TypeDescriptor<Withdraw>;
|
74
74
|
}
|
75
|
-
|
75
|
+
type WithdrawInstance = TypedEventInstance<Withdraw> & {
|
76
76
|
data_decoded: Withdraw;
|
77
77
|
type_arguments: [];
|
78
|
-
}
|
78
|
+
};
|
79
79
|
interface WithdrawEvent {
|
80
80
|
id: token.TokenId;
|
81
81
|
amount: bigint;
|
@@ -84,10 +84,10 @@ export declare namespace token {
|
|
84
84
|
const TYPE_QNAME = "0x3::token::WithdrawEvent";
|
85
85
|
function type(): TypeDescriptor<WithdrawEvent>;
|
86
86
|
}
|
87
|
-
|
87
|
+
type WithdrawEventInstance = TypedEventInstance<WithdrawEvent> & {
|
88
88
|
data_decoded: WithdrawEvent;
|
89
89
|
type_arguments: [];
|
90
|
-
}
|
90
|
+
};
|
91
91
|
interface Burn {
|
92
92
|
account: MoveAddressType;
|
93
93
|
id: token.TokenId;
|
@@ -97,10 +97,10 @@ export declare namespace token {
|
|
97
97
|
const TYPE_QNAME = "0x3::token::Burn";
|
98
98
|
function type(): TypeDescriptor<Burn>;
|
99
99
|
}
|
100
|
-
|
100
|
+
type BurnInstance = TypedEventInstance<Burn> & {
|
101
101
|
data_decoded: Burn;
|
102
102
|
type_arguments: [];
|
103
|
-
}
|
103
|
+
};
|
104
104
|
interface BurnToken {
|
105
105
|
id: token.TokenId;
|
106
106
|
amount: bigint;
|
@@ -109,10 +109,10 @@ export declare namespace token {
|
|
109
109
|
const TYPE_QNAME = "0x3::token::BurnToken";
|
110
110
|
function type(): TypeDescriptor<BurnToken>;
|
111
111
|
}
|
112
|
-
|
112
|
+
type BurnTokenInstance = TypedEventInstance<BurnToken> & {
|
113
113
|
data_decoded: BurnToken;
|
114
114
|
type_arguments: [];
|
115
|
-
}
|
115
|
+
};
|
116
116
|
interface BurnTokenEvent {
|
117
117
|
id: token.TokenId;
|
118
118
|
amount: bigint;
|
@@ -121,10 +121,10 @@ export declare namespace token {
|
|
121
121
|
const TYPE_QNAME = "0x3::token::BurnTokenEvent";
|
122
122
|
function type(): TypeDescriptor<BurnTokenEvent>;
|
123
123
|
}
|
124
|
-
|
124
|
+
type BurnTokenEventInstance = TypedEventInstance<BurnTokenEvent> & {
|
125
125
|
data_decoded: BurnTokenEvent;
|
126
126
|
type_arguments: [];
|
127
|
-
}
|
127
|
+
};
|
128
128
|
interface CollectionData {
|
129
129
|
description: string;
|
130
130
|
name: string;
|
@@ -168,10 +168,10 @@ export declare namespace token {
|
|
168
168
|
const TYPE_QNAME = "0x3::token::CreateCollection";
|
169
169
|
function type(): TypeDescriptor<CreateCollection>;
|
170
170
|
}
|
171
|
-
|
171
|
+
type CreateCollectionInstance = TypedEventInstance<CreateCollection> & {
|
172
172
|
data_decoded: CreateCollection;
|
173
173
|
type_arguments: [];
|
174
|
-
}
|
174
|
+
};
|
175
175
|
interface CreateCollectionEvent {
|
176
176
|
creator: MoveAddressType;
|
177
177
|
collection_name: string;
|
@@ -183,10 +183,10 @@ export declare namespace token {
|
|
183
183
|
const TYPE_QNAME = "0x3::token::CreateCollectionEvent";
|
184
184
|
function type(): TypeDescriptor<CreateCollectionEvent>;
|
185
185
|
}
|
186
|
-
|
186
|
+
type CreateCollectionEventInstance = TypedEventInstance<CreateCollectionEvent> & {
|
187
187
|
data_decoded: CreateCollectionEvent;
|
188
188
|
type_arguments: [];
|
189
|
-
}
|
189
|
+
};
|
190
190
|
interface CreateTokenData {
|
191
191
|
id: token.TokenDataId;
|
192
192
|
description: string;
|
@@ -205,10 +205,10 @@ export declare namespace token {
|
|
205
205
|
const TYPE_QNAME = "0x3::token::CreateTokenData";
|
206
206
|
function type(): TypeDescriptor<CreateTokenData>;
|
207
207
|
}
|
208
|
-
|
208
|
+
type CreateTokenDataInstance = TypedEventInstance<CreateTokenData> & {
|
209
209
|
data_decoded: CreateTokenData;
|
210
210
|
type_arguments: [];
|
211
|
-
}
|
211
|
+
};
|
212
212
|
interface CreateTokenDataEvent {
|
213
213
|
id: token.TokenDataId;
|
214
214
|
description: string;
|
@@ -227,10 +227,10 @@ export declare namespace token {
|
|
227
227
|
const TYPE_QNAME = "0x3::token::CreateTokenDataEvent";
|
228
228
|
function type(): TypeDescriptor<CreateTokenDataEvent>;
|
229
229
|
}
|
230
|
-
|
230
|
+
type CreateTokenDataEventInstance = TypedEventInstance<CreateTokenDataEvent> & {
|
231
231
|
data_decoded: CreateTokenDataEvent;
|
232
232
|
type_arguments: [];
|
233
|
-
}
|
233
|
+
};
|
234
234
|
interface Mint {
|
235
235
|
creator: MoveAddressType;
|
236
236
|
id: token.TokenDataId;
|
@@ -240,10 +240,10 @@ export declare namespace token {
|
|
240
240
|
const TYPE_QNAME = "0x3::token::Mint";
|
241
241
|
function type(): TypeDescriptor<Mint>;
|
242
242
|
}
|
243
|
-
|
243
|
+
type MintInstance = TypedEventInstance<Mint> & {
|
244
244
|
data_decoded: Mint;
|
245
245
|
type_arguments: [];
|
246
|
-
}
|
246
|
+
};
|
247
247
|
interface MintToken {
|
248
248
|
id: token.TokenDataId;
|
249
249
|
amount: bigint;
|
@@ -252,10 +252,10 @@ export declare namespace token {
|
|
252
252
|
const TYPE_QNAME = "0x3::token::MintToken";
|
253
253
|
function type(): TypeDescriptor<MintToken>;
|
254
254
|
}
|
255
|
-
|
255
|
+
type MintTokenInstance = TypedEventInstance<MintToken> & {
|
256
256
|
data_decoded: MintToken;
|
257
257
|
type_arguments: [];
|
258
|
-
}
|
258
|
+
};
|
259
259
|
interface MintTokenEvent {
|
260
260
|
id: token.TokenDataId;
|
261
261
|
amount: bigint;
|
@@ -264,10 +264,10 @@ export declare namespace token {
|
|
264
264
|
const TYPE_QNAME = "0x3::token::MintTokenEvent";
|
265
265
|
function type(): TypeDescriptor<MintTokenEvent>;
|
266
266
|
}
|
267
|
-
|
267
|
+
type MintTokenEventInstance = TypedEventInstance<MintTokenEvent> & {
|
268
268
|
data_decoded: MintTokenEvent;
|
269
269
|
type_arguments: [];
|
270
|
-
}
|
270
|
+
};
|
271
271
|
interface MutatePropertyMap {
|
272
272
|
account: MoveAddressType;
|
273
273
|
old_id: token.TokenId;
|
@@ -280,10 +280,10 @@ export declare namespace token {
|
|
280
280
|
const TYPE_QNAME = "0x3::token::MutatePropertyMap";
|
281
281
|
function type(): TypeDescriptor<MutatePropertyMap>;
|
282
282
|
}
|
283
|
-
|
283
|
+
type MutatePropertyMapInstance = TypedEventInstance<MutatePropertyMap> & {
|
284
284
|
data_decoded: MutatePropertyMap;
|
285
285
|
type_arguments: [];
|
286
|
-
}
|
286
|
+
};
|
287
287
|
interface MutateTokenPropertyMap {
|
288
288
|
old_id: token.TokenId;
|
289
289
|
new_id: token.TokenId;
|
@@ -295,10 +295,10 @@ export declare namespace token {
|
|
295
295
|
const TYPE_QNAME = "0x3::token::MutateTokenPropertyMap";
|
296
296
|
function type(): TypeDescriptor<MutateTokenPropertyMap>;
|
297
297
|
}
|
298
|
-
|
298
|
+
type MutateTokenPropertyMapInstance = TypedEventInstance<MutateTokenPropertyMap> & {
|
299
299
|
data_decoded: MutateTokenPropertyMap;
|
300
300
|
type_arguments: [];
|
301
|
-
}
|
301
|
+
};
|
302
302
|
interface MutateTokenPropertyMapEvent {
|
303
303
|
old_id: token.TokenId;
|
304
304
|
new_id: token.TokenId;
|
@@ -310,10 +310,10 @@ export declare namespace token {
|
|
310
310
|
const TYPE_QNAME = "0x3::token::MutateTokenPropertyMapEvent";
|
311
311
|
function type(): TypeDescriptor<MutateTokenPropertyMapEvent>;
|
312
312
|
}
|
313
|
-
|
313
|
+
type MutateTokenPropertyMapEventInstance = TypedEventInstance<MutateTokenPropertyMapEvent> & {
|
314
314
|
data_decoded: MutateTokenPropertyMapEvent;
|
315
315
|
type_arguments: [];
|
316
|
-
}
|
316
|
+
};
|
317
317
|
interface Royalty {
|
318
318
|
royalty_points_numerator: bigint;
|
319
319
|
royalty_points_denominator: bigint;
|
@@ -366,10 +366,10 @@ export declare namespace token {
|
|
366
366
|
const TYPE_QNAME = "0x3::token::TokenDataCreation";
|
367
367
|
function type(): TypeDescriptor<TokenDataCreation>;
|
368
368
|
}
|
369
|
-
|
369
|
+
type TokenDataCreationInstance = TypedEventInstance<TokenDataCreation> & {
|
370
370
|
data_decoded: TokenDataCreation;
|
371
371
|
type_arguments: [];
|
372
|
-
}
|
372
|
+
};
|
373
373
|
interface TokenDataId {
|
374
374
|
creator: MoveAddressType;
|
375
375
|
collection: string;
|
@@ -388,10 +388,10 @@ export declare namespace token {
|
|
388
388
|
const TYPE_QNAME = "0x3::token::TokenDeposit";
|
389
389
|
function type(): TypeDescriptor<TokenDeposit>;
|
390
390
|
}
|
391
|
-
|
391
|
+
type TokenDepositInstance = TypedEventInstance<TokenDeposit> & {
|
392
392
|
data_decoded: TokenDeposit;
|
393
393
|
type_arguments: [];
|
394
|
-
}
|
394
|
+
};
|
395
395
|
interface TokenId {
|
396
396
|
token_data_id: token.TokenDataId;
|
397
397
|
property_version: bigint;
|
@@ -432,10 +432,10 @@ export declare namespace token {
|
|
432
432
|
const TYPE_QNAME = "0x3::token::TokenWithdraw";
|
433
433
|
function type(): TypeDescriptor<TokenWithdraw>;
|
434
434
|
}
|
435
|
-
|
435
|
+
type TokenWithdrawInstance = TypedEventInstance<TokenWithdraw> & {
|
436
436
|
data_decoded: TokenWithdraw;
|
437
437
|
type_arguments: [];
|
438
|
-
}
|
438
|
+
};
|
439
439
|
interface WithdrawCapability {
|
440
440
|
token_owner: MoveAddressType;
|
441
441
|
token_id: token.TokenId;
|
@@ -715,10 +715,10 @@ export declare namespace token_coin_swap {
|
|
715
715
|
const TYPE_QNAME = "0x3::token_coin_swap::TokenListingEvent";
|
716
716
|
function type(): TypeDescriptor<TokenListingEvent>;
|
717
717
|
}
|
718
|
-
|
718
|
+
type TokenListingEventInstance = TypedEventInstance<TokenListingEvent> & {
|
719
719
|
data_decoded: TokenListingEvent;
|
720
720
|
type_arguments: [];
|
721
|
-
}
|
721
|
+
};
|
722
722
|
interface TokenListings<T0> {
|
723
723
|
listings: _0x1.table.Table<token.TokenId, token_coin_swap.TokenCoinSwap<T0>>;
|
724
724
|
listing_events: _0x1.event.EventHandle<token_coin_swap.TokenListingEvent>;
|
@@ -746,10 +746,10 @@ export declare namespace token_coin_swap {
|
|
746
746
|
const TYPE_QNAME = "0x3::token_coin_swap::TokenSwapEvent";
|
747
747
|
function type(): TypeDescriptor<TokenSwapEvent>;
|
748
748
|
}
|
749
|
-
|
749
|
+
type TokenSwapEventInstance = TypedEventInstance<TokenSwapEvent> & {
|
750
750
|
data_decoded: TokenSwapEvent;
|
751
751
|
type_arguments: [];
|
752
|
-
}
|
752
|
+
};
|
753
753
|
namespace entry {
|
754
754
|
function listTokenForSwap<T0 = any>(client: Aptos, account: AptosAccount, request: {
|
755
755
|
typeArguments: [MoveStructId];
|
@@ -815,10 +815,10 @@ export declare namespace token_transfers {
|
|
815
815
|
const TYPE_QNAME = "0x3::token_transfers::CancelOffer";
|
816
816
|
function type(): TypeDescriptor<CancelOffer>;
|
817
817
|
}
|
818
|
-
|
818
|
+
type CancelOfferInstance = TypedEventInstance<CancelOffer> & {
|
819
819
|
data_decoded: CancelOffer;
|
820
820
|
type_arguments: [];
|
821
|
-
}
|
821
|
+
};
|
822
822
|
interface Claim {
|
823
823
|
account: MoveAddressType;
|
824
824
|
to_address: MoveAddressType;
|
@@ -829,10 +829,10 @@ export declare namespace token_transfers {
|
|
829
829
|
const TYPE_QNAME = "0x3::token_transfers::Claim";
|
830
830
|
function type(): TypeDescriptor<Claim>;
|
831
831
|
}
|
832
|
-
|
832
|
+
type ClaimInstance = TypedEventInstance<Claim> & {
|
833
833
|
data_decoded: Claim;
|
834
834
|
type_arguments: [];
|
835
|
-
}
|
835
|
+
};
|
836
836
|
interface Offer {
|
837
837
|
account: MoveAddressType;
|
838
838
|
to_address: MoveAddressType;
|
@@ -843,10 +843,10 @@ export declare namespace token_transfers {
|
|
843
843
|
const TYPE_QNAME = "0x3::token_transfers::Offer";
|
844
844
|
function type(): TypeDescriptor<Offer>;
|
845
845
|
}
|
846
|
-
|
846
|
+
type OfferInstance = TypedEventInstance<Offer> & {
|
847
847
|
data_decoded: Offer;
|
848
848
|
type_arguments: [];
|
849
|
-
}
|
849
|
+
};
|
850
850
|
interface PendingClaims {
|
851
851
|
pending_claims: _0x1.table.Table<token_transfers.TokenOfferId, token.Token>;
|
852
852
|
offer_events: _0x1.event.EventHandle<token_transfers.TokenOfferEvent>;
|
@@ -866,10 +866,10 @@ export declare namespace token_transfers {
|
|
866
866
|
const TYPE_QNAME = "0x3::token_transfers::TokenCancelOffer";
|
867
867
|
function type(): TypeDescriptor<TokenCancelOffer>;
|
868
868
|
}
|
869
|
-
|
869
|
+
type TokenCancelOfferInstance = TypedEventInstance<TokenCancelOffer> & {
|
870
870
|
data_decoded: TokenCancelOffer;
|
871
871
|
type_arguments: [];
|
872
|
-
}
|
872
|
+
};
|
873
873
|
interface TokenCancelOfferEvent {
|
874
874
|
to_address: MoveAddressType;
|
875
875
|
token_id: token.TokenId;
|
@@ -879,10 +879,10 @@ export declare namespace token_transfers {
|
|
879
879
|
const TYPE_QNAME = "0x3::token_transfers::TokenCancelOfferEvent";
|
880
880
|
function type(): TypeDescriptor<TokenCancelOfferEvent>;
|
881
881
|
}
|
882
|
-
|
882
|
+
type TokenCancelOfferEventInstance = TypedEventInstance<TokenCancelOfferEvent> & {
|
883
883
|
data_decoded: TokenCancelOfferEvent;
|
884
884
|
type_arguments: [];
|
885
|
-
}
|
885
|
+
};
|
886
886
|
interface TokenClaim {
|
887
887
|
to_address: MoveAddressType;
|
888
888
|
token_id: token.TokenId;
|
@@ -892,10 +892,10 @@ export declare namespace token_transfers {
|
|
892
892
|
const TYPE_QNAME = "0x3::token_transfers::TokenClaim";
|
893
893
|
function type(): TypeDescriptor<TokenClaim>;
|
894
894
|
}
|
895
|
-
|
895
|
+
type TokenClaimInstance = TypedEventInstance<TokenClaim> & {
|
896
896
|
data_decoded: TokenClaim;
|
897
897
|
type_arguments: [];
|
898
|
-
}
|
898
|
+
};
|
899
899
|
interface TokenClaimEvent {
|
900
900
|
to_address: MoveAddressType;
|
901
901
|
token_id: token.TokenId;
|
@@ -905,10 +905,10 @@ export declare namespace token_transfers {
|
|
905
905
|
const TYPE_QNAME = "0x3::token_transfers::TokenClaimEvent";
|
906
906
|
function type(): TypeDescriptor<TokenClaimEvent>;
|
907
907
|
}
|
908
|
-
|
908
|
+
type TokenClaimEventInstance = TypedEventInstance<TokenClaimEvent> & {
|
909
909
|
data_decoded: TokenClaimEvent;
|
910
910
|
type_arguments: [];
|
911
|
-
}
|
911
|
+
};
|
912
912
|
interface TokenOffer {
|
913
913
|
to_address: MoveAddressType;
|
914
914
|
token_id: token.TokenId;
|
@@ -918,10 +918,10 @@ export declare namespace token_transfers {
|
|
918
918
|
const TYPE_QNAME = "0x3::token_transfers::TokenOffer";
|
919
919
|
function type(): TypeDescriptor<TokenOffer>;
|
920
920
|
}
|
921
|
-
|
921
|
+
type TokenOfferInstance = TypedEventInstance<TokenOffer> & {
|
922
922
|
data_decoded: TokenOffer;
|
923
923
|
type_arguments: [];
|
924
|
-
}
|
924
|
+
};
|
925
925
|
interface TokenOfferEvent {
|
926
926
|
to_address: MoveAddressType;
|
927
927
|
token_id: token.TokenId;
|
@@ -931,10 +931,10 @@ export declare namespace token_transfers {
|
|
931
931
|
const TYPE_QNAME = "0x3::token_transfers::TokenOfferEvent";
|
932
932
|
function type(): TypeDescriptor<TokenOfferEvent>;
|
933
933
|
}
|
934
|
-
|
934
|
+
type TokenOfferEventInstance = TypedEventInstance<TokenOfferEvent> & {
|
935
935
|
data_decoded: TokenOfferEvent;
|
936
936
|
type_arguments: [];
|
937
|
-
}
|
937
|
+
};
|
938
938
|
interface TokenOfferId {
|
939
939
|
to_addr: MoveAddressType;
|
940
940
|
token_id: token.TokenId;
|
@@ -943,10 +943,10 @@ export declare namespace token_transfers {
|
|
943
943
|
const TYPE_QNAME = "0x3::token_transfers::TokenOfferId";
|
944
944
|
function type(): TypeDescriptor<TokenOfferId>;
|
945
945
|
}
|
946
|
-
|
946
|
+
type TokenOfferIdInstance = TypedEventInstance<TokenOfferId> & {
|
947
947
|
data_decoded: TokenOfferId;
|
948
948
|
type_arguments: [];
|
949
|
-
}
|
949
|
+
};
|
950
950
|
namespace entry {
|
951
951
|
function cancelOfferScript(client: Aptos, account: AptosAccount, request: {
|
952
952
|
typeArguments: [];
|
@@ -1076,10 +1076,10 @@ export declare namespace token_event_store {
|
|
1076
1076
|
const TYPE_QNAME = "0x3::token_event_store::CollectionDescriptionMutate";
|
1077
1077
|
function type(): TypeDescriptor<CollectionDescriptionMutate>;
|
1078
1078
|
}
|
1079
|
-
|
1079
|
+
type CollectionDescriptionMutateInstance = TypedEventInstance<CollectionDescriptionMutate> & {
|
1080
1080
|
data_decoded: CollectionDescriptionMutate;
|
1081
1081
|
type_arguments: [];
|
1082
|
-
}
|
1082
|
+
};
|
1083
1083
|
interface CollectionDescriptionMutateEvent {
|
1084
1084
|
creator_addr: MoveAddressType;
|
1085
1085
|
collection_name: string;
|
@@ -1090,10 +1090,10 @@ export declare namespace token_event_store {
|
|
1090
1090
|
const TYPE_QNAME = "0x3::token_event_store::CollectionDescriptionMutateEvent";
|
1091
1091
|
function type(): TypeDescriptor<CollectionDescriptionMutateEvent>;
|
1092
1092
|
}
|
1093
|
-
|
1093
|
+
type CollectionDescriptionMutateEventInstance = TypedEventInstance<CollectionDescriptionMutateEvent> & {
|
1094
1094
|
data_decoded: CollectionDescriptionMutateEvent;
|
1095
1095
|
type_arguments: [];
|
1096
|
-
}
|
1096
|
+
};
|
1097
1097
|
interface CollectionMaximumMutate {
|
1098
1098
|
creator_addr: MoveAddressType;
|
1099
1099
|
collection_name: string;
|
@@ -1104,10 +1104,10 @@ export declare namespace token_event_store {
|
|
1104
1104
|
const TYPE_QNAME = "0x3::token_event_store::CollectionMaximumMutate";
|
1105
1105
|
function type(): TypeDescriptor<CollectionMaximumMutate>;
|
1106
1106
|
}
|
1107
|
-
|
1107
|
+
type CollectionMaximumMutateInstance = TypedEventInstance<CollectionMaximumMutate> & {
|
1108
1108
|
data_decoded: CollectionMaximumMutate;
|
1109
1109
|
type_arguments: [];
|
1110
|
-
}
|
1110
|
+
};
|
1111
1111
|
interface CollectionMaxiumMutate {
|
1112
1112
|
creator_addr: MoveAddressType;
|
1113
1113
|
collection_name: string;
|
@@ -1118,10 +1118,10 @@ export declare namespace token_event_store {
|
|
1118
1118
|
const TYPE_QNAME = "0x3::token_event_store::CollectionMaxiumMutate";
|
1119
1119
|
function type(): TypeDescriptor<CollectionMaxiumMutate>;
|
1120
1120
|
}
|
1121
|
-
|
1121
|
+
type CollectionMaxiumMutateInstance = TypedEventInstance<CollectionMaxiumMutate> & {
|
1122
1122
|
data_decoded: CollectionMaxiumMutate;
|
1123
1123
|
type_arguments: [];
|
1124
|
-
}
|
1124
|
+
};
|
1125
1125
|
interface CollectionMaxiumMutateEvent {
|
1126
1126
|
creator_addr: MoveAddressType;
|
1127
1127
|
collection_name: string;
|
@@ -1132,10 +1132,10 @@ export declare namespace token_event_store {
|
|
1132
1132
|
const TYPE_QNAME = "0x3::token_event_store::CollectionMaxiumMutateEvent";
|
1133
1133
|
function type(): TypeDescriptor<CollectionMaxiumMutateEvent>;
|
1134
1134
|
}
|
1135
|
-
|
1135
|
+
type CollectionMaxiumMutateEventInstance = TypedEventInstance<CollectionMaxiumMutateEvent> & {
|
1136
1136
|
data_decoded: CollectionMaxiumMutateEvent;
|
1137
1137
|
type_arguments: [];
|
1138
|
-
}
|
1138
|
+
};
|
1139
1139
|
interface CollectionUriMutate {
|
1140
1140
|
creator_addr: MoveAddressType;
|
1141
1141
|
collection_name: string;
|
@@ -1146,10 +1146,10 @@ export declare namespace token_event_store {
|
|
1146
1146
|
const TYPE_QNAME = "0x3::token_event_store::CollectionUriMutate";
|
1147
1147
|
function type(): TypeDescriptor<CollectionUriMutate>;
|
1148
1148
|
}
|
1149
|
-
|
1149
|
+
type CollectionUriMutateInstance = TypedEventInstance<CollectionUriMutate> & {
|
1150
1150
|
data_decoded: CollectionUriMutate;
|
1151
1151
|
type_arguments: [];
|
1152
|
-
}
|
1152
|
+
};
|
1153
1153
|
interface CollectionUriMutateEvent {
|
1154
1154
|
creator_addr: MoveAddressType;
|
1155
1155
|
collection_name: string;
|
@@ -1160,10 +1160,10 @@ export declare namespace token_event_store {
|
|
1160
1160
|
const TYPE_QNAME = "0x3::token_event_store::CollectionUriMutateEvent";
|
1161
1161
|
function type(): TypeDescriptor<CollectionUriMutateEvent>;
|
1162
1162
|
}
|
1163
|
-
|
1163
|
+
type CollectionUriMutateEventInstance = TypedEventInstance<CollectionUriMutateEvent> & {
|
1164
1164
|
data_decoded: CollectionUriMutateEvent;
|
1165
1165
|
type_arguments: [];
|
1166
|
-
}
|
1166
|
+
};
|
1167
1167
|
interface DefaultPropertyMutate {
|
1168
1168
|
creator: MoveAddressType;
|
1169
1169
|
collection: string;
|
@@ -1176,10 +1176,10 @@ export declare namespace token_event_store {
|
|
1176
1176
|
const TYPE_QNAME = "0x3::token_event_store::DefaultPropertyMutate";
|
1177
1177
|
function type(): TypeDescriptor<DefaultPropertyMutate>;
|
1178
1178
|
}
|
1179
|
-
|
1179
|
+
type DefaultPropertyMutateInstance = TypedEventInstance<DefaultPropertyMutate> & {
|
1180
1180
|
data_decoded: DefaultPropertyMutate;
|
1181
1181
|
type_arguments: [];
|
1182
|
-
}
|
1182
|
+
};
|
1183
1183
|
interface DefaultPropertyMutateEvent {
|
1184
1184
|
creator: MoveAddressType;
|
1185
1185
|
collection: string;
|
@@ -1192,10 +1192,10 @@ export declare namespace token_event_store {
|
|
1192
1192
|
const TYPE_QNAME = "0x3::token_event_store::DefaultPropertyMutateEvent";
|
1193
1193
|
function type(): TypeDescriptor<DefaultPropertyMutateEvent>;
|
1194
1194
|
}
|
1195
|
-
|
1195
|
+
type DefaultPropertyMutateEventInstance = TypedEventInstance<DefaultPropertyMutateEvent> & {
|
1196
1196
|
data_decoded: DefaultPropertyMutateEvent;
|
1197
1197
|
type_arguments: [];
|
1198
|
-
}
|
1198
|
+
};
|
1199
1199
|
interface DescriptionMutate {
|
1200
1200
|
creator: MoveAddressType;
|
1201
1201
|
collection: string;
|
@@ -1207,10 +1207,10 @@ export declare namespace token_event_store {
|
|
1207
1207
|
const TYPE_QNAME = "0x3::token_event_store::DescriptionMutate";
|
1208
1208
|
function type(): TypeDescriptor<DescriptionMutate>;
|
1209
1209
|
}
|
1210
|
-
|
1210
|
+
type DescriptionMutateInstance = TypedEventInstance<DescriptionMutate> & {
|
1211
1211
|
data_decoded: DescriptionMutate;
|
1212
1212
|
type_arguments: [];
|
1213
|
-
}
|
1213
|
+
};
|
1214
1214
|
interface DescriptionMutateEvent {
|
1215
1215
|
creator: MoveAddressType;
|
1216
1216
|
collection: string;
|
@@ -1222,10 +1222,10 @@ export declare namespace token_event_store {
|
|
1222
1222
|
const TYPE_QNAME = "0x3::token_event_store::DescriptionMutateEvent";
|
1223
1223
|
function type(): TypeDescriptor<DescriptionMutateEvent>;
|
1224
1224
|
}
|
1225
|
-
|
1225
|
+
type DescriptionMutateEventInstance = TypedEventInstance<DescriptionMutateEvent> & {
|
1226
1226
|
data_decoded: DescriptionMutateEvent;
|
1227
1227
|
type_arguments: [];
|
1228
|
-
}
|
1228
|
+
};
|
1229
1229
|
interface MaximumMutate {
|
1230
1230
|
creator: MoveAddressType;
|
1231
1231
|
collection: string;
|
@@ -1237,10 +1237,10 @@ export declare namespace token_event_store {
|
|
1237
1237
|
const TYPE_QNAME = "0x3::token_event_store::MaximumMutate";
|
1238
1238
|
function type(): TypeDescriptor<MaximumMutate>;
|
1239
1239
|
}
|
1240
|
-
|
1240
|
+
type MaximumMutateInstance = TypedEventInstance<MaximumMutate> & {
|
1241
1241
|
data_decoded: MaximumMutate;
|
1242
1242
|
type_arguments: [];
|
1243
|
-
}
|
1243
|
+
};
|
1244
1244
|
interface MaxiumMutateEvent {
|
1245
1245
|
creator: MoveAddressType;
|
1246
1246
|
collection: string;
|
@@ -1252,10 +1252,10 @@ export declare namespace token_event_store {
|
|
1252
1252
|
const TYPE_QNAME = "0x3::token_event_store::MaxiumMutateEvent";
|
1253
1253
|
function type(): TypeDescriptor<MaxiumMutateEvent>;
|
1254
1254
|
}
|
1255
|
-
|
1255
|
+
type MaxiumMutateEventInstance = TypedEventInstance<MaxiumMutateEvent> & {
|
1256
1256
|
data_decoded: MaxiumMutateEvent;
|
1257
1257
|
type_arguments: [];
|
1258
|
-
}
|
1258
|
+
};
|
1259
1259
|
interface OptInTransfer {
|
1260
1260
|
account_address: MoveAddressType;
|
1261
1261
|
opt_in: boolean;
|
@@ -1264,10 +1264,10 @@ export declare namespace token_event_store {
|
|
1264
1264
|
const TYPE_QNAME = "0x3::token_event_store::OptInTransfer";
|
1265
1265
|
function type(): TypeDescriptor<OptInTransfer>;
|
1266
1266
|
}
|
1267
|
-
|
1267
|
+
type OptInTransferInstance = TypedEventInstance<OptInTransfer> & {
|
1268
1268
|
data_decoded: OptInTransfer;
|
1269
1269
|
type_arguments: [];
|
1270
|
-
}
|
1270
|
+
};
|
1271
1271
|
interface OptInTransferEvent {
|
1272
1272
|
opt_in: boolean;
|
1273
1273
|
}
|
@@ -1275,10 +1275,10 @@ export declare namespace token_event_store {
|
|
1275
1275
|
const TYPE_QNAME = "0x3::token_event_store::OptInTransferEvent";
|
1276
1276
|
function type(): TypeDescriptor<OptInTransferEvent>;
|
1277
1277
|
}
|
1278
|
-
|
1278
|
+
type OptInTransferEventInstance = TypedEventInstance<OptInTransferEvent> & {
|
1279
1279
|
data_decoded: OptInTransferEvent;
|
1280
1280
|
type_arguments: [];
|
1281
|
-
}
|
1281
|
+
};
|
1282
1282
|
interface RoyaltyMutate {
|
1283
1283
|
creator: MoveAddressType;
|
1284
1284
|
collection: string;
|
@@ -1294,10 +1294,10 @@ export declare namespace token_event_store {
|
|
1294
1294
|
const TYPE_QNAME = "0x3::token_event_store::RoyaltyMutate";
|
1295
1295
|
function type(): TypeDescriptor<RoyaltyMutate>;
|
1296
1296
|
}
|
1297
|
-
|
1297
|
+
type RoyaltyMutateInstance = TypedEventInstance<RoyaltyMutate> & {
|
1298
1298
|
data_decoded: RoyaltyMutate;
|
1299
1299
|
type_arguments: [];
|
1300
|
-
}
|
1300
|
+
};
|
1301
1301
|
interface RoyaltyMutateEvent {
|
1302
1302
|
creator: MoveAddressType;
|
1303
1303
|
collection: string;
|
@@ -1313,10 +1313,10 @@ export declare namespace token_event_store {
|
|
1313
1313
|
const TYPE_QNAME = "0x3::token_event_store::RoyaltyMutateEvent";
|
1314
1314
|
function type(): TypeDescriptor<RoyaltyMutateEvent>;
|
1315
1315
|
}
|
1316
|
-
|
1316
|
+
type RoyaltyMutateEventInstance = TypedEventInstance<RoyaltyMutateEvent> & {
|
1317
1317
|
data_decoded: RoyaltyMutateEvent;
|
1318
1318
|
type_arguments: [];
|
1319
|
-
}
|
1319
|
+
};
|
1320
1320
|
interface TokenEventStoreV1 {
|
1321
1321
|
collection_uri_mutate_events: _0x1.event.EventHandle<token_event_store.CollectionUriMutateEvent>;
|
1322
1322
|
collection_maximum_mutate_events: _0x1.event.EventHandle<token_event_store.CollectionMaxiumMutateEvent>;
|
@@ -1344,10 +1344,10 @@ export declare namespace token_event_store {
|
|
1344
1344
|
const TYPE_QNAME = "0x3::token_event_store::UriMutation";
|
1345
1345
|
function type(): TypeDescriptor<UriMutation>;
|
1346
1346
|
}
|
1347
|
-
|
1347
|
+
type UriMutationInstance = TypedEventInstance<UriMutation> & {
|
1348
1348
|
data_decoded: UriMutation;
|
1349
1349
|
type_arguments: [];
|
1350
|
-
}
|
1350
|
+
};
|
1351
1351
|
interface UriMutationEvent {
|
1352
1352
|
creator: MoveAddressType;
|
1353
1353
|
collection: string;
|
@@ -1359,10 +1359,10 @@ export declare namespace token_event_store {
|
|
1359
1359
|
const TYPE_QNAME = "0x3::token_event_store::UriMutationEvent";
|
1360
1360
|
function type(): TypeDescriptor<UriMutationEvent>;
|
1361
1361
|
}
|
1362
|
-
|
1362
|
+
type UriMutationEventInstance = TypedEventInstance<UriMutationEvent> & {
|
1363
1363
|
data_decoded: UriMutationEvent;
|
1364
1364
|
type_arguments: [];
|
1365
|
-
}
|
1365
|
+
};
|
1366
1366
|
namespace entry { }
|
1367
1367
|
namespace view { }
|
1368
1368
|
}
|