@sentio/sdk 3.4.0-rc.1 → 3.4.0

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 (76) hide show
  1. package/lib/aptos/builtin/0x1.d.ts +111 -0
  2. package/lib/aptos/builtin/0x1.d.ts.map +1 -1
  3. package/lib/aptos/builtin/0x1.js +131 -1
  4. package/lib/aptos/builtin/0x1.js.map +1 -1
  5. package/lib/aptos/builtin/0x3.js +1 -1
  6. package/lib/aptos/builtin/0x3.js.map +1 -1
  7. package/lib/aptos/builtin/0x4.js +1 -1
  8. package/lib/aptos/builtin/0x4.js.map +1 -1
  9. package/lib/iota/builtin/0x2.d.ts +573 -0
  10. package/lib/iota/builtin/0x2.d.ts.map +1 -1
  11. package/lib/iota/builtin/0x2.js +3905 -1823
  12. package/lib/iota/builtin/0x2.js.map +1 -1
  13. package/lib/iota/builtin/0x3.d.ts +46 -7
  14. package/lib/iota/builtin/0x3.d.ts.map +1 -1
  15. package/lib/iota/builtin/0x3.js +16 -7
  16. package/lib/iota/builtin/0x3.js.map +1 -1
  17. package/lib/sui/builtin/0x1.d.ts +354 -197
  18. package/lib/sui/builtin/0x1.d.ts.map +1 -1
  19. package/lib/sui/builtin/0x1.js +1599 -67
  20. package/lib/sui/builtin/0x1.js.map +1 -1
  21. package/lib/sui/builtin/0x2.d.ts +1130 -623
  22. package/lib/sui/builtin/0x2.d.ts.map +1 -1
  23. package/lib/sui/builtin/0x2.js +2105 -79
  24. package/lib/sui/builtin/0x2.js.map +1 -1
  25. package/lib/sui/builtin/0x3.d.ts +305 -269
  26. package/lib/sui/builtin/0x3.d.ts.map +1 -1
  27. package/lib/sui/builtin/0x3.js +92 -1
  28. package/lib/sui/builtin/0x3.js.map +1 -1
  29. package/lib/sui/context.d.ts +4 -4
  30. package/lib/sui/context.d.ts.map +1 -1
  31. package/lib/sui/ext/move-dex.d.ts +1 -1
  32. package/lib/sui/ext/move-dex.d.ts.map +1 -1
  33. package/lib/sui/models.d.ts +1 -1
  34. package/lib/sui/models.d.ts.map +1 -1
  35. package/lib/sui/network.d.ts +2 -2
  36. package/lib/sui/network.d.ts.map +1 -1
  37. package/lib/sui/network.js +13 -2
  38. package/lib/sui/network.js.map +1 -1
  39. package/lib/sui/sui-object-processor-template.d.ts +1 -1
  40. package/lib/sui/sui-object-processor-template.d.ts.map +1 -1
  41. package/lib/sui/sui-object-processor.d.ts +1 -1
  42. package/lib/sui/sui-object-processor.d.ts.map +1 -1
  43. package/lib/sui/sui-processor.d.ts +1 -1
  44. package/lib/sui/sui-processor.d.ts.map +1 -1
  45. package/lib/sui/utils.d.ts +1 -1
  46. package/lib/sui/utils.d.ts.map +1 -1
  47. package/lib/testing/sui-facet.d.ts +1 -1
  48. package/lib/testing/sui-facet.d.ts.map +1 -1
  49. package/package.json +11 -11
  50. package/src/aptos/abis/0x1.json +1694 -323
  51. package/src/aptos/abis/0x3.json +75 -5
  52. package/src/aptos/abis/0x4.json +48 -20
  53. package/src/aptos/builtin/0x1.ts +233 -1
  54. package/src/aptos/builtin/0x3.ts +1 -1
  55. package/src/aptos/builtin/0x4.ts +1 -1
  56. package/src/iota/abis/0x2.json +8847 -5376
  57. package/src/iota/abis/0x3.json +25 -2
  58. package/src/iota/builtin/0x2.ts +4722 -1344
  59. package/src/iota/builtin/0x3.ts +60 -11
  60. package/src/sui/abis/0x1.json +1643 -220
  61. package/src/sui/abis/0x2.json +3768 -372
  62. package/src/sui/abis/0x3.json +114 -0
  63. package/src/sui/builtin/0x1.ts +2448 -333
  64. package/src/sui/builtin/0x2.ts +4356 -1214
  65. package/src/sui/builtin/0x3.ts +449 -270
  66. package/src/sui/codegen/codegen.ts +1 -1
  67. package/src/sui/context.ts +5 -5
  68. package/src/sui/ext/coin.ts +1 -1
  69. package/src/sui/ext/move-dex.ts +1 -1
  70. package/src/sui/models.ts +1 -1
  71. package/src/sui/network.ts +11 -3
  72. package/src/sui/sui-object-processor-template.ts +1 -1
  73. package/src/sui/sui-object-processor.ts +1 -1
  74. package/src/sui/sui-processor.ts +1 -1
  75. package/src/sui/utils.ts +1 -1
  76. package/src/testing/sui-facet.ts +1 -1
@@ -15,6 +15,14 @@
15
15
  {
16
16
  "address": "0x2",
17
17
  "name": "balance"
18
+ },
19
+ {
20
+ "address": "0x2",
21
+ "name": "event"
22
+ },
23
+ {
24
+ "address": "0x2",
25
+ "name": "funds_accumulator"
18
26
  }
19
27
  ],
20
28
  "structs": {
@@ -119,6 +127,56 @@
119
127
  }
120
128
  ]
121
129
  },
130
+ "accumulator_u128_exists": {
131
+ "visibility": "Friend",
132
+ "isEntry": false,
133
+ "typeParameters": [
134
+ {
135
+ "abilities": []
136
+ }
137
+ ],
138
+ "parameters": [
139
+ {
140
+ "Reference": {
141
+ "Struct": {
142
+ "address": "0x2",
143
+ "module": "accumulator",
144
+ "name": "AccumulatorRoot",
145
+ "typeArguments": []
146
+ }
147
+ }
148
+ },
149
+ "Address"
150
+ ],
151
+ "return": [
152
+ "Bool"
153
+ ]
154
+ },
155
+ "accumulator_u128_read": {
156
+ "visibility": "Friend",
157
+ "isEntry": false,
158
+ "typeParameters": [
159
+ {
160
+ "abilities": []
161
+ }
162
+ ],
163
+ "parameters": [
164
+ {
165
+ "Reference": {
166
+ "Struct": {
167
+ "address": "0x2",
168
+ "module": "accumulator",
169
+ "name": "AccumulatorRoot",
170
+ "typeArguments": []
171
+ }
172
+ }
173
+ },
174
+ "Address"
175
+ ],
176
+ "return": [
177
+ "U128"
178
+ ]
179
+ },
122
180
  "create_u128": {
123
181
  "visibility": "Friend",
124
182
  "isEntry": false,
@@ -245,6 +303,51 @@
245
303
  ],
246
304
  "return": []
247
305
  },
306
+ "root_borrow_accumulator": {
307
+ "visibility": "Friend",
308
+ "isEntry": false,
309
+ "typeParameters": [
310
+ {
311
+ "abilities": []
312
+ },
313
+ {
314
+ "abilities": [
315
+ "Store"
316
+ ]
317
+ }
318
+ ],
319
+ "parameters": [
320
+ {
321
+ "Reference": {
322
+ "Struct": {
323
+ "address": "0x2",
324
+ "module": "accumulator",
325
+ "name": "AccumulatorRoot",
326
+ "typeArguments": []
327
+ }
328
+ }
329
+ },
330
+ {
331
+ "Struct": {
332
+ "address": "0x2",
333
+ "module": "accumulator",
334
+ "name": "Key",
335
+ "typeArguments": [
336
+ {
337
+ "TypeParameter": 0
338
+ }
339
+ ]
340
+ }
341
+ }
342
+ ],
343
+ "return": [
344
+ {
345
+ "Reference": {
346
+ "TypeParameter": 1
347
+ }
348
+ }
349
+ ]
350
+ },
248
351
  "root_borrow_accumulator_mut": {
249
352
  "visibility": "Friend",
250
353
  "isEntry": false,
@@ -458,13 +561,24 @@
458
561
  "fileFormatVersion": 6,
459
562
  "address": "0x2",
460
563
  "name": "accumulator_metadata",
461
- "friends": [
462
- {
463
- "address": "0x2",
464
- "name": "accumulator_settlement"
465
- }
466
- ],
564
+ "friends": [],
467
565
  "structs": {
566
+ "AccumulatorObjectCountKey": {
567
+ "abilities": {
568
+ "abilities": [
569
+ "Copy",
570
+ "Drop",
571
+ "Store"
572
+ ]
573
+ },
574
+ "typeParameters": [],
575
+ "fields": [
576
+ {
577
+ "name": "dummy_field",
578
+ "type": "Bool"
579
+ }
580
+ ]
581
+ },
468
582
  "Metadata": {
469
583
  "abilities": {
470
584
  "abilities": [
@@ -558,71 +672,39 @@
558
672
  ]
559
673
  }
560
674
  },
561
- "exposedFunctions": {
562
- "create_accumulator_metadata": {
563
- "visibility": "Friend",
564
- "isEntry": false,
565
- "typeParameters": [
566
- {
567
- "abilities": []
568
- }
569
- ],
570
- "parameters": [
675
+ "exposedFunctions": {}
676
+ },
677
+ "accumulator_settlement": {
678
+ "fileFormatVersion": 6,
679
+ "address": "0x2",
680
+ "name": "accumulator_settlement",
681
+ "friends": [],
682
+ "structs": {
683
+ "EventStreamHead": {
684
+ "abilities": {
685
+ "abilities": [
686
+ "Store"
687
+ ]
688
+ },
689
+ "typeParameters": [],
690
+ "fields": [
571
691
  {
572
- "MutableReference": {
573
- "Struct": {
574
- "address": "0x2",
575
- "module": "accumulator",
576
- "name": "AccumulatorRoot",
577
- "typeArguments": []
578
- }
692
+ "name": "mmr",
693
+ "type": {
694
+ "Vector": "U256"
579
695
  }
580
696
  },
581
- "Address",
582
697
  {
583
- "MutableReference": {
584
- "Struct": {
585
- "address": "0x2",
586
- "module": "tx_context",
587
- "name": "TxContext",
588
- "typeArguments": []
589
- }
590
- }
591
- }
592
- ],
593
- "return": []
594
- },
595
- "remove_accumulator_metadata": {
596
- "visibility": "Friend",
597
- "isEntry": false,
598
- "typeParameters": [
698
+ "name": "checkpoint_seq",
699
+ "type": "U64"
700
+ },
599
701
  {
600
- "abilities": []
702
+ "name": "num_events",
703
+ "type": "U64"
601
704
  }
602
- ],
603
- "parameters": [
604
- {
605
- "MutableReference": {
606
- "Struct": {
607
- "address": "0x2",
608
- "module": "accumulator",
609
- "name": "AccumulatorRoot",
610
- "typeArguments": []
611
- }
612
- }
613
- },
614
- "Address"
615
- ],
616
- "return": []
705
+ ]
617
706
  }
618
- }
619
- },
620
- "accumulator_settlement": {
621
- "fileFormatVersion": 6,
622
- "address": "0x2",
623
- "name": "accumulator_settlement",
624
- "friends": [],
625
- "structs": {},
707
+ },
626
708
  "exposedFunctions": {}
627
709
  },
628
710
  "address": {
@@ -751,51 +833,38 @@
751
833
  }
752
834
  }
753
835
  },
