@aztec/aztec.js 0.0.1-commit.d431d1c → 0.0.1-commit.e310a4c8
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/dest/api/block.d.ts +2 -2
- package/dest/api/block.d.ts.map +1 -1
- package/dest/api/block.js +1 -1
- package/dest/api/contract.d.ts +16 -10
- package/dest/api/contract.d.ts.map +1 -1
- package/dest/api/contract.js +14 -8
- package/dest/api/keys.d.ts +1 -1
- package/dest/api/keys.js +1 -1
- package/dest/api/node.d.ts +8 -4
- package/dest/api/node.d.ts.map +1 -1
- package/dest/api/node.js +7 -3
- package/dest/api/tx.d.ts +2 -2
- package/dest/api/tx.d.ts.map +1 -1
- package/dest/api/tx.js +1 -1
- package/dest/api/wallet.d.ts +3 -2
- package/dest/api/wallet.d.ts.map +1 -1
- package/dest/api/wallet.js +2 -1
- package/dest/contract/base_contract_interaction.d.ts +8 -10
- package/dest/contract/base_contract_interaction.d.ts.map +1 -1
- package/dest/contract/base_contract_interaction.js +5 -17
- package/dest/contract/deploy_method.d.ts +63 -16
- package/dest/contract/deploy_method.d.ts.map +1 -1
- package/dest/contract/deploy_method.js +36 -19
- package/dest/contract/interaction_options.d.ts +42 -5
- package/dest/contract/interaction_options.d.ts.map +1 -1
- package/dest/contract/interaction_options.js +8 -1
- package/dest/contract/protocol_contracts/auth-registry.d.ts +1 -10
- package/dest/contract/protocol_contracts/auth-registry.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/auth-registry.js +61 -479
- package/dest/contract/protocol_contracts/contract-class-registry.d.ts +2 -11
- package/dest/contract/protocol_contracts/contract-class-registry.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/contract-class-registry.js +10 -422
- package/dest/contract/protocol_contracts/contract-instance-registry.d.ts +2 -11
- package/dest/contract/protocol_contracts/contract-instance-registry.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/contract-instance-registry.js +80 -486
- package/dest/contract/protocol_contracts/fee-juice.d.ts +1 -10
- package/dest/contract/protocol_contracts/fee-juice.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/fee-juice.js +0 -414
- package/dest/contract/protocol_contracts/multi-call-entrypoint.d.ts +3 -3
- package/dest/contract/protocol_contracts/multi-call-entrypoint.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/multi-call-entrypoint.js +13 -14
- package/dest/contract/protocol_contracts/public-checks.d.ts +3 -3
- package/dest/contract/protocol_contracts/public-checks.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/public-checks.js +13 -22
- package/dest/contract/wait_for_proven.js +1 -1
- package/dest/contract/wait_opts.d.ts +16 -0
- package/dest/contract/wait_opts.d.ts.map +1 -0
- package/dest/contract/wait_opts.js +5 -0
- package/dest/utils/authwit.d.ts +6 -6
- package/dest/utils/authwit.d.ts.map +1 -1
- package/dest/utils/authwit.js +2 -6
- package/dest/utils/node.d.ts +12 -1
- package/dest/utils/node.d.ts.map +1 -1
- package/dest/utils/node.js +46 -0
- package/dest/wallet/capabilities.d.ts +444 -0
- package/dest/wallet/capabilities.d.ts.map +1 -0
- package/dest/wallet/capabilities.js +3 -0
- package/dest/wallet/deploy_account_method.d.ts +19 -5
- package/dest/wallet/deploy_account_method.d.ts.map +1 -1
- package/dest/wallet/index.d.ts +2 -1
- package/dest/wallet/index.d.ts.map +1 -1
- package/dest/wallet/index.js +1 -0
- package/dest/wallet/wallet.d.ts +1356 -18
- package/dest/wallet/wallet.d.ts.map +1 -1
- package/dest/wallet/wallet.js +136 -4
- package/package.json +9 -9
- package/src/api/block.ts +1 -1
- package/src/api/contract.ts +22 -7
- package/src/api/keys.ts +2 -2
- package/src/api/node.ts +7 -3
- package/src/api/tx.ts +2 -0
- package/src/api/wallet.ts +43 -0
- package/src/contract/base_contract_interaction.ts +27 -15
- package/src/contract/deploy_method.ts +115 -23
- package/src/contract/interaction_options.ts +49 -4
- package/src/contract/protocol_contracts/auth-registry.ts +37 -240
- package/src/contract/protocol_contracts/contract-class-registry.ts +3 -204
- package/src/contract/protocol_contracts/contract-instance-registry.ts +34 -234
- package/src/contract/protocol_contracts/fee-juice.ts +0 -202
- package/src/contract/protocol_contracts/multi-call-entrypoint.ts +6 -12
- package/src/contract/protocol_contracts/public-checks.ts +6 -14
- package/src/contract/wait_for_proven.ts +1 -1
- package/src/contract/wait_opts.ts +21 -0
- package/src/utils/authwit.ts +16 -4
- package/src/utils/node.ts +62 -0
- package/src/wallet/capabilities.ts +491 -0
- package/src/wallet/deploy_account_method.ts +19 -4
- package/src/wallet/index.ts +1 -0
- package/src/wallet/wallet.ts +148 -12
- package/dest/contract/deploy_sent_tx.d.ts +0 -48
- package/dest/contract/deploy_sent_tx.d.ts.map +0 -1
- package/dest/contract/deploy_sent_tx.js +0 -46
- package/dest/contract/sent_tx.d.ts +0 -50
- package/dest/contract/sent_tx.d.ts.map +0 -1
- package/dest/contract/sent_tx.js +0 -90
- package/src/contract/deploy_sent_tx.ts +0 -75
- package/src/contract/sent_tx.ts +0 -129
|
@@ -62,11 +62,6 @@ const FeeJuiceContractArtifact = {
|
|
|
62
62
|
error_kind: 'string',
|
|
63
63
|
string: 'attempt to subtract with overflow'
|
|
64
64
|
},
|
|
65
|
-
'2754040237334517471': {
|
|
66
|
-
error_kind: 'fmtstring',
|
|
67
|
-
length: 92,
|
|
68
|
-
item_types: []
|
|
69
|
-
},
|
|
70
65
|
'6609888949476313245': {
|
|
71
66
|
error_kind: 'string',
|
|
72
67
|
string: 'Message not in state'
|
|
@@ -191,257 +186,6 @@ const FeeJuiceContractArtifact = {
|
|
|
191
186
|
bytecode: Buffer.from([]),
|
|
192
187
|
debugSymbols: ''
|
|
193
188
|
},
|
|
194
|
-
{
|
|
195
|
-
...{
|
|
196
|
-
functionType: FunctionType.UTILITY,
|
|
197
|
-
name: 'process_message',
|
|
198
|
-
isOnlySelf: false,
|
|
199
|
-
isStatic: false,
|
|
200
|
-
isInitializer: false,
|
|
201
|
-
parameters: [
|
|
202
|
-
{
|
|
203
|
-
name: 'message_ciphertext',
|
|
204
|
-
type: {
|
|
205
|
-
kind: 'struct',
|
|
206
|
-
fields: [
|
|
207
|
-
{
|
|
208
|
-
name: 'storage',
|
|
209
|
-
type: {
|
|
210
|
-
kind: 'array',
|
|
211
|
-
length: 17,
|
|
212
|
-
type: {
|
|
213
|
-
kind: 'field'
|
|
214
|
-
}
|
|
215
|
-
}
|
|
216
|
-
},
|
|
217
|
-
{
|
|
218
|
-
name: 'len',
|
|
219
|
-
type: {
|
|
220
|
-
kind: 'integer',
|
|
221
|
-
sign: 'unsigned',
|
|
222
|
-
width: 32
|
|
223
|
-
}
|
|
224
|
-
}
|
|
225
|
-
],
|
|
226
|
-
path: 'std::collections::bounded_vec::BoundedVec'
|
|
227
|
-
},
|
|
228
|
-
visibility: 'private'
|
|
229
|
-
},
|
|
230
|
-
{
|
|
231
|
-
name: 'message_context',
|
|
232
|
-
type: {
|
|
233
|
-
kind: 'struct',
|
|
234
|
-
fields: [
|
|
235
|
-
{
|
|
236
|
-
name: 'tx_hash',
|
|
237
|
-
type: {
|
|
238
|
-
kind: 'field'
|
|
239
|
-
}
|
|
240
|
-
},
|
|
241
|
-
{
|
|
242
|
-
name: 'unique_note_hashes_in_tx',
|
|
243
|
-
type: {
|
|
244
|
-
kind: 'struct',
|
|
245
|
-
fields: [
|
|
246
|
-
{
|
|
247
|
-
name: 'storage',
|
|
248
|
-
type: {
|
|
249
|
-
kind: 'array',
|
|
250
|
-
length: 64,
|
|
251
|
-
type: {
|
|
252
|
-
kind: 'field'
|
|
253
|
-
}
|
|
254
|
-
}
|
|
255
|
-
},
|
|
256
|
-
{
|
|
257
|
-
name: 'len',
|
|
258
|
-
type: {
|
|
259
|
-
kind: 'integer',
|
|
260
|
-
sign: 'unsigned',
|
|
261
|
-
width: 32
|
|
262
|
-
}
|
|
263
|
-
}
|
|
264
|
-
],
|
|
265
|
-
path: 'std::collections::bounded_vec::BoundedVec'
|
|
266
|
-
}
|
|
267
|
-
},
|
|
268
|
-
{
|
|
269
|
-
name: 'first_nullifier_in_tx',
|
|
270
|
-
type: {
|
|
271
|
-
kind: 'field'
|
|
272
|
-
}
|
|
273
|
-
},
|
|
274
|
-
{
|
|
275
|
-
name: 'recipient',
|
|
276
|
-
type: {
|
|
277
|
-
kind: 'struct',
|
|
278
|
-
fields: [
|
|
279
|
-
{
|
|
280
|
-
name: 'inner',
|
|
281
|
-
type: {
|
|
282
|
-
kind: 'field'
|
|
283
|
-
}
|
|
284
|
-
}
|
|
285
|
-
],
|
|
286
|
-
path: 'aztec::protocol_types::address::aztec_address::AztecAddress'
|
|
287
|
-
}
|
|
288
|
-
}
|
|
289
|
-
],
|
|
290
|
-
path: 'aztec::messages::processing::message_context::MessageContext'
|
|
291
|
-
},
|
|
292
|
-
visibility: 'private'
|
|
293
|
-
}
|
|
294
|
-
],
|
|
295
|
-
returnTypes: [],
|
|
296
|
-
errorTypes: {
|
|
297
|
-
'361444214588792908': {
|
|
298
|
-
error_kind: 'string',
|
|
299
|
-
string: 'attempt to multiply with overflow'
|
|
300
|
-
},
|
|
301
|
-
'992401946138144806': {
|
|
302
|
-
error_kind: 'string',
|
|
303
|
-
string: 'Attempted to read past end of BoundedVec'
|
|
304
|
-
},
|
|
305
|
-
'1998584279744703196': {
|
|
306
|
-
error_kind: 'string',
|
|
307
|
-
string: 'attempt to subtract with overflow'
|
|
308
|
-
},
|
|
309
|
-
'2967937905572420042': {
|
|
310
|
-
error_kind: 'fmtstring',
|
|
311
|
-
length: 61,
|
|
312
|
-
item_types: [
|
|
313
|
-
{
|
|
314
|
-
kind: 'field'
|
|
315
|
-
},
|
|
316
|
-
{
|
|
317
|
-
kind: 'field'
|
|
318
|
-
}
|
|
319
|
-
]
|
|
320
|
-
},
|
|
321
|
-
'3330370348214585450': {
|
|
322
|
-
error_kind: 'fmtstring',
|
|
323
|
-
length: 48,
|
|
324
|
-
item_types: [
|
|
325
|
-
{
|
|
326
|
-
kind: 'field'
|
|
327
|
-
},
|
|
328
|
-
{
|
|
329
|
-
kind: 'field'
|
|
330
|
-
}
|
|
331
|
-
]
|
|
332
|
-
},
|
|
333
|
-
'3670003311596808700': {
|
|
334
|
-
error_kind: 'fmtstring',
|
|
335
|
-
length: 77,
|
|
336
|
-
item_types: [
|
|
337
|
-
{
|
|
338
|
-
kind: 'integer',
|
|
339
|
-
sign: 'unsigned',
|
|
340
|
-
width: 32
|
|
341
|
-
}
|
|
342
|
-
]
|
|
343
|
-
},
|
|
344
|
-
'4261968856572588300': {
|
|
345
|
-
error_kind: 'string',
|
|
346
|
-
string: 'Value does not fit in field'
|
|
347
|
-
},
|
|
348
|
-
'4440399188109668273': {
|
|
349
|
-
error_kind: 'string',
|
|
350
|
-
string: 'Input length must be a multiple of 32'
|
|
351
|
-
},
|
|
352
|
-
'9791669845391776238': {
|
|
353
|
-
error_kind: 'string',
|
|
354
|
-
string: '0 has a square root; you cannot claim it is not square'
|
|
355
|
-
},
|
|
356
|
-
'9885968605480832328': {
|
|
357
|
-
error_kind: 'string',
|
|
358
|
-
string: 'Attempted to read past the length of a CapsuleArray'
|
|
359
|
-
},
|
|
360
|
-
'10135509984888824963': {
|
|
361
|
-
error_kind: 'fmtstring',
|
|
362
|
-
length: 58,
|
|
363
|
-
item_types: [
|
|
364
|
-
{
|
|
365
|
-
kind: 'field'
|
|
366
|
-
}
|
|
367
|
-
]
|
|
368
|
-
},
|
|
369
|
-
'10791800398362570014': {
|
|
370
|
-
error_kind: 'string',
|
|
371
|
-
string: 'extend_from_bounded_vec out of bounds'
|
|
372
|
-
},
|
|
373
|
-
'11021520179822076911': {
|
|
374
|
-
error_kind: 'string',
|
|
375
|
-
string: 'Attempted to delete past the length of a CapsuleArray'
|
|
376
|
-
},
|
|
377
|
-
'11692359521570349358': {
|
|
378
|
-
error_kind: 'fmtstring',
|
|
379
|
-
length: 40,
|
|
380
|
-
item_types: []
|
|
381
|
-
},
|
|
382
|
-
'12327971061804302172': {
|
|
383
|
-
error_kind: 'fmtstring',
|
|
384
|
-
length: 98,
|
|
385
|
-
item_types: []
|
|
386
|
-
},
|
|
387
|
-
'12469291177396340830': {
|
|
388
|
-
error_kind: 'string',
|
|
389
|
-
string: 'call to assert_max_bit_size'
|
|
390
|
-
},
|
|
391
|
-
'12913276134398371456': {
|
|
392
|
-
error_kind: 'string',
|
|
393
|
-
string: 'push out of bounds'
|
|
394
|
-
},
|
|
395
|
-
'13557316507370296400': {
|
|
396
|
-
error_kind: 'fmtstring',
|
|
397
|
-
length: 130,
|
|
398
|
-
item_types: [
|
|
399
|
-
{
|
|
400
|
-
kind: 'integer',
|
|
401
|
-
sign: 'unsigned',
|
|
402
|
-
width: 32
|
|
403
|
-
}
|
|
404
|
-
]
|
|
405
|
-
},
|
|
406
|
-
'14938672389828944159': {
|
|
407
|
-
error_kind: 'fmtstring',
|
|
408
|
-
length: 146,
|
|
409
|
-
item_types: [
|
|
410
|
-
{
|
|
411
|
-
kind: 'integer',
|
|
412
|
-
sign: 'unsigned',
|
|
413
|
-
width: 32
|
|
414
|
-
}
|
|
415
|
-
]
|
|
416
|
-
},
|
|
417
|
-
'14990209321349310352': {
|
|
418
|
-
error_kind: 'string',
|
|
419
|
-
string: 'attempt to add with overflow'
|
|
420
|
-
},
|
|
421
|
-
'15764276373176857197': {
|
|
422
|
-
error_kind: 'string',
|
|
423
|
-
string: 'Stack too deep'
|
|
424
|
-
},
|
|
425
|
-
'16431471497789672479': {
|
|
426
|
-
error_kind: 'string',
|
|
427
|
-
string: 'Index out of bounds'
|
|
428
|
-
},
|
|
429
|
-
'17531474008201752295': {
|
|
430
|
-
error_kind: 'fmtstring',
|
|
431
|
-
length: 133,
|
|
432
|
-
item_types: [
|
|
433
|
-
{
|
|
434
|
-
kind: 'integer',
|
|
435
|
-
sign: 'unsigned',
|
|
436
|
-
width: 32
|
|
437
|
-
}
|
|
438
|
-
]
|
|
439
|
-
}
|
|
440
|
-
}
|
|
441
|
-
},
|
|
442
|
-
bytecode: Buffer.from([]),
|
|
443
|
-
debugSymbols: ''
|
|
444
|
-
},
|
|
445
189
|
{
|
|
446
190
|
...{
|
|
447
191
|
functionType: FunctionType.PUBLIC,
|
|
@@ -513,164 +257,6 @@ const FeeJuiceContractArtifact = {
|
|
|
513
257
|
},
|
|
514
258
|
bytecode: Buffer.from([]),
|
|
515
259
|
debugSymbols: ''
|
|
516
|
-
},
|
|
517
|
-
{
|
|
518
|
-
...{
|
|
519
|
-
functionType: FunctionType.UTILITY,
|
|
520
|
-
name: 'sync_private_state',
|
|
521
|
-
isOnlySelf: false,
|
|
522
|
-
isStatic: false,
|
|
523
|
-
isInitializer: false,
|
|
524
|
-
parameters: [],
|
|
525
|
-
returnTypes: [],
|
|
526
|
-
errorTypes: {
|
|
527
|
-
'361444214588792908': {
|
|
528
|
-
error_kind: 'string',
|
|
529
|
-
string: 'attempt to multiply with overflow'
|
|
530
|
-
},
|
|
531
|
-
'992401946138144806': {
|
|
532
|
-
error_kind: 'string',
|
|
533
|
-
string: 'Attempted to read past end of BoundedVec'
|
|
534
|
-
},
|
|
535
|
-
'1998584279744703196': {
|
|
536
|
-
error_kind: 'string',
|
|
537
|
-
string: 'attempt to subtract with overflow'
|
|
538
|
-
},
|
|
539
|
-
'2967937905572420042': {
|
|
540
|
-
error_kind: 'fmtstring',
|
|
541
|
-
length: 61,
|
|
542
|
-
item_types: [
|
|
543
|
-
{
|
|
544
|
-
kind: 'field'
|
|
545
|
-
},
|
|
546
|
-
{
|
|
547
|
-
kind: 'field'
|
|
548
|
-
}
|
|
549
|
-
]
|
|
550
|
-
},
|
|
551
|
-
'3330370348214585450': {
|
|
552
|
-
error_kind: 'fmtstring',
|
|
553
|
-
length: 48,
|
|
554
|
-
item_types: [
|
|
555
|
-
{
|
|
556
|
-
kind: 'field'
|
|
557
|
-
},
|
|
558
|
-
{
|
|
559
|
-
kind: 'field'
|
|
560
|
-
}
|
|
561
|
-
]
|
|
562
|
-
},
|
|
563
|
-
'3670003311596808700': {
|
|
564
|
-
error_kind: 'fmtstring',
|
|
565
|
-
length: 77,
|
|
566
|
-
item_types: [
|
|
567
|
-
{
|
|
568
|
-
kind: 'integer',
|
|
569
|
-
sign: 'unsigned',
|
|
570
|
-
width: 32
|
|
571
|
-
}
|
|
572
|
-
]
|
|
573
|
-
},
|
|
574
|
-
'4261968856572588300': {
|
|
575
|
-
error_kind: 'string',
|
|
576
|
-
string: 'Value does not fit in field'
|
|
577
|
-
},
|
|
578
|
-
'4440399188109668273': {
|
|
579
|
-
error_kind: 'string',
|
|
580
|
-
string: 'Input length must be a multiple of 32'
|
|
581
|
-
},
|
|
582
|
-
'9791669845391776238': {
|
|
583
|
-
error_kind: 'string',
|
|
584
|
-
string: '0 has a square root; you cannot claim it is not square'
|
|
585
|
-
},
|
|
586
|
-
'9885968605480832328': {
|
|
587
|
-
error_kind: 'string',
|
|
588
|
-
string: 'Attempted to read past the length of a CapsuleArray'
|
|
589
|
-
},
|
|
590
|
-
'10135509984888824963': {
|
|
591
|
-
error_kind: 'fmtstring',
|
|
592
|
-
length: 58,
|
|
593
|
-
item_types: [
|
|
594
|
-
{
|
|
595
|
-
kind: 'field'
|
|
596
|
-
}
|
|
597
|
-
]
|
|
598
|
-
},
|
|
599
|
-
'10791800398362570014': {
|
|
600
|
-
error_kind: 'string',
|
|
601
|
-
string: 'extend_from_bounded_vec out of bounds'
|
|
602
|
-
},
|
|
603
|
-
'11021520179822076911': {
|
|
604
|
-
error_kind: 'string',
|
|
605
|
-
string: 'Attempted to delete past the length of a CapsuleArray'
|
|
606
|
-
},
|
|
607
|
-
'11692359521570349358': {
|
|
608
|
-
error_kind: 'fmtstring',
|
|
609
|
-
length: 40,
|
|
610
|
-
item_types: []
|
|
611
|
-
},
|
|
612
|
-
'12327971061804302172': {
|
|
613
|
-
error_kind: 'fmtstring',
|
|
614
|
-
length: 98,
|
|
615
|
-
item_types: []
|
|
616
|
-
},
|
|
617
|
-
'12469291177396340830': {
|
|
618
|
-
error_kind: 'string',
|
|
619
|
-
string: 'call to assert_max_bit_size'
|
|
620
|
-
},
|
|
621
|
-
'12913276134398371456': {
|
|
622
|
-
error_kind: 'string',
|
|
623
|
-
string: 'push out of bounds'
|
|
624
|
-
},
|
|
625
|
-
'13557316507370296400': {
|
|
626
|
-
error_kind: 'fmtstring',
|
|
627
|
-
length: 130,
|
|
628
|
-
item_types: [
|
|
629
|
-
{
|
|
630
|
-
kind: 'integer',
|
|
631
|
-
sign: 'unsigned',
|
|
632
|
-
width: 32
|
|
633
|
-
}
|
|
634
|
-
]
|
|
635
|
-
},
|
|
636
|
-
'14938672389828944159': {
|
|
637
|
-
error_kind: 'fmtstring',
|
|
638
|
-
length: 146,
|
|
639
|
-
item_types: [
|
|
640
|
-
{
|
|
641
|
-
kind: 'integer',
|
|
642
|
-
sign: 'unsigned',
|
|
643
|
-
width: 32
|
|
644
|
-
}
|
|
645
|
-
]
|
|
646
|
-
},
|
|
647
|
-
'14990209321349310352': {
|
|
648
|
-
error_kind: 'string',
|
|
649
|
-
string: 'attempt to add with overflow'
|
|
650
|
-
},
|
|
651
|
-
'15764276373176857197': {
|
|
652
|
-
error_kind: 'string',
|
|
653
|
-
string: 'Stack too deep'
|
|
654
|
-
},
|
|
655
|
-
'16431471497789672479': {
|
|
656
|
-
error_kind: 'string',
|
|
657
|
-
string: 'Index out of bounds'
|
|
658
|
-
},
|
|
659
|
-
'17531474008201752295': {
|
|
660
|
-
error_kind: 'fmtstring',
|
|
661
|
-
length: 133,
|
|
662
|
-
item_types: [
|
|
663
|
-
{
|
|
664
|
-
kind: 'integer',
|
|
665
|
-
sign: 'unsigned',
|
|
666
|
-
width: 32
|
|
667
|
-
}
|
|
668
|
-
]
|
|
669
|
-
}
|
|
670
|
-
}
|
|
671
|
-
},
|
|
672
|
-
bytecode: Buffer.from([]),
|
|
673
|
-
debugSymbols: ''
|
|
674
260
|
}
|
|
675
261
|
],
|
|
676
262
|
nonDispatchPublicFunctions: [
|
|
@@ -27,8 +27,8 @@ export declare class MultiCallEntrypointContract extends ContractBase {
|
|
|
27
27
|
}) => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
28
28
|
/** public_dispatch(selector: field) */
|
|
29
29
|
public_dispatch: ((selector: FieldLike) => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
30
|
-
/**
|
|
31
|
-
|
|
30
|
+
/** sync_state() */
|
|
31
|
+
sync_state: (() => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
32
32
|
};
|
|
33
33
|
}
|
|
34
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
34
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibXVsdGktY2FsbC1lbnRyeXBvaW50LmQudHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvY29udHJhY3QvcHJvdG9jb2xfY29udHJhY3RzL211bHRpLWNhbGwtZW50cnlwb2ludC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFPQSxPQUFPLEtBQUssRUFDVixnQkFBZ0IsRUFFaEIsU0FBUyxFQUNULG9CQUFvQixFQUVyQixNQUFNLDBCQUEwQixDQUFDO0FBQ2xDLE9BQU8sS0FBSyxFQUFFLE1BQU0sRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ3JELE9BQU8sRUFBRSxZQUFZLEVBQUUsS0FBSyxjQUFjLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUN4RSxPQUFPLEVBQUUsMkJBQTJCLEVBQUUsTUFBTSxxQ0FBcUMsQ0FBQztBQWlSbEYscUJBQWEsMkJBQTRCLFNBQVEsWUFBWTtJQUMzRCxPQUFPLGVBRU47SUFFRCxPQUFjLEVBQUUsQ0FBQyxNQUFNLEVBQUUsTUFBTSxHQUFHLDJCQUEyQixDQUU1RDtJQUVjLE9BQU8sRUFBRTtRQUN0QixzQ0FBc0M7UUFDdEMsVUFBVSxFQUFFLENBQUMsQ0FBQyxXQUFXLEVBQUU7WUFDekIsY0FBYyxFQUFFO2dCQUNkLFNBQVMsRUFBRSxTQUFTLENBQUM7Z0JBQ3JCLGlCQUFpQixFQUFFLG9CQUFvQixDQUFDO2dCQUN4QyxjQUFjLEVBQUUsZ0JBQWdCLENBQUM7Z0JBQ2pDLFNBQVMsRUFBRSxPQUFPLENBQUM7Z0JBQ25CLGVBQWUsRUFBRSxPQUFPLENBQUM7Z0JBQ3pCLFNBQVMsRUFBRSxPQUFPLENBQUM7YUFDcEIsRUFBRSxDQUFDO1lBQ0osUUFBUSxFQUFFLFNBQVMsQ0FBQztTQUNyQixLQUFLLDJCQUEyQixDQUFDLEdBQ2hDLElBQUksQ0FBQyxjQUFjLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFFbkMsMkVBQTJFO1FBQzNFLGVBQWUsRUFBRSxDQUFDLENBQ2hCLGtCQUFrQixFQUFFLFNBQVMsRUFBRSxFQUMvQixlQUFlLEVBQUU7WUFDZixPQUFPLEVBQUUsU0FBUyxDQUFDO1lBQ25CLHdCQUF3QixFQUFFLFNBQVMsRUFBRSxDQUFDO1lBQ3RDLHFCQUFxQixFQUFFLFNBQVMsQ0FBQztZQUNqQyxTQUFTLEVBQUUsZ0JBQWdCLENBQUM7U0FDN0IsS0FDRSwyQkFBMkIsQ0FBQyxHQUMvQixJQUFJLENBQUMsY0FBYyxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBRW5DLHVDQUF1QztRQUN2QyxlQUFlLEVBQUUsQ0FBQyxDQUFDLFFBQVEsRUFBRSxTQUFTLEtBQUssMkJBQTJCLENBQUMsR0FBRyxJQUFJLENBQUMsY0FBYyxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBRTNHLG1CQUFtQjtRQUNuQixVQUFVLEVBQUUsQ0FBQyxNQUFNLDJCQUEyQixDQUFDLEdBQUcsSUFBSSxDQUFDLGNBQWMsRUFBRSxVQUFVLENBQUMsQ0FBQztLQUNwRixDQUFDO0NBQ0gifQ==
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"multi-call-entrypoint.d.ts","sourceRoot":"","sources":["../../../src/contract/protocol_contracts/multi-call-entrypoint.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EACV,gBAAgB,EAEhB,SAAS,EACT,oBAAoB,EAErB,MAAM,0BAA0B,CAAC;AAClC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,EAAE,YAAY,EAAE,KAAK,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACxE,OAAO,EAAE,2BAA2B,EAAE,MAAM,qCAAqC,CAAC;
|
|
1
|
+
{"version":3,"file":"multi-call-entrypoint.d.ts","sourceRoot":"","sources":["../../../src/contract/protocol_contracts/multi-call-entrypoint.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EACV,gBAAgB,EAEhB,SAAS,EACT,oBAAoB,EAErB,MAAM,0BAA0B,CAAC;AAClC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,EAAE,YAAY,EAAE,KAAK,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACxE,OAAO,EAAE,2BAA2B,EAAE,MAAM,qCAAqC,CAAC;AAiRlF,qBAAa,2BAA4B,SAAQ,YAAY;IAC3D,OAAO,eAEN;IAED,OAAc,EAAE,CAAC,MAAM,EAAE,MAAM,GAAG,2BAA2B,CAE5D;IAEc,OAAO,EAAE;QACtB,sCAAsC;QACtC,UAAU,EAAE,CAAC,CAAC,WAAW,EAAE;YACzB,cAAc,EAAE;gBACd,SAAS,EAAE,SAAS,CAAC;gBACrB,iBAAiB,EAAE,oBAAoB,CAAC;gBACxC,cAAc,EAAE,gBAAgB,CAAC;gBACjC,SAAS,EAAE,OAAO,CAAC;gBACnB,eAAe,EAAE,OAAO,CAAC;gBACzB,SAAS,EAAE,OAAO,CAAC;aACpB,EAAE,CAAC;YACJ,QAAQ,EAAE,SAAS,CAAC;SACrB,KAAK,2BAA2B,CAAC,GAChC,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;QAEnC,2EAA2E;QAC3E,eAAe,EAAE,CAAC,CAChB,kBAAkB,EAAE,SAAS,EAAE,EAC/B,eAAe,EAAE;YACf,OAAO,EAAE,SAAS,CAAC;YACnB,wBAAwB,EAAE,SAAS,EAAE,CAAC;YACtC,qBAAqB,EAAE,SAAS,CAAC;YACjC,SAAS,EAAE,gBAAgB,CAAC;SAC7B,KACE,2BAA2B,CAAC,GAC/B,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;QAEnC,uCAAuC;QACvC,eAAe,EAAE,CAAC,CAAC,QAAQ,EAAE,SAAS,KAAK,2BAA2B,CAAC,GAAG,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;QAE3G,mBAAmB;QACnB,UAAU,EAAE,CAAC,MAAM,2BAA2B,CAAC,GAAG,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;KACpF,CAAC;CACH"}
|
|
@@ -279,13 +279,13 @@ const MultiCallEntrypointContractArtifact = {
|
|
|
279
279
|
error_kind: 'string',
|
|
280
280
|
string: 'Input length must be a multiple of 32'
|
|
281
281
|
},
|
|
282
|
-
'
|
|
282
|
+
'9530675838293881722': {
|
|
283
283
|
error_kind: 'string',
|
|
284
|
-
string: '
|
|
284
|
+
string: 'Writer did not write all data'
|
|
285
285
|
},
|
|
286
|
-
'
|
|
286
|
+
'9791669845391776238': {
|
|
287
287
|
error_kind: 'string',
|
|
288
|
-
string: '
|
|
288
|
+
string: '0 has a square root; you cannot claim it is not square'
|
|
289
289
|
},
|
|
290
290
|
'10135509984888824963': {
|
|
291
291
|
error_kind: 'fmtstring',
|
|
@@ -300,20 +300,11 @@ const MultiCallEntrypointContractArtifact = {
|
|
|
300
300
|
error_kind: 'string',
|
|
301
301
|
string: 'extend_from_bounded_vec out of bounds'
|
|
302
302
|
},
|
|
303
|
-
'11021520179822076911': {
|
|
304
|
-
error_kind: 'string',
|
|
305
|
-
string: 'Attempted to delete past the length of a CapsuleArray'
|
|
306
|
-
},
|
|
307
303
|
'11692359521570349358': {
|
|
308
304
|
error_kind: 'fmtstring',
|
|
309
305
|
length: 40,
|
|
310
306
|
item_types: []
|
|
311
307
|
},
|
|
312
|
-
'12327971061804302172': {
|
|
313
|
-
error_kind: 'fmtstring',
|
|
314
|
-
length: 98,
|
|
315
|
-
item_types: []
|
|
316
|
-
},
|
|
317
308
|
'12469291177396340830': {
|
|
318
309
|
error_kind: 'string',
|
|
319
310
|
string: 'call to assert_max_bit_size'
|
|
@@ -375,7 +366,7 @@ const MultiCallEntrypointContractArtifact = {
|
|
|
375
366
|
{
|
|
376
367
|
...{
|
|
377
368
|
functionType: FunctionType.UTILITY,
|
|
378
|
-
name: '
|
|
369
|
+
name: 'sync_state',
|
|
379
370
|
isOnlySelf: false,
|
|
380
371
|
isStatic: false,
|
|
381
372
|
isInitializer: false,
|
|
@@ -437,6 +428,10 @@ const MultiCallEntrypointContractArtifact = {
|
|
|
437
428
|
error_kind: 'string',
|
|
438
429
|
string: 'Input length must be a multiple of 32'
|
|
439
430
|
},
|
|
431
|
+
'9530675838293881722': {
|
|
432
|
+
error_kind: 'string',
|
|
433
|
+
string: 'Writer did not write all data'
|
|
434
|
+
},
|
|
440
435
|
'9791669845391776238': {
|
|
441
436
|
error_kind: 'string',
|
|
442
437
|
string: '0 has a square root; you cannot claim it is not square'
|
|
@@ -524,6 +519,10 @@ const MultiCallEntrypointContractArtifact = {
|
|
|
524
519
|
width: 32
|
|
525
520
|
}
|
|
526
521
|
]
|
|
522
|
+
},
|
|
523
|
+
'17655676068928457687': {
|
|
524
|
+
error_kind: 'string',
|
|
525
|
+
string: 'Reader did not read all data'
|
|
527
526
|
}
|
|
528
527
|
}
|
|
529
528
|
},
|
|
@@ -19,8 +19,8 @@ export declare class PublicChecksContract extends ContractBase {
|
|
|
19
19
|
}) => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
20
20
|
/** public_dispatch(selector: field) */
|
|
21
21
|
public_dispatch: ((selector: FieldLike) => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
22
|
-
/**
|
|
23
|
-
|
|
22
|
+
/** sync_state() */
|
|
23
|
+
sync_state: (() => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
24
24
|
};
|
|
25
25
|
}
|
|
26
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
26
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWNoZWNrcy5kLnRzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL2NvbnRyYWN0L3Byb3RvY29sX2NvbnRyYWN0cy9wdWJsaWMtY2hlY2tzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQU9BLE9BQU8sS0FBSyxFQUNWLGdCQUFnQixFQUVoQixTQUFTLEVBR1YsTUFBTSwwQkFBMEIsQ0FBQztBQUNsQyxPQUFPLEtBQUssRUFBRSxNQUFNLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUNyRCxPQUFPLEVBQUUsWUFBWSxFQUFFLEtBQUssY0FBYyxFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFDeEUsT0FBTyxFQUFFLDJCQUEyQixFQUFFLE1BQU0scUNBQXFDLENBQUM7QUF1UWxGLHFCQUFhLG9CQUFxQixTQUFRLFlBQVk7SUFDcEQsT0FBTyxlQUVOO0lBRUQsT0FBYyxFQUFFLENBQUMsTUFBTSxFQUFFLE1BQU0sR0FBRyxvQkFBb0IsQ0FFckQ7SUFFYyxPQUFPLEVBQUU7UUFDdEIsNkRBQTZEO1FBQzdELGtCQUFrQixFQUFFLENBQUMsQ0FBQyxTQUFTLEVBQUUsTUFBTSxHQUFHLE1BQU0sRUFBRSxLQUFLLEVBQUUsTUFBTSxHQUFHLE1BQU0sS0FBSywyQkFBMkIsQ0FBQyxHQUN2RyxJQUFJLENBQUMsY0FBYyxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBRW5DLDBEQUEwRDtRQUMxRCxlQUFlLEVBQUUsQ0FBQyxDQUFDLFNBQVMsRUFBRSxNQUFNLEdBQUcsTUFBTSxFQUFFLEtBQUssRUFBRSxNQUFNLEdBQUcsTUFBTSxLQUFLLDJCQUEyQixDQUFDLEdBQ3BHLElBQUksQ0FBQyxjQUFjLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFFbkMsMkVBQTJFO1FBQzNFLGVBQWUsRUFBRSxDQUFDLENBQ2hCLGtCQUFrQixFQUFFLFNBQVMsRUFBRSxFQUMvQixlQUFlLEVBQUU7WUFDZixPQUFPLEVBQUUsU0FBUyxDQUFDO1lBQ25CLHdCQUF3QixFQUFFLFNBQVMsRUFBRSxDQUFDO1lBQ3RDLHFCQUFxQixFQUFFLFNBQVMsQ0FBQztZQUNqQyxTQUFTLEVBQUUsZ0JBQWdCLENBQUM7U0FDN0IsS0FDRSwyQkFBMkIsQ0FBQyxHQUMvQixJQUFJLENBQUMsY0FBYyxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBRW5DLHVDQUF1QztRQUN2QyxlQUFlLEVBQUUsQ0FBQyxDQUFDLFFBQVEsRUFBRSxTQUFTLEtBQUssMkJBQTJCLENBQUMsR0FBRyxJQUFJLENBQUMsY0FBYyxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBRTNHLG1CQUFtQjtRQUNuQixVQUFVLEVBQUUsQ0FBQyxNQUFNLDJCQUEyQixDQUFDLEdBQUcsSUFBSSxDQUFDLGNBQWMsRUFBRSxVQUFVLENBQUMsQ0FBQztLQUNwRixDQUFDO0NBQ0gifQ==
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public-checks.d.ts","sourceRoot":"","sources":["../../../src/contract/protocol_contracts/public-checks.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EACV,gBAAgB,EAEhB,SAAS,EAGV,MAAM,0BAA0B,CAAC;AAClC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,EAAE,YAAY,EAAE,KAAK,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACxE,OAAO,EAAE,2BAA2B,EAAE,MAAM,qCAAqC,CAAC;
|
|
1
|
+
{"version":3,"file":"public-checks.d.ts","sourceRoot":"","sources":["../../../src/contract/protocol_contracts/public-checks.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EACV,gBAAgB,EAEhB,SAAS,EAGV,MAAM,0BAA0B,CAAC;AAClC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,EAAE,YAAY,EAAE,KAAK,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACxE,OAAO,EAAE,2BAA2B,EAAE,MAAM,qCAAqC,CAAC;AAuQlF,qBAAa,oBAAqB,SAAQ,YAAY;IACpD,OAAO,eAEN;IAED,OAAc,EAAE,CAAC,MAAM,EAAE,MAAM,GAAG,oBAAoB,CAErD;IAEc,OAAO,EAAE;QACtB,6DAA6D;QAC7D,kBAAkB,EAAE,CAAC,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,KAAK,2BAA2B,CAAC,GACvG,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;QAEnC,0DAA0D;QAC1D,eAAe,EAAE,CAAC,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,KAAK,2BAA2B,CAAC,GACpG,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;QAEnC,2EAA2E;QAC3E,eAAe,EAAE,CAAC,CAChB,kBAAkB,EAAE,SAAS,EAAE,EAC/B,eAAe,EAAE;YACf,OAAO,EAAE,SAAS,CAAC;YACnB,wBAAwB,EAAE,SAAS,EAAE,CAAC;YACtC,qBAAqB,EAAE,SAAS,CAAC;YACjC,SAAS,EAAE,gBAAgB,CAAC;SAC7B,KACE,2BAA2B,CAAC,GAC/B,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;QAEnC,uCAAuC;QACvC,eAAe,EAAE,CAAC,CAAC,QAAQ,EAAE,SAAS,KAAK,2BAA2B,CAAC,GAAG,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;QAE3G,mBAAmB;QACnB,UAAU,EAAE,CAAC,MAAM,2BAA2B,CAAC,GAAG,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;KACpF,CAAC;CACH"}
|
|
@@ -162,13 +162,13 @@ const PublicChecksContractArtifact = {
|
|
|
162
162
|
error_kind: 'string',
|
|
163
163
|
string: 'Input length must be a multiple of 32'
|
|
164
164
|
},
|
|
165
|
-
'
|
|
165
|
+
'9530675838293881722': {
|
|
166
166
|
error_kind: 'string',
|
|
167
|
-
string: '
|
|
167
|
+
string: 'Writer did not write all data'
|
|
168
168
|
},
|
|
169
|
-
'
|
|
169
|
+
'9791669845391776238': {
|
|
170
170
|
error_kind: 'string',
|
|
171
|
-
string: '
|
|
171
|
+
string: '0 has a square root; you cannot claim it is not square'
|
|
172
172
|
},
|
|
173
173
|
'10135509984888824963': {
|
|
174
174
|
error_kind: 'fmtstring',
|
|
@@ -183,20 +183,11 @@ const PublicChecksContractArtifact = {
|
|
|
183
183
|
error_kind: 'string',
|
|
184
184
|
string: 'extend_from_bounded_vec out of bounds'
|
|
185
185
|
},
|
|
186
|
-
'11021520179822076911': {
|
|
187
|
-
error_kind: 'string',
|
|
188
|
-
string: 'Attempted to delete past the length of a CapsuleArray'
|
|
189
|
-
},
|
|
190
186
|
'11692359521570349358': {
|
|
191
187
|
error_kind: 'fmtstring',
|
|
192
188
|
length: 40,
|
|
193
189
|
item_types: []
|
|
194
190
|
},
|
|
195
|
-
'12327971061804302172': {
|
|
196
|
-
error_kind: 'fmtstring',
|
|
197
|
-
length: 98,
|
|
198
|
-
item_types: []
|
|
199
|
-
},
|
|
200
191
|
'12469291177396340830': {
|
|
201
192
|
error_kind: 'string',
|
|
202
193
|
string: 'call to assert_max_bit_size'
|
|
@@ -298,10 +289,6 @@ const PublicChecksContractArtifact = {
|
|
|
298
289
|
error_kind: 'string',
|
|
299
290
|
string: 'Timestamp mismatch.'
|
|
300
291
|
},
|
|
301
|
-
'14990209321349310352': {
|
|
302
|
-
error_kind: 'string',
|
|
303
|
-
string: 'attempt to add with overflow'
|
|
304
|
-
},
|
|
305
292
|
'15015303112667403944': {
|
|
306
293
|
error_kind: 'fmtstring',
|
|
307
294
|
length: 17,
|
|
@@ -310,10 +297,6 @@ const PublicChecksContractArtifact = {
|
|
|
310
297
|
'15764276373176857197': {
|
|
311
298
|
error_kind: 'string',
|
|
312
299
|
string: 'Stack too deep'
|
|
313
|
-
},
|
|
314
|
-
'16431471497789672479': {
|
|
315
|
-
error_kind: 'string',
|
|
316
|
-
string: 'Index out of bounds'
|
|
317
300
|
}
|
|
318
301
|
}
|
|
319
302
|
},
|
|
@@ -323,7 +306,7 @@ const PublicChecksContractArtifact = {
|
|
|
323
306
|
{
|
|
324
307
|
...{
|
|
325
308
|
functionType: FunctionType.UTILITY,
|
|
326
|
-
name: '
|
|
309
|
+
name: 'sync_state',
|
|
327
310
|
isOnlySelf: false,
|
|
328
311
|
isStatic: false,
|
|
329
312
|
isInitializer: false,
|
|
@@ -385,6 +368,10 @@ const PublicChecksContractArtifact = {
|
|
|
385
368
|
error_kind: 'string',
|
|
386
369
|
string: 'Input length must be a multiple of 32'
|
|
387
370
|
},
|
|
371
|
+
'9530675838293881722': {
|
|
372
|
+
error_kind: 'string',
|
|
373
|
+
string: 'Writer did not write all data'
|
|
374
|
+
},
|
|
388
375
|
'9791669845391776238': {
|
|
389
376
|
error_kind: 'string',
|
|
390
377
|
string: '0 has a square root; you cannot claim it is not square'
|
|
@@ -472,6 +459,10 @@ const PublicChecksContractArtifact = {
|
|
|
472
459
|
width: 32
|
|
473
460
|
}
|
|
474
461
|
]
|
|
462
|
+
},
|
|
463
|
+
'17655676068928457687': {
|
|
464
|
+
error_kind: 'string',
|
|
465
|
+
string: 'Reader did not read all data'
|
|
475
466
|
}
|
|
476
467
|
}
|
|
477
468
|
},
|