@iota/kiosk 0.0.0-dev-20251015065834

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 (127) hide show
  1. package/CHANGELOG.md +198 -0
  2. package/LICENSE +201 -0
  3. package/README.md +39 -0
  4. package/dist/cjs/bcs.d.ts +38 -0
  5. package/dist/cjs/bcs.js +49 -0
  6. package/dist/cjs/bcs.js.map +7 -0
  7. package/dist/cjs/client/kiosk-client.d.ts +76 -0
  8. package/dist/cjs/client/kiosk-client.js +126 -0
  9. package/dist/cjs/client/kiosk-client.js.map +7 -0
  10. package/dist/cjs/client/kiosk-transaction.d.ts +185 -0
  11. package/dist/cjs/client/kiosk-transaction.js +473 -0
  12. package/dist/cjs/client/kiosk-transaction.js.map +7 -0
  13. package/dist/cjs/client/tp-transaction.d.ts +114 -0
  14. package/dist/cjs/client/tp-transaction.js +312 -0
  15. package/dist/cjs/client/tp-transaction.js.map +7 -0
  16. package/dist/cjs/constants.d.ts +24 -0
  17. package/dist/cjs/constants.js +66 -0
  18. package/dist/cjs/constants.js.map +7 -0
  19. package/dist/cjs/index.d.ts +6 -0
  20. package/dist/cjs/index.js +24 -0
  21. package/dist/cjs/index.js.map +7 -0
  22. package/dist/cjs/package.json +5 -0
  23. package/dist/cjs/query/kiosk.d.ts +14 -0
  24. package/dist/cjs/query/kiosk.js +129 -0
  25. package/dist/cjs/query/kiosk.js.map +7 -0
  26. package/dist/cjs/query/transfer-policy.d.ts +29 -0
  27. package/dist/cjs/query/transfer-policy.js +94 -0
  28. package/dist/cjs/query/transfer-policy.js.map +7 -0
  29. package/dist/cjs/tx/kiosk.d.ts +71 -0
  30. package/dist/cjs/tx/kiosk.js +130 -0
  31. package/dist/cjs/tx/kiosk.js.map +7 -0
  32. package/dist/cjs/tx/personal-kiosk.d.ts +7 -0
  33. package/dist/cjs/tx/personal-kiosk.js +38 -0
  34. package/dist/cjs/tx/personal-kiosk.js.map +7 -0
  35. package/dist/cjs/tx/rules/attach.d.ts +7 -0
  36. package/dist/cjs/tx/rules/attach.js +62 -0
  37. package/dist/cjs/tx/rules/attach.js.map +7 -0
  38. package/dist/cjs/tx/rules/resolve.d.ts +15 -0
  39. package/dist/cjs/tx/rules/resolve.js +79 -0
  40. package/dist/cjs/tx/rules/resolve.js.map +7 -0
  41. package/dist/cjs/tx/transfer-policy.d.ts +29 -0
  42. package/dist/cjs/tx/transfer-policy.js +78 -0
  43. package/dist/cjs/tx/transfer-policy.js.map +7 -0
  44. package/dist/cjs/types/index.d.ts +17 -0
  45. package/dist/cjs/types/index.js +20 -0
  46. package/dist/cjs/types/index.js.map +7 -0
  47. package/dist/cjs/types/kiosk.d.ts +159 -0
  48. package/dist/cjs/types/kiosk.js +37 -0
  49. package/dist/cjs/types/kiosk.js.map +7 -0
  50. package/dist/cjs/types/transfer-policy.d.ts +51 -0
  51. package/dist/cjs/types/transfer-policy.js +35 -0
  52. package/dist/cjs/types/transfer-policy.js.map +7 -0
  53. package/dist/cjs/utils.d.ts +51 -0
  54. package/dist/cjs/utils.js +201 -0
  55. package/dist/cjs/utils.js.map +7 -0
  56. package/dist/esm/bcs.d.ts +38 -0
  57. package/dist/esm/bcs.js +34 -0
  58. package/dist/esm/bcs.js.map +7 -0
  59. package/dist/esm/client/kiosk-client.d.ts +76 -0
  60. package/dist/esm/client/kiosk-client.js +110 -0
  61. package/dist/esm/client/kiosk-client.js.map +7 -0
  62. package/dist/esm/client/kiosk-transaction.d.ts +185 -0
  63. package/dist/esm/client/kiosk-transaction.js +443 -0
  64. package/dist/esm/client/kiosk-transaction.js.map +7 -0
  65. package/dist/esm/client/tp-transaction.d.ts +114 -0
  66. package/dist/esm/client/tp-transaction.js +303 -0
  67. package/dist/esm/client/tp-transaction.js.map +7 -0
  68. package/dist/esm/constants.d.ts +24 -0
  69. package/dist/esm/constants.js +51 -0
  70. package/dist/esm/constants.js.map +7 -0
  71. package/dist/esm/index.d.ts +6 -0
  72. package/dist/esm/index.js +7 -0
  73. package/dist/esm/index.js.map +7 -0
  74. package/dist/esm/package.json +5 -0
  75. package/dist/esm/query/kiosk.d.ts +14 -0
  76. package/dist/esm/query/kiosk.js +117 -0
  77. package/dist/esm/query/kiosk.js.map +7 -0
  78. package/dist/esm/query/transfer-policy.d.ts +29 -0
  79. package/dist/esm/query/transfer-policy.js +78 -0
  80. package/dist/esm/query/transfer-policy.js.map +7 -0
  81. package/dist/esm/tx/kiosk.d.ts +71 -0
  82. package/dist/esm/tx/kiosk.js +110 -0
  83. package/dist/esm/tx/kiosk.js.map +7 -0
  84. package/dist/esm/tx/personal-kiosk.d.ts +7 -0
  85. package/dist/esm/tx/personal-kiosk.js +18 -0
  86. package/dist/esm/tx/personal-kiosk.js.map +7 -0
  87. package/dist/esm/tx/rules/attach.d.ts +7 -0
  88. package/dist/esm/tx/rules/attach.js +42 -0
  89. package/dist/esm/tx/rules/attach.js.map +7 -0
  90. package/dist/esm/tx/rules/resolve.d.ts +15 -0
  91. package/dist/esm/tx/rules/resolve.js +59 -0
  92. package/dist/esm/tx/rules/resolve.js.map +7 -0
  93. package/dist/esm/tx/transfer-policy.d.ts +29 -0
  94. package/dist/esm/tx/transfer-policy.js +58 -0
  95. package/dist/esm/tx/transfer-policy.js.map +7 -0
  96. package/dist/esm/types/index.d.ts +17 -0
  97. package/dist/esm/types/index.js +3 -0
  98. package/dist/esm/types/index.js.map +7 -0
  99. package/dist/esm/types/kiosk.d.ts +159 -0
  100. package/dist/esm/types/kiosk.js +17 -0
  101. package/dist/esm/types/kiosk.js.map +7 -0
  102. package/dist/esm/types/transfer-policy.d.ts +51 -0
  103. package/dist/esm/types/transfer-policy.js +15 -0
  104. package/dist/esm/types/transfer-policy.js.map +7 -0
  105. package/dist/esm/utils.d.ts +51 -0
  106. package/dist/esm/utils.js +186 -0
  107. package/dist/esm/utils.js.map +7 -0
  108. package/dist/tsconfig.esm.tsbuildinfo +1 -0
  109. package/dist/tsconfig.tsbuildinfo +1 -0
  110. package/package.json +53 -0
  111. package/src/bcs.ts +39 -0
  112. package/src/client/kiosk-client.ts +169 -0
  113. package/src/client/kiosk-transaction.ts +538 -0
  114. package/src/client/tp-transaction.ts +363 -0
  115. package/src/constants.ts +85 -0
  116. package/src/index.ts +10 -0
  117. package/src/query/kiosk.ts +193 -0
  118. package/src/query/transfer-policy.ts +137 -0
  119. package/src/tx/kiosk.ts +244 -0
  120. package/src/tx/personal-kiosk.ts +35 -0
  121. package/src/tx/rules/attach.ts +74 -0
  122. package/src/tx/rules/resolve.ts +87 -0
  123. package/src/tx/transfer-policy.ts +121 -0
  124. package/src/types/index.ts +25 -0
  125. package/src/types/kiosk.ts +178 -0
  126. package/src/types/transfer-policy.ts +70 -0
  127. package/src/utils.ts +289 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,198 @@