754
- "authenticator_state": {
836
+ "address_alias": {
755
837
  "fileFormatVersion": 6,
756
838
  "address": "0x2",
757
- "name": "authenticator_state",
839
+ "name": "address_alias",
758
840
  "friends": [],
759
841
  "structs": {
760
- "ActiveJwk": {
842
+ "AddressAliasState": {
761
843
  "abilities": {
762
844
  "abilities": [
763
- "Copy",
764
- "Drop",
765
- "Store"
845
+ "Key"
766
846
  ]
767
847
  },
768
848
  "typeParameters": [],
769
849
  "fields": [
770
850
  {
771
- "name": "jwk_id",
772
- "type": {
773
- "Struct": {
774
- "address": "0x2",
775
- "module": "authenticator_state",
776
- "name": "JwkId",
777
- "typeArguments": []
778
- }
779
- }
780
- },
781
- {
782
- "name": "jwk",
851
+ "name": "id",
783
852
  "type": {
784
853
  "Struct": {
785
854
  "address": "0x2",
786
- "module": "authenticator_state",
787
- "name": "JWK",
855
+ "module": "object",
856
+ "name": "UID",
788
857
  "typeArguments": []
789
858
  }
790
859
  }
791
860
  },
792
861
  {
793
- "name": "epoch",
862
+ "name": "version",
794
863
  "type": "U64"
795
864
  }
796
865
  ]
797
866
  },
798
- "AuthenticatorState": {
867
+ "AddressAliases": {
799
868
  "abilities": {
800
869
  "abilities": [
801
870
  "Key"
@@ -815,25 +884,210 @@
815
884
  }
816
885
  },
817
886
  {
818
- "name": "version",
819
- "type": "U64"
887
+ "name": "aliases",
888
+ "type": {
889
+ "Struct": {
890
+ "address": "0x2",
891
+ "module": "vec_set",
892
+ "name": "VecSet",
893
+ "typeArguments": [
894
+ "Address"
895
+ ]
896
+ }
897
+ }
820
898
  }
821
899
  ]
822
900
  },
823
- "AuthenticatorStateInner": {
901
+ "AliasKey": {
824
902
  "abilities": {
825
903
  "abilities": [
904
+ "Copy",
905
+ "Drop",
826
906
  "Store"
827
907
  ]
828
908
  },
829
909
  "typeParameters": [],
830
910
  "fields": [
831
911
  {
832
- "name": "version",
833
- "type": "U64"
834
- },
912
+ "name": "pos0",
913
+ "type": "Address"
914
+ }
915
+ ]
916
+ }
917
+ },
918
+ "exposedFunctions": {
919
+ "add": {
920
+ "visibility": "Private",
921
+ "isEntry": true,
922
+ "typeParameters": [],
923
+ "parameters": [
835
924
  {
836
- "name": "active_jwks",
925
+ "MutableReference": {
926
+ "Struct": {
927
+ "address": "0x2",
928
+ "module": "address_alias",
929
+ "name": "AddressAliases",
930
+ "typeArguments": []
931
+ }
932
+ }
933
+ },
934
+ "Address"
935
+ ],
936
+ "return": []
937
+ },
938
+ "enable": {
939
+ "visibility": "Private",
940
+ "isEntry": true,
941
+ "typeParameters": [],
942
+ "parameters": [
943
+ {
944
+ "MutableReference": {
945
+ "Struct": {
946
+ "address": "0x2",
947
+ "module": "address_alias",
948
+ "name": "AddressAliasState",
949
+ "typeArguments": []
950
+ }
951
+ }
952
+ },
953
+ {
954
+ "Reference": {
955
+ "Struct": {
956
+ "address": "0x2",
957
+ "module": "tx_context",
958
+ "name": "TxContext",
959
+ "typeArguments": []
960
+ }
961
+ }
962
+ }
963
+ ],
964
+ "return": []
965
+ },
966
+ "remove": {
967
+ "visibility": "Private",
968
+ "isEntry": true,
969
+ "typeParameters": [],
970
+ "parameters": [
971
+ {
972
+ "MutableReference": {
973
+ "Struct": {
974
+ "address": "0x2",
975
+ "module": "address_alias",
976
+ "name": "AddressAliases",
977
+ "typeArguments": []
978
+ }
979
+ }
980
+ },
981
+ "Address"
982
+ ],
983
+ "return": []
984
+ },
985
+ "replace_all": {
986
+ "visibility": "Private",
987
+ "isEntry": true,
988
+ "typeParameters": [],
989
+ "parameters": [
990
+ {
991
+ "MutableReference": {
992
+ "Struct": {
993
+ "address": "0x2",
994
+ "module": "address_alias",
995
+ "name": "AddressAliases",
996
+ "typeArguments": []
997
+ }
998
+ }
999
+ },
1000
+ {
1001
+ "Vector": "Address"
1002
+ }
1003
+ ],
1004
+ "return": []
1005
+ }
1006
+ }
1007
+ },
1008
+ "authenticator_state": {
1009
+ "fileFormatVersion": 6,
1010
+ "address": "0x2",
1011
+ "name": "authenticator_state",
1012
+ "friends": [],
1013
+ "structs": {
1014
+ "ActiveJwk": {
1015
+ "abilities": {
1016
+ "abilities": [
1017
+ "Copy",
1018
+ "Drop",
1019
+ "Store"
1020
+ ]
1021
+ },
1022
+ "typeParameters": [],
1023
+ "fields": [
1024
+ {
1025
+ "name": "jwk_id",
1026
+ "type": {
1027
+ "Struct": {
1028
+ "address": "0x2",
1029
+ "module": "authenticator_state",
1030
+ "name": "JwkId",
1031
+ "typeArguments": []
1032
+ }
1033
+ }
1034
+ },
1035
+ {
1036
+ "name": "jwk",
1037
+ "type": {
1038
+ "Struct": {
1039
+ "address": "0x2",
1040
+ "module": "authenticator_state",
1041
+ "name": "JWK",
1042
+ "typeArguments": []
1043
+ }
1044
+ }
1045
+ },
1046
+ {
1047
+ "name": "epoch",
1048
+ "type": "U64"
1049
+ }
1050
+ ]
1051
+ },
1052
+ "AuthenticatorState": {
1053
+ "abilities": {
1054
+ "abilities": [
1055
+ "Key"
1056
+ ]
1057
+ },
1058
+ "typeParameters": [],
1059
+ "fields": [
1060
+ {
1061
+ "name": "id",
1062
+ "type": {
1063
+ "Struct": {
1064
+ "address": "0x2",
1065
+ "module": "object",
1066
+ "name": "UID",
1067
+ "typeArguments": []
1068
+ }
1069
+ }
1070
+ },
1071
+ {
1072
+ "name": "version",
1073
+ "type": "U64"
1074
+ }
1075
+ ]
1076
+ },
1077
+ "AuthenticatorStateInner": {
1078
+ "abilities": {
1079
+ "abilities": [
1080
+ "Store"
1081
+ ]
1082
+ },
1083
+ "typeParameters": [],
1084
+ "fields": [
1085
+ {
1086
+ "name": "version",
1087
+ "type": "U64"
1088
+ },
1089
+ {
1090
+ "name": "active_jwks",
837
1091
  "type": {
838
1092
  "Vector": {
839
1093
  "Struct": {
@@ -1286,6 +1540,10 @@
1286
1540
  "address": "0x2",
1287
1541
  "name": "balance",
1288
1542
  "friends": [
1543
+ {
1544
+ "address": "0x2",
1545
+ "name": "coin"
1546
+ },
1289
1547
  {
1290
1548
  "address": "0x2",
1291
1549
  "name": "sui"
@@ -1366,6 +1624,30 @@
1366
1624
  }
1367
1625
  ]
1368
1626
  },
1627
+ "create_supply_internal": {
1628
+ "visibility": "Friend",
1629
+ "isEntry": false,
1630
+ "typeParameters": [
1631
+ {
1632
+ "abilities": []
1633
+ }
1634
+ ],
1635
+ "parameters": [],
1636
+ "return": [
1637
+ {
1638
+ "Struct": {
1639
+ "address": "0x2",
1640
+ "module": "balance",
1641
+ "name": "Supply",
1642
+ "typeArguments": [
1643
+ {
1644
+ "TypeParameter": 0
1645
+ }
1646
+ ]
1647
+ }
1648
+ }
1649
+ ]
1650
+ },
1369
1651
  "decrease_supply": {
1370
1652
  "visibility": "Public",
1371
1653
  "isEntry": false,
@@ -1536,7 +1818,7 @@
1536
1818
  "U64"
1537
1819
  ]
1538
1820
  },
1539
- "split": {
1821
+ "redeem_funds": {
1540
1822
  "visibility": "Public",
1541
1823
  "isEntry": false,
1542
1824
  "typeParameters": [
@@ -1546,20 +1828,26 @@
1546
1828
  ],
1547
1829
  "parameters": [
1548
1830
  {
1549
- "MutableReference": {
1550
- "Struct": {
1551
- "address": "0x2",
1552
- "module": "balance",
1553
- "name": "Balance",
1554
- "typeArguments": [
1555
- {
1556
- "TypeParameter": 0
1831
+ "Struct": {
1832
+ "address": "0x2",
1833
+ "module": "funds_accumulator",
1834
+ "name": "Withdrawal",
1835
+ "typeArguments": [
1836
+ {
1837
+ "Struct": {
1838
+ "address": "0x2",
1839
+ "module": "balance",
1840
+ "name": "Balance",
1841
+ "typeArguments": [
1842
+ {
1843
+ "TypeParameter": 0
1844
+ }
1845
+ ]
1557
1846
  }
1558
- ]
1559
- }
1847
+ }
1848
+ ]
1560
1849
  }
1561
- },
1562
- "U64"
1850
+ }
1563
1851
  ],
1564
1852
  "return": [
1565
1853
  {
@@ -1576,7 +1864,32 @@
1576
1864
  }
1577
1865
  ]
1578
1866
  },
1579
- "supply_value": {
1867
+ "send_funds": {
1868
+ "visibility": "Public",
1869
+ "isEntry": false,
1870
+ "typeParameters": [
1871
+ {
1872
+ "abilities": []
1873
+ }
1874
+ ],
1875
+ "parameters": [
1876
+ {
1877
+ "Struct": {
1878
+ "address": "0x2",
1879
+ "module": "balance",
1880
+ "name": "Balance",
1881
+ "typeArguments": [
1882
+ {
1883
+ "TypeParameter": 0
1884
+ }
1885
+ ]
1886
+ }
1887
+ },
1888
+ "Address"
1889
+ ],
1890
+ "return": []
1891
+ },
1892
+ "settled_funds_value": {
1580
1893
  "visibility": "Public",
1581
1894
  "isEntry": false,
1582
1895
  "typeParameters": [
@@ -1589,22 +1902,19 @@
1589
1902
  "Reference": {
1590
1903
  "Struct": {
1591
1904
  "address": "0x2",
1592
- "module": "balance",
1593
- "name": "Supply",
1594
- "typeArguments": [
1595
- {
1596
- "TypeParameter": 0
1597
- }
1598
- ]
1905
+ "module": "accumulator",
1906
+ "name": "AccumulatorRoot",
1907
+ "typeArguments": []
1599
1908
  }
1600
1909
  }
1601
- }
1910
+ },
1911
+ "Address"
1602
1912
  ],
1603
1913
  "return": [
1604
1914
  "U64"
1605
1915
  ]
1606
1916
  },
1607
- "value": {
1917
+ "split": {
1608
1918
  "visibility": "Public",
1609
1919
  "isEntry": false,
1610
1920
  "typeParameters": [
@@ -1614,7 +1924,7 @@
1614
1924
  ],
1615
1925
  "parameters": [
1616
1926
  {
1617
- "Reference": {
1927
+ "MutableReference": {
1618
1928
  "Struct": {
1619
1929
  "address": "0x2",
1620
1930
  "module": "balance",
@@ -1626,7 +1936,75 @@
1626
1936
  ]
1627
1937
  }
1628
1938
  }
1629
- }
1939
+ },
1940
+ "U64"
1941
+ ],
1942
+ "return": [
1943
+ {
1944
+ "Struct": {
1945
+ "address": "0x2",
1946
+ "module": "balance",
1947
+ "name": "Balance",
1948
+ "typeArguments": [
1949
+ {
1950
+ "TypeParameter": 0
1951
+ }
1952
+ ]
1953
+ }
1954
+ }
1955
+ ]
1956
+ },
1957
+ "supply_value": {
1958
+ "visibility": "Public",
1959
+ "isEntry": false,
1960
+ "typeParameters": [
1961
+ {
1962
+ "abilities": []
1963
+ }
1964
+ ],
1965
+ "parameters": [
1966
+ {
1967
+ "Reference": {
1968
+ "Struct": {
1969
+ "address": "0x2",
1970
+ "module": "balance",
1971
+ "name": "Supply",
1972
+ "typeArguments": [
1973
+ {
1974
+ "TypeParameter": 0
1975
+ }
1976
+ ]
1977
+ }
1978
+ }
1979
+ }
1980
+ ],
1981
+ "return": [
1982
+ "U64"
1983
+ ]
1984
+ },
1985
+ "value": {
1986
+ "visibility": "Public",
1987
+ "isEntry": false,
1988
+ "typeParameters": [
1989
+ {
1990
+ "abilities": []
1991
+ }
1992
+ ],
1993
+ "parameters": [
1994
+ {
1995
+ "Reference": {
1996
+ "Struct": {
1997
+ "address": "0x2",
1998
+ "module": "balance",
1999
+ "name": "Balance",
2000
+ "typeArguments": [
2001
+ {
2002
+ "TypeParameter": 0
2003
+ }
2004
+ ]
2005
+ }
2006
+ }
2007
+ }
1630
2008
  ],
1631
2009
  "return": [
1632
2010
  "U64"
@@ -1671,6 +2049,51 @@
1671
2049
  }
1672
2050
  ]
1673
2051
  },
2052
+ "withdraw_funds_from_object": {
2053
+ "visibility": "Public",
2054
+ "isEntry": false,
2055
+ "typeParameters": [
2056
+ {
2057
+ "abilities": []
2058
+ }
2059
+ ],
2060
+ "parameters": [
2061
+ {
2062
+ "MutableReference": {
2063
+ "Struct": {
2064
+ "address": "0x2",
2065
+ "module": "object",
2066
+ "name": "UID",
2067
+ "typeArguments": []
2068
+ }
2069
+ }
2070
+ },
2071
+ "U64"
2072
+ ],
2073
+ "return": [
2074
+ {
2075
+ "Struct": {
2076
+ "address": "0x2",
2077
+ "module": "funds_accumulator",
2078
+ "name": "Withdrawal",
2079
+ "typeArguments": [
2080
+ {
2081
+ "Struct": {
2082
+ "address": "0x2",
2083
+ "module": "balance",
2084
+ "name": "Balance",
2085
+ "typeArguments": [
2086
+ {
2087
+ "TypeParameter": 0
2088
+ }
2089
+ ]
2090
+ }
2091
+ }
2092
+ ]
2093
+ }
2094
+ }
2095
+ ]
2096
+ },
1674
2097
  "zero": {
1675
2098
  "visibility": "Public",
1676
2099
  "isEntry": false,
@@ -4790,7 +5213,12 @@
4790
5213
  "fileFormatVersion": 6,
4791
5214
  "address": "0x2",
4792
5215
  "name": "coin",
4793
- "friends": [],
5216
+ "friends": [
5217
+ {
5218
+ "address": "0x2",
5219
+ "name": "coin_registry"
5220
+ }
5221
+ ],
4794
5222
  "structs": {
4795
5223
  "Coin": {
4796
5224
  "abilities": {
@@ -5102,6 +5530,34 @@
5102
5530
  }
5103
5531
  },
5104
5532
  "exposedFunctions": {
5533
+ "allow_global_pause": {
5534
+ "visibility": "Friend",
5535
+ "isEntry": false,
5536
+ "typeParameters": [
5537
+ {
5538
+ "abilities": []
5539
+ }
5540
+ ],
5541
+ "parameters": [
5542
+ {
5543
+ "Reference": {
5544
+ "Struct": {
5545
+ "address": "0x2",
5546
+ "module": "coin",
5547
+ "name": "DenyCapV2",
5548
+ "typeArguments": [
5549
+ {
5550
+ "TypeParameter": 0
5551
+ }
5552
+ ]
5553
+ }
5554
+ }
5555
+ }
5556
+ ],
5557
+ "return": [
5558
+ "Bool"
5559
+ ]
5560
+ },
5105
5561
  "balance": {
5106
5562
  "visibility": "Public",
5107
5563
  "isEntry": false,
@@ -5486,6 +5942,41 @@
5486
5942
  }
5487
5943
  ]
5488
5944
  },
5945
+ "deny_cap_id": {
5946
+ "visibility": "Friend",
5947
+ "isEntry": false,
5948
+ "typeParameters": [
5949
+ {
5950
+ "abilities": []
5951
+ }
5952
+ ],
5953
+ "parameters": [
5954
+ {
5955
+ "Reference": {
5956
+ "Struct": {
5957
+ "address": "0x2",
5958
+ "module": "coin",
5959
+ "name": "RegulatedCoinMetadata",
5960
+ "typeArguments": [
5961
+ {
5962
+ "TypeParameter": 0
5963
+ }
5964
+ ]
5965
+ }
5966
+ }
5967
+ }
5968
+ ],
5969
+ "return": [
5970
+ {
5971
+ "Struct": {
5972
+ "address": "0x2",
5973
+ "module": "object",
5974
+ "name": "ID",
5975
+ "typeArguments": []
5976
+ }
5977
+ }
5978
+ ]
5979
+ },
5489
5980
  "deny_list_add": {
5490
5981
  "visibility": "Public",
5491
5982
  "isEntry": false,
@@ -5909,6 +6400,30 @@
5909
6400
  ],
5910
6401
  "return": []
5911
6402
  },
6403
+ "destroy_metadata": {
6404
+ "visibility": "Friend",
6405
+ "isEntry": false,
6406
+ "typeParameters": [
6407
+ {
6408
+ "abilities": []
6409
+ }
6410
+ ],
6411
+ "parameters": [
6412
+ {
6413
+ "Struct": {
6414
+ "address": "0x2",
6415
+ "module": "coin",
6416
+ "name": "CoinMetadata",
6417
+ "typeArguments": [
6418
+ {
6419
+ "TypeParameter": 0
6420
+ }
6421
+ ]
6422
+ }
6423
+ }
6424
+ ],
6425
+ "return": []
6426
+ },
5912
6427
  "destroy_zero": {
5913
6428
  "visibility": "Public",
5914
6429
  "isEntry": false,
@@ -6470,8 +6985,8 @@
6470
6985
  }
6471
6986
  ]
6472
6987
  },
6473
- "put": {
6474
- "visibility": "Public",
6988
+ "new_coin_metadata": {
6989
+ "visibility": "Friend",
6475
6990
  "isEntry": false,
6476
6991
  "typeParameters": [
6477
6992
  {
@@ -6479,25 +6994,56 @@
6479
6994
  }
6480
6995
  ],
6481
6996
  "parameters": [
6997
+ "U8",
6998
+ {
6999
+ "Struct": {
7000
+ "address": "0x1",
7001
+ "module": "string",
7002
+ "name": "String",
7003
+ "typeArguments": []
7004
+ }
7005
+ },
7006
+ {
7007
+ "Struct": {
7008
+ "address": "0x1",
7009
+ "module": "ascii",
7010
+ "name": "String",
7011
+ "typeArguments": []
7012
+ }
7013
+ },
7014
+ {
7015
+ "Struct": {
7016
+ "address": "0x1",
7017
+ "module": "string",
7018
+ "name": "String",
7019
+ "typeArguments": []
7020
+ }
7021
+ },
7022
+ {
7023
+ "Struct": {
7024
+ "address": "0x1",
7025
+ "module": "ascii",
7026
+ "name": "String",
7027
+ "typeArguments": []
7028
+ }
7029
+ },
6482
7030
  {
6483
7031
  "MutableReference": {
6484
7032
  "Struct": {
6485
7033
  "address": "0x2",
6486
- "module": "balance",
6487
- "name": "Balance",
6488
- "typeArguments": [
6489
- {
6490
- "TypeParameter": 0
6491
- }
6492
- ]
7034
+ "module": "tx_context",
7035
+ "name": "TxContext",
7036
+ "typeArguments": []
6493
7037
  }
6494
7038
  }
6495
- },
7039
+ }
7040
+ ],
7041
+ "return": [
6496
7042
  {
6497
7043
  "Struct": {
6498
7044
  "address": "0x2",
6499
7045
  "module": "coin",
6500
- "name": "Coin",
7046
+ "name": "CoinMetadata",
6501
7047
  "typeArguments": [
6502
7048
  {
6503
7049
  "TypeParameter": 0
@@ -6505,10 +7051,199 @@
6505
7051
  ]
6506
7052
  }
6507
7053
  }
6508
- ],
6509
- "return": []
7054
+ ]
6510
7055
  },
6511
- "split": {
7056
+ "new_deny_cap_v2": {
7057
+ "visibility": "Friend",
7058
+ "isEntry": false,
7059
+ "typeParameters": [
7060
+ {
7061
+ "abilities": []
7062
+ }
7063
+ ],
7064
+ "parameters": [
7065
+ "Bool",
7066
+ {
7067
+ "MutableReference": {
7068
+ "Struct": {
7069
+ "address": "0x2",
7070
+ "module": "tx_context",
7071
+ "name": "TxContext",
7072
+ "typeArguments": []
7073
+ }
7074
+ }
7075
+ }
7076
+ ],
7077
+ "return": [
7078
+ {
7079
+ "Struct": {
7080
+ "address": "0x2",
7081
+ "module": "coin",
7082
+ "name": "DenyCapV2",
7083
+ "typeArguments": [
7084
+ {
7085
+ "TypeParameter": 0
7086
+ }
7087
+ ]
7088
+ }
7089
+ }
7090
+ ]
7091
+ },
7092
+ "new_treasury_cap": {
7093
+ "visibility": "Friend",
7094
+ "isEntry": false,
7095
+ "typeParameters": [
7096
+ {
7097
+ "abilities": []
7098
+ }
7099
+ ],
7100
+ "parameters": [
7101
+ {
7102
+ "MutableReference": {
7103
+ "Struct": {
7104
+ "address": "0x2",
7105
+ "module": "tx_context",
7106
+ "name": "TxContext",
7107
+ "typeArguments": []
7108
+ }
7109
+ }
7110
+ }
7111
+ ],
7112
+ "return": [
7113
+ {
7114
+ "Struct": {
7115
+ "address": "0x2",
7116
+ "module": "coin",
7117
+ "name": "TreasuryCap",
7118
+ "typeArguments": [
7119
+ {
7120
+ "TypeParameter": 0
7121
+ }
7122
+ ]
7123
+ }
7124
+ }
7125
+ ]
7126
+ },
7127
+ "put": {
7128
+ "visibility": "Public",
7129
+ "isEntry": false,
7130
+ "typeParameters": [
7131
+ {
7132
+ "abilities": []
7133
+ }
7134
+ ],
7135
+ "parameters": [
7136
+ {
7137
+ "MutableReference": {
7138
+ "Struct": {
7139
+ "address": "0x2",
7140
+ "module": "balance",
7141
+ "name": "Balance",
7142
+ "typeArguments": [
7143
+ {
7144
+ "TypeParameter": 0
7145
+ }
7146
+ ]
7147
+ }
7148
+ }
7149
+ },
7150
+ {
7151
+ "Struct": {
7152
+ "address": "0x2",
7153
+ "module": "coin",
7154
+ "name": "Coin",
7155
+ "typeArguments": [
7156
+ {
7157
+ "TypeParameter": 0
7158
+ }
7159
+ ]
7160
+ }
7161
+ }
7162
+ ],
7163
+ "return": []
7164
+ },
7165
+ "redeem_funds": {
7166
+ "visibility": "Public",
7167
+ "isEntry": false,
7168
+ "typeParameters": [
7169
+ {
7170
+ "abilities": []
7171
+ }
7172
+ ],
7173
+ "parameters": [
7174
+ {
7175
+ "Struct": {
7176
+ "address": "0x2",
7177
+ "module": "funds_accumulator",
7178
+ "name": "Withdrawal",
7179
+ "typeArguments": [
7180
+ {
7181
+ "Struct": {
7182
+ "address": "0x2",
7183
+ "module": "balance",
7184
+ "name": "Balance",
7185
+ "typeArguments": [
7186
+ {
7187
+ "TypeParameter": 0
7188
+ }
7189
+ ]
7190
+ }
7191
+ }
7192
+ ]
7193
+ }
7194
+ },
7195
+ {
7196
+ "MutableReference": {
7197
+ "Struct": {
7198
+ "address": "0x2",
7199
+ "module": "tx_context",
7200
+ "name": "TxContext",
7201
+ "typeArguments": []
7202
+ }
7203
+ }
7204
+ }
7205
+ ],
7206
+ "return": [
7207
+ {
7208
+ "Struct": {
7209
+ "address": "0x2",
7210
+ "module": "coin",
7211
+ "name": "Coin",
7212
+ "typeArguments": [
7213
+ {
7214
+ "TypeParameter": 0
7215
+ }
7216
+ ]
7217
+ }
7218
+ }
7219
+ ]
7220
+ },
7221
+ "send_funds": {
7222
+ "visibility": "Public",
7223
+ "isEntry": false,
7224
+ "typeParameters": [
7225
+ {
7226
+ "abilities": []
7227
+ }
7228
+ ],
7229
+ "parameters": [
7230
+ {
7231
+ "Struct": {
7232
+ "address": "0x2",
7233
+ "module": "coin",
7234
+ "name": "Coin",
7235
+ "typeArguments": [
7236
+ {
7237
+ "TypeParameter": 0
7238
+ }
7239
+ ]
7240
+ }
7241
+ },
7242
+ "Address"
7243
+ ],
7244
+ "return": []
7245
+ },
7246
+ "split": {
6512
7247
  "visibility": "Public",
6513
7248
  "isEntry": false,
6514
7249
  "typeParameters": [
@@ -6796,6 +7531,64 @@
6796
7531
  }
6797
7532
  ]
6798
7533
  },
7534
+ "update_coin_metadata": {
7535
+ "visibility": "Friend",
7536
+ "isEntry": false,
7537
+ "typeParameters": [
7538
+ {
7539
+ "abilities": []
7540
+ }
7541
+ ],
7542
+ "parameters": [
7543
+ {
7544
+ "MutableReference": {
7545
+ "Struct": {
7546
+ "address": "0x2",
7547
+ "module": "coin",
7548
+ "name": "CoinMetadata",
7549
+ "typeArguments": [
7550
+ {
7551
+ "TypeParameter": 0
7552
+ }
7553
+ ]
7554
+ }
7555
+ }
7556
+ },
7557
+ {
7558
+ "Struct": {
7559
+ "address": "0x1",
7560
+ "module": "string",
7561
+ "name": "String",
7562
+ "typeArguments": []
7563
+ }
7564
+ },
7565
+ {
7566
+ "Struct": {
7567
+ "address": "0x1",
7568
+ "module": "ascii",
7569
+ "name": "String",
7570
+ "typeArguments": []
7571
+ }
7572
+ },
7573
+ {
7574
+ "Struct": {
7575
+ "address": "0x1",
7576
+ "module": "string",
7577
+ "name": "String",
7578
+ "typeArguments": []
7579
+ }
7580
+ },
7581
+ {
7582
+ "Struct": {
7583
+ "address": "0x1",
7584
+ "module": "ascii",
7585
+ "name": "String",
7586
+ "typeArguments": []
7587
+ }
7588
+ }
7589
+ ],
7590
+ "return": []
7591
+ },
6799
7592
  "update_description": {
6800
7593
  "visibility": "Public",
6801
7594
  "isEntry": true,
@@ -7053,22 +7846,15 @@
7053
7846
  }
7054
7847
  }
7055
7848
  },
7056
- "config": {
7057
- "fileFormatVersion": 6,
7849
+ "coin_registry": {
7850
+ "fileFormatVersion": 7,
7058
7851
  "address": "0x2",
7059
- "name": "config",
7060
- "friends": [
7061
- {
7062
- "address": "0x2",
7063
- "name": "deny_list"
7064
- }
7065
- ],
7852
+ "name": "coin_registry",
7853
+ "friends": [],
7066
7854
  "structs": {
7067
- "Config": {
7855
+ "Borrow": {
7068
7856
  "abilities": {
7069
- "abilities": [
7070
- "Key"
7071
- ]
7857
+ "abilities": []
7072
7858
  },
7073
7859
  "typeParameters": [
7074
7860
  {
@@ -7078,6 +7864,20 @@
7078
7864
  "isPhantom": true
7079
7865
  }
7080
7866
  ],
7867
+ "fields": [
7868
+ {
7869
+ "name": "dummy_field",
7870
+ "type": "Bool"
7871
+ }
7872
+ ]
7873
+ },
7874
+ "CoinRegistry": {
7875
+ "abilities": {
7876
+ "abilities": [
7877
+ "Key"
7878
+ ]
7879
+ },
7880
+ "typeParameters": [],
7081
7881
  "fields": [
7082
7882
  {
7083
7883
  "name": "id",
@@ -7092,28 +7892,82 @@
7092
7892
  }
7093
7893
  ]
7094
7894
  },
7095
- "Setting": {
7895
+ "Currency": {
7096
7896
  "abilities": {
7097
7897
  "abilities": [
7098
- "Drop",
7099
- "Store"
7898
+ "Key"
7100
7899
  ]
7101
7900
  },
7102
7901
  "typeParameters": [
7103
7902
  {
7104
7903
  "constraints": {
7105
- "abilities": [
7106
- "Copy",
7107
- "Drop",
7108
- "Store"
7109
- ]
7904
+ "abilities": []
7110
7905
  },
7111
- "isPhantom": false
7906
+ "isPhantom": true
7112
7907
  }
7113
7908
  ],
7114
7909
  "fields": [
7115
7910
  {
7116
- "name": "data",
7911
+ "name": "id",
7912
+ "type": {
7913
+ "Struct": {
7914
+ "address": "0x2",
7915
+ "module": "object",
7916
+ "name": "UID",
7917
+ "typeArguments": []
7918
+ }
7919
+ }
7920
+ },
7921
+ {
7922
+ "name": "decimals",
7923
+ "type": "U8"
7924
+ },
7925
+ {
7926
+ "name": "name",
7927
+ "type": {
7928
+ "Struct": {
7929
+ "address": "0x1",
7930
+ "module": "string",
7931
+ "name": "String",
7932
+ "typeArguments": []
7933
+ }
7934
+ }
7935
+ },
7936
+ {
7937
+ "name": "symbol",
7938
+ "type": {
7939
+ "Struct": {
7940
+ "address": "0x1",
7941
+ "module": "string",
7942
+ "name": "String",
7943
+ "typeArguments": []
7944
+ }
7945
+ }
7946
+ },
7947
+ {
7948
+ "name": "description",
7949
+ "type": {
7950
+ "Struct": {
7951
+ "address": "0x1",
7952
+ "module": "string",
7953
+ "name": "String",
7954
+ "typeArguments": []
7955
+ }
7956
+ }
7957
+ },
7958
+ {
7959
+ "name": "icon_url",
7960
+ "type": {
7961
+ "Struct": {
7962
+ "address": "0x1",
7963
+ "module": "string",
7964
+ "name": "String",
7965
+ "typeArguments": []
7966
+ }
7967
+ }
7968
+ },
7969
+ {
7970
+ "name": "supply",
7117
7971
  "type": {
7118
7972
  "Struct": {
7119
7973
  "address": "0x1",
@@ -7123,8 +7977,8 @@
7123
7977
  {
7124
7978
  "Struct": {
7125
7979
  "address": "0x2",
7126
- "module": "config",
7127
- "name": "SettingData",
7980
+ "module": "coin_registry",
7981
+ "name": "SupplyState",
7128
7982
  "typeArguments": [
7129
7983
  {
7130
7984
  "TypeParameter": 0
@@ -7135,35 +7989,20 @@
7135
7989
  ]
7136
7990
  }
7137
7991
  }
7138
- }
7139
- ]
7140
- },
7141
- "SettingData": {
7142
- "abilities": {
7143
- "abilities": [
7144
- "Drop",
7145
- "Store"
7146
- ]
7147
- },
7148
- "typeParameters": [
7149
- {
7150
- "constraints": {
7151
- "abilities": [
7152
- "Copy",
7153
- "Drop",
7154
- "Store"
7155
- ]
7156
- },
7157
- "isPhantom": false
7158
- }
7159
- ],
7160
- "fields": [
7992
+ },
7161
7993
  {
7162
- "name": "newer_value_epoch",
7163
- "type": "U64"
7994
+ "name": "regulated",
7995
+ "type": {
7996
+ "Struct": {
7997
+ "address": "0x2",
7998
+ "module": "coin_registry",
7999
+ "name": "RegulatedState",
8000
+ "typeArguments": []
8001
+ }
8002
+ }
7164
8003
  },
7165
8004
  {
7166
- "name": "newer_value",
8005
+ "name": "treasury_cap_id",
7167
8006
  "type": {
7168
8007
  "Struct": {
7169
8008
  "address": "0x1",
@@ -7171,60 +8010,78 @@
7171
8010
  "name": "Option",
7172
8011
  "typeArguments": [
7173
8012
  {
7174
- "TypeParameter": 0
8013
+ "Struct": {
8014
+ "address": "0x2",
8015
+ "module": "object",
8016
+ "name": "ID",
8017
+ "typeArguments": []
8018
+ }
7175
8019
  }
7176
8020
  ]
7177
8021
  }
7178
8022
  }
7179
8023
  },
7180
8024
  {
7181
- "name": "older_value_opt",
8025
+ "name": "metadata_cap_id",
7182
8026
  "type": {
7183
8027
  "Struct": {
7184
- "address": "0x1",
7185
- "module": "option",
7186
- "name": "Option",
8028
+ "address": "0x2",
8029
+ "module": "coin_registry",
8030
+ "name": "MetadataCapState",
8031
+ "typeArguments": []
8032
+ }
8033
+ }
8034
+ },
8035
+ {
8036
+ "name": "extra_fields",
8037
+ "type": {
8038
+ "Struct": {
8039
+ "address": "0x2",
8040
+ "module": "vec_map",
8041
+ "name": "VecMap",
7187
8042
  "typeArguments": [
7188
8043
  {
7189
- "TypeParameter": 0
8044
+ "Struct": {
8045
+ "address": "0x1",
8046
+ "module": "string",
8047
+ "name": "String",
8048
+ "typeArguments": []
8049
+ }
8050
+ },
8051
+ {
8052
+ "Struct": {
8053
+ "address": "0x2",
8054
+ "module": "coin_registry",
8055
+ "name": "ExtraField",
8056
+ "typeArguments": []
8057
+ }
7190
8058
  }
7191
8059
  ]
7192
8060
  }
7193
8061
  }
7194
8062
  }
7195
8063
  ]
7196
- }
7197
- },
7198
- "exposedFunctions": {
7199
- "add_for_next_epoch": {
7200
- "visibility": "Friend",
7201
- "isEntry": false,
8064
+ },
8065
+ "CurrencyInitializer": {
8066
+ "abilities": {
8067
+ "abilities": []
8068
+ },
7202
8069
  "typeParameters": [
7203
8070
  {
7204
- "abilities": []
7205
- },
7206
- {
7207
- "abilities": [
7208
- "Copy",
7209
- "Drop",
7210
- "Store"
7211
- ]
7212
- },
7213
- {
7214
- "abilities": [
7215
- "Copy",
7216
- "Drop",
7217
- "Store"
7218
- ]
8071
+ "constraints": {
8072
+ "abilities": []
8073
+ },
8074
+ "isPhantom": true
7219
8075
  }
7220
8076
  ],
7221
- "parameters": [
8077
+ "fields": [
7222
8078
  {
7223
- "MutableReference": {
8079
+ "name": "currency",
8080
+ "type": {
7224
8081
  "Struct": {
7225
8082
  "address": "0x2",
7226
- "module": "config",
7227
- "name": "Config",
8083
+ "module": "coin_registry",
8084
+ "name": "Currency",
7228
8085
  "typeArguments": [
7229
8086
  {
7230
8087
  "TypeParameter": 0
@@ -7234,68 +8091,2204 @@
7234
8091
  }
7235
8092
  },
7236
8093
  {
7237
- "MutableReference": {
7238
- "TypeParameter": 0
7239
- }
7240
- },
7241
- {
7242
- "TypeParameter": 1
7243
- },
7244
- {
7245
- "TypeParameter": 2
7246
- },
7247
- {
7248
- "MutableReference": {
8094
+ "name": "extra_fields",
8095
+ "type": {
7249
8096
  "Struct": {
7250
8097
  "address": "0x2",
7251
- "module": "tx_context",
7252
- "name": "TxContext",
8098
+ "module": "bag",
8099
+ "name": "Bag",
7253
8100
  "typeArguments": []
7254
8101
  }
7255
8102
  }
7256
- }
7257
- ],
7258
- "return": [
8103
+ },
7259
8104
  {
7260
- "Struct": {
7261
- "address": "0x1",
7262
- "module": "option",
7263
- "name": "Option",
7264
- "typeArguments": [
7265
- {
7266
- "TypeParameter": 2
7267
- }
7268
- ]
7269
- }
8105
+ "name": "is_otw",
8106
+ "type": "Bool"
7270
8107
  }
7271
8108
  ]
7272
8109
  },
7273
- "borrow_for_next_epoch_mut": {
7274
- "visibility": "Friend",
7275
- "isEntry": false,
8110
+ "CurrencyKey": {
8111
+ "abilities": {
8112
+ "abilities": [
8113
+ "Copy",
8114
+ "Drop",
8115
+ "Store"
8116
+ ]
8117
+ },
7276
8118
  "typeParameters": [
7277
8119
  {
7278
- "abilities": []
7279
- },
7280
- {
7281
- "abilities": [
7282
- "Copy",
7283
- "Drop",
7284
- "Store"
7285
- ]
7286
- },
7287
- {
7288
- "abilities": [
7289
- "Copy",
7290
- "Drop",
7291
- "Store"
7292
- ]
8120
+ "constraints": {
8121
+ "abilities": []
8122
+ },
8123
+ "isPhantom": true
7293
8124
  }
7294
8125
  ],
7295
- "parameters": [
8126
+ "fields": [
7296
8127
  {
7297
- "MutableReference": {
7298
- "Struct": {
8128
+ "name": "dummy_field",
8129
+ "type": "Bool"
8130
+ }
8131
+ ]
8132
+ },
8133
+ "ExtraField": {
8134
+ "abilities": {
8135
+ "abilities": [
8136
+ "Store"
8137
+ ]
8138
+ },
8139
+ "typeParameters": [],
8140
+ "fields": [
8141
+ {
8142
+ "name": "pos0",
8143
+ "type": {
8144
+ "Struct": {
8145
+ "address": "0x1",
8146
+ "module": "type_name",
8147
+ "name": "TypeName",
8148
+ "typeArguments": []
8149
+ }
8150
+ }
8151
+ },
8152
+ {
8153
+ "name": "pos1",
8154
+ "type": {
8155
+ "Vector": "U8"
8156
+ }
8157
+ }
8158
+ ]
8159
+ },
8160
+ "LegacyMetadataKey": {
8161
+ "abilities": {
8162
+ "abilities": [
8163
+ "Copy",
8164
+ "Drop",
8165
+ "Store"
8166
+ ]
8167
+ },
8168
+ "typeParameters": [],
8169
+ "fields": [
8170
+ {
8171
+ "name": "dummy_field",
8172
+ "type": "Bool"
8173
+ }
8174
+ ]
8175
+ },
8176
+ "MetadataCap": {
8177
+ "abilities": {
8178
+ "abilities": [
8179
+ "Store",
8180
+ "Key"
8181
+ ]
8182
+ },
8183
+ "typeParameters": [
8184
+ {
8185
+ "constraints": {
8186
+ "abilities": []
8187
+ },
8188
+ "isPhantom": true
8189
+ }
8190
+ ],
8191
+ "fields": [
8192
+ {
8193
+ "name": "id",
8194
+ "type": {
8195
+ "Struct": {
8196
+ "address": "0x2",
8197
+ "module": "object",
8198
+ "name": "UID",
8199
+ "typeArguments": []
8200
+ }
8201
+ }
8202
+ }
8203
+ ]
8204
+ }
8205
+ },
8206
+ "enums": {
8207
+ "MetadataCapState": {
8208
+ "abilities": {
8209
+ "abilities": [
8210
+ "Copy",
8211
+ "Drop",
8212
+ "Store"
8213
+ ]
8214
+ },
8215
+ "typeParameters": [],
8216
+ "variants": {
8217
+ "Claimed": [
8218
+ {
8219
+ "name": "pos0",
8220
+ "type": {
8221
+ "Struct": {
8222
+ "address": "0x2",
8223
+ "module": "object",
8224
+ "name": "ID",
8225
+ "typeArguments": []
8226
+ }
8227
+ }
8228
+ }
8229
+ ],
8230
+ "Deleted": [],
8231
+ "Unclaimed": []
8232
+ },
8233
+ "variantDeclarationOrder": [
8234
+ "Claimed",
8235
+ "Unclaimed",
8236
+ "Deleted"
8237
+ ]
8238
+ },
8239
+ "RegulatedState": {
8240
+ "abilities": {
8241
+ "abilities": [
8242
+ "Copy",
8243
+ "Drop",
8244
+ "Store"
8245
+ ]
8246
+ },
8247
+ "typeParameters": [],
8248
+ "variants": {
8249
+ "Regulated": [
8250
+ {
8251
+ "name": "cap",
8252
+ "type": {
8253
+ "Struct": {
8254
+ "address": "0x2",
8255
+ "module": "object",
8256
+ "name": "ID",
8257
+ "typeArguments": []
8258
+ }
8259
+ }
8260
+ },
8261
+ {
8262
+ "name": "allow_global_pause",
8263
+ "type": {
8264
+ "Struct": {
8265
+ "address": "0x1",
8266
+ "module": "option",
8267
+ "name": "Option",
8268
+ "typeArguments": [
8269
+ "Bool"
8270
+ ]
8271
+ }
8272
+ }
8273
+ },
8274
+ {
8275
+ "name": "variant",
8276
+ "type": "U8"
8277
+ }
8278
+ ],
8279
+ "Unknown": [],
8280
+ "Unregulated": []
8281
+ },
8282
+ "variantDeclarationOrder": [
8283
+ "Regulated",
8284
+ "Unregulated",
8285
+ "Unknown"
8286
+ ]
8287
+ },
8288
+ "SupplyState": {
8289
+ "abilities": {
8290
+ "abilities": [
8291
+ "Store"
8292
+ ]
8293
+ },
8294
+ "typeParameters": [
8295
+ {
8296
+ "constraints": {
8297
+ "abilities": []
8298
+ },
8299
+ "isPhantom": true
8300
+ }
8301
+ ],
8302
+ "variants": {
8303
+ "BurnOnly": [
8304
+ {
8305
+ "name": "pos0",
8306
+ "type": {
8307
+ "Struct": {
8308
+ "address": "0x2",
8309
+ "module": "balance",
8310
+ "name": "Supply",
8311
+ "typeArguments": [
8312
+ {
8313
+ "TypeParameter": 0
8314
+ }
8315
+ ]
8316
+ }
8317
+ }
8318
+ }
8319
+ ],
8320
+ "Fixed": [
8321
+ {
8322
+ "name": "pos0",
8323
+ "type": {
8324
+ "Struct": {
8325
+ "address": "0x2",
8326
+ "module": "balance",
8327
+ "name": "Supply",
8328
+ "typeArguments": [
8329
+ {
8330
+ "TypeParameter": 0
8331
+ }
8332
+ ]
8333
+ }
8334
+ }
8335
+ }
8336
+ ],
8337
+ "Unknown": []
8338
+ },
8339
+ "variantDeclarationOrder": [
8340
+ "Fixed",
8341
+ "BurnOnly",
8342
+ "Unknown"
8343
+ ]
8344
+ }
8345
+ },
8346
+ "exposedFunctions": {
8347
+ "borrow_legacy_metadata": {
8348
+ "visibility": "Public",
8349
+ "isEntry": false,
8350
+ "typeParameters": [
8351
+ {
8352
+ "abilities": []
8353
+ }
8354
+ ],
8355
+ "parameters": [
8356
+ {
8357
+ "MutableReference": {
8358
+ "Struct": {
8359
+ "address": "0x2",
8360
+ "module": "coin_registry",
8361
+ "name": "Currency",
8362
+ "typeArguments": [
8363
+ {
8364
+ "TypeParameter": 0
8365
+ }
8366
+ ]
8367
+ }
8368
+ }
8369
+ },
8370
+ {
8371
+ "MutableReference": {
8372
+ "Struct": {
8373
+ "address": "0x2",
8374
+ "module": "tx_context",
8375
+ "name": "TxContext",
8376
+ "typeArguments": []
8377
+ }
8378
+ }
8379
+ }
8380
+ ],
8381
+ "return": [
8382
+ {
8383
+ "Struct": {
8384
+ "address": "0x2",
8385
+ "module": "coin",
8386
+ "name": "CoinMetadata",
8387
+ "typeArguments": [
8388
+ {
8389
+ "TypeParameter": 0
8390
+ }
8391
+ ]
8392
+ }
8393
+ },
8394
+ {
8395
+ "Struct": {
8396
+ "address": "0x2",
8397
+ "module": "coin_registry",
8398
+ "name": "Borrow",
8399
+ "typeArguments": [
8400
+ {
8401
+ "TypeParameter": 0
8402
+ }
8403
+ ]
8404
+ }
8405
+ }
8406
+ ]
8407
+ },
8408
+ "burn": {
8409
+ "visibility": "Public",
8410
+ "isEntry": false,
8411
+ "typeParameters": [
8412
+ {
8413
+ "abilities": []
8414
+ }
8415
+ ],
8416
+ "parameters": [
8417
+ {
8418
+ "MutableReference": {
8419
+ "Struct": {
8420
+ "address": "0x2",
8421
+ "module": "coin_registry",
8422
+ "name": "Currency",
8423
+ "typeArguments": [
8424
+ {
8425
+ "TypeParameter": 0
8426
+ }
8427
+ ]
8428
+ }
8429
+ }
8430
+ },
8431
+ {
8432
+ "Struct": {
8433
+ "address": "0x2",
8434
+ "module": "coin",
8435
+ "name": "Coin",
8436
+ "typeArguments": [
8437
+ {
8438
+ "TypeParameter": 0
8439
+ }
8440
+ ]
8441
+ }
8442
+ }
8443
+ ],
8444
+ "return": []
8445
+ },
8446
+ "burn_balance": {
8447
+ "visibility": "Public",
8448
+ "isEntry": false,
8449
+ "typeParameters": [
8450
+ {
8451
+ "abilities": []
8452
+ }
8453
+ ],
8454
+ "parameters": [
8455
+ {
8456
+ "MutableReference": {
8457
+ "Struct": {
8458
+ "address": "0x2",
8459
+ "module": "coin_registry",
8460
+ "name": "Currency",
8461
+ "typeArguments": [
8462
+ {
8463
+ "TypeParameter": 0
8464
+ }
8465
+ ]
8466
+ }
8467
+ }
8468
+ },
8469
+ {
8470
+ "Struct": {
8471
+ "address": "0x2",
8472
+ "module": "balance",
8473
+ "name": "Balance",
8474
+ "typeArguments": [
8475
+ {
8476
+ "TypeParameter": 0
8477
+ }
8478
+ ]
8479
+ }
8480
+ }
8481
+ ],
8482
+ "return": []
8483
+ },
8484
+ "claim_metadata_cap": {
8485
+ "visibility": "Public",
8486
+ "isEntry": false,
8487
+ "typeParameters": [
8488
+ {
8489
+ "abilities": []
8490
+ }
8491
+ ],
8492
+ "parameters": [
8493
+ {
8494
+ "MutableReference": {
8495
+ "Struct": {
8496
+ "address": "0x2",
8497
+ "module": "coin_registry",
8498
+ "name": "Currency",
8499
+ "typeArguments": [
8500
+ {
8501
+ "TypeParameter": 0
8502
+ }
8503
+ ]
8504
+ }
8505
+ }
8506
+ },
8507
+ {
8508
+ "Reference": {
8509
+ "Struct": {
8510
+ "address": "0x2",
8511
+ "module": "coin",
8512
+ "name": "TreasuryCap",
8513
+ "typeArguments": [
8514
+ {
8515
+ "TypeParameter": 0
8516
+ }
8517
+ ]
8518
+ }
8519
+ }
8520
+ },
8521
+ {
8522
+ "MutableReference": {
8523
+ "Struct": {
8524
+ "address": "0x2",
8525
+ "module": "tx_context",
8526
+ "name": "TxContext",
8527
+ "typeArguments": []
8528
+ }
8529
+ }
8530
+ }
8531
+ ],
8532
+ "return": [
8533
+ {
8534
+ "Struct": {
8535
+ "address": "0x2",
8536
+ "module": "coin_registry",
8537
+ "name": "MetadataCap",
8538
+ "typeArguments": [
8539
+ {
8540
+ "TypeParameter": 0
8541
+ }
8542
+ ]
8543
+ }
8544
+ }
8545
+ ]
8546
+ },
8547
+ "decimals": {
8548
+ "visibility": "Public",
8549
+ "isEntry": false,
8550
+ "typeParameters": [
8551
+ {
8552
+ "abilities": []
8553
+ }
8554
+ ],
8555
+ "parameters": [
8556
+ {
8557
+ "Reference": {
8558
+ "Struct": {
8559
+ "address": "0x2",
8560
+ "module": "coin_registry",
8561
+ "name": "Currency",
8562
+ "typeArguments": [
8563
+ {
8564
+ "TypeParameter": 0
8565
+ }
8566
+ ]
8567
+ }
8568
+ }
8569
+ }
8570
+ ],
8571
+ "return": [
8572
+ "U8"
8573
+ ]
8574
+ },
8575
+ "delete_metadata_cap": {
8576
+ "visibility": "Public",
8577
+ "isEntry": false,
8578
+ "typeParameters": [
8579
+ {
8580
+ "abilities": []
8581
+ }
8582
+ ],
8583
+ "parameters": [
8584
+ {
8585
+ "MutableReference": {
8586
+ "Struct": {
8587
+ "address": "0x2",
8588
+ "module": "coin_registry",
8589
+ "name": "Currency",
8590
+ "typeArguments": [
8591
+ {
8592
+ "TypeParameter": 0
8593
+ }
8594
+ ]
8595
+ }
8596
+ }
8597
+ },
8598
+ {
8599
+ "Struct": {
8600
+ "address": "0x2",
8601
+ "module": "coin_registry",
8602
+ "name": "MetadataCap",
8603
+ "typeArguments": [
8604
+ {
8605
+ "TypeParameter": 0
8606
+ }
8607
+ ]
8608
+ }
8609
+ }
8610
+ ],
8611
+ "return": []
8612
+ },
8613
+ "delete_migrated_legacy_metadata": {
8614
+ "visibility": "Public",
8615
+ "isEntry": false,
8616
+ "typeParameters": [
8617
+ {
8618
+ "abilities": []
8619
+ }
8620
+ ],
8621
+ "parameters": [
8622
+ {
8623
+ "MutableReference": {
8624
+ "Struct": {
8625
+ "address": "0x2",
8626
+ "module": "coin_registry",
8627
+ "name": "Currency",
8628
+ "typeArguments": [
8629
+ {
8630
+ "TypeParameter": 0
8631
+ }
8632
+ ]
8633
+ }
8634
+ }
8635
+ },
8636
+ {
8637
+ "Struct": {
8638
+ "address": "0x2",
8639
+ "module": "coin",
8640
+ "name": "CoinMetadata",
8641
+ "typeArguments": [
8642
+ {
8643
+ "TypeParameter": 0
8644
+ }
8645
+ ]
8646
+ }
8647
+ }
8648
+ ],
8649
+ "return": []
8650
+ },
8651
+ "deny_cap_id": {
8652
+ "visibility": "Public",
8653
+ "isEntry": false,
8654
+ "typeParameters": [
8655
+ {
8656
+ "abilities": []
8657
+ }
8658
+ ],
8659
+ "parameters": [
8660
+ {
8661
+ "Reference": {
8662
+ "Struct": {
8663
+ "address": "0x2",
8664
+ "module": "coin_registry",
8665
+ "name": "Currency",
8666
+ "typeArguments": [
8667
+ {
8668
+ "TypeParameter": 0
8669
+ }
8670
+ ]
8671
+ }
8672
+ }
8673
+ }
8674
+ ],
8675
+ "return": [
8676
+ {
8677
+ "Struct": {
8678
+ "address": "0x1",
8679
+ "module": "option",
8680
+ "name": "Option",
8681
+ "typeArguments": [
8682
+ {
8683
+ "Struct": {
8684
+ "address": "0x2",
8685
+ "module": "object",
8686
+ "name": "ID",
8687
+ "typeArguments": []
8688
+ }
8689
+ }
8690
+ ]
8691
+ }
8692
+ }
8693
+ ]
8694
+ },
8695
+ "description": {
8696
+ "visibility": "Public",
8697
+ "isEntry": false,
8698
+ "typeParameters": [
8699
+ {
8700
+ "abilities": []
8701
+ }
8702
+ ],
8703
+ "parameters": [
8704
+ {
8705
+ "Reference": {
8706
+ "Struct": {
8707
+ "address": "0x2",
8708
+ "module": "coin_registry",
8709
+ "name": "Currency",
8710
+ "typeArguments": [
8711
+ {
8712
+ "TypeParameter": 0
8713
+ }
8714
+ ]
8715
+ }
8716
+ }
8717
+ }
8718
+ ],
8719
+ "return": [
8720
+ {
8721
+ "Struct": {
8722
+ "address": "0x1",
8723
+ "module": "string",
8724
+ "name": "String",
8725
+ "typeArguments": []
8726
+ }
8727
+ }
8728
+ ]
8729
+ },
8730
+ "exists": {
8731
+ "visibility": "Public",
8732
+ "isEntry": false,
8733
+ "typeParameters": [
8734
+ {
8735
+ "abilities": []
8736
+ }
8737
+ ],
8738
+ "parameters": [
8739
+ {
8740
+ "Reference": {
8741
+ "Struct": {
8742
+ "address": "0x2",
8743
+ "module": "coin_registry",
8744
+ "name": "CoinRegistry",
8745
+ "typeArguments": []
8746
+ }
8747
+ }
8748
+ }
8749
+ ],
8750
+ "return": [
8751
+ "Bool"
8752
+ ]
8753
+ },
8754
+ "finalize": {
8755
+ "visibility": "Public",
8756
+ "isEntry": false,
8757
+ "typeParameters": [
8758
+ {
8759
+ "abilities": []
8760
+ }
8761
+ ],
8762
+ "parameters": [
8763
+ {
8764
+ "Struct": {
8765
+ "address": "0x2",
8766
+ "module": "coin_registry",
8767
+ "name": "CurrencyInitializer",
8768
+ "typeArguments": [
8769
+ {
8770
+ "TypeParameter": 0
8771
+ }
8772
+ ]
8773
+ }
8774
+ },
8775
+ {
8776
+ "MutableReference": {
8777
+ "Struct": {
8778
+ "address": "0x2",
8779
+ "module": "tx_context",
8780
+ "name": "TxContext",
8781
+ "typeArguments": []
8782
+ }
8783
+ }
8784
+ }
8785
+ ],
8786
+ "return": [
8787
+ {
8788
+ "Struct": {
8789
+ "address": "0x2",
8790
+ "module": "coin_registry",
8791
+ "name": "MetadataCap",
8792
+ "typeArguments": [
8793
+ {
8794
+ "TypeParameter": 0
8795
+ }
8796
+ ]
8797
+ }
8798
+ }
8799
+ ]
8800
+ },
8801
+ "finalize_and_delete_metadata_cap": {
8802
+ "visibility": "Public",
8803
+ "isEntry": false,
8804
+ "typeParameters": [
8805
+ {
8806
+ "abilities": []
8807
+ }
8808
+ ],
8809
+ "parameters": [
8810
+ {
8811
+ "Struct": {
8812
+ "address": "0x2",
8813
+ "module": "coin_registry",
8814
+ "name": "CurrencyInitializer",
8815
+ "typeArguments": [
8816
+ {
8817
+ "TypeParameter": 0
8818
+ }
8819
+ ]
8820
+ }
8821
+ },
8822
+ {
8823
+ "MutableReference": {
8824
+ "Struct": {
8825
+ "address": "0x2",
8826
+ "module": "tx_context",
8827
+ "name": "TxContext",
8828
+ "typeArguments": []
8829
+ }
8830
+ }
8831
+ }
8832
+ ],
8833
+ "return": []
8834
+ },
8835
+ "finalize_registration": {
8836
+ "visibility": "Public",
8837
+ "isEntry": false,
8838
+ "typeParameters": [
8839
+ {
8840
+ "abilities": []
8841
+ }
8842
+ ],
8843
+ "parameters": [
8844
+ {
8845
+ "MutableReference": {
8846
+ "Struct": {
8847
+ "address": "0x2",
8848
+ "module": "coin_registry",
8849
+ "name": "CoinRegistry",
8850
+ "typeArguments": []
8851
+ }
8852
+ }
8853
+ },
8854
+ {
8855
+ "Struct": {
8856
+ "address": "0x2",
8857
+ "module": "transfer",
8858
+ "name": "Receiving",
8859
+ "typeArguments": [
8860
+ {
8861
+ "Struct": {
8862
+ "address": "0x2",
8863
+ "module": "coin_registry",
8864
+ "name": "Currency",
8865
+ "typeArguments": [
8866
+ {
8867
+ "TypeParameter": 0
8868
+ }
8869
+ ]
8870
+ }
8871
+ }
8872
+ ]
8873
+ }
8874
+ },
8875
+ {
8876
+ "MutableReference": {
8877
+ "Struct": {
8878
+ "address": "0x2",
8879
+ "module": "tx_context",
8880
+ "name": "TxContext",
8881
+ "typeArguments": []
8882
+ }
8883
+ }
8884
+ }
8885
+ ],
8886
+ "return": []
8887
+ },
8888
+ "icon_url": {
8889
+ "visibility": "Public",
8890
+ "isEntry": false,
8891
+ "typeParameters": [
8892
+ {
8893
+ "abilities": []
8894
+ }
8895
+ ],
8896
+ "parameters": [
8897
+ {
8898
+ "Reference": {
8899
+ "Struct": {
8900
+ "address": "0x2",
8901
+ "module": "coin_registry",
8902
+ "name": "Currency",
8903
+ "typeArguments": [
8904
+ {
8905
+ "TypeParameter": 0
8906
+ }
8907
+ ]
8908
+ }
8909
+ }
8910
+ }
8911
+ ],
8912
+ "return": [
8913
+ {
8914
+ "Struct": {
8915
+ "address": "0x1",
8916
+ "module": "string",
8917
+ "name": "String",
8918
+ "typeArguments": []
8919
+ }
8920
+ }
8921
+ ]
8922
+ },
8923
+ "is_metadata_cap_claimed": {
8924
+ "visibility": "Public",
8925
+ "isEntry": false,
8926
+ "typeParameters": [
8927
+ {
8928
+ "abilities": []
8929
+ }
8930
+ ],
8931
+ "parameters": [
8932
+ {
8933
+ "Reference": {
8934
+ "Struct": {
8935
+ "address": "0x2",
8936
+ "module": "coin_registry",
8937
+ "name": "Currency",
8938
+ "typeArguments": [
8939
+ {
8940
+ "TypeParameter": 0
8941
+ }
8942
+ ]
8943
+ }
8944
+ }
8945
+ }
8946
+ ],
8947
+ "return": [
8948
+ "Bool"
8949
+ ]
8950
+ },
8951
+ "is_metadata_cap_deleted": {
8952
+ "visibility": "Public",
8953
+ "isEntry": false,
8954
+ "typeParameters": [
8955
+ {
8956
+ "abilities": []
8957
+ }
8958
+ ],
8959
+ "parameters": [
8960
+ {
8961
+ "Reference": {
8962
+ "Struct": {
8963
+ "address": "0x2",
8964
+ "module": "coin_registry",
8965
+ "name": "Currency",
8966
+ "typeArguments": [
8967
+ {
8968
+ "TypeParameter": 0
8969
+ }
8970
+ ]
8971
+ }
8972
+ }
8973
+ }
8974
+ ],
8975
+ "return": [
8976
+ "Bool"
8977
+ ]
8978
+ },
8979
+ "is_regulated": {
8980
+ "visibility": "Public",
8981
+ "isEntry": false,
8982
+ "typeParameters": [
8983
+ {
8984
+ "abilities": []
8985
+ }
8986
+ ],
8987
+ "parameters": [
8988
+ {
8989
+ "Reference": {
8990
+ "Struct": {
8991
+ "address": "0x2",
8992
+ "module": "coin_registry",
8993
+ "name": "Currency",
8994
+ "typeArguments": [
8995
+ {
8996
+ "TypeParameter": 0
8997
+ }
8998
+ ]
8999
+ }
9000
+ }
9001
+ }
9002
+ ],
9003
+ "return": [
9004
+ "Bool"
9005
+ ]
9006
+ },
9007
+ "is_supply_burn_only": {
9008
+ "visibility": "Public",
9009
+ "isEntry": false,
9010
+ "typeParameters": [
9011
+ {
9012
+ "abilities": []
9013
+ }
9014
+ ],
9015
+ "parameters": [
9016
+ {
9017
+ "Reference": {
9018
+ "Struct": {
9019
+ "address": "0x2",
9020
+ "module": "coin_registry",
9021
+ "name": "Currency",
9022
+ "typeArguments": [
9023
+ {
9024
+ "TypeParameter": 0
9025
+ }
9026
+ ]
9027
+ }
9028
+ }
9029
+ }
9030
+ ],
9031
+ "return": [
9032
+ "Bool"
9033
+ ]
9034
+ },
9035
+ "is_supply_fixed": {
9036
+ "visibility": "Public",
9037
+ "isEntry": false,
9038
+ "typeParameters": [
9039
+ {
9040
+ "abilities": []
9041
+ }
9042
+ ],
9043
+ "parameters": [
9044
+ {
9045
+ "Reference": {
9046
+ "Struct": {
9047
+ "address": "0x2",
9048
+ "module": "coin_registry",
9049
+ "name": "Currency",
9050
+ "typeArguments": [
9051
+ {
9052
+ "TypeParameter": 0
9053
+ }
9054
+ ]
9055
+ }
9056
+ }
9057
+ }
9058
+ ],
9059
+ "return": [
9060
+ "Bool"
9061
+ ]
9062
+ },
9063
+ "make_regulated": {
9064
+ "visibility": "Public",
9065
+ "isEntry": false,
9066
+ "typeParameters": [
9067
+ {
9068
+ "abilities": []
9069
+ }
9070
+ ],
9071
+ "parameters": [
9072
+ {
9073
+ "MutableReference": {
9074
+ "Struct": {
9075
+ "address": "0x2",
9076
+ "module": "coin_registry",
9077
+ "name": "CurrencyInitializer",
9078
+ "typeArguments": [
9079
+ {
9080
+ "TypeParameter": 0
9081
+ }
9082
+ ]
9083
+ }
9084
+ }
9085
+ },
9086
+ "Bool",
9087
+ {
9088
+ "MutableReference": {
9089
+ "Struct": {
9090
+ "address": "0x2",
9091
+ "module": "tx_context",
9092
+ "name": "TxContext",
9093
+ "typeArguments": []
9094
+ }
9095
+ }
9096
+ }
9097
+ ],
9098
+ "return": [
9099
+ {
9100
+ "Struct": {
9101
+ "address": "0x2",
9102
+ "module": "coin",
9103
+ "name": "DenyCapV2",
9104
+ "typeArguments": [
9105
+ {
9106
+ "TypeParameter": 0
9107
+ }
9108
+ ]
9109
+ }
9110
+ }
9111
+ ]
9112
+ },
9113
+ "make_supply_burn_only": {
9114
+ "visibility": "Public",
9115
+ "isEntry": false,
9116
+ "typeParameters": [
9117
+ {
9118
+ "abilities": []
9119
+ }
9120
+ ],
9121
+ "parameters": [
9122
+ {
9123
+ "MutableReference": {
9124
+ "Struct": {
9125
+ "address": "0x2",
9126
+ "module": "coin_registry",
9127
+ "name": "Currency",
9128
+ "typeArguments": [
9129
+ {
9130
+ "TypeParameter": 0
9131
+ }
9132
+ ]
9133
+ }
9134
+ }
9135
+ },
9136
+ {
9137
+ "Struct": {
9138
+ "address": "0x2",
9139
+ "module": "coin",
9140
+ "name": "TreasuryCap",
9141
+ "typeArguments": [
9142
+ {
9143
+ "TypeParameter": 0
9144
+ }
9145
+ ]
9146
+ }
9147
+ }
9148
+ ],
9149
+ "return": []
9150
+ },
9151
+ "make_supply_burn_only_init": {
9152
+ "visibility": "Public",
9153
+ "isEntry": false,
9154
+ "typeParameters": [
9155
+ {
9156
+ "abilities": []
9157
+ }
9158
+ ],
9159
+ "parameters": [
9160
+ {
9161
+ "MutableReference": {
9162
+ "Struct": {
9163
+ "address": "0x2",
9164
+ "module": "coin_registry",
9165
+ "name": "CurrencyInitializer",
9166
+ "typeArguments": [
9167
+ {
9168
+ "TypeParameter": 0
9169
+ }
9170
+ ]
9171
+ }
9172
+ }
9173
+ },
9174
+ {
9175
+ "Struct": {
9176
+ "address": "0x2",
9177
+ "module": "coin",
9178
+ "name": "TreasuryCap",
9179
+ "typeArguments": [
9180
+ {
9181
+ "TypeParameter": 0
9182
+ }
9183
+ ]
9184
+ }
9185
+ }
9186
+ ],
9187
+ "return": []
9188
+ },
9189
+ "make_supply_fixed": {
9190
+ "visibility": "Public",
9191
+ "isEntry": false,
9192
+ "typeParameters": [
9193
+ {
9194
+ "abilities": []
9195
+ }
9196
+ ],
9197
+ "parameters": [
9198
+ {
9199
+ "MutableReference": {
9200
+ "Struct": {
9201
+ "address": "0x2",
9202
+ "module": "coin_registry",
9203
+ "name": "Currency",
9204
+ "typeArguments": [
9205
+ {
9206
+ "TypeParameter": 0
9207
+ }
9208
+ ]
9209
+ }
9210
+ }
9211
+ },
9212
+ {
9213
+ "Struct": {
9214
+ "address": "0x2",
9215
+ "module": "coin",
9216
+ "name": "TreasuryCap",
9217
+ "typeArguments": [
9218
+ {
9219
+ "TypeParameter": 0
9220
+ }
9221
+ ]
9222
+ }
9223
+ }
9224
+ ],
9225
+ "return": []
9226
+ },
9227
+ "make_supply_fixed_init": {
9228
+ "visibility": "Public",
9229
+ "isEntry": false,
9230
+ "typeParameters": [
9231
+ {
9232
+ "abilities": []
9233
+ }
9234
+ ],
9235
+ "parameters": [
9236
+ {
9237
+ "MutableReference": {
9238
+ "Struct": {
9239
+ "address": "0x2",
9240
+ "module": "coin_registry",
9241
+ "name": "CurrencyInitializer",
9242
+ "typeArguments": [
9243
+ {
9244
+ "TypeParameter": 0
9245
+ }
9246
+ ]
9247
+ }
9248
+ }
9249
+ },
9250
+ {
9251
+ "Struct": {
9252
+ "address": "0x2",
9253
+ "module": "coin",
9254
+ "name": "TreasuryCap",
9255
+ "typeArguments": [
9256
+ {
9257
+ "TypeParameter": 0
9258
+ }
9259
+ ]
9260
+ }
9261
+ }
9262
+ ],
9263
+ "return": []
9264
+ },
9265
+ "metadata_cap_id": {
9266
+ "visibility": "Public",
9267
+ "isEntry": false,
9268
+ "typeParameters": [
9269
+ {
9270
+ "abilities": []
9271
+ }
9272
+ ],
9273
+ "parameters": [
9274
+ {
9275
+ "Reference": {
9276
+ "Struct": {
9277
+ "address": "0x2",
9278
+ "module": "coin_registry",
9279
+ "name": "Currency",
9280
+ "typeArguments": [
9281
+ {
9282
+ "TypeParameter": 0
9283
+ }
9284
+ ]
9285
+ }
9286
+ }
9287
+ }
9288
+ ],
9289
+ "return": [
9290
+ {
9291
+ "Struct": {
9292
+ "address": "0x1",
9293
+ "module": "option",
9294
+ "name": "Option",
9295
+ "typeArguments": [
9296
+ {
9297
+ "Struct": {
9298
+ "address": "0x2",
9299
+ "module": "object",
9300
+ "name": "ID",
9301
+ "typeArguments": []
9302
+ }
9303
+ }
9304
+ ]
9305
+ }
9306
+ }
9307
+ ]
9308
+ },
9309
+ "migrate_legacy_metadata": {
9310
+ "visibility": "Public",
9311
+ "isEntry": false,
9312
+ "typeParameters": [
9313
+ {
9314
+ "abilities": []
9315
+ }
9316
+ ],
9317
+ "parameters": [
9318
+ {
9319
+ "MutableReference": {
9320
+ "Struct": {
9321
+ "address": "0x2",
9322
+ "module": "coin_registry",
9323
+ "name": "CoinRegistry",
9324
+ "typeArguments": []
9325
+ }
9326
+ }
9327
+ },
9328
+ {
9329
+ "Reference": {
9330
+ "Struct": {
9331
+ "address": "0x2",
9332
+ "module": "coin",
9333
+ "name": "CoinMetadata",
9334
+ "typeArguments": [
9335
+ {
9336
+ "TypeParameter": 0
9337
+ }
9338
+ ]
9339
+ }
9340
+ }
9341
+ },
9342
+ {
9343
+ "MutableReference": {
9344
+ "Struct": {
9345
+ "address": "0x2",
9346
+ "module": "tx_context",
9347
+ "name": "TxContext",
9348
+ "typeArguments": []
9349
+ }
9350
+ }
9351
+ }
9352
+ ],
9353
+ "return": []
9354
+ },
9355
+ "migrate_regulated_state_by_cap": {
9356
+ "visibility": "Public",
9357
+ "isEntry": false,
9358
+ "typeParameters": [
9359
+ {
9360
+ "abilities": []
9361
+ }
9362
+ ],
9363
+ "parameters": [
9364
+ {
9365
+ "MutableReference": {
9366
+ "Struct": {
9367
+ "address": "0x2",
9368
+ "module": "coin_registry",
9369
+ "name": "Currency",
9370
+ "typeArguments": [
9371
+ {
9372
+ "TypeParameter": 0
9373
+ }
9374
+ ]
9375
+ }
9376
+ }
9377
+ },
9378
+ {
9379
+ "Reference": {
9380
+ "Struct": {
9381
+ "address": "0x2",
9382
+ "module": "coin",
9383
+ "name": "DenyCapV2",
9384
+ "typeArguments": [
9385
+ {
9386
+ "TypeParameter": 0
9387
+ }
9388
+ ]
9389
+ }
9390
+ }
9391
+ }
9392
+ ],
9393
+ "return": []
9394
+ },
9395
+ "migrate_regulated_state_by_metadata": {
9396
+ "visibility": "Public",
9397
+ "isEntry": false,
9398
+ "typeParameters": [
9399
+ {
9400
+ "abilities": []
9401
+ }
9402
+ ],
9403
+ "parameters": [
9404
+ {
9405
+ "MutableReference": {
9406
+ "Struct": {
9407
+ "address": "0x2",
9408
+ "module": "coin_registry",
9409
+ "name": "Currency",
9410
+ "typeArguments": [
9411
+ {
9412
+ "TypeParameter": 0
9413
+ }
9414
+ ]
9415
+ }
9416
+ }
9417
+ },
9418
+ {
9419
+ "Reference": {
9420
+ "Struct": {
9421
+ "address": "0x2",
9422
+ "module": "coin",
9423
+ "name": "RegulatedCoinMetadata",
9424
+ "typeArguments": [
9425
+ {
9426
+ "TypeParameter": 0
9427
+ }
9428
+ ]
9429
+ }
9430
+ }
9431
+ }
9432
+ ],
9433
+ "return": []
9434
+ },
9435
+ "name": {
9436
+ "visibility": "Public",
9437
+ "isEntry": false,
9438
+ "typeParameters": [
9439
+ {
9440
+ "abilities": []
9441
+ }
9442
+ ],
9443
+ "parameters": [
9444
+ {
9445
+ "Reference": {
9446
+ "Struct": {
9447
+ "address": "0x2",
9448
+ "module": "coin_registry",
9449
+ "name": "Currency",
9450
+ "typeArguments": [
9451
+ {
9452
+ "TypeParameter": 0
9453
+ }
9454
+ ]
9455
+ }
9456
+ }
9457
+ }
9458
+ ],
9459
+ "return": [
9460
+ {
9461
+ "Struct": {
9462
+ "address": "0x1",
9463
+ "module": "string",
9464
+ "name": "String",
9465
+ "typeArguments": []
9466
+ }
9467
+ }
9468
+ ]
9469
+ },
9470
+ "new_currency": {
9471
+ "visibility": "Public",
9472
+ "isEntry": false,
9473
+ "typeParameters": [
9474
+ {
9475
+ "abilities": [
9476
+ "Key"
9477
+ ]
9478
+ }
9479
+ ],
9480
+ "parameters": [
9481
+ {
9482
+ "MutableReference": {
9483
+ "Struct": {
9484
+ "address": "0x2",
9485
+ "module": "coin_registry",
9486
+ "name": "CoinRegistry",
9487
+ "typeArguments": []
9488
+ }
9489
+ }
9490
+ },
9491
+ "U8",
9492
+ {
9493
+ "Struct": {
9494
+ "address": "0x1",
9495
+ "module": "string",
9496
+ "name": "String",
9497
+ "typeArguments": []
9498
+ }
9499
+ },
9500
+ {
9501
+ "Struct": {
9502
+ "address": "0x1",
9503
+ "module": "string",
9504
+ "name": "String",
9505
+ "typeArguments": []
9506
+ }
9507
+ },
9508
+ {
9509
+ "Struct": {
9510
+ "address": "0x1",
9511
+ "module": "string",
9512
+ "name": "String",
9513
+ "typeArguments": []
9514
+ }
9515
+ },
9516
+ {
9517
+ "Struct": {
9518
+ "address": "0x1",
9519
+ "module": "string",
9520
+ "name": "String",
9521
+ "typeArguments": []
9522
+ }
9523
+ },
9524
+ {
9525
+ "MutableReference": {
9526
+ "Struct": {
9527
+ "address": "0x2",
9528
+ "module": "tx_context",
9529
+ "name": "TxContext",
9530
+ "typeArguments": []
9531
+ }
9532
+ }
9533
+ }
9534
+ ],
9535
+ "return": [
9536
+ {
9537
+ "Struct": {
9538
+ "address": "0x2",
9539
+ "module": "coin_registry",
9540
+ "name": "CurrencyInitializer",
9541
+ "typeArguments": [
9542
+ {
9543
+ "TypeParameter": 0
9544
+ }
9545
+ ]
9546
+ }
9547
+ },
9548
+ {
9549
+ "Struct": {
9550
+ "address": "0x2",
9551
+ "module": "coin",
9552
+ "name": "TreasuryCap",
9553
+ "typeArguments": [
9554
+ {
9555
+ "TypeParameter": 0
9556
+ }
9557
+ ]
9558
+ }
9559
+ }
9560
+ ]
9561
+ },
9562
+ "new_currency_with_otw": {
9563
+ "visibility": "Public",
9564
+ "isEntry": false,
9565
+ "typeParameters": [
9566
+ {
9567
+ "abilities": [
9568
+ "Drop"
9569
+ ]
9570
+ }
9571
+ ],
9572
+ "parameters": [
9573
+ {
9574
+ "TypeParameter": 0
9575
+ },
9576
+ "U8",
9577
+ {
9578
+ "Struct": {
9579
+ "address": "0x1",
9580
+ "module": "string",
9581
+ "name": "String",
9582
+ "typeArguments": []
9583
+ }
9584
+ },
9585
+ {
9586
+ "Struct": {
9587
+ "address": "0x1",
9588
+ "module": "string",
9589
+ "name": "String",
9590
+ "typeArguments": []
9591
+ }
9592
+ },
9593
+ {
9594
+ "Struct": {
9595
+ "address": "0x1",
9596
+ "module": "string",
9597
+ "name": "String",
9598
+ "typeArguments": []
9599
+ }
9600
+ },
9601
+ {
9602
+ "Struct": {
9603
+ "address": "0x1",
9604
+ "module": "string",
9605
+ "name": "String",
9606
+ "typeArguments": []
9607
+ }
9608
+ },
9609
+ {
9610
+ "MutableReference": {
9611
+ "Struct": {
9612
+ "address": "0x2",
9613
+ "module": "tx_context",
9614
+ "name": "TxContext",
9615
+ "typeArguments": []
9616
+ }
9617
+ }
9618
+ }
9619
+ ],
9620
+ "return": [
9621
+ {
9622
+ "Struct": {
9623
+ "address": "0x2",
9624
+ "module": "coin_registry",
9625
+ "name": "CurrencyInitializer",
9626
+ "typeArguments": [
9627
+ {
9628
+ "TypeParameter": 0
9629
+ }
9630
+ ]
9631
+ }
9632
+ },
9633
+ {
9634
+ "Struct": {
9635
+ "address": "0x2",
9636
+ "module": "coin",
9637
+ "name": "TreasuryCap",
9638
+ "typeArguments": [
9639
+ {
9640
+ "TypeParameter": 0
9641
+ }
9642
+ ]
9643
+ }
9644
+ }
9645
+ ]
9646
+ },
9647
+ "return_borrowed_legacy_metadata": {
9648
+ "visibility": "Public",
9649
+ "isEntry": false,
9650
+ "typeParameters": [
9651
+ {
9652
+ "abilities": []
9653
+ }
9654
+ ],
9655
+ "parameters": [
9656
+ {
9657
+ "MutableReference": {
9658
+ "Struct": {
9659
+ "address": "0x2",
9660
+ "module": "coin_registry",
9661
+ "name": "Currency",
9662
+ "typeArguments": [
9663
+ {
9664
+ "TypeParameter": 0
9665
+ }
9666
+ ]
9667
+ }
9668
+ }
9669
+ },
9670
+ {
9671
+ "Struct": {
9672
+ "address": "0x2",
9673
+ "module": "coin",
9674
+ "name": "CoinMetadata",
9675
+ "typeArguments": [
9676
+ {
9677
+ "TypeParameter": 0
9678
+ }
9679
+ ]
9680
+ }
9681
+ },
9682
+ {
9683
+ "Struct": {
9684
+ "address": "0x2",
9685
+ "module": "coin_registry",
9686
+ "name": "Borrow",
9687
+ "typeArguments": [
9688
+ {
9689
+ "TypeParameter": 0
9690
+ }
9691
+ ]
9692
+ }
9693
+ },
9694
+ {
9695
+ "MutableReference": {
9696
+ "Struct": {
9697
+ "address": "0x2",
9698
+ "module": "tx_context",
9699
+ "name": "TxContext",
9700
+ "typeArguments": []
9701
+ }
9702
+ }
9703
+ }
9704
+ ],
9705
+ "return": []
9706
+ },
9707
+ "set_description": {
9708
+ "visibility": "Public",
9709
+ "isEntry": false,
9710
+ "typeParameters": [
9711
+ {
9712
+ "abilities": []
9713
+ }
9714
+ ],
9715
+ "parameters": [
9716
+ {
9717
+ "MutableReference": {
9718
+ "Struct": {
9719
+ "address": "0x2",
9720
+ "module": "coin_registry",
9721
+ "name": "Currency",
9722
+ "typeArguments": [
9723
+ {
9724
+ "TypeParameter": 0
9725
+ }
9726
+ ]
9727
+ }
9728
+ }
9729
+ },
9730
+ {
9731
+ "Reference": {
9732
+ "Struct": {
9733
+ "address": "0x2",
9734
+ "module": "coin_registry",
9735
+ "name": "MetadataCap",
9736
+ "typeArguments": [
9737
+ {
9738
+ "TypeParameter": 0
9739
+ }
9740
+ ]
9741
+ }
9742
+ }
9743
+ },
9744
+ {
9745
+ "Struct": {
9746
+ "address": "0x1",
9747
+ "module": "string",
9748
+ "name": "String",
9749
+ "typeArguments": []
9750
+ }
9751
+ }
9752
+ ],
9753
+ "return": []
9754
+ },
9755
+ "set_icon_url": {
9756
+ "visibility": "Public",
9757
+ "isEntry": false,
9758
+ "typeParameters": [
9759
+ {
9760
+ "abilities": []
9761
+ }
9762
+ ],
9763
+ "parameters": [
9764
+ {
9765
+ "MutableReference": {
9766
+ "Struct": {
9767
+ "address": "0x2",
9768
+ "module": "coin_registry",
9769
+ "name": "Currency",
9770
+ "typeArguments": [
9771
+ {
9772
+ "TypeParameter": 0
9773
+ }
9774
+ ]
9775
+ }
9776
+ }
9777
+ },
9778
+ {
9779
+ "Reference": {
9780
+ "Struct": {
9781
+ "address": "0x2",
9782
+ "module": "coin_registry",
9783
+ "name": "MetadataCap",
9784
+ "typeArguments": [
9785
+ {
9786
+ "TypeParameter": 0
9787
+ }
9788
+ ]
9789
+ }
9790
+ }
9791
+ },
9792
+ {
9793
+ "Struct": {
9794
+ "address": "0x1",
9795
+ "module": "string",
9796
+ "name": "String",
9797
+ "typeArguments": []
9798
+ }
9799
+ }
9800
+ ],
9801
+ "return": []
9802
+ },
9803
+ "set_name": {
9804
+ "visibility": "Public",
9805
+ "isEntry": false,
9806
+ "typeParameters": [
9807
+ {
9808
+ "abilities": []
9809
+ }
9810
+ ],
9811
+ "parameters": [
9812
+ {
9813
+ "MutableReference": {
9814
+ "Struct": {
9815
+ "address": "0x2",
9816
+ "module": "coin_registry",
9817
+ "name": "Currency",
9818
+ "typeArguments": [
9819
+ {
9820
+ "TypeParameter": 0
9821
+ }
9822
+ ]
9823
+ }
9824
+ }
9825
+ },
9826
+ {
9827
+ "Reference": {
9828
+ "Struct": {
9829
+ "address": "0x2",
9830
+ "module": "coin_registry",
9831
+ "name": "MetadataCap",
9832
+ "typeArguments": [
9833
+ {
9834
+ "TypeParameter": 0
9835
+ }
9836
+ ]
9837
+ }
9838
+ }
9839
+ },
9840
+ {
9841
+ "Struct": {
9842
+ "address": "0x1",
9843
+ "module": "string",
9844
+ "name": "String",
9845
+ "typeArguments": []
9846
+ }
9847
+ }
9848
+ ],
9849
+ "return": []
9850
+ },
9851
+ "set_treasury_cap_id": {
9852
+ "visibility": "Public",
9853
+ "isEntry": false,
9854
+ "typeParameters": [
9855
+ {
9856
+ "abilities": []
9857
+ }
9858
+ ],
9859
+ "parameters": [
9860
+ {
9861
+ "MutableReference": {
9862
+ "Struct": {
9863
+ "address": "0x2",
9864
+ "module": "coin_registry",
9865
+ "name": "Currency",
9866
+ "typeArguments": [
9867
+ {
9868
+ "TypeParameter": 0
9869
+ }
9870
+ ]
9871
+ }
9872
+ }
9873
+ },
9874
+ {
9875
+ "Reference": {
9876
+ "Struct": {
9877
+ "address": "0x2",
9878
+ "module": "coin",
9879
+ "name": "TreasuryCap",
9880
+ "typeArguments": [
9881
+ {
9882
+ "TypeParameter": 0
9883
+ }
9884
+ ]
9885
+ }
9886
+ }
9887
+ }
9888
+ ],
9889
+ "return": []
9890
+ },
9891
+ "symbol": {
9892
+ "visibility": "Public",
9893
+ "isEntry": false,
9894
+ "typeParameters": [
9895
+ {
9896
+ "abilities": []
9897
+ }
9898
+ ],
9899
+ "parameters": [
9900
+ {
9901
+ "Reference": {
9902
+ "Struct": {
9903
+ "address": "0x2",
9904
+ "module": "coin_registry",
9905
+ "name": "Currency",
9906
+ "typeArguments": [
9907
+ {
9908
+ "TypeParameter": 0
9909
+ }
9910
+ ]
9911
+ }
9912
+ }
9913
+ }
9914
+ ],
9915
+ "return": [
9916
+ {
9917
+ "Struct": {
9918
+ "address": "0x1",
9919
+ "module": "string",
9920
+ "name": "String",
9921
+ "typeArguments": []
9922
+ }
9923
+ }
9924
+ ]
9925
+ },
9926
+ "total_supply": {
9927
+ "visibility": "Public",
9928
+ "isEntry": false,
9929
+ "typeParameters": [
9930
+ {
9931
+ "abilities": []
9932
+ }
9933
+ ],
9934
+ "parameters": [
9935
+ {
9936
+ "Reference": {
9937
+ "Struct": {
9938
+ "address": "0x2",
9939
+ "module": "coin_registry",
9940
+ "name": "Currency",
9941
+ "typeArguments": [
9942
+ {
9943
+ "TypeParameter": 0
9944
+ }
9945
+ ]
9946
+ }
9947
+ }
9948
+ }
9949
+ ],
9950
+ "return": [
9951
+ {
9952
+ "Struct": {
9953
+ "address": "0x1",
9954
+ "module": "option",
9955
+ "name": "Option",
9956
+ "typeArguments": [
9957
+ "U64"
9958
+ ]
9959
+ }
9960
+ }
9961
+ ]
9962
+ },
9963
+ "treasury_cap_id": {
9964
+ "visibility": "Public",
9965
+ "isEntry": false,
9966
+ "typeParameters": [
9967
+ {
9968
+ "abilities": []
9969
+ }
9970
+ ],
9971
+ "parameters": [
9972
+ {
9973
+ "Reference": {
9974
+ "Struct": {
9975
+ "address": "0x2",
9976
+ "module": "coin_registry",
9977
+ "name": "Currency",
9978
+ "typeArguments": [
9979
+ {
9980
+ "TypeParameter": 0
9981
+ }
9982
+ ]
9983
+ }
9984
+ }
9985
+ }
9986
+ ],
9987
+ "return": [
9988
+ {
9989
+ "Struct": {
9990
+ "address": "0x1",
9991
+ "module": "option",
9992
+ "name": "Option",
9993
+ "typeArguments": [
9994
+ {
9995
+ "Struct": {
9996
+ "address": "0x2",
9997
+ "module": "object",
9998
+ "name": "ID",
9999
+ "typeArguments": []
10000
+ }
10001
+ }
10002
+ ]
10003
+ }
10004
+ }
10005
+ ]
10006
+ },
10007
+ "update_from_legacy_metadata": {
10008
+ "visibility": "Public",
10009
+ "isEntry": false,
10010
+ "typeParameters": [
10011
+ {
10012
+ "abilities": []
10013
+ }
10014
+ ],
10015
+ "parameters": [
10016
+ {
10017
+ "MutableReference": {
10018
+ "Struct": {
10019
+ "address": "0x2",
10020
+ "module": "coin_registry",
10021
+ "name": "Currency",
10022
+ "typeArguments": [
10023
+ {
10024
+ "TypeParameter": 0
10025
+ }
10026
+ ]
10027
+ }
10028
+ }
10029
+ },
10030
+ {
10031
+ "Reference": {
10032
+ "Struct": {
10033
+ "address": "0x2",
10034
+ "module": "coin",
10035
+ "name": "CoinMetadata",
10036
+ "typeArguments": [
10037
+ {
10038
+ "TypeParameter": 0
10039
+ }
10040
+ ]
10041
+ }
10042
+ }
10043
+ }
10044
+ ],
10045
+ "return": []
10046
+ }
10047
+ }
10048
+ },
10049
+ "config": {
10050
+ "fileFormatVersion": 6,
10051
+ "address": "0x2",
10052
+ "name": "config",
10053
+ "friends": [
10054
+ {
10055
+ "address": "0x2",
10056
+ "name": "deny_list"
10057
+ }
10058
+ ],
10059
+ "structs": {
10060
+ "Config": {
10061
+ "abilities": {
10062
+ "abilities": [
10063
+ "Key"
10064
+ ]
10065
+ },
10066
+ "typeParameters": [
10067
+ {
10068
+ "constraints": {
10069
+ "abilities": []
10070
+ },
10071
+ "isPhantom": true
10072
+ }
10073
+ ],
10074
+ "fields": [
10075
+ {
10076
+ "name": "id",
10077
+ "type": {
10078
+ "Struct": {
10079
+ "address": "0x2",
10080
+ "module": "object",
10081
+ "name": "UID",
10082
+ "typeArguments": []
10083
+ }
10084
+ }
10085
+ }
10086
+ ]
10087
+ },
10088
+ "Setting": {
10089
+ "abilities": {
10090
+ "abilities": [
10091
+ "Drop",
10092
+ "Store"
10093
+ ]
10094
+ },
10095
+ "typeParameters": [
10096
+ {
10097
+ "constraints": {
10098
+ "abilities": [
10099
+ "Copy",
10100
+ "Drop",
10101
+ "Store"
10102
+ ]
10103
+ },
10104
+ "isPhantom": false
10105
+ }
10106
+ ],
10107
+ "fields": [
10108
+ {
10109
+ "name": "data",
10110
+ "type": {
10111
+ "Struct": {
10112
+ "address": "0x1",
10113
+ "module": "option",
10114
+ "name": "Option",
10115
+ "typeArguments": [
10116
+ {
10117
+ "Struct": {
10118
+ "address": "0x2",
10119
+ "module": "config",
10120
+ "name": "SettingData",
10121
+ "typeArguments": [
10122
+ {
10123
+ "TypeParameter": 0
10124
+ }
10125
+ ]
10126
+ }
10127
+ }
10128
+ ]
10129
+ }
10130
+ }
10131
+ }
10132
+ ]
10133
+ },
10134
+ "SettingData": {
10135
+ "abilities": {
10136
+ "abilities": [
10137
+ "Drop",
10138
+ "Store"
10139
+ ]
10140
+ },
10141
+ "typeParameters": [
10142
+ {
10143
+ "constraints": {
10144
+ "abilities": [
10145
+ "Copy",
10146
+ "Drop",
10147
+ "Store"
10148
+ ]
10149
+ },
10150
+ "isPhantom": false
10151
+ }
10152
+ ],
10153
+ "fields": [
10154
+ {
10155
+ "name": "newer_value_epoch",
10156
+ "type": "U64"
10157
+ },
10158
+ {
10159
+ "name": "newer_value",
10160
+ "type": {
10161
+ "Struct": {
10162
+ "address": "0x1",
10163
+ "module": "option",
10164
+ "name": "Option",
10165
+ "typeArguments": [
10166
+ {
10167
+ "TypeParameter": 0
10168
+ }
10169
+ ]
10170
+ }
10171
+ }
10172
+ },
10173
+ {
10174
+ "name": "older_value_opt",
10175
+ "type": {
10176
+ "Struct": {
10177
+ "address": "0x1",
10178
+ "module": "option",
10179
+ "name": "Option",
10180
+ "typeArguments": [
10181
+ {
10182
+ "TypeParameter": 0
10183
+ }
10184
+ ]
10185
+ }
10186
+ }
10187
+ }
10188
+ ]
10189
+ }
10190
+ },
10191
+ "exposedFunctions": {
10192
+ "add_for_next_epoch": {
10193
+ "visibility": "Friend",
10194
+ "isEntry": false,
10195
+ "typeParameters": [
10196
+ {
10197
+ "abilities": []
10198
+ },
10199
+ {
10200
+ "abilities": [
10201
+ "Copy",
10202
+ "Drop",
10203
+ "Store"
10204
+ ]
10205
+ },
10206
+ {
10207
+ "abilities": [
10208
+ "Copy",
10209
+ "Drop",
10210
+ "Store"
10211
+ ]
10212
+ }
10213
+ ],
10214
+ "parameters": [
10215
+ {
10216
+ "MutableReference": {
10217
+ "Struct": {
10218
+ "address": "0x2",
10219
+ "module": "config",
10220
+ "name": "Config",
10221
+ "typeArguments": [
10222
+ {
10223
+ "TypeParameter": 0
10224
+ }
10225
+ ]
10226
+ }
10227
+ }
10228
+ },
10229
+ {
10230
+ "MutableReference": {
10231
+ "TypeParameter": 0
10232
+ }
10233
+ },
10234
+ {
10235
+ "TypeParameter": 1
10236
+ },
10237
+ {
10238
+ "TypeParameter": 2
10239
+ },
10240
+ {
10241
+ "MutableReference": {
10242
+ "Struct": {
10243
+ "address": "0x2",
10244
+ "module": "tx_context",
10245
+ "name": "TxContext",
10246
+ "typeArguments": []
10247
+ }
10248
+ }
10249
+ }
10250
+ ],
10251
+ "return": [
10252
+ {
10253
+ "Struct": {
10254
+ "address": "0x1",
10255
+ "module": "option",
10256
+ "name": "Option",
10257
+ "typeArguments": [
10258
+ {
10259
+ "TypeParameter": 2
10260
+ }
10261
+ ]
10262
+ }
10263
+ }
10264
+ ]
10265
+ },
10266
+ "borrow_for_next_epoch_mut": {
10267
+ "visibility": "Friend",
10268
+ "isEntry": false,
10269
+ "typeParameters": [
10270
+ {
10271
+ "abilities": []
10272
+ },
10273
+ {
10274
+ "abilities": [
10275
+ "Copy",
10276
+ "Drop",
10277
+ "Store"
10278
+ ]
10279
+ },
10280
+ {
10281
+ "abilities": [
10282
+ "Copy",
10283
+ "Drop",
10284
+ "Store"
10285
+ ]
10286
+ }
10287
+ ],
10288
+ "parameters": [
10289
+ {
10290
+ "MutableReference": {
10291
+ "Struct": {
7299
10292
  "address": "0x2",
7300
10293
  "module": "config",
7301
10294
  "name": "Config",
@@ -10149,25 +13142,100 @@
10149
13142
  }
10150
13143
  },
10151
13144
  {
10152
- "TypeParameter": 0
10153
- }
13145
+ "TypeParameter": 0
13146
+ }
13147
+ ],
13148
+ "return": [
13149
+ {
13150
+ "TypeParameter": 1
13151
+ }
13152
+ ]
13153
+ }
13154
+ }
13155
+ },
13156
+ "ecdsa_k1": {
13157
+ "fileFormatVersion": 6,
13158
+ "address": "0x2",
13159
+ "name": "ecdsa_k1",
13160
+ "friends": [],
13161
+ "structs": {},
13162
+ "exposedFunctions": {
13163
+ "decompress_pubkey": {
13164
+ "visibility": "Public",
13165
+ "isEntry": false,
13166
+ "typeParameters": [],
13167
+ "parameters": [
13168
+ {
13169
+ "Reference": {
13170
+ "Vector": "U8"
13171
+ }
13172
+ }
13173
+ ],
13174
+ "return": [
13175
+ {
13176
+ "Vector": "U8"
13177
+ }
13178
+ ]
13179
+ },
13180
+ "secp256k1_ecrecover": {
13181
+ "visibility": "Public",
13182
+ "isEntry": false,
13183
+ "typeParameters": [],
13184
+ "parameters": [
13185
+ {
13186
+ "Reference": {
13187
+ "Vector": "U8"
13188
+ }
13189
+ },
13190
+ {
13191
+ "Reference": {
13192
+ "Vector": "U8"
13193
+ }
13194
+ },
13195
+ "U8"
13196
+ ],
13197
+ "return": [
13198
+ {
13199
+ "Vector": "U8"
13200
+ }
13201
+ ]
13202
+ },
13203
+ "secp256k1_verify": {
13204
+ "visibility": "Public",
13205
+ "isEntry": false,
13206
+ "typeParameters": [],
13207
+ "parameters": [
13208
+ {
13209
+ "Reference": {
13210
+ "Vector": "U8"
13211
+ }
13212
+ },
13213
+ {
13214
+ "Reference": {
13215
+ "Vector": "U8"
13216
+ }
13217
+ },
13218
+ {
13219
+ "Reference": {
13220
+ "Vector": "U8"
13221
+ }
13222
+ },
13223
+ "U8"
10154
13224
  ],
10155
13225
  "return": [
10156
- {
10157
- "TypeParameter": 1
10158
- }
13226
+ "Bool"
10159
13227
  ]
10160
13228
  }
10161
13229
  }
10162
13230
  },
10163
- "ecdsa_k1": {
13231
+ "ecdsa_r1": {
10164
13232
  "fileFormatVersion": 6,
10165
13233
  "address": "0x2",
10166
- "name": "ecdsa_k1",
13234
+ "name": "ecdsa_r1",
10167
13235
  "friends": [],
10168
13236
  "structs": {},
10169
13237
  "exposedFunctions": {
10170
- "decompress_pubkey": {
13238
+ "secp256r1_ecrecover": {
10171
13239
  "visibility": "Public",
10172
13240
  "isEntry": false,
10173
13241
  "typeParameters": [],
@@ -10176,7 +13244,13 @@
10176
13244
  "Reference": {
10177
13245
  "Vector": "U8"
10178
13246
  }
10179
- }
13247
+ },
13248
+ {
13249
+ "Reference": {
13250
+ "Vector": "U8"
13251
+ }
13252
+ },
13253
+ "U8"
10180
13254
  ],
10181
13255
  "return": [
10182
13256
  {
@@ -10184,7 +13258,7 @@
10184
13258
  }
10185
13259
  ]
10186
13260
  },
10187
- "secp256k1_ecrecover": {
13261
+ "secp256r1_verify": {
10188
13262
  "visibility": "Public",
10189
13263
  "isEntry": false,
10190
13264
  "typeParameters": [],
@@ -10199,15 +13273,27 @@
10199
13273
  "Vector": "U8"
10200
13274
  }
10201
13275
  },
13276
+ {
13277
+ "Reference": {
13278
+ "Vector": "U8"
13279
+ }
13280
+ },
10202
13281
  "U8"
10203
13282
  ],
10204
13283
  "return": [
10205
- {
10206
- "Vector": "U8"
10207
- }
13284
+ "Bool"
10208
13285
  ]
10209
- },
10210
- "secp256k1_verify": {
13286
+ }
13287
+ }
13288
+ },
13289
+ "ecvrf": {
13290
+ "fileFormatVersion": 6,
13291
+ "address": "0x2",
13292
+ "name": "ecvrf",
13293
+ "friends": [],
13294
+ "structs": {},
13295
+ "exposedFunctions": {
13296
+ "ecvrf_verify": {
10211
13297
  "visibility": "Public",
10212
13298
  "isEntry": false,
10213
13299
  "typeParameters": [],
@@ -10227,7 +13313,11 @@
10227
13313
  "Vector": "U8"
10228
13314
  }
10229
13315
  },
10230
- "U8"
13316
+ {
13317
+ "Reference": {
13318
+ "Vector": "U8"
13319
+ }
13320
+ }
10231
13321
  ],
10232
13322
  "return": [
10233
13323
  "Bool"
@@ -10235,14 +13325,14 @@
10235
13325
  }
10236
13326
  }
10237
13327
  },
10238
- "ecdsa_r1": {
13328
+ "ed25519": {
10239
13329
  "fileFormatVersion": 6,
10240
13330
  "address": "0x2",
10241
- "name": "ecdsa_r1",
13331
+ "name": "ed25519",
10242
13332
  "friends": [],
10243
13333
  "structs": {},
10244
13334
  "exposedFunctions": {
10245
- "secp256r1_ecrecover": {
13335
+ "ed25519_verify": {
10246
13336
  "visibility": "Public",
10247
13337
  "isEntry": false,
10248
13338
  "typeParameters": [],
@@ -10257,139 +13347,371 @@
10257
13347
  "Vector": "U8"
10258
13348
  }
10259
13349
  },
10260
- "U8"
13350
+ {
13351
+ "Reference": {
13352
+ "Vector": "U8"
13353
+ }
13354
+ }
13355
+ ],
13356
+ "return": [
13357
+ "Bool"
13358
+ ]
13359
+ }
13360
+ }
13361
+ },
13362
+ "event": {
13363
+ "fileFormatVersion": 6,
13364
+ "address": "0x2",
13365
+ "name": "event",
13366
+ "friends": [],
13367
+ "structs": {},
13368
+ "exposedFunctions": {
13369
+ "emit": {
13370
+ "visibility": "Public",
13371
+ "isEntry": false,
13372
+ "typeParameters": [
13373
+ {
13374
+ "abilities": [
13375
+ "Copy",
13376
+ "Drop"
13377
+ ]
13378
+ }
13379
+ ],
13380
+ "parameters": [
13381
+ {
13382
+ "TypeParameter": 0
13383
+ }
13384
+ ],
13385
+ "return": []
13386
+ },
13387
+ "emit_authenticated": {
13388
+ "visibility": "Public",
13389
+ "isEntry": false,
13390
+ "typeParameters": [
13391
+ {
13392
+ "abilities": [
13393
+ "Copy",
13394
+ "Drop"
13395
+ ]
13396
+ }
13397
+ ],
13398
+ "parameters": [
13399
+ {
13400
+ "TypeParameter": 0
13401
+ }
13402
+ ],
13403
+ "return": []
13404
+ }
13405
+ }
13406
+ },
13407
+ "funds_accumulator": {
13408
+ "fileFormatVersion": 6,
13409
+ "address": "0x2",
13410
+ "name": "funds_accumulator",
13411
+ "friends": [
13412
+ {
13413
+ "address": "0x2",
13414
+ "name": "balance"
13415
+ }
13416
+ ],
13417
+ "structs": {
13418
+ "Withdrawal": {
13419
+ "abilities": {
13420
+ "abilities": [
13421
+ "Drop"
13422
+ ]
13423
+ },
13424
+ "typeParameters": [
13425
+ {
13426
+ "constraints": {
13427
+ "abilities": [
13428
+ "Store"
13429
+ ]
13430
+ },
13431
+ "isPhantom": true
13432
+ }
13433
+ ],
13434
+ "fields": [
13435
+ {
13436
+ "name": "owner",
13437
+ "type": "Address"
13438
+ },
13439
+ {
13440
+ "name": "limit",
13441
+ "type": "U256"
13442
+ }
13443
+ ]
13444
+ }
13445
+ },
13446
+ "exposedFunctions": {
13447
+ "add_impl": {
13448
+ "visibility": "Friend",
13449
+ "isEntry": false,
13450
+ "typeParameters": [
13451
+ {
13452
+ "abilities": [
13453
+ "Store"
13454
+ ]
13455
+ }
13456
+ ],
13457
+ "parameters": [
13458
+ {
13459
+ "TypeParameter": 0
13460
+ },
13461
+ "Address"
13462
+ ],
13463
+ "return": []
13464
+ },
13465
+ "create_withdrawal": {
13466
+ "visibility": "Friend",
13467
+ "isEntry": false,
13468
+ "typeParameters": [
13469
+ {
13470
+ "abilities": [
13471
+ "Store"
13472
+ ]
13473
+ }
13474
+ ],
13475
+ "parameters": [
13476
+ "Address",
13477
+ "U256"
13478
+ ],
13479
+ "return": [
13480
+ {
13481
+ "Struct": {
13482
+ "address": "0x2",
13483
+ "module": "funds_accumulator",
13484
+ "name": "Withdrawal",
13485
+ "typeArguments": [
13486
+ {
13487
+ "TypeParameter": 0
13488
+ }
13489
+ ]
13490
+ }
13491
+ }
13492
+ ]
13493
+ },
13494
+ "redeem": {
13495
+ "visibility": "Friend",
13496
+ "isEntry": false,
13497
+ "typeParameters": [
13498
+ {
13499
+ "abilities": [
13500
+ "Store"
13501
+ ]
13502
+ }
13503
+ ],
13504
+ "parameters": [
13505
+ {
13506
+ "Struct": {
13507
+ "address": "0x2",
13508
+ "module": "funds_accumulator",
13509
+ "name": "Withdrawal",
13510
+ "typeArguments": [
13511
+ {
13512
+ "TypeParameter": 0
13513
+ }
13514
+ ]
13515
+ }
13516
+ },
13517
+ {
13518
+ "Struct": {
13519
+ "address": "0x1",
13520
+ "module": "internal",
13521
+ "name": "Permit",
13522
+ "typeArguments": [
13523
+ {
13524
+ "TypeParameter": 0
13525
+ }
13526
+ ]
13527
+ }
13528
+ }
13529
+ ],
13530
+ "return": [
13531
+ {
13532
+ "TypeParameter": 0
13533
+ }
13534
+ ]
13535
+ },
13536
+ "withdraw_from_object": {
13537
+ "visibility": "Friend",
13538
+ "isEntry": false,
13539
+ "typeParameters": [
13540
+ {
13541
+ "abilities": [
13542
+ "Store"
13543
+ ]
13544
+ }
13545
+ ],
13546
+ "parameters": [
13547
+ {
13548
+ "MutableReference": {
13549
+ "Struct": {
13550
+ "address": "0x2",
13551
+ "module": "object",
13552
+ "name": "UID",
13553
+ "typeArguments": []
13554
+ }
13555
+ }
13556
+ },
13557
+ "U256"
10261
13558
  ],
10262
13559
  "return": [
10263
13560
  {
10264
- "Vector": "U8"
13561
+ "Struct": {
13562
+ "address": "0x2",
13563
+ "module": "funds_accumulator",
13564
+ "name": "Withdrawal",
13565
+ "typeArguments": [
13566
+ {
13567
+ "TypeParameter": 0
13568
+ }
13569
+ ]
13570
+ }
10265
13571
  }
10266
13572
  ]
10267
13573
  },
10268
- "secp256r1_verify": {
13574
+ "withdrawal_join": {
10269
13575
  "visibility": "Public",
10270
13576
  "isEntry": false,
10271
- "typeParameters": [],
10272
- "parameters": [
13577
+ "typeParameters": [
10273
13578
  {
10274
- "Reference": {
10275
- "Vector": "U8"
10276
- }
10277
- },
13579
+ "abilities": [
13580
+ "Store"
13581
+ ]
13582
+ }
13583
+ ],
13584
+ "parameters": [
10278
13585
  {
10279
- "Reference": {
10280
- "Vector": "U8"
13586
+ "MutableReference": {
13587
+ "Struct": {
13588
+ "address": "0x2",
13589
+ "module": "funds_accumulator",
13590
+ "name": "Withdrawal",
13591
+ "typeArguments": [
13592
+ {
13593
+ "TypeParameter": 0
13594
+ }
13595
+ ]
13596
+ }
10281
13597
  }
10282
13598
  },
10283
13599
  {
10284
- "Reference": {
10285
- "Vector": "U8"
13600
+ "Struct": {
13601
+ "address": "0x2",
13602
+ "module": "funds_accumulator",
13603
+ "name": "Withdrawal",
13604
+ "typeArguments": [
13605
+ {
13606
+ "TypeParameter": 0
13607
+ }
13608
+ ]
10286
13609
  }
10287
- },
10288
- "U8"
13610
+ }
10289
13611
  ],
10290
- "return": [
10291
- "Bool"
10292
- ]
10293
- }
10294
- }
10295
- },
10296
- "ecvrf": {
10297
- "fileFormatVersion": 6,
10298
- "address": "0x2",
10299
- "name": "ecvrf",
10300
- "friends": [],
10301
- "structs": {},
10302
- "exposedFunctions": {
10303
- "ecvrf_verify": {
13612
+ "return": []
13613
+ },
13614
+ "withdrawal_limit": {
10304
13615
  "visibility": "Public",
10305
13616
  "isEntry": false,
10306
- "typeParameters": [],
10307
- "parameters": [
10308
- {
10309
- "Reference": {
10310
- "Vector": "U8"
10311
- }
10312
- },
10313
- {
10314
- "Reference": {
10315
- "Vector": "U8"
10316
- }
10317
- },
13617
+ "typeParameters": [
10318
13618
  {
10319
- "Reference": {
10320
- "Vector": "U8"
10321
- }
10322
- },
13619
+ "abilities": [
13620
+ "Store"
13621
+ ]
13622
+ }
13623
+ ],
13624
+ "parameters": [
10323
13625
  {
10324
13626
  "Reference": {
10325
- "Vector": "U8"
13627
+ "Struct": {
13628
+ "address": "0x2",
13629
+ "module": "funds_accumulator",
13630
+ "name": "Withdrawal",
13631
+ "typeArguments": [
13632
+ {
13633
+ "TypeParameter": 0
13634
+ }
13635
+ ]
13636
+ }
10326
13637
  }
10327
13638
  }
10328
13639
  ],
10329
13640
  "return": [
10330
- "Bool"
13641
+ "U256"
10331
13642
  ]
10332
- }
10333
- }
10334
- },
10335
- "ed25519": {
10336
- "fileFormatVersion": 6,
10337
- "address": "0x2",
10338
- "name": "ed25519",
10339
- "friends": [],
10340
- "structs": {},
10341
- "exposedFunctions": {
10342
- "ed25519_verify": {
13643
+ },
13644
+ "withdrawal_owner": {
10343
13645
  "visibility": "Public",
10344
13646
  "isEntry": false,
10345
- "typeParameters": [],
10346
- "parameters": [
10347
- {
10348
- "Reference": {
10349
- "Vector": "U8"
10350
- }
10351
- },
13647
+ "typeParameters": [
10352
13648
  {
10353
- "Reference": {
10354
- "Vector": "U8"
10355
- }
10356
- },
13649
+ "abilities": [
13650
+ "Store"
13651
+ ]
13652
+ }
13653
+ ],
13654
+ "parameters": [
10357
13655
  {
10358
13656
  "Reference": {
10359
- "Vector": "U8"
13657
+ "Struct": {
13658
+ "address": "0x2",
13659
+ "module": "funds_accumulator",
13660
+ "name": "Withdrawal",
13661
+ "typeArguments": [
13662
+ {
13663
+ "TypeParameter": 0
13664
+ }
13665
+ ]
13666
+ }
10360
13667
  }
10361
13668
  }
10362
13669
  ],
10363
13670
  "return": [
10364
- "Bool"
13671
+ "Address"
10365
13672
  ]
10366
- }
10367
- }
10368
- },
10369
- "event": {
10370
- "fileFormatVersion": 6,
10371
- "address": "0x2",
10372
- "name": "event",
10373
- "friends": [],
10374
- "structs": {},
10375
- "exposedFunctions": {
10376
- "emit": {
13673
+ },
13674
+ "withdrawal_split": {
10377
13675
  "visibility": "Public",
10378
13676
  "isEntry": false,
10379
13677
  "typeParameters": [
10380
13678
  {
10381
13679
  "abilities": [
10382
- "Copy",
10383
- "Drop"
13680
+ "Store"
10384
13681
  ]
10385
13682
  }
10386
13683
  ],
10387
13684
  "parameters": [
10388
13685
  {
10389
- "TypeParameter": 0
10390
- }
13686
+ "MutableReference": {
13687
+ "Struct": {
13688
+ "address": "0x2",
13689
+ "module": "funds_accumulator",
13690
+ "name": "Withdrawal",
13691
+ "typeArguments": [
13692
+ {
13693
+ "TypeParameter": 0
13694
+ }
13695
+ ]
13696
+ }
13697
+ }
13698
+ },
13699
+ "U256"
10391
13700
  ],
10392
- "return": []
13701
+ "return": [
13702
+ {
13703
+ "Struct": {
13704
+ "address": "0x2",
13705
+ "module": "funds_accumulator",
13706
+ "name": "Withdrawal",
13707
+ "typeArguments": [
13708
+ {
13709
+ "TypeParameter": 0
13710
+ }
13711
+ ]
13712
+ }
13713
+ }
13714
+ ]
10393
13715
  }
10394
13716
  }
10395
13717
  },
@@ -10974,9 +14296,7 @@
10974
14296
  "parameters": [
10975
14297
  "U8",
10976
14298
  {
10977
- "Reference": {
10978
- "Vector": "U8"
10979
- }
14299
+ "Vector": "U8"
10980
14300
  },
10981
14301
  "Bool"
10982
14302
  ],
@@ -15298,6 +18618,10 @@
15298
18618
  "address": "0x2",
15299
18619
  "name": "accumulator"
15300
18620
  },
18621
+ {
18622
+ "address": "0x2",
18623
+ "name": "address_alias"
18624
+ },
15301
18625
  {
15302
18626
  "address": "0x2",
15303
18627
  "name": "authenticator_state"
@@ -15306,6 +18630,10 @@
15306
18630
  "address": "0x2",
15307
18631
  "name": "clock"
15308
18632
  },
18633
+ {
18634
+ "address": "0x2",
18635
+ "name": "coin_registry"
18636
+ },
15309
18637
  {
15310
18638
  "address": "0x2",
15311
18639
  "name": "deny_list"
@@ -15363,6 +18691,22 @@
15363
18691
  }
15364
18692
  },
15365
18693
  "exposedFunctions": {
18694
+ "address_alias_state": {
18695
+ "visibility": "Friend",
18696
+ "isEntry": false,
18697
+ "typeParameters": [],
18698
+ "parameters": [],
18699
+ "return": [
18700
+ {
18701
+ "Struct": {
18702
+ "address": "0x2",
18703
+ "module": "object",
18704
+ "name": "UID",
18705
+ "typeArguments": []
18706
+ }
18707
+ }
18708
+ ]
18709
+ },
15366
18710
  "authenticator_state": {
15367
18711
  "visibility": "Friend",
15368
18712
  "isEntry": false,
@@ -15679,6 +19023,31 @@
15679
19023
  }
15680
19024
  ]
15681
19025
  },
19026
+ "sui_coin_registry_address": {
19027
+ "visibility": "Friend",
19028
+ "isEntry": false,
19029
+ "typeParameters": [],
19030
+ "parameters": [],
19031
+ "return": [
19032
+ "Address"
19033
+ ]
19034
+ },
19035
+ "sui_coin_registry_object_id": {
19036
+ "visibility": "Friend",
19037
+ "isEntry": false,
19038
+ "typeParameters": [],
19039
+ "parameters": [],
19040
+ "return": [
19041
+ {
19042
+ "Struct": {
19043
+ "address": "0x2",
19044
+ "module": "object",
19045
+ "name": "UID",
19046
+ "typeArguments": []
19047
+ }
19048
+ }
19049
+ ]
19050
+ },
15682
19051
  "sui_deny_list_object_id": {
15683
19052
  "visibility": "Friend",
15684
19053
  "isEntry": false,
@@ -18121,6 +21490,33 @@
18121
21490
  }
18122
21491
  }
18123
21492
  },
21493
+ "protocol_config": {
21494
+ "fileFormatVersion": 6,
21495
+ "address": "0x2",
21496
+ "name": "protocol_config",
21497
+ "friends": [
21498
+ {
21499
+ "address": "0x2",
21500
+ "name": "funds_accumulator"
21501
+ }
21502
+ ],
21503
+ "structs": {},
21504
+ "exposedFunctions": {
21505
+ "is_feature_enabled": {
21506
+ "visibility": "Friend",
21507
+ "isEntry": false,
21508
+ "typeParameters": [],
21509
+ "parameters": [
21510
+ {
21511
+ "Vector": "U8"
21512
+ }
21513
+ ],
21514
+ "return": [
21515
+ "Bool"
21516
+ ]
21517
+ }
21518
+ }
21519
+ },
18124
21520
  "prover": {
18125
21521
  "fileFormatVersion": 6,
18126
21522
  "address": "0x2",