@typemove/aptos 1.0.0-rc.13

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.
Files changed (67) hide show
  1. package/LICENSE +201 -0
  2. package/dist/aptos-chain-adapter.d.ts +12 -0
  3. package/dist/aptos-chain-adapter.d.ts.map +1 -0
  4. package/dist/aptos-chain-adapter.js +64 -0
  5. package/dist/aptos-chain-adapter.js.map +1 -0
  6. package/dist/builtin/0x1.d.ts +2274 -0
  7. package/dist/builtin/0x1.d.ts.map +1 -0
  8. package/dist/builtin/0x1.js +2126 -0
  9. package/dist/builtin/0x1.js.map +1 -0
  10. package/dist/builtin/0x3.d.ts +514 -0
  11. package/dist/builtin/0x3.d.ts.map +1 -0
  12. package/dist/builtin/0x3.js +400 -0
  13. package/dist/builtin/0x3.js.map +1 -0
  14. package/dist/builtin/index.d.ts +3 -0
  15. package/dist/builtin/index.d.ts.map +1 -0
  16. package/dist/builtin/index.js +6 -0
  17. package/dist/builtin/index.js.map +1 -0
  18. package/dist/codegen/codegen.d.ts +2 -0
  19. package/dist/codegen/codegen.d.ts.map +1 -0
  20. package/dist/codegen/codegen.js +23 -0
  21. package/dist/codegen/codegen.js.map +1 -0
  22. package/dist/codegen/index.d.ts +2 -0
  23. package/dist/codegen/index.d.ts.map +1 -0
  24. package/dist/codegen/index.js +2 -0
  25. package/dist/codegen/index.js.map +1 -0
  26. package/dist/codegen/run.d.ts +2 -0
  27. package/dist/codegen/run.d.ts.map +1 -0
  28. package/dist/codegen/run.js +19 -0
  29. package/dist/codegen/run.js.map +1 -0
  30. package/dist/codegen/types.test.d.ts +2 -0
  31. package/dist/codegen/types.test.d.ts.map +1 -0
  32. package/dist/codegen/types.test.js.map +1 -0
  33. package/dist/index.d.ts +4 -0
  34. package/dist/index.d.ts.map +1 -0
  35. package/dist/index.js +4 -0
  36. package/dist/index.js.map +1 -0
  37. package/dist/models.d.ts +11 -0
  38. package/dist/models.d.ts.map +1 -0
  39. package/dist/models.js +2 -0
  40. package/dist/models.js.map +1 -0
  41. package/dist/move-coder.d.ts +14 -0
  42. package/dist/move-coder.d.ts.map +1 -0
  43. package/dist/move-coder.js +70 -0
  44. package/dist/move-coder.js.map +1 -0
  45. package/dist/move-types.d.ts +12 -0
  46. package/dist/move-types.d.ts.map +1 -0
  47. package/dist/move-types.js +2 -0
  48. package/dist/move-types.js.map +1 -0
  49. package/dist/to-internal.d.ts +7 -0
  50. package/dist/to-internal.d.ts.map +1 -0
  51. package/dist/to-internal.js +52 -0
  52. package/dist/to-internal.js.map +1 -0
  53. package/package.json +42 -0
  54. package/src/abis/0x1.json +12790 -0
  55. package/src/abis/0x3.json +2275 -0
  56. package/src/aptos-chain-adapter.ts +91 -0
  57. package/src/builtin/0x1.ts +4258 -0
  58. package/src/builtin/0x3.ts +922 -0
  59. package/src/builtin/index.ts +5 -0
  60. package/src/codegen/codegen.ts +42 -0
  61. package/src/codegen/index.ts +1 -0
  62. package/src/codegen/run.ts +20 -0
  63. package/src/index.ts +3 -0
  64. package/src/models.ts +18 -0
  65. package/src/move-coder.ts +84 -0
  66. package/src/move-types.ts +13 -0
  67. package/src/to-internal.ts +72 -0