1
+ # @iota/kiosk
2
+
3
+ ## 0.0.0-dev-20251015065834
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [c12d044]
8
+ - Updated dependencies [a0b225d]
9
+ - Updated dependencies [4c68076]
10
+ - Updated dependencies [92dd15e]
11
+ - @iota/iota-sdk@0.0.0-dev-20251015065834
12
+
13
+ ## 0.4.8
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies [3244c29]
18
+ - @iota/iota-sdk@1.6.1
19
+
20
+ ## 0.4.7
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies [c5543f0]
25
+ - Updated dependencies [bd17ba9]
26
+ - Updated dependencies [0accdb0]
27
+ - @iota/iota-sdk@1.6.0
28
+
29
+ ## 0.4.6
30
+
31
+ ### Patch Changes
32
+
33
+ - 3c1d088: Fix doc comment on `getKiosk` command
34
+ - Updated dependencies [40576ed]
35
+ - Updated dependencies [61b0944]
36
+ - Updated dependencies [966f83c]
37
+ - Updated dependencies [f008db3]
38
+ - Updated dependencies [733df30]
39
+ - Updated dependencies [13ca264]
40
+ - Updated dependencies [5bbafa8]
41
+ - Updated dependencies [28ce666]
42
+ - Updated dependencies [c855f8c]
43
+ - Updated dependencies [f008db3]
44
+ - Updated dependencies [464c15a]
45
+ - @iota/iota-sdk@1.5.0
46
+
47
+ ## 0.4.5
48
+
49
+ ### Patch Changes
50
+
51
+ - Updated dependencies [f04033d]
52
+ - Updated dependencies [59342b2]
53
+ - Updated dependencies [ecea738]
54
+ - @iota/iota-sdk@1.4.0
55
+
56
+ ## 0.4.4
57
+
58
+ ### Patch Changes
59
+
60
+ - Updated dependencies [6051799]
61
+ - Updated dependencies [5db9797]
62
+ - Updated dependencies [c4c6d9a]
63
+ - Updated dependencies [c837b79]
64
+ - @iota/iota-sdk@1.3.0
65
+
66
+ ## 0.4.3
67
+
68
+ ### Patch Changes
69
+
70
+ - Updated dependencies [53d5058]
71
+ - @iota/iota-sdk@1.2.0
72
+
73
+ ## 0.4.2
74
+
75
+ ### Patch Changes
76
+
77
+ - Updated dependencies [acc502a]
78
+ - Updated dependencies [1128809]
79
+ - @iota/iota-sdk@1.1.0
80
+
81
+ ## 0.4.1
82
+
83
+ ### Patch Changes
84
+
85
+ - Updated dependencies [26cf13b]
86
+ - @iota/iota-sdk@1.0.1
87
+
88
+ ## 0.4.0
89
+
90
+ ### Minor Changes
91
+
92
+ - 864fd32: Rename `getLatestIotaSystemState` to `getLatestIotaSystemStateV1` and add a new
93
+ backwards-compatible and future-proof `getLatestIotaSystemState` method that dynamically calls
94
+ ``getLatestIotaSystemStateV1`or`getLatestIotaSystemStateV2` based on the protocol version of the
95
+ node.
96
+
97
+ ### Patch Changes
98
+
99
+ - Updated dependencies [f4d75c7]
100
+ - Updated dependencies [daa968f]
101
+ - Updated dependencies [864fd32]
102
+ - @iota/iota-sdk@1.0.0
103
+
104
+ ## 0.3.4
105
+
106
+ ### Patch Changes
107
+
108
+ - 1ad39f9: Update dependencies
109
+ - Updated dependencies [42898f1]
110
+ - Updated dependencies [1ad39f9]
111
+ - Updated dependencies [bdb736e]
112
+ - Updated dependencies [65a0900]
113
+ - @iota/iota-sdk@0.7.0
114
+
115
+ ## 0.3.3
116
+
117
+ ### Patch Changes
118
+
119
+ - Updated dependencies [1a4505b]
120
+ - Updated dependencies [e629a39]
121
+ - Updated dependencies [2717145]
122
+ - Updated dependencies [3fe0747]
123
+ - Updated dependencies [e213517]
124
+ - @iota/iota-sdk@0.6.0
125
+
126
+ ## 0.3.2
127
+
128
+ ### Patch Changes
129
+
130
+ - Updated dependencies [6e00091]
131
+ - @iota/iota-sdk@0.5.0
132
+
133
+ ## 0.3.1
134
+
135
+ ### Patch Changes
136
+
137
+ - 5214d28: Update documentation urls
138
+ - Updated dependencies [5214d28]
139
+ - @iota/iota-sdk@0.4.1
140
+
141
+ ## 0.3.0
142
+
143
+ ### Minor Changes
144
+
145
+ - 9864dcb: Add default royalty, kiosk lock, floor price & personal kiosk rules package ids to
146
+ testnet network
147
+
148
+ ### Patch Changes
149
+
150
+ - Updated dependencies [9864dcb]
151
+ - @iota/iota-sdk@0.4.0
152
+
153
+ ## 0.2.1
154
+
155
+ ### Patch Changes
156
+
157
+ - 220fa7a: First public release.
158
+ - Updated dependencies [220fa7a]
159
+ - @iota/iota-sdk@0.3.1
160
+
161
+ ## 0.2.0
162
+
163
+ ### Minor Changes
164
+
165
+ - 6eabd18: Changes for compatibility with the node, simplification of exposed APIs and general
166
+ improvements.
167
+
168
+ ### Patch Changes
169
+
170
+ - Updated dependencies [6eabd18]
171
+ - @iota/iota-sdk@0.3.0
172
+
173
+ ## 0.1.2
174
+
175
+ ### Patch Changes
176
+
177
+ - Updated dependencies [d423314]
178
+ - Updated dependencies [b91a3d5]
179
+ - Updated dependencies [a3c1937]
180
+ - @iota/iota-sdk@0.2.0
181
+
182
+ ## 0.1.1
183
+
184
+ ### Patch Changes
185
+
186
+ - Updated dependencies [4a4ba5a]
187
+ - @iota/iota-sdk@0.1.1
188
+
189
+ ## 0.1.0
190
+
191
+ ### Minor Changes
192
+
193
+ - 249a7d0: First release
194
+
195
+ ### Patch Changes
196
+
197
+ - Updated dependencies [249a7d0]
198
+ - @iota/iota-sdk@0.1.0
package/LICENSE ADDED
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
package/README.md ADDED
@@ -0,0 +1,39 @@
1
+ # Kiosk SDK
2
+
3
+ `@iota/kiosk` is part of the **IOTA Rebased SDK**, designed specifically for interacting with the IOTA Rebased protocol.
4
+
5
+ This Kiosk SDK library provides different utilities to interact/create/manage a
6
+ [Kiosk](https://github.com/iotaledger/iota/tree/develop/kiosk).
7
+
8
+ [You can read the documentation and see examples by clicking here.](https://docs.iota.org/developer/ts-sdk/kiosk)
9
+
10
+ ## Install
11
+
12
+ To use the Kiosk SDK in your project, run the following command in your project root:
13
+
14
+ ```sh npm2yarn
15
+ npm i @iota/kiosk @iota/iota-sdk
16
+ ```
17
+
18
+ To use the Kiosk SDK, you must create a [KioskClient](https://docs.iota.org/developer/ts-sdk/kiosk/kiosk-client/introduction) instance.
19
+
20
+ ## Setup
21
+
22
+ You can follow this example to create a KioskClient.
23
+
24
+ ```typescript
25
+ import { KioskClient } from '@iota/kiosk';
26
+ import { getFullnodeUrl, IotaClient, Network } from '@iota/iota-sdk/client';
27
+
28
+ // We need an IOTA Client. You can re-use the IotaClient of your project
29
+ // (it's not recommended to create a new one).
30
+ const client = new IotaClient({ url: getFullnodeUrl(Network.Testnet) });
31
+
32
+ // Now we can use it to create a kiosk Client.
33
+ const kioskClient = new KioskClient({
34
+ client,
35
+ network: Network.Testnet,
36
+ });
37
+ ```
38
+
39
+ You can read the KioskClient documentation to query kiosk data [here](https://docs.iota.org/developer/ts-sdk/kiosk/kiosk-client/querying).
@@ -0,0 +1,38 @@
1
+ export declare const KioskType: import("@iota/iota-sdk/bcs").BcsType<{
2
+ id: string;
3
+ profits: string;
4
+ owner: string;
5
+ itemCount: number;
6
+ }, {
7
+ id: string | Uint8Array;
8
+ profits: string | number | bigint;
9
+ owner: string | Uint8Array;
10
+ itemCount: number;
11
+ }>;
12
+ export declare const KioskPurchaseCap: import("@iota/iota-sdk/bcs").BcsType<{
13
+ id: string;
14
+ kioskId: string;
15
+ itemId: string;
16
+ minPrice: string;
17
+ }, {
18
+ id: string | Uint8Array;
19
+ kioskId: string | Uint8Array;
20
+ itemId: string | Uint8Array;
21
+ minPrice: string | number | bigint;
22
+ }>;
23
+ export declare const TransferPolicyCreatedEvent: import("@iota/iota-sdk/bcs").BcsType<{
24
+ id: string;
25
+ }, {
26
+ id: string | Uint8Array;
27
+ }>;
28
+ export declare const TransferPolicyType: import("@iota/iota-sdk/bcs").BcsType<{
29
+ id: string;
30
+ balance: string;
31
+ rules: string[];
32
+ }, {
33
+ id: string | Uint8Array;
34
+ balance: string | number | bigint;
35
+ rules: Iterable<string> & {
36
+ length: number;
37
+ };
38
+ }>;
@@ -0,0 +1,49 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+ var bcs_exports = {};
20
+ __export(bcs_exports, {
21
+ KioskPurchaseCap: () => KioskPurchaseCap,
22
+ KioskType: () => KioskType,
23
+ TransferPolicyCreatedEvent: () => TransferPolicyCreatedEvent,
24
+ TransferPolicyType: () => TransferPolicyType
25
+ });
26
+ module.exports = __toCommonJS(bcs_exports);
27
+ var import_bcs = require("@iota/iota-sdk/bcs");
28
+ var import_types = require("./types/index.js");
29
+ const KioskType = import_bcs.bcs.struct(import_types.KIOSK_TYPE, {
30
+ id: import_bcs.bcs.Address,
31
+ profits: import_bcs.bcs.u64(),
32
+ owner: import_bcs.bcs.Address,
33
+ itemCount: import_bcs.bcs.u32()
34
+ });
35
+ const KioskPurchaseCap = import_bcs.bcs.struct(import_types.KIOSK_PURCHASE_CAP, {
36
+ id: import_bcs.bcs.Address,
37
+ kioskId: import_bcs.bcs.Address,
38
+ itemId: import_bcs.bcs.Address,
39
+ minPrice: import_bcs.bcs.u64()
40
+ });
41
+ const TransferPolicyCreatedEvent = import_bcs.bcs.struct(import_types.TRANSFER_POLICY_CREATED_EVENT, {
42
+ id: import_bcs.bcs.Address
43
+ });
44
+ const TransferPolicyType = import_bcs.bcs.struct(import_types.TRANSFER_POLICY_TYPE, {
45
+ id: import_bcs.bcs.Address,
46
+ balance: import_bcs.bcs.u64(),
47
+ rules: import_bcs.bcs.vector(import_bcs.bcs.string())
48
+ });
49
+ //# sourceMappingURL=bcs.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/bcs.ts"],
4
+ "sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// Modifications Copyright (c) 2024 IOTA Stiftung\n// SPDX-License-Identifier: Apache-2.0\n\nimport { bcs } from '@iota/iota-sdk/bcs';\n\nimport {\n KIOSK_PURCHASE_CAP,\n KIOSK_TYPE,\n TRANSFER_POLICY_CREATED_EVENT,\n TRANSFER_POLICY_TYPE,\n} from './types/index.js';\n\n// Register the `Kiosk` struct for faster queries.\nexport const KioskType = bcs.struct(KIOSK_TYPE, {\n id: bcs.Address,\n profits: bcs.u64(),\n owner: bcs.Address,\n itemCount: bcs.u32(),\n});\n\n// Register the `PurchaseCap` for faster queries.\nexport const KioskPurchaseCap = bcs.struct(KIOSK_PURCHASE_CAP, {\n id: bcs.Address,\n kioskId: bcs.Address,\n itemId: bcs.Address,\n minPrice: bcs.u64(),\n});\n\n// Register the `TransferPolicyCreated` event data.\nexport const TransferPolicyCreatedEvent = bcs.struct(TRANSFER_POLICY_CREATED_EVENT, {\n id: bcs.Address,\n});\n\nexport const TransferPolicyType = bcs.struct(TRANSFER_POLICY_TYPE, {\n id: bcs.Address,\n balance: bcs.u64(),\n rules: bcs.vector(bcs.string()),\n});\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAIA,iBAAoB;AAEpB,mBAKO;AAGA,MAAM,YAAY,eAAI,OAAO,yBAAY;AAAA,EAC5C,IAAI,eAAI;AAAA,EACR,SAAS,eAAI,IAAI;AAAA,EACjB,OAAO,eAAI;AAAA,EACX,WAAW,eAAI,IAAI;AACvB,CAAC;AAGM,MAAM,mBAAmB,eAAI,OAAO,iCAAoB;AAAA,EAC3D,IAAI,eAAI;AAAA,EACR,SAAS,eAAI;AAAA,EACb,QAAQ,eAAI;AAAA,EACZ,UAAU,eAAI,IAAI;AACtB,CAAC;AAGM,MAAM,6BAA6B,eAAI,OAAO,4CAA+B;AAAA,EAChF,IAAI,eAAI;AACZ,CAAC;AAEM,MAAM,qBAAqB,eAAI,OAAO,mCAAsB;AAAA,EAC/D,IAAI,eAAI;AAAA,EACR,SAAS,eAAI,IAAI;AAAA,EACjB,OAAO,eAAI,OAAO,eAAI,OAAO,CAAC;AAClC,CAAC;",
6
+ "names": []
7
+ }
@@ -0,0 +1,76 @@
1
+ import type { NetworkId } from '@iota/iota-sdk/client';
2
+ import type { PaginationArguments, IotaClient } from '@iota/iota-sdk/client';
3
+ import type { BaseRulePackageIds, TransferPolicyRule } from '../constants.js';
4
+ import type { FetchKioskOptions, KioskClientOptions, KioskData, OwnedKiosks } from '../types/index.js';
5
+ /**
6
+ * A Client that allows you to interact with kiosk.
7
+ * Offers utilities to query kiosk, craft transactions to edit your own kiosk,
8
+ * purchase, manage transfer policies, create new kiosks etc.
9
+ * If you pass packageIds, all functionality will be managed using these packages.
10
+ */
11
+ export declare class KioskClient {
12
+ client: IotaClient;
13
+ network: NetworkId;
14
+ rules: TransferPolicyRule[];
15
+ packageIds?: BaseRulePackageIds;
16
+ constructor(options: KioskClientOptions);
17
+ /**
18
+ * Get an addresses's owned kiosks.
19
+ * @param address The address for which we want to retrieve the kiosks.
20
+ * @param pagination Optional pagination arguments.
21
+ * @returns An Object containing all the `kioskOwnerCap` objects as well as the kioskIds.
22
+ */
23
+ getOwnedKiosks({ address, pagination, }: {
24
+ address: string;
25
+ pagination?: PaginationArguments<string>;
26
+ }): Promise<OwnedKiosks>;
27
+ /**
28
+ * Fetches the kiosk contents.
29
+ * @param id The ID of the kiosk to fetch.
30
+ * @param options Optional to control the fetch behavior.
31
+ * @returns
32
+ */
33
+ getKiosk({ id, options, }: {
34
+ id: string;
35
+ options?: FetchKioskOptions;
36
+ }): Promise<KioskData>;
37
+ /**
38
+ * Fetch the extension data (if any) for a kiosk, by type
39
+ * @param kioskId The ID of the kiosk to lookup
40
+ * @param extensionType The Type of the extension (can be used from by using the type returned by `getKiosk()`)
41
+ */
42
+ getKioskExtension({ kioskId, type }: {
43
+ kioskId: string;
44
+ type: string;
45
+ }): Promise<import("../types/kiosk.js").KioskExtension | null>;
46
+ /**
47
+ * Query the Transfer Policy(ies) for type `T`.
48
+ * @param type The Type we're querying for (E.g `0xMyAddress::hero::Hero`)
49
+ */
50
+ getTransferPolicies({ type }: {
51
+ type: string;
52
+ }): Promise<import("../types/transfer-policy.js").TransferPolicy[]>;
53
+ /**
54
+ * Query all the owned transfer policies for an address.
55
+ * Returns `TransferPolicyCap` which uncludes `policyId, policyCapId, type`.
56
+ * @param address The address we're searching the owned transfer policies for.
57
+ */
58
+ getOwnedTransferPolicies({ address }: {
59
+ address: string;
60
+ }): Promise<import("../types/transfer-policy.js").TransferPolicyCap[] | undefined>;
61
+ /**
62
+ * Query the Transfer Policy Cap for type `T`, owned by `address`
63
+ * @param type The Type `T` for the object
64
+ * @param address The address that owns the cap.
65
+ */
66
+ getOwnedTransferPoliciesByType({ type, address }: {
67
+ type: string;
68
+ address: string;
69
+ }): Promise<import("../types/transfer-policy.js").TransferPolicyCap[]>;
70
+ addRuleResolver(rule: TransferPolicyRule): void;
71
+ /**
72
+ * A convenient helper to get the packageIds for our supported ruleset,
73
+ * based on `kioskClient` configuration.
74
+ */
75
+ getRulePackageId(rule: 'kioskLockRulePackageId' | 'royaltyRulePackageId' | 'personalKioskRulePackageId' | 'floorPriceRulePackageId'): string;
76
+ }