@typemove/aptos 1.8.3 → 1.9.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.
- package/dist/cjs/builtin/0x1.d.ts +308 -308
- package/dist/cjs/builtin/0x1.d.ts.map +1 -1
- package/dist/cjs/builtin/0x1.js +2 -2
- package/dist/cjs/builtin/0x1.js.map +1 -1
- package/dist/cjs/builtin/0x3.d.ts +102 -102
- package/dist/cjs/builtin/0x3.d.ts.map +1 -1
- package/dist/cjs/builtin/0x3.js +2 -2
- package/dist/cjs/builtin/0x3.js.map +1 -1
- package/dist/cjs/builtin/0x4.d.ts +22 -22
- package/dist/cjs/builtin/0x4.d.ts.map +1 -1
- package/dist/cjs/builtin/0x4.js +2 -2
- package/dist/cjs/builtin/0x4.js.map +1 -1
- package/dist/cjs/codegen/codegen.js +2 -2
- package/dist/cjs/codegen/codegen.js.map +1 -1
- package/dist/cjs/coder-helpers.js +1 -2
- package/dist/cjs/coder-helpers.js.map +1 -1
- package/dist/cjs/move-coder.d.ts.map +1 -1
- package/dist/cjs/move-coder.js +3 -2
- package/dist/cjs/move-coder.js.map +1 -1
- package/dist/cjs/to-internal.d.ts.map +1 -1
- package/dist/cjs/to-internal.js +6 -6
- package/dist/cjs/to-internal.js.map +1 -1
- package/dist/esm/builtin/0x1.d.ts +308 -308
- package/dist/esm/builtin/0x1.d.ts.map +1 -1
- package/dist/esm/builtin/0x1.js.map +1 -1
- package/dist/esm/builtin/0x3.d.ts +102 -102
- package/dist/esm/builtin/0x3.d.ts.map +1 -1
- package/dist/esm/builtin/0x3.js.map +1 -1
- package/dist/esm/builtin/0x4.d.ts +22 -22
- package/dist/esm/builtin/0x4.d.ts.map +1 -1
- package/dist/esm/builtin/0x4.js.map +1 -1
- package/dist/esm/move-coder.d.ts.map +1 -1
- package/dist/esm/move-coder.js +1 -0
- package/dist/esm/move-coder.js.map +1 -1
- package/dist/esm/to-internal.d.ts.map +1 -1
- package/dist/esm/to-internal.js +2 -1
- package/dist/esm/to-internal.js.map +1 -1
- package/package.json +2 -2
- package/src/builtin/0x1.ts +539 -579
- package/src/builtin/0x3.ts +177 -191
- package/src/builtin/0x4.ts +28 -31
- package/src/move-coder.ts +1 -0
- package/src/tests/types/0x48271d39d0b05bd6efca2278f22277d6fcc375504f9839fd73f74ace240861af.ts +55 -55
- package/src/tests/types/0x6b3720cd988adeaf721ed9d4730da4324d52364871a68eac62b46d21e4d2fa99.ts +32 -36
- package/src/tests/types/0xbd35135844473187163ca197ca93b2ab014370587bb0ed3befff9e902d6bb541.ts +36 -42
- package/src/to-internal.ts +2 -1
package/src/builtin/0x3.ts
CHANGED
|
@@ -37,10 +37,10 @@ export namespace token {
|
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
39
|
|
|
40
|
-
export
|
|
40
|
+
export type DepositInstance = TypedEventInstance<Deposit> & {
|
|
41
41
|
data_decoded: Deposit;
|
|
42
42
|
type_arguments: [];
|
|
43
|
-
}
|
|
43
|
+
};
|
|
44
44
|
|
|
45
45
|
export interface DepositEvent {
|
|
46
46
|
id: token.TokenId;
|
|
@@ -57,11 +57,10 @@ export namespace token {
|
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
59
|
|
|
60
|
-
export
|
|
61
|
-
extends TypedEventInstance<DepositEvent> {
|
|
60
|
+
export type DepositEventInstance = TypedEventInstance<DepositEvent> & {
|
|
62
61
|
data_decoded: DepositEvent;
|
|
63
62
|
type_arguments: [];
|
|
64
|
-
}
|
|
63
|
+
};
|
|
65
64
|
|
|
66
65
|
export interface Withdraw {
|
|
67
66
|
id: token.TokenId;
|
|
@@ -78,10 +77,10 @@ export namespace token {
|
|
|
78
77
|
}
|
|
79
78
|
}
|
|
80
79
|
|
|
81
|
-
export
|
|
80
|
+
export type WithdrawInstance = TypedEventInstance<Withdraw> & {
|
|
82
81
|
data_decoded: Withdraw;
|
|
83
82
|
type_arguments: [];
|
|
84
|
-
}
|
|
83
|
+
};
|
|
85
84
|
|
|
86
85
|
export interface WithdrawEvent {
|
|
87
86
|
id: token.TokenId;
|
|
@@ -98,11 +97,10 @@ export namespace token {
|
|
|
98
97
|
}
|
|
99
98
|
}
|
|
100
99
|
|
|
101
|
-
export
|
|
102
|
-
extends TypedEventInstance<WithdrawEvent> {
|
|
100
|
+
export type WithdrawEventInstance = TypedEventInstance<WithdrawEvent> & {
|
|
103
101
|
data_decoded: WithdrawEvent;
|
|
104
102
|
type_arguments: [];
|
|
105
|
-
}
|
|
103
|
+
};
|
|
106
104
|
|
|
107
105
|
export interface Burn {
|
|
108
106
|
account: MoveAddressType;
|
|
@@ -120,10 +118,10 @@ export namespace token {
|
|
|
120
118
|
}
|
|
121
119
|
}
|
|
122
120
|
|
|
123
|
-
export
|
|
121
|
+
export type BurnInstance = TypedEventInstance<Burn> & {
|
|
124
122
|
data_decoded: Burn;
|
|
125
123
|
type_arguments: [];
|
|
126
|
-
}
|
|
124
|
+
};
|
|
127
125
|
|
|
128
126
|
export interface BurnToken {
|
|
129
127
|
id: token.TokenId;
|
|
@@ -140,10 +138,10 @@ export namespace token {
|
|
|
140
138
|
}
|
|
141
139
|
}
|
|
142
140
|
|
|
143
|
-
export
|
|
141
|
+
export type BurnTokenInstance = TypedEventInstance<BurnToken> & {
|
|
144
142
|
data_decoded: BurnToken;
|
|
145
143
|
type_arguments: [];
|
|
146
|
-
}
|
|
144
|
+
};
|
|
147
145
|
|
|
148
146
|
export interface BurnTokenEvent {
|
|
149
147
|
id: token.TokenId;
|
|
@@ -160,11 +158,10 @@ export namespace token {
|
|
|
160
158
|
}
|
|
161
159
|
}
|
|
162
160
|
|
|
163
|
-
export
|
|
164
|
-
extends TypedEventInstance<BurnTokenEvent> {
|
|
161
|
+
export type BurnTokenEventInstance = TypedEventInstance<BurnTokenEvent> & {
|
|
165
162
|
data_decoded: BurnTokenEvent;
|
|
166
163
|
type_arguments: [];
|
|
167
|
-
}
|
|
164
|
+
};
|
|
168
165
|
|
|
169
166
|
export interface CollectionData {
|
|
170
167
|
description: string;
|
|
@@ -241,11 +238,11 @@ export namespace token {
|
|
|
241
238
|
}
|
|
242
239
|
}
|
|
243
240
|
|
|
244
|
-
export
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
241
|
+
export type CreateCollectionInstance =
|
|
242
|
+
TypedEventInstance<CreateCollection> & {
|
|
243
|
+
data_decoded: CreateCollection;
|
|
244
|
+
type_arguments: [];
|
|
245
|
+
};
|
|
249
246
|
|
|
250
247
|
export interface CreateCollectionEvent {
|
|
251
248
|
creator: MoveAddressType;
|
|
@@ -267,11 +264,11 @@ export namespace token {
|
|
|
267
264
|
}
|
|
268
265
|
}
|
|
269
266
|
|
|
270
|
-
export
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
267
|
+
export type CreateCollectionEventInstance =
|
|
268
|
+
TypedEventInstance<CreateCollectionEvent> & {
|
|
269
|
+
data_decoded: CreateCollectionEvent;
|
|
270
|
+
type_arguments: [];
|
|
271
|
+
};
|
|
275
272
|
|
|
276
273
|
export interface CreateTokenData {
|
|
277
274
|
id: token.TokenDataId;
|
|
@@ -300,11 +297,10 @@ export namespace token {
|
|
|
300
297
|
}
|
|
301
298
|
}
|
|
302
299
|
|
|
303
|
-
export
|
|
304
|
-
extends TypedEventInstance<CreateTokenData> {
|
|
300
|
+
export type CreateTokenDataInstance = TypedEventInstance<CreateTokenData> & {
|
|
305
301
|
data_decoded: CreateTokenData;
|
|
306
302
|
type_arguments: [];
|
|
307
|
-
}
|
|
303
|
+
};
|
|
308
304
|
|
|
309
305
|
export interface CreateTokenDataEvent {
|
|
310
306
|
id: token.TokenDataId;
|
|
@@ -333,11 +329,11 @@ export namespace token {
|
|
|
333
329
|
}
|
|
334
330
|
}
|
|
335
331
|
|
|
336
|
-
export
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
332
|
+
export type CreateTokenDataEventInstance =
|
|
333
|
+
TypedEventInstance<CreateTokenDataEvent> & {
|
|
334
|
+
data_decoded: CreateTokenDataEvent;
|
|
335
|
+
type_arguments: [];
|
|
336
|
+
};
|
|
341
337
|
|
|
342
338
|
export interface Mint {
|
|
343
339
|
creator: MoveAddressType;
|
|
@@ -355,10 +351,10 @@ export namespace token {
|
|
|
355
351
|
}
|
|
356
352
|
}
|
|
357
353
|
|
|
358
|
-
export
|
|
354
|
+
export type MintInstance = TypedEventInstance<Mint> & {
|
|
359
355
|
data_decoded: Mint;
|
|
360
356
|
type_arguments: [];
|
|
361
|
-
}
|
|
357
|
+
};
|
|
362
358
|
|
|
363
359
|
export interface MintToken {
|
|
364
360
|
id: token.TokenDataId;
|
|
@@ -375,10 +371,10 @@ export namespace token {
|
|
|
375
371
|
}
|
|
376
372
|
}
|
|
377
373
|
|
|
378
|
-
export
|
|
374
|
+
export type MintTokenInstance = TypedEventInstance<MintToken> & {
|
|
379
375
|
data_decoded: MintToken;
|
|
380
376
|
type_arguments: [];
|
|
381
|
-
}
|
|
377
|
+
};
|
|
382
378
|
|
|
383
379
|
export interface MintTokenEvent {
|
|
384
380
|
id: token.TokenDataId;
|
|
@@ -395,11 +391,10 @@ export namespace token {
|
|
|
395
391
|
}
|
|
396
392
|
}
|
|
397
393
|
|
|
398
|
-
export
|
|
399
|
-
extends TypedEventInstance<MintTokenEvent> {
|
|
394
|
+
export type MintTokenEventInstance = TypedEventInstance<MintTokenEvent> & {
|
|
400
395
|
data_decoded: MintTokenEvent;
|
|
401
396
|
type_arguments: [];
|
|
402
|
-
}
|
|
397
|
+
};
|
|
403
398
|
|
|
404
399
|
export interface MutatePropertyMap {
|
|
405
400
|
account: MoveAddressType;
|
|
@@ -422,11 +417,11 @@ export namespace token {
|
|
|
422
417
|
}
|
|
423
418
|
}
|
|
424
419
|
|
|
425
|
-
export
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
420
|
+
export type MutatePropertyMapInstance =
|
|
421
|
+
TypedEventInstance<MutatePropertyMap> & {
|
|
422
|
+
data_decoded: MutatePropertyMap;
|
|
423
|
+
type_arguments: [];
|
|
424
|
+
};
|
|
430
425
|
|
|
431
426
|
export interface MutateTokenPropertyMap {
|
|
432
427
|
old_id: token.TokenId;
|
|
@@ -448,11 +443,11 @@ export namespace token {
|
|
|
448
443
|
}
|
|
449
444
|
}
|
|
450
445
|
|
|
451
|
-
export
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
446
|
+
export type MutateTokenPropertyMapInstance =
|
|
447
|
+
TypedEventInstance<MutateTokenPropertyMap> & {
|
|
448
|
+
data_decoded: MutateTokenPropertyMap;
|
|
449
|
+
type_arguments: [];
|
|
450
|
+
};
|
|
456
451
|
|
|
457
452
|
export interface MutateTokenPropertyMapEvent {
|
|
458
453
|
old_id: token.TokenId;
|
|
@@ -474,11 +469,11 @@ export namespace token {
|
|
|
474
469
|
}
|
|
475
470
|
}
|
|
476
471
|
|
|
477
|
-
export
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
472
|
+
export type MutateTokenPropertyMapEventInstance =
|
|
473
|
+
TypedEventInstance<MutateTokenPropertyMapEvent> & {
|
|
474
|
+
data_decoded: MutateTokenPropertyMapEvent;
|
|
475
|
+
type_arguments: [];
|
|
476
|
+
};
|
|
482
477
|
|
|
483
478
|
export interface Royalty {
|
|
484
479
|
royalty_points_numerator: bigint;
|
|
@@ -562,11 +557,11 @@ export namespace token {
|
|
|
562
557
|
}
|
|
563
558
|
}
|
|
564
559
|
|
|
565
|
-
export
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
560
|
+
export type TokenDataCreationInstance =
|
|
561
|
+
TypedEventInstance<TokenDataCreation> & {
|
|
562
|
+
data_decoded: TokenDataCreation;
|
|
563
|
+
type_arguments: [];
|
|
564
|
+
};
|
|
570
565
|
|
|
571
566
|
export interface TokenDataId {
|
|
572
567
|
creator: MoveAddressType;
|
|
@@ -600,11 +595,10 @@ export namespace token {
|
|
|
600
595
|
}
|
|
601
596
|
}
|
|
602
597
|
|
|
603
|
-
export
|
|
604
|
-
extends TypedEventInstance<TokenDeposit> {
|
|
598
|
+
export type TokenDepositInstance = TypedEventInstance<TokenDeposit> & {
|
|
605
599
|
data_decoded: TokenDeposit;
|
|
606
600
|
type_arguments: [];
|
|
607
|
-
}
|
|
601
|
+
};
|
|
608
602
|
|
|
609
603
|
export interface TokenId {
|
|
610
604
|
token_data_id: token.TokenDataId;
|
|
@@ -676,11 +670,10 @@ export namespace token {
|
|
|
676
670
|
}
|
|
677
671
|
}
|
|
678
672
|
|
|
679
|
-
export
|
|
680
|
-
extends TypedEventInstance<TokenWithdraw> {
|
|
673
|
+
export type TokenWithdrawInstance = TypedEventInstance<TokenWithdraw> & {
|
|
681
674
|
data_decoded: TokenWithdraw;
|
|
682
675
|
type_arguments: [];
|
|
683
|
-
}
|
|
676
|
+
};
|
|
684
677
|
|
|
685
678
|
export interface WithdrawCapability {
|
|
686
679
|
token_owner: MoveAddressType;
|
|
@@ -1105,11 +1098,11 @@ export namespace token_coin_swap {
|
|
|
1105
1098
|
}
|
|
1106
1099
|
}
|
|
1107
1100
|
|
|
1108
|
-
export
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1101
|
+
export type TokenListingEventInstance =
|
|
1102
|
+
TypedEventInstance<TokenListingEvent> & {
|
|
1103
|
+
data_decoded: TokenListingEvent;
|
|
1104
|
+
type_arguments: [];
|
|
1105
|
+
};
|
|
1113
1106
|
|
|
1114
1107
|
export interface TokenListings<T0> {
|
|
1115
1108
|
listings: _0x1.table.Table<
|
|
@@ -1168,11 +1161,10 @@ export namespace token_coin_swap {
|
|
|
1168
1161
|
}
|
|
1169
1162
|
}
|
|
1170
1163
|
|
|
1171
|
-
export
|
|
1172
|
-
extends TypedEventInstance<TokenSwapEvent> {
|
|
1164
|
+
export type TokenSwapEventInstance = TypedEventInstance<TokenSwapEvent> & {
|
|
1173
1165
|
data_decoded: TokenSwapEvent;
|
|
1174
1166
|
type_arguments: [];
|
|
1175
|
-
}
|
|
1167
|
+
};
|
|
1176
1168
|
|
|
1177
1169
|
export namespace entry {
|
|
1178
1170
|
export async function listTokenForSwap<T0 = any>(
|
|
@@ -1229,10 +1221,10 @@ export namespace token_transfers {
|
|
|
1229
1221
|
}
|
|
1230
1222
|
}
|
|
1231
1223
|
|
|
1232
|
-
export
|
|
1224
|
+
export type CancelOfferInstance = TypedEventInstance<CancelOffer> & {
|
|
1233
1225
|
data_decoded: CancelOffer;
|
|
1234
1226
|
type_arguments: [];
|
|
1235
|
-
}
|
|
1227
|
+
};
|
|
1236
1228
|
|
|
1237
1229
|
export interface Claim {
|
|
1238
1230
|
account: MoveAddressType;
|
|
@@ -1251,10 +1243,10 @@ export namespace token_transfers {
|
|
|
1251
1243
|
}
|
|
1252
1244
|
}
|
|
1253
1245
|
|
|
1254
|
-
export
|
|
1246
|
+
export type ClaimInstance = TypedEventInstance<Claim> & {
|
|
1255
1247
|
data_decoded: Claim;
|
|
1256
1248
|
type_arguments: [];
|
|
1257
|
-
}
|
|
1249
|
+
};
|
|
1258
1250
|
|
|
1259
1251
|
export interface Offer {
|
|
1260
1252
|
account: MoveAddressType;
|
|
@@ -1273,10 +1265,10 @@ export namespace token_transfers {
|
|
|
1273
1265
|
}
|
|
1274
1266
|
}
|
|
1275
1267
|
|
|
1276
|
-
export
|
|
1268
|
+
export type OfferInstance = TypedEventInstance<Offer> & {
|
|
1277
1269
|
data_decoded: Offer;
|
|
1278
1270
|
type_arguments: [];
|
|
1279
|
-
}
|
|
1271
|
+
};
|
|
1280
1272
|
|
|
1281
1273
|
export interface PendingClaims {
|
|
1282
1274
|
pending_claims: _0x1.table.Table<token_transfers.TokenOfferId, token.Token>;
|
|
@@ -1313,11 +1305,11 @@ export namespace token_transfers {
|
|
|
1313
1305
|
}
|
|
1314
1306
|
}
|
|
1315
1307
|
|
|
1316
|
-
export
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1308
|
+
export type TokenCancelOfferInstance =
|
|
1309
|
+
TypedEventInstance<TokenCancelOffer> & {
|
|
1310
|
+
data_decoded: TokenCancelOffer;
|
|
1311
|
+
type_arguments: [];
|
|
1312
|
+
};
|
|
1321
1313
|
|
|
1322
1314
|
export interface TokenCancelOfferEvent {
|
|
1323
1315
|
to_address: MoveAddressType;
|
|
@@ -1337,11 +1329,11 @@ export namespace token_transfers {
|
|
|
1337
1329
|
}
|
|
1338
1330
|
}
|
|
1339
1331
|
|
|
1340
|
-
export
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1332
|
+
export type TokenCancelOfferEventInstance =
|
|
1333
|
+
TypedEventInstance<TokenCancelOfferEvent> & {
|
|
1334
|
+
data_decoded: TokenCancelOfferEvent;
|
|
1335
|
+
type_arguments: [];
|
|
1336
|
+
};
|
|
1345
1337
|
|
|
1346
1338
|
export interface TokenClaim {
|
|
1347
1339
|
to_address: MoveAddressType;
|
|
@@ -1359,10 +1351,10 @@ export namespace token_transfers {
|
|
|
1359
1351
|
}
|
|
1360
1352
|
}
|
|
1361
1353
|
|
|
1362
|
-
export
|
|
1354
|
+
export type TokenClaimInstance = TypedEventInstance<TokenClaim> & {
|
|
1363
1355
|
data_decoded: TokenClaim;
|
|
1364
1356
|
type_arguments: [];
|
|
1365
|
-
}
|
|
1357
|
+
};
|
|
1366
1358
|
|
|
1367
1359
|
export interface TokenClaimEvent {
|
|
1368
1360
|
to_address: MoveAddressType;
|
|
@@ -1382,11 +1374,10 @@ export namespace token_transfers {
|
|
|
1382
1374
|
}
|
|
1383
1375
|
}
|
|
1384
1376
|
|
|
1385
|
-
export
|
|
1386
|
-
extends TypedEventInstance<TokenClaimEvent> {
|
|
1377
|
+
export type TokenClaimEventInstance = TypedEventInstance<TokenClaimEvent> & {
|
|
1387
1378
|
data_decoded: TokenClaimEvent;
|
|
1388
1379
|
type_arguments: [];
|
|
1389
|
-
}
|
|
1380
|
+
};
|
|
1390
1381
|
|
|
1391
1382
|
export interface TokenOffer {
|
|
1392
1383
|
to_address: MoveAddressType;
|
|
@@ -1404,10 +1395,10 @@ export namespace token_transfers {
|
|
|
1404
1395
|
}
|
|
1405
1396
|
}
|
|
1406
1397
|
|
|
1407
|
-
export
|
|
1398
|
+
export type TokenOfferInstance = TypedEventInstance<TokenOffer> & {
|
|
1408
1399
|
data_decoded: TokenOffer;
|
|
1409
1400
|
type_arguments: [];
|
|
1410
|
-
}
|
|
1401
|
+
};
|
|
1411
1402
|
|
|
1412
1403
|
export interface TokenOfferEvent {
|
|
1413
1404
|
to_address: MoveAddressType;
|
|
@@ -1427,11 +1418,10 @@ export namespace token_transfers {
|
|
|
1427
1418
|
}
|
|
1428
1419
|
}
|
|
1429
1420
|
|
|
1430
|
-
export
|
|
1431
|
-
extends TypedEventInstance<TokenOfferEvent> {
|
|
1421
|
+
export type TokenOfferEventInstance = TypedEventInstance<TokenOfferEvent> & {
|
|
1432
1422
|
data_decoded: TokenOfferEvent;
|
|
1433
1423
|
type_arguments: [];
|
|
1434
|
-
}
|
|
1424
|
+
};
|
|
1435
1425
|
|
|
1436
1426
|
export interface TokenOfferId {
|
|
1437
1427
|
to_addr: MoveAddressType;
|
|
@@ -1448,11 +1438,10 @@ export namespace token_transfers {
|
|
|
1448
1438
|
}
|
|
1449
1439
|
}
|
|
1450
1440
|
|
|
1451
|
-
export
|
|
1452
|
-
extends TypedEventInstance<TokenOfferId> {
|
|
1441
|
+
export type TokenOfferIdInstance = TypedEventInstance<TokenOfferId> & {
|
|
1453
1442
|
data_decoded: TokenOfferId;
|
|
1454
1443
|
type_arguments: [];
|
|
1455
|
-
}
|
|
1444
|
+
};
|
|
1456
1445
|
|
|
1457
1446
|
export namespace entry {
|
|
1458
1447
|
export async function cancelOfferScript(
|
|
@@ -1576,11 +1565,11 @@ export namespace token_event_store {
|
|
|
1576
1565
|
}
|
|
1577
1566
|
}
|
|
1578
1567
|
|
|
1579
|
-
export
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1568
|
+
export type CollectionDescriptionMutateInstance =
|
|
1569
|
+
TypedEventInstance<CollectionDescriptionMutate> & {
|
|
1570
|
+
data_decoded: CollectionDescriptionMutate;
|
|
1571
|
+
type_arguments: [];
|
|
1572
|
+
};
|
|
1584
1573
|
|
|
1585
1574
|
export interface CollectionDescriptionMutateEvent {
|
|
1586
1575
|
creator_addr: MoveAddressType;
|
|
@@ -1602,11 +1591,11 @@ export namespace token_event_store {
|
|
|
1602
1591
|
}
|
|
1603
1592
|
}
|
|
1604
1593
|
|
|
1605
|
-
export
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1594
|
+
export type CollectionDescriptionMutateEventInstance =
|
|
1595
|
+
TypedEventInstance<CollectionDescriptionMutateEvent> & {
|
|
1596
|
+
data_decoded: CollectionDescriptionMutateEvent;
|
|
1597
|
+
type_arguments: [];
|
|
1598
|
+
};
|
|
1610
1599
|
|
|
1611
1600
|
export interface CollectionMaximumMutate {
|
|
1612
1601
|
creator_addr: MoveAddressType;
|
|
@@ -1627,11 +1616,11 @@ export namespace token_event_store {
|
|
|
1627
1616
|
}
|
|
1628
1617
|
}
|
|
1629
1618
|
|
|
1630
|
-
export
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1619
|
+
export type CollectionMaximumMutateInstance =
|
|
1620
|
+
TypedEventInstance<CollectionMaximumMutate> & {
|
|
1621
|
+
data_decoded: CollectionMaximumMutate;
|
|
1622
|
+
type_arguments: [];
|
|
1623
|
+
};
|
|
1635
1624
|
|
|
1636
1625
|
export interface CollectionMaxiumMutate {
|
|
1637
1626
|
creator_addr: MoveAddressType;
|
|
@@ -1652,11 +1641,11 @@ export namespace token_event_store {
|
|
|
1652
1641
|
}
|
|
1653
1642
|
}
|
|
1654
1643
|
|
|
1655
|
-
export
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1644
|
+
export type CollectionMaxiumMutateInstance =
|
|
1645
|
+
TypedEventInstance<CollectionMaxiumMutate> & {
|
|
1646
|
+
data_decoded: CollectionMaxiumMutate;
|
|
1647
|
+
type_arguments: [];
|
|
1648
|
+
};
|
|
1660
1649
|
|
|
1661
1650
|
export interface CollectionMaxiumMutateEvent {
|
|
1662
1651
|
creator_addr: MoveAddressType;
|
|
@@ -1678,11 +1667,11 @@ export namespace token_event_store {
|
|
|
1678
1667
|
}
|
|
1679
1668
|
}
|
|
1680
1669
|
|
|
1681
|
-
export
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1670
|
+
export type CollectionMaxiumMutateEventInstance =
|
|
1671
|
+
TypedEventInstance<CollectionMaxiumMutateEvent> & {
|
|
1672
|
+
data_decoded: CollectionMaxiumMutateEvent;
|
|
1673
|
+
type_arguments: [];
|
|
1674
|
+
};
|
|
1686
1675
|
|
|
1687
1676
|
export interface CollectionUriMutate {
|
|
1688
1677
|
creator_addr: MoveAddressType;
|
|
@@ -1703,11 +1692,11 @@ export namespace token_event_store {
|
|
|
1703
1692
|
}
|
|
1704
1693
|
}
|
|
1705
1694
|
|
|
1706
|
-
export
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1695
|
+
export type CollectionUriMutateInstance =
|
|
1696
|
+
TypedEventInstance<CollectionUriMutate> & {
|
|
1697
|
+
data_decoded: CollectionUriMutate;
|
|
1698
|
+
type_arguments: [];
|
|
1699
|
+
};
|
|
1711
1700
|
|
|
1712
1701
|
export interface CollectionUriMutateEvent {
|
|
1713
1702
|
creator_addr: MoveAddressType;
|
|
@@ -1729,11 +1718,11 @@ export namespace token_event_store {
|
|
|
1729
1718
|
}
|
|
1730
1719
|
}
|
|
1731
1720
|
|
|
1732
|
-
export
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1721
|
+
export type CollectionUriMutateEventInstance =
|
|
1722
|
+
TypedEventInstance<CollectionUriMutateEvent> & {
|
|
1723
|
+
data_decoded: CollectionUriMutateEvent;
|
|
1724
|
+
type_arguments: [];
|
|
1725
|
+
};
|
|
1737
1726
|
|
|
1738
1727
|
export interface DefaultPropertyMutate {
|
|
1739
1728
|
creator: MoveAddressType;
|
|
@@ -1756,11 +1745,11 @@ export namespace token_event_store {
|
|
|
1756
1745
|
}
|
|
1757
1746
|
}
|
|
1758
1747
|
|
|
1759
|
-
export
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1748
|
+
export type DefaultPropertyMutateInstance =
|
|
1749
|
+
TypedEventInstance<DefaultPropertyMutate> & {
|
|
1750
|
+
data_decoded: DefaultPropertyMutate;
|
|
1751
|
+
type_arguments: [];
|
|
1752
|
+
};
|
|
1764
1753
|
|
|
1765
1754
|
export interface DefaultPropertyMutateEvent {
|
|
1766
1755
|
creator: MoveAddressType;
|
|
@@ -1784,11 +1773,11 @@ export namespace token_event_store {
|
|
|
1784
1773
|
}
|
|
1785
1774
|
}
|
|
1786
1775
|
|
|
1787
|
-
export
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1776
|
+
export type DefaultPropertyMutateEventInstance =
|
|
1777
|
+
TypedEventInstance<DefaultPropertyMutateEvent> & {
|
|
1778
|
+
data_decoded: DefaultPropertyMutateEvent;
|
|
1779
|
+
type_arguments: [];
|
|
1780
|
+
};
|
|
1792
1781
|
|
|
1793
1782
|
export interface DescriptionMutate {
|
|
1794
1783
|
creator: MoveAddressType;
|
|
@@ -1810,11 +1799,11 @@ export namespace token_event_store {
|
|
|
1810
1799
|
}
|
|
1811
1800
|
}
|
|
1812
1801
|
|
|
1813
|
-
export
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1802
|
+
export type DescriptionMutateInstance =
|
|
1803
|
+
TypedEventInstance<DescriptionMutate> & {
|
|
1804
|
+
data_decoded: DescriptionMutate;
|
|
1805
|
+
type_arguments: [];
|
|
1806
|
+
};
|
|
1818
1807
|
|
|
1819
1808
|
export interface DescriptionMutateEvent {
|
|
1820
1809
|
creator: MoveAddressType;
|
|
@@ -1836,11 +1825,11 @@ export namespace token_event_store {
|
|
|
1836
1825
|
}
|
|
1837
1826
|
}
|
|
1838
1827
|
|
|
1839
|
-
export
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1828
|
+
export type DescriptionMutateEventInstance =
|
|
1829
|
+
TypedEventInstance<DescriptionMutateEvent> & {
|
|
1830
|
+
data_decoded: DescriptionMutateEvent;
|
|
1831
|
+
type_arguments: [];
|
|
1832
|
+
};
|
|
1844
1833
|
|
|
1845
1834
|
export interface MaximumMutate {
|
|
1846
1835
|
creator: MoveAddressType;
|
|
@@ -1860,11 +1849,10 @@ export namespace token_event_store {
|
|
|
1860
1849
|
}
|
|
1861
1850
|
}
|
|
1862
1851
|
|
|
1863
|
-
export
|
|
1864
|
-
extends TypedEventInstance<MaximumMutate> {
|
|
1852
|
+
export type MaximumMutateInstance = TypedEventInstance<MaximumMutate> & {
|
|
1865
1853
|
data_decoded: MaximumMutate;
|
|
1866
1854
|
type_arguments: [];
|
|
1867
|
-
}
|
|
1855
|
+
};
|
|
1868
1856
|
|
|
1869
1857
|
export interface MaxiumMutateEvent {
|
|
1870
1858
|
creator: MoveAddressType;
|
|
@@ -1886,11 +1874,11 @@ export namespace token_event_store {
|
|
|
1886
1874
|
}
|
|
1887
1875
|
}
|
|
1888
1876
|
|
|
1889
|
-
export
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1877
|
+
export type MaxiumMutateEventInstance =
|
|
1878
|
+
TypedEventInstance<MaxiumMutateEvent> & {
|
|
1879
|
+
data_decoded: MaxiumMutateEvent;
|
|
1880
|
+
type_arguments: [];
|
|
1881
|
+
};
|
|
1894
1882
|
|
|
1895
1883
|
export interface OptInTransfer {
|
|
1896
1884
|
account_address: MoveAddressType;
|
|
@@ -1907,11 +1895,10 @@ export namespace token_event_store {
|
|
|
1907
1895
|
}
|
|
1908
1896
|
}
|
|
1909
1897
|
|
|
1910
|
-
export
|
|
1911
|
-
extends TypedEventInstance<OptInTransfer> {
|
|
1898
|
+
export type OptInTransferInstance = TypedEventInstance<OptInTransfer> & {
|
|
1912
1899
|
data_decoded: OptInTransfer;
|
|
1913
1900
|
type_arguments: [];
|
|
1914
|
-
}
|
|
1901
|
+
};
|
|
1915
1902
|
|
|
1916
1903
|
export interface OptInTransferEvent {
|
|
1917
1904
|
opt_in: boolean;
|
|
@@ -1929,11 +1916,11 @@ export namespace token_event_store {
|
|
|
1929
1916
|
}
|
|
1930
1917
|
}
|
|
1931
1918
|
|
|
1932
|
-
export
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1919
|
+
export type OptInTransferEventInstance =
|
|
1920
|
+
TypedEventInstance<OptInTransferEvent> & {
|
|
1921
|
+
data_decoded: OptInTransferEvent;
|
|
1922
|
+
type_arguments: [];
|
|
1923
|
+
};
|
|
1937
1924
|
|
|
1938
1925
|
export interface RoyaltyMutate {
|
|
1939
1926
|
creator: MoveAddressType;
|
|
@@ -1957,11 +1944,10 @@ export namespace token_event_store {
|
|
|
1957
1944
|
}
|
|
1958
1945
|
}
|
|
1959
1946
|
|
|
1960
|
-
export
|
|
1961
|
-
extends TypedEventInstance<RoyaltyMutate> {
|
|
1947
|
+
export type RoyaltyMutateInstance = TypedEventInstance<RoyaltyMutate> & {
|
|
1962
1948
|
data_decoded: RoyaltyMutate;
|
|
1963
1949
|
type_arguments: [];
|
|
1964
|
-
}
|
|
1950
|
+
};
|
|
1965
1951
|
|
|
1966
1952
|
export interface RoyaltyMutateEvent {
|
|
1967
1953
|
creator: MoveAddressType;
|
|
@@ -1987,11 +1973,11 @@ export namespace token_event_store {
|
|
|
1987
1973
|
}
|
|
1988
1974
|
}
|
|
1989
1975
|
|
|
1990
|
-
export
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1976
|
+
export type RoyaltyMutateEventInstance =
|
|
1977
|
+
TypedEventInstance<RoyaltyMutateEvent> & {
|
|
1978
|
+
data_decoded: RoyaltyMutateEvent;
|
|
1979
|
+
type_arguments: [];
|
|
1980
|
+
};
|
|
1995
1981
|
|
|
1996
1982
|
export interface TokenEventStoreV1 {
|
|
1997
1983
|
collection_uri_mutate_events: _0x1.event.EventHandle<token_event_store.CollectionUriMutateEvent>;
|
|
@@ -2036,10 +2022,10 @@ export namespace token_event_store {
|
|
|
2036
2022
|
}
|
|
2037
2023
|
}
|
|
2038
2024
|
|
|
2039
|
-
export
|
|
2025
|
+
export type UriMutationInstance = TypedEventInstance<UriMutation> & {
|
|
2040
2026
|
data_decoded: UriMutation;
|
|
2041
2027
|
type_arguments: [];
|
|
2042
|
-
}
|
|
2028
|
+
};
|
|
2043
2029
|
|
|
2044
2030
|
export interface UriMutationEvent {
|
|
2045
2031
|
creator: MoveAddressType;
|
|
@@ -2061,11 +2047,11 @@ export namespace token_event_store {
|
|
|
2061
2047
|
}
|
|
2062
2048
|
}
|
|
2063
2049
|
|
|
2064
|
-
export
|
|
2065
|
-
|
|
2066
|
-
|
|
2067
|
-
|
|
2068
|
-
|
|
2050
|
+
export type UriMutationEventInstance =
|
|
2051
|
+
TypedEventInstance<UriMutationEvent> & {
|
|
2052
|
+
data_decoded: UriMutationEvent;
|
|
2053
|
+
type_arguments: [];
|
|
2054
|
+
};
|
|
2069
2055
|
|
|
2070
2056
|
export namespace entry {}
|
|
2071
2057
|
export namespace view {}
|