@thalalabs/surf 0.0.5 → 0.0.7

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 (85) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/README.md +4 -6
  3. package/build/cjs/abi/aptos_coin.js +158 -0
  4. package/build/cjs/abi/aptos_coin.js.map +1 -0
  5. package/build/cjs/abi/coin.js +783 -0
  6. package/build/cjs/abi/coin.js.map +1 -0
  7. package/build/cjs/abi/event.js +138 -0
  8. package/build/cjs/abi/event.js.map +1 -0
  9. package/build/cjs/abi/fixed_point64.js +380 -0
  10. package/build/cjs/abi/fixed_point64.js.map +1 -0
  11. package/build/cjs/abi/guid.js +158 -0
  12. package/build/cjs/abi/guid.js.map +1 -0
  13. package/build/cjs/abi/table.js +299 -0
  14. package/build/cjs/abi/table.js.map +1 -0
  15. package/build/cjs/core/Client.js +12 -1
  16. package/build/cjs/core/Client.js.map +1 -1
  17. package/build/cjs/core/createEntryPayload.js.map +1 -1
  18. package/build/cjs/core/createViewPayload.js.map +1 -1
  19. package/build/cjs/hooks/useSubmitTransaction.js.map +1 -1
  20. package/build/cjs/types/globalABI.js +3 -0
  21. package/build/cjs/types/globalABI.js.map +1 -0
  22. package/build/cjs/types/struct.js +3 -0
  23. package/build/cjs/types/struct.js.map +1 -0
  24. package/build/esm/abi/aptos_coin.js +155 -0
  25. package/build/esm/abi/aptos_coin.js.map +1 -0
  26. package/build/esm/abi/coin.js +780 -0
  27. package/build/esm/abi/coin.js.map +1 -0
  28. package/build/esm/abi/event.js +135 -0
  29. package/build/esm/abi/event.js.map +1 -0
  30. package/build/esm/abi/fixed_point64.js +377 -0
  31. package/build/esm/abi/fixed_point64.js.map +1 -0
  32. package/build/esm/abi/guid.js +155 -0
  33. package/build/esm/abi/guid.js.map +1 -0
  34. package/build/esm/abi/table.js +296 -0
  35. package/build/esm/abi/table.js.map +1 -0
  36. package/build/esm/core/Client.js +12 -1
  37. package/build/esm/core/Client.js.map +1 -1
  38. package/build/esm/core/createEntryPayload.js.map +1 -1
  39. package/build/esm/core/createViewPayload.js.map +1 -1
  40. package/build/esm/hooks/useSubmitTransaction.js.map +1 -1
  41. package/build/esm/types/globalABI.js +2 -0
  42. package/build/esm/types/globalABI.js.map +1 -0
  43. package/build/esm/types/struct.js +2 -0
  44. package/build/esm/types/struct.js.map +1 -0
  45. package/build/types/abi/aptos_coin.d.ts +100 -0
  46. package/build/types/abi/aptos_coin.d.ts.map +1 -0
  47. package/build/types/abi/coin.d.ts +476 -0
  48. package/build/types/abi/coin.d.ts.map +1 -0
  49. package/build/types/abi/event.d.ts +72 -0
  50. package/build/types/abi/event.d.ts.map +1 -0
  51. package/build/types/abi/fixed_point64.d.ts +225 -0
  52. package/build/types/abi/fixed_point64.d.ts.map +1 -0
  53. package/build/types/abi/guid.d.ts +93 -0
  54. package/build/types/abi/guid.d.ts.map +1 -0
  55. package/build/types/abi/table.d.ts +152 -0
  56. package/build/types/abi/table.d.ts.map +1 -0
  57. package/build/types/core/Client.d.ts +2 -0
  58. package/build/types/core/Client.d.ts.map +1 -1
  59. package/build/types/hooks/useSubmitTransaction.d.ts.map +1 -1
  60. package/build/types/types/abiClient.d.ts +10 -0
  61. package/build/types/types/abiClient.d.ts.map +1 -1
  62. package/build/types/types/common.d.ts.map +1 -1
  63. package/build/types/types/globalABI.d.ts +13 -0
  64. package/build/types/types/globalABI.d.ts.map +1 -0
  65. package/build/types/types/struct.d.ts +25 -0
  66. package/build/types/types/struct.d.ts.map +1 -0
  67. package/package.json +1 -1
  68. package/src/abi/aptos_coin.ts +154 -0
  69. package/src/abi/coin.ts +779 -0
  70. package/src/abi/event.ts +134 -0
  71. package/src/abi/fixed_point64.ts +376 -0
  72. package/src/abi/guid.ts +154 -0
  73. package/src/abi/table.ts +295 -0
  74. package/src/core/Client.ts +19 -2
  75. package/src/core/__tests__/accountResource.test.ts +39 -0
  76. package/src/core/__tests__/createEntryPayload.test.ts +1 -1
  77. package/src/core/__tests__/view.test.ts +1 -1
  78. package/src/core/__tests__/view_vector.test.ts +1 -1
  79. package/src/core/createEntryPayload.ts +0 -2
  80. package/src/core/createViewPayload.ts +4 -7
  81. package/src/hooks/useSubmitTransaction.ts +1 -0
  82. package/src/types/abiClient.ts +12 -1
  83. package/src/types/common.ts +2 -1
  84. package/src/types/globalABI.ts +13 -0
  85. package/src/types/struct.ts +78 -0
