@sentio/sdk 2.28.0-rc.1 → 2.28.0-rc.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/aptos/builtin/0x1.d.ts +137 -0
- package/lib/aptos/builtin/0x1.d.ts.map +1 -1
- package/lib/aptos/builtin/0x1.js +189 -2
- package/lib/aptos/builtin/0x1.js.map +1 -1
- package/lib/aptos/builtin/0x4.d.ts +421 -0
- package/lib/aptos/builtin/0x4.d.ts.map +1 -0
- package/lib/aptos/builtin/0x4.js +408 -0
- package/lib/aptos/builtin/0x4.js.map +1 -0
- package/lib/aptos/builtin/index.d.ts +1 -0
- package/lib/aptos/builtin/index.d.ts.map +1 -1
- package/lib/aptos/builtin/index.js +1 -0
- package/lib/aptos/builtin/index.js.map +1 -1
- package/lib/sui/builtin/0x1.js +1 -1
- package/lib/sui/builtin/0x1.js.map +1 -1
- package/lib/sui/builtin/0x2.d.ts +138 -1
- package/lib/sui/builtin/0x2.d.ts.map +1 -1
- package/lib/sui/builtin/0x2.js +164 -1
- package/lib/sui/builtin/0x2.js.map +1 -1
- package/lib/sui/builtin/0x3.js +1 -1
- package/lib/sui/builtin/0x3.js.map +1 -1
- package/package.json +7 -7
- package/src/aptos/abis/0x1.json +1195 -81
- package/src/aptos/abis/0x4.json +1675 -0
- package/src/aptos/builtin/0x1.ts +391 -1
- package/src/aptos/builtin/0x4.ts +1004 -0
- package/src/aptos/builtin/index.ts +1 -0
- package/src/sui/abis/0x1.json +20 -0
- package/src/sui/abis/0x2.json +2146 -684
- package/src/sui/abis/0x3.json +549 -43
- package/src/sui/builtin/0x1.ts +1 -1
- package/src/sui/builtin/0x2.ts +321 -2
- package/src/sui/builtin/0x3.ts +1 -1
package/src/sui/abis/0x2.json
CHANGED
|
@@ -90,6 +90,179 @@
|
|
|
90
90
|
}
|
|
91
91
|
}
|
|
92
92
|
},
|
|
93
|
+
"authenticator_state": {
|
|
94
|
+
"fileFormatVersion": 6,
|
|
95
|
+
"address": "0x2",
|
|
96
|
+
"name": "authenticator_state",
|
|
97
|
+
"friends": [],
|
|
98
|
+
"structs": {
|
|
99
|
+
"ActiveJwk": {
|
|
100
|
+
"abilities": {
|
|
101
|
+
"abilities": ["Copy", "Drop", "Store"]
|
|
102
|
+
},
|
|
103
|
+
"typeParameters": [],
|
|
104
|
+
"fields": [
|
|
105
|
+
{
|
|
106
|
+
"name": "jwk_id",
|
|
107
|
+
"type": {
|
|
108
|
+
"Struct": {
|
|
109
|
+
"address": "0x2",
|
|
110
|
+
"module": "authenticator_state",
|
|
111
|
+
"name": "JwkId",
|
|
112
|
+
"typeArguments": []
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"name": "jwk",
|
|
118
|
+
"type": {
|
|
119
|
+
"Struct": {
|
|
120
|
+
"address": "0x2",
|
|
121
|
+
"module": "authenticator_state",
|
|
122
|
+
"name": "JWK",
|
|
123
|
+
"typeArguments": []
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"name": "epoch",
|
|
129
|
+
"type": "U64"
|
|
130
|
+
}
|
|
131
|
+
]
|
|
132
|
+
},
|
|
133
|
+
"AuthenticatorState": {
|
|
134
|
+
"abilities": {
|
|
135
|
+
"abilities": ["Key"]
|
|
136
|
+
},
|
|
137
|
+
"typeParameters": [],
|
|
138
|
+
"fields": [
|
|
139
|
+
{
|
|
140
|
+
"name": "id",
|
|
141
|
+
"type": {
|
|
142
|
+
"Struct": {
|
|
143
|
+
"address": "0x2",
|
|
144
|
+
"module": "object",
|
|
145
|
+
"name": "UID",
|
|
146
|
+
"typeArguments": []
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"name": "version",
|
|
152
|
+
"type": "U64"
|
|
153
|
+
}
|
|
154
|
+
]
|
|
155
|
+
},
|
|
156
|
+
"AuthenticatorStateInner": {
|
|
157
|
+
"abilities": {
|
|
158
|
+
"abilities": ["Store"]
|
|
159
|
+
},
|
|
160
|
+
"typeParameters": [],
|
|
161
|
+
"fields": [
|
|
162
|
+
{
|
|
163
|
+
"name": "version",
|
|
164
|
+
"type": "U64"
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"name": "active_jwks",
|
|
168
|
+
"type": {
|
|
169
|
+
"Vector": {
|
|
170
|
+
"Struct": {
|
|
171
|
+
"address": "0x2",
|
|
172
|
+
"module": "authenticator_state",
|
|
173
|
+
"name": "ActiveJwk",
|
|
174
|
+
"typeArguments": []
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
]
|
|
180
|
+
},
|
|
181
|
+
"JWK": {
|
|
182
|
+
"abilities": {
|
|
183
|
+
"abilities": ["Copy", "Drop", "Store"]
|
|
184
|
+
},
|
|
185
|
+
"typeParameters": [],
|
|
186
|
+
"fields": [
|
|
187
|
+
{
|
|
188
|
+
"name": "kty",
|
|
189
|
+
"type": {
|
|
190
|
+
"Struct": {
|
|
191
|
+
"address": "0x1",
|
|
192
|
+
"module": "string",
|
|
193
|
+
"name": "String",
|
|
194
|
+
"typeArguments": []
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"name": "e",
|
|
200
|
+
"type": {
|
|
201
|
+
"Struct": {
|
|
202
|
+
"address": "0x1",
|
|
203
|
+
"module": "string",
|
|
204
|
+
"name": "String",
|
|
205
|
+
"typeArguments": []
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"name": "n",
|
|
211
|
+
"type": {
|
|
212
|
+
"Struct": {
|
|
213
|
+
"address": "0x1",
|
|
214
|
+
"module": "string",
|
|
215
|
+
"name": "String",
|
|
216
|
+
"typeArguments": []
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"name": "alg",
|
|
222
|
+
"type": {
|
|
223
|
+
"Struct": {
|
|
224
|
+
"address": "0x1",
|
|
225
|
+
"module": "string",
|
|
226
|
+
"name": "String",
|
|
227
|
+
"typeArguments": []
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
]
|
|
232
|
+
},
|
|
233
|
+
"JwkId": {
|
|
234
|
+
"abilities": {
|
|
235
|
+
"abilities": ["Copy", "Drop", "Store"]
|
|
236
|
+
},
|
|
237
|
+
"typeParameters": [],
|
|
238
|
+
"fields": [
|
|
239
|
+
{
|
|
240
|
+
"name": "iss",
|
|
241
|
+
"type": {
|
|
242
|
+
"Struct": {
|
|
243
|
+
"address": "0x1",
|
|
244
|
+
"module": "string",
|
|
245
|
+
"name": "String",
|
|
246
|
+
"typeArguments": []
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"name": "kid",
|
|
252
|
+
"type": {
|
|
253
|
+
"Struct": {
|
|
254
|
+
"address": "0x1",
|
|
255
|
+
"module": "string",
|
|
256
|
+
"name": "String",
|
|
257
|
+
"typeArguments": []
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
]
|
|
262
|
+
}
|
|
263
|
+
},
|
|
264
|
+
"exposedFunctions": {}
|
|
265
|
+
},
|
|
93
266
|
"bag": {
|
|
94
267
|
"fileFormatVersion": 6,
|
|
95
268
|
"address": "0x2",
|
|
@@ -4980,7 +5153,12 @@
|
|
|
4980
5153
|
"fileFormatVersion": 6,
|
|
4981
5154
|
"address": "0x2",
|
|
4982
5155
|
"name": "kiosk",
|
|
4983
|
-
"friends": [
|
|
5156
|
+
"friends": [
|
|
5157
|
+
{
|
|
5158
|
+
"address": "0x2",
|
|
5159
|
+
"name": "kiosk_extension"
|
|
5160
|
+
}
|
|
5161
|
+
],
|
|
4984
5162
|
"structs": {
|
|
4985
5163
|
"Borrow": {
|
|
4986
5164
|
"abilities": {
|
|
@@ -5523,6 +5701,24 @@
|
|
|
5523
5701
|
}
|
|
5524
5702
|
]
|
|
5525
5703
|
},
|
|
5704
|
+
"default": {
|
|
5705
|
+
"visibility": "Private",
|
|
5706
|
+
"isEntry": true,
|
|
5707
|
+
"typeParameters": [],
|
|
5708
|
+
"parameters": [
|
|
5709
|
+
{
|
|
5710
|
+
"MutableReference": {
|
|
5711
|
+
"Struct": {
|
|
5712
|
+
"address": "0x2",
|
|
5713
|
+
"module": "tx_context",
|
|
5714
|
+
"name": "TxContext",
|
|
5715
|
+
"typeArguments": []
|
|
5716
|
+
}
|
|
5717
|
+
}
|
|
5718
|
+
}
|
|
5719
|
+
],
|
|
5720
|
+
"return": []
|
|
5721
|
+
},
|
|
5526
5722
|
"delist": {
|
|
5527
5723
|
"visibility": "Public",
|
|
5528
5724
|
"isEntry": false,
|
|
@@ -5743,6 +5939,33 @@
|
|
|
5743
5939
|
],
|
|
5744
5940
|
"return": ["U32"]
|
|
5745
5941
|
},
|
|
5942
|
+
"kiosk_owner_cap_for": {
|
|
5943
|
+
"visibility": "Public",
|
|
5944
|
+
"isEntry": false,
|
|
5945
|
+
"typeParameters": [],
|
|
5946
|
+
"parameters": [
|
|
5947
|
+
{
|
|
5948
|
+
"Reference": {
|
|
5949
|
+
"Struct": {
|
|
5950
|
+
"address": "0x2",
|
|
5951
|
+
"module": "kiosk",
|
|
5952
|
+
"name": "KioskOwnerCap",
|
|
5953
|
+
"typeArguments": []
|
|
5954
|
+
}
|
|
5955
|
+
}
|
|
5956
|
+
}
|
|
5957
|
+
],
|
|
5958
|
+
"return": [
|
|
5959
|
+
{
|
|
5960
|
+
"Struct": {
|
|
5961
|
+
"address": "0x2",
|
|
5962
|
+
"module": "object",
|
|
5963
|
+
"name": "ID",
|
|
5964
|
+
"typeArguments": []
|
|
5965
|
+
}
|
|
5966
|
+
}
|
|
5967
|
+
]
|
|
5968
|
+
},
|
|
5746
5969
|
"list": {
|
|
5747
5970
|
"visibility": "Public",
|
|
5748
5971
|
"isEntry": false,
|
|
@@ -5897,6 +6120,31 @@
|
|
|
5897
6120
|
],
|
|
5898
6121
|
"return": []
|
|
5899
6122
|
},
|
|
6123
|
+
"lock_internal": {
|
|
6124
|
+
"visibility": "Friend",
|
|
6125
|
+
"isEntry": false,
|
|
6126
|
+
"typeParameters": [
|
|
6127
|
+
{
|
|
6128
|
+
"abilities": ["Store", "Key"]
|
|
6129
|
+
}
|
|
6130
|
+
],
|
|
6131
|
+
"parameters": [
|
|
6132
|
+
{
|
|
6133
|
+
"MutableReference": {
|
|
6134
|
+
"Struct": {
|
|
6135
|
+
"address": "0x2",
|
|
6136
|
+
"module": "kiosk",
|
|
6137
|
+
"name": "Kiosk",
|
|
6138
|
+
"typeArguments": []
|
|
6139
|
+
}
|
|
6140
|
+
}
|
|
6141
|
+
},
|
|
6142
|
+
{
|
|
6143
|
+
"TypeParameter": 0
|
|
6144
|
+
}
|
|
6145
|
+
],
|
|
6146
|
+
"return": []
|
|
6147
|
+
},
|
|
5900
6148
|
"new": {
|
|
5901
6149
|
"visibility": "Public",
|
|
5902
6150
|
"isEntry": false,
|
|
@@ -6021,6 +6269,31 @@
|
|
|
6021
6269
|
],
|
|
6022
6270
|
"return": []
|
|
6023
6271
|
},
|
|
6272
|
+
"place_internal": {
|
|
6273
|
+
"visibility": "Friend",
|
|
6274
|
+
"isEntry": false,
|
|
6275
|
+
"typeParameters": [
|
|
6276
|
+
{
|
|
6277
|
+
"abilities": ["Store", "Key"]
|
|
6278
|
+
}
|
|
6279
|
+
],
|
|
6280
|
+
"parameters": [
|
|
6281
|
+
{
|
|
6282
|
+
"MutableReference": {
|
|
6283
|
+
"Struct": {
|
|
6284
|
+
"address": "0x2",
|
|
6285
|
+
"module": "kiosk",
|
|
6286
|
+
"name": "Kiosk",
|
|
6287
|
+
"typeArguments": []
|
|
6288
|
+
}
|
|
6289
|
+
}
|
|
6290
|
+
},
|
|
6291
|
+
{
|
|
6292
|
+
"TypeParameter": 0
|
|
6293
|
+
}
|
|
6294
|
+
],
|
|
6295
|
+
"return": []
|
|
6296
|
+
},
|
|
6024
6297
|
"profits_amount": {
|
|
6025
6298
|
"visibility": "Public",
|
|
6026
6299
|
"isEntry": false,
|
|
@@ -6617,8 +6890,8 @@
|
|
|
6617
6890
|
}
|
|
6618
6891
|
]
|
|
6619
6892
|
},
|
|
6620
|
-
"
|
|
6621
|
-
"visibility": "
|
|
6893
|
+
"uid_mut_internal": {
|
|
6894
|
+
"visibility": "Friend",
|
|
6622
6895
|
"isEntry": false,
|
|
6623
6896
|
"typeParameters": [],
|
|
6624
6897
|
"parameters": [
|
|
@@ -6631,12 +6904,41 @@
|
|
|
6631
6904
|
"typeArguments": []
|
|
6632
6905
|
}
|
|
6633
6906
|
}
|
|
6634
|
-
}
|
|
6907
|
+
}
|
|
6908
|
+
],
|
|
6909
|
+
"return": [
|
|
6635
6910
|
{
|
|
6636
|
-
"
|
|
6911
|
+
"MutableReference": {
|
|
6637
6912
|
"Struct": {
|
|
6638
6913
|
"address": "0x2",
|
|
6639
|
-
"module": "
|
|
6914
|
+
"module": "object",
|
|
6915
|
+
"name": "UID",
|
|
6916
|
+
"typeArguments": []
|
|
6917
|
+
}
|
|
6918
|
+
}
|
|
6919
|
+
}
|
|
6920
|
+
]
|
|
6921
|
+
},
|
|
6922
|
+
"withdraw": {
|
|
6923
|
+
"visibility": "Public",
|
|
6924
|
+
"isEntry": false,
|
|
6925
|
+
"typeParameters": [],
|
|
6926
|
+
"parameters": [
|
|
6927
|
+
{
|
|
6928
|
+
"MutableReference": {
|
|
6929
|
+
"Struct": {
|
|
6930
|
+
"address": "0x2",
|
|
6931
|
+
"module": "kiosk",
|
|
6932
|
+
"name": "Kiosk",
|
|
6933
|
+
"typeArguments": []
|
|
6934
|
+
}
|
|
6935
|
+
}
|
|
6936
|
+
},
|
|
6937
|
+
{
|
|
6938
|
+
"Reference": {
|
|
6939
|
+
"Struct": {
|
|
6940
|
+
"address": "0x2",
|
|
6941
|
+
"module": "kiosk",
|
|
6640
6942
|
"name": "KioskOwnerCap",
|
|
6641
6943
|
"typeArguments": []
|
|
6642
6944
|
}
|
|
@@ -6683,193 +6985,112 @@
|
|
|
6683
6985
|
}
|
|
6684
6986
|
}
|
|
6685
6987
|
},
|
|
6686
|
-
"
|
|
6988
|
+
"kiosk_extension": {
|
|
6687
6989
|
"fileFormatVersion": 6,
|
|
6688
6990
|
"address": "0x2",
|
|
6689
|
-
"name": "
|
|
6991
|
+
"name": "kiosk_extension",
|
|
6690
6992
|
"friends": [],
|
|
6691
6993
|
"structs": {
|
|
6692
|
-
"
|
|
6994
|
+
"Extension": {
|
|
6693
6995
|
"abilities": {
|
|
6694
|
-
"abilities": ["Store"
|
|
6996
|
+
"abilities": ["Store"]
|
|
6695
6997
|
},
|
|
6696
|
-
"typeParameters": [
|
|
6697
|
-
{
|
|
6698
|
-
"constraints": {
|
|
6699
|
-
"abilities": ["Copy", "Drop", "Store"]
|
|
6700
|
-
},
|
|
6701
|
-
"isPhantom": false
|
|
6702
|
-
},
|
|
6703
|
-
{
|
|
6704
|
-
"constraints": {
|
|
6705
|
-
"abilities": ["Store"]
|
|
6706
|
-
},
|
|
6707
|
-
"isPhantom": true
|
|
6708
|
-
}
|
|
6709
|
-
],
|
|
6998
|
+
"typeParameters": [],
|
|
6710
6999
|
"fields": [
|
|
6711
7000
|
{
|
|
6712
|
-
"name": "
|
|
7001
|
+
"name": "storage",
|
|
6713
7002
|
"type": {
|
|
6714
7003
|
"Struct": {
|
|
6715
7004
|
"address": "0x2",
|
|
6716
|
-
"module": "
|
|
6717
|
-
"name": "
|
|
7005
|
+
"module": "bag",
|
|
7006
|
+
"name": "Bag",
|
|
6718
7007
|
"typeArguments": []
|
|
6719
7008
|
}
|
|
6720
7009
|
}
|
|
6721
7010
|
},
|
|
6722
7011
|
{
|
|
6723
|
-
"name": "
|
|
6724
|
-
"type": "
|
|
6725
|
-
},
|
|
6726
|
-
{
|
|
6727
|
-
"name": "head",
|
|
6728
|
-
"type": {
|
|
6729
|
-
"Struct": {
|
|
6730
|
-
"address": "0x1",
|
|
6731
|
-
"module": "option",
|
|
6732
|
-
"name": "Option",
|
|
6733
|
-
"typeArguments": [
|
|
6734
|
-
{
|
|
6735
|
-
"TypeParameter": 0
|
|
6736
|
-
}
|
|
6737
|
-
]
|
|
6738
|
-
}
|
|
6739
|
-
}
|
|
7012
|
+
"name": "permissions",
|
|
7013
|
+
"type": "U128"
|
|
6740
7014
|
},
|
|
6741
7015
|
{
|
|
6742
|
-
"name": "
|
|
6743
|
-
"type":
|
|
6744
|
-
"Struct": {
|
|
6745
|
-
"address": "0x1",
|
|
6746
|
-
"module": "option",
|
|
6747
|
-
"name": "Option",
|
|
6748
|
-
"typeArguments": [
|
|
6749
|
-
{
|
|
6750
|
-
"TypeParameter": 0
|
|
6751
|
-
}
|
|
6752
|
-
]
|
|
6753
|
-
}
|
|
6754
|
-
}
|
|
7016
|
+
"name": "is_enabled",
|
|
7017
|
+
"type": "Bool"
|
|
6755
7018
|
}
|
|
6756
7019
|
]
|
|
6757
7020
|
},
|
|
6758
|
-
"
|
|
7021
|
+
"ExtensionKey": {
|
|
6759
7022
|
"abilities": {
|
|
6760
|
-
"abilities": ["Store"]
|
|
7023
|
+
"abilities": ["Copy", "Drop", "Store"]
|
|
6761
7024
|
},
|
|
6762
7025
|
"typeParameters": [
|
|
6763
7026
|
{
|
|
6764
7027
|
"constraints": {
|
|
6765
|
-
"abilities": [
|
|
6766
|
-
},
|
|
6767
|
-
"isPhantom": false
|
|
6768
|
-
},
|
|
6769
|
-
{
|
|
6770
|
-
"constraints": {
|
|
6771
|
-
"abilities": ["Store"]
|
|
7028
|
+
"abilities": []
|
|
6772
7029
|
},
|
|
6773
|
-
"isPhantom":
|
|
7030
|
+
"isPhantom": true
|
|
6774
7031
|
}
|
|
6775
7032
|
],
|
|
6776
7033
|
"fields": [
|
|
6777
7034
|
{
|
|
6778
|
-
"name": "
|
|
6779
|
-
"type":
|
|
6780
|
-
"Struct": {
|
|
6781
|
-
"address": "0x1",
|
|
6782
|
-
"module": "option",
|
|
6783
|
-
"name": "Option",
|
|
6784
|
-
"typeArguments": [
|
|
6785
|
-
{
|
|
6786
|
-
"TypeParameter": 0
|
|
6787
|
-
}
|
|
6788
|
-
]
|
|
6789
|
-
}
|
|
6790
|
-
}
|
|
6791
|
-
},
|
|
6792
|
-
{
|
|
6793
|
-
"name": "next",
|
|
6794
|
-
"type": {
|
|
6795
|
-
"Struct": {
|
|
6796
|
-
"address": "0x1",
|
|
6797
|
-
"module": "option",
|
|
6798
|
-
"name": "Option",
|
|
6799
|
-
"typeArguments": [
|
|
6800
|
-
{
|
|
6801
|
-
"TypeParameter": 0
|
|
6802
|
-
}
|
|
6803
|
-
]
|
|
6804
|
-
}
|
|
6805
|
-
}
|
|
6806
|
-
},
|
|
6807
|
-
{
|
|
6808
|
-
"name": "value",
|
|
6809
|
-
"type": {
|
|
6810
|
-
"TypeParameter": 1
|
|
6811
|
-
}
|
|
7035
|
+
"name": "dummy_field",
|
|
7036
|
+
"type": "Bool"
|
|
6812
7037
|
}
|
|
6813
7038
|
]
|
|
6814
7039
|
}
|
|
6815
7040
|
},
|
|
6816
7041
|
"exposedFunctions": {
|
|
6817
|
-
"
|
|
7042
|
+
"add": {
|
|
6818
7043
|
"visibility": "Public",
|
|
6819
7044
|
"isEntry": false,
|
|
6820
7045
|
"typeParameters": [
|
|
6821
7046
|
{
|
|
6822
|
-
"abilities": ["
|
|
6823
|
-
},
|
|
6824
|
-
{
|
|
6825
|
-
"abilities": ["Store"]
|
|
7047
|
+
"abilities": ["Drop"]
|
|
6826
7048
|
}
|
|
6827
7049
|
],
|
|
6828
7050
|
"parameters": [
|
|
6829
7051
|
{
|
|
6830
|
-
"
|
|
7052
|
+
"TypeParameter": 0
|
|
7053
|
+
},
|
|
7054
|
+
{
|
|
7055
|
+
"MutableReference": {
|
|
6831
7056
|
"Struct": {
|
|
6832
7057
|
"address": "0x2",
|
|
6833
|
-
"module": "
|
|
6834
|
-
"name": "
|
|
6835
|
-
"typeArguments": [
|
|
6836
|
-
{
|
|
6837
|
-
"TypeParameter": 0
|
|
6838
|
-
},
|
|
6839
|
-
{
|
|
6840
|
-
"TypeParameter": 1
|
|
6841
|
-
}
|
|
6842
|
-
]
|
|
7058
|
+
"module": "kiosk",
|
|
7059
|
+
"name": "Kiosk",
|
|
7060
|
+
"typeArguments": []
|
|
6843
7061
|
}
|
|
6844
7062
|
}
|
|
6845
|
-
}
|
|
6846
|
-
],
|
|
6847
|
-
"return": [
|
|
7063
|
+
},
|
|
6848
7064
|
{
|
|
6849
7065
|
"Reference": {
|
|
6850
7066
|
"Struct": {
|
|
6851
|
-
"address": "
|
|
6852
|
-
"module": "
|
|
6853
|
-
"name": "
|
|
6854
|
-
"typeArguments": [
|
|
6855
|
-
|
|
6856
|
-
|
|
6857
|
-
|
|
6858
|
-
|
|
7067
|
+
"address": "0x2",
|
|
7068
|
+
"module": "kiosk",
|
|
7069
|
+
"name": "KioskOwnerCap",
|
|
7070
|
+
"typeArguments": []
|
|
7071
|
+
}
|
|
7072
|
+
}
|
|
7073
|
+
},
|
|
7074
|
+
"U128",
|
|
7075
|
+
{
|
|
7076
|
+
"MutableReference": {
|
|
7077
|
+
"Struct": {
|
|
7078
|
+
"address": "0x2",
|
|
7079
|
+
"module": "tx_context",
|
|
7080
|
+
"name": "TxContext",
|
|
7081
|
+
"typeArguments": []
|
|
6859
7082
|
}
|
|
6860
7083
|
}
|
|
6861
7084
|
}
|
|
6862
|
-
]
|
|
7085
|
+
],
|
|
7086
|
+
"return": []
|
|
6863
7087
|
},
|
|
6864
|
-
"
|
|
7088
|
+
"can_lock": {
|
|
6865
7089
|
"visibility": "Public",
|
|
6866
7090
|
"isEntry": false,
|
|
6867
7091
|
"typeParameters": [
|
|
6868
7092
|
{
|
|
6869
|
-
"abilities": ["
|
|
6870
|
-
},
|
|
6871
|
-
{
|
|
6872
|
-
"abilities": ["Store"]
|
|
7093
|
+
"abilities": ["Drop"]
|
|
6873
7094
|
}
|
|
6874
7095
|
],
|
|
6875
7096
|
"parameters": [
|
|
@@ -6877,176 +7098,129 @@
|
|
|
6877
7098
|
"Reference": {
|
|
6878
7099
|
"Struct": {
|
|
6879
7100
|
"address": "0x2",
|
|
6880
|
-
"module": "
|
|
6881
|
-
"name": "
|
|
6882
|
-
"typeArguments": [
|
|
6883
|
-
{
|
|
6884
|
-
"TypeParameter": 0
|
|
6885
|
-
},
|
|
6886
|
-
{
|
|
6887
|
-
"TypeParameter": 1
|
|
6888
|
-
}
|
|
6889
|
-
]
|
|
7101
|
+
"module": "kiosk",
|
|
7102
|
+
"name": "Kiosk",
|
|
7103
|
+
"typeArguments": []
|
|
6890
7104
|
}
|
|
6891
7105
|
}
|
|
6892
|
-
},
|
|
6893
|
-
{
|
|
6894
|
-
"TypeParameter": 0
|
|
6895
7106
|
}
|
|
6896
7107
|
],
|
|
6897
|
-
"return": [
|
|
6898
|
-
{
|
|
6899
|
-
"Reference": {
|
|
6900
|
-
"TypeParameter": 1
|
|
6901
|
-
}
|
|
6902
|
-
}
|
|
6903
|
-
]
|
|
7108
|
+
"return": ["Bool"]
|
|
6904
7109
|
},
|
|
6905
|
-
"
|
|
7110
|
+
"can_place": {
|
|
6906
7111
|
"visibility": "Public",
|
|
6907
7112
|
"isEntry": false,
|
|
6908
7113
|
"typeParameters": [
|
|
6909
7114
|
{
|
|
6910
|
-
"abilities": ["
|
|
6911
|
-
},
|
|
6912
|
-
{
|
|
6913
|
-
"abilities": ["Store"]
|
|
7115
|
+
"abilities": ["Drop"]
|
|
6914
7116
|
}
|
|
6915
7117
|
],
|
|
6916
7118
|
"parameters": [
|
|
6917
7119
|
{
|
|
6918
|
-
"
|
|
7120
|
+
"Reference": {
|
|
6919
7121
|
"Struct": {
|
|
6920
7122
|
"address": "0x2",
|
|
6921
|
-
"module": "
|
|
6922
|
-
"name": "
|
|
6923
|
-
"typeArguments": [
|
|
6924
|
-
{
|
|
6925
|
-
"TypeParameter": 0
|
|
6926
|
-
},
|
|
6927
|
-
{
|
|
6928
|
-
"TypeParameter": 1
|
|
6929
|
-
}
|
|
6930
|
-
]
|
|
7123
|
+
"module": "kiosk",
|
|
7124
|
+
"name": "Kiosk",
|
|
7125
|
+
"typeArguments": []
|
|
6931
7126
|
}
|
|
6932
7127
|
}
|
|
6933
|
-
},
|
|
6934
|
-
{
|
|
6935
|
-
"TypeParameter": 0
|
|
6936
7128
|
}
|
|
6937
7129
|
],
|
|
6938
|
-
"return": [
|
|
6939
|
-
{
|
|
6940
|
-
"MutableReference": {
|
|
6941
|
-
"TypeParameter": 1
|
|
6942
|
-
}
|
|
6943
|
-
}
|
|
6944
|
-
]
|
|
7130
|
+
"return": ["Bool"]
|
|
6945
7131
|
},
|
|
6946
|
-
"
|
|
7132
|
+
"disable": {
|
|
6947
7133
|
"visibility": "Public",
|
|
6948
7134
|
"isEntry": false,
|
|
6949
7135
|
"typeParameters": [
|
|
6950
7136
|
{
|
|
6951
|
-
"abilities": ["
|
|
6952
|
-
},
|
|
6953
|
-
{
|
|
6954
|
-
"abilities": ["Store"]
|
|
7137
|
+
"abilities": ["Drop"]
|
|
6955
7138
|
}
|
|
6956
7139
|
],
|
|
6957
7140
|
"parameters": [
|
|
6958
7141
|
{
|
|
6959
|
-
"
|
|
7142
|
+
"MutableReference": {
|
|
6960
7143
|
"Struct": {
|
|
6961
7144
|
"address": "0x2",
|
|
6962
|
-
"module": "
|
|
6963
|
-
"name": "
|
|
6964
|
-
"typeArguments": [
|
|
6965
|
-
{
|
|
6966
|
-
"TypeParameter": 0
|
|
6967
|
-
},
|
|
6968
|
-
{
|
|
6969
|
-
"TypeParameter": 1
|
|
6970
|
-
}
|
|
6971
|
-
]
|
|
7145
|
+
"module": "kiosk",
|
|
7146
|
+
"name": "Kiosk",
|
|
7147
|
+
"typeArguments": []
|
|
6972
7148
|
}
|
|
6973
7149
|
}
|
|
6974
7150
|
},
|
|
6975
7151
|
{
|
|
6976
|
-
"
|
|
7152
|
+
"Reference": {
|
|
7153
|
+
"Struct": {
|
|
7154
|
+
"address": "0x2",
|
|
7155
|
+
"module": "kiosk",
|
|
7156
|
+
"name": "KioskOwnerCap",
|
|
7157
|
+
"typeArguments": []
|
|
7158
|
+
}
|
|
7159
|
+
}
|
|
6977
7160
|
}
|
|
6978
7161
|
],
|
|
6979
|
-
"return": [
|
|
7162
|
+
"return": []
|
|
6980
7163
|
},
|
|
6981
|
-
"
|
|
7164
|
+
"enable": {
|
|
6982
7165
|
"visibility": "Public",
|
|
6983
7166
|
"isEntry": false,
|
|
6984
7167
|
"typeParameters": [
|
|
6985
7168
|
{
|
|
6986
|
-
"abilities": ["
|
|
6987
|
-
},
|
|
6988
|
-
{
|
|
6989
|
-
"abilities": ["Store"]
|
|
7169
|
+
"abilities": ["Drop"]
|
|
6990
7170
|
}
|
|
6991
7171
|
],
|
|
6992
7172
|
"parameters": [
|
|
6993
7173
|
{
|
|
6994
|
-
"
|
|
6995
|
-
"
|
|
6996
|
-
|
|
6997
|
-
|
|
6998
|
-
|
|
6999
|
-
|
|
7000
|
-
|
|
7001
|
-
|
|
7002
|
-
|
|
7003
|
-
|
|
7004
|
-
|
|
7005
|
-
|
|
7174
|
+
"MutableReference": {
|
|
7175
|
+
"Struct": {
|
|
7176
|
+
"address": "0x2",
|
|
7177
|
+
"module": "kiosk",
|
|
7178
|
+
"name": "Kiosk",
|
|
7179
|
+
"typeArguments": []
|
|
7180
|
+
}
|
|
7181
|
+
}
|
|
7182
|
+
},
|
|
7183
|
+
{
|
|
7184
|
+
"Reference": {
|
|
7185
|
+
"Struct": {
|
|
7186
|
+
"address": "0x2",
|
|
7187
|
+
"module": "kiosk",
|
|
7188
|
+
"name": "KioskOwnerCap",
|
|
7189
|
+
"typeArguments": []
|
|
7190
|
+
}
|
|
7006
7191
|
}
|
|
7007
7192
|
}
|
|
7008
7193
|
],
|
|
7009
7194
|
"return": []
|
|
7010
7195
|
},
|
|
7011
|
-
"
|
|
7196
|
+
"is_enabled": {
|
|
7012
7197
|
"visibility": "Public",
|
|
7013
7198
|
"isEntry": false,
|
|
7014
7199
|
"typeParameters": [
|
|
7015
7200
|
{
|
|
7016
|
-
"abilities": ["
|
|
7017
|
-
},
|
|
7018
|
-
{
|
|
7019
|
-
"abilities": ["Drop", "Store"]
|
|
7201
|
+
"abilities": ["Drop"]
|
|
7020
7202
|
}
|
|
7021
7203
|
],
|
|
7022
7204
|
"parameters": [
|
|
7023
7205
|
{
|
|
7024
|
-
"
|
|
7025
|
-
"
|
|
7026
|
-
|
|
7027
|
-
|
|
7028
|
-
|
|
7029
|
-
|
|
7030
|
-
|
|
7031
|
-
},
|
|
7032
|
-
{
|
|
7033
|
-
"TypeParameter": 1
|
|
7034
|
-
}
|
|
7035
|
-
]
|
|
7206
|
+
"Reference": {
|
|
7207
|
+
"Struct": {
|
|
7208
|
+
"address": "0x2",
|
|
7209
|
+
"module": "kiosk",
|
|
7210
|
+
"name": "Kiosk",
|
|
7211
|
+
"typeArguments": []
|
|
7212
|
+
}
|
|
7036
7213
|
}
|
|
7037
7214
|
}
|
|
7038
7215
|
],
|
|
7039
|
-
"return": []
|
|
7216
|
+
"return": ["Bool"]
|
|
7040
7217
|
},
|
|
7041
|
-
"
|
|
7218
|
+
"is_installed": {
|
|
7042
7219
|
"visibility": "Public",
|
|
7043
7220
|
"isEntry": false,
|
|
7044
7221
|
"typeParameters": [
|
|
7045
7222
|
{
|
|
7046
|
-
"abilities": ["
|
|
7047
|
-
},
|
|
7048
|
-
{
|
|
7049
|
-
"abilities": ["Store"]
|
|
7223
|
+
"abilities": ["Drop"]
|
|
7050
7224
|
}
|
|
7051
7225
|
],
|
|
7052
7226
|
"parameters": [
|
|
@@ -7054,59 +7228,50 @@
|
|
|
7054
7228
|
"Reference": {
|
|
7055
7229
|
"Struct": {
|
|
7056
7230
|
"address": "0x2",
|
|
7057
|
-
"module": "
|
|
7058
|
-
"name": "
|
|
7059
|
-
"typeArguments": [
|
|
7060
|
-
{
|
|
7061
|
-
"TypeParameter": 0
|
|
7062
|
-
},
|
|
7063
|
-
{
|
|
7064
|
-
"TypeParameter": 1
|
|
7065
|
-
}
|
|
7066
|
-
]
|
|
7231
|
+
"module": "kiosk",
|
|
7232
|
+
"name": "Kiosk",
|
|
7233
|
+
"typeArguments": []
|
|
7067
7234
|
}
|
|
7068
7235
|
}
|
|
7069
7236
|
}
|
|
7070
7237
|
],
|
|
7071
|
-
"return": [
|
|
7072
|
-
{
|
|
7073
|
-
"Reference": {
|
|
7074
|
-
"Struct": {
|
|
7075
|
-
"address": "0x1",
|
|
7076
|
-
"module": "option",
|
|
7077
|
-
"name": "Option",
|
|
7078
|
-
"typeArguments": [
|
|
7079
|
-
{
|
|
7080
|
-
"TypeParameter": 0
|
|
7081
|
-
}
|
|
7082
|
-
]
|
|
7083
|
-
}
|
|
7084
|
-
}
|
|
7085
|
-
}
|
|
7086
|
-
]
|
|
7238
|
+
"return": ["Bool"]
|
|
7087
7239
|
},
|
|
7088
|
-
"
|
|
7240
|
+
"lock": {
|
|
7089
7241
|
"visibility": "Public",
|
|
7090
7242
|
"isEntry": false,
|
|
7091
7243
|
"typeParameters": [
|
|
7092
7244
|
{
|
|
7093
|
-
"abilities": ["
|
|
7245
|
+
"abilities": ["Drop"]
|
|
7094
7246
|
},
|
|
7095
7247
|
{
|
|
7096
|
-
"abilities": ["Store"]
|
|
7248
|
+
"abilities": ["Store", "Key"]
|
|
7097
7249
|
}
|
|
7098
7250
|
],
|
|
7099
7251
|
"parameters": [
|
|
7252
|
+
{
|
|
7253
|
+
"TypeParameter": 0
|
|
7254
|
+
},
|
|
7255
|
+
{
|
|
7256
|
+
"MutableReference": {
|
|
7257
|
+
"Struct": {
|
|
7258
|
+
"address": "0x2",
|
|
7259
|
+
"module": "kiosk",
|
|
7260
|
+
"name": "Kiosk",
|
|
7261
|
+
"typeArguments": []
|
|
7262
|
+
}
|
|
7263
|
+
}
|
|
7264
|
+
},
|
|
7265
|
+
{
|
|
7266
|
+
"TypeParameter": 1
|
|
7267
|
+
},
|
|
7100
7268
|
{
|
|
7101
7269
|
"Reference": {
|
|
7102
7270
|
"Struct": {
|
|
7103
7271
|
"address": "0x2",
|
|
7104
|
-
"module": "
|
|
7105
|
-
"name": "
|
|
7272
|
+
"module": "transfer_policy",
|
|
7273
|
+
"name": "TransferPolicy",
|
|
7106
7274
|
"typeArguments": [
|
|
7107
|
-
{
|
|
7108
|
-
"TypeParameter": 0
|
|
7109
|
-
},
|
|
7110
7275
|
{
|
|
7111
7276
|
"TypeParameter": 1
|
|
7112
7277
|
}
|
|
@@ -7115,30 +7280,43 @@
|
|
|
7115
7280
|
}
|
|
7116
7281
|
}
|
|
7117
7282
|
],
|
|
7118
|
-
"return": [
|
|
7283
|
+
"return": []
|
|
7119
7284
|
},
|
|
7120
|
-
"
|
|
7285
|
+
"place": {
|
|
7121
7286
|
"visibility": "Public",
|
|
7122
7287
|
"isEntry": false,
|
|
7123
7288
|
"typeParameters": [
|
|
7124
7289
|
{
|
|
7125
|
-
"abilities": ["
|
|
7290
|
+
"abilities": ["Drop"]
|
|
7126
7291
|
},
|
|
7127
7292
|
{
|
|
7128
|
-
"abilities": ["Store"]
|
|
7293
|
+
"abilities": ["Store", "Key"]
|
|
7129
7294
|
}
|
|
7130
7295
|
],
|
|
7131
7296
|
"parameters": [
|
|
7297
|
+
{
|
|
7298
|
+
"TypeParameter": 0
|
|
7299
|
+
},
|
|
7300
|
+
{
|
|
7301
|
+
"MutableReference": {
|
|
7302
|
+
"Struct": {
|
|
7303
|
+
"address": "0x2",
|
|
7304
|
+
"module": "kiosk",
|
|
7305
|
+
"name": "Kiosk",
|
|
7306
|
+
"typeArguments": []
|
|
7307
|
+
}
|
|
7308
|
+
}
|
|
7309
|
+
},
|
|
7310
|
+
{
|
|
7311
|
+
"TypeParameter": 1
|
|
7312
|
+
},
|
|
7132
7313
|
{
|
|
7133
7314
|
"Reference": {
|
|
7134
7315
|
"Struct": {
|
|
7135
7316
|
"address": "0x2",
|
|
7136
|
-
"module": "
|
|
7137
|
-
"name": "
|
|
7317
|
+
"module": "transfer_policy",
|
|
7318
|
+
"name": "TransferPolicy",
|
|
7138
7319
|
"typeArguments": [
|
|
7139
|
-
{
|
|
7140
|
-
"TypeParameter": 0
|
|
7141
|
-
},
|
|
7142
7320
|
{
|
|
7143
7321
|
"TypeParameter": 1
|
|
7144
7322
|
}
|
|
@@ -7147,17 +7325,14 @@
|
|
|
7147
7325
|
}
|
|
7148
7326
|
}
|
|
7149
7327
|
],
|
|
7150
|
-
"return": [
|
|
7328
|
+
"return": []
|
|
7151
7329
|
},
|
|
7152
|
-
"
|
|
7330
|
+
"remove": {
|
|
7153
7331
|
"visibility": "Public",
|
|
7154
7332
|
"isEntry": false,
|
|
7155
7333
|
"typeParameters": [
|
|
7156
7334
|
{
|
|
7157
|
-
"abilities": ["
|
|
7158
|
-
},
|
|
7159
|
-
{
|
|
7160
|
-
"abilities": ["Store"]
|
|
7335
|
+
"abilities": ["Drop"]
|
|
7161
7336
|
}
|
|
7162
7337
|
],
|
|
7163
7338
|
"parameters": [
|
|
@@ -7165,160 +7340,231 @@
|
|
|
7165
7340
|
"MutableReference": {
|
|
7166
7341
|
"Struct": {
|
|
7167
7342
|
"address": "0x2",
|
|
7168
|
-
"module": "
|
|
7169
|
-
"name": "
|
|
7343
|
+
"module": "kiosk",
|
|
7344
|
+
"name": "Kiosk",
|
|
7170
7345
|
"typeArguments": []
|
|
7171
7346
|
}
|
|
7172
7347
|
}
|
|
7173
|
-
}
|
|
7174
|
-
],
|
|
7175
|
-
"return": [
|
|
7348
|
+
},
|
|
7176
7349
|
{
|
|
7177
|
-
"
|
|
7178
|
-
"
|
|
7179
|
-
|
|
7180
|
-
|
|
7181
|
-
|
|
7182
|
-
|
|
7183
|
-
|
|
7184
|
-
},
|
|
7185
|
-
{
|
|
7186
|
-
"TypeParameter": 1
|
|
7187
|
-
}
|
|
7188
|
-
]
|
|
7350
|
+
"Reference": {
|
|
7351
|
+
"Struct": {
|
|
7352
|
+
"address": "0x2",
|
|
7353
|
+
"module": "kiosk",
|
|
7354
|
+
"name": "KioskOwnerCap",
|
|
7355
|
+
"typeArguments": []
|
|
7356
|
+
}
|
|
7189
7357
|
}
|
|
7190
7358
|
}
|
|
7191
|
-
]
|
|
7359
|
+
],
|
|
7360
|
+
"return": []
|
|
7192
7361
|
},
|
|
7193
|
-
"
|
|
7362
|
+
"storage": {
|
|
7194
7363
|
"visibility": "Public",
|
|
7195
7364
|
"isEntry": false,
|
|
7196
7365
|
"typeParameters": [
|
|
7197
7366
|
{
|
|
7198
|
-
"abilities": ["
|
|
7199
|
-
},
|
|
7200
|
-
{
|
|
7201
|
-
"abilities": ["Store"]
|
|
7367
|
+
"abilities": ["Drop"]
|
|
7202
7368
|
}
|
|
7203
7369
|
],
|
|
7204
7370
|
"parameters": [
|
|
7371
|
+
{
|
|
7372
|
+
"TypeParameter": 0
|
|
7373
|
+
},
|
|
7205
7374
|
{
|
|
7206
7375
|
"Reference": {
|
|
7207
7376
|
"Struct": {
|
|
7208
7377
|
"address": "0x2",
|
|
7209
|
-
"module": "
|
|
7210
|
-
"name": "
|
|
7211
|
-
"typeArguments": [
|
|
7212
|
-
{
|
|
7213
|
-
"TypeParameter": 0
|
|
7214
|
-
},
|
|
7215
|
-
{
|
|
7216
|
-
"TypeParameter": 1
|
|
7217
|
-
}
|
|
7218
|
-
]
|
|
7378
|
+
"module": "kiosk",
|
|
7379
|
+
"name": "Kiosk",
|
|
7380
|
+
"typeArguments": []
|
|
7219
7381
|
}
|
|
7220
7382
|
}
|
|
7221
|
-
},
|
|
7222
|
-
{
|
|
7223
|
-
"TypeParameter": 0
|
|
7224
7383
|
}
|
|
7225
7384
|
],
|
|
7226
7385
|
"return": [
|
|
7227
7386
|
{
|
|
7228
7387
|
"Reference": {
|
|
7229
7388
|
"Struct": {
|
|
7230
|
-
"address": "
|
|
7231
|
-
"module": "
|
|
7232
|
-
"name": "
|
|
7233
|
-
"typeArguments": [
|
|
7234
|
-
|
|
7235
|
-
"TypeParameter": 0
|
|
7236
|
-
}
|
|
7237
|
-
]
|
|
7238
|
-
}
|
|
7389
|
+
"address": "0x2",
|
|
7390
|
+
"module": "bag",
|
|
7391
|
+
"name": "Bag",
|
|
7392
|
+
"typeArguments": []
|
|
7393
|
+
}
|
|
7239
7394
|
}
|
|
7240
7395
|
}
|
|
7241
7396
|
]
|
|
7242
7397
|
},
|
|
7243
|
-
"
|
|
7398
|
+
"storage_mut": {
|
|
7244
7399
|
"visibility": "Public",
|
|
7245
7400
|
"isEntry": false,
|
|
7246
7401
|
"typeParameters": [
|
|
7247
7402
|
{
|
|
7248
|
-
"abilities": ["
|
|
7403
|
+
"abilities": ["Drop"]
|
|
7404
|
+
}
|
|
7405
|
+
],
|
|
7406
|
+
"parameters": [
|
|
7407
|
+
{
|
|
7408
|
+
"TypeParameter": 0
|
|
7249
7409
|
},
|
|
7250
7410
|
{
|
|
7251
|
-
"
|
|
7411
|
+
"MutableReference": {
|
|
7412
|
+
"Struct": {
|
|
7413
|
+
"address": "0x2",
|
|
7414
|
+
"module": "kiosk",
|
|
7415
|
+
"name": "Kiosk",
|
|
7416
|
+
"typeArguments": []
|
|
7417
|
+
}
|
|
7418
|
+
}
|
|
7252
7419
|
}
|
|
7253
7420
|
],
|
|
7254
|
-
"
|
|
7421
|
+
"return": [
|
|
7255
7422
|
{
|
|
7256
7423
|
"MutableReference": {
|
|
7257
7424
|
"Struct": {
|
|
7258
7425
|
"address": "0x2",
|
|
7259
|
-
"module": "
|
|
7260
|
-
"name": "
|
|
7426
|
+
"module": "bag",
|
|
7427
|
+
"name": "Bag",
|
|
7428
|
+
"typeArguments": []
|
|
7429
|
+
}
|
|
7430
|
+
}
|
|
7431
|
+
}
|
|
7432
|
+
]
|
|
7433
|
+
}
|
|
7434
|
+
}
|
|
7435
|
+
},
|
|
7436
|
+
"linked_table": {
|
|
7437
|
+
"fileFormatVersion": 6,
|
|
7438
|
+
"address": "0x2",
|
|
7439
|
+
"name": "linked_table",
|
|
7440
|
+
"friends": [],
|
|
7441
|
+
"structs": {
|
|
7442
|
+
"LinkedTable": {
|
|
7443
|
+
"abilities": {
|
|
7444
|
+
"abilities": ["Store", "Key"]
|
|
7445
|
+
},
|
|
7446
|
+
"typeParameters": [
|
|
7447
|
+
{
|
|
7448
|
+
"constraints": {
|
|
7449
|
+
"abilities": ["Copy", "Drop", "Store"]
|
|
7450
|
+
},
|
|
7451
|
+
"isPhantom": false
|
|
7452
|
+
},
|
|
7453
|
+
{
|
|
7454
|
+
"constraints": {
|
|
7455
|
+
"abilities": ["Store"]
|
|
7456
|
+
},
|
|
7457
|
+
"isPhantom": true
|
|
7458
|
+
}
|
|
7459
|
+
],
|
|
7460
|
+
"fields": [
|
|
7461
|
+
{
|
|
7462
|
+
"name": "id",
|
|
7463
|
+
"type": {
|
|
7464
|
+
"Struct": {
|
|
7465
|
+
"address": "0x2",
|
|
7466
|
+
"module": "object",
|
|
7467
|
+
"name": "UID",
|
|
7468
|
+
"typeArguments": []
|
|
7469
|
+
}
|
|
7470
|
+
}
|
|
7471
|
+
},
|
|
7472
|
+
{
|
|
7473
|
+
"name": "size",
|
|
7474
|
+
"type": "U64"
|
|
7475
|
+
},
|
|
7476
|
+
{
|
|
7477
|
+
"name": "head",
|
|
7478
|
+
"type": {
|
|
7479
|
+
"Struct": {
|
|
7480
|
+
"address": "0x1",
|
|
7481
|
+
"module": "option",
|
|
7482
|
+
"name": "Option",
|
|
7261
7483
|
"typeArguments": [
|
|
7262
7484
|
{
|
|
7263
7485
|
"TypeParameter": 0
|
|
7264
|
-
},
|
|
7265
|
-
{
|
|
7266
|
-
"TypeParameter": 1
|
|
7267
7486
|
}
|
|
7268
7487
|
]
|
|
7269
7488
|
}
|
|
7270
7489
|
}
|
|
7271
|
-
}
|
|
7272
|
-
],
|
|
7273
|
-
"return": [
|
|
7274
|
-
{
|
|
7275
|
-
"TypeParameter": 0
|
|
7276
7490
|
},
|
|
7277
7491
|
{
|
|
7278
|
-
"
|
|
7492
|
+
"name": "tail",
|
|
7493
|
+
"type": {
|
|
7494
|
+
"Struct": {
|
|
7495
|
+
"address": "0x1",
|
|
7496
|
+
"module": "option",
|
|
7497
|
+
"name": "Option",
|
|
7498
|
+
"typeArguments": [
|
|
7499
|
+
{
|
|
7500
|
+
"TypeParameter": 0
|
|
7501
|
+
}
|
|
7502
|
+
]
|
|
7503
|
+
}
|
|
7504
|
+
}
|
|
7279
7505
|
}
|
|
7280
7506
|
]
|
|
7281
7507
|
},
|
|
7282
|
-
"
|
|
7283
|
-
"
|
|
7284
|
-
|
|
7508
|
+
"Node": {
|
|
7509
|
+
"abilities": {
|
|
7510
|
+
"abilities": ["Store"]
|
|
7511
|
+
},
|
|
7285
7512
|
"typeParameters": [
|
|
7286
7513
|
{
|
|
7287
|
-
"
|
|
7514
|
+
"constraints": {
|
|
7515
|
+
"abilities": ["Copy", "Drop", "Store"]
|
|
7516
|
+
},
|
|
7517
|
+
"isPhantom": false
|
|
7288
7518
|
},
|
|
7289
7519
|
{
|
|
7290
|
-
"
|
|
7520
|
+
"constraints": {
|
|
7521
|
+
"abilities": ["Store"]
|
|
7522
|
+
},
|
|
7523
|
+
"isPhantom": false
|
|
7291
7524
|
}
|
|
7292
7525
|
],
|
|
7293
|
-
"
|
|
7526
|
+
"fields": [
|
|
7294
7527
|
{
|
|
7295
|
-
"
|
|
7528
|
+
"name": "prev",
|
|
7529
|
+
"type": {
|
|
7296
7530
|
"Struct": {
|
|
7297
|
-
"address": "
|
|
7298
|
-
"module": "
|
|
7299
|
-
"name": "
|
|
7531
|
+
"address": "0x1",
|
|
7532
|
+
"module": "option",
|
|
7533
|
+
"name": "Option",
|
|
7300
7534
|
"typeArguments": [
|
|
7301
7535
|
{
|
|
7302
7536
|
"TypeParameter": 0
|
|
7303
|
-
},
|
|
7304
|
-
{
|
|
7305
|
-
"TypeParameter": 1
|
|
7306
7537
|
}
|
|
7307
7538
|
]
|
|
7308
7539
|
}
|
|
7309
7540
|
}
|
|
7310
|
-
}
|
|
7311
|
-
],
|
|
7312
|
-
"return": [
|
|
7541
|
+
},
|
|
7313
7542
|
{
|
|
7314
|
-
"
|
|
7543
|
+
"name": "next",
|
|
7544
|
+
"type": {
|
|
7545
|
+
"Struct": {
|
|
7546
|
+
"address": "0x1",
|
|
7547
|
+
"module": "option",
|
|
7548
|
+
"name": "Option",
|
|
7549
|
+
"typeArguments": [
|
|
7550
|
+
{
|
|
7551
|
+
"TypeParameter": 0
|
|
7552
|
+
}
|
|
7553
|
+
]
|
|
7554
|
+
}
|
|
7555
|
+
}
|
|
7315
7556
|
},
|
|
7316
7557
|
{
|
|
7317
|
-
"
|
|
7558
|
+
"name": "value",
|
|
7559
|
+
"type": {
|
|
7560
|
+
"TypeParameter": 1
|
|
7561
|
+
}
|
|
7318
7562
|
}
|
|
7319
7563
|
]
|
|
7320
|
-
}
|
|
7321
|
-
|
|
7564
|
+
}
|
|
7565
|
+
},
|
|
7566
|
+
"exposedFunctions": {
|
|
7567
|
+
"back": {
|
|
7322
7568
|
"visibility": "Public",
|
|
7323
7569
|
"isEntry": false,
|
|
7324
7570
|
"typeParameters": [
|
|
@@ -7346,9 +7592,6 @@
|
|
|
7346
7592
|
]
|
|
7347
7593
|
}
|
|
7348
7594
|
}
|
|
7349
|
-
},
|
|
7350
|
-
{
|
|
7351
|
-
"TypeParameter": 0
|
|
7352
7595
|
}
|
|
7353
7596
|
],
|
|
7354
7597
|
"return": [
|
|
@@ -7368,7 +7611,7 @@
|
|
|
7368
7611
|
}
|
|
7369
7612
|
]
|
|
7370
7613
|
},
|
|
7371
|
-
"
|
|
7614
|
+
"borrow": {
|
|
7372
7615
|
"visibility": "Public",
|
|
7373
7616
|
"isEntry": false,
|
|
7374
7617
|
"typeParameters": [
|
|
@@ -7381,7 +7624,7 @@
|
|
|
7381
7624
|
],
|
|
7382
7625
|
"parameters": [
|
|
7383
7626
|
{
|
|
7384
|
-
"
|
|
7627
|
+
"Reference": {
|
|
7385
7628
|
"Struct": {
|
|
7386
7629
|
"address": "0x2",
|
|
7387
7630
|
"module": "linked_table",
|
|
@@ -7399,14 +7642,17 @@
|
|
|
7399
7642
|
},
|
|
7400
7643
|
{
|
|
7401
7644
|
"TypeParameter": 0
|
|
7402
|
-
},
|
|
7403
|
-
{
|
|
7404
|
-
"TypeParameter": 1
|
|
7405
7645
|
}
|
|
7406
7646
|
],
|
|
7407
|
-
"return": [
|
|
7647
|
+
"return": [
|
|
7648
|
+
{
|
|
7649
|
+
"Reference": {
|
|
7650
|
+
"TypeParameter": 1
|
|
7651
|
+
}
|
|
7652
|
+
}
|
|
7653
|
+
]
|
|
7408
7654
|
},
|
|
7409
|
-
"
|
|
7655
|
+
"borrow_mut": {
|
|
7410
7656
|
"visibility": "Public",
|
|
7411
7657
|
"isEntry": false,
|
|
7412
7658
|
"typeParameters": [
|
|
@@ -7437,14 +7683,17 @@
|
|
|
7437
7683
|
},
|
|
7438
7684
|
{
|
|
7439
7685
|
"TypeParameter": 0
|
|
7440
|
-
},
|
|
7441
|
-
{
|
|
7442
|
-
"TypeParameter": 1
|
|
7443
7686
|
}
|
|
7444
7687
|
],
|
|
7445
|
-
"return": [
|
|
7688
|
+
"return": [
|
|
7689
|
+
{
|
|
7690
|
+
"MutableReference": {
|
|
7691
|
+
"TypeParameter": 1
|
|
7692
|
+
}
|
|
7693
|
+
}
|
|
7694
|
+
]
|
|
7446
7695
|
},
|
|
7447
|
-
"
|
|
7696
|
+
"contains": {
|
|
7448
7697
|
"visibility": "Public",
|
|
7449
7698
|
"isEntry": false,
|
|
7450
7699
|
"typeParameters": [
|
|
@@ -7457,7 +7706,7 @@
|
|
|
7457
7706
|
],
|
|
7458
7707
|
"parameters": [
|
|
7459
7708
|
{
|
|
7460
|
-
"
|
|
7709
|
+
"Reference": {
|
|
7461
7710
|
"Struct": {
|
|
7462
7711
|
"address": "0x2",
|
|
7463
7712
|
"module": "linked_table",
|
|
@@ -7477,39 +7726,540 @@
|
|
|
7477
7726
|
"TypeParameter": 0
|
|
7478
7727
|
}
|
|
7479
7728
|
],
|
|
7480
|
-
"return": [
|
|
7481
|
-
{
|
|
7482
|
-
"TypeParameter": 1
|
|
7483
|
-
}
|
|
7484
|
-
]
|
|
7485
|
-
}
|
|
7486
|
-
}
|
|
7487
|
-
},
|
|
7488
|
-
"math": {
|
|
7489
|
-
"fileFormatVersion": 6,
|
|
7490
|
-
"address": "0x2",
|
|
7491
|
-
"name": "math",
|
|
7492
|
-
"friends": [],
|
|
7493
|
-
"structs": {},
|
|
7494
|
-
"exposedFunctions": {
|
|
7495
|
-
"diff": {
|
|
7496
|
-
"visibility": "Public",
|
|
7497
|
-
"isEntry": false,
|
|
7498
|
-
"typeParameters": [],
|
|
7499
|
-
"parameters": ["U64", "U64"],
|
|
7500
|
-
"return": ["U64"]
|
|
7729
|
+
"return": ["Bool"]
|
|
7501
7730
|
},
|
|
7502
|
-
"
|
|
7731
|
+
"destroy_empty": {
|
|
7503
7732
|
"visibility": "Public",
|
|
7504
7733
|
"isEntry": false,
|
|
7505
|
-
"typeParameters": [
|
|
7506
|
-
|
|
7507
|
-
|
|
7734
|
+
"typeParameters": [
|
|
7735
|
+
{
|
|
7736
|
+
"abilities": ["Copy", "Drop", "Store"]
|
|
7737
|
+
},
|
|
7738
|
+
{
|
|
7739
|
+
"abilities": ["Store"]
|
|
7740
|
+
}
|
|
7741
|
+
],
|
|
7742
|
+
"parameters": [
|
|
7743
|
+
{
|
|
7744
|
+
"Struct": {
|
|
7745
|
+
"address": "0x2",
|
|
7746
|
+
"module": "linked_table",
|
|
7747
|
+
"name": "LinkedTable",
|
|
7748
|
+
"typeArguments": [
|
|
7749
|
+
{
|
|
7750
|
+
"TypeParameter": 0
|
|
7751
|
+
},
|
|
7752
|
+
{
|
|
7753
|
+
"TypeParameter": 1
|
|
7754
|
+
}
|
|
7755
|
+
]
|
|
7756
|
+
}
|
|
7757
|
+
}
|
|
7758
|
+
],
|
|
7759
|
+
"return": []
|
|
7508
7760
|
},
|
|
7509
|
-
"
|
|
7761
|
+
"drop": {
|
|
7510
7762
|
"visibility": "Public",
|
|
7511
7763
|
"isEntry": false,
|
|
7512
|
-
"typeParameters": [
|
|
7764
|
+
"typeParameters": [
|
|
7765
|
+
{
|
|
7766
|
+
"abilities": ["Copy", "Drop", "Store"]
|
|
7767
|
+
},
|
|
7768
|
+
{
|
|
7769
|
+
"abilities": ["Drop", "Store"]
|
|
7770
|
+
}
|
|
7771
|
+
],
|
|
7772
|
+
"parameters": [
|
|
7773
|
+
{
|
|
7774
|
+
"Struct": {
|
|
7775
|
+
"address": "0x2",
|
|
7776
|
+
"module": "linked_table",
|
|
7777
|
+
"name": "LinkedTable",
|
|
7778
|
+
"typeArguments": [
|
|
7779
|
+
{
|
|
7780
|
+
"TypeParameter": 0
|
|
7781
|
+
},
|
|
7782
|
+
{
|
|
7783
|
+
"TypeParameter": 1
|
|
7784
|
+
}
|
|
7785
|
+
]
|
|
7786
|
+
}
|
|
7787
|
+
}
|
|
7788
|
+
],
|
|
7789
|
+
"return": []
|
|
7790
|
+
},
|
|
7791
|
+
"front": {
|
|
7792
|
+
"visibility": "Public",
|
|
7793
|
+
"isEntry": false,
|
|
7794
|
+
"typeParameters": [
|
|
7795
|
+
{
|
|
7796
|
+
"abilities": ["Copy", "Drop", "Store"]
|
|
7797
|
+
},
|
|
7798
|
+
{
|
|
7799
|
+
"abilities": ["Store"]
|
|
7800
|
+
}
|
|
7801
|
+
],
|
|
7802
|
+
"parameters": [
|
|
7803
|
+
{
|
|
7804
|
+
"Reference": {
|
|
7805
|
+
"Struct": {
|
|
7806
|
+
"address": "0x2",
|
|
7807
|
+
"module": "linked_table",
|
|
7808
|
+
"name": "LinkedTable",
|
|
7809
|
+
"typeArguments": [
|
|
7810
|
+
{
|
|
7811
|
+
"TypeParameter": 0
|
|
7812
|
+
},
|
|
7813
|
+
{
|
|
7814
|
+
"TypeParameter": 1
|
|
7815
|
+
}
|
|
7816
|
+
]
|
|
7817
|
+
}
|
|
7818
|
+
}
|
|
7819
|
+
}
|
|
7820
|
+
],
|
|
7821
|
+
"return": [
|
|
7822
|
+
{
|
|
7823
|
+
"Reference": {
|
|
7824
|
+
"Struct": {
|
|
7825
|
+
"address": "0x1",
|
|
7826
|
+
"module": "option",
|
|
7827
|
+
"name": "Option",
|
|
7828
|
+
"typeArguments": [
|
|
7829
|
+
{
|
|
7830
|
+
"TypeParameter": 0
|
|
7831
|
+
}
|
|
7832
|
+
]
|
|
7833
|
+
}
|
|
7834
|
+
}
|
|
7835
|
+
}
|
|
7836
|
+
]
|
|
7837
|
+
},
|
|
7838
|
+
"is_empty": {
|
|
7839
|
+
"visibility": "Public",
|
|
7840
|
+
"isEntry": false,
|
|
7841
|
+
"typeParameters": [
|
|
7842
|
+
{
|
|
7843
|
+
"abilities": ["Copy", "Drop", "Store"]
|
|
7844
|
+
},
|
|
7845
|
+
{
|
|
7846
|
+
"abilities": ["Store"]
|
|
7847
|
+
}
|
|
7848
|
+
],
|
|
7849
|
+
"parameters": [
|
|
7850
|
+
{
|
|
7851
|
+
"Reference": {
|
|
7852
|
+
"Struct": {
|
|
7853
|
+
"address": "0x2",
|
|
7854
|
+
"module": "linked_table",
|
|
7855
|
+
"name": "LinkedTable",
|
|
7856
|
+
"typeArguments": [
|
|
7857
|
+
{
|
|
7858
|
+
"TypeParameter": 0
|
|
7859
|
+
},
|
|
7860
|
+
{
|
|
7861
|
+
"TypeParameter": 1
|
|
7862
|
+
}
|
|
7863
|
+
]
|
|
7864
|
+
}
|
|
7865
|
+
}
|
|
7866
|
+
}
|
|
7867
|
+
],
|
|
7868
|
+
"return": ["Bool"]
|
|
7869
|
+
},
|
|
7870
|
+
"length": {
|
|
7871
|
+
"visibility": "Public",
|
|
7872
|
+
"isEntry": false,
|
|
7873
|
+
"typeParameters": [
|
|
7874
|
+
{
|
|
7875
|
+
"abilities": ["Copy", "Drop", "Store"]
|
|
7876
|
+
},
|
|
7877
|
+
{
|
|
7878
|
+
"abilities": ["Store"]
|
|
7879
|
+
}
|
|
7880
|
+
],
|
|
7881
|
+
"parameters": [
|
|
7882
|
+
{
|
|
7883
|
+
"Reference": {
|
|
7884
|
+
"Struct": {
|
|
7885
|
+
"address": "0x2",
|
|
7886
|
+
"module": "linked_table",
|
|
7887
|
+
"name": "LinkedTable",
|
|
7888
|
+
"typeArguments": [
|
|
7889
|
+
{
|
|
7890
|
+
"TypeParameter": 0
|
|
7891
|
+
},
|
|
7892
|
+
{
|
|
7893
|
+
"TypeParameter": 1
|
|
7894
|
+
}
|
|
7895
|
+
]
|
|
7896
|
+
}
|
|
7897
|
+
}
|
|
7898
|
+
}
|
|
7899
|
+
],
|
|
7900
|
+
"return": ["U64"]
|
|
7901
|
+
},
|
|
7902
|
+
"new": {
|
|
7903
|
+
"visibility": "Public",
|
|
7904
|
+
"isEntry": false,
|
|
7905
|
+
"typeParameters": [
|
|
7906
|
+
{
|
|
7907
|
+
"abilities": ["Copy", "Drop", "Store"]
|
|
7908
|
+
},
|
|
7909
|
+
{
|
|
7910
|
+
"abilities": ["Store"]
|
|
7911
|
+
}
|
|
7912
|
+
],
|
|
7913
|
+
"parameters": [
|
|
7914
|
+
{
|
|
7915
|
+
"MutableReference": {
|
|
7916
|
+
"Struct": {
|
|
7917
|
+
"address": "0x2",
|
|
7918
|
+
"module": "tx_context",
|
|
7919
|
+
"name": "TxContext",
|
|
7920
|
+
"typeArguments": []
|
|
7921
|
+
}
|
|
7922
|
+
}
|
|
7923
|
+
}
|
|
7924
|
+
],
|
|
7925
|
+
"return": [
|
|
7926
|
+
{
|
|
7927
|
+
"Struct": {
|
|
7928
|
+
"address": "0x2",
|
|
7929
|
+
"module": "linked_table",
|
|
7930
|
+
"name": "LinkedTable",
|
|
7931
|
+
"typeArguments": [
|
|
7932
|
+
{
|
|
7933
|
+
"TypeParameter": 0
|
|
7934
|
+
},
|
|
7935
|
+
{
|
|
7936
|
+
"TypeParameter": 1
|
|
7937
|
+
}
|
|
7938
|
+
]
|
|
7939
|
+
}
|
|
7940
|
+
}
|
|
7941
|
+
]
|
|
7942
|
+
},
|
|
7943
|
+
"next": {
|
|
7944
|
+
"visibility": "Public",
|
|
7945
|
+
"isEntry": false,
|
|
7946
|
+
"typeParameters": [
|
|
7947
|
+
{
|
|
7948
|
+
"abilities": ["Copy", "Drop", "Store"]
|
|
7949
|
+
},
|
|
7950
|
+
{
|
|
7951
|
+
"abilities": ["Store"]
|
|
7952
|
+
}
|
|
7953
|
+
],
|
|
7954
|
+
"parameters": [
|
|
7955
|
+
{
|
|
7956
|
+
"Reference": {
|
|
7957
|
+
"Struct": {
|
|
7958
|
+
"address": "0x2",
|
|
7959
|
+
"module": "linked_table",
|
|
7960
|
+
"name": "LinkedTable",
|
|
7961
|
+
"typeArguments": [
|
|
7962
|
+
{
|
|
7963
|
+
"TypeParameter": 0
|
|
7964
|
+
},
|
|
7965
|
+
{
|
|
7966
|
+
"TypeParameter": 1
|
|
7967
|
+
}
|
|
7968
|
+
]
|
|
7969
|
+
}
|
|
7970
|
+
}
|
|
7971
|
+
},
|
|
7972
|
+
{
|
|
7973
|
+
"TypeParameter": 0
|
|
7974
|
+
}
|
|
7975
|
+
],
|
|
7976
|
+
"return": [
|
|
7977
|
+
{
|
|
7978
|
+
"Reference": {
|
|
7979
|
+
"Struct": {
|
|
7980
|
+
"address": "0x1",
|
|
7981
|
+
"module": "option",
|
|
7982
|
+
"name": "Option",
|
|
7983
|
+
"typeArguments": [
|
|
7984
|
+
{
|
|
7985
|
+
"TypeParameter": 0
|
|
7986
|
+
}
|
|
7987
|
+
]
|
|
7988
|
+
}
|
|
7989
|
+
}
|
|
7990
|
+
}
|
|
7991
|
+
]
|
|
7992
|
+
},
|
|
7993
|
+
"pop_back": {
|
|
7994
|
+
"visibility": "Public",
|
|
7995
|
+
"isEntry": false,
|
|
7996
|
+
"typeParameters": [
|
|
7997
|
+
{
|
|
7998
|
+
"abilities": ["Copy", "Drop", "Store"]
|
|
7999
|
+
},
|
|
8000
|
+
{
|
|
8001
|
+
"abilities": ["Store"]
|
|
8002
|
+
}
|
|
8003
|
+
],
|
|
8004
|
+
"parameters": [
|
|
8005
|
+
{
|
|
8006
|
+
"MutableReference": {
|
|
8007
|
+
"Struct": {
|
|
8008
|
+
"address": "0x2",
|
|
8009
|
+
"module": "linked_table",
|
|
8010
|
+
"name": "LinkedTable",
|
|
8011
|
+
"typeArguments": [
|
|
8012
|
+
{
|
|
8013
|
+
"TypeParameter": 0
|
|
8014
|
+
},
|
|
8015
|
+
{
|
|
8016
|
+
"TypeParameter": 1
|
|
8017
|
+
}
|
|
8018
|
+
]
|
|
8019
|
+
}
|
|
8020
|
+
}
|
|
8021
|
+
}
|
|
8022
|
+
],
|
|
8023
|
+
"return": [
|
|
8024
|
+
{
|
|
8025
|
+
"TypeParameter": 0
|
|
8026
|
+
},
|
|
8027
|
+
{
|
|
8028
|
+
"TypeParameter": 1
|
|
8029
|
+
}
|
|
8030
|
+
]
|
|
8031
|
+
},
|
|
8032
|
+
"pop_front": {
|
|
8033
|
+
"visibility": "Public",
|
|
8034
|
+
"isEntry": false,
|
|
8035
|
+
"typeParameters": [
|
|
8036
|
+
{
|
|
8037
|
+
"abilities": ["Copy", "Drop", "Store"]
|
|
8038
|
+
},
|
|
8039
|
+
{
|
|
8040
|
+
"abilities": ["Store"]
|
|
8041
|
+
}
|
|
8042
|
+
],
|
|
8043
|
+
"parameters": [
|
|
8044
|
+
{
|
|
8045
|
+
"MutableReference": {
|
|
8046
|
+
"Struct": {
|
|
8047
|
+
"address": "0x2",
|
|
8048
|
+
"module": "linked_table",
|
|
8049
|
+
"name": "LinkedTable",
|
|
8050
|
+
"typeArguments": [
|
|
8051
|
+
{
|
|
8052
|
+
"TypeParameter": 0
|
|
8053
|
+
},
|
|
8054
|
+
{
|
|
8055
|
+
"TypeParameter": 1
|
|
8056
|
+
}
|
|
8057
|
+
]
|
|
8058
|
+
}
|
|
8059
|
+
}
|
|
8060
|
+
}
|
|
8061
|
+
],
|
|
8062
|
+
"return": [
|
|
8063
|
+
{
|
|
8064
|
+
"TypeParameter": 0
|
|
8065
|
+
},
|
|
8066
|
+
{
|
|
8067
|
+
"TypeParameter": 1
|
|
8068
|
+
}
|
|
8069
|
+
]
|
|
8070
|
+
},
|
|
8071
|
+
"prev": {
|
|
8072
|
+
"visibility": "Public",
|
|
8073
|
+
"isEntry": false,
|
|
8074
|
+
"typeParameters": [
|
|
8075
|
+
{
|
|
8076
|
+
"abilities": ["Copy", "Drop", "Store"]
|
|
8077
|
+
},
|
|
8078
|
+
{
|
|
8079
|
+
"abilities": ["Store"]
|
|
8080
|
+
}
|
|
8081
|
+
],
|
|
8082
|
+
"parameters": [
|
|
8083
|
+
{
|
|
8084
|
+
"Reference": {
|
|
8085
|
+
"Struct": {
|
|
8086
|
+
"address": "0x2",
|
|
8087
|
+
"module": "linked_table",
|
|
8088
|
+
"name": "LinkedTable",
|
|
8089
|
+
"typeArguments": [
|
|
8090
|
+
{
|
|
8091
|
+
"TypeParameter": 0
|
|
8092
|
+
},
|
|
8093
|
+
{
|
|
8094
|
+
"TypeParameter": 1
|
|
8095
|
+
}
|
|
8096
|
+
]
|
|
8097
|
+
}
|
|
8098
|
+
}
|
|
8099
|
+
},
|
|
8100
|
+
{
|
|
8101
|
+
"TypeParameter": 0
|
|
8102
|
+
}
|
|
8103
|
+
],
|
|
8104
|
+
"return": [
|
|
8105
|
+
{
|
|
8106
|
+
"Reference": {
|
|
8107
|
+
"Struct": {
|
|
8108
|
+
"address": "0x1",
|
|
8109
|
+
"module": "option",
|
|
8110
|
+
"name": "Option",
|
|
8111
|
+
"typeArguments": [
|
|
8112
|
+
{
|
|
8113
|
+
"TypeParameter": 0
|
|
8114
|
+
}
|
|
8115
|
+
]
|
|
8116
|
+
}
|
|
8117
|
+
}
|
|
8118
|
+
}
|
|
8119
|
+
]
|
|
8120
|
+
},
|
|
8121
|
+
"push_back": {
|
|
8122
|
+
"visibility": "Public",
|
|
8123
|
+
"isEntry": false,
|
|
8124
|
+
"typeParameters": [
|
|
8125
|
+
{
|
|
8126
|
+
"abilities": ["Copy", "Drop", "Store"]
|
|
8127
|
+
},
|
|
8128
|
+
{
|
|
8129
|
+
"abilities": ["Store"]
|
|
8130
|
+
}
|
|
8131
|
+
],
|
|
8132
|
+
"parameters": [
|
|
8133
|
+
{
|
|
8134
|
+
"MutableReference": {
|
|
8135
|
+
"Struct": {
|
|
8136
|
+
"address": "0x2",
|
|
8137
|
+
"module": "linked_table",
|
|
8138
|
+
"name": "LinkedTable",
|
|
8139
|
+
"typeArguments": [
|
|
8140
|
+
{
|
|
8141
|
+
"TypeParameter": 0
|
|
8142
|
+
},
|
|
8143
|
+
{
|
|
8144
|
+
"TypeParameter": 1
|
|
8145
|
+
}
|
|
8146
|
+
]
|
|
8147
|
+
}
|
|
8148
|
+
}
|
|
8149
|
+
},
|
|
8150
|
+
{
|
|
8151
|
+
"TypeParameter": 0
|
|
8152
|
+
},
|
|
8153
|
+
{
|
|
8154
|
+
"TypeParameter": 1
|
|
8155
|
+
}
|
|
8156
|
+
],
|
|
8157
|
+
"return": []
|
|
8158
|
+
},
|
|
8159
|
+
"push_front": {
|
|
8160
|
+
"visibility": "Public",
|
|
8161
|
+
"isEntry": false,
|
|
8162
|
+
"typeParameters": [
|
|
8163
|
+
{
|
|
8164
|
+
"abilities": ["Copy", "Drop", "Store"]
|
|
8165
|
+
},
|
|
8166
|
+
{
|
|
8167
|
+
"abilities": ["Store"]
|
|
8168
|
+
}
|
|
8169
|
+
],
|
|
8170
|
+
"parameters": [
|
|
8171
|
+
{
|
|
8172
|
+
"MutableReference": {
|
|
8173
|
+
"Struct": {
|
|
8174
|
+
"address": "0x2",
|
|
8175
|
+
"module": "linked_table",
|
|
8176
|
+
"name": "LinkedTable",
|
|
8177
|
+
"typeArguments": [
|
|
8178
|
+
{
|
|
8179
|
+
"TypeParameter": 0
|
|
8180
|
+
},
|
|
8181
|
+
{
|
|
8182
|
+
"TypeParameter": 1
|
|
8183
|
+
}
|
|
8184
|
+
]
|
|
8185
|
+
}
|
|
8186
|
+
}
|
|
8187
|
+
},
|
|
8188
|
+
{
|
|
8189
|
+
"TypeParameter": 0
|
|
8190
|
+
},
|
|
8191
|
+
{
|
|
8192
|
+
"TypeParameter": 1
|
|
8193
|
+
}
|
|
8194
|
+
],
|
|
8195
|
+
"return": []
|
|
8196
|
+
},
|
|
8197
|
+
"remove": {
|
|
8198
|
+
"visibility": "Public",
|
|
8199
|
+
"isEntry": false,
|
|
8200
|
+
"typeParameters": [
|
|
8201
|
+
{
|
|
8202
|
+
"abilities": ["Copy", "Drop", "Store"]
|
|
8203
|
+
},
|
|
8204
|
+
{
|
|
8205
|
+
"abilities": ["Store"]
|
|
8206
|
+
}
|
|
8207
|
+
],
|
|
8208
|
+
"parameters": [
|
|
8209
|
+
{
|
|
8210
|
+
"MutableReference": {
|
|
8211
|
+
"Struct": {
|
|
8212
|
+
"address": "0x2",
|
|
8213
|
+
"module": "linked_table",
|
|
8214
|
+
"name": "LinkedTable",
|
|
8215
|
+
"typeArguments": [
|
|
8216
|
+
{
|
|
8217
|
+
"TypeParameter": 0
|
|
8218
|
+
},
|
|
8219
|
+
{
|
|
8220
|
+
"TypeParameter": 1
|
|
8221
|
+
}
|
|
8222
|
+
]
|
|
8223
|
+
}
|
|
8224
|
+
}
|
|
8225
|
+
},
|
|
8226
|
+
{
|
|
8227
|
+
"TypeParameter": 0
|
|
8228
|
+
}
|
|
8229
|
+
],
|
|
8230
|
+
"return": [
|
|
8231
|
+
{
|
|
8232
|
+
"TypeParameter": 1
|
|
8233
|
+
}
|
|
8234
|
+
]
|
|
8235
|
+
}
|
|
8236
|
+
}
|
|
8237
|
+
},
|
|
8238
|
+
"math": {
|
|
8239
|
+
"fileFormatVersion": 6,
|
|
8240
|
+
"address": "0x2",
|
|
8241
|
+
"name": "math",
|
|
8242
|
+
"friends": [],
|
|
8243
|
+
"structs": {},
|
|
8244
|
+
"exposedFunctions": {
|
|
8245
|
+
"diff": {
|
|
8246
|
+
"visibility": "Public",
|
|
8247
|
+
"isEntry": false,
|
|
8248
|
+
"typeParameters": [],
|
|
8249
|
+
"parameters": ["U64", "U64"],
|
|
8250
|
+
"return": ["U64"]
|
|
8251
|
+
},
|
|
8252
|
+
"divide_and_round_up": {
|
|
8253
|
+
"visibility": "Public",
|
|
8254
|
+
"isEntry": false,
|
|
8255
|
+
"typeParameters": [],
|
|
8256
|
+
"parameters": ["U64", "U64"],
|
|
8257
|
+
"return": ["U64"]
|
|
8258
|
+
},
|
|
8259
|
+
"max": {
|
|
8260
|
+
"visibility": "Public",
|
|
8261
|
+
"isEntry": false,
|
|
8262
|
+
"typeParameters": [],
|
|
7513
8263
|
"parameters": ["U64", "U64"],
|
|
7514
8264
|
"return": ["U64"]
|
|
7515
8265
|
},
|
|
@@ -7548,6 +8298,10 @@
|
|
|
7548
8298
|
"address": "0x2",
|
|
7549
8299
|
"name": "object",
|
|
7550
8300
|
"friends": [
|
|
8301
|
+
{
|
|
8302
|
+
"address": "0x2",
|
|
8303
|
+
"name": "authenticator_state"
|
|
8304
|
+
},
|
|
7551
8305
|
{
|
|
7552
8306
|
"address": "0x2",
|
|
7553
8307
|
"name": "clock"
|
|
@@ -7599,6 +8353,22 @@
|
|
|
7599
8353
|
}
|
|
7600
8354
|
},
|
|
7601
8355
|
"exposedFunctions": {
|
|
8356
|
+
"authenticator_state": {
|
|
8357
|
+
"visibility": "Friend",
|
|
8358
|
+
"isEntry": false,
|
|
8359
|
+
"typeParameters": [],
|
|
8360
|
+
"parameters": [],
|
|
8361
|
+
"return": [
|
|
8362
|
+
{
|
|
8363
|
+
"Struct": {
|
|
8364
|
+
"address": "0x2",
|
|
8365
|
+
"module": "object",
|
|
8366
|
+
"name": "UID",
|
|
8367
|
+
"typeArguments": []
|
|
8368
|
+
}
|
|
8369
|
+
}
|
|
8370
|
+
]
|
|
8371
|
+
},
|
|
7602
8372
|
"borrow_id": {
|
|
7603
8373
|
"visibility": "Public",
|
|
7604
8374
|
"isEntry": false,
|
|
@@ -10509,6 +11279,30 @@
|
|
|
10509
11279
|
],
|
|
10510
11280
|
"return": []
|
|
10511
11281
|
},
|
|
11282
|
+
"drop": {
|
|
11283
|
+
"visibility": "Public",
|
|
11284
|
+
"isEntry": false,
|
|
11285
|
+
"typeParameters": [
|
|
11286
|
+
{
|
|
11287
|
+
"abilities": ["Drop", "Store"]
|
|
11288
|
+
}
|
|
11289
|
+
],
|
|
11290
|
+
"parameters": [
|
|
11291
|
+
{
|
|
11292
|
+
"Struct": {
|
|
11293
|
+
"address": "0x2",
|
|
11294
|
+
"module": "table_vec",
|
|
11295
|
+
"name": "TableVec",
|
|
11296
|
+
"typeArguments": [
|
|
11297
|
+
{
|
|
11298
|
+
"TypeParameter": 0
|
|
11299
|
+
}
|
|
11300
|
+
]
|
|
11301
|
+
}
|
|
11302
|
+
}
|
|
11303
|
+
],
|
|
11304
|
+
"return": []
|
|
11305
|
+
},
|
|
10512
11306
|
"empty": {
|
|
10513
11307
|
"visibility": "Public",
|
|
10514
11308
|
"isEntry": false,
|
|
@@ -10692,6 +11486,65 @@
|
|
|
10692
11486
|
}
|
|
10693
11487
|
}
|
|
10694
11488
|
]
|
|
11489
|
+
},
|
|
11490
|
+
"swap": {
|
|
11491
|
+
"visibility": "Public",
|
|
11492
|
+
"isEntry": false,
|
|
11493
|
+
"typeParameters": [
|
|
11494
|
+
{
|
|
11495
|
+
"abilities": ["Store"]
|
|
11496
|
+
}
|
|
11497
|
+
],
|
|
11498
|
+
"parameters": [
|
|
11499
|
+
{
|
|
11500
|
+
"MutableReference": {
|
|
11501
|
+
"Struct": {
|
|
11502
|
+
"address": "0x2",
|
|
11503
|
+
"module": "table_vec",
|
|
11504
|
+
"name": "TableVec",
|
|
11505
|
+
"typeArguments": [
|
|
11506
|
+
{
|
|
11507
|
+
"TypeParameter": 0
|
|
11508
|
+
}
|
|
11509
|
+
]
|
|
11510
|
+
}
|
|
11511
|
+
}
|
|
11512
|
+
},
|
|
11513
|
+
"U64",
|
|
11514
|
+
"U64"
|
|
11515
|
+
],
|
|
11516
|
+
"return": []
|
|
11517
|
+
},
|
|
11518
|
+
"swap_remove": {
|
|
11519
|
+
"visibility": "Public",
|
|
11520
|
+
"isEntry": false,
|
|
11521
|
+
"typeParameters": [
|
|
11522
|
+
{
|
|
11523
|
+
"abilities": ["Store"]
|
|
11524
|
+
}
|
|
11525
|
+
],
|
|
11526
|
+
"parameters": [
|
|
11527
|
+
{
|
|
11528
|
+
"MutableReference": {
|
|
11529
|
+
"Struct": {
|
|
11530
|
+
"address": "0x2",
|
|
11531
|
+
"module": "table_vec",
|
|
11532
|
+
"name": "TableVec",
|
|
11533
|
+
"typeArguments": [
|
|
11534
|
+
{
|
|
11535
|
+
"TypeParameter": 0
|
|
11536
|
+
}
|
|
11537
|
+
]
|
|
11538
|
+
}
|
|
11539
|
+
}
|
|
11540
|
+
},
|
|
11541
|
+
"U64"
|
|
11542
|
+
],
|
|
11543
|
+
"return": [
|
|
11544
|
+
{
|
|
11545
|
+
"TypeParameter": 0
|
|
11546
|
+
}
|
|
11547
|
+
]
|
|
10695
11548
|
}
|
|
10696
11549
|
}
|
|
10697
11550
|
},
|
|
@@ -10700,7 +11553,38 @@
|
|
|
10700
11553
|
"address": "0x2",
|
|
10701
11554
|
"name": "transfer",
|
|
10702
11555
|
"friends": [],
|
|
10703
|
-
"structs": {
|
|
11556
|
+
"structs": {
|
|
11557
|
+
"Receiving": {
|
|
11558
|
+
"abilities": {
|
|
11559
|
+
"abilities": ["Drop"]
|
|
11560
|
+
},
|
|
11561
|
+
"typeParameters": [
|
|
11562
|
+
{
|
|
11563
|
+
"constraints": {
|
|
11564
|
+
"abilities": ["Key"]
|
|
11565
|
+
},
|
|
11566
|
+
"isPhantom": true
|
|
11567
|
+
}
|
|
11568
|
+
],
|
|
11569
|
+
"fields": [
|
|
11570
|
+
{
|
|
11571
|
+
"name": "id",
|
|
11572
|
+
"type": {
|
|
11573
|
+
"Struct": {
|
|
11574
|
+
"address": "0x2",
|
|
11575
|
+
"module": "object",
|
|
11576
|
+
"name": "ID",
|
|
11577
|
+
"typeArguments": []
|
|
11578
|
+
}
|
|
11579
|
+
}
|
|
11580
|
+
},
|
|
11581
|
+
{
|
|
11582
|
+
"name": "version",
|
|
11583
|
+
"type": "U64"
|
|
11584
|
+
}
|
|
11585
|
+
]
|
|
11586
|
+
}
|
|
11587
|
+
},
|
|
10704
11588
|
"exposedFunctions": {
|
|
10705
11589
|
"freeze_object": {
|
|
10706
11590
|
"visibility": "Public",
|
|
@@ -10778,6 +11662,44 @@
|
|
|
10778
11662
|
],
|
|
10779
11663
|
"return": []
|
|
10780
11664
|
},
|
|
11665
|
+
"receive": {
|
|
11666
|
+
"visibility": "Public",
|
|
11667
|
+
"isEntry": false,
|
|
11668
|
+
"typeParameters": [
|
|
11669
|
+
{
|
|
11670
|
+
"abilities": ["Key"]
|
|
11671
|
+
}
|
|
11672
|
+
],
|
|
11673
|
+
"parameters": [
|
|
11674
|
+
{
|
|
11675
|
+
"MutableReference": {
|
|
11676
|
+
"Struct": {
|
|
11677
|
+
"address": "0x2",
|
|
11678
|
+
"module": "object",
|
|
11679
|
+
"name": "UID",
|
|
11680
|
+
"typeArguments": []
|
|
11681
|
+
}
|
|
11682
|
+
}
|
|
11683
|
+
},
|
|
11684
|
+
{
|
|
11685
|
+
"Struct": {
|
|
11686
|
+
"address": "0x2",
|
|
11687
|
+
"module": "transfer",
|
|
11688
|
+
"name": "Receiving",
|
|
11689
|
+
"typeArguments": [
|
|
11690
|
+
{
|
|
11691
|
+
"TypeParameter": 0
|
|
11692
|
+
}
|
|
11693
|
+
]
|
|
11694
|
+
}
|
|
11695
|
+
}
|
|
11696
|
+
],
|
|
11697
|
+
"return": [
|
|
11698
|
+
{
|
|
11699
|
+
"TypeParameter": 0
|
|
11700
|
+
}
|
|
11701
|
+
]
|
|
11702
|
+
},
|
|
10781
11703
|
"share_object": {
|
|
10782
11704
|
"visibility": "Public",
|
|
10783
11705
|
"isEntry": false,
|
|
@@ -11237,16 +12159,48 @@
|
|
|
11237
12159
|
"typeArguments": []
|
|
11238
12160
|
}
|
|
11239
12161
|
},
|
|
11240
|
-
"U64",
|
|
12162
|
+
"U64",
|
|
12163
|
+
{
|
|
12164
|
+
"Struct": {
|
|
12165
|
+
"address": "0x2",
|
|
12166
|
+
"module": "object",
|
|
12167
|
+
"name": "ID",
|
|
12168
|
+
"typeArguments": []
|
|
12169
|
+
}
|
|
12170
|
+
}
|
|
12171
|
+
]
|
|
12172
|
+
},
|
|
12173
|
+
"default": {
|
|
12174
|
+
"visibility": "Private",
|
|
12175
|
+
"isEntry": true,
|
|
12176
|
+
"typeParameters": [
|
|
12177
|
+
{
|
|
12178
|
+
"abilities": []
|
|
12179
|
+
}
|
|
12180
|
+
],
|
|
12181
|
+
"parameters": [
|
|
12182
|
+
{
|
|
12183
|
+
"Reference": {
|
|
12184
|
+
"Struct": {
|
|
12185
|
+
"address": "0x2",
|
|
12186
|
+
"module": "package",
|
|
12187
|
+
"name": "Publisher",
|
|
12188
|
+
"typeArguments": []
|
|
12189
|
+
}
|
|
12190
|
+
}
|
|
12191
|
+
},
|
|
11241
12192
|
{
|
|
11242
|
-
"
|
|
11243
|
-
"
|
|
11244
|
-
|
|
11245
|
-
|
|
11246
|
-
|
|
12193
|
+
"MutableReference": {
|
|
12194
|
+
"Struct": {
|
|
12195
|
+
"address": "0x2",
|
|
12196
|
+
"module": "tx_context",
|
|
12197
|
+
"name": "TxContext",
|
|
12198
|
+
"typeArguments": []
|
|
12199
|
+
}
|
|
11247
12200
|
}
|
|
11248
12201
|
}
|
|
11249
|
-
]
|
|
12202
|
+
],
|
|
12203
|
+
"return": []
|
|
11250
12204
|
},
|
|
11251
12205
|
"destroy_and_withdraw": {
|
|
11252
12206
|
"visibility": "Public",
|
|
@@ -11873,6 +12827,30 @@
|
|
|
11873
12827
|
}
|
|
11874
12828
|
},
|
|
11875
12829
|
"exposedFunctions": {
|
|
12830
|
+
"digest": {
|
|
12831
|
+
"visibility": "Public",
|
|
12832
|
+
"isEntry": false,
|
|
12833
|
+
"typeParameters": [],
|
|
12834
|
+
"parameters": [
|
|
12835
|
+
{
|
|
12836
|
+
"Reference": {
|
|
12837
|
+
"Struct": {
|
|
12838
|
+
"address": "0x2",
|
|
12839
|
+
"module": "tx_context",
|
|
12840
|
+
"name": "TxContext",
|
|
12841
|
+
"typeArguments": []
|
|
12842
|
+
}
|
|
12843
|
+
}
|
|
12844
|
+
}
|
|
12845
|
+
],
|
|
12846
|
+
"return": [
|
|
12847
|
+
{
|
|
12848
|
+
"Reference": {
|
|
12849
|
+
"Vector": "U8"
|
|
12850
|
+
}
|
|
12851
|
+
}
|
|
12852
|
+
]
|
|
12853
|
+
},
|
|
11876
12854
|
"epoch": {
|
|
11877
12855
|
"visibility": "Public",
|
|
11878
12856
|
"isEntry": false,
|
|
@@ -12768,15 +13746,222 @@
|
|
|
12768
13746
|
}
|
|
12769
13747
|
]
|
|
12770
13748
|
},
|
|
12771
|
-
"remove_entry_by_idx": {
|
|
13749
|
+
"remove_entry_by_idx": {
|
|
13750
|
+
"visibility": "Public",
|
|
13751
|
+
"isEntry": false,
|
|
13752
|
+
"typeParameters": [
|
|
13753
|
+
{
|
|
13754
|
+
"abilities": ["Copy"]
|
|
13755
|
+
},
|
|
13756
|
+
{
|
|
13757
|
+
"abilities": []
|
|
13758
|
+
}
|
|
13759
|
+
],
|
|
13760
|
+
"parameters": [
|
|
13761
|
+
{
|
|
13762
|
+
"MutableReference": {
|
|
13763
|
+
"Struct": {
|
|
13764
|
+
"address": "0x2",
|
|
13765
|
+
"module": "vec_map",
|
|
13766
|
+
"name": "VecMap",
|
|
13767
|
+
"typeArguments": [
|
|
13768
|
+
{
|
|
13769
|
+
"TypeParameter": 0
|
|
13770
|
+
},
|
|
13771
|
+
{
|
|
13772
|
+
"TypeParameter": 1
|
|
13773
|
+
}
|
|
13774
|
+
]
|
|
13775
|
+
}
|
|
13776
|
+
}
|
|
13777
|
+
},
|
|
13778
|
+
"U64"
|
|
13779
|
+
],
|
|
13780
|
+
"return": [
|
|
13781
|
+
{
|
|
13782
|
+
"TypeParameter": 0
|
|
13783
|
+
},
|
|
13784
|
+
{
|
|
13785
|
+
"TypeParameter": 1
|
|
13786
|
+
}
|
|
13787
|
+
]
|
|
13788
|
+
},
|
|
13789
|
+
"size": {
|
|
13790
|
+
"visibility": "Public",
|
|
13791
|
+
"isEntry": false,
|
|
13792
|
+
"typeParameters": [
|
|
13793
|
+
{
|
|
13794
|
+
"abilities": ["Copy"]
|
|
13795
|
+
},
|
|
13796
|
+
{
|
|
13797
|
+
"abilities": []
|
|
13798
|
+
}
|
|
13799
|
+
],
|
|
13800
|
+
"parameters": [
|
|
13801
|
+
{
|
|
13802
|
+
"Reference": {
|
|
13803
|
+
"Struct": {
|
|
13804
|
+
"address": "0x2",
|
|
13805
|
+
"module": "vec_map",
|
|
13806
|
+
"name": "VecMap",
|
|
13807
|
+
"typeArguments": [
|
|
13808
|
+
{
|
|
13809
|
+
"TypeParameter": 0
|
|
13810
|
+
},
|
|
13811
|
+
{
|
|
13812
|
+
"TypeParameter": 1
|
|
13813
|
+
}
|
|
13814
|
+
]
|
|
13815
|
+
}
|
|
13816
|
+
}
|
|
13817
|
+
}
|
|
13818
|
+
],
|
|
13819
|
+
"return": ["U64"]
|
|
13820
|
+
},
|
|
13821
|
+
"try_get": {
|
|
13822
|
+
"visibility": "Public",
|
|
13823
|
+
"isEntry": false,
|
|
13824
|
+
"typeParameters": [
|
|
13825
|
+
{
|
|
13826
|
+
"abilities": ["Copy"]
|
|
13827
|
+
},
|
|
13828
|
+
{
|
|
13829
|
+
"abilities": ["Copy"]
|
|
13830
|
+
}
|
|
13831
|
+
],
|
|
13832
|
+
"parameters": [
|
|
13833
|
+
{
|
|
13834
|
+
"Reference": {
|
|
13835
|
+
"Struct": {
|
|
13836
|
+
"address": "0x2",
|
|
13837
|
+
"module": "vec_map",
|
|
13838
|
+
"name": "VecMap",
|
|
13839
|
+
"typeArguments": [
|
|
13840
|
+
{
|
|
13841
|
+
"TypeParameter": 0
|
|
13842
|
+
},
|
|
13843
|
+
{
|
|
13844
|
+
"TypeParameter": 1
|
|
13845
|
+
}
|
|
13846
|
+
]
|
|
13847
|
+
}
|
|
13848
|
+
}
|
|
13849
|
+
},
|
|
13850
|
+
{
|
|
13851
|
+
"Reference": {
|
|
13852
|
+
"TypeParameter": 0
|
|
13853
|
+
}
|
|
13854
|
+
}
|
|
13855
|
+
],
|
|
13856
|
+
"return": [
|
|
13857
|
+
{
|
|
13858
|
+
"Struct": {
|
|
13859
|
+
"address": "0x1",
|
|
13860
|
+
"module": "option",
|
|
13861
|
+
"name": "Option",
|
|
13862
|
+
"typeArguments": [
|
|
13863
|
+
{
|
|
13864
|
+
"TypeParameter": 1
|
|
13865
|
+
}
|
|
13866
|
+
]
|
|
13867
|
+
}
|
|
13868
|
+
}
|
|
13869
|
+
]
|
|
13870
|
+
}
|
|
13871
|
+
}
|
|
13872
|
+
},
|
|
13873
|
+
"vec_set": {
|
|
13874
|
+
"fileFormatVersion": 6,
|
|
13875
|
+
"address": "0x2",
|
|
13876
|
+
"name": "vec_set",
|
|
13877
|
+
"friends": [],
|
|
13878
|
+
"structs": {
|
|
13879
|
+
"VecSet": {
|
|
13880
|
+
"abilities": {
|
|
13881
|
+
"abilities": ["Copy", "Drop", "Store"]
|
|
13882
|
+
},
|
|
13883
|
+
"typeParameters": [
|
|
13884
|
+
{
|
|
13885
|
+
"constraints": {
|
|
13886
|
+
"abilities": ["Copy", "Drop"]
|
|
13887
|
+
},
|
|
13888
|
+
"isPhantom": false
|
|
13889
|
+
}
|
|
13890
|
+
],
|
|
13891
|
+
"fields": [
|
|
13892
|
+
{
|
|
13893
|
+
"name": "contents",
|
|
13894
|
+
"type": {
|
|
13895
|
+
"Vector": {
|
|
13896
|
+
"TypeParameter": 0
|
|
13897
|
+
}
|
|
13898
|
+
}
|
|
13899
|
+
}
|
|
13900
|
+
]
|
|
13901
|
+
}
|
|
13902
|
+
},
|
|
13903
|
+
"exposedFunctions": {
|
|
13904
|
+
"contains": {
|
|
13905
|
+
"visibility": "Public",
|
|
13906
|
+
"isEntry": false,
|
|
13907
|
+
"typeParameters": [
|
|
13908
|
+
{
|
|
13909
|
+
"abilities": ["Copy", "Drop"]
|
|
13910
|
+
}
|
|
13911
|
+
],
|
|
13912
|
+
"parameters": [
|
|
13913
|
+
{
|
|
13914
|
+
"Reference": {
|
|
13915
|
+
"Struct": {
|
|
13916
|
+
"address": "0x2",
|
|
13917
|
+
"module": "vec_set",
|
|
13918
|
+
"name": "VecSet",
|
|
13919
|
+
"typeArguments": [
|
|
13920
|
+
{
|
|
13921
|
+
"TypeParameter": 0
|
|
13922
|
+
}
|
|
13923
|
+
]
|
|
13924
|
+
}
|
|
13925
|
+
}
|
|
13926
|
+
},
|
|
13927
|
+
{
|
|
13928
|
+
"Reference": {
|
|
13929
|
+
"TypeParameter": 0
|
|
13930
|
+
}
|
|
13931
|
+
}
|
|
13932
|
+
],
|
|
13933
|
+
"return": ["Bool"]
|
|
13934
|
+
},
|
|
13935
|
+
"empty": {
|
|
13936
|
+
"visibility": "Public",
|
|
13937
|
+
"isEntry": false,
|
|
13938
|
+
"typeParameters": [
|
|
13939
|
+
{
|
|
13940
|
+
"abilities": ["Copy", "Drop"]
|
|
13941
|
+
}
|
|
13942
|
+
],
|
|
13943
|
+
"parameters": [],
|
|
13944
|
+
"return": [
|
|
13945
|
+
{
|
|
13946
|
+
"Struct": {
|
|
13947
|
+
"address": "0x2",
|
|
13948
|
+
"module": "vec_set",
|
|
13949
|
+
"name": "VecSet",
|
|
13950
|
+
"typeArguments": [
|
|
13951
|
+
{
|
|
13952
|
+
"TypeParameter": 0
|
|
13953
|
+
}
|
|
13954
|
+
]
|
|
13955
|
+
}
|
|
13956
|
+
}
|
|
13957
|
+
]
|
|
13958
|
+
},
|
|
13959
|
+
"insert": {
|
|
12772
13960
|
"visibility": "Public",
|
|
12773
13961
|
"isEntry": false,
|
|
12774
13962
|
"typeParameters": [
|
|
12775
13963
|
{
|
|
12776
|
-
"abilities": ["Copy"]
|
|
12777
|
-
},
|
|
12778
|
-
{
|
|
12779
|
-
"abilities": []
|
|
13964
|
+
"abilities": ["Copy", "Drop"]
|
|
12780
13965
|
}
|
|
12781
13966
|
],
|
|
12782
13967
|
"parameters": [
|
|
@@ -12784,39 +13969,58 @@
|
|
|
12784
13969
|
"MutableReference": {
|
|
12785
13970
|
"Struct": {
|
|
12786
13971
|
"address": "0x2",
|
|
12787
|
-
"module": "
|
|
12788
|
-
"name": "
|
|
13972
|
+
"module": "vec_set",
|
|
13973
|
+
"name": "VecSet",
|
|
12789
13974
|
"typeArguments": [
|
|
12790
13975
|
{
|
|
12791
13976
|
"TypeParameter": 0
|
|
12792
|
-
},
|
|
12793
|
-
{
|
|
12794
|
-
"TypeParameter": 1
|
|
12795
13977
|
}
|
|
12796
13978
|
]
|
|
12797
13979
|
}
|
|
12798
13980
|
}
|
|
12799
13981
|
},
|
|
12800
|
-
"U64"
|
|
12801
|
-
],
|
|
12802
|
-
"return": [
|
|
12803
13982
|
{
|
|
12804
13983
|
"TypeParameter": 0
|
|
12805
|
-
}
|
|
13984
|
+
}
|
|
13985
|
+
],
|
|
13986
|
+
"return": []
|
|
13987
|
+
},
|
|
13988
|
+
"into_keys": {
|
|
13989
|
+
"visibility": "Public",
|
|
13990
|
+
"isEntry": false,
|
|
13991
|
+
"typeParameters": [
|
|
12806
13992
|
{
|
|
12807
|
-
"
|
|
13993
|
+
"abilities": ["Copy", "Drop"]
|
|
13994
|
+
}
|
|
13995
|
+
],
|
|
13996
|
+
"parameters": [
|
|
13997
|
+
{
|
|
13998
|
+
"Struct": {
|
|
13999
|
+
"address": "0x2",
|
|
14000
|
+
"module": "vec_set",
|
|
14001
|
+
"name": "VecSet",
|
|
14002
|
+
"typeArguments": [
|
|
14003
|
+
{
|
|
14004
|
+
"TypeParameter": 0
|
|
14005
|
+
}
|
|
14006
|
+
]
|
|
14007
|
+
}
|
|
14008
|
+
}
|
|
14009
|
+
],
|
|
14010
|
+
"return": [
|
|
14011
|
+
{
|
|
14012
|
+
"Vector": {
|
|
14013
|
+
"TypeParameter": 0
|
|
14014
|
+
}
|
|
12808
14015
|
}
|
|
12809
14016
|
]
|
|
12810
14017
|
},
|
|
12811
|
-
"
|
|
14018
|
+
"is_empty": {
|
|
12812
14019
|
"visibility": "Public",
|
|
12813
14020
|
"isEntry": false,
|
|
12814
14021
|
"typeParameters": [
|
|
12815
14022
|
{
|
|
12816
|
-
"abilities": ["Copy"]
|
|
12817
|
-
},
|
|
12818
|
-
{
|
|
12819
|
-
"abilities": []
|
|
14023
|
+
"abilities": ["Copy", "Drop"]
|
|
12820
14024
|
}
|
|
12821
14025
|
],
|
|
12822
14026
|
"parameters": [
|
|
@@ -12824,31 +14028,25 @@
|
|
|
12824
14028
|
"Reference": {
|
|
12825
14029
|
"Struct": {
|
|
12826
14030
|
"address": "0x2",
|
|
12827
|
-
"module": "
|
|
12828
|
-
"name": "
|
|
14031
|
+
"module": "vec_set",
|
|
14032
|
+
"name": "VecSet",
|
|
12829
14033
|
"typeArguments": [
|
|
12830
14034
|
{
|
|
12831
14035
|
"TypeParameter": 0
|
|
12832
|
-
},
|
|
12833
|
-
{
|
|
12834
|
-
"TypeParameter": 1
|
|
12835
14036
|
}
|
|
12836
14037
|
]
|
|
12837
14038
|
}
|
|
12838
14039
|
}
|
|
12839
14040
|
}
|
|
12840
14041
|
],
|
|
12841
|
-
"return": ["
|
|
14042
|
+
"return": ["Bool"]
|
|
12842
14043
|
},
|
|
12843
|
-
"
|
|
14044
|
+
"keys": {
|
|
12844
14045
|
"visibility": "Public",
|
|
12845
14046
|
"isEntry": false,
|
|
12846
14047
|
"typeParameters": [
|
|
12847
14048
|
{
|
|
12848
|
-
"abilities": ["Copy"]
|
|
12849
|
-
},
|
|
12850
|
-
{
|
|
12851
|
-
"abilities": ["Copy"]
|
|
14049
|
+
"abilities": ["Copy", "Drop"]
|
|
12852
14050
|
}
|
|
12853
14051
|
],
|
|
12854
14052
|
"parameters": [
|
|
@@ -12856,74 +14054,28 @@
|
|
|
12856
14054
|
"Reference": {
|
|
12857
14055
|
"Struct": {
|
|
12858
14056
|
"address": "0x2",
|
|
12859
|
-
"module": "
|
|
12860
|
-
"name": "
|
|
14057
|
+
"module": "vec_set",
|
|
14058
|
+
"name": "VecSet",
|
|
12861
14059
|
"typeArguments": [
|
|
12862
14060
|
{
|
|
12863
14061
|
"TypeParameter": 0
|
|
12864
|
-
},
|
|
12865
|
-
{
|
|
12866
|
-
"TypeParameter": 1
|
|
12867
14062
|
}
|
|
12868
14063
|
]
|
|
12869
14064
|
}
|
|
12870
14065
|
}
|
|
12871
|
-
},
|
|
12872
|
-
{
|
|
12873
|
-
"Reference": {
|
|
12874
|
-
"TypeParameter": 0
|
|
12875
|
-
}
|
|
12876
14066
|
}
|
|
12877
14067
|
],
|
|
12878
14068
|
"return": [
|
|
12879
14069
|
{
|
|
12880
|
-
"
|
|
12881
|
-
"address": "0x1",
|
|
12882
|
-
"module": "option",
|
|
12883
|
-
"name": "Option",
|
|
12884
|
-
"typeArguments": [
|
|
12885
|
-
{
|
|
12886
|
-
"TypeParameter": 1
|
|
12887
|
-
}
|
|
12888
|
-
]
|
|
12889
|
-
}
|
|
12890
|
-
}
|
|
12891
|
-
]
|
|
12892
|
-
}
|
|
12893
|
-
}
|
|
12894
|
-
},
|
|
12895
|
-
"vec_set": {
|
|
12896
|
-
"fileFormatVersion": 6,
|
|
12897
|
-
"address": "0x2",
|
|
12898
|
-
"name": "vec_set",
|
|
12899
|
-
"friends": [],
|
|
12900
|
-
"structs": {
|
|
12901
|
-
"VecSet": {
|
|
12902
|
-
"abilities": {
|
|
12903
|
-
"abilities": ["Copy", "Drop", "Store"]
|
|
12904
|
-
},
|
|
12905
|
-
"typeParameters": [
|
|
12906
|
-
{
|
|
12907
|
-
"constraints": {
|
|
12908
|
-
"abilities": ["Copy", "Drop"]
|
|
12909
|
-
},
|
|
12910
|
-
"isPhantom": false
|
|
12911
|
-
}
|
|
12912
|
-
],
|
|
12913
|
-
"fields": [
|
|
12914
|
-
{
|
|
12915
|
-
"name": "contents",
|
|
12916
|
-
"type": {
|
|
14070
|
+
"Reference": {
|
|
12917
14071
|
"Vector": {
|
|
12918
14072
|
"TypeParameter": 0
|
|
12919
14073
|
}
|
|
12920
14074
|
}
|
|
12921
14075
|
}
|
|
12922
14076
|
]
|
|
12923
|
-
}
|
|
12924
|
-
|
|
12925
|
-
"exposedFunctions": {
|
|
12926
|
-
"contains": {
|
|
14077
|
+
},
|
|
14078
|
+
"remove": {
|
|
12927
14079
|
"visibility": "Public",
|
|
12928
14080
|
"isEntry": false,
|
|
12929
14081
|
"typeParameters": [
|
|
@@ -12933,7 +14085,7 @@
|
|
|
12933
14085
|
],
|
|
12934
14086
|
"parameters": [
|
|
12935
14087
|
{
|
|
12936
|
-
"
|
|
14088
|
+
"MutableReference": {
|
|
12937
14089
|
"Struct": {
|
|
12938
14090
|
"address": "0x2",
|
|
12939
14091
|
"module": "vec_set",
|
|
@@ -12952,9 +14104,9 @@
|
|
|
12952
14104
|
}
|
|
12953
14105
|
}
|
|
12954
14106
|
],
|
|
12955
|
-
"return": [
|
|
14107
|
+
"return": []
|
|
12956
14108
|
},
|
|
12957
|
-
"
|
|
14109
|
+
"singleton": {
|
|
12958
14110
|
"visibility": "Public",
|
|
12959
14111
|
"isEntry": false,
|
|
12960
14112
|
"typeParameters": [
|
|
@@ -12962,7 +14114,11 @@
|
|
|
12962
14114
|
"abilities": ["Copy", "Drop"]
|
|
12963
14115
|
}
|
|
12964
14116
|
],
|
|
12965
|
-
"parameters": [
|
|
14117
|
+
"parameters": [
|
|
14118
|
+
{
|
|
14119
|
+
"TypeParameter": 0
|
|
14120
|
+
}
|
|
14121
|
+
],
|
|
12966
14122
|
"return": [
|
|
12967
14123
|
{
|
|
12968
14124
|
"Struct": {
|
|
@@ -12978,7 +14134,7 @@
|
|
|
12978
14134
|
}
|
|
12979
14135
|
]
|
|
12980
14136
|
},
|
|
12981
|
-
"
|
|
14137
|
+
"size": {
|
|
12982
14138
|
"visibility": "Public",
|
|
12983
14139
|
"isEntry": false,
|
|
12984
14140
|
"typeParameters": [
|
|
@@ -12988,7 +14144,7 @@
|
|
|
12988
14144
|
],
|
|
12989
14145
|
"parameters": [
|
|
12990
14146
|
{
|
|
12991
|
-
"
|
|
14147
|
+
"Reference": {
|
|
12992
14148
|
"Struct": {
|
|
12993
14149
|
"address": "0x2",
|
|
12994
14150
|
"module": "vec_set",
|
|
@@ -13000,75 +14156,187 @@
|
|
|
13000
14156
|
]
|
|
13001
14157
|
}
|
|
13002
14158
|
}
|
|
14159
|
+
}
|
|
14160
|
+
],
|
|
14161
|
+
"return": ["U64"]
|
|
14162
|
+
}
|
|
14163
|
+
}
|
|
14164
|
+
},
|
|
14165
|
+
"versioned": {
|
|
14166
|
+
"fileFormatVersion": 6,
|
|
14167
|
+
"address": "0x2",
|
|
14168
|
+
"name": "versioned",
|
|
14169
|
+
"friends": [],
|
|
14170
|
+
"structs": {
|
|
14171
|
+
"VersionChangeCap": {
|
|
14172
|
+
"abilities": {
|
|
14173
|
+
"abilities": []
|
|
14174
|
+
},
|
|
14175
|
+
"typeParameters": [],
|
|
14176
|
+
"fields": [
|
|
14177
|
+
{
|
|
14178
|
+
"name": "versioned_id",
|
|
14179
|
+
"type": {
|
|
14180
|
+
"Struct": {
|
|
14181
|
+
"address": "0x2",
|
|
14182
|
+
"module": "object",
|
|
14183
|
+
"name": "ID",
|
|
14184
|
+
"typeArguments": []
|
|
14185
|
+
}
|
|
14186
|
+
}
|
|
14187
|
+
},
|
|
14188
|
+
{
|
|
14189
|
+
"name": "old_version",
|
|
14190
|
+
"type": "U64"
|
|
14191
|
+
}
|
|
14192
|
+
]
|
|
14193
|
+
},
|
|
14194
|
+
"Versioned": {
|
|
14195
|
+
"abilities": {
|
|
14196
|
+
"abilities": ["Store", "Key"]
|
|
14197
|
+
},
|
|
14198
|
+
"typeParameters": [],
|
|
14199
|
+
"fields": [
|
|
14200
|
+
{
|
|
14201
|
+
"name": "id",
|
|
14202
|
+
"type": {
|
|
14203
|
+
"Struct": {
|
|
14204
|
+
"address": "0x2",
|
|
14205
|
+
"module": "object",
|
|
14206
|
+
"name": "UID",
|
|
14207
|
+
"typeArguments": []
|
|
14208
|
+
}
|
|
14209
|
+
}
|
|
13003
14210
|
},
|
|
14211
|
+
{
|
|
14212
|
+
"name": "version",
|
|
14213
|
+
"type": "U64"
|
|
14214
|
+
}
|
|
14215
|
+
]
|
|
14216
|
+
}
|
|
14217
|
+
},
|
|
14218
|
+
"exposedFunctions": {
|
|
14219
|
+
"create": {
|
|
14220
|
+
"visibility": "Public",
|
|
14221
|
+
"isEntry": false,
|
|
14222
|
+
"typeParameters": [
|
|
14223
|
+
{
|
|
14224
|
+
"abilities": ["Store"]
|
|
14225
|
+
}
|
|
14226
|
+
],
|
|
14227
|
+
"parameters": [
|
|
14228
|
+
"U64",
|
|
13004
14229
|
{
|
|
13005
14230
|
"TypeParameter": 0
|
|
14231
|
+
},
|
|
14232
|
+
{
|
|
14233
|
+
"MutableReference": {
|
|
14234
|
+
"Struct": {
|
|
14235
|
+
"address": "0x2",
|
|
14236
|
+
"module": "tx_context",
|
|
14237
|
+
"name": "TxContext",
|
|
14238
|
+
"typeArguments": []
|
|
14239
|
+
}
|
|
14240
|
+
}
|
|
13006
14241
|
}
|
|
13007
14242
|
],
|
|
13008
|
-
"return": [
|
|
14243
|
+
"return": [
|
|
14244
|
+
{
|
|
14245
|
+
"Struct": {
|
|
14246
|
+
"address": "0x2",
|
|
14247
|
+
"module": "versioned",
|
|
14248
|
+
"name": "Versioned",
|
|
14249
|
+
"typeArguments": []
|
|
14250
|
+
}
|
|
14251
|
+
}
|
|
14252
|
+
]
|
|
14253
|
+
},
|
|
14254
|
+
"destroy": {
|
|
14255
|
+
"visibility": "Public",
|
|
14256
|
+
"isEntry": false,
|
|
14257
|
+
"typeParameters": [
|
|
14258
|
+
{
|
|
14259
|
+
"abilities": ["Store"]
|
|
14260
|
+
}
|
|
14261
|
+
],
|
|
14262
|
+
"parameters": [
|
|
14263
|
+
{
|
|
14264
|
+
"Struct": {
|
|
14265
|
+
"address": "0x2",
|
|
14266
|
+
"module": "versioned",
|
|
14267
|
+
"name": "Versioned",
|
|
14268
|
+
"typeArguments": []
|
|
14269
|
+
}
|
|
14270
|
+
}
|
|
14271
|
+
],
|
|
14272
|
+
"return": [
|
|
14273
|
+
{
|
|
14274
|
+
"TypeParameter": 0
|
|
14275
|
+
}
|
|
14276
|
+
]
|
|
13009
14277
|
},
|
|
13010
|
-
"
|
|
14278
|
+
"load_value": {
|
|
13011
14279
|
"visibility": "Public",
|
|
13012
14280
|
"isEntry": false,
|
|
13013
14281
|
"typeParameters": [
|
|
13014
14282
|
{
|
|
13015
|
-
"abilities": ["
|
|
14283
|
+
"abilities": ["Store"]
|
|
13016
14284
|
}
|
|
13017
14285
|
],
|
|
13018
14286
|
"parameters": [
|
|
13019
14287
|
{
|
|
13020
|
-
"
|
|
13021
|
-
"
|
|
13022
|
-
|
|
13023
|
-
|
|
13024
|
-
|
|
13025
|
-
|
|
13026
|
-
|
|
13027
|
-
}
|
|
13028
|
-
]
|
|
14288
|
+
"Reference": {
|
|
14289
|
+
"Struct": {
|
|
14290
|
+
"address": "0x2",
|
|
14291
|
+
"module": "versioned",
|
|
14292
|
+
"name": "Versioned",
|
|
14293
|
+
"typeArguments": []
|
|
14294
|
+
}
|
|
13029
14295
|
}
|
|
13030
14296
|
}
|
|
13031
14297
|
],
|
|
13032
14298
|
"return": [
|
|
13033
14299
|
{
|
|
13034
|
-
"
|
|
14300
|
+
"Reference": {
|
|
13035
14301
|
"TypeParameter": 0
|
|
13036
14302
|
}
|
|
13037
14303
|
}
|
|
13038
14304
|
]
|
|
13039
14305
|
},
|
|
13040
|
-
"
|
|
14306
|
+
"load_value_mut": {
|
|
13041
14307
|
"visibility": "Public",
|
|
13042
14308
|
"isEntry": false,
|
|
13043
14309
|
"typeParameters": [
|
|
13044
14310
|
{
|
|
13045
|
-
"abilities": ["
|
|
14311
|
+
"abilities": ["Store"]
|
|
13046
14312
|
}
|
|
13047
14313
|
],
|
|
13048
14314
|
"parameters": [
|
|
13049
14315
|
{
|
|
13050
|
-
"
|
|
14316
|
+
"MutableReference": {
|
|
13051
14317
|
"Struct": {
|
|
13052
14318
|
"address": "0x2",
|
|
13053
|
-
"module": "
|
|
13054
|
-
"name": "
|
|
13055
|
-
"typeArguments": [
|
|
13056
|
-
{
|
|
13057
|
-
"TypeParameter": 0
|
|
13058
|
-
}
|
|
13059
|
-
]
|
|
14319
|
+
"module": "versioned",
|
|
14320
|
+
"name": "Versioned",
|
|
14321
|
+
"typeArguments": []
|
|
13060
14322
|
}
|
|
13061
14323
|
}
|
|
13062
14324
|
}
|
|
13063
14325
|
],
|
|
13064
|
-
"return": [
|
|
14326
|
+
"return": [
|
|
14327
|
+
{
|
|
14328
|
+
"MutableReference": {
|
|
14329
|
+
"TypeParameter": 0
|
|
14330
|
+
}
|
|
14331
|
+
}
|
|
14332
|
+
]
|
|
13065
14333
|
},
|
|
13066
|
-
"
|
|
14334
|
+
"remove_value_for_upgrade": {
|
|
13067
14335
|
"visibility": "Public",
|
|
13068
14336
|
"isEntry": false,
|
|
13069
14337
|
"typeParameters": [
|
|
13070
14338
|
{
|
|
13071
|
-
"abilities": ["
|
|
14339
|
+
"abilities": ["Store"]
|
|
13072
14340
|
}
|
|
13073
14341
|
],
|
|
13074
14342
|
"parameters": [
|
|
@@ -13076,72 +14344,73 @@
|
|
|
13076
14344
|
"MutableReference": {
|
|
13077
14345
|
"Struct": {
|
|
13078
14346
|
"address": "0x2",
|
|
13079
|
-
"module": "
|
|
13080
|
-
"name": "
|
|
13081
|
-
"typeArguments": [
|
|
13082
|
-
{
|
|
13083
|
-
"TypeParameter": 0
|
|
13084
|
-
}
|
|
13085
|
-
]
|
|
14347
|
+
"module": "versioned",
|
|
14348
|
+
"name": "Versioned",
|
|
14349
|
+
"typeArguments": []
|
|
13086
14350
|
}
|
|
13087
14351
|
}
|
|
14352
|
+
}
|
|
14353
|
+
],
|
|
14354
|
+
"return": [
|
|
14355
|
+
{
|
|
14356
|
+
"TypeParameter": 0
|
|
13088
14357
|
},
|
|
13089
14358
|
{
|
|
13090
|
-
"
|
|
13091
|
-
"
|
|
14359
|
+
"Struct": {
|
|
14360
|
+
"address": "0x2",
|
|
14361
|
+
"module": "versioned",
|
|
14362
|
+
"name": "VersionChangeCap",
|
|
14363
|
+
"typeArguments": []
|
|
13092
14364
|
}
|
|
13093
14365
|
}
|
|
13094
|
-
]
|
|
13095
|
-
"return": []
|
|
14366
|
+
]
|
|
13096
14367
|
},
|
|
13097
|
-
"
|
|
14368
|
+
"upgrade": {
|
|
13098
14369
|
"visibility": "Public",
|
|
13099
14370
|
"isEntry": false,
|
|
13100
14371
|
"typeParameters": [
|
|
13101
14372
|
{
|
|
13102
|
-
"abilities": ["
|
|
14373
|
+
"abilities": ["Store"]
|
|
13103
14374
|
}
|
|
13104
14375
|
],
|
|
13105
14376
|
"parameters": [
|
|
14377
|
+
{
|
|
14378
|
+
"MutableReference": {
|
|
14379
|
+
"Struct": {
|
|
14380
|
+
"address": "0x2",
|
|
14381
|
+
"module": "versioned",
|
|
14382
|
+
"name": "Versioned",
|
|
14383
|
+
"typeArguments": []
|
|
14384
|
+
}
|
|
14385
|
+
}
|
|
14386
|
+
},
|
|
14387
|
+
"U64",
|
|
13106
14388
|
{
|
|
13107
14389
|
"TypeParameter": 0
|
|
13108
|
-
}
|
|
13109
|
-
],
|
|
13110
|
-
"return": [
|
|
14390
|
+
},
|
|
13111
14391
|
{
|
|
13112
14392
|
"Struct": {
|
|
13113
14393
|
"address": "0x2",
|
|
13114
|
-
"module": "
|
|
13115
|
-
"name": "
|
|
13116
|
-
"typeArguments": [
|
|
13117
|
-
{
|
|
13118
|
-
"TypeParameter": 0
|
|
13119
|
-
}
|
|
13120
|
-
]
|
|
14394
|
+
"module": "versioned",
|
|
14395
|
+
"name": "VersionChangeCap",
|
|
14396
|
+
"typeArguments": []
|
|
13121
14397
|
}
|
|
13122
14398
|
}
|
|
13123
|
-
]
|
|
14399
|
+
],
|
|
14400
|
+
"return": []
|
|
13124
14401
|
},
|
|
13125
|
-
"
|
|
14402
|
+
"version": {
|
|
13126
14403
|
"visibility": "Public",
|
|
13127
14404
|
"isEntry": false,
|
|
13128
|
-
"typeParameters": [
|
|
13129
|
-
{
|
|
13130
|
-
"abilities": ["Copy", "Drop"]
|
|
13131
|
-
}
|
|
13132
|
-
],
|
|
14405
|
+
"typeParameters": [],
|
|
13133
14406
|
"parameters": [
|
|
13134
14407
|
{
|
|
13135
14408
|
"Reference": {
|
|
13136
14409
|
"Struct": {
|
|
13137
14410
|
"address": "0x2",
|
|
13138
|
-
"module": "
|
|
13139
|
-
"name": "
|
|
13140
|
-
"typeArguments": [
|
|
13141
|
-
{
|
|
13142
|
-
"TypeParameter": 0
|
|
13143
|
-
}
|
|
13144
|
-
]
|
|
14411
|
+
"module": "versioned",
|
|
14412
|
+
"name": "Versioned",
|
|
14413
|
+
"typeArguments": []
|
|
13145
14414
|
}
|
|
13146
14415
|
}
|
|
13147
14416
|
}
|
|
@@ -13150,79 +14419,171 @@
|
|
|
13150
14419
|
}
|
|
13151
14420
|
}
|
|
13152
14421
|
},
|
|
13153
|
-
"
|
|
14422
|
+
"zklogin_verified_id": {
|
|
13154
14423
|
"fileFormatVersion": 6,
|
|
13155
14424
|
"address": "0x2",
|
|
13156
|
-
"name": "
|
|
14425
|
+
"name": "zklogin_verified_id",
|
|
13157
14426
|
"friends": [],
|
|
13158
14427
|
"structs": {
|
|
13159
|
-
"
|
|
14428
|
+
"VerifiedID": {
|
|
13160
14429
|
"abilities": {
|
|
13161
|
-
"abilities": []
|
|
14430
|
+
"abilities": ["Key"]
|
|
13162
14431
|
},
|
|
13163
14432
|
"typeParameters": [],
|
|
13164
14433
|
"fields": [
|
|
13165
14434
|
{
|
|
13166
|
-
"name": "
|
|
14435
|
+
"name": "id",
|
|
13167
14436
|
"type": {
|
|
13168
14437
|
"Struct": {
|
|
13169
14438
|
"address": "0x2",
|
|
13170
14439
|
"module": "object",
|
|
13171
|
-
"name": "
|
|
14440
|
+
"name": "UID",
|
|
13172
14441
|
"typeArguments": []
|
|
13173
14442
|
}
|
|
13174
14443
|
}
|
|
13175
14444
|
},
|
|
13176
14445
|
{
|
|
13177
|
-
"name": "
|
|
13178
|
-
"type": "
|
|
14446
|
+
"name": "owner",
|
|
14447
|
+
"type": "Address"
|
|
14448
|
+
},
|
|
14449
|
+
{
|
|
14450
|
+
"name": "key_claim_name",
|
|
14451
|
+
"type": {
|
|
14452
|
+
"Struct": {
|
|
14453
|
+
"address": "0x1",
|
|
14454
|
+
"module": "string",
|
|
14455
|
+
"name": "String",
|
|
14456
|
+
"typeArguments": []
|
|
14457
|
+
}
|
|
14458
|
+
}
|
|
14459
|
+
},
|
|
14460
|
+
{
|
|
14461
|
+
"name": "key_claim_value",
|
|
14462
|
+
"type": {
|
|
14463
|
+
"Struct": {
|
|
14464
|
+
"address": "0x1",
|
|
14465
|
+
"module": "string",
|
|
14466
|
+
"name": "String",
|
|
14467
|
+
"typeArguments": []
|
|
14468
|
+
}
|
|
14469
|
+
}
|
|
14470
|
+
},
|
|
14471
|
+
{
|
|
14472
|
+
"name": "issuer",
|
|
14473
|
+
"type": {
|
|
14474
|
+
"Struct": {
|
|
14475
|
+
"address": "0x1",
|
|
14476
|
+
"module": "string",
|
|
14477
|
+
"name": "String",
|
|
14478
|
+
"typeArguments": []
|
|
14479
|
+
}
|
|
14480
|
+
}
|
|
14481
|
+
},
|
|
14482
|
+
{
|
|
14483
|
+
"name": "audience",
|
|
14484
|
+
"type": {
|
|
14485
|
+
"Struct": {
|
|
14486
|
+
"address": "0x1",
|
|
14487
|
+
"module": "string",
|
|
14488
|
+
"name": "String",
|
|
14489
|
+
"typeArguments": []
|
|
14490
|
+
}
|
|
14491
|
+
}
|
|
13179
14492
|
}
|
|
13180
14493
|
]
|
|
13181
|
-
}
|
|
13182
|
-
|
|
13183
|
-
|
|
13184
|
-
|
|
13185
|
-
|
|
14494
|
+
}
|
|
14495
|
+
},
|
|
14496
|
+
"exposedFunctions": {
|
|
14497
|
+
"audience": {
|
|
14498
|
+
"visibility": "Public",
|
|
14499
|
+
"isEntry": false,
|
|
13186
14500
|
"typeParameters": [],
|
|
13187
|
-
"
|
|
14501
|
+
"parameters": [
|
|
13188
14502
|
{
|
|
13189
|
-
"
|
|
13190
|
-
"type": {
|
|
14503
|
+
"Reference": {
|
|
13191
14504
|
"Struct": {
|
|
13192
14505
|
"address": "0x2",
|
|
13193
|
-
"module": "
|
|
13194
|
-
"name": "
|
|
14506
|
+
"module": "zklogin_verified_id",
|
|
14507
|
+
"name": "VerifiedID",
|
|
14508
|
+
"typeArguments": []
|
|
14509
|
+
}
|
|
14510
|
+
}
|
|
14511
|
+
}
|
|
14512
|
+
],
|
|
14513
|
+
"return": [
|
|
14514
|
+
{
|
|
14515
|
+
"Reference": {
|
|
14516
|
+
"Struct": {
|
|
14517
|
+
"address": "0x1",
|
|
14518
|
+
"module": "string",
|
|
14519
|
+
"name": "String",
|
|
14520
|
+
"typeArguments": []
|
|
14521
|
+
}
|
|
14522
|
+
}
|
|
14523
|
+
}
|
|
14524
|
+
]
|
|
14525
|
+
},
|
|
14526
|
+
"check_zklogin_id": {
|
|
14527
|
+
"visibility": "Public",
|
|
14528
|
+
"isEntry": false,
|
|
14529
|
+
"typeParameters": [],
|
|
14530
|
+
"parameters": [
|
|
14531
|
+
"Address",
|
|
14532
|
+
{
|
|
14533
|
+
"Reference": {
|
|
14534
|
+
"Struct": {
|
|
14535
|
+
"address": "0x1",
|
|
14536
|
+
"module": "string",
|
|
14537
|
+
"name": "String",
|
|
14538
|
+
"typeArguments": []
|
|
14539
|
+
}
|
|
14540
|
+
}
|
|
14541
|
+
},
|
|
14542
|
+
{
|
|
14543
|
+
"Reference": {
|
|
14544
|
+
"Struct": {
|
|
14545
|
+
"address": "0x1",
|
|
14546
|
+
"module": "string",
|
|
14547
|
+
"name": "String",
|
|
14548
|
+
"typeArguments": []
|
|
14549
|
+
}
|
|
14550
|
+
}
|
|
14551
|
+
},
|
|
14552
|
+
{
|
|
14553
|
+
"Reference": {
|
|
14554
|
+
"Struct": {
|
|
14555
|
+
"address": "0x1",
|
|
14556
|
+
"module": "string",
|
|
14557
|
+
"name": "String",
|
|
14558
|
+
"typeArguments": []
|
|
14559
|
+
}
|
|
14560
|
+
}
|
|
14561
|
+
},
|
|
14562
|
+
{
|
|
14563
|
+
"Reference": {
|
|
14564
|
+
"Struct": {
|
|
14565
|
+
"address": "0x1",
|
|
14566
|
+
"module": "string",
|
|
14567
|
+
"name": "String",
|
|
13195
14568
|
"typeArguments": []
|
|
13196
14569
|
}
|
|
13197
14570
|
}
|
|
13198
14571
|
},
|
|
13199
|
-
|
|
13200
|
-
|
|
13201
|
-
|
|
13202
|
-
|
|
13203
|
-
|
|
13204
|
-
}
|
|
13205
|
-
},
|
|
13206
|
-
"exposedFunctions": {
|
|
13207
|
-
"create": {
|
|
14572
|
+
"U256"
|
|
14573
|
+
],
|
|
14574
|
+
"return": ["Bool"]
|
|
14575
|
+
},
|
|
14576
|
+
"issuer": {
|
|
13208
14577
|
"visibility": "Public",
|
|
13209
14578
|
"isEntry": false,
|
|
13210
|
-
"typeParameters": [
|
|
13211
|
-
{
|
|
13212
|
-
"abilities": ["Store"]
|
|
13213
|
-
}
|
|
13214
|
-
],
|
|
14579
|
+
"typeParameters": [],
|
|
13215
14580
|
"parameters": [
|
|
13216
|
-
"U64",
|
|
13217
|
-
{
|
|
13218
|
-
"TypeParameter": 0
|
|
13219
|
-
},
|
|
13220
14581
|
{
|
|
13221
|
-
"
|
|
14582
|
+
"Reference": {
|
|
13222
14583
|
"Struct": {
|
|
13223
14584
|
"address": "0x2",
|
|
13224
|
-
"module": "
|
|
13225
|
-
"name": "
|
|
14585
|
+
"module": "zklogin_verified_id",
|
|
14586
|
+
"name": "VerifiedID",
|
|
13226
14587
|
"typeArguments": []
|
|
13227
14588
|
}
|
|
13228
14589
|
}
|
|
@@ -13230,54 +14591,57 @@
|
|
|
13230
14591
|
],
|
|
13231
14592
|
"return": [
|
|
13232
14593
|
{
|
|
13233
|
-
"
|
|
13234
|
-
"
|
|
13235
|
-
|
|
13236
|
-
|
|
13237
|
-
|
|
14594
|
+
"Reference": {
|
|
14595
|
+
"Struct": {
|
|
14596
|
+
"address": "0x1",
|
|
14597
|
+
"module": "string",
|
|
14598
|
+
"name": "String",
|
|
14599
|
+
"typeArguments": []
|
|
14600
|
+
}
|
|
13238
14601
|
}
|
|
13239
14602
|
}
|
|
13240
14603
|
]
|
|
13241
14604
|
},
|
|
13242
|
-
"
|
|
14605
|
+
"key_claim_name": {
|
|
13243
14606
|
"visibility": "Public",
|
|
13244
14607
|
"isEntry": false,
|
|
13245
|
-
"typeParameters": [
|
|
13246
|
-
{
|
|
13247
|
-
"abilities": ["Store"]
|
|
13248
|
-
}
|
|
13249
|
-
],
|
|
14608
|
+
"typeParameters": [],
|
|
13250
14609
|
"parameters": [
|
|
13251
14610
|
{
|
|
13252
|
-
"
|
|
13253
|
-
"
|
|
13254
|
-
|
|
13255
|
-
|
|
13256
|
-
|
|
14611
|
+
"Reference": {
|
|
14612
|
+
"Struct": {
|
|
14613
|
+
"address": "0x2",
|
|
14614
|
+
"module": "zklogin_verified_id",
|
|
14615
|
+
"name": "VerifiedID",
|
|
14616
|
+
"typeArguments": []
|
|
14617
|
+
}
|
|
13257
14618
|
}
|
|
13258
14619
|
}
|
|
13259
14620
|
],
|
|
13260
14621
|
"return": [
|
|
13261
14622
|
{
|
|
13262
|
-
"
|
|
14623
|
+
"Reference": {
|
|
14624
|
+
"Struct": {
|
|
14625
|
+
"address": "0x1",
|
|
14626
|
+
"module": "string",
|
|
14627
|
+
"name": "String",
|
|
14628
|
+
"typeArguments": []
|
|
14629
|
+
}
|
|
14630
|
+
}
|
|
13263
14631
|
}
|
|
13264
14632
|
]
|
|
13265
14633
|
},
|
|
13266
|
-
"
|
|
14634
|
+
"key_claim_value": {
|
|
13267
14635
|
"visibility": "Public",
|
|
13268
14636
|
"isEntry": false,
|
|
13269
|
-
"typeParameters": [
|
|
13270
|
-
{
|
|
13271
|
-
"abilities": ["Store"]
|
|
13272
|
-
}
|
|
13273
|
-
],
|
|
14637
|
+
"typeParameters": [],
|
|
13274
14638
|
"parameters": [
|
|
13275
14639
|
{
|
|
13276
14640
|
"Reference": {
|
|
13277
14641
|
"Struct": {
|
|
13278
14642
|
"address": "0x2",
|
|
13279
|
-
"module": "
|
|
13280
|
-
"name": "
|
|
14643
|
+
"module": "zklogin_verified_id",
|
|
14644
|
+
"name": "VerifiedID",
|
|
13281
14645
|
"typeArguments": []
|
|
13282
14646
|
}
|
|
13283
14647
|
}
|
|
@@ -13286,54 +14650,160 @@
|
|
|
13286
14650
|
"return": [
|
|
13287
14651
|
{
|
|
13288
14652
|
"Reference": {
|
|
13289
|
-
"
|
|
14653
|
+
"Struct": {
|
|
14654
|
+
"address": "0x1",
|
|
14655
|
+
"module": "string",
|
|
14656
|
+
"name": "String",
|
|
14657
|
+
"typeArguments": []
|
|
14658
|
+
}
|
|
13290
14659
|
}
|
|
13291
14660
|
}
|
|
13292
14661
|
]
|
|
13293
14662
|
},
|
|
13294
|
-
"
|
|
14663
|
+
"owner": {
|
|
13295
14664
|
"visibility": "Public",
|
|
13296
14665
|
"isEntry": false,
|
|
13297
|
-
"typeParameters": [
|
|
14666
|
+
"typeParameters": [],
|
|
14667
|
+
"parameters": [
|
|
13298
14668
|
{
|
|
13299
|
-
"
|
|
14669
|
+
"Reference": {
|
|
14670
|
+
"Struct": {
|
|
14671
|
+
"address": "0x2",
|
|
14672
|
+
"module": "zklogin_verified_id",
|
|
14673
|
+
"name": "VerifiedID",
|
|
14674
|
+
"typeArguments": []
|
|
14675
|
+
}
|
|
14676
|
+
}
|
|
13300
14677
|
}
|
|
13301
14678
|
],
|
|
14679
|
+
"return": ["Address"]
|
|
14680
|
+
},
|
|
14681
|
+
"verify_zklogin_id": {
|
|
14682
|
+
"visibility": "Public",
|
|
14683
|
+
"isEntry": false,
|
|
14684
|
+
"typeParameters": [],
|
|
13302
14685
|
"parameters": [
|
|
14686
|
+
{
|
|
14687
|
+
"Struct": {
|
|
14688
|
+
"address": "0x1",
|
|
14689
|
+
"module": "string",
|
|
14690
|
+
"name": "String",
|
|
14691
|
+
"typeArguments": []
|
|
14692
|
+
}
|
|
14693
|
+
},
|
|
14694
|
+
{
|
|
14695
|
+
"Struct": {
|
|
14696
|
+
"address": "0x1",
|
|
14697
|
+
"module": "string",
|
|
14698
|
+
"name": "String",
|
|
14699
|
+
"typeArguments": []
|
|
14700
|
+
}
|
|
14701
|
+
},
|
|
14702
|
+
{
|
|
14703
|
+
"Struct": {
|
|
14704
|
+
"address": "0x1",
|
|
14705
|
+
"module": "string",
|
|
14706
|
+
"name": "String",
|
|
14707
|
+
"typeArguments": []
|
|
14708
|
+
}
|
|
14709
|
+
},
|
|
14710
|
+
{
|
|
14711
|
+
"Struct": {
|
|
14712
|
+
"address": "0x1",
|
|
14713
|
+
"module": "string",
|
|
14714
|
+
"name": "String",
|
|
14715
|
+
"typeArguments": []
|
|
14716
|
+
}
|
|
14717
|
+
},
|
|
14718
|
+
"U256",
|
|
13303
14719
|
{
|
|
13304
14720
|
"MutableReference": {
|
|
13305
14721
|
"Struct": {
|
|
13306
14722
|
"address": "0x2",
|
|
13307
|
-
"module": "
|
|
13308
|
-
"name": "
|
|
14723
|
+
"module": "tx_context",
|
|
14724
|
+
"name": "TxContext",
|
|
13309
14725
|
"typeArguments": []
|
|
13310
14726
|
}
|
|
13311
14727
|
}
|
|
13312
14728
|
}
|
|
13313
14729
|
],
|
|
13314
|
-
"return": [
|
|
14730
|
+
"return": []
|
|
14731
|
+
}
|
|
14732
|
+
}
|
|
14733
|
+
},
|
|
14734
|
+
"zklogin_verified_issuer": {
|
|
14735
|
+
"fileFormatVersion": 6,
|
|
14736
|
+
"address": "0x2",
|
|
14737
|
+
"name": "zklogin_verified_issuer",
|
|
14738
|
+
"friends": [],
|
|
14739
|
+
"structs": {
|
|
14740
|
+
"VerifiedIssuer": {
|
|
14741
|
+
"abilities": {
|
|
14742
|
+
"abilities": ["Key"]
|
|
14743
|
+
},
|
|
14744
|
+
"typeParameters": [],
|
|
14745
|
+
"fields": [
|
|
13315
14746
|
{
|
|
13316
|
-
"
|
|
13317
|
-
|
|
14747
|
+
"name": "id",
|
|
14748
|
+
"type": {
|
|
14749
|
+
"Struct": {
|
|
14750
|
+
"address": "0x2",
|
|
14751
|
+
"module": "object",
|
|
14752
|
+
"name": "UID",
|
|
14753
|
+
"typeArguments": []
|
|
14754
|
+
}
|
|
14755
|
+
}
|
|
14756
|
+
},
|
|
14757
|
+
{
|
|
14758
|
+
"name": "owner",
|
|
14759
|
+
"type": "Address"
|
|
14760
|
+
},
|
|
14761
|
+
{
|
|
14762
|
+
"name": "issuer",
|
|
14763
|
+
"type": {
|
|
14764
|
+
"Struct": {
|
|
14765
|
+
"address": "0x1",
|
|
14766
|
+
"module": "string",
|
|
14767
|
+
"name": "String",
|
|
14768
|
+
"typeArguments": []
|
|
14769
|
+
}
|
|
13318
14770
|
}
|
|
13319
14771
|
}
|
|
13320
14772
|
]
|
|
13321
|
-
}
|
|
13322
|
-
|
|
14773
|
+
}
|
|
14774
|
+
},
|
|
14775
|
+
"exposedFunctions": {
|
|
14776
|
+
"check_zklogin_issuer": {
|
|
13323
14777
|
"visibility": "Public",
|
|
13324
14778
|
"isEntry": false,
|
|
13325
|
-
"typeParameters": [
|
|
14779
|
+
"typeParameters": [],
|
|
14780
|
+
"parameters": [
|
|
14781
|
+
"Address",
|
|
14782
|
+
"U256",
|
|
13326
14783
|
{
|
|
13327
|
-
"
|
|
14784
|
+
"Reference": {
|
|
14785
|
+
"Struct": {
|
|
14786
|
+
"address": "0x1",
|
|
14787
|
+
"module": "string",
|
|
14788
|
+
"name": "String",
|
|
14789
|
+
"typeArguments": []
|
|
14790
|
+
}
|
|
14791
|
+
}
|
|
13328
14792
|
}
|
|
13329
14793
|
],
|
|
14794
|
+
"return": ["Bool"]
|
|
14795
|
+
},
|
|
14796
|
+
"issuer": {
|
|
14797
|
+
"visibility": "Public",
|
|
14798
|
+
"isEntry": false,
|
|
14799
|
+
"typeParameters": [],
|
|
13330
14800
|
"parameters": [
|
|
13331
14801
|
{
|
|
13332
|
-
"
|
|
14802
|
+
"Reference": {
|
|
13333
14803
|
"Struct": {
|
|
13334
14804
|
"address": "0x2",
|
|
13335
|
-
"module": "
|
|
13336
|
-
"name": "
|
|
14805
|
+
"module": "zklogin_verified_issuer",
|
|
14806
|
+
"name": "VerifiedIssuer",
|
|
13337
14807
|
"typeArguments": []
|
|
13338
14808
|
}
|
|
13339
14809
|
}
|
|
@@ -13341,69 +14811,61 @@
|
|
|
13341
14811
|
],
|
|
13342
14812
|
"return": [
|
|
13343
14813
|
{
|
|
13344
|
-
"
|
|
13345
|
-
|
|
13346
|
-
|
|
13347
|
-
|
|
13348
|
-
|
|
13349
|
-
|
|
13350
|
-
|
|
13351
|
-
"typeArguments": []
|
|
14814
|
+
"Reference": {
|
|
14815
|
+
"Struct": {
|
|
14816
|
+
"address": "0x1",
|
|
14817
|
+
"module": "string",
|
|
14818
|
+
"name": "String",
|
|
14819
|
+
"typeArguments": []
|
|
14820
|
+
}
|
|
13352
14821
|
}
|
|
13353
14822
|
}
|
|
13354
14823
|
]
|
|
13355
14824
|
},
|
|
13356
|
-
"
|
|
14825
|
+
"owner": {
|
|
13357
14826
|
"visibility": "Public",
|
|
13358
14827
|
"isEntry": false,
|
|
13359
|
-
"typeParameters": [
|
|
13360
|
-
{
|
|
13361
|
-
"abilities": ["Store"]
|
|
13362
|
-
}
|
|
13363
|
-
],
|
|
14828
|
+
"typeParameters": [],
|
|
13364
14829
|
"parameters": [
|
|
13365
14830
|
{
|
|
13366
|
-
"
|
|
14831
|
+
"Reference": {
|
|
13367
14832
|
"Struct": {
|
|
13368
14833
|
"address": "0x2",
|
|
13369
|
-
"module": "
|
|
13370
|
-
"name": "
|
|
14834
|
+
"module": "zklogin_verified_issuer",
|
|
14835
|
+
"name": "VerifiedIssuer",
|
|
13371
14836
|
"typeArguments": []
|
|
13372
14837
|
}
|
|
13373
14838
|
}
|
|
13374
|
-
},
|
|
13375
|
-
"U64",
|
|
13376
|
-
{
|
|
13377
|
-
"TypeParameter": 0
|
|
13378
|
-
},
|
|
13379
|
-
{
|
|
13380
|
-
"Struct": {
|
|
13381
|
-
"address": "0x2",
|
|
13382
|
-
"module": "versioned",
|
|
13383
|
-
"name": "VersionChangeCap",
|
|
13384
|
-
"typeArguments": []
|
|
13385
|
-
}
|
|
13386
14839
|
}
|
|
13387
14840
|
],
|
|
13388
|
-
"return": []
|
|
14841
|
+
"return": ["Address"]
|
|
13389
14842
|
},
|
|
13390
|
-
"
|
|
14843
|
+
"verify_zklogin_issuer": {
|
|
13391
14844
|
"visibility": "Public",
|
|
13392
14845
|
"isEntry": false,
|
|
13393
14846
|
"typeParameters": [],
|
|
13394
14847
|
"parameters": [
|
|
14848
|
+
"U256",
|
|
13395
14849
|
{
|
|
13396
|
-
"
|
|
14850
|
+
"Struct": {
|
|
14851
|
+
"address": "0x1",
|
|
14852
|
+
"module": "string",
|
|
14853
|
+
"name": "String",
|
|
14854
|
+
"typeArguments": []
|
|
14855
|
+
}
|
|
14856
|
+
},
|
|
14857
|
+
{
|
|
14858
|
+
"MutableReference": {
|
|
13397
14859
|
"Struct": {
|
|
13398
14860
|
"address": "0x2",
|
|
13399
|
-
"module": "
|
|
13400
|
-
"name": "
|
|
14861
|
+
"module": "tx_context",
|
|
14862
|
+
"name": "TxContext",
|
|
13401
14863
|
"typeArguments": []
|
|
13402
14864
|
}
|
|
13403
14865
|
}
|
|
13404
14866
|
}
|
|
13405
14867
|
],
|
|
13406
|
-
"return": [
|
|
14868
|
+
"return": []
|
|
13407
14869
|
}
|
|
13408
14870
|
}
|
|
13409
14871
|
}
|