@sentio/sdk 2.10.2 → 2.11.0-rc.1
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/codegen/codegen.js +0 -1
- package/lib/aptos/codegen/codegen.js.map +1 -1
- package/lib/move/abstract-codegen.d.ts +2 -1
- package/lib/move/abstract-codegen.js +9 -8
- package/lib/move/abstract-codegen.js.map +1 -1
- package/lib/solana/builtin/types.d.ts +170 -170
- package/lib/solana/builtin/types.js +2 -1
- package/lib/solana/builtin/types.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 +235 -640
- package/lib/sui/builtin/0x2.js +294 -716
- package/lib/sui/builtin/0x2.js.map +1 -1
- package/lib/sui/builtin/0x3.d.ts +566 -0
- package/lib/sui/builtin/0x3.js +681 -0
- package/lib/sui/builtin/0x3.js.map +1 -0
- package/lib/sui/builtin/index.d.ts +1 -0
- package/lib/sui/builtin/index.js +1 -0
- package/lib/sui/builtin/index.js.map +1 -1
- package/lib/sui/codegen/codegen.js +4 -3
- package/lib/sui/codegen/codegen.js.map +1 -1
- package/lib/sui/context.d.ts +3 -3
- package/lib/sui/context.js +1 -1
- package/lib/sui/context.js.map +1 -1
- package/lib/sui/models.d.ts +4 -4
- package/lib/sui/models.js.map +1 -1
- package/lib/sui/move-coder.d.ts +5 -5
- package/lib/sui/move-coder.js +19 -7
- package/lib/sui/move-coder.js.map +1 -1
- package/lib/sui/move-types.js +7 -7
- package/lib/sui/move-types.js.map +1 -1
- package/lib/sui/sui-processor.d.ts +3 -3
- package/lib/sui/sui-processor.js +15 -9
- package/lib/sui/sui-processor.js.map +1 -1
- package/lib/sui/utils.d.ts +2 -2
- package/lib/sui/utils.js +13 -5
- package/lib/sui/utils.js.map +1 -1
- package/lib/testing/sui-facet.d.ts +4 -4
- package/lib/testing/sui-facet.js +7 -7
- package/lib/testing/sui-facet.js.map +1 -1
- package/package.json +7 -5
- package/src/aptos/codegen/codegen.ts +0 -1
- package/src/move/abstract-codegen.ts +9 -8
- package/src/solana/builtin/types.ts +2 -1
- package/src/sui/abis/0x1.json +357 -357
- package/src/sui/abis/0x2.json +5563 -8247
- package/src/sui/abis/0x3.json +8399 -0
- package/src/sui/builtin/0x1.ts +1 -1
- package/src/sui/builtin/0x2.ts +531 -1537
- package/src/sui/builtin/0x3.ts +1515 -0
- package/src/sui/builtin/index.ts +1 -0
- package/src/sui/codegen/codegen.ts +5 -3
- package/src/sui/context.ts +4 -4
- package/src/sui/models.ts +4 -4
- package/src/sui/move-coder.ts +24 -12
- package/src/sui/move-types.ts +7 -7
- package/src/sui/sui-processor.ts +28 -15
- package/src/sui/utils.ts +21 -5
- package/src/testing/sui-facet.ts +19 -15
- package/src/eth/codegen/tsconfig.json +0 -8
package/src/sui/abis/0x1.json
CHANGED
@@ -1,22 +1,22 @@
|
|
1
1
|
{
|
2
2
|
"address": {
|
3
|
-
"
|
3
|
+
"fileFormatVersion": 6,
|
4
4
|
"address": "0x1",
|
5
5
|
"name": "address",
|
6
6
|
"friends": [],
|
7
7
|
"structs": {},
|
8
|
-
"
|
8
|
+
"exposedFunctions": {
|
9
9
|
"length": {
|
10
10
|
"visibility": "Public",
|
11
|
-
"
|
12
|
-
"
|
11
|
+
"isEntry": false,
|
12
|
+
"typeParameters": [],
|
13
13
|
"parameters": [],
|
14
|
-
"
|
14
|
+
"return": ["U64"]
|
15
15
|
}
|
16
16
|
}
|
17
17
|
},
|
18
18
|
"ascii": {
|
19
|
-
"
|
19
|
+
"fileFormatVersion": 6,
|
20
20
|
"address": "0x1",
|
21
21
|
"name": "ascii",
|
22
22
|
"friends": [],
|
@@ -25,11 +25,11 @@
|
|
25
25
|
"abilities": {
|
26
26
|
"abilities": ["Copy", "Drop", "Store"]
|
27
27
|
},
|
28
|
-
"
|
28
|
+
"typeParameters": [],
|
29
29
|
"fields": [
|
30
30
|
{
|
31
31
|
"name": "byte",
|
32
|
-
"
|
32
|
+
"type": "U8"
|
33
33
|
}
|
34
34
|
]
|
35
35
|
},
|
@@ -37,22 +37,22 @@
|
|
37
37
|
"abilities": {
|
38
38
|
"abilities": ["Copy", "Drop", "Store"]
|
39
39
|
},
|
40
|
-
"
|
40
|
+
"typeParameters": [],
|
41
41
|
"fields": [
|
42
42
|
{
|
43
43
|
"name": "bytes",
|
44
|
-
"
|
44
|
+
"type": {
|
45
45
|
"Vector": "U8"
|
46
46
|
}
|
47
47
|
}
|
48
48
|
]
|
49
49
|
}
|
50
50
|
},
|
51
|
-
"
|
51
|
+
"exposedFunctions": {
|
52
52
|
"all_characters_printable": {
|
53
53
|
"visibility": "Public",
|
54
|
-
"
|
55
|
-
"
|
54
|
+
"isEntry": false,
|
55
|
+
"typeParameters": [],
|
56
56
|
"parameters": [
|
57
57
|
{
|
58
58
|
"Reference": {
|
@@ -60,17 +60,17 @@
|
|
60
60
|
"address": "0x1",
|
61
61
|
"module": "ascii",
|
62
62
|
"name": "String",
|
63
|
-
"
|
63
|
+
"typeArguments": []
|
64
64
|
}
|
65
65
|
}
|
66
66
|
}
|
67
67
|
],
|
68
|
-
"
|
68
|
+
"return": ["Bool"]
|
69
69
|
},
|
70
70
|
"as_bytes": {
|
71
71
|
"visibility": "Public",
|
72
|
-
"
|
73
|
-
"
|
72
|
+
"isEntry": false,
|
73
|
+
"typeParameters": [],
|
74
74
|
"parameters": [
|
75
75
|
{
|
76
76
|
"Reference": {
|
@@ -78,12 +78,12 @@
|
|
78
78
|
"address": "0x1",
|
79
79
|
"module": "ascii",
|
80
80
|
"name": "String",
|
81
|
-
"
|
81
|
+
"typeArguments": []
|
82
82
|
}
|
83
83
|
}
|
84
84
|
}
|
85
85
|
],
|
86
|
-
"
|
86
|
+
"return": [
|
87
87
|
{
|
88
88
|
"Reference": {
|
89
89
|
"Vector": "U8"
|
@@ -93,51 +93,51 @@
|
|
93
93
|
},
|
94
94
|
"byte": {
|
95
95
|
"visibility": "Public",
|
96
|
-
"
|
97
|
-
"
|
96
|
+
"isEntry": false,
|
97
|
+
"typeParameters": [],
|
98
98
|
"parameters": [
|
99
99
|
{
|
100
100
|
"Struct": {
|
101
101
|
"address": "0x1",
|
102
102
|
"module": "ascii",
|
103
103
|
"name": "Char",
|
104
|
-
"
|
104
|
+
"typeArguments": []
|
105
105
|
}
|
106
106
|
}
|
107
107
|
],
|
108
|
-
"
|
108
|
+
"return": ["U8"]
|
109
109
|
},
|
110
110
|
"char": {
|
111
111
|
"visibility": "Public",
|
112
|
-
"
|
113
|
-
"
|
112
|
+
"isEntry": false,
|
113
|
+
"typeParameters": [],
|
114
114
|
"parameters": ["U8"],
|
115
|
-
"
|
115
|
+
"return": [
|
116
116
|
{
|
117
117
|
"Struct": {
|
118
118
|
"address": "0x1",
|
119
119
|
"module": "ascii",
|
120
120
|
"name": "Char",
|
121
|
-
"
|
121
|
+
"typeArguments": []
|
122
122
|
}
|
123
123
|
}
|
124
124
|
]
|
125
125
|
},
|
126
126
|
"into_bytes": {
|
127
127
|
"visibility": "Public",
|
128
|
-
"
|
129
|
-
"
|
128
|
+
"isEntry": false,
|
129
|
+
"typeParameters": [],
|
130
130
|
"parameters": [
|
131
131
|
{
|
132
132
|
"Struct": {
|
133
133
|
"address": "0x1",
|
134
134
|
"module": "ascii",
|
135
135
|
"name": "String",
|
136
|
-
"
|
136
|
+
"typeArguments": []
|
137
137
|
}
|
138
138
|
}
|
139
139
|
],
|
140
|
-
"
|
140
|
+
"return": [
|
141
141
|
{
|
142
142
|
"Vector": "U8"
|
143
143
|
}
|
@@ -145,22 +145,22 @@
|
|
145
145
|
},
|
146
146
|
"is_printable_char": {
|
147
147
|
"visibility": "Public",
|
148
|
-
"
|
149
|
-
"
|
148
|
+
"isEntry": false,
|
149
|
+
"typeParameters": [],
|
150
150
|
"parameters": ["U8"],
|
151
|
-
"
|
151
|
+
"return": ["Bool"]
|
152
152
|
},
|
153
153
|
"is_valid_char": {
|
154
154
|
"visibility": "Public",
|
155
|
-
"
|
156
|
-
"
|
155
|
+
"isEntry": false,
|
156
|
+
"typeParameters": [],
|
157
157
|
"parameters": ["U8"],
|
158
|
-
"
|
158
|
+
"return": ["Bool"]
|
159
159
|
},
|
160
160
|
"length": {
|
161
161
|
"visibility": "Public",
|
162
|
-
"
|
163
|
-
"
|
162
|
+
"isEntry": false,
|
163
|
+
"typeParameters": [],
|
164
164
|
"parameters": [
|
165
165
|
{
|
166
166
|
"Reference": {
|
@@ -168,17 +168,17 @@
|
|
168
168
|
"address": "0x1",
|
169
169
|
"module": "ascii",
|
170
170
|
"name": "String",
|
171
|
-
"
|
171
|
+
"typeArguments": []
|
172
172
|
}
|
173
173
|
}
|
174
174
|
}
|
175
175
|
],
|
176
|
-
"
|
176
|
+
"return": ["U64"]
|
177
177
|
},
|
178
178
|
"pop_char": {
|
179
179
|
"visibility": "Public",
|
180
|
-
"
|
181
|
-
"
|
180
|
+
"isEntry": false,
|
181
|
+
"typeParameters": [],
|
182
182
|
"parameters": [
|
183
183
|
{
|
184
184
|
"MutableReference": {
|
@@ -186,26 +186,26 @@
|
|
186
186
|
"address": "0x1",
|
187
187
|
"module": "ascii",
|
188
188
|
"name": "String",
|
189
|
-
"
|
189
|
+
"typeArguments": []
|
190
190
|
}
|
191
191
|
}
|
192
192
|
}
|
193
193
|
],
|
194
|
-
"
|
194
|
+
"return": [
|
195
195
|
{
|
196
196
|
"Struct": {
|
197
197
|
"address": "0x1",
|
198
198
|
"module": "ascii",
|
199
199
|
"name": "Char",
|
200
|
-
"
|
200
|
+
"typeArguments": []
|
201
201
|
}
|
202
202
|
}
|
203
203
|
]
|
204
204
|
},
|
205
205
|
"push_char": {
|
206
206
|
"visibility": "Public",
|
207
|
-
"
|
208
|
-
"
|
207
|
+
"isEntry": false,
|
208
|
+
"typeParameters": [],
|
209
209
|
"parameters": [
|
210
210
|
{
|
211
211
|
"MutableReference": {
|
@@ -213,7 +213,7 @@
|
|
213
213
|
"address": "0x1",
|
214
214
|
"module": "ascii",
|
215
215
|
"name": "String",
|
216
|
-
"
|
216
|
+
"typeArguments": []
|
217
217
|
}
|
218
218
|
}
|
219
219
|
},
|
@@ -222,54 +222,54 @@
|
|
222
222
|
"address": "0x1",
|
223
223
|
"module": "ascii",
|
224
224
|
"name": "Char",
|
225
|
-
"
|
225
|
+
"typeArguments": []
|
226
226
|
}
|
227
227
|
}
|
228
228
|
],
|
229
|
-
"
|
229
|
+
"return": []
|
230
230
|
},
|
231
231
|
"string": {
|
232
232
|
"visibility": "Public",
|
233
|
-
"
|
234
|
-
"
|
233
|
+
"isEntry": false,
|
234
|
+
"typeParameters": [],
|
235
235
|
"parameters": [
|
236
236
|
{
|
237
237
|
"Vector": "U8"
|
238
238
|
}
|
239
239
|
],
|
240
|
-
"
|
240
|
+
"return": [
|
241
241
|
{
|
242
242
|
"Struct": {
|
243
243
|
"address": "0x1",
|
244
244
|
"module": "ascii",
|
245
245
|
"name": "String",
|
246
|
-
"
|
246
|
+
"typeArguments": []
|
247
247
|
}
|
248
248
|
}
|
249
249
|
]
|
250
250
|
},
|
251
251
|
"try_string": {
|
252
252
|
"visibility": "Public",
|
253
|
-
"
|
254
|
-
"
|
253
|
+
"isEntry": false,
|
254
|
+
"typeParameters": [],
|
255
255
|
"parameters": [
|
256
256
|
{
|
257
257
|
"Vector": "U8"
|
258
258
|
}
|
259
259
|
],
|
260
|
-
"
|
260
|
+
"return": [
|
261
261
|
{
|
262
262
|
"Struct": {
|
263
263
|
"address": "0x1",
|
264
264
|
"module": "option",
|
265
265
|
"name": "Option",
|
266
|
-
"
|
266
|
+
"typeArguments": [
|
267
267
|
{
|
268
268
|
"Struct": {
|
269
269
|
"address": "0x1",
|
270
270
|
"module": "ascii",
|
271
271
|
"name": "String",
|
272
|
-
"
|
272
|
+
"typeArguments": []
|
273
273
|
}
|
274
274
|
}
|
275
275
|
]
|
@@ -280,16 +280,16 @@
|
|
280
280
|
}
|
281
281
|
},
|
282
282
|
"bcs": {
|
283
|
-
"
|
283
|
+
"fileFormatVersion": 6,
|
284
284
|
"address": "0x1",
|
285
285
|
"name": "bcs",
|
286
286
|
"friends": [],
|
287
287
|
"structs": {},
|
288
|
-
"
|
288
|
+
"exposedFunctions": {
|
289
289
|
"to_bytes": {
|
290
290
|
"visibility": "Public",
|
291
|
-
"
|
292
|
-
"
|
291
|
+
"isEntry": false,
|
292
|
+
"typeParameters": [
|
293
293
|
{
|
294
294
|
"abilities": []
|
295
295
|
}
|
@@ -301,7 +301,7 @@
|
|
301
301
|
}
|
302
302
|
}
|
303
303
|
],
|
304
|
-
"
|
304
|
+
"return": [
|
305
305
|
{
|
306
306
|
"Vector": "U8"
|
307
307
|
}
|
@@ -310,7 +310,7 @@
|
|
310
310
|
}
|
311
311
|
},
|
312
312
|
"bit_vector": {
|
313
|
-
"
|
313
|
+
"fileFormatVersion": 6,
|
314
314
|
"address": "0x1",
|
315
315
|
"name": "bit_vector",
|
316
316
|
"friends": [],
|
@@ -319,26 +319,26 @@
|
|
319
319
|
"abilities": {
|
320
320
|
"abilities": ["Copy", "Drop", "Store"]
|
321
321
|
},
|
322
|
-
"
|
322
|
+
"typeParameters": [],
|
323
323
|
"fields": [
|
324
324
|
{
|
325
325
|
"name": "length",
|
326
|
-
"
|
326
|
+
"type": "U64"
|
327
327
|
},
|
328
328
|
{
|
329
329
|
"name": "bit_field",
|
330
|
-
"
|
330
|
+
"type": {
|
331
331
|
"Vector": "Bool"
|
332
332
|
}
|
333
333
|
}
|
334
334
|
]
|
335
335
|
}
|
336
336
|
},
|
337
|
-
"
|
337
|
+
"exposedFunctions": {
|
338
338
|
"is_index_set": {
|
339
339
|
"visibility": "Public",
|
340
|
-
"
|
341
|
-
"
|
340
|
+
"isEntry": false,
|
341
|
+
"typeParameters": [],
|
342
342
|
"parameters": [
|
343
343
|
{
|
344
344
|
"Reference": {
|
@@ -346,18 +346,18 @@
|
|
346
346
|
"address": "0x1",
|
347
347
|
"module": "bit_vector",
|
348
348
|
"name": "BitVector",
|
349
|
-
"
|
349
|
+
"typeArguments": []
|
350
350
|
}
|
351
351
|
}
|
352
352
|
},
|
353
353
|
"U64"
|
354
354
|
],
|
355
|
-
"
|
355
|
+
"return": ["Bool"]
|
356
356
|
},
|
357
357
|
"length": {
|
358
358
|
"visibility": "Public",
|
359
|
-
"
|
360
|
-
"
|
359
|
+
"isEntry": false,
|
360
|
+
"typeParameters": [],
|
361
361
|
"parameters": [
|
362
362
|
{
|
363
363
|
"Reference": {
|
@@ -365,17 +365,17 @@
|
|
365
365
|
"address": "0x1",
|
366
366
|
"module": "bit_vector",
|
367
367
|
"name": "BitVector",
|
368
|
-
"
|
368
|
+
"typeArguments": []
|
369
369
|
}
|
370
370
|
}
|
371
371
|
}
|
372
372
|
],
|
373
|
-
"
|
373
|
+
"return": ["U64"]
|
374
374
|
},
|
375
375
|
"longest_set_sequence_starting_at": {
|
376
376
|
"visibility": "Public",
|
377
|
-
"
|
378
|
-
"
|
377
|
+
"isEntry": false,
|
378
|
+
"typeParameters": [],
|
379
379
|
"parameters": [
|
380
380
|
{
|
381
381
|
"Reference": {
|
@@ -383,34 +383,34 @@
|
|
383
383
|
"address": "0x1",
|
384
384
|
"module": "bit_vector",
|
385
385
|
"name": "BitVector",
|
386
|
-
"
|
386
|
+
"typeArguments": []
|
387
387
|
}
|
388
388
|
}
|
389
389
|
},
|
390
390
|
"U64"
|
391
391
|
],
|
392
|
-
"
|
392
|
+
"return": ["U64"]
|
393
393
|
},
|
394
394
|
"new": {
|
395
395
|
"visibility": "Public",
|
396
|
-
"
|
397
|
-
"
|
396
|
+
"isEntry": false,
|
397
|
+
"typeParameters": [],
|
398
398
|
"parameters": ["U64"],
|
399
|
-
"
|
399
|
+
"return": [
|
400
400
|
{
|
401
401
|
"Struct": {
|
402
402
|
"address": "0x1",
|
403
403
|
"module": "bit_vector",
|
404
404
|
"name": "BitVector",
|
405
|
-
"
|
405
|
+
"typeArguments": []
|
406
406
|
}
|
407
407
|
}
|
408
408
|
]
|
409
409
|
},
|
410
410
|
"set": {
|
411
411
|
"visibility": "Public",
|
412
|
-
"
|
413
|
-
"
|
412
|
+
"isEntry": false,
|
413
|
+
"typeParameters": [],
|
414
414
|
"parameters": [
|
415
415
|
{
|
416
416
|
"MutableReference": {
|
@@ -418,18 +418,18 @@
|
|
418
418
|
"address": "0x1",
|
419
419
|
"module": "bit_vector",
|
420
420
|
"name": "BitVector",
|
421
|
-
"
|
421
|
+
"typeArguments": []
|
422
422
|
}
|
423
423
|
}
|
424
424
|
},
|
425
425
|
"U64"
|
426
426
|
],
|
427
|
-
"
|
427
|
+
"return": []
|
428
428
|
},
|
429
429
|
"shift_left": {
|
430
430
|
"visibility": "Public",
|
431
|
-
"
|
432
|
-
"
|
431
|
+
"isEntry": false,
|
432
|
+
"typeParameters": [],
|
433
433
|
"parameters": [
|
434
434
|
{
|
435
435
|
"MutableReference": {
|
@@ -437,18 +437,18 @@
|
|
437
437
|
"address": "0x1",
|
438
438
|
"module": "bit_vector",
|
439
439
|
"name": "BitVector",
|
440
|
-
"
|
440
|
+
"typeArguments": []
|
441
441
|
}
|
442
442
|
}
|
443
443
|
},
|
444
444
|
"U64"
|
445
445
|
],
|
446
|
-
"
|
446
|
+
"return": []
|
447
447
|
},
|
448
448
|
"unset": {
|
449
449
|
"visibility": "Public",
|
450
|
-
"
|
451
|
-
"
|
450
|
+
"isEntry": false,
|
451
|
+
"typeParameters": [],
|
452
452
|
"parameters": [
|
453
453
|
{
|
454
454
|
"MutableReference": {
|
@@ -456,27 +456,27 @@
|
|
456
456
|
"address": "0x1",
|
457
457
|
"module": "bit_vector",
|
458
458
|
"name": "BitVector",
|
459
|
-
"
|
459
|
+
"typeArguments": []
|
460
460
|
}
|
461
461
|
}
|
462
462
|
},
|
463
463
|
"U64"
|
464
464
|
],
|
465
|
-
"
|
465
|
+
"return": []
|
466
466
|
}
|
467
467
|
}
|
468
468
|
},
|
469
469
|
"debug": {
|
470
|
-
"
|
470
|
+
"fileFormatVersion": 6,
|
471
471
|
"address": "0x1",
|
472
472
|
"name": "debug",
|
473
473
|
"friends": [],
|
474
474
|
"structs": {},
|
475
|
-
"
|
475
|
+
"exposedFunctions": {
|
476
476
|
"print": {
|
477
477
|
"visibility": "Public",
|
478
|
-
"
|
479
|
-
"
|
478
|
+
"isEntry": false,
|
479
|
+
"typeParameters": [
|
480
480
|
{
|
481
481
|
"abilities": []
|
482
482
|
}
|
@@ -488,19 +488,19 @@
|
|
488
488
|
}
|
489
489
|
}
|
490
490
|
],
|
491
|
-
"
|
491
|
+
"return": []
|
492
492
|
},
|
493
493
|
"print_stack_trace": {
|
494
494
|
"visibility": "Public",
|
495
|
-
"
|
496
|
-
"
|
495
|
+
"isEntry": false,
|
496
|
+
"typeParameters": [],
|
497
497
|
"parameters": [],
|
498
|
-
"
|
498
|
+
"return": []
|
499
499
|
}
|
500
500
|
}
|
501
501
|
},
|
502
502
|
"fixed_point32": {
|
503
|
-
"
|
503
|
+
"fileFormatVersion": 6,
|
504
504
|
"address": "0x1",
|
505
505
|
"name": "fixed_point32",
|
506
506
|
"friends": [],
|
@@ -509,52 +509,52 @@
|
|
509
509
|
"abilities": {
|
510
510
|
"abilities": ["Copy", "Drop", "Store"]
|
511
511
|
},
|
512
|
-
"
|
512
|
+
"typeParameters": [],
|
513
513
|
"fields": [
|
514
514
|
{
|
515
515
|
"name": "value",
|
516
|
-
"
|
516
|
+
"type": "U64"
|
517
517
|
}
|
518
518
|
]
|
519
519
|
}
|
520
520
|
},
|
521
|
-
"
|
521
|
+
"exposedFunctions": {
|
522
522
|
"create_from_rational": {
|
523
523
|
"visibility": "Public",
|
524
|
-
"
|
525
|
-
"
|
524
|
+
"isEntry": false,
|
525
|
+
"typeParameters": [],
|
526
526
|
"parameters": ["U64", "U64"],
|
527
|
-
"
|
527
|
+
"return": [
|
528
528
|
{
|
529
529
|
"Struct": {
|
530
530
|
"address": "0x1",
|
531
531
|
"module": "fixed_point32",
|
532
532
|
"name": "FixedPoint32",
|
533
|
-
"
|
533
|
+
"typeArguments": []
|
534
534
|
}
|
535
535
|
}
|
536
536
|
]
|
537
537
|
},
|
538
538
|
"create_from_raw_value": {
|
539
539
|
"visibility": "Public",
|
540
|
-
"
|
541
|
-
"
|
540
|
+
"isEntry": false,
|
541
|
+
"typeParameters": [],
|
542
542
|
"parameters": ["U64"],
|
543
|
-
"
|
543
|
+
"return": [
|
544
544
|
{
|
545
545
|
"Struct": {
|
546
546
|
"address": "0x1",
|
547
547
|
"module": "fixed_point32",
|
548
548
|
"name": "FixedPoint32",
|
549
|
-
"
|
549
|
+
"typeArguments": []
|
550
550
|
}
|
551
551
|
}
|
552
552
|
]
|
553
553
|
},
|
554
554
|
"divide_u64": {
|
555
555
|
"visibility": "Public",
|
556
|
-
"
|
557
|
-
"
|
556
|
+
"isEntry": false,
|
557
|
+
"typeParameters": [],
|
558
558
|
"parameters": [
|
559
559
|
"U64",
|
560
560
|
{
|
@@ -562,48 +562,48 @@
|
|
562
562
|
"address": "0x1",
|
563
563
|
"module": "fixed_point32",
|
564
564
|
"name": "FixedPoint32",
|
565
|
-
"
|
565
|
+
"typeArguments": []
|
566
566
|
}
|
567
567
|
}
|
568
568
|
],
|
569
|
-
"
|
569
|
+
"return": ["U64"]
|
570
570
|
},
|
571
571
|
"get_raw_value": {
|
572
572
|
"visibility": "Public",
|
573
|
-
"
|
574
|
-
"
|
573
|
+
"isEntry": false,
|
574
|
+
"typeParameters": [],
|
575
575
|
"parameters": [
|
576
576
|
{
|
577
577
|
"Struct": {
|
578
578
|
"address": "0x1",
|
579
579
|
"module": "fixed_point32",
|
580
580
|
"name": "FixedPoint32",
|
581
|
-
"
|
581
|
+
"typeArguments": []
|
582
582
|
}
|
583
583
|
}
|
584
584
|
],
|
585
|
-
"
|
585
|
+
"return": ["U64"]
|
586
586
|
},
|
587
587
|
"is_zero": {
|
588
588
|
"visibility": "Public",
|
589
|
-
"
|
590
|
-
"
|
589
|
+
"isEntry": false,
|
590
|
+
"typeParameters": [],
|
591
591
|
"parameters": [
|
592
592
|
{
|
593
593
|
"Struct": {
|
594
594
|
"address": "0x1",
|
595
595
|
"module": "fixed_point32",
|
596
596
|
"name": "FixedPoint32",
|
597
|
-
"
|
597
|
+
"typeArguments": []
|
598
598
|
}
|
599
599
|
}
|
600
600
|
],
|
601
|
-
"
|
601
|
+
"return": ["Bool"]
|
602
602
|
},
|
603
603
|
"multiply_u64": {
|
604
604
|
"visibility": "Public",
|
605
|
-
"
|
606
|
-
"
|
605
|
+
"isEntry": false,
|
606
|
+
"typeParameters": [],
|
607
607
|
"parameters": [
|
608
608
|
"U64",
|
609
609
|
{
|
@@ -611,31 +611,31 @@
|
|
611
611
|
"address": "0x1",
|
612
612
|
"module": "fixed_point32",
|
613
613
|
"name": "FixedPoint32",
|
614
|
-
"
|
614
|
+
"typeArguments": []
|
615
615
|
}
|
616
616
|
}
|
617
617
|
],
|
618
|
-
"
|
618
|
+
"return": ["U64"]
|
619
619
|
}
|
620
620
|
}
|
621
621
|
},
|
622
622
|
"hash": {
|
623
|
-
"
|
623
|
+
"fileFormatVersion": 6,
|
624
624
|
"address": "0x1",
|
625
625
|
"name": "hash",
|
626
626
|
"friends": [],
|
627
627
|
"structs": {},
|
628
|
-
"
|
628
|
+
"exposedFunctions": {
|
629
629
|
"sha2_256": {
|
630
630
|
"visibility": "Public",
|
631
|
-
"
|
632
|
-
"
|
631
|
+
"isEntry": false,
|
632
|
+
"typeParameters": [],
|
633
633
|
"parameters": [
|
634
634
|
{
|
635
635
|
"Vector": "U8"
|
636
636
|
}
|
637
637
|
],
|
638
|
-
"
|
638
|
+
"return": [
|
639
639
|
{
|
640
640
|
"Vector": "U8"
|
641
641
|
}
|
@@ -643,14 +643,14 @@
|
|
643
643
|
},
|
644
644
|
"sha3_256": {
|
645
645
|
"visibility": "Public",
|
646
|
-
"
|
647
|
-
"
|
646
|
+
"isEntry": false,
|
647
|
+
"typeParameters": [],
|
648
648
|
"parameters": [
|
649
649
|
{
|
650
650
|
"Vector": "U8"
|
651
651
|
}
|
652
652
|
],
|
653
|
-
"
|
653
|
+
"return": [
|
654
654
|
{
|
655
655
|
"Vector": "U8"
|
656
656
|
}
|
@@ -659,7 +659,7 @@
|
|
659
659
|
}
|
660
660
|
},
|
661
661
|
"option": {
|
662
|
-
"
|
662
|
+
"fileFormatVersion": 6,
|
663
663
|
"address": "0x1",
|
664
664
|
"name": "option",
|
665
665
|
"friends": [],
|
@@ -668,18 +668,18 @@
|
|
668
668
|
"abilities": {
|
669
669
|
"abilities": ["Copy", "Drop", "Store"]
|
670
670
|
},
|
671
|
-
"
|
671
|
+
"typeParameters": [
|
672
672
|
{
|
673
673
|
"constraints": {
|
674
674
|
"abilities": []
|
675
675
|
},
|
676
|
-
"
|
676
|
+
"isPhantom": false
|
677
677
|
}
|
678
678
|
],
|
679
679
|
"fields": [
|
680
680
|
{
|
681
681
|
"name": "vec",
|
682
|
-
"
|
682
|
+
"type": {
|
683
683
|
"Vector": {
|
684
684
|
"TypeParameter": 0
|
685
685
|
}
|
@@ -688,11 +688,11 @@
|
|
688
688
|
]
|
689
689
|
}
|
690
690
|
},
|
691
|
-
"
|
691
|
+
"exposedFunctions": {
|
692
692
|
"borrow": {
|
693
693
|
"visibility": "Public",
|
694
|
-
"
|
695
|
-
"
|
694
|
+
"isEntry": false,
|
695
|
+
"typeParameters": [
|
696
696
|
{
|
697
697
|
"abilities": []
|
698
698
|
}
|
@@ -704,7 +704,7 @@
|
|
704
704
|
"address": "0x1",
|
705
705
|
"module": "option",
|
706
706
|
"name": "Option",
|
707
|
-
"
|
707
|
+
"typeArguments": [
|
708
708
|
{
|
709
709
|
"TypeParameter": 0
|
710
710
|
}
|
@@ -713,7 +713,7 @@
|
|
713
713
|
}
|
714
714
|
}
|
715
715
|
],
|
716
|
-
"
|
716
|
+
"return": [
|
717
717
|
{
|
718
718
|
"Reference": {
|
719
719
|
"TypeParameter": 0
|
@@ -723,8 +723,8 @@
|
|
723
723
|
},
|
724
724
|
"borrow_mut": {
|
725
725
|
"visibility": "Public",
|
726
|
-
"
|
727
|
-
"
|
726
|
+
"isEntry": false,
|
727
|
+
"typeParameters": [
|
728
728
|
{
|
729
729
|
"abilities": []
|
730
730
|
}
|
@@ -736,7 +736,7 @@
|
|
736
736
|
"address": "0x1",
|
737
737
|
"module": "option",
|
738
738
|
"name": "Option",
|
739
|
-
"
|
739
|
+
"typeArguments": [
|
740
740
|
{
|
741
741
|
"TypeParameter": 0
|
742
742
|
}
|
@@ -745,7 +745,7 @@
|
|
745
745
|
}
|
746
746
|
}
|
747
747
|
],
|
748
|
-
"
|
748
|
+
"return": [
|
749
749
|
{
|
750
750
|
"MutableReference": {
|
751
751
|
"TypeParameter": 0
|
@@ -755,8 +755,8 @@
|
|
755
755
|
},
|
756
756
|
"borrow_with_default": {
|
757
757
|
"visibility": "Public",
|
758
|
-
"
|
759
|
-
"
|
758
|
+
"isEntry": false,
|
759
|
+
"typeParameters": [
|
760
760
|
{
|
761
761
|
"abilities": []
|
762
762
|
}
|
@@ -768,7 +768,7 @@
|
|
768
768
|
"address": "0x1",
|
769
769
|
"module": "option",
|
770
770
|
"name": "Option",
|
771
|
-
"
|
771
|
+
"typeArguments": [
|
772
772
|
{
|
773
773
|
"TypeParameter": 0
|
774
774
|
}
|
@@ -782,7 +782,7 @@
|
|
782
782
|
}
|
783
783
|
}
|
784
784
|
],
|
785
|
-
"
|
785
|
+
"return": [
|
786
786
|
{
|
787
787
|
"Reference": {
|
788
788
|
"TypeParameter": 0
|
@@ -792,8 +792,8 @@
|
|
792
792
|
},
|
793
793
|
"contains": {
|
794
794
|
"visibility": "Public",
|
795
|
-
"
|
796
|
-
"
|
795
|
+
"isEntry": false,
|
796
|
+
"typeParameters": [
|
797
797
|
{
|
798
798
|
"abilities": []
|
799
799
|
}
|
@@ -805,7 +805,7 @@
|
|
805
805
|
"address": "0x1",
|
806
806
|
"module": "option",
|
807
807
|
"name": "Option",
|
808
|
-
"
|
808
|
+
"typeArguments": [
|
809
809
|
{
|
810
810
|
"TypeParameter": 0
|
811
811
|
}
|
@@ -819,12 +819,12 @@
|
|
819
819
|
}
|
820
820
|
}
|
821
821
|
],
|
822
|
-
"
|
822
|
+
"return": ["Bool"]
|
823
823
|
},
|
824
824
|
"destroy_none": {
|
825
825
|
"visibility": "Public",
|
826
|
-
"
|
827
|
-
"
|
826
|
+
"isEntry": false,
|
827
|
+
"typeParameters": [
|
828
828
|
{
|
829
829
|
"abilities": []
|
830
830
|
}
|
@@ -835,7 +835,7 @@
|
|
835
835
|
"address": "0x1",
|
836
836
|
"module": "option",
|
837
837
|
"name": "Option",
|
838
|
-
"
|
838
|
+
"typeArguments": [
|
839
839
|
{
|
840
840
|
"TypeParameter": 0
|
841
841
|
}
|
@@ -843,12 +843,12 @@
|
|
843
843
|
}
|
844
844
|
}
|
845
845
|
],
|
846
|
-
"
|
846
|
+
"return": []
|
847
847
|
},
|
848
848
|
"destroy_some": {
|
849
849
|
"visibility": "Public",
|
850
|
-
"
|
851
|
-
"
|
850
|
+
"isEntry": false,
|
851
|
+
"typeParameters": [
|
852
852
|
{
|
853
853
|
"abilities": []
|
854
854
|
}
|
@@ -859,7 +859,7 @@
|
|
859
859
|
"address": "0x1",
|
860
860
|
"module": "option",
|
861
861
|
"name": "Option",
|
862
|
-
"
|
862
|
+
"typeArguments": [
|
863
863
|
{
|
864
864
|
"TypeParameter": 0
|
865
865
|
}
|
@@ -867,7 +867,7 @@
|
|
867
867
|
}
|
868
868
|
}
|
869
869
|
],
|
870
|
-
"
|
870
|
+
"return": [
|
871
871
|
{
|
872
872
|
"TypeParameter": 0
|
873
873
|
}
|
@@ -875,8 +875,8 @@
|
|
875
875
|
},
|
876
876
|
"destroy_with_default": {
|
877
877
|
"visibility": "Public",
|
878
|
-
"
|
879
|
-
"
|
878
|
+
"isEntry": false,
|
879
|
+
"typeParameters": [
|
880
880
|
{
|
881
881
|
"abilities": ["Drop"]
|
882
882
|
}
|
@@ -887,7 +887,7 @@
|
|
887
887
|
"address": "0x1",
|
888
888
|
"module": "option",
|
889
889
|
"name": "Option",
|
890
|
-
"
|
890
|
+
"typeArguments": [
|
891
891
|
{
|
892
892
|
"TypeParameter": 0
|
893
893
|
}
|
@@ -898,7 +898,7 @@
|
|
898
898
|
"TypeParameter": 0
|
899
899
|
}
|
900
900
|
],
|
901
|
-
"
|
901
|
+
"return": [
|
902
902
|
{
|
903
903
|
"TypeParameter": 0
|
904
904
|
}
|
@@ -906,8 +906,8 @@
|
|
906
906
|
},
|
907
907
|
"extract": {
|
908
908
|
"visibility": "Public",
|
909
|
-
"
|
910
|
-
"
|
909
|
+
"isEntry": false,
|
910
|
+
"typeParameters": [
|
911
911
|
{
|
912
912
|
"abilities": []
|
913
913
|
}
|
@@ -919,7 +919,7 @@
|
|
919
919
|
"address": "0x1",
|
920
920
|
"module": "option",
|
921
921
|
"name": "Option",
|
922
|
-
"
|
922
|
+
"typeArguments": [
|
923
923
|
{
|
924
924
|
"TypeParameter": 0
|
925
925
|
}
|
@@ -928,7 +928,7 @@
|
|
928
928
|
}
|
929
929
|
}
|
930
930
|
],
|
931
|
-
"
|
931
|
+
"return": [
|
932
932
|
{
|
933
933
|
"TypeParameter": 0
|
934
934
|
}
|
@@ -936,8 +936,8 @@
|
|
936
936
|
},
|
937
937
|
"fill": {
|
938
938
|
"visibility": "Public",
|
939
|
-
"
|
940
|
-
"
|
939
|
+
"isEntry": false,
|
940
|
+
"typeParameters": [
|
941
941
|
{
|
942
942
|
"abilities": []
|
943
943
|
}
|
@@ -949,7 +949,7 @@
|
|
949
949
|
"address": "0x1",
|
950
950
|
"module": "option",
|
951
951
|
"name": "Option",
|
952
|
-
"
|
952
|
+
"typeArguments": [
|
953
953
|
{
|
954
954
|
"TypeParameter": 0
|
955
955
|
}
|
@@ -961,12 +961,12 @@
|
|
961
961
|
"TypeParameter": 0
|
962
962
|
}
|
963
963
|
],
|
964
|
-
"
|
964
|
+
"return": []
|
965
965
|
},
|
966
966
|
"get_with_default": {
|
967
967
|
"visibility": "Public",
|
968
|
-
"
|
969
|
-
"
|
968
|
+
"isEntry": false,
|
969
|
+
"typeParameters": [
|
970
970
|
{
|
971
971
|
"abilities": ["Copy", "Drop"]
|
972
972
|
}
|
@@ -978,7 +978,7 @@
|
|
978
978
|
"address": "0x1",
|
979
979
|
"module": "option",
|
980
980
|
"name": "Option",
|
981
|
-
"
|
981
|
+
"typeArguments": [
|
982
982
|
{
|
983
983
|
"TypeParameter": 0
|
984
984
|
}
|
@@ -990,7 +990,7 @@
|
|
990
990
|
"TypeParameter": 0
|
991
991
|
}
|
992
992
|
],
|
993
|
-
"
|
993
|
+
"return": [
|
994
994
|
{
|
995
995
|
"TypeParameter": 0
|
996
996
|
}
|
@@ -998,8 +998,8 @@
|
|
998
998
|
},
|
999
999
|
"is_none": {
|
1000
1000
|
"visibility": "Public",
|
1001
|
-
"
|
1002
|
-
"
|
1001
|
+
"isEntry": false,
|
1002
|
+
"typeParameters": [
|
1003
1003
|
{
|
1004
1004
|
"abilities": []
|
1005
1005
|
}
|
@@ -1011,7 +1011,7 @@
|
|
1011
1011
|
"address": "0x1",
|
1012
1012
|
"module": "option",
|
1013
1013
|
"name": "Option",
|
1014
|
-
"
|
1014
|
+
"typeArguments": [
|
1015
1015
|
{
|
1016
1016
|
"TypeParameter": 0
|
1017
1017
|
}
|
@@ -1020,12 +1020,12 @@
|
|
1020
1020
|
}
|
1021
1021
|
}
|
1022
1022
|
],
|
1023
|
-
"
|
1023
|
+
"return": ["Bool"]
|
1024
1024
|
},
|
1025
1025
|
"is_some": {
|
1026
1026
|
"visibility": "Public",
|
1027
|
-
"
|
1028
|
-
"
|
1027
|
+
"isEntry": false,
|
1028
|
+
"typeParameters": [
|
1029
1029
|
{
|
1030
1030
|
"abilities": []
|
1031
1031
|
}
|
@@ -1037,7 +1037,7 @@
|
|
1037
1037
|
"address": "0x1",
|
1038
1038
|
"module": "option",
|
1039
1039
|
"name": "Option",
|
1040
|
-
"
|
1040
|
+
"typeArguments": [
|
1041
1041
|
{
|
1042
1042
|
"TypeParameter": 0
|
1043
1043
|
}
|
@@ -1046,24 +1046,24 @@
|
|
1046
1046
|
}
|
1047
1047
|
}
|
1048
1048
|
],
|
1049
|
-
"
|
1049
|
+
"return": ["Bool"]
|
1050
1050
|
},
|
1051
1051
|
"none": {
|
1052
1052
|
"visibility": "Public",
|
1053
|
-
"
|
1054
|
-
"
|
1053
|
+
"isEntry": false,
|
1054
|
+
"typeParameters": [
|
1055
1055
|
{
|
1056
1056
|
"abilities": []
|
1057
1057
|
}
|
1058
1058
|
],
|
1059
1059
|
"parameters": [],
|
1060
|
-
"
|
1060
|
+
"return": [
|
1061
1061
|
{
|
1062
1062
|
"Struct": {
|
1063
1063
|
"address": "0x1",
|
1064
1064
|
"module": "option",
|
1065
1065
|
"name": "Option",
|
1066
|
-
"
|
1066
|
+
"typeArguments": [
|
1067
1067
|
{
|
1068
1068
|
"TypeParameter": 0
|
1069
1069
|
}
|
@@ -1074,8 +1074,8 @@
|
|
1074
1074
|
},
|
1075
1075
|
"some": {
|
1076
1076
|
"visibility": "Public",
|
1077
|
-
"
|
1078
|
-
"
|
1077
|
+
"isEntry": false,
|
1078
|
+
"typeParameters": [
|
1079
1079
|
{
|
1080
1080
|
"abilities": []
|
1081
1081
|
}
|
@@ -1085,13 +1085,13 @@
|
|
1085
1085
|
"TypeParameter": 0
|
1086
1086
|
}
|
1087
1087
|
],
|
1088
|
-
"
|
1088
|
+
"return": [
|
1089
1089
|
{
|
1090
1090
|
"Struct": {
|
1091
1091
|
"address": "0x1",
|
1092
1092
|
"module": "option",
|
1093
1093
|
"name": "Option",
|
1094
|
-
"
|
1094
|
+
"typeArguments": [
|
1095
1095
|
{
|
1096
1096
|
"TypeParameter": 0
|
1097
1097
|
}
|
@@ -1102,8 +1102,8 @@
|
|
1102
1102
|
},
|
1103
1103
|
"swap": {
|
1104
1104
|
"visibility": "Public",
|
1105
|
-
"
|
1106
|
-
"
|
1105
|
+
"isEntry": false,
|
1106
|
+
"typeParameters": [
|
1107
1107
|
{
|
1108
1108
|
"abilities": []
|
1109
1109
|
}
|
@@ -1115,7 +1115,7 @@
|
|
1115
1115
|
"address": "0x1",
|
1116
1116
|
"module": "option",
|
1117
1117
|
"name": "Option",
|
1118
|
-
"
|
1118
|
+
"typeArguments": [
|
1119
1119
|
{
|
1120
1120
|
"TypeParameter": 0
|
1121
1121
|
}
|
@@ -1127,7 +1127,7 @@
|
|
1127
1127
|
"TypeParameter": 0
|
1128
1128
|
}
|
1129
1129
|
],
|
1130
|
-
"
|
1130
|
+
"return": [
|
1131
1131
|
{
|
1132
1132
|
"TypeParameter": 0
|
1133
1133
|
}
|
@@ -1135,8 +1135,8 @@
|
|
1135
1135
|
},
|
1136
1136
|
"swap_or_fill": {
|
1137
1137
|
"visibility": "Public",
|
1138
|
-
"
|
1139
|
-
"
|
1138
|
+
"isEntry": false,
|
1139
|
+
"typeParameters": [
|
1140
1140
|
{
|
1141
1141
|
"abilities": []
|
1142
1142
|
}
|
@@ -1148,7 +1148,7 @@
|
|
1148
1148
|
"address": "0x1",
|
1149
1149
|
"module": "option",
|
1150
1150
|
"name": "Option",
|
1151
|
-
"
|
1151
|
+
"typeArguments": [
|
1152
1152
|
{
|
1153
1153
|
"TypeParameter": 0
|
1154
1154
|
}
|
@@ -1160,13 +1160,13 @@
|
|
1160
1160
|
"TypeParameter": 0
|
1161
1161
|
}
|
1162
1162
|
],
|
1163
|
-
"
|
1163
|
+
"return": [
|
1164
1164
|
{
|
1165
1165
|
"Struct": {
|
1166
1166
|
"address": "0x1",
|
1167
1167
|
"module": "option",
|
1168
1168
|
"name": "Option",
|
1169
|
-
"
|
1169
|
+
"typeArguments": [
|
1170
1170
|
{
|
1171
1171
|
"TypeParameter": 0
|
1172
1172
|
}
|
@@ -1177,8 +1177,8 @@
|
|
1177
1177
|
},
|
1178
1178
|
"to_vec": {
|
1179
1179
|
"visibility": "Public",
|
1180
|
-
"
|
1181
|
-
"
|
1180
|
+
"isEntry": false,
|
1181
|
+
"typeParameters": [
|
1182
1182
|
{
|
1183
1183
|
"abilities": []
|
1184
1184
|
}
|
@@ -1189,7 +1189,7 @@
|
|
1189
1189
|
"address": "0x1",
|
1190
1190
|
"module": "option",
|
1191
1191
|
"name": "Option",
|
1192
|
-
"
|
1192
|
+
"typeArguments": [
|
1193
1193
|
{
|
1194
1194
|
"TypeParameter": 0
|
1195
1195
|
}
|
@@ -1197,7 +1197,7 @@
|
|
1197
1197
|
}
|
1198
1198
|
}
|
1199
1199
|
],
|
1200
|
-
"
|
1200
|
+
"return": [
|
1201
1201
|
{
|
1202
1202
|
"Vector": {
|
1203
1203
|
"TypeParameter": 0
|
@@ -1208,7 +1208,7 @@
|
|
1208
1208
|
}
|
1209
1209
|
},
|
1210
1210
|
"string": {
|
1211
|
-
"
|
1211
|
+
"fileFormatVersion": 6,
|
1212
1212
|
"address": "0x1",
|
1213
1213
|
"name": "string",
|
1214
1214
|
"friends": [],
|
@@ -1217,22 +1217,22 @@
|
|
1217
1217
|
"abilities": {
|
1218
1218
|
"abilities": ["Copy", "Drop", "Store"]
|
1219
1219
|
},
|
1220
|
-
"
|
1220
|
+
"typeParameters": [],
|
1221
1221
|
"fields": [
|
1222
1222
|
{
|
1223
1223
|
"name": "bytes",
|
1224
|
-
"
|
1224
|
+
"type": {
|
1225
1225
|
"Vector": "U8"
|
1226
1226
|
}
|
1227
1227
|
}
|
1228
1228
|
]
|
1229
1229
|
}
|
1230
1230
|
},
|
1231
|
-
"
|
1231
|
+
"exposedFunctions": {
|
1232
1232
|
"append": {
|
1233
1233
|
"visibility": "Public",
|
1234
|
-
"
|
1235
|
-
"
|
1234
|
+
"isEntry": false,
|
1235
|
+
"typeParameters": [],
|
1236
1236
|
"parameters": [
|
1237
1237
|
{
|
1238
1238
|
"MutableReference": {
|
@@ -1240,7 +1240,7 @@
|
|
1240
1240
|
"address": "0x1",
|
1241
1241
|
"module": "string",
|
1242
1242
|
"name": "String",
|
1243
|
-
"
|
1243
|
+
"typeArguments": []
|
1244
1244
|
}
|
1245
1245
|
}
|
1246
1246
|
},
|
@@ -1249,16 +1249,16 @@
|
|
1249
1249
|
"address": "0x1",
|
1250
1250
|
"module": "string",
|
1251
1251
|
"name": "String",
|
1252
|
-
"
|
1252
|
+
"typeArguments": []
|
1253
1253
|
}
|
1254
1254
|
}
|
1255
1255
|
],
|
1256
|
-
"
|
1256
|
+
"return": []
|
1257
1257
|
},
|
1258
1258
|
"append_utf8": {
|
1259
1259
|
"visibility": "Public",
|
1260
|
-
"
|
1261
|
-
"
|
1260
|
+
"isEntry": false,
|
1261
|
+
"typeParameters": [],
|
1262
1262
|
"parameters": [
|
1263
1263
|
{
|
1264
1264
|
"MutableReference": {
|
@@ -1266,7 +1266,7 @@
|
|
1266
1266
|
"address": "0x1",
|
1267
1267
|
"module": "string",
|
1268
1268
|
"name": "String",
|
1269
|
-
"
|
1269
|
+
"typeArguments": []
|
1270
1270
|
}
|
1271
1271
|
}
|
1272
1272
|
},
|
@@ -1274,12 +1274,12 @@
|
|
1274
1274
|
"Vector": "U8"
|
1275
1275
|
}
|
1276
1276
|
],
|
1277
|
-
"
|
1277
|
+
"return": []
|
1278
1278
|
},
|
1279
1279
|
"bytes": {
|
1280
1280
|
"visibility": "Public",
|
1281
|
-
"
|
1282
|
-
"
|
1281
|
+
"isEntry": false,
|
1282
|
+
"typeParameters": [],
|
1283
1283
|
"parameters": [
|
1284
1284
|
{
|
1285
1285
|
"Reference": {
|
@@ -1287,12 +1287,12 @@
|
|
1287
1287
|
"address": "0x1",
|
1288
1288
|
"module": "string",
|
1289
1289
|
"name": "String",
|
1290
|
-
"
|
1290
|
+
"typeArguments": []
|
1291
1291
|
}
|
1292
1292
|
}
|
1293
1293
|
}
|
1294
1294
|
],
|
1295
|
-
"
|
1295
|
+
"return": [
|
1296
1296
|
{
|
1297
1297
|
"Reference": {
|
1298
1298
|
"Vector": "U8"
|
@@ -1302,33 +1302,33 @@
|
|
1302
1302
|
},
|
1303
1303
|
"from_ascii": {
|
1304
1304
|
"visibility": "Public",
|
1305
|
-
"
|
1306
|
-
"
|
1305
|
+
"isEntry": false,
|
1306
|
+
"typeParameters": [],
|
1307
1307
|
"parameters": [
|
1308
1308
|
{
|
1309
1309
|
"Struct": {
|
1310
1310
|
"address": "0x1",
|
1311
1311
|
"module": "ascii",
|
1312
1312
|
"name": "String",
|
1313
|
-
"
|
1313
|
+
"typeArguments": []
|
1314
1314
|
}
|
1315
1315
|
}
|
1316
1316
|
],
|
1317
|
-
"
|
1317
|
+
"return": [
|
1318
1318
|
{
|
1319
1319
|
"Struct": {
|
1320
1320
|
"address": "0x1",
|
1321
1321
|
"module": "string",
|
1322
1322
|
"name": "String",
|
1323
|
-
"
|
1323
|
+
"typeArguments": []
|
1324
1324
|
}
|
1325
1325
|
}
|
1326
1326
|
]
|
1327
1327
|
},
|
1328
1328
|
"index_of": {
|
1329
1329
|
"visibility": "Public",
|
1330
|
-
"
|
1331
|
-
"
|
1330
|
+
"isEntry": false,
|
1331
|
+
"typeParameters": [],
|
1332
1332
|
"parameters": [
|
1333
1333
|
{
|
1334
1334
|
"Reference": {
|
@@ -1336,7 +1336,7 @@
|
|
1336
1336
|
"address": "0x1",
|
1337
1337
|
"module": "string",
|
1338
1338
|
"name": "String",
|
1339
|
-
"
|
1339
|
+
"typeArguments": []
|
1340
1340
|
}
|
1341
1341
|
}
|
1342
1342
|
},
|
@@ -1346,17 +1346,17 @@
|
|
1346
1346
|
"address": "0x1",
|
1347
1347
|
"module": "string",
|
1348
1348
|
"name": "String",
|
1349
|
-
"
|
1349
|
+
"typeArguments": []
|
1350
1350
|
}
|
1351
1351
|
}
|
1352
1352
|
}
|
1353
1353
|
],
|
1354
|
-
"
|
1354
|
+
"return": ["U64"]
|
1355
1355
|
},
|
1356
1356
|
"insert": {
|
1357
1357
|
"visibility": "Public",
|
1358
|
-
"
|
1359
|
-
"
|
1358
|
+
"isEntry": false,
|
1359
|
+
"typeParameters": [],
|
1360
1360
|
"parameters": [
|
1361
1361
|
{
|
1362
1362
|
"MutableReference": {
|
@@ -1364,7 +1364,7 @@
|
|
1364
1364
|
"address": "0x1",
|
1365
1365
|
"module": "string",
|
1366
1366
|
"name": "String",
|
1367
|
-
"
|
1367
|
+
"typeArguments": []
|
1368
1368
|
}
|
1369
1369
|
}
|
1370
1370
|
},
|
@@ -1374,16 +1374,16 @@
|
|
1374
1374
|
"address": "0x1",
|
1375
1375
|
"module": "string",
|
1376
1376
|
"name": "String",
|
1377
|
-
"
|
1377
|
+
"typeArguments": []
|
1378
1378
|
}
|
1379
1379
|
}
|
1380
1380
|
],
|
1381
|
-
"
|
1381
|
+
"return": []
|
1382
1382
|
},
|
1383
1383
|
"is_empty": {
|
1384
1384
|
"visibility": "Public",
|
1385
|
-
"
|
1386
|
-
"
|
1385
|
+
"isEntry": false,
|
1386
|
+
"typeParameters": [],
|
1387
1387
|
"parameters": [
|
1388
1388
|
{
|
1389
1389
|
"Reference": {
|
@@ -1391,17 +1391,17 @@
|
|
1391
1391
|
"address": "0x1",
|
1392
1392
|
"module": "string",
|
1393
1393
|
"name": "String",
|
1394
|
-
"
|
1394
|
+
"typeArguments": []
|
1395
1395
|
}
|
1396
1396
|
}
|
1397
1397
|
}
|
1398
1398
|
],
|
1399
|
-
"
|
1399
|
+
"return": ["Bool"]
|
1400
1400
|
},
|
1401
1401
|
"length": {
|
1402
1402
|
"visibility": "Public",
|
1403
|
-
"
|
1404
|
-
"
|
1403
|
+
"isEntry": false,
|
1404
|
+
"typeParameters": [],
|
1405
1405
|
"parameters": [
|
1406
1406
|
{
|
1407
1407
|
"Reference": {
|
@@ -1409,17 +1409,17 @@
|
|
1409
1409
|
"address": "0x1",
|
1410
1410
|
"module": "string",
|
1411
1411
|
"name": "String",
|
1412
|
-
"
|
1412
|
+
"typeArguments": []
|
1413
1413
|
}
|
1414
1414
|
}
|
1415
1415
|
}
|
1416
1416
|
],
|
1417
|
-
"
|
1417
|
+
"return": ["U64"]
|
1418
1418
|
},
|
1419
1419
|
"sub_string": {
|
1420
1420
|
"visibility": "Public",
|
1421
|
-
"
|
1422
|
-
"
|
1421
|
+
"isEntry": false,
|
1422
|
+
"typeParameters": [],
|
1423
1423
|
"parameters": [
|
1424
1424
|
{
|
1425
1425
|
"Reference": {
|
@@ -1427,71 +1427,71 @@
|
|
1427
1427
|
"address": "0x1",
|
1428
1428
|
"module": "string",
|
1429
1429
|
"name": "String",
|
1430
|
-
"
|
1430
|
+
"typeArguments": []
|
1431
1431
|
}
|
1432
1432
|
}
|
1433
1433
|
},
|
1434
1434
|
"U64",
|
1435
1435
|
"U64"
|
1436
1436
|
],
|
1437
|
-
"
|
1437
|
+
"return": [
|
1438
1438
|
{
|
1439
1439
|
"Struct": {
|
1440
1440
|
"address": "0x1",
|
1441
1441
|
"module": "string",
|
1442
1442
|
"name": "String",
|
1443
|
-
"
|
1443
|
+
"typeArguments": []
|
1444
1444
|
}
|
1445
1445
|
}
|
1446
1446
|
]
|
1447
1447
|
},
|
1448
1448
|
"to_ascii": {
|
1449
1449
|
"visibility": "Public",
|
1450
|
-
"
|
1451
|
-
"
|
1450
|
+
"isEntry": false,
|
1451
|
+
"typeParameters": [],
|
1452
1452
|
"parameters": [
|
1453
1453
|
{
|
1454
1454
|
"Struct": {
|
1455
1455
|
"address": "0x1",
|
1456
1456
|
"module": "string",
|
1457
1457
|
"name": "String",
|
1458
|
-
"
|
1458
|
+
"typeArguments": []
|
1459
1459
|
}
|
1460
1460
|
}
|
1461
1461
|
],
|
1462
|
-
"
|
1462
|
+
"return": [
|
1463
1463
|
{
|
1464
1464
|
"Struct": {
|
1465
1465
|
"address": "0x1",
|
1466
1466
|
"module": "ascii",
|
1467
1467
|
"name": "String",
|
1468
|
-
"
|
1468
|
+
"typeArguments": []
|
1469
1469
|
}
|
1470
1470
|
}
|
1471
1471
|
]
|
1472
1472
|
},
|
1473
1473
|
"try_utf8": {
|
1474
1474
|
"visibility": "Public",
|
1475
|
-
"
|
1476
|
-
"
|
1475
|
+
"isEntry": false,
|
1476
|
+
"typeParameters": [],
|
1477
1477
|
"parameters": [
|
1478
1478
|
{
|
1479
1479
|
"Vector": "U8"
|
1480
1480
|
}
|
1481
1481
|
],
|
1482
|
-
"
|
1482
|
+
"return": [
|
1483
1483
|
{
|
1484
1484
|
"Struct": {
|
1485
1485
|
"address": "0x1",
|
1486
1486
|
"module": "option",
|
1487
1487
|
"name": "Option",
|
1488
|
-
"
|
1488
|
+
"typeArguments": [
|
1489
1489
|
{
|
1490
1490
|
"Struct": {
|
1491
1491
|
"address": "0x1",
|
1492
1492
|
"module": "string",
|
1493
1493
|
"name": "String",
|
1494
|
-
"
|
1494
|
+
"typeArguments": []
|
1495
1495
|
}
|
1496
1496
|
}
|
1497
1497
|
]
|
@@ -1501,20 +1501,20 @@
|
|
1501
1501
|
},
|
1502
1502
|
"utf8": {
|
1503
1503
|
"visibility": "Public",
|
1504
|
-
"
|
1505
|
-
"
|
1504
|
+
"isEntry": false,
|
1505
|
+
"typeParameters": [],
|
1506
1506
|
"parameters": [
|
1507
1507
|
{
|
1508
1508
|
"Vector": "U8"
|
1509
1509
|
}
|
1510
1510
|
],
|
1511
|
-
"
|
1511
|
+
"return": [
|
1512
1512
|
{
|
1513
1513
|
"Struct": {
|
1514
1514
|
"address": "0x1",
|
1515
1515
|
"module": "string",
|
1516
1516
|
"name": "String",
|
1517
|
-
"
|
1517
|
+
"typeArguments": []
|
1518
1518
|
}
|
1519
1519
|
}
|
1520
1520
|
]
|
@@ -1522,7 +1522,7 @@
|
|
1522
1522
|
}
|
1523
1523
|
},
|
1524
1524
|
"type_name": {
|
1525
|
-
"
|
1525
|
+
"fileFormatVersion": 6,
|
1526
1526
|
"address": "0x1",
|
1527
1527
|
"name": "type_name",
|
1528
1528
|
"friends": [],
|
@@ -1531,27 +1531,27 @@
|
|
1531
1531
|
"abilities": {
|
1532
1532
|
"abilities": ["Copy", "Drop", "Store"]
|
1533
1533
|
},
|
1534
|
-
"
|
1534
|
+
"typeParameters": [],
|
1535
1535
|
"fields": [
|
1536
1536
|
{
|
1537
1537
|
"name": "name",
|
1538
|
-
"
|
1538
|
+
"type": {
|
1539
1539
|
"Struct": {
|
1540
1540
|
"address": "0x1",
|
1541
1541
|
"module": "ascii",
|
1542
1542
|
"name": "String",
|
1543
|
-
"
|
1543
|
+
"typeArguments": []
|
1544
1544
|
}
|
1545
1545
|
}
|
1546
1546
|
}
|
1547
1547
|
]
|
1548
1548
|
}
|
1549
1549
|
},
|
1550
|
-
"
|
1550
|
+
"exposedFunctions": {
|
1551
1551
|
"borrow_string": {
|
1552
1552
|
"visibility": "Public",
|
1553
|
-
"
|
1554
|
-
"
|
1553
|
+
"isEntry": false,
|
1554
|
+
"typeParameters": [],
|
1555
1555
|
"parameters": [
|
1556
1556
|
{
|
1557
1557
|
"Reference": {
|
@@ -1559,19 +1559,19 @@
|
|
1559
1559
|
"address": "0x1",
|
1560
1560
|
"module": "type_name",
|
1561
1561
|
"name": "TypeName",
|
1562
|
-
"
|
1562
|
+
"typeArguments": []
|
1563
1563
|
}
|
1564
1564
|
}
|
1565
1565
|
}
|
1566
1566
|
],
|
1567
|
-
"
|
1567
|
+
"return": [
|
1568
1568
|
{
|
1569
1569
|
"Reference": {
|
1570
1570
|
"Struct": {
|
1571
1571
|
"address": "0x1",
|
1572
1572
|
"module": "ascii",
|
1573
1573
|
"name": "String",
|
1574
|
-
"
|
1574
|
+
"typeArguments": []
|
1575
1575
|
}
|
1576
1576
|
}
|
1577
1577
|
}
|
@@ -1579,28 +1579,28 @@
|
|
1579
1579
|
},
|
1580
1580
|
"get": {
|
1581
1581
|
"visibility": "Public",
|
1582
|
-
"
|
1583
|
-
"
|
1582
|
+
"isEntry": false,
|
1583
|
+
"typeParameters": [
|
1584
1584
|
{
|
1585
1585
|
"abilities": []
|
1586
1586
|
}
|
1587
1587
|
],
|
1588
1588
|
"parameters": [],
|
1589
|
-
"
|
1589
|
+
"return": [
|
1590
1590
|
{
|
1591
1591
|
"Struct": {
|
1592
1592
|
"address": "0x1",
|
1593
1593
|
"module": "type_name",
|
1594
1594
|
"name": "TypeName",
|
1595
|
-
"
|
1595
|
+
"typeArguments": []
|
1596
1596
|
}
|
1597
1597
|
}
|
1598
1598
|
]
|
1599
1599
|
},
|
1600
1600
|
"get_address": {
|
1601
1601
|
"visibility": "Public",
|
1602
|
-
"
|
1603
|
-
"
|
1602
|
+
"isEntry": false,
|
1603
|
+
"typeParameters": [],
|
1604
1604
|
"parameters": [
|
1605
1605
|
{
|
1606
1606
|
"Reference": {
|
@@ -1608,26 +1608,26 @@
|
|
1608
1608
|
"address": "0x1",
|
1609
1609
|
"module": "type_name",
|
1610
1610
|
"name": "TypeName",
|
1611
|
-
"
|
1611
|
+
"typeArguments": []
|
1612
1612
|
}
|
1613
1613
|
}
|
1614
1614
|
}
|
1615
1615
|
],
|
1616
|
-
"
|
1616
|
+
"return": [
|
1617
1617
|
{
|
1618
1618
|
"Struct": {
|
1619
1619
|
"address": "0x1",
|
1620
1620
|
"module": "ascii",
|
1621
1621
|
"name": "String",
|
1622
|
-
"
|
1622
|
+
"typeArguments": []
|
1623
1623
|
}
|
1624
1624
|
}
|
1625
1625
|
]
|
1626
1626
|
},
|
1627
1627
|
"get_module": {
|
1628
1628
|
"visibility": "Public",
|
1629
|
-
"
|
1630
|
-
"
|
1629
|
+
"isEntry": false,
|
1630
|
+
"typeParameters": [],
|
1631
1631
|
"parameters": [
|
1632
1632
|
{
|
1633
1633
|
"Reference": {
|
@@ -1635,43 +1635,43 @@
|
|
1635
1635
|
"address": "0x1",
|
1636
1636
|
"module": "type_name",
|
1637
1637
|
"name": "TypeName",
|
1638
|
-
"
|
1638
|
+
"typeArguments": []
|
1639
1639
|
}
|
1640
1640
|
}
|
1641
1641
|
}
|
1642
1642
|
],
|
1643
|
-
"
|
1643
|
+
"return": [
|
1644
1644
|
{
|
1645
1645
|
"Struct": {
|
1646
1646
|
"address": "0x1",
|
1647
1647
|
"module": "ascii",
|
1648
1648
|
"name": "String",
|
1649
|
-
"
|
1649
|
+
"typeArguments": []
|
1650
1650
|
}
|
1651
1651
|
}
|
1652
1652
|
]
|
1653
1653
|
},
|
1654
1654
|
"into_string": {
|
1655
1655
|
"visibility": "Public",
|
1656
|
-
"
|
1657
|
-
"
|
1656
|
+
"isEntry": false,
|
1657
|
+
"typeParameters": [],
|
1658
1658
|
"parameters": [
|
1659
1659
|
{
|
1660
1660
|
"Struct": {
|
1661
1661
|
"address": "0x1",
|
1662
1662
|
"module": "type_name",
|
1663
1663
|
"name": "TypeName",
|
1664
|
-
"
|
1664
|
+
"typeArguments": []
|
1665
1665
|
}
|
1666
1666
|
}
|
1667
1667
|
],
|
1668
|
-
"
|
1668
|
+
"return": [
|
1669
1669
|
{
|
1670
1670
|
"Struct": {
|
1671
1671
|
"address": "0x1",
|
1672
1672
|
"module": "ascii",
|
1673
1673
|
"name": "String",
|
1674
|
-
"
|
1674
|
+
"typeArguments": []
|
1675
1675
|
}
|
1676
1676
|
}
|
1677
1677
|
]
|
@@ -1679,16 +1679,16 @@
|
|
1679
1679
|
}
|
1680
1680
|
},
|
1681
1681
|
"vector": {
|
1682
|
-
"
|
1682
|
+
"fileFormatVersion": 6,
|
1683
1683
|
"address": "0x1",
|
1684
1684
|
"name": "vector",
|
1685
1685
|
"friends": [],
|
1686
1686
|
"structs": {},
|
1687
|
-
"
|
1687
|
+
"exposedFunctions": {
|
1688
1688
|
"append": {
|
1689
1689
|
"visibility": "Public",
|
1690
|
-
"
|
1691
|
-
"
|
1690
|
+
"isEntry": false,
|
1691
|
+
"typeParameters": [
|
1692
1692
|
{
|
1693
1693
|
"abilities": []
|
1694
1694
|
}
|
@@ -1707,12 +1707,12 @@
|
|
1707
1707
|
}
|
1708
1708
|
}
|
1709
1709
|
],
|
1710
|
-
"
|
1710
|
+
"return": []
|
1711
1711
|
},
|
1712
1712
|
"borrow": {
|
1713
1713
|
"visibility": "Public",
|
1714
|
-
"
|
1715
|
-
"
|
1714
|
+
"isEntry": false,
|
1715
|
+
"typeParameters": [
|
1716
1716
|
{
|
1717
1717
|
"abilities": []
|
1718
1718
|
}
|
@@ -1727,7 +1727,7 @@
|
|
1727
1727
|
},
|
1728
1728
|
"U64"
|
1729
1729
|
],
|
1730
|
-
"
|
1730
|
+
"return": [
|
1731
1731
|
{
|
1732
1732
|
"Reference": {
|
1733
1733
|
"TypeParameter": 0
|
@@ -1737,8 +1737,8 @@
|
|
1737
1737
|
},
|
1738
1738
|
"borrow_mut": {
|
1739
1739
|
"visibility": "Public",
|
1740
|
-
"
|
1741
|
-
"
|
1740
|
+
"isEntry": false,
|
1741
|
+
"typeParameters": [
|
1742
1742
|
{
|
1743
1743
|
"abilities": []
|
1744
1744
|
}
|
@@ -1753,7 +1753,7 @@
|
|
1753
1753
|
},
|
1754
1754
|
"U64"
|
1755
1755
|
],
|
1756
|
-
"
|
1756
|
+
"return": [
|
1757
1757
|
{
|
1758
1758
|
"MutableReference": {
|
1759
1759
|
"TypeParameter": 0
|
@@ -1763,8 +1763,8 @@
|
|
1763
1763
|
},
|
1764
1764
|
"contains": {
|
1765
1765
|
"visibility": "Public",
|
1766
|
-
"
|
1767
|
-
"
|
1766
|
+
"isEntry": false,
|
1767
|
+
"typeParameters": [
|
1768
1768
|
{
|
1769
1769
|
"abilities": []
|
1770
1770
|
}
|
@@ -1783,12 +1783,12 @@
|
|
1783
1783
|
}
|
1784
1784
|
}
|
1785
1785
|
],
|
1786
|
-
"
|
1786
|
+
"return": ["Bool"]
|
1787
1787
|
},
|
1788
1788
|
"destroy_empty": {
|
1789
1789
|
"visibility": "Public",
|
1790
|
-
"
|
1791
|
-
"
|
1790
|
+
"isEntry": false,
|
1791
|
+
"typeParameters": [
|
1792
1792
|
{
|
1793
1793
|
"abilities": []
|
1794
1794
|
}
|
@@ -1800,18 +1800,18 @@
|
|
1800
1800
|
}
|
1801
1801
|
}
|
1802
1802
|
],
|
1803
|
-
"
|
1803
|
+
"return": []
|
1804
1804
|
},
|
1805
1805
|
"empty": {
|
1806
1806
|
"visibility": "Public",
|
1807
|
-
"
|
1808
|
-
"
|
1807
|
+
"isEntry": false,
|
1808
|
+
"typeParameters": [
|
1809
1809
|
{
|
1810
1810
|
"abilities": []
|
1811
1811
|
}
|
1812
1812
|
],
|
1813
1813
|
"parameters": [],
|
1814
|
-
"
|
1814
|
+
"return": [
|
1815
1815
|
{
|
1816
1816
|
"Vector": {
|
1817
1817
|
"TypeParameter": 0
|
@@ -1821,8 +1821,8 @@
|
|
1821
1821
|
},
|
1822
1822
|
"index_of": {
|
1823
1823
|
"visibility": "Public",
|
1824
|
-
"
|
1825
|
-
"
|
1824
|
+
"isEntry": false,
|
1825
|
+
"typeParameters": [
|
1826
1826
|
{
|
1827
1827
|
"abilities": []
|
1828
1828
|
}
|
@@ -1841,12 +1841,12 @@
|
|
1841
1841
|
}
|
1842
1842
|
}
|
1843
1843
|
],
|
1844
|
-
"
|
1844
|
+
"return": ["Bool", "U64"]
|
1845
1845
|
},
|
1846
1846
|
"insert": {
|
1847
1847
|
"visibility": "Public",
|
1848
|
-
"
|
1849
|
-
"
|
1848
|
+
"isEntry": false,
|
1849
|
+
"typeParameters": [
|
1850
1850
|
{
|
1851
1851
|
"abilities": []
|
1852
1852
|
}
|
@@ -1864,12 +1864,12 @@
|
|
1864
1864
|
},
|
1865
1865
|
"U64"
|
1866
1866
|
],
|
1867
|
-
"
|
1867
|
+
"return": []
|
1868
1868
|
},
|
1869
1869
|
"is_empty": {
|
1870
1870
|
"visibility": "Public",
|
1871
|
-
"
|
1872
|
-
"
|
1871
|
+
"isEntry": false,
|
1872
|
+
"typeParameters": [
|
1873
1873
|
{
|
1874
1874
|
"abilities": []
|
1875
1875
|
}
|
@@ -1883,12 +1883,12 @@
|
|
1883
1883
|
}
|
1884
1884
|
}
|
1885
1885
|
],
|
1886
|
-
"
|
1886
|
+
"return": ["Bool"]
|
1887
1887
|
},
|
1888
1888
|
"length": {
|
1889
1889
|
"visibility": "Public",
|
1890
|
-
"
|
1891
|
-
"
|
1890
|
+
"isEntry": false,
|
1891
|
+
"typeParameters": [
|
1892
1892
|
{
|
1893
1893
|
"abilities": []
|
1894
1894
|
}
|
@@ -1902,12 +1902,12 @@
|
|
1902
1902
|
}
|
1903
1903
|
}
|
1904
1904
|
],
|
1905
|
-
"
|
1905
|
+
"return": ["U64"]
|
1906
1906
|
},
|
1907
1907
|
"pop_back": {
|
1908
1908
|
"visibility": "Public",
|
1909
|
-
"
|
1910
|
-
"
|
1909
|
+
"isEntry": false,
|
1910
|
+
"typeParameters": [
|
1911
1911
|
{
|
1912
1912
|
"abilities": []
|
1913
1913
|
}
|
@@ -1921,7 +1921,7 @@
|
|
1921
1921
|
}
|
1922
1922
|
}
|
1923
1923
|
],
|
1924
|
-
"
|
1924
|
+
"return": [
|
1925
1925
|
{
|
1926
1926
|
"TypeParameter": 0
|
1927
1927
|
}
|
@@ -1929,8 +1929,8 @@
|
|
1929
1929
|
},
|
1930
1930
|
"push_back": {
|
1931
1931
|
"visibility": "Public",
|
1932
|
-
"
|
1933
|
-
"
|
1932
|
+
"isEntry": false,
|
1933
|
+
"typeParameters": [
|
1934
1934
|
{
|
1935
1935
|
"abilities": []
|
1936
1936
|
}
|
@@ -1947,12 +1947,12 @@
|
|
1947
1947
|
"TypeParameter": 0
|
1948
1948
|
}
|
1949
1949
|
],
|
1950
|
-
"
|
1950
|
+
"return": []
|
1951
1951
|
},
|
1952
1952
|
"remove": {
|
1953
1953
|
"visibility": "Public",
|
1954
|
-
"
|
1955
|
-
"
|
1954
|
+
"isEntry": false,
|
1955
|
+
"typeParameters": [
|
1956
1956
|
{
|
1957
1957
|
"abilities": []
|
1958
1958
|
}
|
@@ -1967,7 +1967,7 @@
|
|
1967
1967
|
},
|
1968
1968
|
"U64"
|
1969
1969
|
],
|
1970
|
-
"
|
1970
|
+
"return": [
|
1971
1971
|
{
|
1972
1972
|
"TypeParameter": 0
|
1973
1973
|
}
|
@@ -1975,8 +1975,8 @@
|
|
1975
1975
|
},
|
1976
1976
|
"reverse": {
|
1977
1977
|
"visibility": "Public",
|
1978
|
-
"
|
1979
|
-
"
|
1978
|
+
"isEntry": false,
|
1979
|
+
"typeParameters": [
|
1980
1980
|
{
|
1981
1981
|
"abilities": []
|
1982
1982
|
}
|
@@ -1990,12 +1990,12 @@
|
|
1990
1990
|
}
|
1991
1991
|
}
|
1992
1992
|
],
|
1993
|
-
"
|
1993
|
+
"return": []
|
1994
1994
|
},
|
1995
1995
|
"singleton": {
|
1996
1996
|
"visibility": "Public",
|
1997
|
-
"
|
1998
|
-
"
|
1997
|
+
"isEntry": false,
|
1998
|
+
"typeParameters": [
|
1999
1999
|
{
|
2000
2000
|
"abilities": []
|
2001
2001
|
}
|
@@ -2005,7 +2005,7 @@
|
|
2005
2005
|
"TypeParameter": 0
|
2006
2006
|
}
|
2007
2007
|
],
|
2008
|
-
"
|
2008
|
+
"return": [
|
2009
2009
|
{
|
2010
2010
|
"Vector": {
|
2011
2011
|
"TypeParameter": 0
|
@@ -2015,8 +2015,8 @@
|
|
2015
2015
|
},
|
2016
2016
|
"swap": {
|
2017
2017
|
"visibility": "Public",
|
2018
|
-
"
|
2019
|
-
"
|
2018
|
+
"isEntry": false,
|
2019
|
+
"typeParameters": [
|
2020
2020
|
{
|
2021
2021
|
"abilities": []
|
2022
2022
|
}
|
@@ -2032,12 +2032,12 @@
|
|
2032
2032
|
"U64",
|
2033
2033
|
"U64"
|
2034
2034
|
],
|
2035
|
-
"
|
2035
|
+
"return": []
|
2036
2036
|
},
|
2037
2037
|
"swap_remove": {
|
2038
2038
|
"visibility": "Public",
|
2039
|
-
"
|
2040
|
-
"
|
2039
|
+
"isEntry": false,
|
2040
|
+
"typeParameters": [
|
2041
2041
|
{
|
2042
2042
|
"abilities": []
|
2043
2043
|
}
|
@@ -2052,7 +2052,7 @@
|
|
2052
2052
|
},
|
2053
2053
|
"U64"
|
2054
2054
|
],
|
2055
|
-
"
|
2055
|
+
"return": [
|
2056
2056
|
{
|
2057
2057
|
"TypeParameter": 0
|
2058
2058
|
}
|