@@ -0,0 +1,922 @@
1
+ /* Autogenerated file. Do not edit manually. */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ /* Generated modules for account 0x3 */
6
+
7
+ import { TypeDescriptor, ANY_TYPE } from "@typemove/move";
8
+ import {
9
+ MoveCoder,
10
+ defaultMoveCoder,
11
+ TypedEventInstance,
12
+ } from "@typemove/aptos";
13
+ import { Address } from "@typemove/aptos";
14
+
15
+ import * as _0x1 from "./0x1.js";
16
+
17
+ export namespace token {
18
+ export interface BurnTokenEvent {
19
+ id: token.TokenId;
20
+ amount: bigint;
21
+ }
22
+
23
+ export namespace BurnTokenEvent {
24
+ export const TYPE_QNAME = "0x3::token::BurnTokenEvent";
25
+
26
+ const TYPE = new TypeDescriptor<BurnTokenEvent>(BurnTokenEvent.TYPE_QNAME);
27
+
28
+ export function type(): TypeDescriptor<BurnTokenEvent> {
29
+ return TYPE.apply();
30
+ }
31
+ }
32
+
33
+ export interface BurnTokenEventInstance
34
+ extends TypedEventInstance<BurnTokenEvent> {
35
+ data_decoded: BurnTokenEvent;
36
+ type_arguments: [];
37
+ }
38
+
39
+ export interface CollectionData {
40
+ description: string;
41
+ name: string;
42
+ uri: string;
43
+ supply: bigint;
44
+ maximum: bigint;
45
+ mutability_config: token.CollectionMutabilityConfig;
46
+ }
47
+
48
+ export namespace CollectionData {
49
+ export const TYPE_QNAME = "0x3::token::CollectionData";
50
+
51
+ const TYPE = new TypeDescriptor<CollectionData>(CollectionData.TYPE_QNAME);
52
+
53
+ export function type(): TypeDescriptor<CollectionData> {
54
+ return TYPE.apply();
55
+ }
56
+ }
57
+
58
+ export interface CollectionMutabilityConfig {
59
+ description: Boolean;
60
+ uri: Boolean;
61
+ maximum: Boolean;
62
+ }
63
+
64
+ export namespace CollectionMutabilityConfig {
65
+ export const TYPE_QNAME = "0x3::token::CollectionMutabilityConfig";
66
+
67
+ const TYPE = new TypeDescriptor<CollectionMutabilityConfig>(
68
+ CollectionMutabilityConfig.TYPE_QNAME
69
+ );
70
+
71
+ export function type(): TypeDescriptor<CollectionMutabilityConfig> {
72
+ return TYPE.apply();
73
+ }
74
+ }
75
+
76
+ export interface Collections {
77
+ collection_data: _0x1.table.Table<string, token.CollectionData>;
78
+ token_data: _0x1.table.Table<token.TokenDataId, token.TokenData>;
79
+ create_collection_events: _0x1.event.EventHandle<token.CreateCollectionEvent>;
80
+ create_token_data_events: _0x1.event.EventHandle<token.CreateTokenDataEvent>;
81
+ mint_token_events: _0x1.event.EventHandle<token.MintTokenEvent>;
82
+ }
83
+
84
+ export namespace Collections {
85
+ export const TYPE_QNAME = "0x3::token::Collections";
86
+
87
+ const TYPE = new TypeDescriptor<Collections>(Collections.TYPE_QNAME);
88
+
89
+ export function type(): TypeDescriptor<Collections> {
90
+ return TYPE.apply();
91
+ }
92
+ }
93
+
94
+ export interface CreateCollectionEvent {
95
+ creator: Address;
96
+ collection_name: string;
97
+ uri: string;
98
+ description: string;
99
+ maximum: bigint;
100
+ }
101
+
102
+ export namespace CreateCollectionEvent {
103
+ export const TYPE_QNAME = "0x3::token::CreateCollectionEvent";
104
+
105
+ const TYPE = new TypeDescriptor<CreateCollectionEvent>(
106
+ CreateCollectionEvent.TYPE_QNAME
107
+ );
108
+
109
+ export function type(): TypeDescriptor<CreateCollectionEvent> {
110
+ return TYPE.apply();
111
+ }
112
+ }
113
+
114
+ export interface CreateCollectionEventInstance
115
+ extends TypedEventInstance<CreateCollectionEvent> {
116
+ data_decoded: CreateCollectionEvent;
117
+ type_arguments: [];
118
+ }
119
+
120
+ export interface CreateTokenDataEvent {
121
+ id: token.TokenDataId;
122
+ description: string;
123
+ maximum: bigint;
124
+ uri: string;
125
+ royalty_payee_address: Address;
126
+ royalty_points_denominator: bigint;
127
+ royalty_points_numerator: bigint;
128
+ name: string;
129
+ mutability_config: token.TokenMutabilityConfig;
130
+ property_keys: string[];
131
+ property_values: string[];
132
+ property_types: string[];
133
+ }
134
+
135
+ export namespace CreateTokenDataEvent {
136
+ export const TYPE_QNAME = "0x3::token::CreateTokenDataEvent";
137
+
138
+ const TYPE = new TypeDescriptor<CreateTokenDataEvent>(
139
+ CreateTokenDataEvent.TYPE_QNAME
140
+ );
141
+
142
+ export function type(): TypeDescriptor<CreateTokenDataEvent> {
143
+ return TYPE.apply();
144
+ }
145
+ }
146
+
147
+ export interface CreateTokenDataEventInstance
148
+ extends TypedEventInstance<CreateTokenDataEvent> {
149
+ data_decoded: CreateTokenDataEvent;
150
+ type_arguments: [];
151
+ }
152
+
153
+ export interface DepositEvent {
154
+ id: token.TokenId;
155
+ amount: bigint;
156
+ }
157
+
158
+ export namespace DepositEvent {
159
+ export const TYPE_QNAME = "0x3::token::DepositEvent";
160
+
161
+ const TYPE = new TypeDescriptor<DepositEvent>(DepositEvent.TYPE_QNAME);
162
+
163
+ export function type(): TypeDescriptor<DepositEvent> {
164
+ return TYPE.apply();
165
+ }
166
+ }
167
+
168
+ export interface DepositEventInstance
169
+ extends TypedEventInstance<DepositEvent> {
170
+ data_decoded: DepositEvent;
171
+ type_arguments: [];
172
+ }
173
+
174
+ export interface MintTokenEvent {
175
+ id: token.TokenDataId;
176
+ amount: bigint;
177
+ }
178
+
179
+ export namespace MintTokenEvent {
180
+ export const TYPE_QNAME = "0x3::token::MintTokenEvent";
181
+
182
+ const TYPE = new TypeDescriptor<MintTokenEvent>(MintTokenEvent.TYPE_QNAME);
183
+
184
+ export function type(): TypeDescriptor<MintTokenEvent> {
185
+ return TYPE.apply();
186
+ }
187
+ }
188
+
189
+ export interface MintTokenEventInstance
190
+ extends TypedEventInstance<MintTokenEvent> {
191
+ data_decoded: MintTokenEvent;
192
+ type_arguments: [];
193
+ }
194
+
195
+ export interface MutateTokenPropertyMapEvent {
196
+ old_id: token.TokenId;
197
+ new_id: token.TokenId;
198
+ keys: string[];
199
+ values: string[];
200
+ types: string[];
201
+ }
202
+
203
+ export namespace MutateTokenPropertyMapEvent {
204
+ export const TYPE_QNAME = "0x3::token::MutateTokenPropertyMapEvent";
205
+
206
+ const TYPE = new TypeDescriptor<MutateTokenPropertyMapEvent>(
207
+ MutateTokenPropertyMapEvent.TYPE_QNAME
208
+ );
209
+
210
+ export function type(): TypeDescriptor<MutateTokenPropertyMapEvent> {
211
+ return TYPE.apply();
212
+ }
213
+ }
214
+
215
+ export interface MutateTokenPropertyMapEventInstance
216
+ extends TypedEventInstance<MutateTokenPropertyMapEvent> {
217
+ data_decoded: MutateTokenPropertyMapEvent;
218
+ type_arguments: [];
219
+ }
220
+
221
+ export interface Royalty {
222
+ royalty_points_numerator: bigint;
223
+ royalty_points_denominator: bigint;
224
+ payee_address: Address;
225
+ }
226
+
227
+ export namespace Royalty {
228
+ export const TYPE_QNAME = "0x3::token::Royalty";
229
+
230
+ const TYPE = new TypeDescriptor<Royalty>(Royalty.TYPE_QNAME);
231
+
232
+ export function type(): TypeDescriptor<Royalty> {
233
+ return TYPE.apply();
234
+ }
235
+ }
236
+
237
+ export interface Token {
238
+ id: token.TokenId;
239
+ amount: bigint;
240
+ token_properties: property_map.PropertyMap;
241
+ }
242
+
243
+ export namespace Token {
244
+ export const TYPE_QNAME = "0x3::token::Token";
245
+
246
+ const TYPE = new TypeDescriptor<Token>(Token.TYPE_QNAME);
247
+
248
+ export function type(): TypeDescriptor<Token> {
249
+ return TYPE.apply();
250
+ }
251
+ }
252
+
253
+ export interface TokenData {
254
+ maximum: bigint;
255
+ largest_property_version: bigint;
256
+ supply: bigint;
257
+ uri: string;
258
+ royalty: token.Royalty;
259
+ name: string;
260
+ description: string;
261
+ default_properties: property_map.PropertyMap;
262
+ mutability_config: token.TokenMutabilityConfig;
263
+ }
264
+
265
+ export namespace TokenData {
266
+ export const TYPE_QNAME = "0x3::token::TokenData";
267
+
268
+ const TYPE = new TypeDescriptor<TokenData>(TokenData.TYPE_QNAME);
269
+
270
+ export function type(): TypeDescriptor<TokenData> {
271
+ return TYPE.apply();
272
+ }
273
+ }
274
+
275
+ export interface TokenDataId {
276
+ creator: Address;
277
+ collection: string;
278
+ name: string;
279
+ }
280
+
281
+ export namespace TokenDataId {
282
+ export const TYPE_QNAME = "0x3::token::TokenDataId";
283
+
284
+ const TYPE = new TypeDescriptor<TokenDataId>(TokenDataId.TYPE_QNAME);
285
+
286
+ export function type(): TypeDescriptor<TokenDataId> {
287
+ return TYPE.apply();
288
+ }
289
+ }
290
+
291
+ export interface TokenId {
292
+ token_data_id: token.TokenDataId;
293
+ property_version: bigint;
294
+ }
295
+
296
+ export namespace TokenId {
297
+ export const TYPE_QNAME = "0x3::token::TokenId";
298
+
299
+ const TYPE = new TypeDescriptor<TokenId>(TokenId.TYPE_QNAME);
300
+
301
+ export function type(): TypeDescriptor<TokenId> {
302
+ return TYPE.apply();
303
+ }
304
+ }
305
+
306
+ export interface TokenMutabilityConfig {
307
+ maximum: Boolean;
308
+ uri: Boolean;
309
+ royalty: Boolean;
310
+ description: Boolean;
311
+ properties: Boolean;
312
+ }
313
+
314
+ export namespace TokenMutabilityConfig {
315
+ export const TYPE_QNAME = "0x3::token::TokenMutabilityConfig";
316
+
317
+ const TYPE = new TypeDescriptor<TokenMutabilityConfig>(
318
+ TokenMutabilityConfig.TYPE_QNAME
319
+ );
320
+
321
+ export function type(): TypeDescriptor<TokenMutabilityConfig> {
322
+ return TYPE.apply();
323
+ }
324
+ }
325
+
326
+ export interface TokenStore {
327
+ tokens: _0x1.table.Table<token.TokenId, token.Token>;
328
+ direct_transfer: Boolean;
329
+ deposit_events: _0x1.event.EventHandle<token.DepositEvent>;
330
+ withdraw_events: _0x1.event.EventHandle<token.WithdrawEvent>;
331
+ burn_events: _0x1.event.EventHandle<token.BurnTokenEvent>;
332
+ mutate_token_property_events: _0x1.event.EventHandle<token.MutateTokenPropertyMapEvent>;
333
+ }
334
+
335
+ export namespace TokenStore {
336
+ export const TYPE_QNAME = "0x3::token::TokenStore";
337
+
338
+ const TYPE = new TypeDescriptor<TokenStore>(TokenStore.TYPE_QNAME);
339
+
340
+ export function type(): TypeDescriptor<TokenStore> {
341
+ return TYPE.apply();
342
+ }
343
+ }
344
+
345
+ export interface WithdrawCapability {
346
+ token_owner: Address;
347
+ token_id: token.TokenId;
348
+ amount: bigint;
349
+ expiration_sec: bigint;
350
+ }
351
+
352
+ export namespace WithdrawCapability {
353
+ export const TYPE_QNAME = "0x3::token::WithdrawCapability";
354
+
355
+ const TYPE = new TypeDescriptor<WithdrawCapability>(
356
+ WithdrawCapability.TYPE_QNAME
357
+ );
358
+
359
+ export function type(): TypeDescriptor<WithdrawCapability> {
360
+ return TYPE.apply();
361
+ }
362
+ }
363
+
364
+ export interface WithdrawEvent {
365
+ id: token.TokenId;
366
+ amount: bigint;
367
+ }
368
+
369
+ export namespace WithdrawEvent {
370
+ export const TYPE_QNAME = "0x3::token::WithdrawEvent";
371
+
372
+ const TYPE = new TypeDescriptor<WithdrawEvent>(WithdrawEvent.TYPE_QNAME);
373
+
374
+ export function type(): TypeDescriptor<WithdrawEvent> {
375
+ return TYPE.apply();
376
+ }
377
+ }
378
+
379
+ export interface WithdrawEventInstance
380
+ extends TypedEventInstance<WithdrawEvent> {
381
+ data_decoded: WithdrawEvent;
382
+ type_arguments: [];
383
+ }
384
+ }
385
+
386
+ export namespace property_map {
387
+ export interface PropertyMap {
388
+ map: _0x1.simple_map.SimpleMap<string, property_map.PropertyValue>;
389
+ }
390
+
391
+ export namespace PropertyMap {
392
+ export const TYPE_QNAME = "0x3::property_map::PropertyMap";
393
+
394
+ const TYPE = new TypeDescriptor<PropertyMap>(PropertyMap.TYPE_QNAME);
395
+
396
+ export function type(): TypeDescriptor<PropertyMap> {
397
+ return TYPE.apply();
398
+ }
399
+ }
400
+
401
+ export interface PropertyValue {
402
+ value: string;
403
+ type: string;
404
+ }
405
+
406
+ export namespace PropertyValue {
407
+ export const TYPE_QNAME = "0x3::property_map::PropertyValue";
408
+
409
+ const TYPE = new TypeDescriptor<PropertyValue>(PropertyValue.TYPE_QNAME);
410
+
411
+ export function type(): TypeDescriptor<PropertyValue> {
412
+ return TYPE.apply();
413
+ }
414
+ }
415
+ }
416
+
417
+ export namespace token_coin_swap {
418
+ export interface TokenCoinSwap<T0> {
419
+ token_amount: bigint;
420
+ min_price_per_token: bigint;
421
+ }
422
+
423
+ export namespace TokenCoinSwap {
424
+ export const TYPE_QNAME = "0x3::token_coin_swap::TokenCoinSwap";
425
+
426
+ const TYPE = new TypeDescriptor<TokenCoinSwap<any>>(
427
+ TokenCoinSwap.TYPE_QNAME
428
+ );
429
+
430
+ export function type<T0>(
431
+ arg0: TypeDescriptor<T0> = ANY_TYPE
432
+ ): TypeDescriptor<TokenCoinSwap<T0>> {
433
+ return TYPE.apply(arg0);
434
+ }
435
+ }
436
+
437
+ export interface TokenEscrow {
438
+ token: token.Token;
439
+ locked_until_secs: bigint;
440
+ }
441
+
442
+ export namespace TokenEscrow {
443
+ export const TYPE_QNAME = "0x3::token_coin_swap::TokenEscrow";
444
+
445
+ const TYPE = new TypeDescriptor<TokenEscrow>(TokenEscrow.TYPE_QNAME);
446
+
447
+ export function type(): TypeDescriptor<TokenEscrow> {
448
+ return TYPE.apply();
449
+ }
450
+ }
451
+
452
+ export interface TokenListingEvent {
453
+ token_id: token.TokenId;
454
+ amount: bigint;
455
+ min_price: bigint;
456
+ locked_until_secs: bigint;
457
+ coin_type_info: _0x1.type_info.TypeInfo;
458
+ }
459
+
460
+ export namespace TokenListingEvent {
461
+ export const TYPE_QNAME = "0x3::token_coin_swap::TokenListingEvent";
462
+
463
+ const TYPE = new TypeDescriptor<TokenListingEvent>(
464
+ TokenListingEvent.TYPE_QNAME
465
+ );
466
+
467
+ export function type(): TypeDescriptor<TokenListingEvent> {
468
+ return TYPE.apply();
469
+ }
470
+ }
471
+
472
+ export interface TokenListingEventInstance
473
+ extends TypedEventInstance<TokenListingEvent> {
474
+ data_decoded: TokenListingEvent;
475
+ type_arguments: [];
476
+ }
477
+
478
+ export interface TokenListings<T0> {
479
+ listings: _0x1.table.Table<
480
+ token.TokenId,
481
+ token_coin_swap.TokenCoinSwap<T0>
482
+ >;
483
+ listing_events: _0x1.event.EventHandle<token_coin_swap.TokenListingEvent>;
484
+ swap_events: _0x1.event.EventHandle<token_coin_swap.TokenSwapEvent>;
485
+ }
486
+
487
+ export namespace TokenListings {
488
+ export const TYPE_QNAME = "0x3::token_coin_swap::TokenListings";
489
+
490
+ const TYPE = new TypeDescriptor<TokenListings<any>>(
491
+ TokenListings.TYPE_QNAME
492
+ );
493
+
494
+ export function type<T0>(
495
+ arg0: TypeDescriptor<T0> = ANY_TYPE
496
+ ): TypeDescriptor<TokenListings<T0>> {
497
+ return TYPE.apply(arg0);
498
+ }
499
+ }
500
+
501
+ export interface TokenStoreEscrow {
502
+ token_escrows: _0x1.table.Table<token.TokenId, token_coin_swap.TokenEscrow>;
503
+ }
504
+
505
+ export namespace TokenStoreEscrow {
506
+ export const TYPE_QNAME = "0x3::token_coin_swap::TokenStoreEscrow";
507
+
508
+ const TYPE = new TypeDescriptor<TokenStoreEscrow>(
509
+ TokenStoreEscrow.TYPE_QNAME
510
+ );
511
+
512
+ export function type(): TypeDescriptor<TokenStoreEscrow> {
513
+ return TYPE.apply();
514
+ }
515
+ }
516
+
517
+ export interface TokenSwapEvent {
518
+ token_id: token.TokenId;
519
+ token_buyer: Address;
520
+ token_amount: bigint;
521
+ coin_amount: bigint;
522
+ coin_type_info: _0x1.type_info.TypeInfo;
523
+ }
524
+
525
+ export namespace TokenSwapEvent {
526
+ export const TYPE_QNAME = "0x3::token_coin_swap::TokenSwapEvent";
527
+
528
+ const TYPE = new TypeDescriptor<TokenSwapEvent>(TokenSwapEvent.TYPE_QNAME);
529
+
530
+ export function type(): TypeDescriptor<TokenSwapEvent> {
531
+ return TYPE.apply();
532
+ }
533
+ }
534
+
535
+ export interface TokenSwapEventInstance
536
+ extends TypedEventInstance<TokenSwapEvent> {
537
+ data_decoded: TokenSwapEvent;
538
+ type_arguments: [];
539
+ }
540
+ }
541
+
542
+ export namespace token_transfers {
543
+ export interface PendingClaims {
544
+ pending_claims: _0x1.table.Table<token_transfers.TokenOfferId, token.Token>;
545
+ offer_events: _0x1.event.EventHandle<token_transfers.TokenOfferEvent>;
546
+ cancel_offer_events: _0x1.event.EventHandle<token_transfers.TokenCancelOfferEvent>;
547
+ claim_events: _0x1.event.EventHandle<token_transfers.TokenClaimEvent>;
548
+ }
549
+
550
+ export namespace PendingClaims {
551
+ export const TYPE_QNAME = "0x3::token_transfers::PendingClaims";
552
+
553
+ const TYPE = new TypeDescriptor<PendingClaims>(PendingClaims.TYPE_QNAME);
554
+
555
+ export function type(): TypeDescriptor<PendingClaims> {
556
+ return TYPE.apply();
557
+ }
558
+ }
559
+
560
+ export interface TokenCancelOfferEvent {
561
+ to_address: Address;
562
+ token_id: token.TokenId;
563
+ amount: bigint;
564
+ }
565
+
566
+ export namespace TokenCancelOfferEvent {
567
+ export const TYPE_QNAME = "0x3::token_transfers::TokenCancelOfferEvent";
568
+
569
+ const TYPE = new TypeDescriptor<TokenCancelOfferEvent>(
570
+ TokenCancelOfferEvent.TYPE_QNAME
571
+ );
572
+
573
+ export function type(): TypeDescriptor<TokenCancelOfferEvent> {
574
+ return TYPE.apply();
575
+ }
576
+ }
577
+
578
+ export interface TokenCancelOfferEventInstance
579
+ extends TypedEventInstance<TokenCancelOfferEvent> {
580
+ data_decoded: TokenCancelOfferEvent;
581
+ type_arguments: [];
582
+ }
583
+
584
+ export interface TokenClaimEvent {
585
+ to_address: Address;
586
+ token_id: token.TokenId;
587
+ amount: bigint;
588
+ }
589
+
590
+ export namespace TokenClaimEvent {
591
+ export const TYPE_QNAME = "0x3::token_transfers::TokenClaimEvent";
592
+
593
+ const TYPE = new TypeDescriptor<TokenClaimEvent>(
594
+ TokenClaimEvent.TYPE_QNAME
595
+ );
596
+
597
+ export function type(): TypeDescriptor<TokenClaimEvent> {
598
+ return TYPE.apply();
599
+ }
600
+ }
601
+
602
+ export interface TokenClaimEventInstance
603
+ extends TypedEventInstance<TokenClaimEvent> {
604
+ data_decoded: TokenClaimEvent;
605
+ type_arguments: [];
606
+ }
607
+
608
+ export interface TokenOfferEvent {
609
+ to_address: Address;
610
+ token_id: token.TokenId;
611
+ amount: bigint;
612
+ }
613
+
614
+ export namespace TokenOfferEvent {
615
+ export const TYPE_QNAME = "0x3::token_transfers::TokenOfferEvent";
616
+
617
+ const TYPE = new TypeDescriptor<TokenOfferEvent>(
618
+ TokenOfferEvent.TYPE_QNAME
619
+ );
620
+
621
+ export function type(): TypeDescriptor<TokenOfferEvent> {
622
+ return TYPE.apply();
623
+ }
624
+ }
625
+
626
+ export interface TokenOfferEventInstance
627
+ extends TypedEventInstance<TokenOfferEvent> {
628
+ data_decoded: TokenOfferEvent;
629
+ type_arguments: [];
630
+ }
631
+
632
+ export interface TokenOfferId {
633
+ to_addr: Address;
634
+ token_id: token.TokenId;
635
+ }
636
+
637
+ export namespace TokenOfferId {
638
+ export const TYPE_QNAME = "0x3::token_transfers::TokenOfferId";
639
+
640
+ const TYPE = new TypeDescriptor<TokenOfferId>(TokenOfferId.TYPE_QNAME);
641
+
642
+ export function type(): TypeDescriptor<TokenOfferId> {
643
+ return TYPE.apply();
644
+ }
645
+ }
646
+ }
647
+
648
+ export namespace token_event_store {
649
+ export interface CollectionDescriptionMutateEvent {
650
+ creator_addr: Address;
651
+ collection_name: string;
652
+ old_description: string;
653
+ new_description: string;
654
+ }
655
+
656
+ export namespace CollectionDescriptionMutateEvent {
657
+ export const TYPE_QNAME =
658
+ "0x3::token_event_store::CollectionDescriptionMutateEvent";
659
+
660
+ const TYPE = new TypeDescriptor<CollectionDescriptionMutateEvent>(
661
+ CollectionDescriptionMutateEvent.TYPE_QNAME
662
+ );
663
+
664
+ export function type(): TypeDescriptor<CollectionDescriptionMutateEvent> {
665
+ return TYPE.apply();
666
+ }
667
+ }
668
+
669
+ export interface CollectionDescriptionMutateEventInstance
670
+ extends TypedEventInstance<CollectionDescriptionMutateEvent> {
671
+ data_decoded: CollectionDescriptionMutateEvent;
672
+ type_arguments: [];
673
+ }
674
+
675
+ export interface CollectionMaxiumMutateEvent {
676
+ creator_addr: Address;
677
+ collection_name: string;
678
+ old_maximum: bigint;
679
+ new_maximum: bigint;
680
+ }
681
+
682
+ export namespace CollectionMaxiumMutateEvent {
683
+ export const TYPE_QNAME =
684
+ "0x3::token_event_store::CollectionMaxiumMutateEvent";
685
+
686
+ const TYPE = new TypeDescriptor<CollectionMaxiumMutateEvent>(
687
+ CollectionMaxiumMutateEvent.TYPE_QNAME
688
+ );
689
+
690
+ export function type(): TypeDescriptor<CollectionMaxiumMutateEvent> {
691
+ return TYPE.apply();
692
+ }
693
+ }
694
+
695
+ export interface CollectionMaxiumMutateEventInstance
696
+ extends TypedEventInstance<CollectionMaxiumMutateEvent> {
697
+ data_decoded: CollectionMaxiumMutateEvent;
698
+ type_arguments: [];
699
+ }
700
+
701
+ export interface CollectionUriMutateEvent {
702
+ creator_addr: Address;
703
+ collection_name: string;
704
+ old_uri: string;
705
+ new_uri: string;
706
+ }
707
+
708
+ export namespace CollectionUriMutateEvent {
709
+ export const TYPE_QNAME =
710
+ "0x3::token_event_store::CollectionUriMutateEvent";
711
+
712
+ const TYPE = new TypeDescriptor<CollectionUriMutateEvent>(
713
+ CollectionUriMutateEvent.TYPE_QNAME
714
+ );
715
+
716
+ export function type(): TypeDescriptor<CollectionUriMutateEvent> {
717
+ return TYPE.apply();
718
+ }
719
+ }
720
+
721
+ export interface CollectionUriMutateEventInstance
722
+ extends TypedEventInstance<CollectionUriMutateEvent> {
723
+ data_decoded: CollectionUriMutateEvent;
724
+ type_arguments: [];
725
+ }
726
+
727
+ export interface DefaultPropertyMutateEvent {
728
+ creator: Address;
729
+ collection: string;
730
+ token: string;
731
+ keys: string[];
732
+ old_values: _0x1.option.Option<property_map.PropertyValue>[];
733
+ new_values: property_map.PropertyValue[];
734
+ }
735
+
736
+ export namespace DefaultPropertyMutateEvent {
737
+ export const TYPE_QNAME =
738
+ "0x3::token_event_store::DefaultPropertyMutateEvent";
739
+
740
+ const TYPE = new TypeDescriptor<DefaultPropertyMutateEvent>(
741
+ DefaultPropertyMutateEvent.TYPE_QNAME
742
+ );
743
+
744
+ export function type(): TypeDescriptor<DefaultPropertyMutateEvent> {
745
+ return TYPE.apply();
746
+ }
747
+ }
748
+
749
+ export interface DefaultPropertyMutateEventInstance
750
+ extends TypedEventInstance<DefaultPropertyMutateEvent> {
751
+ data_decoded: DefaultPropertyMutateEvent;
752
+ type_arguments: [];
753
+ }
754
+
755
+ export interface DescriptionMutateEvent {
756
+ creator: Address;
757
+ collection: string;
758
+ token: string;
759
+ old_description: string;
760
+ new_description: string;
761
+ }
762
+
763
+ export namespace DescriptionMutateEvent {
764
+ export const TYPE_QNAME = "0x3::token_event_store::DescriptionMutateEvent";
765
+
766
+ const TYPE = new TypeDescriptor<DescriptionMutateEvent>(
767
+ DescriptionMutateEvent.TYPE_QNAME
768
+ );
769
+
770
+ export function type(): TypeDescriptor<DescriptionMutateEvent> {
771
+ return TYPE.apply();
772
+ }
773
+ }
774
+
775
+ export interface DescriptionMutateEventInstance
776
+ extends TypedEventInstance<DescriptionMutateEvent> {
777
+ data_decoded: DescriptionMutateEvent;
778
+ type_arguments: [];
779
+ }
780
+
781
+ export interface MaxiumMutateEvent {
782
+ creator: Address;
783
+ collection: string;
784
+ token: string;
785
+ old_maximum: bigint;
786
+ new_maximum: bigint;
787
+ }
788
+
789
+ export namespace MaxiumMutateEvent {
790
+ export const TYPE_QNAME = "0x3::token_event_store::MaxiumMutateEvent";
791
+
792
+ const TYPE = new TypeDescriptor<MaxiumMutateEvent>(
793
+ MaxiumMutateEvent.TYPE_QNAME
794
+ );
795
+
796
+ export function type(): TypeDescriptor<MaxiumMutateEvent> {
797
+ return TYPE.apply();
798
+ }
799
+ }
800
+
801
+ export interface MaxiumMutateEventInstance
802
+ extends TypedEventInstance<MaxiumMutateEvent> {
803
+ data_decoded: MaxiumMutateEvent;
804
+ type_arguments: [];
805
+ }
806
+
807
+ export interface OptInTransferEvent {
808
+ opt_in: Boolean;
809
+ }
810
+
811
+ export namespace OptInTransferEvent {
812
+ export const TYPE_QNAME = "0x3::token_event_store::OptInTransferEvent";
813
+
814
+ const TYPE = new TypeDescriptor<OptInTransferEvent>(
815
+ OptInTransferEvent.TYPE_QNAME
816
+ );
817
+
818
+ export function type(): TypeDescriptor<OptInTransferEvent> {
819
+ return TYPE.apply();
820
+ }
821
+ }
822
+
823
+ export interface OptInTransferEventInstance
824
+ extends TypedEventInstance<OptInTransferEvent> {
825
+ data_decoded: OptInTransferEvent;
826
+ type_arguments: [];
827
+ }
828
+
829
+ export interface RoyaltyMutateEvent {
830
+ creator: Address;
831
+ collection: string;
832
+ token: string;
833
+ old_royalty_numerator: bigint;
834
+ old_royalty_denominator: bigint;
835
+ old_royalty_payee_addr: Address;
836
+ new_royalty_numerator: bigint;
837
+ new_royalty_denominator: bigint;
838
+ new_royalty_payee_addr: Address;
839
+ }
840
+
841
+ export namespace RoyaltyMutateEvent {
842
+ export const TYPE_QNAME = "0x3::token_event_store::RoyaltyMutateEvent";
843
+
844
+ const TYPE = new TypeDescriptor<RoyaltyMutateEvent>(
845
+ RoyaltyMutateEvent.TYPE_QNAME
846
+ );
847
+
848
+ export function type(): TypeDescriptor<RoyaltyMutateEvent> {
849
+ return TYPE.apply();
850
+ }
851
+ }
852
+
853
+ export interface RoyaltyMutateEventInstance
854
+ extends TypedEventInstance<RoyaltyMutateEvent> {
855
+ data_decoded: RoyaltyMutateEvent;
856
+ type_arguments: [];
857
+ }
858
+
859
+ export interface TokenEventStoreV1 {
860
+ collection_uri_mutate_events: _0x1.event.EventHandle<token_event_store.CollectionUriMutateEvent>;
861
+ collection_maximum_mutate_events: _0x1.event.EventHandle<token_event_store.CollectionMaxiumMutateEvent>;
862
+ collection_description_mutate_events: _0x1.event.EventHandle<token_event_store.CollectionDescriptionMutateEvent>;
863
+ opt_in_events: _0x1.event.EventHandle<token_event_store.OptInTransferEvent>;
864
+ uri_mutate_events: _0x1.event.EventHandle<token_event_store.UriMutationEvent>;
865
+ default_property_mutate_events: _0x1.event.EventHandle<token_event_store.DefaultPropertyMutateEvent>;
866
+ description_mutate_events: _0x1.event.EventHandle<token_event_store.DescriptionMutateEvent>;
867
+ royalty_mutate_events: _0x1.event.EventHandle<token_event_store.RoyaltyMutateEvent>;
868
+ maximum_mutate_events: _0x1.event.EventHandle<token_event_store.MaxiumMutateEvent>;
869
+ extension: _0x1.option.Option<_0x1.any_.Any>;
870
+ }
871
+
872
+ export namespace TokenEventStoreV1 {
873
+ export const TYPE_QNAME = "0x3::token_event_store::TokenEventStoreV1";
874
+
875
+ const TYPE = new TypeDescriptor<TokenEventStoreV1>(
876
+ TokenEventStoreV1.TYPE_QNAME
877
+ );
878
+
879
+ export function type(): TypeDescriptor<TokenEventStoreV1> {
880
+ return TYPE.apply();
881
+ }
882
+ }
883
+
884
+ export interface UriMutationEvent {
885
+ creator: Address;
886
+ collection: string;
887
+ token: string;
888
+ old_uri: string;
889
+ new_uri: string;
890
+ }
891
+
892
+ export namespace UriMutationEvent {
893
+ export const TYPE_QNAME = "0x3::token_event_store::UriMutationEvent";
894
+
895
+ const TYPE = new TypeDescriptor<UriMutationEvent>(
896
+ UriMutationEvent.TYPE_QNAME
897
+ );
898
+
899
+ export function type(): TypeDescriptor<UriMutationEvent> {
900
+ return TYPE.apply();
901
+ }
902
+ }
903
+
904
+ export interface UriMutationEventInstance
905
+ extends TypedEventInstance<UriMutationEvent> {
906
+ data_decoded: UriMutationEvent;
907
+ type_arguments: [];
908
+ }
909
+ }
910
+
911
+ const MODULES = JSON.parse(
912
+ '[{"bytecode":"0xa11ceb0b060000000c01001602166a038001ab0504ab064e05f906e70707e00eac1b088c2a4006cc2ad90310a52ec9140aee42d0020cbe45c92e0d8774600000010101020103010401050106010701080009000a000b0600000c0400000d0700000e0800000f060000100600001106000012060000130600001407000015040000160400001707000018070000190700001a0800001b0600001c0600061d0700043e0701000009420700077e0402030100010381010401060109bc010700001e000100001f020100002003010000210405000022060100002306010000240007000025080700002609010000270a0b00002809010000290c0d00002a080e00002b0f1000002c111000002d0a1200002e130100002f140e00003015160000311701000032180100003319010000341a010000351a010000361b010000371c01000038001d000039000500003a000b00003b1e0700003c1e0700003d1e0700003f001f000040001d00004120070000430421000044100d0000452205000046220500004722200000482305000049240800004a231000004b251100004c260700004d260700004e260700004f26070000502607000051271f0000520e1d000053100e00005427050000550e050000560e120000570e0d000058271d000059200700005a280100005b290100005c290100005d2a0100005e2b0100005f2c100000602d010000612e010000622f010000632e010000643010000065310100006632010000672c010000683301000069340100006a320100006b350100006c363700006d383900006e232500006f3a010000703b010000713c010000723d3900007316390000743e390002a10105050007a201400702030006a30142050006a401431d0006a501441d0002a60105050005a70129200007a801404902030002a90105050007aa014b4c02030009ab014d070009ac014d070003ad014f01010607ae014b5002030007af01015402030401b0012956010602b10105050007b201590102030001b30120070009af015c210004b4016162010004b5010162010009b6010121000ab7016b01000ab8016d01000ab9016b01000aba017101000abb0173010002bd0105050009a8014d770009be0178760004bf017907010009c0017a010009b2017b01000ac1017c01000ac2017d01000ac3017101000ac40135010008c50101050009c60181010100563f564656485c485e46614e62465e3f623f633f6346645564576458663f615566466157615e66485e485c3f69056a055c466348645e6467644e64686158616869766a7674766a16691661676248020508120001060a081202060c080c0205080d010306060c05081208120303010103050812081206060c081208120812030a0101060a010108020303030501080901080c02080c0301080d0405081208120301080e0e060c081208120812030308120503030a010a08120a0a020a08120d060c081208120812030812050303080e0a08120a0a020a081204060c080d030301081002060c080a01080101080b0205080a04060c060c080d0307060c060c0508120812030301081201060802010b1301030105010814010608090106080a0106080c0106080d0106080e0205080c02060c080d01060c0207080a080a05060c05081208120303060c080c0304060c05080c0303060c0812081203060c08120306060c05080d0a08120a0a020a08120a060c05050812081203030a08120a0a020a081203060c080c081205060c080c0a08120a0a020a081203060c080c080902060c010208100302080a0b130108100207080a0301080a04060c080d050307060c05081208120305030505080d0a08120a0a020a081203060c080d030305080d03020812080102060b1502090009010900040812030608120301060812030608120303010a0202080c0502080c080b020306080f02080d080a010609010b08120608140812060814030708010708030507080b07080b080d02070b1502090009010900010709010206081406081201080002070b1601090009000109010a08120608140812060814030708010708030507080b080d02060b1502080c080b080c050812050801070b1502081208010802010b150209000901010804010b1601090001080501080703070b1502090009010900090102080e080c0505070801070803080b080c030a08120a0a020a08120107080f01080601060b150208120801020b130103070801010900010b13010900020814060b1502080c080b030b130103060b1502080c080b06080b02060b1502080c080b0501060b1502080c080b01081101080805080c070b1502080c080b0507080b080d020708010504060c08120812081203010708010504060c081203030d080c08120608140812060814080d070b1502080c080b0503080a080d080a07080b0203080d0107080b05060c0812081208120812020107080b05060c0812081203030b0b13010817030608120308170a08170b130108170a0b1301081707080b0303010b1301081701081701060817020a02081201060b13010900030708140608120817030708140812081706060c081208120a08120a0b130108170a081709060c0812081203030503030502050701020b130108100b1301081003080d070b1502080d080a070814040708140a08120a0a020a081204080d080a0703070b1502080d080a05746f6b656e076163636f756e74056572726f72056576656e74066f7074696f6e067369676e657206737472696e67057461626c650974696d657374616d700c70726f70657274795f6d617011746f6b656e5f6576656e745f73746f72650e4275726e546f6b656e4576656e740e436f6c6c656374696f6e446174611a436f6c6c656374696f6e4d75746162696c697479436f6e6669670b436f6c6c656374696f6e7315437265617465436f6c6c656374696f6e4576656e7414437265617465546f6b656e446174614576656e740c4465706f7369744576656e740e4d696e74546f6b656e4576656e741b4d7574617465546f6b656e50726f70657274794d61704576656e7407526f79616c747905546f6b656e09546f6b656e446174610b546f6b656e44617461496407546f6b656e496415546f6b656e4d75746162696c697479436f6e6669670a546f6b656e53746f72651257697468647261774361706162696c6974790d57697468647261774576656e7406537472696e67186173736572745f636f6c6c656374696f6e5f657869737473256173736572745f6e6f6e5f7374616e646172645f72657365727665645f70726f7065727479176173736572745f746f6b656e646174615f6578697374730a62616c616e63655f6f66046275726e0f6275726e5f62795f63726561746f7217636865636b5f636f6c6c656374696f6e5f65786973747316636865636b5f746f6b656e646174615f657869737473116372656174655f636f6c6c656374696f6e236372656174655f636f6c6c656374696f6e5f6d75746162696c6974795f636f6e666967186372656174655f636f6c6c656374696f6e5f7363726970740e6372656174655f726f79616c7479146372656174655f746f6b656e5f646174615f69640f6372656174655f746f6b656e5f6964136372656174655f746f6b656e5f69645f7261771e6372656174655f746f6b656e5f6d75746162696c6974795f636f6e666967136372656174655f746f6b656e5f736372697074106372656174655f746f6b656e646174611a6372656174655f77697468647261775f6361706162696c6974790d6465706f7369745f746f6b656e1764657374726f795f636f6c6c656374696f6e5f646174611264657374726f795f746f6b656e5f646174610e6469726563745f6465706f7369741a6469726563745f6465706f7369745f776974685f6f70745f696e0f6469726563745f7472616e73666572166469726563745f7472616e736665725f7363726970741a6765745f636f6c6c656374696f6e5f6465736372697074696f6e166765745f636f6c6c656374696f6e5f6d6178696d756d206765745f636f6c6c656374696f6e5f6d75746162696c6974795f636f6e666967256765745f636f6c6c656374696f6e5f6d75746162696c6974795f6465736372697074696f6e216765745f636f6c6c656374696f6e5f6d75746162696c6974795f6d6178696d756d1d6765745f636f6c6c656374696f6e5f6d75746162696c6974795f757269064f7074696f6e156765745f636f6c6c656374696f6e5f737570706c79126765745f636f6c6c656374696f6e5f757269136765745f6469726563745f7472616e736665720b50726f70657274794d6170106765745f70726f70657274795f6d61700b6765745f726f79616c7479176765745f726f79616c74795f64656e6f6d696e61746f72156765745f726f79616c74795f6e756d657261746f72116765745f726f79616c74795f7061796565106765745f746f6b656e5f616d6f756e74186765745f746f6b656e5f646174615f69645f6669656c64730c6765745f746f6b656e5f6964136765745f746f6b656e5f69645f6669656c6473276765745f746f6b656e5f6d75746162696c6974795f64656661756c745f70726f70657274696573206765745f746f6b656e5f6d75746162696c6974795f6465736372697074696f6e1c6765745f746f6b656e5f6d75746162696c6974795f6d6178696d756d1c6765745f746f6b656e5f6d75746162696c6974795f726f79616c7479186765745f746f6b656e5f6d75746162696c6974795f757269106765745f746f6b656e5f737570706c79196765745f746f6b656e646174615f6465736372697074696f6e106765745f746f6b656e646174615f6964266765745f746f6b656e646174615f6c6172676573745f70726f70657274795f76657273696f6e156765745f746f6b656e646174615f6d6178696d756d1f6765745f746f6b656e646174615f6d75746162696c6974795f636f6e666967156765745f746f6b656e646174615f726f79616c7479116765745f746f6b656e646174615f7572690f6861735f746f6b656e5f73746f726510696e697469616c697a655f746f6b656e17696e697469616c697a655f746f6b656e5f73637269707416696e697469616c697a655f746f6b656e5f73746f7265056d657267650b6d696e745f7363726970740a6d696e745f746f6b656e0d6d696e745f746f6b656e5f746f1d6d75746174655f636f6c6c656374696f6e5f6465736372697074696f6e196d75746174655f636f6c6c656374696f6e5f6d6178696d756d156d75746174655f636f6c6c656374696f6e5f757269106d75746174655f6f6e655f746f6b656e176d75746174655f746f6b656e5f70726f706572746965731c6d75746174655f746f6b656e646174615f6465736372697074696f6e186d75746174655f746f6b656e646174615f6d6178696d756d196d75746174655f746f6b656e646174615f70726f7065727479186d75746174655f746f6b656e646174615f726f79616c7479146d75746174655f746f6b656e646174615f757269166f70745f696e5f6469726563745f7472616e73666572207061727469616c5f77697468647261775f776974685f6361706162696c6974790573706c697408746f6b656e5f6964087472616e73666572147472616e736665725f776974685f6f70745f696e1e7570646174655f746f6b656e5f70726f70657274795f696e7465726e616c0e77697468647261775f746f6b656e1877697468647261775f776974685f6361706162696c6974791c77697468647261775f776974685f6576656e745f696e7465726e616c02696406616d6f756e740b6465736372697074696f6e046e616d650375726906737570706c79076d6178696d756d116d75746162696c6974795f636f6e6669670f636f6c6c656374696f6e5f64617461055461626c650a746f6b656e5f64617461186372656174655f636f6c6c656374696f6e5f6576656e74730b4576656e7448616e646c65186372656174655f746f6b656e5f646174615f6576656e7473116d696e745f746f6b656e5f6576656e74730763726561746f720f636f6c6c656374696f6e5f6e616d6515726f79616c74795f70617965655f616464726573731a726f79616c74795f706f696e74735f64656e6f6d696e61746f7218726f79616c74795f706f696e74735f6e756d657261746f720d70726f70657274795f6b6579730f70726f70657274795f76616c7565730e70726f70657274795f7479706573066f6c645f6964066e65775f6964046b6579730676616c7565730574797065730d70617965655f6164647265737310746f6b656e5f70726f70657274696573186c6172676573745f70726f70657274795f76657273696f6e07726f79616c74791264656661756c745f70726f706572746965730a636f6c6c656374696f6e0d746f6b656e5f646174615f69641070726f70657274795f76657273696f6e0a70726f7065727469657306746f6b656e730e6465706f7369745f6576656e74730f77697468647261775f6576656e74730b6275726e5f6576656e74731c6d75746174655f746f6b656e5f70726f70657274795f6576656e74730b746f6b656e5f6f776e65720e65787069726174696f6e5f736563096e6f745f666f756e6408636f6e7461696e73066c656e6774680a7375625f737472696e670475746638117065726d697373696f6e5f64656e6965640a616464726573735f6f6606626f72726f7710696e76616c69645f617267756d656e740a626f72726f775f6d75740c636f6e7461696e735f6b657909726561645f626f6f6c0a656d69745f6576656e740672656d6f7665036e6577106e65775f6576656e745f68616e646c650e616c72656164795f65786973747303616464096578697374735f617404736f6d65046e6f6e6505656d70747928656d69745f636f6c6c656374696f6e5f6465736372697074696f6e5f6d75746174655f6576656e7424656d69745f636f6c6c656374696f6e5f6d6178696d756d5f6d75746174655f6576656e7420656d69745f636f6c6c656374696f6e5f7572695f6d75746174655f6576656e7422656d69745f746f6b656e5f64657363726974696f6e5f6d75746174655f6576656e741f656d69745f746f6b656e5f6d6178696d756d5f6d75746174655f6576656e740d50726f706572747956616c75650d696e76616c69645f7374617465196372656174655f70726f70657274795f76616c75655f7261770769735f736f6d65157570646174655f70726f70657274795f76616c756522656d69745f64656661756c745f70726f70657274795f6d75746174655f6576656e741f656d69745f746f6b656e5f726f79616c74795f6d75746174655f6576656e741b656d69745f746f6b656e5f7572695f6d75746174655f6576656e7417656d69745f746f6b656e5f6f70745f696e5f6576656e740b6e6f775f7365636f6e6473137570646174655f70726f70657274795f6d6170000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000010a021a19544f4b454e5f4255524e41424c455f42595f43524541544f520a021817544f4b454e5f4255524e41424c455f42595f4f574e45520308000000000000000003080200000000000000030801000000000000000308200000000000000003080300000000000000030819000000000000000308040000000000000003081f0000000000000003080d0000000000000003080500000000000000030826000000000000000308240000000000000003082200000000000000030806000000000000000308070000000000000003081a00000000000000030812000000000000000308080000000000000003081d0000000000000003081c000000000000000308130000000000000003080e0000000000000003080f0000000000000003081e000000000000000308280000000000000003082300000000000000030821000000000000000308090000000000000003080a000000000000000308250000000000000003080c0000000000000003080b0000000000000003081b0000000000000003081000000000000000030827000000000000000308110000000000000003088000000000000000030800020000000000000a021817544f4b454e5f50524f50455254595f4d55544154424c450a020706544f4b454e5f126170746f733a3a6d657461646174615f7631b4142400000000000000001445414c52454144595f4841535f42414c414e43452f54686520746f6b656e206861732062616c616e636520616e642063616e6e6f7420626520696e697469616c697a656401000000000000001a45434f4c4c454354494f4e535f4e4f545f5055424c49534845442d54686572652069736e277420616e7920636f6c6c656374696f6e20756e6465722074686973206163636f756e7402000000000000001945434f4c4c454354494f4e5f4e4f545f5055424c49534845442b43616e6e6f742066696e6420636f6c6c656374696f6e20696e2063726561746f722773206163636f756e7403000000000000001a45434f4c4c454354494f4e5f414c52454144595f4558495354531d54686520636f6c6c656374696f6e20616c726561647920657869737473040000000000000027454352454154455f574f554c445f4558434545445f434f4c4c454354494f4e5f4d4158494d554d35457863656564732074686520636f6c6c656374696f6e2773206d6178696d616c206e756d626572206f6620746f6b656e5f6461746105000000000000001545494e53554646494349454e545f42414c414e43451a496e73756666696369656e7420746f6b656e2062616c616e636506000000000000001445494e56414c49445f544f4b454e5f4d455247453343616e6e6f74206d65726765207468652074776f20746f6b656e73207769746820646966666572656e7420746f6b656e206964070000000000000020454d494e545f574f554c445f4558434545445f544f4b454e5f4d4158494d554d254578636565642074686520746f6b656e2064617461206d6178696d616c20616c6c6f776564080000000000000013454e4f5f4255524e5f4341504142494c495459124e6f206275726e206361706162696c69747909000000000000001a45544f4b454e5f444154415f414c52454144595f45584953545318546f6b656e4461746120616c7265616479206578697374730a000000000000001945544f4b454e5f444154415f4e4f545f5055424c495348454417546f6b656e44617461206e6f74207075626c69736865640b000000000000001a45544f4b454e5f53544f52455f4e4f545f5055424c495348454418546f6b656e53746f726520646f65736e27742065786973740c000000000000003345544f4b454e5f53504c49545f414d4f554e545f4c41524745525f4f525f455155414c5f544f5f544f4b454e5f414d4f554e543643616e6e6f742073706c697420746f6b656e20746f20616e20616d6f756e74206c6172676572207468616e2069747320616d6f756e740d0000000000000012454649454c445f4e4f545f4d555441424c4518546865206669656c64206973206e6f74206d757461626c650e0000000000000015454e4f5f4d55544154455f4341504142494c495459184e6f7420617574686f72697a656420746f206d75746174650f0000000000000018454e4f5f544f4b454e5f494e5f544f4b454e5f53544f52451c546f6b656e206e6f7420696e2074686520746f6b656e2073746f726510000000000000002045555345525f4e4f545f4f50545f494e5f4449524543545f5452414e534645522255736572206469646e2774206f70742d696e20646972656374207472616e7366657211000000000000000e4557495448445241575f5a45524f1743616e6e6f74207769746864726177203020746f6b656e120000000000000012454e46545f4e4f545f53504c495441424c452b43616e6e6f742073706c6974206120746f6b656e2074686174206f6e6c7920686173203120616d6f756e74130000000000000013454e4f5f4d494e545f4341504142494c495459124e6f206d696e74206361706162696c69747919000000000000001945434f4c4c454354494f4e5f4e414d455f544f4f5f4c4f4e471f54686520636f6c6c656374696f6e206e616d6520697320746f6f206c6f6e671a0000000000000012454e46545f4e414d455f544f4f5f4c4f4e4718546865204e4654206e616d6520697320746f6f206c6f6e671b000000000000000d455552495f544f4f5f4c4f4e47135468652055524920697320746f6f206c6f6e671c0000000000000022454e4f5f4445504f5349545f544f4b454e5f574954485f5a45524f5f414d4f554e542443616e6e6f74206465706f736974206120546f6b656e2077697468203020616d6f756e741d000000000000001f454e4f5f4255524e5f544f4b454e5f574954485f5a45524f5f414d4f554e541343616e6e6f74206275726e203020546f6b656e1e0000000000000018454f574e45525f43414e4e4f545f4255524e5f544f4b454e1e546f6b656e206973206e6f74206275726e61626c65206279206f776e65721f000000000000001a4543524541544f525f43414e4e4f545f4255524e5f544f4b454e20546f6b656e206973206e6f74206275726e61626c652062792063726561746f722000000000000000204543414e4e4f545f5550444154455f52455345525645445f50524f50455254593d5265736572766564206669656c647320666f7220746f6b656e20636f6e74726163740a2043616e6e6f742062652075706461746564206279207573657221000000000000001e45544f4b454e5f43414e4e4f545f484156455f5a45524f5f414d4f554e5422544f4b454e2077697468203020616d6f756e74206973206e6f7420616c6c6f77656422000000000000002645494e56414c49445f524f59414c54595f4e554d455241544f525f44454e4f4d494e41544f523f526f79616c747920696e76616c696420696620746865206e756d657261746f72206973206c6172676572207468616e207468652064656e6f6d696e61746f7223000000000000002545524f59414c54595f50415945455f4143434f554e545f444f45535f4e4f545f455849535424526f79616c7479207061796565206163636f756e7420646f6573206e6f7420657869737424000000000000001045494e56414c49445f4d4158494d554d3a436f6c6c656374696f6e206f7220746f6b656e64617461206d6178696d756d206d757374206265206c6172676572207468616e20737570706c7925000000000000002145544f4b454e5f50524f504552544945535f434f554e545f4e4f545f4d4154434824546f6b656e2050726f7065727469657320636f756e7420646f65736e2774206d6174636826000000000000002845494e53554646494349454e545f57495448445241575f4341504142494c4954595f414d4f554e54325769746864726177206361706162696c69747920646f65736e277420686176652073756666696369656e7420616d6f756e742700000000000000174557495448445241575f50524f4f465f455850495245531657697468647261772070726f6f66206578706972657328000000000000001e4550524f50455254595f52455345525645445f42595f5354414e444152442a5468652070726f706572747920697320726573657276656420627920746f6b656e207374616e646172640001206765745f636f6c6c656374696f6e5f6d75746162696c6974795f636f6e66696701010000020275080d76030102067708127808127908127a037b037c0802020203770179017b010302057d0b1502081208017f0b1502080c080b80010b1601080482010b1601080583010b16010807040205840105850108127908127708127b0305020c75080c7708127b037908128601058701038801037808127c080e89010a08128a010a0a028b010a081206020275080d760307020275080c76030802058c01080d8d01080d8e010a08128f010a0a0290010a08120902038801038701039101050a020375080d7603920108140b02097b039301037a0379081294010809780812770812950108147c080e0c0203840105960108127808120d02029701080c9801030e02057b01790194010177019901010f02069a010b1502080d080a36019b010b160108069c010b160108119d010b160108009e010b160108081002049f01056e080d7603a0010311020275080d7603000000010301120a0029030404050707041155270b002b0310000b013800040e051107031155270201000000412f0a00411d0c040600000000000000000c020a020a0423042c050a0a000a02421d0c030a0311570606000000000000002604250b03140c010e0106000000000000000006060000000000000011580729115922041f05240b0001071a115a2705270b03010b02060100000000000000160c0205050b000102020000010345220e011001140c030b00115b0a0321040a050d0717115a270a0329030411051407041155270b032a030f020b010c022e0b023801041e0521071e11552702030100010f471c0a00290f200406060000000000000000020b002b0f0c030a0310030a01380204160b0310030b0138031004140c02051a0b03010600000000000000000c020b020204010402030f4ac5010a05060000000000000000240405050a0b00010714115d270b010b020b030b04110e0c100e1010051001140c0d0a0d29030419051e0b000107041155270b0d2a030c0c0a0c10020e101005143801042905300b00010b0c01071e1155270a0c0f020e1010051438040c0e0a0e10060c07070111590c060b070e06115f0442054b0b0e010b00010b0c010719115a270b0e10060c09070111590c080b090e0811600456055d0b00010b0c010719115a270a000a100b051152130a010c0a010b00115b2a0f0f070a100a0a120038050a0c0f020e1010051438040c0f0a0f1008140600000000000000002404c0010a0f1009140b0a170a0f0f09150b0f1009140600000000000000002104bd010a0c0f020e10100514380611150a0c0f000e101005100a1438070c0b0a0b100b140600000000000000002404b8010a0b100c14060100000000000000170a0b0f0c150a0b100c140600000000000000002104b3010b0c0f000b0b100d143808111405b7010b0c010b0b0105bc010b0c010b0b0105bf010b0c0105c4010b0f010b0c010205010402030f51b6010b00115b0c0d0a05060000000000000000240408050b0714115d270a0d0b020b030b04110e0c0f0e0f100510011429030418051b07041155270b0d2a030c0c0a0c10020e0f10051438010426052b0b0c01071e1155270a0c0f020e0f10051438040c0e0a0e10060c07070011590c060b070e06115f043d05440b0e010b0c010709115a270a0e10060c09070011590c080b090e081160044f05560b0e010b0c010709115a270a010a0f0b051154130a010c0a010b012a0f0f070a0f0a0a120038050a0e1008140600000000000000002404b1010a0e1009140b0a170a0e0f09150b0e1009140600000000000000002104ae010a0c0f020e0f100514380611150a0c0f000e0f1005100a1438070c0b0a0b100b140600000000000000002404a9010a0b100c14060100000000000000170a0b0f0c150a0b100c140600000000000000002104a4010b0c0f000b0b100d143808111405a8010b0c010b0b0105ad010b0c010b0b0105b0010b0c0105b5010b0e010b0c01020601000103010d0a0029030404050707041155270b002b0310000b01380002070100010352140a0029030404050707041155270a002b0310020c030b000b010b02110c0c040b030b04380102080100010353590e0111570726250406050b0b00010707115d270e031157072725041105160b00010722115d270a00115b0c070a0729032004290a003809380a0a00380b0a00380c0b00380d12032d03052b0b00010a072a030f000c090a090a010c062e0b063800200438053d0b090107061165270e0511090c0a0a020e01140a030600000000000000000a040b0a12010c080b090a010b08380e0a072a030f0e0b070e01140b030b020b041204380f0209010000010e0a0007024207140a0007044207140b0007034207141202020a0104010301080b000b010b020b030b040b051108020b01000001140a000a012504050508070e115d270a021167040c050f071b115d270b000b010b021209020c01000001170e011157072625040605090707115d270e021157072625040f05120711115d270b000b010b02120c020d01000001040b000b01120d020e01000001070b000b010b02110c0b03120d020f01000001160a0007024207140a0007044207140a0007034207140a0007064207140b000708420714120e0210010402030f5a180e0a110f0c0e0a000b010b020b030b050b060b070b080b090b0e0b0b0b0c0b0d11110c0f0b000b0f0b04113f010211010001035ba4010e0211570726250406050b0b00010711115d270e011157072625041105160b00010707115d270e051157072725041c05210b00010722115d270a080a07250426052b0b0001070e115d270b00115b0c0d0a0d29030432053507041155270a0d2a030c0f0b0d0b010a02110c0c110a0f10000e11100a1438000445054a0b0f0107031155270a0f10020a11380120045105560b0f01071d1165270a0f0f000e11100a1438070c0e0a0e100b1406000000000000000024047a0a0e100c14060100000000000000160a0e0f0c150a0e100b140b0e100c1426047405790b0f010708115d27057c0b0e010a040600000000000000000600000000000000000a050a080a070a06110b0a020a030a0a0a0b0a0c11680a09120b0c100a0f0f020a110b1038100b0f0f0f0a110b030b040b050b060b070b080b020b090b0a0b0b0b0c120538110b11021201000001070b00115b0b010b020b03121002130100010f20090a00115b0c020b00113c0b020b011116021400000001090b0013010101010101010215000000010c0b00130b01010101010101010102160000010f5d390e01100414060000000000000000240407050a071c115d270a002a0f0c020a020f100e011011140e01100414120638120b00290f041b05200b020107211155270a0210030e0110111438022004300b020f030e011011140b01381305380b020f030e0110111438140b01113d02170100010f010d0a002b0f101214040605090723115a270b000b01111602180100010f39090b000b020b0311520c040b010b04111302190104010f100c0b020b030b040b05110e0c070b000b010b070b061118021a01000103010b0a000a0111000b002a030f000b013807101314021b01000103010b0a000a0111000b002a030f000b013807100b14021c010001035f1b0a0029030404050707041155270b002b0310000c020a020a013800041005150b020107031155270b020b013815101414021d01000001040b00101514021e01000001040b00101614021f01000001040b00101714022001000103601b0a000a0111000b002a030f000b0138070c030a03100b140600000000000000002404150b03100c1438160c0205190b030138170c020b02022101000103010b0a000a0111000b002a030f000b01380710181402220100010f010b0a00290f20040609020b002b0f1012140223010002030f63360a000a011103060000000000000000240407050a070b1155270e0110191406000000000000000021042c0e0110051001142b0310020c030a030e011005143801041e05230b0301071e1155270b030e0110051438181006140c0205340b002b0f10030b013803101a140c020b0202240100010301050e001005141137022501000001040b00101b14022601000001040b00101c14022701000001040b00101d14022801000001040b001004140229010000010a0a001001140a00100a140b00101e14022a01000001040b00101114022b01000001100a0010051001140a001005100a140a001005101e140b00101914022c01000001040b00101f14022d01000001040b00102014022e01000001040b00102114022f01000001040b00102214023001000001040b00102314023101000103642b0a0029030404050707041155270b002b0310020c030a030a013801041005150b0301071e1155270b030b0138180c040a041008140600000000000000002404250b0410091438160c0205290b040138170c020b02023201000103651f0e001001140c020a0229030408050b07041155270b022b0310020c010a010a003801041405190b0101071e1155270b010b003818102414023301000001040e00100514023401000103661b0a0029030404050707041155270b002b0310020c020a020a013801041005150b0201071e1155270b020b013818102514023501000103651f0e001001140c020a0229030408050b07041155270b022b0310020c010a010a003801041405190b0101071e1155270b010b003818100814023601000103651f0e001001140c020a0229030408050b07041155270b022b0310020c010a010a003801041405190b0101071e1155270b010b003818102614023701000103651f0e001001140c020a0229030408050b07041155270b022b0310020c010a010a003801041405190b0101071e1155270b010b003818102714023801000103661b0a0029030404050707041155270b002b0310020c020a020a013801041005150b0201071e1155270b020b013818102814023901000001030b00290f023a0100000102060000000000000000273b0104000102060000000000000000273c01000001160a00115b290f2004130a003819090a00381a0a00381b0a00381c0b00381d120f2d0f05150b0001023d010000011c0a0010110e011011210407050c0b0001070f115d270a001004140e01100414160b000f04150b01130a010101023e010402030f0e180b010b020b03110c0c050e051001140a00115b21040d05120b00010716115a270b000b050b04113f01023f010002030f695e0e011001140a00115b210408050d0b00010716115a270e011001140c050a052a030f020c040a040a010c032e0b033801041d05240b04010b0001071e1155270b040a0138040c060a061008140600000000000000002404490a061009140a02160a0610081425043905400b06010b00010710115d270a061009140a02160b060f0915054b0b06010a01060000000000000000110d0c070b052a030f290b010a021207381e0b000a070b02116b120a11130b070240010002030f696b0a01290f040405090b000107211155270a012b0f101214040f05140b00010723115a270e021001140b00115b21041c051f0716115a270e021001140c060a062a030f020c050a050a020c042e0b043801042f05340b0501071e1155270b050a0238040c070a071008140600000000000000002404570a071009140a03160a07100814250449054e0b07010710115d270a071009140a03160b070f091505590b07010a02060000000000000000110d0c080b062a030f290b020a031207381e0b010b080b03116b120a11160241010001036a250a00115b0c040a040a0111000b042a030f000a0138070c030a031014101514041205190b00010b0301070a115a270b000b010a031013140a02116c0b020b030f13150242010001036c4a0a00115b0c050a050a0111000b052a030f000a0138070c040a04100b140600000000000000002204170a02060000000000000000220c030519090c030b03041c05230b00010b0401070d115d270a020a04100c1426042a05310b00010b0401070d115d270a0410141016140437053e0b00010b0401070a115a270b000b010a04100b140a02116d0b020b040f0b150243010001036a300e0211570727250406050b0b00010722115d270a00115b0c040a040a0111000b042a030f000a0138070c030a031014101714041d05240b00010b0301070a115a270b000b010a031018140a02116e0b020b030f18150244010002030f6ea7010e0210051001140c0d0b00115b0a0d21040b050e0717115a270a0d29030412051507041155270b0d2a030f020c0c0a0c0e021005140c062e0b063801042305280b0c01071e1155270b0c0e0210051438040c120a121026101f142004540a1210060c08072811590c070b080e07115f043f05440b1201070a115a270a1210060c0a072811590c090b0a0e091160044f05540b1201070a115a270e02101914060000000000000000210491010a010a0206010000000000000011540c110a12102514060100000000000000160c0e0e021005140a0e110d0c100a100601000000000000000a12100614120a0c0f0a010b0f11160a010a100a030a040a0511510b012a0f0f2a0b020a100b030b040b051208381f0b0e0b120f25150b11130a0101010b100c0b05a5010b12010a010a020a030a040a0511510b012a0f0f2a0a020a020b030b040b051208381f0b020c0b0b0b0245010402030f6f280a00115b0a02210406050b0b000107171155270600000000000000000c0a0b020b030b040b05110e0c0b0a0a0a0623042505180a000a010a0b0a070a080a091144010b0a060100000000000000160c0a05130b000102460100010370290a000a0111020e011001142a030f020a0138040c030a031026102014041105180b03010b0001070a115a270b000e01100a140e01101e140a031024140a02116f0b020b030f2415024701000103724e0a000a0111020e011001142a030f020a0138040c040a041008140600000000000000002204160a02060000000000000000220c030518090c030b03041b05220b04010b0001070d115d270a020a0410091426042905300b04010b0001070d115d270a0410261021140436053d0b04010b0001070a115a270b000e01100a140e01101e140a041008140a0211700b020b040f0815024801000103748a010a000a0111020e02411d0c080e0341440c0f0e04411d0c0e0a080b0f21041105160b0001071f1171270b080b0e21041b05200b0001071f1171270e011001142a030f020a0138040c0d0a0d1026101f14042e05350b0d010b0001070a115a270600000000000000000c06407500000000000000000c0c407600000000000000000c0a0e0211010a060e02411d23047c05430e020a06421d0c070a0d10060a07115f04540a0d10060a0711721438200c05055638210c050b050c0b0d0c0a0b44750e030a064244140e040a06421d1411730c090d0a0a0944760e0b382204710a0d0f060b070b09117505770a0d0f060b07140b0911760b06060100000000000000160c06053d0b0d010b000e01100a140e01101e140b020b0c0b0a1177024901000103703a0a000a0111020e011001142a030f020a0138040c030a031026102214041105180b03010b0001070a115a270b000e01100a140e01101e140a031027101c140a031027101b140a031027101d140e02101c140e02101b140e02101d1411780b020b030f2715024a0100010370340e0211570727250406050b0b00010722115d270a000a0111020e011001142a030f020a0138040c030a031026102314041c05230b03010b0001070a115a270b000e01100a140e01101e140a031028140a0211790b020b030f2815024b0104010f7e100a00115b0c020a00113c0b022a0f0f120c030a010b03150b000b01117a024c0100010f7f3a117b0e00102b14250407050a0724115d270a010e00102c142504110514070c115d270a010e00102c1421041d38230c02052e0e00102d140e00102e140e00102c140a01170e00102b14121038240c020b020c030e00102d140e00102e140b0111540b03024d01000001320a001011101914060000000000000000210408050d0b000107121171270a001004140a0124041405190b00010720115d270a0106000000000000000024041e05230b0001071c115d270a001004140a01170a000f04150b001011140b01116b120a024e01000001030b001011024f0100010f39140a022b0f1012140406050b0b00010723115a270b000b010b0311520c040b020b04111602500104010f100c0b010b020b030b04110e0c070b000b070b050b06114f02510000010f80011e0b002a0f0f030c060a060a010c052e0b053802040c05110b060107181155270b060b0138140f1a0c070e0211010b070b020b030b04117c02520100010f01060b00115b0b010b02115402530100010f0115117b0e00102b14250407050a0724115d270e00102d140e00102e140e00102c14115402540000010f8201510a0206000000000000000024040505080725115d270a000a0111030a0226040f0512070b115d270a00290f0416051907211155270a002a0f0f2f0a010a02121138250b002a0f0f030c060a060a010c032e0b033802042c05310b060107181155270a060a0138140f040c050a05140a022404490b06010a05140a02170b05150b010b02116b120a0c04054f0b05010b060b0138260c040b040203000c0003010f000a010d000b070f040b000b020c01010401030101030203030f020a000f010100010502000202020101020d010a020901090009020c020e040e030e000e020e010b060b010b080b040b0303040f0510031002100010010f0300","abi":{"address":"0x3","name":"token","friends":[],"exposed_functions":[{"name":"balance_of","visibility":"public","is_entry":false,"generic_type_params":[],"params":["address","0x3::token::TokenId"],"return":["u64"]},{"name":"burn","visibility":"public","is_entry":true,"generic_type_params":[],"params":["&signer","address","0x1::string::String","0x1::string::String","u64","u64"],"return":[]},{"name":"burn_by_creator","visibility":"public","is_entry":true,"generic_type_params":[],"params":["&signer","address","0x1::string::String","0x1::string::String","u64","u64"],"return":[]},{"name":"check_collection_exists","visibility":"public","is_entry":false,"generic_type_params":[],"params":["address","0x1::string::String"],"return":["bool"]},{"name":"check_tokendata_exists","visibility":"public","is_entry":false,"generic_type_params":[],"params":["address","0x1::string::String","0x1::string::String"],"return":["bool"]},{"name":"create_collection","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&signer","0x1::string::String","0x1::string::String","0x1::string::String","u64","vector<bool>"],"return":[]},{"name":"create_collection_mutability_config","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&vector<bool>"],"return":["0x3::token::CollectionMutabilityConfig"]},{"name":"create_collection_script","visibility":"public","is_entry":true,"generic_type_params":[],"params":["&signer","0x1::string::String","0x1::string::String","0x1::string::String","u64","vector<bool>"],"return":[]},{"name":"create_royalty","visibility":"public","is_entry":false,"generic_type_params":[],"params":["u64","u64","address"],"return":["0x3::token::Royalty"]},{"name":"create_token_data_id","visibility":"public","is_entry":false,"generic_type_params":[],"params":["address","0x1::string::String","0x1::string::String"],"return":["0x3::token::TokenDataId"]},{"name":"create_token_id","visibility":"public","is_entry":false,"generic_type_params":[],"params":["0x3::token::TokenDataId","u64"],"return":["0x3::token::TokenId"]},{"name":"create_token_id_raw","visibility":"public","is_entry":false,"generic_type_params":[],"params":["address","0x1::string::String","0x1::string::String","u64"],"return":["0x3::token::TokenId"]},{"name":"create_token_mutability_config","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&vector<bool>"],"return":["0x3::token::TokenMutabilityConfig"]},{"name":"create_token_script","visibility":"public","is_entry":true,"generic_type_params":[],"params":["&signer","0x1::string::String","0x1::string::String","0x1::string::String","u64","u64","0x1::string::String","address","u64","u64","vector<bool>","vector<0x1::string::String>","vector<vector<u8>>","vector<0x1::string::String>"],"return":[]},{"name":"create_tokendata","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&signer","0x1::string::String","0x1::string::String","0x1::string::String","u64","0x1::string::String","address","u64","u64","0x3::token::TokenMutabilityConfig","vector<0x1::string::String>","vector<vector<u8>>","vector<0x1::string::String>"],"return":["0x3::token::TokenDataId"]},{"name":"create_withdraw_capability","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&signer","0x3::token::TokenId","u64","u64"],"return":["0x3::token::WithdrawCapability"]},{"name":"deposit_token","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&signer","0x3::token::Token"],"return":[]},{"name":"direct_deposit_with_opt_in","visibility":"public","is_entry":false,"generic_type_params":[],"params":["address","0x3::token::Token"],"return":[]},{"name":"direct_transfer","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&signer","&signer","0x3::token::TokenId","u64"],"return":[]},{"name":"direct_transfer_script","visibility":"public","is_entry":true,"generic_type_params":[],"params":["&signer","&signer","address","0x1::string::String","0x1::string::String","u64","u64"],"return":[]},{"name":"get_collection_description","visibility":"public","is_entry":false,"generic_type_params":[],"params":["address","0x1::string::String"],"return":["0x1::string::String"]},{"name":"get_collection_maximum","visibility":"public","is_entry":false,"generic_type_params":[],"params":["address","0x1::string::String"],"return":["u64"]},{"name":"get_collection_mutability_config","visibility":"public","is_entry":false,"generic_type_params":[],"params":["address","0x1::string::String"],"return":["0x3::token::CollectionMutabilityConfig"]},{"name":"get_collection_mutability_description","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&0x3::token::CollectionMutabilityConfig"],"return":["bool"]},{"name":"get_collection_mutability_maximum","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&0x3::token::CollectionMutabilityConfig"],"return":["bool"]},{"name":"get_collection_mutability_uri","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&0x3::token::CollectionMutabilityConfig"],"return":["bool"]},{"name":"get_collection_supply","visibility":"public","is_entry":false,"generic_type_params":[],"params":["address","0x1::string::String"],"return":["0x1::option::Option<u64>"]},{"name":"get_collection_uri","visibility":"public","is_entry":false,"generic_type_params":[],"params":["address","0x1::string::String"],"return":["0x1::string::String"]},{"name":"get_direct_transfer","visibility":"public","is_entry":false,"generic_type_params":[],"params":["address"],"return":["bool"]},{"name":"get_property_map","visibility":"public","is_entry":false,"generic_type_params":[],"params":["address","0x3::token::TokenId"],"return":["0x3::property_map::PropertyMap"]},{"name":"get_royalty","visibility":"public","is_entry":false,"generic_type_params":[],"params":["0x3::token::TokenId"],"return":["0x3::token::Royalty"]},{"name":"get_royalty_denominator","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&0x3::token::Royalty"],"return":["u64"]},{"name":"get_royalty_numerator","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&0x3::token::Royalty"],"return":["u64"]},{"name":"get_royalty_payee","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&0x3::token::Royalty"],"return":["address"]},{"name":"get_token_amount","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&0x3::token::Token"],"return":["u64"]},{"name":"get_token_data_id_fields","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&0x3::token::TokenDataId"],"return":["address","0x1::string::String","0x1::string::String"]},{"name":"get_token_id","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&0x3::token::Token"],"return":["0x3::token::TokenId"]},{"name":"get_token_id_fields","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&0x3::token::TokenId"],"return":["address","0x1::string::String","0x1::string::String","u64"]},{"name":"get_token_mutability_default_properties","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&0x3::token::TokenMutabilityConfig"],"return":["bool"]},{"name":"get_token_mutability_description","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&0x3::token::TokenMutabilityConfig"],"return":["bool"]},{"name":"get_token_mutability_maximum","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&0x3::token::TokenMutabilityConfig"],"return":["bool"]},{"name":"get_token_mutability_royalty","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&0x3::token::TokenMutabilityConfig"],"return":["bool"]},{"name":"get_token_mutability_uri","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&0x3::token::TokenMutabilityConfig"],"return":["bool"]},{"name":"get_token_supply","visibility":"public","is_entry":false,"generic_type_params":[],"params":["address","0x3::token::TokenDataId"],"return":["0x1::option::Option<u64>"]},{"name":"get_tokendata_description","visibility":"public","is_entry":false,"generic_type_params":[],"params":["0x3::token::TokenDataId"],"return":["0x1::string::String"]},{"name":"get_tokendata_id","visibility":"public","is_entry":false,"generic_type_params":[],"params":["0x3::token::TokenId"],"return":["0x3::token::TokenDataId"]},{"name":"get_tokendata_largest_property_version","visibility":"public","is_entry":false,"generic_type_params":[],"params":["address","0x3::token::TokenDataId"],"return":["u64"]},{"name":"get_tokendata_maximum","visibility":"public","is_entry":false,"generic_type_params":[],"params":["0x3::token::TokenDataId"],"return":["u64"]},{"name":"get_tokendata_mutability_config","visibility":"public","is_entry":false,"generic_type_params":[],"params":["0x3::token::TokenDataId"],"return":["0x3::token::TokenMutabilityConfig"]},{"name":"get_tokendata_royalty","visibility":"public","is_entry":false,"generic_type_params":[],"params":["0x3::token::TokenDataId"],"return":["0x3::token::Royalty"]},{"name":"get_tokendata_uri","visibility":"public","is_entry":false,"generic_type_params":[],"params":["address","0x3::token::TokenDataId"],"return":["0x1::string::String"]},{"name":"has_token_store","visibility":"public","is_entry":false,"generic_type_params":[],"params":["address"],"return":["bool"]},{"name":"initialize_token","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&signer","0x3::token::TokenId"],"return":[]},{"name":"initialize_token_script","visibility":"public","is_entry":true,"generic_type_params":[],"params":["&signer"],"return":[]},{"name":"initialize_token_store","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&signer"],"return":[]},{"name":"merge","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&mut 0x3::token::Token","0x3::token::Token"],"return":[]},{"name":"mint_script","visibility":"public","is_entry":true,"generic_type_params":[],"params":["&signer","address","0x1::string::String","0x1::string::String","u64"],"return":[]},{"name":"mint_token","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&signer","0x3::token::TokenDataId","u64"],"return":["0x3::token::TokenId"]},{"name":"mint_token_to","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&signer","address","0x3::token::TokenDataId","u64"],"return":[]},{"name":"mutate_collection_description","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&signer","0x1::string::String","0x1::string::String"],"return":[]},{"name":"mutate_collection_maximum","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&signer","0x1::string::String","u64"],"return":[]},{"name":"mutate_collection_uri","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&signer","0x1::string::String","0x1::string::String"],"return":[]},{"name":"mutate_one_token","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&signer","address","0x3::token::TokenId","vector<0x1::string::String>","vector<vector<u8>>","vector<0x1::string::String>"],"return":["0x3::token::TokenId"]},{"name":"mutate_token_properties","visibility":"public","is_entry":true,"generic_type_params":[],"params":["&signer","address","address","0x1::string::String","0x1::string::String","u64","u64","vector<0x1::string::String>","vector<vector<u8>>","vector<0x1::string::String>"],"return":[]},{"name":"mutate_tokendata_description","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&signer","0x3::token::TokenDataId","0x1::string::String"],"return":[]},{"name":"mutate_tokendata_maximum","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&signer","0x3::token::TokenDataId","u64"],"return":[]},{"name":"mutate_tokendata_property","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&signer","0x3::token::TokenDataId","vector<0x1::string::String>","vector<vector<u8>>","vector<0x1::string::String>"],"return":[]},{"name":"mutate_tokendata_royalty","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&signer","0x3::token::TokenDataId","0x3::token::Royalty"],"return":[]},{"name":"mutate_tokendata_uri","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&signer","0x3::token::TokenDataId","0x1::string::String"],"return":[]},{"name":"opt_in_direct_transfer","visibility":"public","is_entry":true,"generic_type_params":[],"params":["&signer","bool"],"return":[]},{"name":"partial_withdraw_with_capability","visibility":"public","is_entry":false,"generic_type_params":[],"params":["0x3::token::WithdrawCapability","u64"],"return":["0x3::token::Token","0x1::option::Option<0x3::token::WithdrawCapability>"]},{"name":"split","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&mut 0x3::token::Token","u64"],"return":["0x3::token::Token"]},{"name":"token_id","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&0x3::token::Token"],"return":["&0x3::token::TokenId"]},{"name":"transfer","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&signer","0x3::token::TokenId","address","u64"],"return":[]},{"name":"transfer_with_opt_in","visibility":"public","is_entry":true,"generic_type_params":[],"params":["&signer","address","0x1::string::String","0x1::string::String","u64","address","u64"],"return":[]},{"name":"withdraw_token","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&signer","0x3::token::TokenId","u64"],"return":["0x3::token::Token"]},{"name":"withdraw_with_capability","visibility":"public","is_entry":false,"generic_type_params":[],"params":["0x3::token::WithdrawCapability"],"return":["0x3::token::Token"]}],"structs":[{"name":"BurnTokenEvent","is_native":false,"abilities":["drop","store"],"generic_type_params":[],"fields":[{"name":"id","type":"0x3::token::TokenId"},{"name":"amount","type":"u64"}]},{"name":"CollectionData","is_native":false,"abilities":["store"],"generic_type_params":[],"fields":[{"name":"description","type":"0x1::string::String"},{"name":"name","type":"0x1::string::String"},{"name":"uri","type":"0x1::string::String"},{"name":"supply","type":"u64"},{"name":"maximum","type":"u64"},{"name":"mutability_config","type":"0x3::token::CollectionMutabilityConfig"}]},{"name":"CollectionMutabilityConfig","is_native":false,"abilities":["copy","drop","store"],"generic_type_params":[],"fields":[{"name":"description","type":"bool"},{"name":"uri","type":"bool"},{"name":"maximum","type":"bool"}]},{"name":"Collections","is_native":false,"abilities":["key"],"generic_type_params":[],"fields":[{"name":"collection_data","type":"0x1::table::Table<0x1::string::String, 0x3::token::CollectionData>"},{"name":"token_data","type":"0x1::table::Table<0x3::token::TokenDataId, 0x3::token::TokenData>"},{"name":"create_collection_events","type":"0x1::event::EventHandle<0x3::token::CreateCollectionEvent>"},{"name":"create_token_data_events","type":"0x1::event::EventHandle<0x3::token::CreateTokenDataEvent>"},{"name":"mint_token_events","type":"0x1::event::EventHandle<0x3::token::MintTokenEvent>"}]},{"name":"CreateCollectionEvent","is_native":false,"abilities":["drop","store"],"generic_type_params":[],"fields":[{"name":"creator","type":"address"},{"name":"collection_name","type":"0x1::string::String"},{"name":"uri","type":"0x1::string::String"},{"name":"description","type":"0x1::string::String"},{"name":"maximum","type":"u64"}]},{"name":"CreateTokenDataEvent","is_native":false,"abilities":["drop","store"],"generic_type_params":[],"fields":[{"name":"id","type":"0x3::token::TokenDataId"},{"name":"description","type":"0x1::string::String"},{"name":"maximum","type":"u64"},{"name":"uri","type":"0x1::string::String"},{"name":"royalty_payee_address","type":"address"},{"name":"royalty_points_denominator","type":"u64"},{"name":"royalty_points_numerator","type":"u64"},{"name":"name","type":"0x1::string::String"},{"name":"mutability_config","type":"0x3::token::TokenMutabilityConfig"},{"name":"property_keys","type":"vector<0x1::string::String>"},{"name":"property_values","type":"vector<vector<u8>>"},{"name":"property_types","type":"vector<0x1::string::String>"}]},{"name":"DepositEvent","is_native":false,"abilities":["drop","store"],"generic_type_params":[],"fields":[{"name":"id","type":"0x3::token::TokenId"},{"name":"amount","type":"u64"}]},{"name":"MintTokenEvent","is_native":false,"abilities":["drop","store"],"generic_type_params":[],"fields":[{"name":"id","type":"0x3::token::TokenDataId"},{"name":"amount","type":"u64"}]},{"name":"MutateTokenPropertyMapEvent","is_native":false,"abilities":["drop","store"],"generic_type_params":[],"fields":[{"name":"old_id","type":"0x3::token::TokenId"},{"name":"new_id","type":"0x3::token::TokenId"},{"name":"keys","type":"vector<0x1::string::String>"},{"name":"values","type":"vector<vector<u8>>"},{"name":"types","type":"vector<0x1::string::String>"}]},{"name":"Royalty","is_native":false,"abilities":["copy","drop","store"],"generic_type_params":[],"fields":[{"name":"royalty_points_numerator","type":"u64"},{"name":"royalty_points_denominator","type":"u64"},{"name":"payee_address","type":"address"}]},{"name":"Token","is_native":false,"abilities":["store"],"generic_type_params":[],"fields":[{"name":"id","type":"0x3::token::TokenId"},{"name":"amount","type":"u64"},{"name":"token_properties","type":"0x3::property_map::PropertyMap"}]},{"name":"TokenData","is_native":false,"abilities":["store"],"generic_type_params":[],"fields":[{"name":"maximum","type":"u64"},{"name":"largest_property_version","type":"u64"},{"name":"supply","type":"u64"},{"name":"uri","type":"0x1::string::String"},{"name":"royalty","type":"0x3::token::Royalty"},{"name":"name","type":"0x1::string::String"},{"name":"description","type":"0x1::string::String"},{"name":"default_properties","type":"0x3::property_map::PropertyMap"},{"name":"mutability_config","type":"0x3::token::TokenMutabilityConfig"}]},{"name":"TokenDataId","is_native":false,"abilities":["copy","drop","store"],"generic_type_params":[],"fields":[{"name":"creator","type":"address"},{"name":"collection","type":"0x1::string::String"},{"name":"name","type":"0x1::string::String"}]},{"name":"TokenId","is_native":false,"abilities":["copy","drop","store"],"generic_type_params":[],"fields":[{"name":"token_data_id","type":"0x3::token::TokenDataId"},{"name":"property_version","type":"u64"}]},{"name":"TokenMutabilityConfig","is_native":false,"abilities":["copy","drop","store"],"generic_type_params":[],"fields":[{"name":"maximum","type":"bool"},{"name":"uri","type":"bool"},{"name":"royalty","type":"bool"},{"name":"description","type":"bool"},{"name":"properties","type":"bool"}]},{"name":"TokenStore","is_native":false,"abilities":["key"],"generic_type_params":[],"fields":[{"name":"tokens","type":"0x1::table::Table<0x3::token::TokenId, 0x3::token::Token>"},{"name":"direct_transfer","type":"bool"},{"name":"deposit_events","type":"0x1::event::EventHandle<0x3::token::DepositEvent>"},{"name":"withdraw_events","type":"0x1::event::EventHandle<0x3::token::WithdrawEvent>"},{"name":"burn_events","type":"0x1::event::EventHandle<0x3::token::BurnTokenEvent>"},{"name":"mutate_token_property_events","type":"0x1::event::EventHandle<0x3::token::MutateTokenPropertyMapEvent>"}]},{"name":"WithdrawCapability","is_native":false,"abilities":["drop","store"],"generic_type_params":[],"fields":[{"name":"token_owner","type":"address"},{"name":"token_id","type":"0x3::token::TokenId"},{"name":"amount","type":"u64"},{"name":"expiration_sec","type":"u64"}]},{"name":"WithdrawEvent","is_native":false,"abilities":["drop","store"],"generic_type_params":[],"fields":[{"name":"id","type":"0x3::token::TokenId"},{"name":"amount","type":"u64"}]}]}},{"bytecode":"0xa11ceb0b060000000c01000e020e140322d90104fb0112058d02df0107ec03fc0308e8074006a808a70110cf098d040adc0d140cf00da7080d9716060000010101020103010401050106000707000008070005090700041f070200000000000a000100000b020300000c030400000d030500000e020600000f0708010100100908000011010a0000120b0c0000130d0a0000140e0a000015020f000016020600001702040000180210000019020c00001a021100001b121300001c140100001d1501000512160c0002220c0c000412170c02040402230c0c00040a1801020404040b191a020404040e190602040406240104010005250504000126070501000427011d0204040328050f000329050600032a050400032b051000032c050c00032d051100022e0c0c00041b2021020404042f20240204041613181319131a131b1c1d1c1e13261327130307080008020801000206080006080201060801010802010a02010101060900010801020a020802010800010608000103030a08020a0a020a0802020a08020a0801010501040102020708000608020208020801040708000a08020a0a020a08020307080006080208010106080201060b03020900090103070b0302090009010900090102060b0302090009010609000106090107010101010108010802010900010b0302090009010403080203080005030802030800080102070b03020900090106090002090009010706080203060802030801030301070801010709010c70726f70657274795f6d617003626373056572726f720866726f6d5f6263730a73696d706c655f6d617006737472696e6709747970655f696e666f0b50726f70657274794d61700d50726f706572747956616c756506537472696e670361646406626f72726f770b626f72726f775f747970650c626f72726f775f76616c75650c636f6e7461696e735f6b6579156372656174655f70726f70657274795f76616c7565196372656174655f70726f70657274795f76616c75655f72617705656d707479066c656e677468036e65771f6e65775f776974685f6b65795f616e645f70726f70657274795f76616c75650c726561645f6164647265737309726561645f626f6f6c0b726561645f737472696e6709726561645f7531323808726561645f75363407726561645f75380672656d6f7665137570646174655f70726f70657274795f6d6170157570646174655f70726f70657274795f76616c7565036d61700953696d706c654d61700576616c7565047479706510696e76616c69645f617267756d656e740d696e76616c69645f737461746509747970655f6e616d65047574663808746f5f6279746573066372656174650a746f5f6164647265737307746f5f626f6f6c09746f5f737472696e6707746f5f7531323806746f5f75363405746f5f7538096e6f745f666f756e640a626f72726f775f6d757400000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000001030801000000000000000308050000000000000003080400000000000000030807000000000000000308030000000000000003080200000000000000030806000000000000000308e803000000000000030880000000000000000a020504626f6f6c0a02030275380a0204037536340a020504753132380a020807616464726573730a0214133078313a3a737472696e673a3a537472696e670a020b0a766563746f723c75383e126170746f733a3a6d657461646174615f7631f80307010000000000000021454b45595f4152454144595f45584953545f494e5f50524f50455254595f4d41501f5468652070726f7065727479206b657920616c72656164792065786973747302000000000000001d4550524f50455254595f4e554d4245525f4558434545445f4c494d495428546865206e756d626572206f662070726f7065727479206578636565647320746865206c696d69740300000000000000134550524f50455254595f4e4f545f45584953541a5468652070726f706572747920646f65736e2774206578697374040000000000000020454b45595f434f554e545f4e4f545f4d415443485f56414c55455f434f554e542850726f7065727479206b657920616e642076616c756520636f756e7420646f6e2774206d6174636805000000000000001f454b45595f434f554e545f4e4f545f4d415443485f545950455f434f554e542750726f7065727479206b657920616e64207479706520636f756e7420646f6e2774206d6174636806000000000000000f45545950455f4e4f545f4d415443481b50726f7065727479207479706520646f65736e2774206d6174636807000000000000001b4550524f50455254595f4d41505f4e414d455f544f4f5f4c4f4e472a546865206e616d6520286b657929206f66207468652070726f706572747920697320746f6f206c6f6e6700000002011e0b030208020801010202200a0221080200010000011d0e0111140708250406050b0b000107031115270a0010003800070723041205170b000107051117270b000f000b010b023801020101000001100a000a0111040405050b0b00010b01010704270b0010000b013802020201000001040b00100114020301000001040b00100214020401000001050b0010000b01380302050100001b4738040c070a070709111c21040a080c01050f0a07070a111c210c010b010414080c0205190a07070b111c210c020b02041e080c0305230a07070c111c210c030b030428080c04052d0a07070d111c210c040b040432080c0505370a07070e111c210c050b05043f0b0038050b0711060c0605450b003805070f111c11060c060b06020601000001040b000b0112010207010000010338061200020801000001040b001000380002090100001e480e0041040c050a050707250408050b07051115270a050e014105210411051407021115270a050e02410421041a051d070111152711070c060600000000000000000c030a030a0523044605260e000a034204140c040e0411140708250431053407031115270d060f000b040e010a034205140e020a03420414120138010b03060100000000000000160c0305210b06020a0100001f3b0e0041040c040a040707250408050b07051115270a040e0141082104110514070211152711070c050600000000000000000c020a020a04230439051d0e000a024204140c030e010a024208140c060e031114070825042d053007031115270d050b030b0611000b02060100000000000000160c0205180b05020b01000003160b000b0111010c020a02100114070d111c21040c05110b020107061117270b02100214111f020c01000003160b000b0111010c020a021001140709111c21040c05110b020107061117270b021002141120020d01000003160b000b0111010c020a02100114070e111c21040c05110b020107061117270b021002141121020e01000003160b000b0111010c020a02100114070c111c21040c05110b020107061117270b021002141122020f01000003160b000b0111010c020a02100114070b111c21040c05110b020107061117270b021002141123021001000003160b000b0111010c020a02100114070a111c21040c05110b020107061117270b021002141124021101000016140a000a010c022e0b0211040408050f0b00010b010107041125270b000f000b0138070212010000224b0e0141040c070e0241050c0a0e0341040c090a070b0a21040e05130b000107021117270a070b09210418051d0b000107011117270600000000000000000c050a050a0723044805240e010a0542040c060e020a054205140e030a0542041412010c080a000a060c042e0b041104043e0a000b060b08111305430a000b06140b0811000b05060100000000000000160c05051f0b0001021301000023090b000f000b0138080c030b020b03150200000101010000","abi":{"address":"0x3","name":"property_map","friends":[],"exposed_functions":[{"name":"add","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&mut 0x3::property_map::PropertyMap","0x1::string::String","0x3::property_map::PropertyValue"],"return":[]},{"name":"borrow","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&0x3::property_map::PropertyMap","&0x1::string::String"],"return":["&0x3::property_map::PropertyValue"]},{"name":"borrow_type","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&0x3::property_map::PropertyValue"],"return":["0x1::string::String"]},{"name":"borrow_value","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&0x3::property_map::PropertyValue"],"return":["vector<u8>"]},{"name":"contains_key","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&0x3::property_map::PropertyMap","&0x1::string::String"],"return":["bool"]},{"name":"create_property_value","visibility":"public","is_entry":false,"generic_type_params":[{"constraints":["copy"]}],"params":["&T0"],"return":["0x3::property_map::PropertyValue"]},{"name":"create_property_value_raw","visibility":"public","is_entry":false,"generic_type_params":[],"params":["vector<u8>","0x1::string::String"],"return":["0x3::property_map::PropertyValue"]},{"name":"empty","visibility":"public","is_entry":false,"generic_type_params":[],"params":[],"return":["0x3::property_map::PropertyMap"]},{"name":"length","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&0x3::property_map::PropertyMap"],"return":["u64"]},{"name":"new","visibility":"public","is_entry":false,"generic_type_params":[],"params":["vector<0x1::string::String>","vector<vector<u8>>","vector<0x1::string::String>"],"return":["0x3::property_map::PropertyMap"]},{"name":"new_with_key_and_property_value","visibility":"public","is_entry":false,"generic_type_params":[],"params":["vector<0x1::string::String>","vector<0x3::property_map::PropertyValue>"],"return":["0x3::property_map::PropertyMap"]},{"name":"read_address","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&0x3::property_map::PropertyMap","&0x1::string::String"],"return":["address"]},{"name":"read_bool","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&0x3::property_map::PropertyMap","&0x1::string::String"],"return":["bool"]},{"name":"read_string","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&0x3::property_map::PropertyMap","&0x1::string::String"],"return":["0x1::string::String"]},{"name":"read_u128","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&0x3::property_map::PropertyMap","&0x1::string::String"],"return":["u128"]},{"name":"read_u64","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&0x3::property_map::PropertyMap","&0x1::string::String"],"return":["u64"]},{"name":"read_u8","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&0x3::property_map::PropertyMap","&0x1::string::String"],"return":["u8"]},{"name":"remove","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&mut 0x3::property_map::PropertyMap","&0x1::string::String"],"return":["0x1::string::String","0x3::property_map::PropertyValue"]},{"name":"update_property_map","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&mut 0x3::property_map::PropertyMap","vector<0x1::string::String>","vector<vector<u8>>","vector<0x1::string::String>"],"return":[]},{"name":"update_property_value","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&mut 0x3::property_map::PropertyMap","&0x1::string::String","0x3::property_map::PropertyValue"],"return":[]}],"structs":[{"name":"PropertyMap","is_native":false,"abilities":["copy","drop","store"],"generic_type_params":[],"fields":[{"name":"map","type":"0x1::simple_map::SimpleMap<0x1::string::String, 0x3::property_map::PropertyValue>"}]},{"name":"PropertyValue","is_native":false,"abilities":["copy","drop","store"],"generic_type_params":[],"fields":[{"name":"value","type":"vector<u8>"},{"name":"type","type":"0x1::string::String"}]}]}},{"bytecode":"0xa11ceb0b060000000a01000e020e3a034837057f3a07b901dc040895064006d5065010a507b6040adb0b520cad0c6300000101010201030104010500060007060100010008040000090600000a08010001000b0800000c0600060d0700060f040003120700052007000422040203010001022404010601000e00010100001002010000110304010000130501010000140601010000150601000016070101000017000800001809080001290a0a0003060c0806030004060c080608070302050806010108060c03050508080808030301060c08060c050808080803030303010807030508060301030f746f6b656e5f636f696e5f73776170056572726f72056576656e7406737472696e67057461626c6509747970655f696e666f05746f6b656e0d546f6b656e436f696e537761700b546f6b656e457363726f7711546f6b656e4c697374696e674576656e740d546f6b656e4c697374696e677310546f6b656e53746f7265457363726f770e546f6b656e537761704576656e7407546f6b656e49641463616e63656c5f746f6b656e5f6c697374696e6705546f6b656e176465706f7369745f746f6b656e5f746f5f657363726f7712646f65735f6c697374696e675f657869737406537472696e671765786368616e67655f636f696e5f666f725f746f6b656e18696e697469616c697a655f746f6b656e5f6c697374696e671d696e697469616c697a655f746f6b656e5f73746f72655f657363726f77136c6973745f746f6b656e5f666f725f737761701a77697468647261775f746f6b656e5f66726f6d5f657363726f772377697468647261775f746f6b656e5f66726f6d5f657363726f775f696e7465726e616c0c746f6b656e5f616d6f756e74136d696e5f70726963655f7065725f746f6b656e116c6f636b65645f756e74696c5f7365637308746f6b656e5f696406616d6f756e74096d696e5f70726963650e636f696e5f747970655f696e666f0854797065496e666f086c697374696e6773055461626c650e6c697374696e675f6576656e74730b4576656e7448616e646c650b737761705f6576656e74730d746f6b656e5f657363726f77730b746f6b656e5f62757965720b636f696e5f616d6f756e7410696e76616c69645f617267756d656e74000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000010308080000000000000003080700000000000000030801000000000000000308060000000000000003080400000000000000030802000000000000000308050000000000000003080300000000000000126170746f733a3a6d657461646174615f7631a1040801000000000000001545544f4b454e5f414c52454144595f4c495354454414546f6b656e20616c7265616479206c697374656402000000000000001845544f4b454e5f4c495354494e475f4e4f545f45584953541e546f6b656e206c697374696e67206e6f206c6f6e6765722065786973747303000000000000001445544f4b454e5f4e4f545f494e5f455343524f5716546f6b656e206973206e6f7420696e20657363726f7704000000000000003345544f4b454e5f43414e4e4f545f4d4f56455f4f55545f4f465f455343524f575f4245464f52455f4c4f434b55505f54494d453a546f6b656e2063616e6e6f74206265206d6f766564206f7574206f6620657363726f77206265666f726520746865206c6f636b75702074696d6505000000000000001a45544f4b454e5f4d494e5f50524943455f4e4f545f4d415443482b546f6b656e2062757920707269636520646f65736e2774206d61746368206c697374696e6720707269636506000000000000001745544f4b454e5f414d4f554e545f4e4f545f4d415443482d546f6b656e2062757920616d6f756e7420646f65736e2774206d61746368206c697374696e6720616d6f756e74070000000000000010454e4f545f454e4f5547485f434f494e1c4e6f7420656e6f75676820636f696e20746f2062757920746f6b656e08000000000000001245444550524543415445445f4d4f44554c451144657072656361746564206d6f64756c65000000020219031a030102020608071b030202051c08061d031e031b031f0809030203210b0a0208060b00010900230b0b010802250b0b010805040201260b0a02080608010502051c08062705190328031f080900010000010307001109270101000001030700110927020100000103070011092703010000010307001109270400000001030700110927050000000103070011092706010400010307001109270701000001030700110927080000000103070011092700","abi":{"address":"0x3","name":"token_coin_swap","friends":[],"exposed_functions":[{"name":"cancel_token_listing","visibility":"public","is_entry":false,"generic_type_params":[{"constraints":[]}],"params":["&signer","0x3::token::TokenId","u64"],"return":[]},{"name":"deposit_token_to_escrow","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&signer","0x3::token::TokenId","0x3::token::Token","u64"],"return":[]},{"name":"does_listing_exist","visibility":"public","is_entry":false,"generic_type_params":[{"constraints":[]}],"params":["address","0x3::token::TokenId"],"return":["bool"]},{"name":"exchange_coin_for_token","visibility":"public","is_entry":false,"generic_type_params":[{"constraints":[]}],"params":["&signer","u64","address","address","0x1::string::String","0x1::string::String","u64","u64"],"return":[]},{"name":"list_token_for_swap","visibility":"public","is_entry":true,"generic_type_params":[{"constraints":[]}],"params":["&signer","address","0x1::string::String","0x1::string::String","u64","u64","u64","u64"],"return":[]},{"name":"withdraw_token_from_escrow","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&signer","0x3::token::TokenId","u64"],"return":["0x3::token::Token"]}],"structs":[{"name":"TokenCoinSwap","is_native":false,"abilities":["drop","store"],"generic_type_params":[{"constraints":[]}],"fields":[{"name":"token_amount","type":"u64"},{"name":"min_price_per_token","type":"u64"}]},{"name":"TokenEscrow","is_native":false,"abilities":["store"],"generic_type_params":[],"fields":[{"name":"token","type":"0x3::token::Token"},{"name":"locked_until_secs","type":"u64"}]},{"name":"TokenListingEvent","is_native":false,"abilities":["drop","store"],"generic_type_params":[],"fields":[{"name":"token_id","type":"0x3::token::TokenId"},{"name":"amount","type":"u64"},{"name":"min_price","type":"u64"},{"name":"locked_until_secs","type":"u64"},{"name":"coin_type_info","type":"0x1::type_info::TypeInfo"}]},{"name":"TokenListings","is_native":false,"abilities":["key"],"generic_type_params":[{"constraints":[]}],"fields":[{"name":"listings","type":"0x1::table::Table<0x3::token::TokenId, 0x3::token_coin_swap::TokenCoinSwap<T0>>"},{"name":"listing_events","type":"0x1::event::EventHandle<0x3::token_coin_swap::TokenListingEvent>"},{"name":"swap_events","type":"0x1::event::EventHandle<0x3::token_coin_swap::TokenSwapEvent>"}]},{"name":"TokenStoreEscrow","is_native":false,"abilities":["key"],"generic_type_params":[],"fields":[{"name":"token_escrows","type":"0x1::table::Table<0x3::token::TokenId, 0x3::token_coin_swap::TokenEscrow>"}]},{"name":"TokenSwapEvent","is_native":false,"abilities":["drop","store"],"generic_type_params":[],"fields":[{"name":"token_id","type":"0x3::token::TokenId"},{"name":"token_buyer","type":"address"},{"name":"token_amount","type":"u64"},{"name":"coin_amount","type":"u64"},{"name":"coin_type_info","type":"0x1::type_info::TypeInfo"}]}]}},{"bytecode":"0xa11ceb0b060000000c01001002102e033e7a04b8011605ce01c901079703aa0408c107400681080a108b08500adb08430c9e0997030db50c08000001010102010301040105010600070008080000090600000a0600000b0600000c0700070d0700050f0700061804020301000107190400031b04010601000e0001000010020100001100010000120201000013030400001405010000150601000016070100042205090006230b0c02030007240d0e0007250f010003261101010607271312000628151602030002290e0e00062a0118020304012b051a0106072c1c1d00062d1e01020300062e0b1f020300072f200100090a0c100e0a0c17100a111911101117130a140a0c1903060c05080500060c050508060806030205080501080401060c04060c05080503070c0505080608060303040305080808040105020804080802070b070209000901090001090101060808010302060c080801080102070b0901090009000108050405080608060305080403070b0702080408080804080802060b07020900090109000101010802010b070209000901010803010b09010900050804070b070208040808050808080403060c08050301080803070b07020900090109000901010709010207080808080f746f6b656e5f7472616e7366657273076163636f756e74056572726f72056576656e74067369676e657206737472696e67057461626c6505746f6b656e0d50656e64696e67436c61696d7315546f6b656e43616e63656c4f666665724576656e740f546f6b656e436c61696d4576656e740f546f6b656e4f666665724576656e740c546f6b656e4f66666572496407546f6b656e49640c63616e63656c5f6f6666657206537472696e671363616e63656c5f6f666665725f73637269707405636c61696d0c636c61696d5f736372697074156372656174655f746f6b656e5f6f666665725f69641a696e697469616c697a655f746f6b656e5f7472616e7366657273056f666665720c6f666665725f7363726970740e70656e64696e675f636c61696d73055461626c6505546f6b656e0c6f666665725f6576656e74730b4576656e7448616e646c651363616e63656c5f6f666665725f6576656e74730c636c61696d5f6576656e74730a746f5f6164647265737308746f6b656e5f696406616d6f756e7407746f5f616464720a616464726573735f6f660672656d6f7665106765745f746f6b656e5f616d6f756e740d6465706f7369745f746f6b656e0a656d69745f6576656e74136372656174655f746f6b656e5f69645f72617708636f6e7461696e73096e6f745f666f756e64036e6577106e65775f6576656e745f68616e646c650e77697468647261775f746f6b656e036164640a626f72726f775f6d7574056d657267650000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000103080100000000000000126170746f733a3a6d657461646174615f76313c0101000000000000001645544f4b454e5f4f464645525f4e4f545f455849535419546f6b656e206f6666657220646f65736e27742065786973740000000204170b0702080408081a0b090108031c0b090108011d0b090108020102031e051f080520030202031e051f080520030302031e051f0805200304020221051f0805000100010008240a0011080c040a010a0211040c060a042900040b050f0b00010700270a042a000f000b0638000c050e05110a0c030b000b05110b0b042a000f010b010b020b0312013801020101040100120b0b020b030b040b05110d0c060e000b010b06110002020100010014340a012900040405080b00010700270a012a000f000c050a0011080a0211040c060a050a060c032e0b033802041905200b00010b05010700110f270b050b0638000c070e07110a0c040a000b07110b0b012a000f020b0011080b020b0412023803020301040100120b0b020b030b040b05110d0c060e000b010b061102020400000001040b000b0112040205000000010b0a0038040a0038050a0038060b00380712002d000206010001001b310a0011080c060a0629002004090a0011050a062a000f000c050a010a0211040c080b000a020a0311120c070a050a080c042e0b0438022004230b050b080b07380805280b050b0838090b0711150b062a000f030b010b020b031203380a020701040100120c0b020b030b040b05110d0c070e000b010b070b06110602000000020003000100","abi":{"address":"0x3","name":"token_transfers","friends":[],"exposed_functions":[{"name":"cancel_offer","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&signer","address","0x3::token::TokenId"],"return":[]},{"name":"cancel_offer_script","visibility":"public","is_entry":true,"generic_type_params":[],"params":["signer","address","address","0x1::string::String","0x1::string::String","u64"],"return":[]},{"name":"claim","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&signer","address","0x3::token::TokenId"],"return":[]},{"name":"claim_script","visibility":"public","is_entry":true,"generic_type_params":[],"params":["signer","address","address","0x1::string::String","0x1::string::String","u64"],"return":[]},{"name":"offer","visibility":"public","is_entry":false,"generic_type_params":[],"params":["&signer","address","0x3::token::TokenId","u64"],"return":[]},{"name":"offer_script","visibility":"public","is_entry":true,"generic_type_params":[],"params":["signer","address","address","0x1::string::String","0x1::string::String","u64","u64"],"return":[]}],"structs":[{"name":"PendingClaims","is_native":false,"abilities":["key"],"generic_type_params":[],"fields":[{"name":"pending_claims","type":"0x1::table::Table<0x3::token_transfers::TokenOfferId, 0x3::token::Token>"},{"name":"offer_events","type":"0x1::event::EventHandle<0x3::token_transfers::TokenOfferEvent>"},{"name":"cancel_offer_events","type":"0x1::event::EventHandle<0x3::token_transfers::TokenCancelOfferEvent>"},{"name":"claim_events","type":"0x1::event::EventHandle<0x3::token_transfers::TokenClaimEvent>"}]},{"name":"TokenCancelOfferEvent","is_native":false,"abilities":["drop","store"],"generic_type_params":[],"fields":[{"name":"to_address","type":"address"},{"name":"token_id","type":"0x3::token::TokenId"},{"name":"amount","type":"u64"}]},{"name":"TokenClaimEvent","is_native":false,"abilities":["drop","store"],"generic_type_params":[],"fields":[{"name":"to_address","type":"address"},{"name":"token_id","type":"0x3::token::TokenId"},{"name":"amount","type":"u64"}]},{"name":"TokenOfferEvent","is_native":false,"abilities":["drop","store"],"generic_type_params":[],"fields":[{"name":"to_address","type":"address"},{"name":"token_id","type":"0x3::token::TokenId"},{"name":"amount","type":"u64"}]},{"name":"TokenOfferId","is_native":false,"abilities":["copy","drop","store"],"generic_type_params":[],"fields":[{"name":"to_addr","type":"address"},{"name":"token_id","type":"0x3::token::TokenId"}]}]}},{"bytecode":"0xa11ceb0b060000000b0100100210400350490499012605bf01950107d402e30908b70c400af70cce010cc50ead030df211120f8412020001010201030104010501060107000800090600000a0600000b0600000c0600000d0600000e0600000f06000010060000110800001206000613070004170701000007180700033504010601023f06000014000100001502010000160001000019030100001a040100001b050100001c060100001d070100001e040100001f0801000540080a0003410b0101060142081901060443011b01000b090b0c0b0d0b0f0b110b130b140b160b180c0d0c0c0c090c140c180c0f0c110c160c130d1a04060c080a080a080a0004060c080a030306060c080a080a0a080a0a0b0b01080c0a080c05060c080a080a080a080a05060c080a080a030302060c0109060c080a080a03030503030501060c010800010502070b0d01090009000108010108020205080301080302050804010804020508050108050108060205080701080702050809010809010b0d01090001080e010b0b01090005746f6b656e11746f6b656e5f6576656e745f73746f7265076163636f756e7403616e79056576656e74066f7074696f6e067369676e657206737472696e670c70726f70657274795f6d617020436f6c6c656374696f6e4465736372697074696f6e4d75746174654576656e741b436f6c6c656374696f6e4d617869756d4d75746174654576656e7418436f6c6c656374696f6e5572694d75746174654576656e741a44656661756c7450726f70657274794d75746174654576656e74164465736372697074696f6e4d75746174654576656e74114d617869756d4d75746174654576656e74124f7074496e5472616e736665724576656e7412526f79616c74794d75746174654576656e7411546f6b656e4576656e7453746f72655631105572694d75746174696f6e4576656e7406537472696e6728656d69745f636f6c6c656374696f6e5f6465736372697074696f6e5f6d75746174655f6576656e7424656d69745f636f6c6c656374696f6e5f6d6178696d756d5f6d75746174655f6576656e7420656d69745f636f6c6c656374696f6e5f7572695f6d75746174655f6576656e74064f7074696f6e0d50726f706572747956616c756522656d69745f64656661756c745f70726f70657274795f6d75746174655f6576656e7422656d69745f746f6b656e5f64657363726974696f6e5f6d75746174655f6576656e741f656d69745f746f6b656e5f6d6178696d756d5f6d75746174655f6576656e7417656d69745f746f6b656e5f6f70745f696e5f6576656e741f656d69745f746f6b656e5f726f79616c74795f6d75746174655f6576656e741b656d69745f746f6b656e5f7572695f6d75746174655f6576656e741c696e697469616c697a655f746f6b656e5f6576656e745f73746f72650c63726561746f725f616464720f636f6c6c656374696f6e5f6e616d650f6f6c645f6465736372697074696f6e0f6e65775f6465736372697074696f6e0b6f6c645f6d6178696d756d0b6e65775f6d6178696d756d076f6c645f757269076e65775f7572690763726561746f720a636f6c6c656374696f6e046b6579730a6f6c645f76616c7565730a6e65775f76616c756573066f70745f696e156f6c645f726f79616c74795f6e756d657261746f72176f6c645f726f79616c74795f64656e6f6d696e61746f72166f6c645f726f79616c74795f70617965655f61646472156e65775f726f79616c74795f6e756d657261746f72176e65775f726f79616c74795f64656e6f6d696e61746f72166e65775f726f79616c74795f70617965655f616464721c636f6c6c656374696f6e5f7572695f6d75746174655f6576656e74730b4576656e7448616e646c6520636f6c6c656374696f6e5f6d6178696d756d5f6d75746174655f6576656e747324636f6c6c656374696f6e5f6465736372697074696f6e5f6d75746174655f6576656e74730d6f70745f696e5f6576656e7473117572695f6d75746174655f6576656e74731e64656661756c745f70726f70657274795f6d75746174655f6576656e7473196465736372697074696f6e5f6d75746174655f6576656e747315726f79616c74795f6d75746174655f6576656e7473156d6178696d756d5f6d75746174655f6576656e747309657874656e73696f6e03416e790a616464726573735f6f660a656d69745f6576656e74106e65775f6576656e745f68616e646c65046e6f6e6500000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000001000204200521080a22080a23080a010204200521080a24032503020204200521080a26080a27080a030206280529080a00080a2a0a080a2b0a0b0b01080c2c0a080c040205280529080a00080a22080a23080a050205280529080a00080a240325030602012d01070209280529080a00080a2e032f03300531033203330508020a340b0d010802360b0d010801370b0d010800380b0d010806390b0d0108093a0b0d0108033b0b0d0108043c0b0d0108073d0b0d0108053e0b0b01080e090205280529080a00080a26080a27080a000300010809100a00110a0b010b020b0312000c040a0011090b00110a2a080f000b0438000201030001080c100a00110a0b010b020b0312010c040a0011090b00110a2a080f010b0438010202030001080d100a00110a0b010b020b0312020c040a0011090b00110a2a080f020b0438020203030001080e130a00110a0c060a060b010b020b030b040b0512030c070b0011090b062a080f030b07380302040300010810120a00110a0c050a050b010b020b030b0412040c060b0011090b052a080f040b06380402050300010812120a00110a0c050a050b010b020b030b0412050c060b0011090b052a080f050b063805020603000108140c0b0112060c020a0011090b00110a2a080f060b02380602070300010815160a00110a0c090a090b010b020b030b040b050b060b070b0812070c0a0b0011090b092a080f070b0a380702080300010817120a00110a0c050a050b010b020b030b0412090c060b0011090b052a080f080b0638080209000000011f0a00110a290820041c0a000a0038090a00380a0a00380b0a00380c0a00380d0a00380e0a00380f0a0038100b003811381212082d08051e0b000102080208010800080508060808080308070804000000","abi":{"address":"0x3","name":"token_event_store","friends":["0x3::token"],"exposed_functions":[{"name":"emit_collection_description_mutate_event","visibility":"friend","is_entry":false,"generic_type_params":[],"params":["&signer","0x1::string::String","0x1::string::String","0x1::string::String"],"return":[]},{"name":"emit_collection_maximum_mutate_event","visibility":"friend","is_entry":false,"generic_type_params":[],"params":["&signer","0x1::string::String","u64","u64"],"return":[]},{"name":"emit_collection_uri_mutate_event","visibility":"friend","is_entry":false,"generic_type_params":[],"params":["&signer","0x1::string::String","0x1::string::String","0x1::string::String"],"return":[]},{"name":"emit_default_property_mutate_event","visibility":"friend","is_entry":false,"generic_type_params":[],"params":["&signer","0x1::string::String","0x1::string::String","vector<0x1::string::String>","vector<0x1::option::Option<0x3::property_map::PropertyValue>>","vector<0x3::property_map::PropertyValue>"],"return":[]},{"name":"emit_token_descrition_mutate_event","visibility":"friend","is_entry":false,"generic_type_params":[],"params":["&signer","0x1::string::String","0x1::string::String","0x1::string::String","0x1::string::String"],"return":[]},{"name":"emit_token_maximum_mutate_event","visibility":"friend","is_entry":false,"generic_type_params":[],"params":["&signer","0x1::string::String","0x1::string::String","u64","u64"],"return":[]},{"name":"emit_token_opt_in_event","visibility":"friend","is_entry":false,"generic_type_params":[],"params":["&signer","bool"],"return":[]},{"name":"emit_token_royalty_mutate_event","visibility":"friend","is_entry":false,"generic_type_params":[],"params":["&signer","0x1::string::String","0x1::string::String","u64","u64","address","u64","u64","address"],"return":[]},{"name":"emit_token_uri_mutate_event","visibility":"friend","is_entry":false,"generic_type_params":[],"params":["&signer","0x1::string::String","0x1::string::String","0x1::string::String","0x1::string::String"],"return":[]}],"structs":[{"name":"CollectionDescriptionMutateEvent","is_native":false,"abilities":["drop","store"],"generic_type_params":[],"fields":[{"name":"creator_addr","type":"address"},{"name":"collection_name","type":"0x1::string::String"},{"name":"old_description","type":"0x1::string::String"},{"name":"new_description","type":"0x1::string::String"}]},{"name":"CollectionMaxiumMutateEvent","is_native":false,"abilities":["drop","store"],"generic_type_params":[],"fields":[{"name":"creator_addr","type":"address"},{"name":"collection_name","type":"0x1::string::String"},{"name":"old_maximum","type":"u64"},{"name":"new_maximum","type":"u64"}]},{"name":"CollectionUriMutateEvent","is_native":false,"abilities":["drop","store"],"generic_type_params":[],"fields":[{"name":"creator_addr","type":"address"},{"name":"collection_name","type":"0x1::string::String"},{"name":"old_uri","type":"0x1::string::String"},{"name":"new_uri","type":"0x1::string::String"}]},{"name":"DefaultPropertyMutateEvent","is_native":false,"abilities":["drop","store"],"generic_type_params":[],"fields":[{"name":"creator","type":"address"},{"name":"collection","type":"0x1::string::String"},{"name":"token","type":"0x1::string::String"},{"name":"keys","type":"vector<0x1::string::String>"},{"name":"old_values","type":"vector<0x1::option::Option<0x3::property_map::PropertyValue>>"},{"name":"new_values","type":"vector<0x3::property_map::PropertyValue>"}]},{"name":"DescriptionMutateEvent","is_native":false,"abilities":["drop","store"],"generic_type_params":[],"fields":[{"name":"creator","type":"address"},{"name":"collection","type":"0x1::string::String"},{"name":"token","type":"0x1::string::String"},{"name":"old_description","type":"0x1::string::String"},{"name":"new_description","type":"0x1::string::String"}]},{"name":"MaxiumMutateEvent","is_native":false,"abilities":["drop","store"],"generic_type_params":[],"fields":[{"name":"creator","type":"address"},{"name":"collection","type":"0x1::string::String"},{"name":"token","type":"0x1::string::String"},{"name":"old_maximum","type":"u64"},{"name":"new_maximum","type":"u64"}]},{"name":"OptInTransferEvent","is_native":false,"abilities":["drop","store"],"generic_type_params":[],"fields":[{"name":"opt_in","type":"bool"}]},{"name":"RoyaltyMutateEvent","is_native":false,"abilities":["drop","store"],"generic_type_params":[],"fields":[{"name":"creator","type":"address"},{"name":"collection","type":"0x1::string::String"},{"name":"token","type":"0x1::string::String"},{"name":"old_royalty_numerator","type":"u64"},{"name":"old_royalty_denominator","type":"u64"},{"name":"old_royalty_payee_addr","type":"address"},{"name":"new_royalty_numerator","type":"u64"},{"name":"new_royalty_denominator","type":"u64"},{"name":"new_royalty_payee_addr","type":"address"}]},{"name":"TokenEventStoreV1","is_native":false,"abilities":["key"],"generic_type_params":[],"fields":[{"name":"collection_uri_mutate_events","type":"0x1::event::EventHandle<0x3::token_event_store::CollectionUriMutateEvent>"},{"name":"collection_maximum_mutate_events","type":"0x1::event::EventHandle<0x3::token_event_store::CollectionMaxiumMutateEvent>"},{"name":"collection_description_mutate_events","type":"0x1::event::EventHandle<0x3::token_event_store::CollectionDescriptionMutateEvent>"},{"name":"opt_in_events","type":"0x1::event::EventHandle<0x3::token_event_store::OptInTransferEvent>"},{"name":"uri_mutate_events","type":"0x1::event::EventHandle<0x3::token_event_store::UriMutationEvent>"},{"name":"default_property_mutate_events","type":"0x1::event::EventHandle<0x3::token_event_store::DefaultPropertyMutateEvent>"},{"name":"description_mutate_events","type":"0x1::event::EventHandle<0x3::token_event_store::DescriptionMutateEvent>"},{"name":"royalty_mutate_events","type":"0x1::event::EventHandle<0x3::token_event_store::RoyaltyMutateEvent>"},{"name":"maximum_mutate_events","type":"0x1::event::EventHandle<0x3::token_event_store::MaxiumMutateEvent>"},{"name":"extension","type":"0x1::option::Option<0x1::any::Any>"}]},{"name":"UriMutationEvent","is_native":false,"abilities":["drop","store"],"generic_type_params":[],"fields":[{"name":"creator","type":"address"},{"name":"collection","type":"0x1::string::String"},{"name":"token","type":"0x1::string::String"},{"name":"old_uri","type":"0x1::string::String"},{"name":"new_uri","type":"0x1::string::String"}]}]}}]'
913
+ );
914
+
915
+ export function loadAllTypes(coder: MoveCoder) {
916
+ _0x1.loadAllTypes(coder);
917
+ for (const m of Object.values(MODULES)) {
918
+ coder.load(m as any);
919
+ }
920
+ }
921
+
922
+ loadAllTypes(defaultMoveCoder());