@@ -0,0 +1,780 @@
1
+ export const COIN_ABI = {
2
+ "address": "0x1",
3
+ "name": "coin",
4
+ "friends": [
5
+ "0x1::aptos_coin",
6
+ "0x1::genesis",
7
+ "0x1::transaction_fee"
8
+ ],
9
+ "exposed_functions": [
10
+ {
11
+ "name": "allow_supply_upgrades",
12
+ "visibility": "public",
13
+ "is_entry": false,
14
+ "is_view": false,
15
+ "generic_type_params": [],
16
+ "params": [
17
+ "&signer",
18
+ "bool"
19
+ ],
20
+ "return": []
21
+ },
22
+ {
23
+ "name": "balance",
24
+ "visibility": "public",
25
+ "is_entry": false,
26
+ "is_view": true,
27
+ "generic_type_params": [
28
+ {
29
+ "constraints": []
30
+ }
31
+ ],
32
+ "params": [
33
+ "address"
34
+ ],
35
+ "return": [
36
+ "u64"
37
+ ]
38
+ },
39
+ {
40
+ "name": "burn",
41
+ "visibility": "public",
42
+ "is_entry": false,
43
+ "is_view": false,
44
+ "generic_type_params": [
45
+ {
46
+ "constraints": []
47
+ }
48
+ ],
49
+ "params": [
50
+ "0x1::coin::Coin<T0>",
51
+ "&0x1::coin::BurnCapability<T0>"
52
+ ],
53
+ "return": []
54
+ },
55
+ {
56
+ "name": "burn_from",
57
+ "visibility": "public",
58
+ "is_entry": false,
59
+ "is_view": false,
60
+ "generic_type_params": [
61
+ {
62
+ "constraints": []
63
+ }
64
+ ],
65
+ "params": [
66
+ "address",
67
+ "u64",
68
+ "&0x1::coin::BurnCapability<T0>"
69
+ ],
70
+ "return": []
71
+ },
72
+ {
73
+ "name": "collect_into_aggregatable_coin",
74
+ "visibility": "friend",
75
+ "is_entry": false,
76
+ "is_view": false,
77
+ "generic_type_params": [
78
+ {
79
+ "constraints": []
80
+ }
81
+ ],
82
+ "params": [
83
+ "address",
84
+ "u64",
85
+ "&mut 0x1::coin::AggregatableCoin<T0>"
86
+ ],
87
+ "return": []
88
+ },
89
+ {
90
+ "name": "decimals",
91
+ "visibility": "public",
92
+ "is_entry": false,
93
+ "is_view": true,
94
+ "generic_type_params": [
95
+ {
96
+ "constraints": []
97
+ }
98
+ ],
99
+ "params": [],
100
+ "return": [
101
+ "u8"
102
+ ]
103
+ },
104
+ {
105
+ "name": "deposit",
106
+ "visibility": "public",
107
+ "is_entry": false,
108
+ "is_view": false,
109
+ "generic_type_params": [
110
+ {
111
+ "constraints": []
112
+ }
113
+ ],
114
+ "params": [
115
+ "address",
116
+ "0x1::coin::Coin<T0>"
117
+ ],
118
+ "return": []
119
+ },
120
+ {
121
+ "name": "destroy_burn_cap",
122
+ "visibility": "public",
123
+ "is_entry": false,
124
+ "is_view": false,
125
+ "generic_type_params": [
126
+ {
127
+ "constraints": []
128
+ }
129
+ ],
130
+ "params": [
131
+ "0x1::coin::BurnCapability<T0>"
132
+ ],
133
+ "return": []
134
+ },
135
+ {
136
+ "name": "destroy_freeze_cap",
137
+ "visibility": "public",
138
+ "is_entry": false,
139
+ "is_view": false,
140
+ "generic_type_params": [
141
+ {
142
+ "constraints": []
143
+ }
144
+ ],
145
+ "params": [
146
+ "0x1::coin::FreezeCapability<T0>"
147
+ ],
148
+ "return": []
149
+ },
150
+ {
151
+ "name": "destroy_mint_cap",
152
+ "visibility": "public",
153
+ "is_entry": false,
154
+ "is_view": false,
155
+ "generic_type_params": [
156
+ {
157
+ "constraints": []
158
+ }
159
+ ],
160
+ "params": [
161
+ "0x1::coin::MintCapability<T0>"
162
+ ],
163
+ "return": []
164
+ },
165
+ {
166
+ "name": "destroy_zero",
167
+ "visibility": "public",
168
+ "is_entry": false,
169
+ "is_view": false,
170
+ "generic_type_params": [
171
+ {
172
+ "constraints": []
173
+ }
174
+ ],
175
+ "params": [
176
+ "0x1::coin::Coin<T0>"
177
+ ],
178
+ "return": []
179
+ },
180
+ {
181
+ "name": "drain_aggregatable_coin",
182
+ "visibility": "friend",
183
+ "is_entry": false,
184
+ "is_view": false,
185
+ "generic_type_params": [
186
+ {
187
+ "constraints": []
188
+ }
189
+ ],
190
+ "params": [
191
+ "&mut 0x1::coin::AggregatableCoin<T0>"
192
+ ],
193
+ "return": [
194
+ "0x1::coin::Coin<T0>"
195
+ ]
196
+ },
197
+ {
198
+ "name": "extract",
199
+ "visibility": "public",
200
+ "is_entry": false,
201
+ "is_view": false,
202
+ "generic_type_params": [
203
+ {
204
+ "constraints": []
205
+ }
206
+ ],
207
+ "params": [
208
+ "&mut 0x1::coin::Coin<T0>",
209
+ "u64"
210
+ ],
211
+ "return": [
212
+ "0x1::coin::Coin<T0>"
213
+ ]
214
+ },
215
+ {
216
+ "name": "extract_all",
217
+ "visibility": "public",
218
+ "is_entry": false,
219
+ "is_view": false,
220
+ "generic_type_params": [
221
+ {
222
+ "constraints": []
223
+ }
224
+ ],
225
+ "params": [
226
+ "&mut 0x1::coin::Coin<T0>"
227
+ ],
228
+ "return": [
229
+ "0x1::coin::Coin<T0>"
230
+ ]
231
+ },
232
+ {
233
+ "name": "freeze_coin_store",
234
+ "visibility": "public",
235
+ "is_entry": true,
236
+ "is_view": false,
237
+ "generic_type_params": [
238
+ {
239
+ "constraints": []
240
+ }
241
+ ],
242
+ "params": [
243
+ "address",
244
+ "&0x1::coin::FreezeCapability<T0>"
245
+ ],
246
+ "return": []
247
+ },
248
+ {
249
+ "name": "initialize",
250
+ "visibility": "public",
251
+ "is_entry": false,
252
+ "is_view": false,
253
+ "generic_type_params": [
254
+ {
255
+ "constraints": []
256
+ }
257
+ ],
258
+ "params": [
259
+ "&signer",
260
+ "0x1::string::String",
261
+ "0x1::string::String",
262
+ "u8",
263
+ "bool"
264
+ ],
265
+ "return": [
266
+ "0x1::coin::BurnCapability<T0>",
267
+ "0x1::coin::FreezeCapability<T0>",
268
+ "0x1::coin::MintCapability<T0>"
269
+ ]
270
+ },
271
+ {
272
+ "name": "initialize_aggregatable_coin",
273
+ "visibility": "friend",
274
+ "is_entry": false,
275
+ "is_view": false,
276
+ "generic_type_params": [
277
+ {
278
+ "constraints": []
279
+ }
280
+ ],
281
+ "params": [
282
+ "&signer"
283
+ ],
284
+ "return": [
285
+ "0x1::coin::AggregatableCoin<T0>"
286
+ ]
287
+ },
288
+ {
289
+ "name": "initialize_supply_config",
290
+ "visibility": "friend",
291
+ "is_entry": false,
292
+ "is_view": false,
293
+ "generic_type_params": [],
294
+ "params": [
295
+ "&signer"
296
+ ],
297
+ "return": []
298
+ },
299
+ {
300
+ "name": "initialize_with_parallelizable_supply",
301
+ "visibility": "friend",
302
+ "is_entry": false,
303
+ "is_view": false,
304
+ "generic_type_params": [
305
+ {
306
+ "constraints": []
307
+ }
308
+ ],
309
+ "params": [
310
+ "&signer",
311
+ "0x1::string::String",
312
+ "0x1::string::String",
313
+ "u8",
314
+ "bool"
315
+ ],
316
+ "return": [
317
+ "0x1::coin::BurnCapability<T0>",
318
+ "0x1::coin::FreezeCapability<T0>",
319
+ "0x1::coin::MintCapability<T0>"
320
+ ]
321
+ },
322
+ {
323
+ "name": "is_account_registered",
324
+ "visibility": "public",
325
+ "is_entry": false,
326
+ "is_view": true,
327
+ "generic_type_params": [
328
+ {
329
+ "constraints": []
330
+ }
331
+ ],
332
+ "params": [
333
+ "address"
334
+ ],
335
+ "return": [
336
+ "bool"
337
+ ]
338
+ },
339
+ {
340
+ "name": "is_aggregatable_coin_zero",
341
+ "visibility": "friend",
342
+ "is_entry": false,
343
+ "is_view": false,
344
+ "generic_type_params": [
345
+ {
346
+ "constraints": []
347
+ }
348
+ ],
349
+ "params": [
350
+ "&0x1::coin::AggregatableCoin<T0>"
351
+ ],
352
+ "return": [
353
+ "bool"
354
+ ]
355
+ },
356
+ {
357
+ "name": "is_coin_initialized",
358
+ "visibility": "public",
359
+ "is_entry": false,
360
+ "is_view": true,
361
+ "generic_type_params": [
362
+ {
363
+ "constraints": []
364
+ }
365
+ ],
366
+ "params": [],
367
+ "return": [
368
+ "bool"
369
+ ]
370
+ },
371
+ {
372
+ "name": "merge",
373
+ "visibility": "public",
374
+ "is_entry": false,
375
+ "is_view": false,
376
+ "generic_type_params": [
377
+ {
378
+ "constraints": []
379
+ }
380
+ ],
381
+ "params": [
382
+ "&mut 0x1::coin::Coin<T0>",
383
+ "0x1::coin::Coin<T0>"
384
+ ],
385
+ "return": []
386
+ },
387
+ {
388
+ "name": "merge_aggregatable_coin",
389
+ "visibility": "friend",
390
+ "is_entry": false,
391
+ "is_view": false,
392
+ "generic_type_params": [
393
+ {
394
+ "constraints": []
395
+ }
396
+ ],
397
+ "params": [
398
+ "&mut 0x1::coin::AggregatableCoin<T0>",
399
+ "0x1::coin::Coin<T0>"
400
+ ],
401
+ "return": []
402
+ },
403
+ {
404
+ "name": "mint",
405
+ "visibility": "public",
406
+ "is_entry": false,
407
+ "is_view": false,
408
+ "generic_type_params": [
409
+ {
410
+ "constraints": []
411
+ }
412
+ ],
413
+ "params": [
414
+ "u64",
415
+ "&0x1::coin::MintCapability<T0>"
416
+ ],
417
+ "return": [
418
+ "0x1::coin::Coin<T0>"
419
+ ]
420
+ },
421
+ {
422
+ "name": "name",
423
+ "visibility": "public",
424
+ "is_entry": false,
425
+ "is_view": true,
426
+ "generic_type_params": [
427
+ {
428
+ "constraints": []
429
+ }
430
+ ],
431
+ "params": [],
432
+ "return": [
433
+ "0x1::string::String"
434
+ ]
435
+ },
436
+ {
437
+ "name": "register",
438
+ "visibility": "public",
439
+ "is_entry": false,
440
+ "is_view": false,
441
+ "generic_type_params": [
442
+ {
443
+ "constraints": []
444
+ }
445
+ ],
446
+ "params": [
447
+ "&signer"
448
+ ],
449
+ "return": []
450
+ },
451
+ {
452
+ "name": "supply",
453
+ "visibility": "public",
454
+ "is_entry": false,
455
+ "is_view": true,
456
+ "generic_type_params": [
457
+ {
458
+ "constraints": []
459
+ }
460
+ ],
461
+ "params": [],
462
+ "return": [
463
+ "0x1::option::Option<u128>"
464
+ ]
465
+ },
466
+ {
467
+ "name": "symbol",
468
+ "visibility": "public",
469
+ "is_entry": false,
470
+ "is_view": true,
471
+ "generic_type_params": [
472
+ {
473
+ "constraints": []
474
+ }
475
+ ],
476
+ "params": [],
477
+ "return": [
478
+ "0x1::string::String"
479
+ ]
480
+ },
481
+ {
482
+ "name": "transfer",
483
+ "visibility": "public",
484
+ "is_entry": true,
485
+ "is_view": false,
486
+ "generic_type_params": [
487
+ {
488
+ "constraints": []
489
+ }
490
+ ],
491
+ "params": [
492
+ "&signer",
493
+ "address",
494
+ "u64"
495
+ ],
496
+ "return": []
497
+ },
498
+ {
499
+ "name": "unfreeze_coin_store",
500
+ "visibility": "public",
501
+ "is_entry": true,
502
+ "is_view": false,
503
+ "generic_type_params": [
504
+ {
505
+ "constraints": []
506
+ }
507
+ ],
508
+ "params": [
509
+ "address",
510
+ "&0x1::coin::FreezeCapability<T0>"
511
+ ],
512
+ "return": []
513
+ },
514
+ {
515
+ "name": "upgrade_supply",
516
+ "visibility": "public",
517
+ "is_entry": true,
518
+ "is_view": false,
519
+ "generic_type_params": [
520
+ {
521
+ "constraints": []
522
+ }
523
+ ],
524
+ "params": [
525
+ "&signer"
526
+ ],
527
+ "return": []
528
+ },
529
+ {
530
+ "name": "value",
531
+ "visibility": "public",
532
+ "is_entry": false,
533
+ "is_view": false,
534
+ "generic_type_params": [
535
+ {
536
+ "constraints": []
537
+ }
538
+ ],
539
+ "params": [
540
+ "&0x1::coin::Coin<T0>"
541
+ ],
542
+ "return": [
543
+ "u64"
544
+ ]
545
+ },
546
+ {
547
+ "name": "withdraw",
548
+ "visibility": "public",
549
+ "is_entry": false,
550
+ "is_view": false,
551
+ "generic_type_params": [
552
+ {
553
+ "constraints": []
554
+ }
555
+ ],
556
+ "params": [
557
+ "&signer",
558
+ "u64"
559
+ ],
560
+ "return": [
561
+ "0x1::coin::Coin<T0>"
562
+ ]
563
+ },
564
+ {
565
+ "name": "zero",
566
+ "visibility": "public",
567
+ "is_entry": false,
568
+ "is_view": false,
569
+ "generic_type_params": [
570
+ {
571
+ "constraints": []
572
+ }
573
+ ],
574
+ "params": [],
575
+ "return": [
576
+ "0x1::coin::Coin<T0>"
577
+ ]
578
+ }
579
+ ],
580
+ "structs": [
581
+ {
582
+ "name": "AggregatableCoin",
583
+ "is_native": false,
584
+ "abilities": [
585
+ "store"
586
+ ],
587
+ "generic_type_params": [
588
+ {
589
+ "constraints": []
590
+ }
591
+ ],
592
+ "fields": [
593
+ {
594
+ "name": "value",
595
+ "type": "0x1::aggregator::Aggregator"
596
+ }
597
+ ]
598
+ },
599
+ {
600
+ "name": "BurnCapability",
601
+ "is_native": false,
602
+ "abilities": [
603
+ "copy",
604
+ "store"
605
+ ],
606
+ "generic_type_params": [
607
+ {
608
+ "constraints": []
609
+ }
610
+ ],
611
+ "fields": [
612
+ {
613
+ "name": "dummy_field",
614
+ "type": "bool"
615
+ }
616
+ ]
617
+ },
618
+ {
619
+ "name": "Coin",
620
+ "is_native": false,
621
+ "abilities": [
622
+ "store"
623
+ ],
624
+ "generic_type_params": [
625
+ {
626
+ "constraints": []
627
+ }
628
+ ],
629
+ "fields": [
630
+ {
631
+ "name": "value",
632
+ "type": "u64"
633
+ }
634
+ ]
635
+ },
636
+ {
637
+ "name": "CoinInfo",
638
+ "is_native": false,
639
+ "abilities": [
640
+ "key"
641
+ ],
642
+ "generic_type_params": [
643
+ {
644
+ "constraints": []
645
+ }
646
+ ],
647
+ "fields": [
648
+ {
649
+ "name": "name",
650
+ "type": "0x1::string::String"
651
+ },
652
+ {
653
+ "name": "symbol",
654
+ "type": "0x1::string::String"
655
+ },
656
+ {
657
+ "name": "decimals",
658
+ "type": "u8"
659
+ },
660
+ {
661
+ "name": "supply",
662
+ "type": "0x1::option::Option<0x1::optional_aggregator::OptionalAggregator>"
663
+ }
664
+ ]
665
+ },
666
+ {
667
+ "name": "CoinStore",
668
+ "is_native": false,
669
+ "abilities": [
670
+ "key"
671
+ ],
672
+ "generic_type_params": [
673
+ {
674
+ "constraints": []
675
+ }
676
+ ],
677
+ "fields": [
678
+ {
679
+ "name": "coin",
680
+ "type": "0x1::coin::Coin<T0>"
681
+ },
682
+ {
683
+ "name": "frozen",
684
+ "type": "bool"
685
+ },
686
+ {
687
+ "name": "deposit_events",
688
+ "type": "0x1::event::EventHandle<0x1::coin::DepositEvent>"
689
+ },
690
+ {
691
+ "name": "withdraw_events",
692
+ "type": "0x1::event::EventHandle<0x1::coin::WithdrawEvent>"
693
+ }
694
+ ]
695
+ },
696
+ {
697
+ "name": "DepositEvent",
698
+ "is_native": false,
699
+ "abilities": [
700
+ "drop",
701
+ "store"
702
+ ],
703
+ "generic_type_params": [],
704
+ "fields": [
705
+ {
706
+ "name": "amount",
707
+ "type": "u64"
708
+ }
709
+ ]
710
+ },
711
+ {
712
+ "name": "FreezeCapability",
713
+ "is_native": false,
714
+ "abilities": [
715
+ "copy",
716
+ "store"
717
+ ],
718
+ "generic_type_params": [
719
+ {
720
+ "constraints": []
721
+ }
722
+ ],
723
+ "fields": [
724
+ {
725
+ "name": "dummy_field",
726
+ "type": "bool"
727
+ }
728
+ ]
729
+ },
730
+ {
731
+ "name": "MintCapability",
732
+ "is_native": false,
733
+ "abilities": [
734
+ "copy",
735
+ "store"
736
+ ],
737
+ "generic_type_params": [
738
+ {
739
+ "constraints": []
740
+ }
741
+ ],
742
+ "fields": [
743
+ {
744
+ "name": "dummy_field",
745
+ "type": "bool"
746
+ }
747
+ ]
748
+ },
749
+ {
750
+ "name": "SupplyConfig",
751
+ "is_native": false,
752
+ "abilities": [
753
+ "key"
754
+ ],
755
+ "generic_type_params": [],
756
+ "fields": [
757
+ {
758
+ "name": "allow_upgrades",
759
+ "type": "bool"
760
+ }
761
+ ]
762
+ },
763
+ {
764
+ "name": "WithdrawEvent",
765
+ "is_native": false,
766
+ "abilities": [
767
+ "drop",
768
+ "store"
769
+ ],
770
+ "generic_type_params": [],
771
+ "fields": [
772
+ {
773
+ "name": "amount",
774
+ "type": "u64"
775
+ }
776
+ ]
777
+ }
778
+ ]
779
+ };
780
+ //# sourceMappingURL=coin.js.map