@aztec/aztec.js 0.0.1-commit.3469e52 → 0.0.1-commit.43597cc1
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/events.d.ts +10 -6
- package/dest/api/events.d.ts.map +1 -1
- package/dest/api/events.js +30 -20
- package/dest/api/fields.d.ts +2 -1
- package/dest/api/fields.d.ts.map +1 -1
- package/dest/api/fields.js +1 -0
- 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/contract_function_interaction.d.ts +3 -12
- package/dest/contract/contract_function_interaction.d.ts.map +1 -1
- package/dest/contract/contract_function_interaction.js +6 -6
- 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 +23 -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 +23 -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/fee/fee_juice_payment_method_with_claim.js +6 -6
- package/dest/fee/private_fee_payment_method.js +10 -10
- package/dest/fee/public_fee_payment_method.js +10 -10
- package/dest/fee/sponsored_fee_payment.js +3 -3
- 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 +1491 -92
- package/dest/wallet/wallet.d.ts.map +1 -1
- package/dest/wallet/wallet.js +158 -25
- package/package.json +19 -10
- package/src/api/block.ts +1 -1
- package/src/api/contract.ts +22 -7
- package/src/api/events.ts +35 -27
- package/src/api/fields.ts +1 -0
- 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 +47 -1
- package/src/contract/base_contract_interaction.ts +27 -15
- package/src/contract/contract_function_interaction.ts +13 -6
- 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/fee/fee_juice_payment_method_with_claim.ts +5 -5
- package/src/fee/private_fee_payment_method.ts +7 -7
- package/src/fee/public_fee_payment_method.ts +8 -8
- package/src/fee/sponsored_fee_payment.ts +3 -3
- 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 +213 -46
- 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,14 +279,19 @@ const MultiCallEntrypointContractArtifact = {
|
|
|
279
279
|
error_kind: 'string',
|
|
280
280
|
string: 'Input length must be a multiple of 32'
|
|
281
281
|
},
|
|
282
|
+
'5417577161503694006': {
|
|
283
|
+
error_kind: 'fmtstring',
|
|
284
|
+
length: 56,
|
|
285
|
+
item_types: [
|
|
286
|
+
{
|
|
287
|
+
kind: 'field'
|
|
288
|
+
}
|
|
289
|
+
]
|
|
290
|
+
},
|
|
282
291
|
'9791669845391776238': {
|
|
283
292
|
error_kind: 'string',
|
|
284
293
|
string: '0 has a square root; you cannot claim it is not square'
|
|
285
294
|
},
|
|
286
|
-
'9885968605480832328': {
|
|
287
|
-
error_kind: 'string',
|
|
288
|
-
string: 'Attempted to read past the length of a CapsuleArray'
|
|
289
|
-
},
|
|
290
295
|
'10135509984888824963': {
|
|
291
296
|
error_kind: 'fmtstring',
|
|
292
297
|
length: 58,
|
|
@@ -300,20 +305,11 @@ const MultiCallEntrypointContractArtifact = {
|
|
|
300
305
|
error_kind: 'string',
|
|
301
306
|
string: 'extend_from_bounded_vec out of bounds'
|
|
302
307
|
},
|
|
303
|
-
'11021520179822076911': {
|
|
304
|
-
error_kind: 'string',
|
|
305
|
-
string: 'Attempted to delete past the length of a CapsuleArray'
|
|
306
|
-
},
|
|
307
308
|
'11692359521570349358': {
|
|
308
309
|
error_kind: 'fmtstring',
|
|
309
310
|
length: 40,
|
|
310
311
|
item_types: []
|
|
311
312
|
},
|
|
312
|
-
'12327971061804302172': {
|
|
313
|
-
error_kind: 'fmtstring',
|
|
314
|
-
length: 98,
|
|
315
|
-
item_types: []
|
|
316
|
-
},
|
|
317
313
|
'12469291177396340830': {
|
|
318
314
|
error_kind: 'string',
|
|
319
315
|
string: 'call to assert_max_bit_size'
|
|
@@ -375,7 +371,7 @@ const MultiCallEntrypointContractArtifact = {
|
|
|
375
371
|
{
|
|
376
372
|
...{
|
|
377
373
|
functionType: FunctionType.UTILITY,
|
|
378
|
-
name: '
|
|
374
|
+
name: 'sync_state',
|
|
379
375
|
isOnlySelf: false,
|
|
380
376
|
isStatic: false,
|
|
381
377
|
isInitializer: false,
|
|
@@ -437,6 +433,15 @@ const MultiCallEntrypointContractArtifact = {
|
|
|
437
433
|
error_kind: 'string',
|
|
438
434
|
string: 'Input length must be a multiple of 32'
|
|
439
435
|
},
|
|
436
|
+
'5417577161503694006': {
|
|
437
|
+
error_kind: 'fmtstring',
|
|
438
|
+
length: 56,
|
|
439
|
+
item_types: [
|
|
440
|
+
{
|
|
441
|
+
kind: 'field'
|
|
442
|
+
}
|
|
443
|
+
]
|
|
444
|
+
},
|
|
440
445
|
'9791669845391776238': {
|
|
441
446
|
error_kind: 'string',
|
|
442
447
|
string: '0 has a square root; you cannot claim it is not square'
|
|
@@ -524,6 +529,10 @@ const MultiCallEntrypointContractArtifact = {
|
|
|
524
529
|
width: 32
|
|
525
530
|
}
|
|
526
531
|
]
|
|
532
|
+
},
|
|
533
|
+
'17655676068928457687': {
|
|
534
|
+
error_kind: 'string',
|
|
535
|
+
string: 'Reader did not read all data'
|
|
527
536
|
}
|
|
528
537
|
}
|
|
529
538
|
},
|
|
@@ -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,14 +162,19 @@ const PublicChecksContractArtifact = {
|
|
|
162
162
|
error_kind: 'string',
|
|
163
163
|
string: 'Input length must be a multiple of 32'
|
|
164
164
|
},
|
|
165
|
+
'5417577161503694006': {
|
|
166
|
+
error_kind: 'fmtstring',
|
|
167
|
+
length: 56,
|
|
168
|
+
item_types: [
|
|
169
|
+
{
|
|
170
|
+
kind: 'field'
|
|
171
|
+
}
|
|
172
|
+
]
|
|
173
|
+
},
|
|
165
174
|
'9791669845391776238': {
|
|
166
175
|
error_kind: 'string',
|
|
167
176
|
string: '0 has a square root; you cannot claim it is not square'
|
|
168
177
|
},
|
|
169
|
-
'9885968605480832328': {
|
|
170
|
-
error_kind: 'string',
|
|
171
|
-
string: 'Attempted to read past the length of a CapsuleArray'
|
|
172
|
-
},
|
|
173
178
|
'10135509984888824963': {
|
|
174
179
|
error_kind: 'fmtstring',
|
|
175
180
|
length: 58,
|
|
@@ -183,20 +188,11 @@ const PublicChecksContractArtifact = {
|
|
|
183
188
|
error_kind: 'string',
|
|
184
189
|
string: 'extend_from_bounded_vec out of bounds'
|
|
185
190
|
},
|
|
186
|
-
'11021520179822076911': {
|
|
187
|
-
error_kind: 'string',
|
|
188
|
-
string: 'Attempted to delete past the length of a CapsuleArray'
|
|
189
|
-
},
|
|
190
191
|
'11692359521570349358': {
|
|
191
192
|
error_kind: 'fmtstring',
|
|
192
193
|
length: 40,
|
|
193
194
|
item_types: []
|
|
194
195
|
},
|
|
195
|
-
'12327971061804302172': {
|
|
196
|
-
error_kind: 'fmtstring',
|
|
197
|
-
length: 98,
|
|
198
|
-
item_types: []
|
|
199
|
-
},
|
|
200
196
|
'12469291177396340830': {
|
|
201
197
|
error_kind: 'string',
|
|
202
198
|
string: 'call to assert_max_bit_size'
|
|
@@ -298,10 +294,6 @@ const PublicChecksContractArtifact = {
|
|
|
298
294
|
error_kind: 'string',
|
|
299
295
|
string: 'Timestamp mismatch.'
|
|
300
296
|
},
|
|
301
|
-
'14990209321349310352': {
|
|
302
|
-
error_kind: 'string',
|
|
303
|
-
string: 'attempt to add with overflow'
|
|
304
|
-
},
|
|
305
297
|
'15015303112667403944': {
|
|
306
298
|
error_kind: 'fmtstring',
|
|
307
299
|
length: 17,
|
|
@@ -310,10 +302,6 @@ const PublicChecksContractArtifact = {
|
|
|
310
302
|
'15764276373176857197': {
|
|
311
303
|
error_kind: 'string',
|
|
312
304
|
string: 'Stack too deep'
|
|
313
|
-
},
|
|
314
|
-
'16431471497789672479': {
|
|
315
|
-
error_kind: 'string',
|
|
316
|
-
string: 'Index out of bounds'
|
|
317
305
|
}
|
|
318
306
|
}
|
|
319
307
|
},
|
|
@@ -323,7 +311,7 @@ const PublicChecksContractArtifact = {
|
|
|
323
311
|
{
|
|
324
312
|
...{
|
|
325
313
|
functionType: FunctionType.UTILITY,
|
|
326
|
-
name: '
|
|
314
|
+
name: 'sync_state',
|
|
327
315
|
isOnlySelf: false,
|
|
328
316
|
isStatic: false,
|
|
329
317
|
isInitializer: false,
|
|
@@ -385,6 +373,15 @@ const PublicChecksContractArtifact = {
|
|
|
385
373
|
error_kind: 'string',
|
|
386
374
|
string: 'Input length must be a multiple of 32'
|
|
387
375
|
},
|
|
376
|
+
'5417577161503694006': {
|
|
377
|
+
error_kind: 'fmtstring',
|
|
378
|
+
length: 56,
|
|
379
|
+
item_types: [
|
|
380
|
+
{
|
|
381
|
+
kind: 'field'
|
|
382
|
+
}
|
|
383
|
+
]
|
|
384
|
+
},
|
|
388
385
|
'9791669845391776238': {
|
|
389
386
|
error_kind: 'string',
|
|
390
387
|
string: '0 has a square root; you cannot claim it is not square'
|
|
@@ -472,6 +469,10 @@ const PublicChecksContractArtifact = {
|
|
|
472
469
|
width: 32
|
|
473
470
|
}
|
|
474
471
|
]
|
|
472
|
+
},
|
|
473
|
+
'17655676068928457687': {
|
|
474
|
+
error_kind: 'string',
|
|
475
|
+
string: 'Reader did not read all data'
|
|
475
476
|
}
|
|
476
477
|
}
|
|
477
478
|
},
|