-
Notifications
You must be signed in to change notification settings - Fork 240
/
full_log.ansi
2514 lines (2510 loc) · 429 KB
/
full_log.ansi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Debugger listening on ws://127.0.0.1:9229/88f07978-f8a1-42e3-8993-99fd17813999
For help, see: https://nodejs.org/en/docs/inspector
[33;1maztec:telemetry-client [0m[INFO] Using NoopTelemetryClient [33m+0ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[WARN] No data path given, will not persist any snapshots. [34m+0ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[VERBOSE] Initializing state... [34m+2ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[VERBOSE] Starting anvil... [34m+0ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[VERBOSE] Deploying L1 contracts... [34m+118ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[INFO] Set block interval to 12 [34m+209ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[INFO] Deploying contracts from 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266... [34m+1ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[VERBOSE] Deploying contract in tx 0xd1b23fffc82ed4638a62506a56f00048bb977c5140fb4c475e93ae65df25eaad [34m+33ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[INFO] Deployed Registry at 0x5fbdb2315678afecb367f032d93f642f64180aa3 [34m+12ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[VERBOSE] Deploying contract in tx 0x6c11c3f6513162429baa53595577735066a268ebe12f880e5f8184844d9c5b81 [34m+15ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[INFO] Deployed Fee Juice at 0xe7f1725e7734ce288f8367e1bb143e90bb3f0512 [34m+6ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[VERBOSE] Deploying contract in tx 0x3ca513b9f7757d640df6b0d939345c4633161f65e47e3b6978d1fba5c1e32bd1 [34m+11ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[INFO] Deployed Gerousia at 0x9fe46736679d2d9a65f0992f2272de9f3c7fa6e0 [34m+5ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[VERBOSE] Deploying contract in tx 0x0c843f2cea9ed7a2dd4f56cfa69667d6d613bd1e51f69625ca63a7ed41850c5b [34m+16ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[INFO] Deployed Apella at 0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9 [34m+4ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[VERBOSE] Deploying contract in tx 0x4c06d03f6f00ac9c2fa772b069fd8d5cc158e2f3b5e3b186468fa3980ce73972 [34m+10ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[INFO] Deployed Nomismatokopio at 0xdc64a140aa3e981100a9beca4e685f962f0cf6c9 [34m+4ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[VERBOSE] Deploying contract in tx 0xd3f5f79f7c6e4ffaf58dfd5cc0752a140d519c3cc54189dba1e54078f4b3d016 [34m+9ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[INFO] Deployed Sysstia at 0x5fc8d32690cc91d4c39d9d3abcbd16989f875707 [34m+7ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[INFO] All governance contracts deployed [34m+18ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[VERBOSE] Deploying contract in tx 0x897e923318ca3a8a8a135f6ddf14d318c8a22fd2937a45faf7762122622d0026 [34m+10ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[INFO] Deployed Fee Juice Portal at 0x0165878a594ca255338adfa4d48449f69242eb8f [34m+4ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[VERBOSE] Deploying contract in tx 0x9fe5638c2a5eacaf0b09348eebbfb495ea3ed48d8374fc627ac64bb9147d775a [34m+10ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[VERBOSE] Deploying contract in tx 0x46002e689600a62af8e12b939a88fd695e7d3a2413341777932f25abc9907f78 [34m+28ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[INFO] Deployed Rollup at 0x2279b7a0a67db372996a5fab50d91eaa73d2ebe6 [34m+5ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[INFO] All core contracts deployed [34m+10ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[INFO] Funding fee juice portal contract with fee juice in 0xe0f9d41f0fe72b01beeec19bccf4662b2b5dd2ba0a4ff543c248e87a3f6542a7 [34m+13ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[VERBOSE] Fee juice portal initializing in tx 0xa5f0f5f0b3aa26a26ee14c8f82b80a7434510b0f6ed087f8d5ce3aad432edfc7 [34m+10ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[INFO] Initialized Fee Juice Portal at 0x0165878a594ca255338adfa4d48449f69242eb8f to bridge between L1 0xe7f1725e7734ce288f8367e1bb143e90bb3f0512 to L2 0x0000000000000000000000000000000000000000000000000000000000000005 [34m+0ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[INFO] Inbox available at 0xed179b78d5781f93eb169730d8ad1be7313123f4 [34m+5ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[INFO] Outbox available at 0x1016b5aaa3270a65c315c664ecb238b6db270b64 [34m+3ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[VERBOSE] Upgrading registry contract at 0x5fbdb2315678afecb367f032d93f642f64180aa3 to rollup 0x2279b7a0a67db372996a5fab50d91eaa73d2ebe6 in tx 0x2130191f6b637c15f6dc6ca3a217c937fd5b18ef99a7f5a74ed4637fb05a8b1e [34m+9ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[VERBOSE] Transferring the ownership of the registry contract at 0x5fbdb2315678afecb367f032d93f642f64180aa3 to the Apella 0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9 in tx 0x0517ec9178a0e6a6eb81d0b77c42f3ec32e26678cf2acfecf59cfba90b24734a [34m+10ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[VERBOSE] All transactions for L1 deployment have been mined [34m+8ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[INFO] Funding sysstia in 0x3b834d19bab0e4955a3e22b93bab0fb46545750d969be1d5c0fd70d043e7b22f [34m+14ms[0m
[33;1maztec:utils:watcher [0m[INFO] Watcher created for rollup at 0x2279b7a0a67db372996a5fab50d91eaa73d2ebe6 [33m+0ms[0m
[33;1maztec:utils:watcher [0m[INFO] Watcher started [33m+2ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[VERBOSE] Using native ACVM binary at ../../noir/noir-repo/target/release/acvm with working directory /tmp/02000000/acvm [34m+4ms[0m
[33;1maztec:telemetry-client [0m[INFO] Using NoopTelemetryClient [33m+0ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[VERBOSE] Creating and synching an aztec node... [34m+4ms[0m
[33;1maztec:archiver:lmdb [0m[INFO] Creating archiver ephemeral data store [33m+0ms[0m
[34;1maztec:archiver [0m[INFO] Performing initial chain sync to rollup contract 0x2279b7a0a67db372996a5fab50d91eaa73d2ebe6 [34m+0ms[0m
[34;1maztec:archiver [0m[VERBOSE] Retrieved no new L1 -> L2 messages between L1 blocks 10 and 14. [34m+6ms[0m
[34;1maztec:archiver [0m[VERBOSE] No blocks to retrieve from 10 to 14 [34m+4ms[0m
[35;1maztec:p2p:lmdb [0m[INFO] Creating p2p ephemeral data store [35m+0ms[0m
[31;1maztec:p2p [0m[VERBOSE] Block 1 (proven 1) already beyond current block [31m+0ms[0m
[35;1maztec:l2_block_stream [0m[VERBOSE] Starting L2 block stream batchSize=20 pollIntervalMS=100 [35m+0ms[0m
[31;1maztec:p2p [0m[VERBOSE] Started block downloader from block 1 [31m+1ms[0m
[35;1maztec:l2_block_stream [0m[VERBOSE] Starting L2 block stream proven=false pollIntervalMS=100 batchSize=undefined [35m+0ms[0m
[31;1maztec:world_state [0m[INFO] Started world state synchronizer from block 1 [31m+0ms[0m
[31;1maztec:node [0m[INFO] Using native ACVM at ../../noir/noir-repo/target/release/acvm and working directory /tmp/02000000/acvm [31m+0ms[0m
[32;1maztec:validator [0m[VERBOSE] Initialized validator validatorAddress=0x70997970c51812dc3a010c7d01b50e0d17dc79c8 [32m+0ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Initialized sequencer with 1-32 txs per block. [33m+0ms[0m
[33;1maztec:sequencer [0m[INFO] Sequencer started [33m+1ms[0m
[31;1maztec:node [0m[INFO] Started Aztec Node against chain 0x7a69 with contracts -
Rollup: 0x2279b7a0a67db372996a5fab50d91eaa73d2ebe6
Registry: 0x5fbdb2315678afecb367f032d93f642f64180aa3
Inbox: 0xed179b78d5781f93eb169730d8ad1be7313123f4
Outbox: 0x1016b5aaa3270a65c315c664ecb238b6db270b64 [31m+36ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[VERBOSE] Creating and syncing a simulated prover node... [34m+559ms[0m
[33;1maztec:archiver:lmdb [0m[INFO] Creating archiver ephemeral data store [33m+0ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=0 worldStateHash=0x0fd77c2a44e9430a2e6196ff4ed74eb832169caf335c122899deb80b805570c3 l2BlockSourceNumber=0 l2BlockSourceHash=undefined p2pNumber=0 l1ToL2MessageSourceNumber=0 [33m+31ms[0m
[34;1maztec:archiver [0m[INFO] Performing initial chain sync to rollup contract 0x2279b7a0a67db372996a5fab50d91eaa73d2ebe6 [34m+0ms[0m
[34;1maztec:archiver [0m[VERBOSE] Retrieved no new L1 -> L2 messages between L1 blocks 10 and 14. [34m+3ms[0m
[34;1maztec:archiver [0m[VERBOSE] No blocks to retrieve from 10 to 14 [34m+1ms[0m
[34;1maztec:prover [0m[VERBOSE] Created archiver and synced to block 0 [34m+0ms[0m
[34;1maztec:archiver [0m[VERBOSE] No blocks to retrieve from 10 to 14 [34m+4ms[0m
[35;1maztec:l2_block_stream [0m[VERBOSE] Starting L2 block stream proven=true pollIntervalMS=100 batchSize=undefined [35m+0ms[0m
[31;1maztec:world_state [0m[INFO] Started world state synchronizer from block 1 [31m+0ms[0m
[34;1maztec:prover [0m[INFO] Using native ACVM at ../../noir/noir-repo/target/release/acvm and working directory /tmp/02000000/acvm [34m+133ms[0m
[34;1maztec:prover-client:prover-pool:queue [0m[INFO] Proving queue started [34m+0ms[0m
[34;1maztec:prover-client:prover-agent [0m[INFO] Agent started with concurrency=2 [34m+0ms[0m
[35;1maztec:createProverCoordination [0m[INFO] Using prover coordination via aztec node [35m+0ms[0m
[35;1maztec:prover-node:token-contract [0m[VERBOSE] Balance 0 is below required 4000. Attempting mint. [35m+0ms[0m
[35;1maztec:prover-node:token-contract [0m[VERBOSE] Minted 4000 test tokens [35m+24ms[0m
[34;1maztec:prover-node:bond-manager [0m[VERBOSE] Prover bond top-up 2000 required to get 0 to target 2000 [34m+0ms[0m
[35;1maztec:prover-node:token-contract [0m[VERBOSE] Approving max allowance for 0x06b1d212b8da92b83af328de5eef4e211da02097 [35m+10ms[0m
[34;1maztec:prover-node:bond-manager [0m[VERBOSE] Prover bond top-up of 2000 completed [34m+31ms[0m
[36;1maztec:prover-node:epoch-monitor [0m[INFO] Started EpochMonitor maxPendingJobs=10 pollingIntervalMs=200 [36m+0ms[0m
[36;1maztec:prover-node:claims-monitor [0m[INFO] Started ClaimsMonitor with prover address 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc maxPendingJobs=10 pollingIntervalMs=200 [36m+0ms[0m
[36;1maztec:prover-node [0m[INFO] Started ProverNode pollingIntervalMs=200 maxPendingJobs=10 [36m+0ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[VERBOSE] Creating pxe... [34m+488ms[0m
[34;1maztec:pxe:keystore:lmdb [0m[INFO] Creating pxe_key_store ephemeral data store [34m+0ms[0m
[34;1maztec:pxe:data:lmdb [0m[INFO] Creating pxe_data ephemeral data store [34m+0ms[0m
[34;1maztec:pxe_synchronizer [0m[INFO] Initial sync complete [34m+0ms[0m
[36;1maztec:pxe_service [0m[INFO] Added protocol contract AuthRegistry at 0x0000000000000000000000000000000000000000000000000000000000000001 [36m+0ms[0m
[36;1maztec:pxe_service [0m[INFO] Added protocol contract ContractInstanceDeployer at 0x0000000000000000000000000000000000000000000000000000000000000002 [36m+16ms[0m
[36;1maztec:pxe_service [0m[INFO] Added protocol contract ContractClassRegisterer at 0x0000000000000000000000000000000000000000000000000000000000000003 [36m+21ms[0m
[36;1maztec:pxe_service [0m[INFO] Added protocol contract MultiCallEntrypoint at 0x0000000000000000000000000000000000000000000000000000000000000004 [36m+13ms[0m
[34;1maztec:archiver [0m[VERBOSE] Retrieved no new L1 -> L2 messages between L1 blocks 15 and 17. [34m+1s[0m
[34;1maztec:archiver [0m[VERBOSE] No blocks to retrieve from 15 to 17 [34m+2ms[0m
[36;1maztec:pxe_service [0m[INFO] Added protocol contract FeeJuice at 0x0000000000000000000000000000000000000000000000000000000000000005 [36m+65ms[0m
[36;1maztec:pxe_service [0m[INFO] Added protocol contract Router at 0x0000000000000000000000000000000000000000000000000000000000000006 [36m+30ms[0m
[36;1maztec:pxe_service [0m[INFO] Started PXE connected to chain 31337 version 1 [36m+0ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[VERBOSE] Applying state transition for 2_accounts... [34m+328ms[0m
[36;1maztec:full_prover_test:full_prover [0m[VERBOSE] Simulating account deployment... [36m+0ms[0m
[36;1maztec:pxe_service [0m[INFO] Registered account 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 [36m+67ms[0m
[36;1maztec:pxe_service [0m[INFO] Registered account 0x2f3bf1886050056aabbe425c72e2dfa653f71080bb7696647cab05c54f497ae8 [36m+0ms[0m
[36;1maztec:pxe_service [0m[INFO] Added contract SchnorrAccount at 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 [36m+153ms[0m
[36;1maztec:pxe_service [0m[INFO] Added contract SchnorrAccount at 0x2f3bf1886050056aabbe425c72e2dfa653f71080bb7696647cab05c54f497ae8 [36m+0ms[0m
[31;1maztec:simulator:private_execution [0m[VERBOSE] Executing external function MultiCallEntrypoint:entrypoint@0x0000000000000000000000000000000000000000000000000000000000000004 [31m+0ms[0m
[31;1maztec:simulator:private_execution [0m[VERBOSE] Executing external function SchnorrAccount:constructor@0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 [31m+0ms[0m
[36;1maztec:pxe_service [0m[VERBOSE] Simulation completed for 0x0000000000000000000000000000000000000000000000000000000000000004:entrypoint [36m+396ms[0m
[31;1maztec:node [0m[INFO] Simulating tx 1478643d3efe3b3d82b1e56ec7e120a23b3bbc759456975c168ea2ecb518e481 [31m+2s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=0 worldStateHash=0x0fd77c2a44e9430a2e6196ff4ed74eb832169caf335c122899deb80b805570c3 l2BlockSourceNumber=0 l2BlockSourceHash=undefined p2pNumber=0 l1ToL2MessageSourceNumber=0 [33m+2s[0m
[34;1maztec:archiver [0m[VERBOSE] Retrieved no new L1 -> L2 messages between L1 blocks 15 and 17. [34m+2s[0m
[34;1maztec:archiver [0m[VERBOSE] No blocks to retrieve from 15 to 17 [34m+4ms[0m
[36;1maztec:pxe_service [0m[INFO] Executed local simulation for 1478643d3efe3b3d82b1e56ec7e120a23b3bbc759456975c168ea2ecb518e481 [36m+714ms[0m
[31;1maztec:simulator:private_execution [0m[VERBOSE] Executing external function MultiCallEntrypoint:entrypoint@0x0000000000000000000000000000000000000000000000000000000000000004 [31m+0ms[0m
[31;1maztec:simulator:private_execution [0m[VERBOSE] Executing external function SchnorrAccount:constructor@0x2f3bf1886050056aabbe425c72e2dfa653f71080bb7696647cab05c54f497ae8 [31m+0ms[0m
[36;1maztec:pxe_service [0m[VERBOSE] Simulation completed for 0x0000000000000000000000000000000000000000000000000000000000000004:entrypoint [36m+325ms[0m
[31;1maztec:node [0m[INFO] Simulating tx 1facd099f88103cb546eb65fed65a75a731c3fa779aced2f8c9fe176a2afcce9 [31m+948ms[0m
[36;1maztec:pxe_service [0m[INFO] Executed local simulation for 1facd099f88103cb546eb65fed65a75a731c3fa779aced2f8c9fe176a2afcce9 [36m+601ms[0m
[36;1maztec:full_prover_test:full_prover [0m[VERBOSE] Deploying accounts... [36m+3s[0m
[36;1maztec:pxe_service [0m[INFO] Sending transaction 1478643d3efe3b3d82b1e56ec7e120a23b3bbc759456975c168ea2ecb518e481 [36m+1s[0m
[31;1maztec:node [0m[INFO] Received tx 1478643d3efe3b3d82b1e56ec7e120a23b3bbc759456975c168ea2ecb518e481 [31m+1s[0m
[36;1maztec:pxe_service [0m[INFO] Sending transaction 1facd099f88103cb546eb65fed65a75a731c3fa779aced2f8c9fe176a2afcce9 [36m+1ms[0m
[31;1maztec:node [0m[INFO] Received tx 1facd099f88103cb546eb65fed65a75a731c3fa779aced2f8c9fe176a2afcce9 [31m+1ms[0m
[36;1maztec:tx_pool [0m[INFO] Adding tx with id 1478643d3efe3b3d82b1e56ec7e120a23b3bbc759456975c168ea2ecb518e481 eventName=tx-added-to-pool txHash=1478643d3efe3b3d82b1e56ec7e120a23b3bbc759456975c168ea2ecb518e481 noteEncryptedLogCount=1 encryptedLogCount=0 unencryptedLogCount=0 noteEncryptedLogSize=493 encryptedLogSize=8 unencryptedLogSize=8 newCommitmentCount=1 newNullifierCount=3 proofSize=0 size=16941 feePaymentMethod=none classRegisteredCount=0 [36m+0ms[0m
[36;1maztec:tx_pool [0m[INFO] Adding tx with id 1facd099f88103cb546eb65fed65a75a731c3fa779aced2f8c9fe176a2afcce9 eventName=tx-added-to-pool txHash=1facd099f88103cb546eb65fed65a75a731c3fa779aced2f8c9fe176a2afcce9 noteEncryptedLogCount=1 encryptedLogCount=0 unencryptedLogCount=0 noteEncryptedLogSize=493 encryptedLogSize=8 unencryptedLogSize=8 newCommitmentCount=1 newNullifierCount=3 proofSize=0 size=16941 feePaymentMethod=none classRegisteredCount=0 [36m+4ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=0 worldStateHash=0x0fd77c2a44e9430a2e6196ff4ed74eb832169caf335c122899deb80b805570c3 l2BlockSourceNumber=0 l2BlockSourceHash=undefined p2pNumber=0 l1ToL2MessageSourceNumber=0 [33m+2s[0m
[36;1maztec:pxe_service [0m[INFO] Sent transaction 1478643d3efe3b3d82b1e56ec7e120a23b3bbc759456975c168ea2ecb518e481 [36m+29ms[0m
[36;1maztec:pxe_service [0m[INFO] Sent transaction 1facd099f88103cb546eb65fed65a75a731c3fa779aced2f8c9fe176a2afcce9 [36m+3ms[0m
[33;1maztec:sequencer [0m[INFO] Building blockNumber=1 txCount=2 slotNumber=4 [33m+15ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Retrieved 0 L1 to L2 messages for block 1 [33m+1ms[0m
[35;1maztec:sequencer-client:block_builder_light [0m[VERBOSE] Starting new block numTxs=2 globalVariables=[object Object] l1ToL2Messages= [35m+0ms[0m
[35;1maztec:sequencer-client:block_builder_light [0m[VERBOSE] Adding new tx to block txHash=1478643d3efe3b3d82b1e56ec7e120a23b3bbc759456975c168ea2ecb518e481 [35m+6ms[0m
[35;1maztec:sequencer-client:block_builder_light [0m[VERBOSE] Adding new tx to block txHash=1facd099f88103cb546eb65fed65a75a731c3fa779aced2f8c9fe176a2afcce9 [35m+38ms[0m
[35;1maztec:sequencer-client:block_builder_light [0m[VERBOSE] Setting block as completed and adding 0 padding txs [35m+40ms[0m
[35;1maztec:sequencer-client:block_builder_light [0m[VERBOSE] Finalising block [35m+0ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Assembled block 1 (txEffectsHash: 00a40df55118b7536d6697aeda3398a2e6bb2cda35bbadc942fc5beff434142e) eventName=l2-block-built creator=0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266 duration=98.15720796585083 publicProcessDuration=78.71467590332031 rollupCircuitsDuration=95.19495809078217 txCount=2 blockNumber=1 blockTimestamp=1730721769 noteEncryptedLogLength=986 noteEncryptedLogCount=2 encryptedLogLength=16 encryptedLogCount=0 unencryptedLogCount=0 unencryptedLogSize=16 [33m+98ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Collecting attestations [33m+0ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Attestations collected [33m+2ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Collecting proof quotes [33m+0ms[0m
[33;1maztec:sequencer [0m[VERBOSE] No epoch to prove [33m+5ms[0m
[33;1maztec:sequencer [0m[VERBOSE] No proof quote available [33m+0ms[0m
[33;1maztec:sequencer:publisher [0m[VERBOSE] Submitting propose transaction [33m+0ms[0m
[33;1maztec:sequencer:publisher [0m[INFO] Published L2 block to L1 rollup contract gasPrice=1118014540 gasUsed=505591 transactionHash=0xf2f27461f78ab187fda838fb4231b74866c53729a108efdfdad21b36c78c679f calldataGas=29584 calldataSize=2596 sender=0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266 txCount=2 blockNumber=1 blockTimestamp=1730721769 noteEncryptedLogLength=986 noteEncryptedLogCount=2 encryptedLogLength=16 encryptedLogCount=0 unencryptedLogCount=0 unencryptedLogSize=16 eventName=rollup-published-to-l1 slotNumber=4 blockHash=0x075453d18c5628590a03126ea7b14261b7a9ceb6bf955897bcf5d2f371aa479d [33m+129ms[0m
[33;1maztec:sequencer [0m[INFO] Submitted rollup block 1 with 2 transactions duration=99ms (Submitter: 0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266) [33m+135ms[0m
[34;1maztec:archiver [0m[VERBOSE] Retrieved no new L1 -> L2 messages between L1 blocks 18 and 18. [34m+4s[0m
[34;1maztec:archiver [0m[VERBOSE] Retrieved no new L1 -> L2 messages between L1 blocks 18 and 18. [34m+3s[0m
[34;1maztec:archiver [0m[VERBOSE] Processed 1 new L2 blocks up to 1 [34m+29ms[0m
[34;1maztec:archiver [0m[VERBOSE] Processed 1 new L2 blocks up to 1 [34m+34ms[0m
[36;1maztec:cheat_codes:eth [0m[VERBOSE] Mined 1 L1 blocks [36m+0ms[0m
[36;1maztec:cheat_codes:eth [0m[VERBOSE] Warped L1 timestamp to 1730721793 [36m+0ms[0m
[33;1maztec:utils:watcher [0m[INFO] Slot 4 was filled, jumped to next slot [33m+6s[0m
[31;1maztec:world_state [0m[VERBOSE] Handling new L2 blocks from 1 to 1 [31m+5s[0m
[31;1maztec:world_state [0m[VERBOSE] Handled new L2 block eventName=l2-block-handled duration=12.292266011238098 unfinalisedBlockNumber=1 finalisedBlockNumber=0 oldestHistoricBlock=1 txCount=2 blockNumber=1 blockTimestamp=1730721769 noteEncryptedLogLength=986 noteEncryptedLogCount=2 encryptedLogLength=16 encryptedLogCount=0 unencryptedLogCount=0 unencryptedLogSize=16 [31m+12ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=1 worldStateHash=0x075453d18c5628590a03126ea7b14261b7a9ceb6bf955897bcf5d2f371aa479d l2BlockSourceNumber=1 l2BlockSourceHash=0x075453d18c5628590a03126ea7b14261b7a9ceb6bf955897bcf5d2f371aa479d p2pNumber=1 l1ToL2MessageSourceNumber=1 [33m+1s[0m
[31;1maztec:simulator:unconstrained_execution [0m[VERBOSE] Executing unconstrained function 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78:0x00000000(compute_note_hash_and_optionally_a_nullifier) [31m+0ms[0m
[34;1maztec:archiver [0m[VERBOSE] Retrieved no new L1 -> L2 messages between L1 blocks 19 and 19. [34m+1s[0m
[33;1maztec:note_processor [0m[VERBOSE] Added incoming note for contract 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 at slot 0x0000000000000000000000000000000000000000000000000000000000000001 with nullifier 0x2f4f1f56d24ad9206fe9f38a2082eaf201770210741046204dbd66117d5dd1be [33m+0ms[0m
[33;1maztec:note_processor [0m[VERBOSE] Added outgoing note for contract 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 at slot 0x0000000000000000000000000000000000000000000000000000000000000001 [33m+0ms[0m
[34;1maztec:archiver [0m[VERBOSE] No blocks to retrieve from 19 to 19 [34m+4ms[0m
[34;1maztec:archiver [0m[VERBOSE] Retrieved no new L1 -> L2 messages between L1 blocks 19 and 19. [34m+1s[0m
[34;1maztec:archiver [0m[VERBOSE] No blocks to retrieve from 19 to 19 [34m+5ms[0m
[31;1maztec:simulator:unconstrained_execution [0m[VERBOSE] Executing unconstrained function 0x2f3bf1886050056aabbe425c72e2dfa653f71080bb7696647cab05c54f497ae8:0x00000000(compute_note_hash_and_optionally_a_nullifier) [31m+0ms[0m
[33;1maztec:note_processor [0m[VERBOSE] Added incoming note for contract 0x2f3bf1886050056aabbe425c72e2dfa653f71080bb7696647cab05c54f497ae8 at slot 0x0000000000000000000000000000000000000000000000000000000000000001 with nullifier 0x26481455528ca0656413bf6cc1945ef1c8987543c0be40115a73346780787849 [33m+0ms[0m
[33;1maztec:note_processor [0m[VERBOSE] Added outgoing note for contract 0x2f3bf1886050056aabbe425c72e2dfa653f71080bb7696647cab05c54f497ae8 at slot 0x0000000000000000000000000000000000000000000000000000000000000001 [33m+0ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[VERBOSE] State transition for 2_accounts complete. [34m+6s[0m
[36;1maztec:full_prover_test:full_prover [0m[VERBOSE] Wallet 0 address: 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 [36m+2s[0m
[36;1maztec:full_prover_test:full_prover [0m[VERBOSE] Wallet 1 address: 0x2f3bf1886050056aabbe425c72e2dfa653f71080bb7696647cab05c54f497ae8 [36m+0ms[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[VERBOSE] Applying state transition for client_prover_integration... [34m+21ms[0m
[36;1maztec:full_prover_test:full_prover [0m[VERBOSE] Public deploy accounts... [36m+0ms[0m
[31;1maztec:simulator:private_execution [0m[VERBOSE] Executing external function SchnorrAccount:entrypoint@0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 [31m+0ms[0m
[31;1maztec:simulator:private_execution [0m[VERBOSE] Executing external function ContractClassRegisterer:register@0x0000000000000000000000000000000000000000000000000000000000000003 [31m+0ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=1 worldStateHash=0x075453d18c5628590a03126ea7b14261b7a9ceb6bf955897bcf5d2f371aa479d l2BlockSourceNumber=1 l2BlockSourceHash=0x075453d18c5628590a03126ea7b14261b7a9ceb6bf955897bcf5d2f371aa479d p2pNumber=1 l1ToL2MessageSourceNumber=1 [33m+1s[0m
[31;1maztec:simulator:client_execution_context [0m[VERBOSE] debug_log ContractClassRegistered: 0x0f1cf77f11813ebba27b8b30eed1dad1afd77eeb44ff6be5002a15ce844a766b,0x07d2a22d4babe42ea1f8c46ee6fd73305d85030a74fe8bb4bb22532320170996,0x261ee24b32b2d7345986eec3c4e38d886a35b32cea86c9c78fd14a7e8413a66d,0x0000000000000000000000000000000000000000000000000000000000000000 [31m+0ms[0m
[31;1maztec:simulator:client_execution_context [0m[VERBOSE] Emitted unencrypted log from ContractClassRegisterer: "UnencryptedL2Log(contractAddress: 0x0000000000000000000000000000000000000000000000000000000000000003..." [31m+13ms[0m
[31;1maztec:simulator:private_execution [0m[VERBOSE] Executing external function ContractInstanceDeployer:deploy@0x0000000000000000000000000000000000000000000000000000000000000002 [31m+0ms[0m
[31;1maztec:simulator:client_execution_context [0m[VERBOSE] debug_log ContractInstanceDeployed: 0x0000000085864497636cf755ae7bde03f267ce01a520981c21c3682aaf82a631,0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78,0x0000000000000000000000000000000000000000000000000000000000000001,0x0000000000000000000000000000000000000000000000000000000000000001,0x0f1cf77f11813ebba27b8b30eed1dad1afd77eeb44ff6be5002a15ce844a766b,0x16536eaed44698e50960339aebe76f2147a740c4516d6dbce33201672bab35ac,0x29501668793e5436f9108cca6132e58380e6e0a707e88ba7d92cfcb98545dd6c,0x06a6ba4a51a3e920693e5fe897610e365723e2fe1890bd75b58d5251308312d9,0x1f5a861b3439fa587dec457787566fb08bf82afc11cc35c1a9207d2233aba0c0,0x0c9a56ee7dfaa1dc39effd31ed32ab151f5857f3cb7f63729a4f48a3a74a9b20,0x019984bda08609d5cc10f4de27bbcc0defdeb897e93433dd396bfc5ba5bae210,0x170bfbb133bab1d946bec2ee7b21d0187f04aea092a87d9807c9027cdb8f2ad6,0x2fa4a1684b268c844526d7a56bac304b1da3b054e1b3334129e5d14ffda3d31f,0x107fd85bac5ee96326da88923c66f61aef89577bb82091c018363dbe6d4d76de,0x0000000000000000000000000000000000000000000000000000000000000000 [31m+148ms[0m
[31;1maztec:simulator:client_execution_context [0m[VERBOSE] Emitted unencrypted log: "UnencryptedL2Log(contractAddress: 0x0000000000000000000000000000000000000000000000000000000000000002..." [31m+61ms[0m
[31;1maztec:simulator:private_execution [0m[VERBOSE] Executing external function ContractInstanceDeployer:deploy@0x0000000000000000000000000000000000000000000000000000000000000002 [31m+0ms[0m
[31;1maztec:simulator:client_execution_context [0m[VERBOSE] debug_log ContractInstanceDeployed: 0x0000000085864497636cf755ae7bde03f267ce01a520981c21c3682aaf82a631,0x2f3bf1886050056aabbe425c72e2dfa653f71080bb7696647cab05c54f497ae8,0x0000000000000000000000000000000000000000000000000000000000000001,0x0000000000000000000000000000000000000000000000000000000000000001,0x0f1cf77f11813ebba27b8b30eed1dad1afd77eeb44ff6be5002a15ce844a766b,0x27ae1e82fbedce1fd145b7afe7a4c8d0bcb6a9049d4dba3bc9a0afe3d4bcdf8f,0x29fec3bdb4e5b751d427770de3fda46ab827e3bddf35e33847aa989222b99383,0x0fd1fe7b90590ae5a86a8ebab477a26d846bf685ed5be6460e42298b094b8589,0x2db565edfe5fc461654a5a011870cebf5c39ffe9dd12421a377514a3967c4659,0x09ed668a46b90dd9fc5d4b3327e9f67b38b3f0641398524f566814b9b4dbe992,0x2821116ece19dbe5f9e026fda962fbcbc33fc304662feaae87cf01a500ab0f3d,0x1d0f56c83990cc996be49d34f916da5212e1389a8f6092f1ee209067f132ef11,0x2b2677d624f6f486b3d54ae493617ec448d9c7157d59afd4cd41b2c27920ab2e,0x26382608904ff524fdb2a872416b2d716dbb5c3497c0cdba50ca52ba0a0a07ee,0x0000000000000000000000000000000000000000000000000000000000000000 [31m+115ms[0m
[31;1maztec:simulator:client_execution_context [0m[VERBOSE] Emitted unencrypted log: "UnencryptedL2Log(contractAddress: 0x0000000000000000000000000000000000000000000000000000000000000002..." [31m+61ms[0m
[36;1maztec:pxe_service [0m[VERBOSE] Simulation completed for 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78:entrypoint [36m+3s[0m
[31;1maztec:node [0m[INFO] Simulating tx 18ecb1116941710b3b184c78ef6bbc0ad2fa3ab374c8be2597012b92b7394fd2 [31m+4s[0m
[36;1maztec:pxe_service [0m[INFO] Executed local simulation for 18ecb1116941710b3b184c78ef6bbc0ad2fa3ab374c8be2597012b92b7394fd2 [36m+900ms[0m
[36;1maztec:pxe_service [0m[INFO] Sending transaction 18ecb1116941710b3b184c78ef6bbc0ad2fa3ab374c8be2597012b92b7394fd2 [36m+845ms[0m
[31;1maztec:node [0m[INFO] Received tx 18ecb1116941710b3b184c78ef6bbc0ad2fa3ab374c8be2597012b92b7394fd2 [31m+871ms[0m
[36;1maztec:tx_pool [0m[INFO] Adding tx with id 18ecb1116941710b3b184c78ef6bbc0ad2fa3ab374c8be2597012b92b7394fd2 eventName=tx-added-to-pool txHash=18ecb1116941710b3b184c78ef6bbc0ad2fa3ab374c8be2597012b92b7394fd2 noteEncryptedLogCount=0 encryptedLogCount=0 unencryptedLogCount=3 noteEncryptedLogSize=8 encryptedLogSize=8 unencryptedLogSize=97248 newCommitmentCount=0 newNullifierCount=4 proofSize=0 size=113696 feePaymentMethod=none classRegisteredCount=1 [36m+5s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=1 worldStateHash=0x075453d18c5628590a03126ea7b14261b7a9ceb6bf955897bcf5d2f371aa479d l2BlockSourceNumber=1 l2BlockSourceHash=0x075453d18c5628590a03126ea7b14261b7a9ceb6bf955897bcf5d2f371aa479d p2pNumber=1 l1ToL2MessageSourceNumber=1 [33m+3s[0m
[36;1maztec:pxe_service [0m[INFO] Sent transaction 18ecb1116941710b3b184c78ef6bbc0ad2fa3ab374c8be2597012b92b7394fd2 [36m+24ms[0m
[33;1maztec:sequencer [0m[INFO] Building blockNumber=2 txCount=1 slotNumber=5 [33m+35ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Retrieved 0 L1 to L2 messages for block 2 [33m+0ms[0m
[35;1maztec:sequencer-client:block_builder_light [0m[VERBOSE] Starting new block numTxs=2 globalVariables=[object Object] l1ToL2Messages= [35m+0ms[0m
[35;1maztec:sequencer-client:block_builder_light [0m[VERBOSE] Adding new tx to block txHash=18ecb1116941710b3b184c78ef6bbc0ad2fa3ab374c8be2597012b92b7394fd2 [35m+13ms[0m
[35;1maztec:sequencer-client:block_builder_light [0m[VERBOSE] Setting block as completed and adding 1 padding txs [35m+36ms[0m
[35;1maztec:sequencer-client:block_builder_light [0m[VERBOSE] Adding new tx to block txHash=0000000000000000000000000000000000000000000000000000000000000000 [35m+1ms[0m
[35;1maztec:sequencer-client:block_builder_light [0m[VERBOSE] Finalising block [35m+41ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Assembled block 2 (txEffectsHash: 00d35199a7b27b9ef5ce510c850229c46abf2adc075269ed64690d77d66129aa) eventName=l2-block-built creator=0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266 duration=108.54652404785156 publicProcessDuration=43.66900098323822 rollupCircuitsDuration=105.03170502185822 txCount=1 blockNumber=2 blockTimestamp=1730721793 noteEncryptedLogLength=8 noteEncryptedLogCount=0 encryptedLogLength=8 encryptedLogCount=0 unencryptedLogCount=3 unencryptedLogSize=97248 [33m+109ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Collecting attestations [33m+0ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Attestations collected [33m+1ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Collecting proof quotes [33m+0ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Retrieved 0 quotes, slot: 5, epoch to prove: 0 [33m+2ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Failed to find any valid proof quotes [33m+0ms[0m
[33;1maztec:sequencer [0m[VERBOSE] No proof quote available [33m+0ms[0m
[33;1maztec:sequencer:publisher [0m[VERBOSE] Submitting propose transaction [33m+5s[0m
[33;1maztec:sequencer:publisher [0m[INFO] Published L2 block to L1 rollup contract gasPrice=1090789956 gasUsed=1136949 transactionHash=0x3c183334867a66ccbf8d51ee2b264e41878eef1d8fd39854c54ec62ff053afc0 calldataGas=411384 calldataSize=98532 sender=0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266 txCount=1 blockNumber=2 blockTimestamp=1730721793 noteEncryptedLogLength=8 noteEncryptedLogCount=0 encryptedLogLength=8 encryptedLogCount=0 unencryptedLogCount=3 unencryptedLogSize=97248 eventName=rollup-published-to-l1 slotNumber=5 blockHash=0x2b02a99d07f1b16bbb991886965c0212dce143e768ea8612ecda7e08743d9881 [33m+78ms[0m
[33;1maztec:sequencer [0m[INFO] Submitted rollup block 2 with 1 transactions duration=109ms (Submitter: 0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266) [33m+84ms[0m
[34;1maztec:archiver [0m[VERBOSE] Retrieved no new L1 -> L2 messages between L1 blocks 20 and 20. [34m+4s[0m
[34;1maztec:archiver [0m[VERBOSE] Retrieved no new L1 -> L2 messages between L1 blocks 20 and 20. [34m+4s[0m
[34;1maztec:archiver:block-helper [0m[VERBOSE] Registering contract class 0x0f1cf77f11813ebba27b8b30eed1dad1afd77eeb44ff6be5002a15ce844a766b [34m+0ms[0m
[34;1maztec:archiver:block-helper [0m[VERBOSE] Store contract instance at 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 [34m+1ms[0m
[34;1maztec:archiver:block-helper [0m[VERBOSE] Store contract instance at 0x2f3bf1886050056aabbe425c72e2dfa653f71080bb7696647cab05c54f497ae8 [34m+0ms[0m
[34;1maztec:archiver:block-helper [0m[VERBOSE] Registering contract class 0x0f1cf77f11813ebba27b8b30eed1dad1afd77eeb44ff6be5002a15ce844a766b [34m+0ms[0m
[34;1maztec:archiver:block-helper [0m[VERBOSE] Store contract instance at 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 [34m+0ms[0m
[34;1maztec:archiver:block-helper [0m[VERBOSE] Store contract instance at 0x2f3bf1886050056aabbe425c72e2dfa653f71080bb7696647cab05c54f497ae8 [34m+1ms[0m
[34;1maztec:archiver [0m[VERBOSE] Processed 1 new L2 blocks up to 2 [34m+60ms[0m
[34;1maztec:archiver [0m[VERBOSE] Processed 1 new L2 blocks up to 2 [34m+59ms[0m
[36;1maztec:cheat_codes:eth [0m[VERBOSE] Mined 1 L1 blocks [36m+5s[0m
[36;1maztec:cheat_codes:eth [0m[VERBOSE] Warped L1 timestamp to 1730721817 [36m+0ms[0m
[33;1maztec:utils:watcher [0m[INFO] Slot 5 was filled, jumped to next slot [33m+5s[0m
[31;1maztec:world_state [0m[VERBOSE] Handling new L2 blocks from 2 to 2 [31m+5s[0m
[31;1maztec:world_state [0m[VERBOSE] Handled new L2 block eventName=l2-block-handled duration=11.513062953948975 unfinalisedBlockNumber=2 finalisedBlockNumber=0 oldestHistoricBlock=1 txCount=1 blockNumber=2 blockTimestamp=1730721793 noteEncryptedLogLength=8 noteEncryptedLogCount=0 encryptedLogLength=8 encryptedLogCount=0 unencryptedLogCount=3 unencryptedLogSize=97248 [31m+12ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=2 worldStateHash=0x2b02a99d07f1b16bbb991886965c0212dce143e768ea8612ecda7e08743d9881 l2BlockSourceNumber=2 l2BlockSourceHash=0x2b02a99d07f1b16bbb991886965c0212dce143e768ea8612ecda7e08743d9881 p2pNumber=2 l1ToL2MessageSourceNumber=2 [33m+1s[0m
[36;1maztec:full_prover_test:full_prover [0m[VERBOSE] Deploying TokenContract... [36m+5s[0m
[34;1maztec:archiver [0m[VERBOSE] Retrieved no new L1 -> L2 messages between L1 blocks 21 and 21. [34m+1s[0m
[34;1maztec:archiver [0m[VERBOSE] Retrieved no new L1 -> L2 messages between L1 blocks 21 and 21. [34m+1s[0m
[34;1maztec:archiver [0m[VERBOSE] No blocks to retrieve from 21 to 21 [34m+4ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=2 worldStateHash=0x2b02a99d07f1b16bbb991886965c0212dce143e768ea8612ecda7e08743d9881 l2BlockSourceNumber=2 l2BlockSourceHash=0x2b02a99d07f1b16bbb991886965c0212dce143e768ea8612ecda7e08743d9881 p2pNumber=2 l1ToL2MessageSourceNumber=2 [33m+1s[0m
[34;1maztec:archiver [0m[VERBOSE] No blocks to retrieve from 21 to 21 [34m+5ms[0m
[36;1maztec:pxe_service [0m[INFO] Added contract Token at 0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c [36m+2s[0m
[32;1maztec:js:contract_interaction [0m[INFO] Creating request for registering contract class 0x0cfc2c573815736bafb92d98afc3ec28d763d621235ca034fe25e5cdd012fe61 as part of deployment for 0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c [32m+0ms[0m
[31;1maztec:simulator:private_execution [0m[VERBOSE] Executing external function SchnorrAccount:entrypoint@0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 [31m+0ms[0m
[31;1maztec:simulator:private_execution [0m[VERBOSE] Executing external function ContractClassRegisterer:register@0x0000000000000000000000000000000000000000000000000000000000000003 [31m+0ms[0m
[31;1maztec:simulator:client_execution_context [0m[VERBOSE] debug_log ContractClassRegistered: 0x0cfc2c573815736bafb92d98afc3ec28d763d621235ca034fe25e5cdd012fe61,0x10e7f93c0592f499b03de7838b183dc1df835312bd3ba9fa5058d5c450c08e26,0x2780317acaab64db6994ff1e8eb81f55ea762e550f23c0a6a25897ea98655aeb,0x3051f8fcd023b241ed42a6f0a2b42f80150d3da65e4fd2d1e82a28f5ff57ab99 [31m+0ms[0m
[31;1maztec:simulator:client_execution_context [0m[VERBOSE] Emitted unencrypted log from ContractClassRegisterer: "UnencryptedL2Log(contractAddress: 0x0000000000000000000000000000000000000000000000000000000000000003..." [31m+19ms[0m
[31;1maztec:simulator:private_execution [0m[VERBOSE] Executing external function ContractInstanceDeployer:deploy@0x0000000000000000000000000000000000000000000000000000000000000002 [31m+0ms[0m
[31;1maztec:simulator:client_execution_context [0m[VERBOSE] debug_log ContractInstanceDeployed: 0x0000000085864497636cf755ae7bde03f267ce01a520981c21c3682aaf82a631,0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c,0x0000000000000000000000000000000000000000000000000000000000000001,0x1cb302369847cad4ed714021718e4e74d323f7b90c4d34f5b99a0c96dabce512,0x0cfc2c573815736bafb92d98afc3ec28d763d621235ca034fe25e5cdd012fe61,0x021b180c8d4ab9818f0f8f4aeb842e3ac311dc0b8d522028c933d8bbe1fe748b,0x01498945581e0eb9f8427ad6021184c700ef091d570892c437d12c7d90364bbd,0x170ae506787c5c43d6ca9255d571c10fa9ffa9d141666e290c347c5c9ab7e344,0x00c044b05b6ca83b9c2dbae79cc1135155956a64e136819136e9947fe5e5866c,0x1c1f0ca244c7cd46b682552bff8ae77dea40b966a71de076ec3b7678f2bdb151,0x1b00316144359e9a3ec8e49c1cdb7eeb0cedd190dfd9dc90eea5115aa779e287,0x080ffc74d7a8b0bccb88ac11f45874172f3847eb8b92654aaa58a3d2b8dc7833,0x019c111f36ad3fc1d9b7a7a14344314d2864b94f030594cd67f753ef774a1efb,0x2039907fe37f08d10739255141bb066c506a12f7d1e8dfec21abc58494705b6f,0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 [31m+151ms[0m
[31;1maztec:simulator:client_execution_context [0m[VERBOSE] Emitted unencrypted log: "UnencryptedL2Log(contractAddress: 0x0000000000000000000000000000000000000000000000000000000000000002..." [31m+62ms[0m
[31;1maztec:simulator:client_execution_context [0m[VERBOSE] Created PublicExecutionRequest to public_dispatch@0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c, of type [enqueued], side-effect counter [11] [31m+184ms[0m
[36;1maztec:pxe_service [0m[VERBOSE] Simulation completed for 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78:entrypoint [36m+1s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=2 worldStateHash=0x2b02a99d07f1b16bbb991886965c0212dce143e768ea8612ecda7e08743d9881 l2BlockSourceNumber=2 l2BlockSourceHash=0x2b02a99d07f1b16bbb991886965c0212dce143e768ea8612ecda7e08743d9881 p2pNumber=2 l1ToL2MessageSourceNumber=2 [33m+2s[0m
[31;1maztec:node [0m[INFO] Simulating tx 0e8c4aa9fdd145482da5308d7016f4ed47d06a6f2183d9326cbbb6a6c17ea293 [31m+5s[0m
[33;1maztec:sequencer [0m[VERBOSE] Processing tx 0e8c4aa9fdd145482da5308d7016f4ed47d06a6f2183d9326cbbb6a6c17ea293 [33m+0ms[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Executing public external function Token:constructor (via dispatch)@0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c with 12000000 allocated L2 gas. [36m+0ms[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Token:constructor (via dispatch) returned, reverted: false. eventName=avm-simulation appCircuitName=Token:constructor (via dispatch) duration=365.93981993198395 bytecodeSize=37708 [36m+367ms[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Token:constructor (via dispatch) simulation complete. Reverted=false. Consumed 577335 L2 gas, ending with 11422665 L2 gas left. [36m+2ms[0m
[36;1maztec:pxe_service [0m[INFO] Executed local simulation for 0e8c4aa9fdd145482da5308d7016f4ed47d06a6f2183d9326cbbb6a6c17ea293 [36m+2s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=2 worldStateHash=0x2b02a99d07f1b16bbb991886965c0212dce143e768ea8612ecda7e08743d9881 l2BlockSourceNumber=2 l2BlockSourceHash=0x2b02a99d07f1b16bbb991886965c0212dce143e768ea8612ecda7e08743d9881 p2pNumber=2 l1ToL2MessageSourceNumber=2 [33m+2s[0m
[36;1maztec:pxe_service [0m[INFO] Sending transaction 0e8c4aa9fdd145482da5308d7016f4ed47d06a6f2183d9326cbbb6a6c17ea293 [36m+765ms[0m
[31;1maztec:node [0m[INFO] Received tx 0e8c4aa9fdd145482da5308d7016f4ed47d06a6f2183d9326cbbb6a6c17ea293 [31m+2s[0m
[36;1maztec:tx_pool [0m[INFO] Adding tx with id 0e8c4aa9fdd145482da5308d7016f4ed47d06a6f2183d9326cbbb6a6c17ea293 eventName=tx-added-to-pool txHash=0e8c4aa9fdd145482da5308d7016f4ed47d06a6f2183d9326cbbb6a6c17ea293 noteEncryptedLogCount=0 encryptedLogCount=0 unencryptedLogCount=2 noteEncryptedLogSize=8 encryptedLogSize=8 unencryptedLogSize=96728 newCommitmentCount=0 newNullifierCount=3 proofSize=0 size=167566 feePaymentMethod=none classRegisteredCount=1 [36m+7s[0m
[36;1maztec:pxe_service [0m[INFO] Sent transaction 0e8c4aa9fdd145482da5308d7016f4ed47d06a6f2183d9326cbbb6a6c17ea293 [36m+25ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=2 worldStateHash=0x2b02a99d07f1b16bbb991886965c0212dce143e768ea8612ecda7e08743d9881 l2BlockSourceNumber=2 l2BlockSourceHash=0x2b02a99d07f1b16bbb991886965c0212dce143e768ea8612ecda7e08743d9881 p2pNumber=2 l1ToL2MessageSourceNumber=2 [33m+1s[0m
[33;1maztec:sequencer [0m[INFO] Building blockNumber=3 txCount=1 slotNumber=6 [33m+171ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Retrieved 0 L1 to L2 messages for block 3 [33m+0ms[0m
[35;1maztec:sequencer-client:block_builder_light [0m[VERBOSE] Starting new block numTxs=2 globalVariables=[object Object] l1ToL2Messages= [35m+0ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Processing tx 0e8c4aa9fdd145482da5308d7016f4ed47d06a6f2183d9326cbbb6a6c17ea293 [33m+0ms[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Executing public external function Token:constructor (via dispatch)@0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c with 12000000 allocated L2 gas. [36m+3s[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Token:constructor (via dispatch) returned, reverted: false. eventName=avm-simulation appCircuitName=Token:constructor (via dispatch) duration=308.17090797424316 bytecodeSize=37708 [36m+308ms[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Token:constructor (via dispatch) simulation complete. Reverted=false. Consumed 577335 L2 gas, ending with 11422665 L2 gas left. [36m+2ms[0m
[35;1maztec:sequencer-client:block_builder_light [0m[VERBOSE] Adding new tx to block txHash=0e8c4aa9fdd145482da5308d7016f4ed47d06a6f2183d9326cbbb6a6c17ea293 [35m+2s[0m
[35;1maztec:sequencer-client:block_builder_light [0m[VERBOSE] Setting block as completed and adding 1 padding txs [35m+35ms[0m
[35;1maztec:sequencer-client:block_builder_light [0m[VERBOSE] Adding new tx to block txHash=0000000000000000000000000000000000000000000000000000000000000000 [35m+1ms[0m
[35;1maztec:sequencer-client:block_builder_light [0m[VERBOSE] Finalising block [35m+33ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Assembled block 3 (txEffectsHash: 00f2826a9a0d64c5c4bb921a9e4c9e800127204ce8bec09d90080890b39b61a1) eventName=l2-block-built creator=0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266 duration=1654.1064660549164 publicProcessDuration=1598.6484649181366 rollupCircuitsDuration=1651.166855931282 txCount=1 blockNumber=3 blockTimestamp=1730721817 noteEncryptedLogLength=8 noteEncryptedLogCount=0 encryptedLogLength=8 encryptedLogCount=0 unencryptedLogCount=2 unencryptedLogSize=96732 [33m+2s[0m
[33;1maztec:sequencer [0m[VERBOSE] Collecting attestations [33m+1ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Attestations collected [33m+1ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Collecting proof quotes [33m+0ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Retrieved 0 quotes, slot: 6, epoch to prove: 0 [33m+1ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Failed to find any valid proof quotes [33m+0ms[0m
[33;1maztec:sequencer [0m[VERBOSE] No proof quote available [33m+0ms[0m
[33;1maztec:sequencer:publisher [0m[VERBOSE] Submitting propose transaction [33m+10s[0m
[33;1maztec:sequencer:publisher [0m[INFO] Published L2 block to L1 rollup contract gasPrice=1070263732 gasUsed=1501893 transactionHash=0x4be02bb3ec515e6b887f4d3fa704a0dee1ab1c6a4933894c84b911ed75c26acd calldataGas=780648 calldataSize=98532 sender=0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266 txCount=1 blockNumber=3 blockTimestamp=1730721817 noteEncryptedLogLength=8 noteEncryptedLogCount=0 encryptedLogLength=8 encryptedLogCount=0 unencryptedLogCount=2 unencryptedLogSize=96732 eventName=rollup-published-to-l1 slotNumber=6 blockHash=0x2d553a49bc6a58b175776c7117ee3a8aeb005375b35b2c098b14aab65838e70e [33m+69ms[0m
[33;1maztec:sequencer [0m[INFO] Submitted rollup block 3 with 1 transactions duration=1655ms (Submitter: 0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266) [33m+75ms[0m
[34;1maztec:archiver [0m[VERBOSE] Retrieved no new L1 -> L2 messages between L1 blocks 22 and 22. [34m+8s[0m
[34;1maztec:archiver [0m[VERBOSE] Retrieved no new L1 -> L2 messages between L1 blocks 22 and 22. [34m+8s[0m
[34;1maztec:archiver:block-helper [0m[VERBOSE] Registering contract class 0x0cfc2c573815736bafb92d98afc3ec28d763d621235ca034fe25e5cdd012fe61 [34m+10s[0m
[34;1maztec:archiver:block-helper [0m[VERBOSE] Store contract instance at 0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c [34m+0ms[0m
[36;1maztec:cheat_codes:eth [0m[VERBOSE] Mined 1 L1 blocks [36m+10s[0m
[36;1maztec:cheat_codes:eth [0m[VERBOSE] Warped L1 timestamp to 1730721841 [36m+0ms[0m
[33;1maztec:utils:watcher [0m[INFO] Slot 6 was filled, jumped to next slot [33m+10s[0m
[34;1maztec:archiver:block-helper [0m[VERBOSE] Registering contract class 0x0cfc2c573815736bafb92d98afc3ec28d763d621235ca034fe25e5cdd012fe61 [34m+10s[0m
[34;1maztec:archiver:block-helper [0m[VERBOSE] Store contract instance at 0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c [34m+0ms[0m
[34;1maztec:archiver [0m[VERBOSE] Processed 1 new L2 blocks up to 3 [34m+287ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=2 worldStateHash=0x2b02a99d07f1b16bbb991886965c0212dce143e768ea8612ecda7e08743d9881 l2BlockSourceNumber=2 l2BlockSourceHash=0x2b02a99d07f1b16bbb991886965c0212dce143e768ea8612ecda7e08743d9881 p2pNumber=2 l1ToL2MessageSourceNumber=2 [33m+1s[0m
[34;1maztec:archiver [0m[VERBOSE] Processed 1 new L2 blocks up to 3 [34m+300ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Rejected from being able to propose at next block with 1026f26937952b6a1acba65067a0ed2d7af776fd9535955918694d76d5647a88: Rollup__InvalidArchive(0x116b11e13de15b73f9a9fa701a199a3ac5bb0d5f52bec7c8381c25d346e023e3, 0x1026f26937952b6a1acba65067a0ed2d7af776fd9535955918694d76d5647a88) [33m+13ms[0m
[31;1maztec:world_state [0m[VERBOSE] Handling new L2 blocks from 3 to 3 [31m+10s[0m
[31;1maztec:world_state [0m[VERBOSE] Handled new L2 block eventName=l2-block-handled duration=11.268115997314453 unfinalisedBlockNumber=3 finalisedBlockNumber=0 oldestHistoricBlock=1 txCount=1 blockNumber=3 blockTimestamp=1730721817 noteEncryptedLogLength=8 noteEncryptedLogCount=0 encryptedLogLength=8 encryptedLogCount=0 unencryptedLogCount=2 unencryptedLogSize=96732 [31m+12ms[0m
[34;1maztec:archiver [0m[VERBOSE] Retrieved no new L1 -> L2 messages between L1 blocks 23 and 23. [34m+1s[0m
[34;1maztec:archiver [0m[VERBOSE] No blocks to retrieve from 23 to 23 [34m+3ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=3 worldStateHash=0x2d553a49bc6a58b175776c7117ee3a8aeb005375b35b2c098b14aab65838e70e l2BlockSourceNumber=3 l2BlockSourceHash=0x2d553a49bc6a58b175776c7117ee3a8aeb005375b35b2c098b14aab65838e70e p2pNumber=3 l1ToL2MessageSourceNumber=3 [33m+1s[0m
[34;1maztec:archiver [0m[VERBOSE] Retrieved no new L1 -> L2 messages between L1 blocks 23 and 23. [34m+1s[0m
[34;1maztec:archiver [0m[VERBOSE] No blocks to retrieve from 23 to 23 [34m+5ms[0m
[34;1maztec:js:deploy_sent_tx [0m[INFO] Contract 0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c successfully deployed. [34m+0ms[0m
[36;1maztec:full_prover_test:full_prover [0m[VERBOSE] Token deployed to 0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c [36m+10s[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[VERBOSE] State transition for client_prover_integration complete. [34m+15s[0m
[36;1maztec:full_prover_test:full_prover [0m[VERBOSE] Token contract address: 0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c [36m+5ms[0m
[31;1maztec:simulator:private_execution [0m[VERBOSE] Executing external function SchnorrAccount:entrypoint@0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 [31m+0ms[0m
[31;1maztec:simulator:client_execution_context [0m[VERBOSE] Created PublicExecutionRequest to public_dispatch@0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c, of type [enqueued], side-effect counter [3] [31m+0ms[0m
[36;1maztec:pxe_service [0m[VERBOSE] Simulation completed for 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78:entrypoint [36m+5s[0m
[31;1maztec:node [0m[INFO] Simulating tx 0df03c3fadf4b7bfbe0641c3cd3e631d718d23c9dcd28f6d13b451159605afd3 [31m+6s[0m
[33;1maztec:sequencer [0m[VERBOSE] Processing tx 0df03c3fadf4b7bfbe0641c3cd3e631d718d23c9dcd28f6d13b451159605afd3 [33m+0ms[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Executing public external function Token:get_admin (via dispatch)@0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c with 12000000 allocated L2 gas. [36m+4s[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Token:get_admin (via dispatch) returned, reverted: false. eventName=avm-simulation appCircuitName=Token:get_admin (via dispatch) duration=138.90042388439178 bytecodeSize=37708 [36m+139ms[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Token:get_admin (via dispatch) simulation complete. Reverted=false. Consumed 7658 L2 gas, ending with 11992342 L2 gas left. [36m+0ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=3 worldStateHash=0x2d553a49bc6a58b175776c7117ee3a8aeb005375b35b2c098b14aab65838e70e l2BlockSourceNumber=3 l2BlockSourceHash=0x2d553a49bc6a58b175776c7117ee3a8aeb005375b35b2c098b14aab65838e70e p2pNumber=3 l1ToL2MessageSourceNumber=3 [33m+1s[0m
[36;1maztec:pxe_service [0m[INFO] Executed local simulation for 0df03c3fadf4b7bfbe0641c3cd3e631d718d23c9dcd28f6d13b451159605afd3 [36m+2s[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[VERBOSE] Applying state transition for mint... [34m+2s[0m
[36;1maztec:full_prover_test:full_prover [0m[VERBOSE] Minting 20000 publicly... [36m+2s[0m
[31;1maztec:simulator:private_execution [0m[VERBOSE] Executing external function SchnorrAccount:entrypoint@0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 [31m+0ms[0m
[31;1maztec:simulator:client_execution_context [0m[VERBOSE] Created PublicExecutionRequest to public_dispatch@0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c, of type [enqueued], side-effect counter [3] [31m+0ms[0m
[36;1maztec:pxe_service [0m[VERBOSE] Simulation completed for 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78:entrypoint [36m+153ms[0m
[31;1maztec:node [0m[INFO] Simulating tx 22aa5e4893398170c0876245287b81bf4dc0689f2498f9404652776180feb59a [31m+2s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=3 worldStateHash=0x2d553a49bc6a58b175776c7117ee3a8aeb005375b35b2c098b14aab65838e70e l2BlockSourceNumber=3 l2BlockSourceHash=0x2d553a49bc6a58b175776c7117ee3a8aeb005375b35b2c098b14aab65838e70e p2pNumber=3 l1ToL2MessageSourceNumber=3 [33m+1s[0m
[33;1maztec:sequencer [0m[VERBOSE] Processing tx 22aa5e4893398170c0876245287b81bf4dc0689f2498f9404652776180feb59a [33m+0ms[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Executing public external function Token:mint_public (via dispatch)@0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c with 12000000 allocated L2 gas. [36m+2s[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Token:mint_public (via dispatch) returned, reverted: false. eventName=avm-simulation appCircuitName=Token:mint_public (via dispatch) duration=161.70831406116486 bytecodeSize=37708 [36m+162ms[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Token:mint_public (via dispatch) simulation complete. Reverted=false. Consumed 79633 L2 gas, ending with 11920367 L2 gas left. [36m+0ms[0m
[36;1maztec:pxe_service [0m[INFO] Executed local simulation for 22aa5e4893398170c0876245287b81bf4dc0689f2498f9404652776180feb59a [36m+2s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=3 worldStateHash=0x2d553a49bc6a58b175776c7117ee3a8aeb005375b35b2c098b14aab65838e70e l2BlockSourceNumber=3 l2BlockSourceHash=0x2d553a49bc6a58b175776c7117ee3a8aeb005375b35b2c098b14aab65838e70e p2pNumber=3 l1ToL2MessageSourceNumber=3 [33m+1s[0m
[36;1maztec:pxe_service [0m[INFO] Sending transaction 22aa5e4893398170c0876245287b81bf4dc0689f2498f9404652776180feb59a [36m+489ms[0m
[31;1maztec:node [0m[INFO] Received tx 22aa5e4893398170c0876245287b81bf4dc0689f2498f9404652776180feb59a [31m+2s[0m
[36;1maztec:tx_pool [0m[INFO] Adding tx with id 22aa5e4893398170c0876245287b81bf4dc0689f2498f9404652776180feb59a eventName=tx-added-to-pool txHash=22aa5e4893398170c0876245287b81bf4dc0689f2498f9404652776180feb59a noteEncryptedLogCount=0 encryptedLogCount=0 unencryptedLogCount=0 noteEncryptedLogSize=8 encryptedLogSize=8 unencryptedLogSize=8 newCommitmentCount=0 newNullifierCount=1 proofSize=0 size=68862 feePaymentMethod=none classRegisteredCount=0 [36m+9s[0m
[36;1maztec:pxe_service [0m[INFO] Sent transaction 22aa5e4893398170c0876245287b81bf4dc0689f2498f9404652776180feb59a [36m+23ms[0m
[33;1maztec:sequencer [0m[INFO] Building blockNumber=4 txCount=1 slotNumber=7 [33m+448ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Retrieved 0 L1 to L2 messages for block 4 [33m+0ms[0m
[35;1maztec:sequencer-client:block_builder_light [0m[VERBOSE] Starting new block numTxs=2 globalVariables=[object Object] l1ToL2Messages= [35m+0ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Processing tx 22aa5e4893398170c0876245287b81bf4dc0689f2498f9404652776180feb59a [33m+0ms[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Executing public external function Token:mint_public (via dispatch)@0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c with 12000000 allocated L2 gas. [36m+2s[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Token:mint_public (via dispatch) returned, reverted: false. eventName=avm-simulation appCircuitName=Token:mint_public (via dispatch) duration=149.76076197624207 bytecodeSize=37708 [36m+150ms[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Token:mint_public (via dispatch) simulation complete. Reverted=false. Consumed 79633 L2 gas, ending with 11920367 L2 gas left. [36m+1ms[0m
[35;1maztec:sequencer-client:block_builder_light [0m[VERBOSE] Adding new tx to block txHash=22aa5e4893398170c0876245287b81bf4dc0689f2498f9404652776180feb59a [35m+1s[0m
[35;1maztec:sequencer-client:block_builder_light [0m[VERBOSE] Setting block as completed and adding 1 padding txs [35m+39ms[0m
[35;1maztec:sequencer-client:block_builder_light [0m[VERBOSE] Adding new tx to block txHash=0000000000000000000000000000000000000000000000000000000000000000 [35m+0ms[0m
[35;1maztec:sequencer-client:block_builder_light [0m[VERBOSE] Finalising block [35m+30ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Assembled block 4 (txEffectsHash: 0026d4ace6620451799dedcbec8cdc0026c39429716452e30f025391098e7a89) eventName=l2-block-built creator=0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266 duration=1273.3109329938889 publicProcessDuration=1229.1223089694977 rollupCircuitsDuration=1270.4626879692078 txCount=1 blockNumber=4 blockTimestamp=1730721841 noteEncryptedLogLength=8 noteEncryptedLogCount=0 encryptedLogLength=8 encryptedLogCount=0 unencryptedLogCount=0 unencryptedLogSize=12 [33m+1s[0m
[33;1maztec:sequencer [0m[VERBOSE] Collecting attestations [33m+0ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Attestations collected [33m+2ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Collecting proof quotes [33m+0ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Retrieved 0 quotes, slot: 7, epoch to prove: 0 [33m+1ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Failed to find any valid proof quotes [33m+0ms[0m
[33;1maztec:sequencer [0m[VERBOSE] No proof quote available [33m+0ms[0m
[33;1maztec:sequencer:publisher [0m[VERBOSE] Submitting propose transaction [33m+8s[0m
[33;1maztec:sequencer:publisher [0m[INFO] Published L2 block to L1 rollup contract gasPrice=1054565150 gasUsed=337297 transactionHash=0xaa1a9bb43740c5ef61022cb1dbfda25b5d4be19cfb8131d045e4aafb2d66ec88 calldataGas=11368 calldataSize=1348 sender=0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266 txCount=1 blockNumber=4 blockTimestamp=1730721841 noteEncryptedLogLength=8 noteEncryptedLogCount=0 encryptedLogLength=8 encryptedLogCount=0 unencryptedLogCount=0 unencryptedLogSize=12 eventName=rollup-published-to-l1 slotNumber=7 blockHash=0x1f4fb60e8032968586c9f30830db1847ef8ddc9836764b0add48c289ec20db32 [33m+128ms[0m
[33;1maztec:sequencer [0m[INFO] Submitted rollup block 4 with 1 transactions duration=1274ms (Submitter: 0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266) [33m+134ms[0m
[34;1maztec:archiver [0m[VERBOSE] Retrieved no new L1 -> L2 messages between L1 blocks 24 and 24. [34m+6s[0m
[34;1maztec:archiver [0m[VERBOSE] Processed 1 new L2 blocks up to 4 [34m+9ms[0m
[34;1maztec:archiver [0m[VERBOSE] Retrieved no new L1 -> L2 messages between L1 blocks 24 and 24. [34m+6s[0m
[34;1maztec:archiver [0m[VERBOSE] Processed 1 new L2 blocks up to 4 [34m+11ms[0m
[31;1maztec:world_state [0m[VERBOSE] Handling new L2 blocks from 4 to 4 [31m+7s[0m
[36;1maztec:cheat_codes:eth [0m[VERBOSE] Mined 1 L1 blocks [36m+7s[0m
[36;1maztec:cheat_codes:eth [0m[VERBOSE] Warped L1 timestamp to 1730721865 [36m+0ms[0m
[33;1maztec:utils:watcher [0m[INFO] Slot 7 was filled, jumped to next slot [33m+7s[0m
[31;1maztec:world_state [0m[VERBOSE] Handled new L2 block eventName=l2-block-handled duration=11.00186800956726 unfinalisedBlockNumber=4 finalisedBlockNumber=0 oldestHistoricBlock=1 txCount=1 blockNumber=4 blockTimestamp=1730721841 noteEncryptedLogLength=8 noteEncryptedLogCount=0 encryptedLogLength=8 encryptedLogCount=0 unencryptedLogCount=0 unencryptedLogSize=12 [31m+11ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=4 worldStateHash=0x1f4fb60e8032968586c9f30830db1847ef8ddc9836764b0add48c289ec20db32 l2BlockSourceNumber=4 l2BlockSourceHash=0x1f4fb60e8032968586c9f30830db1847ef8ddc9836764b0add48c289ec20db32 p2pNumber=4 l1ToL2MessageSourceNumber=4 [33m+1s[0m
[34;1maztec:archiver [0m[VERBOSE] Retrieved no new L1 -> L2 messages between L1 blocks 25 and 25. [34m+1s[0m
[34;1maztec:archiver [0m[VERBOSE] No blocks to retrieve from 25 to 25 [34m+5ms[0m
[34;1maztec:archiver [0m[VERBOSE] Retrieved no new L1 -> L2 messages between L1 blocks 25 and 25. [34m+1s[0m
[34;1maztec:archiver [0m[VERBOSE] No blocks to retrieve from 25 to 25 [34m+2ms[0m
[36;1maztec:full_prover_test:full_prover [0m[VERBOSE] Transferring 10000 to private... [36m+5s[0m
[31;1maztec:simulator:private_execution [0m[VERBOSE] Executing external function SchnorrAccount:entrypoint@0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 [31m+0ms[0m
[31;1maztec:simulator:private_execution [0m[VERBOSE] Executing external function Token:transfer_to_private@0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c [31m+0ms[0m
[31;1maztec:simulator:client_execution_context [0m[VERBOSE] Created PublicExecutionRequest to public_dispatch@0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c, of type [enqueued], side-effect counter [5] [31m+0ms[0m
[31;1maztec:simulator:client_execution_context [0m[VERBOSE] Created PublicExecutionRequest to public_dispatch@0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c, of type [enqueued], side-effect counter [6] [31m+20ms[0m
[36;1maztec:pxe_service [0m[VERBOSE] Simulation completed for 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78:entrypoint [36m+3s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=4 worldStateHash=0x1f4fb60e8032968586c9f30830db1847ef8ddc9836764b0add48c289ec20db32 l2BlockSourceNumber=4 l2BlockSourceHash=0x1f4fb60e8032968586c9f30830db1847ef8ddc9836764b0add48c289ec20db32 p2pNumber=4 l1ToL2MessageSourceNumber=4 [33m+1s[0m
[31;1maztec:node [0m[INFO] Simulating tx 010045d2dc98ffea582fd78a3a51832e250ffd48f79a26b7a5b60beeb75eba04 [31m+4s[0m
[33;1maztec:sequencer [0m[VERBOSE] Processing tx 010045d2dc98ffea582fd78a3a51832e250ffd48f79a26b7a5b60beeb75eba04 [33m+0ms[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Executing public external function Token:_store_payload_in_transient_storage_unsafe (via dispatch)@0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c with 12000000 allocated L2 gas. [36m+4s[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Token:_store_payload_in_transient_storage_unsafe (via dispatch) returned, reverted: false. eventName=avm-simulation appCircuitName=Token:_store_payload_in_transient_storage_unsafe (via dispatch) duration=166.0742290019989 bytecodeSize=37708 [36m+166ms[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Token:_store_payload_in_transient_storage_unsafe (via dispatch) simulation complete. Reverted=false. Consumed 183638 L2 gas, ending with 11816362 L2 gas left. [36m+1ms[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Executing public external function Token:_finalize_transfer_to_private_unsafe (via dispatch)@0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c with 12000000 allocated L2 gas. [36m+331ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=4 worldStateHash=0x1f4fb60e8032968586c9f30830db1847ef8ddc9836764b0add48c289ec20db32 l2BlockSourceNumber=4 l2BlockSourceHash=0x1f4fb60e8032968586c9f30830db1847ef8ddc9836764b0add48c289ec20db32 p2pNumber=4 l1ToL2MessageSourceNumber=4 [33m+1s[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Token:_finalize_transfer_to_private_unsafe (via dispatch) returned, reverted: false. eventName=avm-simulation appCircuitName=Token:_finalize_transfer_to_private_unsafe (via dispatch) duration=749.2268440723419 bytecodeSize=37708 [36m+749ms[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Token:_finalize_transfer_to_private_unsafe (via dispatch) simulation complete. Reverted=false. Consumed 2899731 L2 gas, ending with 9100269 L2 gas left. [36m+1ms[0m
[36;1maztec:pxe_service [0m[INFO] Executed local simulation for 010045d2dc98ffea582fd78a3a51832e250ffd48f79a26b7a5b60beeb75eba04 [36m+3s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=4 worldStateHash=0x1f4fb60e8032968586c9f30830db1847ef8ddc9836764b0add48c289ec20db32 l2BlockSourceNumber=4 l2BlockSourceHash=0x1f4fb60e8032968586c9f30830db1847ef8ddc9836764b0add48c289ec20db32 p2pNumber=4 l1ToL2MessageSourceNumber=4 [33m+2s[0m
[36;1maztec:pxe_service [0m[INFO] Sending transaction 010045d2dc98ffea582fd78a3a51832e250ffd48f79a26b7a5b60beeb75eba04 [36m+743ms[0m
[31;1maztec:node [0m[INFO] Received tx 010045d2dc98ffea582fd78a3a51832e250ffd48f79a26b7a5b60beeb75eba04 [31m+3s[0m
[36;1maztec:tx_pool [0m[INFO] Adding tx with id 010045d2dc98ffea582fd78a3a51832e250ffd48f79a26b7a5b60beeb75eba04 eventName=tx-added-to-pool txHash=010045d2dc98ffea582fd78a3a51832e250ffd48f79a26b7a5b60beeb75eba04 noteEncryptedLogCount=0 encryptedLogCount=0 unencryptedLogCount=0 noteEncryptedLogSize=8 encryptedLogSize=8 unencryptedLogSize=8 newCommitmentCount=0 newNullifierCount=1 proofSize=0 size=69607 feePaymentMethod=none classRegisteredCount=0 [36m+7s[0m
[36;1maztec:pxe_service [0m[INFO] Sent transaction 010045d2dc98ffea582fd78a3a51832e250ffd48f79a26b7a5b60beeb75eba04 [36m+21ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=4 worldStateHash=0x1f4fb60e8032968586c9f30830db1847ef8ddc9836764b0add48c289ec20db32 l2BlockSourceNumber=4 l2BlockSourceHash=0x1f4fb60e8032968586c9f30830db1847ef8ddc9836764b0add48c289ec20db32 p2pNumber=4 l1ToL2MessageSourceNumber=4 [33m+1s[0m
[33;1maztec:sequencer [0m[INFO] Building blockNumber=5 txCount=1 slotNumber=8 [33m+15ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Retrieved 0 L1 to L2 messages for block 5 [33m+0ms[0m
[35;1maztec:sequencer-client:block_builder_light [0m[VERBOSE] Starting new block numTxs=2 globalVariables=[object Object] l1ToL2Messages= [35m+0ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Processing tx 010045d2dc98ffea582fd78a3a51832e250ffd48f79a26b7a5b60beeb75eba04 [33m+0ms[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Executing public external function Token:_store_payload_in_transient_storage_unsafe (via dispatch)@0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c with 12000000 allocated L2 gas. [36m+3s[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Token:_store_payload_in_transient_storage_unsafe (via dispatch) returned, reverted: false. eventName=avm-simulation appCircuitName=Token:_store_payload_in_transient_storage_unsafe (via dispatch) duration=177.79542303085327 bytecodeSize=37708 [36m+178ms[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Token:_store_payload_in_transient_storage_unsafe (via dispatch) simulation complete. Reverted=false. Consumed 183638 L2 gas, ending with 11816362 L2 gas left. [36m+1ms[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Executing public external function Token:_finalize_transfer_to_private_unsafe (via dispatch)@0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c with 12000000 allocated L2 gas. [36m+450ms[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Token:_finalize_transfer_to_private_unsafe (via dispatch) returned, reverted: false. eventName=avm-simulation appCircuitName=Token:_finalize_transfer_to_private_unsafe (via dispatch) duration=690.0573049783707 bytecodeSize=37708 [36m+690ms[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Token:_finalize_transfer_to_private_unsafe (via dispatch) simulation complete. Reverted=false. Consumed 2899731 L2 gas, ending with 9100269 L2 gas left. [36m+1ms[0m
[35;1maztec:sequencer-client:block_builder_light [0m[VERBOSE] Adding new tx to block txHash=010045d2dc98ffea582fd78a3a51832e250ffd48f79a26b7a5b60beeb75eba04 [35m+2s[0m
[35;1maztec:sequencer-client:block_builder_light [0m[VERBOSE] Setting block as completed and adding 1 padding txs [35m+41ms[0m
[35;1maztec:sequencer-client:block_builder_light [0m[VERBOSE] Adding new tx to block txHash=0000000000000000000000000000000000000000000000000000000000000000 [35m+1ms[0m
[35;1maztec:sequencer-client:block_builder_light [0m[VERBOSE] Finalising block [35m+31ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Assembled block 5 (txEffectsHash: 00912532fb9bca2dd8e3b48cc62e7f1ab96ceadd16878d53fb6f88e9b2b804e7) eventName=l2-block-built creator=0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266 duration=2504.0955830812454 publicProcessDuration=2455.7526779174805 rollupCircuitsDuration=2501.2212669849396 txCount=1 blockNumber=5 blockTimestamp=1730721865 noteEncryptedLogLength=8 noteEncryptedLogCount=0 encryptedLogLength=8 encryptedLogCount=0 unencryptedLogCount=1 unencryptedLogSize=16472 [33m+3s[0m
[33;1maztec:sequencer [0m[VERBOSE] Collecting attestations [33m+0ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Attestations collected [33m+2ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Collecting proof quotes [33m+0ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Retrieved 0 quotes, slot: 8, epoch to prove: 0 [33m+2ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Failed to find any valid proof quotes [33m+0ms[0m
[33;1maztec:sequencer [0m[VERBOSE] No proof quote available [33m+0ms[0m
[33;1maztec:sequencer:publisher [0m[VERBOSE] Submitting propose transaction [33m+9s[0m
[33;1maztec:sequencer:publisher [0m[INFO] Published L2 block to L1 rollup contract gasPrice=1041910645 gasUsed=485371 transactionHash=0x67904abf060547749ec53f3c139384a93c34cd175e40b0a5213f9f0d66d5ffcc calldataGas=99748 calldataSize=18916 sender=0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266 txCount=1 blockNumber=5 blockTimestamp=1730721865 noteEncryptedLogLength=8 noteEncryptedLogCount=0 encryptedLogLength=8 encryptedLogCount=0 unencryptedLogCount=1 unencryptedLogSize=16472 eventName=rollup-published-to-l1 slotNumber=8 blockHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a [33m+135ms[0m
[33;1maztec:sequencer [0m[INFO] Submitted rollup block 5 with 1 transactions duration=2505ms (Submitter: 0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266) [33m+140ms[0m
[34;1maztec:archiver [0m[VERBOSE] Retrieved no new L1 -> L2 messages between L1 blocks 26 and 26. [34m+9s[0m
[34;1maztec:archiver [0m[VERBOSE] Retrieved no new L1 -> L2 messages between L1 blocks 26 and 26. [34m+9s[0m
[34;1maztec:archiver [0m[VERBOSE] Processed 1 new L2 blocks up to 5 [34m+22ms[0m
[36;1maztec:cheat_codes:eth [0m[VERBOSE] Mined 1 L1 blocks [36m+10s[0m
[36;1maztec:cheat_codes:eth [0m[VERBOSE] Warped L1 timestamp to 1730721889 [36m+0ms[0m
[33;1maztec:utils:watcher [0m[INFO] Slot 8 was filled, jumped to next slot [33m+10s[0m
[34;1maztec:archiver [0m[VERBOSE] Processed 1 new L2 blocks up to 5 [34m+22ms[0m
[31;1maztec:world_state [0m[VERBOSE] Handling new L2 blocks from 5 to 5 [31m+10s[0m
[31;1maztec:world_state [0m[VERBOSE] Handled new L2 block eventName=l2-block-handled duration=12.738456010818481 unfinalisedBlockNumber=5 finalisedBlockNumber=0 oldestHistoricBlock=1 txCount=1 blockNumber=5 blockTimestamp=1730721865 noteEncryptedLogLength=8 noteEncryptedLogCount=0 encryptedLogLength=8 encryptedLogCount=0 unencryptedLogCount=1 unencryptedLogSize=16472 [31m+13ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[31;1maztec:simulator:unconstrained_execution [0m[VERBOSE] Executing unconstrained function 0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c:0x00000000(compute_note_hash_and_optionally_a_nullifier) [31m+0ms[0m
[33;1maztec:note_processor [0m[VERBOSE] Added incoming note for contract 0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c at slot 0x14dc51e784653ae0b921e36abc5436089ac7dbeb89c13a15c83238eb9fcf0841 with nullifier 0x07a74314953ab8349f3f6a16f51454ff87e37aca412b144d568e5175fcd20250 [33m+31s[0m
[33;1maztec:note_processor [0m[VERBOSE] Added outgoing note for contract 0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c at slot 0x14dc51e784653ae0b921e36abc5436089ac7dbeb89c13a15c83238eb9fcf0841 [33m+0ms[0m
[36;1maztec:full_prover_test:full_prover [0m[VERBOSE] Minting complete. [36m+9s[0m
[34;1maztec:snapshot_manager:full_prover_integration/full_prover [0m[VERBOSE] State transition for mint complete. [34m+15s[0m
[31;1maztec:simulator:private_execution [0m[VERBOSE] Executing external function SchnorrAccount:entrypoint@0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 [31m+0ms[0m
[31;1maztec:simulator:client_execution_context [0m[VERBOSE] Created PublicExecutionRequest to public_dispatch@0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c, of type [enqueued], side-effect counter [3] [31m+0ms[0m
[36;1maztec:pxe_service [0m[VERBOSE] Simulation completed for 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78:entrypoint [36m+5s[0m
[34;1maztec:archiver [0m[VERBOSE] Retrieved no new L1 -> L2 messages between L1 blocks 27 and 27. [34m+1s[0m
[34;1maztec:archiver [0m[VERBOSE] No blocks to retrieve from 27 to 27 [34m+3ms[0m
[34;1maztec:archiver [0m[VERBOSE] Retrieved no new L1 -> L2 messages between L1 blocks 27 and 27. [34m+1s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[34;1maztec:archiver [0m[VERBOSE] No blocks to retrieve from 27 to 27 [34m+4ms[0m
[31;1maztec:node [0m[INFO] Simulating tx 1b77b739a22f65f7e80b29c2d32164ed5a8822c013c29a6a560929d0bff09c3d [31m+6s[0m
[33;1maztec:sequencer [0m[VERBOSE] Processing tx 1b77b739a22f65f7e80b29c2d32164ed5a8822c013c29a6a560929d0bff09c3d [33m+0ms[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Executing public external function Token:balance_of_public (via dispatch)@0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c with 12000000 allocated L2 gas. [36m+4s[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Token:balance_of_public (via dispatch) returned, reverted: false. eventName=avm-simulation appCircuitName=Token:balance_of_public (via dispatch) duration=140.60849404335022 bytecodeSize=37708 [36m+141ms[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Token:balance_of_public (via dispatch) simulation complete. Reverted=false. Consumed 27282 L2 gas, ending with 11972718 L2 gas left. [36m+0ms[0m
[36;1maztec:pxe_service [0m[INFO] Executed local simulation for 1b77b739a22f65f7e80b29c2d32164ed5a8822c013c29a6a560929d0bff09c3d [36m+2s[0m
[36;1maztec:full_prover_test:full_prover [0m[VERBOSE] Public balance of wallet 0: 10000 [36m+2s[0m
[31;1maztec:simulator:unconstrained_execution [0m[VERBOSE] Executing unconstrained function 0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c:0x4375727c(balance_of_private) [31m+0ms[0m
[36;1maztec:pxe_service [0m[VERBOSE] Unconstrained simulation for 0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c.balance_of_private completed [36m+29ms[0m
[36;1maztec:full_prover_test:full_prover [0m[VERBOSE] Private balance of wallet 0: 10000 [36m+29ms[0m
[31;1maztec:simulator:private_execution [0m[VERBOSE] Executing external function SchnorrAccount:entrypoint@0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 [31m+0ms[0m
[31;1maztec:simulator:client_execution_context [0m[VERBOSE] Created PublicExecutionRequest to public_dispatch@0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c, of type [enqueued], side-effect counter [3] [31m+0ms[0m
[36;1maztec:pxe_service [0m[VERBOSE] Simulation completed for 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78:entrypoint [36m+155ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+2s[0m
[31;1maztec:node [0m[INFO] Simulating tx 0c5f5b1fa46d847a0cde11d21e85a89fd335742799e3f5da3f7088b306de92a5 [31m+2s[0m
[33;1maztec:sequencer [0m[VERBOSE] Processing tx 0c5f5b1fa46d847a0cde11d21e85a89fd335742799e3f5da3f7088b306de92a5 [33m+0ms[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Executing public external function Token:total_supply (via dispatch)@0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c with 12000000 allocated L2 gas. [36m+2s[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Token:total_supply (via dispatch) returned, reverted: false. eventName=avm-simulation appCircuitName=Token:total_supply (via dispatch) duration=138.82356190681458 bytecodeSize=37708 [36m+139ms[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Token:total_supply (via dispatch) simulation complete. Reverted=false. Consumed 8579 L2 gas, ending with 11991421 L2 gas left. [36m+0ms[0m
[36;1maztec:pxe_service [0m[INFO] Executed local simulation for 0c5f5b1fa46d847a0cde11d21e85a89fd335742799e3f5da3f7088b306de92a5 [36m+2s[0m
[36;1maztec:full_prover_test:full_prover [0m[VERBOSE] Total supply: 20000 [36m+2s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+2s[0m
[36;1maztec:full_prover_test:full_prover [0m[VERBOSE] Using native ACVM binary at ../../noir/noir-repo/target/release/acvm with working directory /tmp/bb0f0000/acvm [36m+3ms[0m
[36;1maztec:full_prover_test:full_prover [0m[VERBOSE] Move to a clean epoch [36m+2ms[0m
[36;1maztec:cheat_codes:eth [0m[VERBOSE] Mined 1 L1 blocks [36m+0ms[0m
[36;1maztec:cheat_codes:eth [0m[VERBOSE] Warped L1 timestamp to 1730722081 [36m+0ms[0m
[36;1maztec:js:cheat_codes [0m[VERBOSE] Advanced to next epoch [36m+0ms[0m
[36;1maztec:full_prover_test:full_prover [0m[VERBOSE] Marking current block as proven [36m+8ms[0m
[36;1maztec:cheat_codes:eth [0m[VERBOSE] Impersonating 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 [36m+3ms[0m
[36;1maztec:js:cheat_codes [0m[VERBOSE] Marked 5 as proven [36m+6ms[0m
[36;1maztec:cheat_codes:eth [0m[VERBOSE] Stopped impersonating 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 [36m+4ms[0m
[36;1maztec:full_prover_test:full_prover [0m[VERBOSE] Main setup completed, initializing full prover PXE, Node, and Prover Node [36m+7ms[0m
[34;1maztec:pxe:keystore:lmdb [0m[INFO] Creating pxe_key_store ephemeral data store [34m+0ms[0m
[34;1maztec:pxe:data:lmdb [0m[INFO] Creating pxe_data ephemeral data store [34m+0ms[0m
[34;1maztec:pxe_synchronizer_bc0f00 [0m[INFO] Initial sync complete [34m+0ms[0m
[33;1maztec:pxe_service_bc0f00 [0m[INFO] Added protocol contract AuthRegistry at 0x0000000000000000000000000000000000000000000000000000000000000001 [33m+0ms[0m
[33;1maztec:pxe_service_bc0f00 [0m[INFO] Added protocol contract ContractInstanceDeployer at 0x0000000000000000000000000000000000000000000000000000000000000002 [33m+16ms[0m
[33;1maztec:pxe_service_bc0f00 [0m[INFO] Added protocol contract ContractClassRegisterer at 0x0000000000000000000000000000000000000000000000000000000000000003 [33m+26ms[0m
[36;1maztec:prover-node:claims-monitor [0m[VERBOSE] Found new claim for epoch 0 by 0x0000000000000000000000000000000000000000 [36m+41s[0m
[33;1maztec:pxe_service_bc0f00 [0m[INFO] Added protocol contract MultiCallEntrypoint at 0x0000000000000000000000000000000000000000000000000000000000000004 [33m+13ms[0m
[33;1maztec:pxe_service_bc0f00 [0m[INFO] Added protocol contract FeeJuice at 0x0000000000000000000000000000000000000000000000000000000000000005 [33m+56ms[0m
[33;1maztec:pxe_service_bc0f00 [0m[INFO] Added protocol contract Router at 0x0000000000000000000000000000000000000000000000000000000000000006 [33m+36ms[0m
[33;1maztec:pxe_service_bc0f00 [0m[INFO] Started PXE connected to chain 31337 version 1 [33m+0ms[0m
[34;1maztec:archiver [0m[VERBOSE] Retrieved no new L1 -> L2 messages between L1 blocks 28 and 29. [34m+4s[0m
[34;1maztec:archiver [0m[VERBOSE] Retrieved no new L1 -> L2 messages between L1 blocks 28 and 29. [34m+4s[0m
[34;1maztec:archiver [0m[VERBOSE] Updating the proven block number to 5 and epoch to 0 [34m+4ms[0m
[34;1maztec:archiver [0m[VERBOSE] No blocks to retrieve from 28 to 29 [34m+1ms[0m
[34;1maztec:archiver [0m[VERBOSE] Updating the proven block number to 5 and epoch to 0 [34m+4ms[0m
[34;1maztec:archiver [0m[VERBOSE] No blocks to retrieve from 28 to 29 [34m+1ms[0m
[33;1maztec:pxe_service_bc0f00 [0m[INFO] Added contract Token at 0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c [33m+300ms[0m
[31;1maztec:world_state [0m[VERBOSE] Handling new L2 blocks from 1 to 5 [31m+42s[0m
[31;1maztec:world_state [0m[VERBOSE] Handled new L2 block eventName=l2-block-handled duration=11.817592978477478 unfinalisedBlockNumber=1 finalisedBlockNumber=0 oldestHistoricBlock=1 txCount=2 blockNumber=1 blockTimestamp=1730721769 noteEncryptedLogLength=986 noteEncryptedLogCount=2 encryptedLogLength=16 encryptedLogCount=0 unencryptedLogCount=0 unencryptedLogSize=16 [31m+12ms[0m
[31;1maztec:world_state [0m[VERBOSE] Handled new L2 block eventName=l2-block-handled duration=11.539334058761597 unfinalisedBlockNumber=2 finalisedBlockNumber=0 oldestHistoricBlock=1 txCount=1 blockNumber=2 blockTimestamp=1730721793 noteEncryptedLogLength=8 noteEncryptedLogCount=0 encryptedLogLength=8 encryptedLogCount=0 unencryptedLogCount=3 unencryptedLogSize=97248 [31m+12ms[0m
[33;1maztec:pxe_service_bc0f00 [0m[INFO] Registered account 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 [33m+45ms[0m
[31;1maztec:world_state [0m[VERBOSE] Handled new L2 block eventName=l2-block-handled duration=11.57401704788208 unfinalisedBlockNumber=3 finalisedBlockNumber=0 oldestHistoricBlock=1 txCount=1 blockNumber=3 blockTimestamp=1730721817 noteEncryptedLogLength=8 noteEncryptedLogCount=0 encryptedLogLength=8 encryptedLogCount=0 unencryptedLogCount=2 unencryptedLogSize=96732 [31m+12ms[0m
[31;1maztec:world_state [0m[VERBOSE] Handled new L2 block eventName=l2-block-handled duration=11.796320915222168 unfinalisedBlockNumber=4 finalisedBlockNumber=0 oldestHistoricBlock=1 txCount=1 blockNumber=4 blockTimestamp=1730721841 noteEncryptedLogLength=8 noteEncryptedLogCount=0 encryptedLogLength=8 encryptedLogCount=0 unencryptedLogCount=0 unencryptedLogSize=12 [31m+12ms[0m
[31;1maztec:world_state [0m[VERBOSE] Handled new L2 block eventName=l2-block-handled duration=11.77389109134674 unfinalisedBlockNumber=5 finalisedBlockNumber=0 oldestHistoricBlock=1 txCount=1 blockNumber=5 blockTimestamp=1730721865 noteEncryptedLogLength=8 noteEncryptedLogCount=0 encryptedLogLength=8 encryptedLogCount=0 unencryptedLogCount=1 unencryptedLogSize=16472 [31m+12ms[0m
[31;1maztec:world_state [0m[VERBOSE] Chain proven at block 5 [31m+0ms[0m
[31;1maztec:world_state [0m[VERBOSE] Chain finalized at block 5 [31m+0ms[0m
[31;1maztec:world_state [0m[VERBOSE] Chain proven at block 5 [31m+5s[0m
[31;1maztec:world_state [0m[VERBOSE] Chain finalized at block 5 [31m+0ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[33;1maztec:note_processor [0m[WARN] DB has no contract with address 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 [33m+0ms[0m
[33;1maztec:note_processor [0m[WARN] DB has no contract with address 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 [33m+0ms[0m
[33;1maztec:note_processor [0m[VERBOSE] Deferred incoming note for contract 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 at slot 0x0000000000000000000000000000000000000000000000000000000000000001 in tx 1478643d3efe3b3d82b1e56ec7e120a23b3bbc759456975c168ea2ecb518e481 [33m+13ms[0m
[33;1maztec:note_processor [0m[VERBOSE] Deferred outgoing note for contract 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 at slot 0x0000000000000000000000000000000000000000000000000000000000000001 in tx 1478643d3efe3b3d82b1e56ec7e120a23b3bbc759456975c168ea2ecb518e481 [33m+0ms[0m
[31;1maztec:simulator:unconstrained_execution [0m[VERBOSE] Executing unconstrained function 0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c:0x00000000(compute_note_hash_and_optionally_a_nullifier) [31m+0ms[0m
[33;1maztec:note_processor [0m[VERBOSE] Added incoming note for contract 0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c at slot 0x14dc51e784653ae0b921e36abc5436089ac7dbeb89c13a15c83238eb9fcf0841 with nullifier 0x07a74314953ab8349f3f6a16f51454ff87e37aca412b144d568e5175fcd20250 [33m+286ms[0m
[33;1maztec:note_processor [0m[VERBOSE] Added outgoing note for contract 0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c at slot 0x14dc51e784653ae0b921e36abc5436089ac7dbeb89c13a15c83238eb9fcf0841 [33m+1ms[0m
[36;1maztec:pxe_service [0m[INFO] Registered account 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 [36m+2s[0m
[33;1maztec:pxe_service_bc0f00 [0m[INFO] Registered account 0x2f3bf1886050056aabbe425c72e2dfa653f71080bb7696647cab05c54f497ae8 [33m+1s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[33;1maztec:note_processor [0m[WARN] DB has no contract with address 0x2f3bf1886050056aabbe425c72e2dfa653f71080bb7696647cab05c54f497ae8 [33m+0ms[0m
[33;1maztec:note_processor [0m[WARN] DB has no contract with address 0x2f3bf1886050056aabbe425c72e2dfa653f71080bb7696647cab05c54f497ae8 [33m+0ms[0m
[33;1maztec:note_processor [0m[VERBOSE] Deferred incoming note for contract 0x2f3bf1886050056aabbe425c72e2dfa653f71080bb7696647cab05c54f497ae8 at slot 0x0000000000000000000000000000000000000000000000000000000000000001 in tx 1facd099f88103cb546eb65fed65a75a731c3fa779aced2f8c9fe176a2afcce9 [33m+11ms[0m
[33;1maztec:note_processor [0m[VERBOSE] Deferred outgoing note for contract 0x2f3bf1886050056aabbe425c72e2dfa653f71080bb7696647cab05c54f497ae8 at slot 0x0000000000000000000000000000000000000000000000000000000000000001 in tx 1facd099f88103cb546eb65fed65a75a731c3fa779aced2f8c9fe176a2afcce9 [33m+0ms[0m
[36;1maztec:pxe_service [0m[INFO] Registered account 0x2f3bf1886050056aabbe425c72e2dfa653f71080bb7696647cab05c54f497ae8 [36m+1s[0m
[33;1maztec:pxe_service_bc0f00 [0m[INFO] Added contract SchnorrAccount at 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 [33m+1s[0m
[31;1maztec:simulator:unconstrained_execution [0m[VERBOSE] Executing unconstrained function 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78:0x00000000(compute_note_hash_and_optionally_a_nullifier) [31m+0ms[0m
[31;1maztec:simulator:unconstrained_execution [0m[VERBOSE] Executing unconstrained function 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78:0x00000000(compute_note_hash_and_optionally_a_nullifier) [31m+0ms[0m
[34;1maztec:pxe:keystore:lmdb [0m[INFO] Creating pxe_key_store ephemeral data store [34m+0ms[0m
[34;1maztec:pxe:data:lmdb [0m[INFO] Creating pxe_data ephemeral data store [34m+0ms[0m
[35;1maztec:pxe_synchronizer_bd0f00 [0m[INFO] Initial sync complete [35m+0ms[0m
[32;1maztec:pxe_service_bd0f00 [0m[INFO] Added protocol contract AuthRegistry at 0x0000000000000000000000000000000000000000000000000000000000000001 [32m+0ms[0m
[32;1maztec:pxe_service_bd0f00 [0m[INFO] Added protocol contract ContractInstanceDeployer at 0x0000000000000000000000000000000000000000000000000000000000000002 [32m+16ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[32;1maztec:pxe_service_bd0f00 [0m[INFO] Added protocol contract ContractClassRegisterer at 0x0000000000000000000000000000000000000000000000000000000000000003 [32m+23ms[0m
[32;1maztec:pxe_service_bd0f00 [0m[INFO] Added protocol contract MultiCallEntrypoint at 0x0000000000000000000000000000000000000000000000000000000000000004 [32m+14ms[0m
[32;1maztec:pxe_service_bd0f00 [0m[INFO] Added protocol contract FeeJuice at 0x0000000000000000000000000000000000000000000000000000000000000005 [32m+61ms[0m
[32;1maztec:pxe_service_bd0f00 [0m[INFO] Added protocol contract Router at 0x0000000000000000000000000000000000000000000000000000000000000006 [32m+28ms[0m
[32;1maztec:pxe_service_bd0f00 [0m[INFO] Started PXE connected to chain 31337 version 1 [32m+1ms[0m
[32;1maztec:pxe_service_bd0f00 [0m[INFO] Added contract Token at 0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c [32m+283ms[0m
[32;1maztec:pxe_service_bd0f00 [0m[INFO] Registered account 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 [32m+37ms[0m
[33;1maztec:note_processor [0m[WARN] DB has no contract with address 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 [33m+0ms[0m
[33;1maztec:note_processor [0m[WARN] DB has no contract with address 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 [33m+0ms[0m
[33;1maztec:note_processor [0m[VERBOSE] Deferred incoming note for contract 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 at slot 0x0000000000000000000000000000000000000000000000000000000000000001 in tx 1478643d3efe3b3d82b1e56ec7e120a23b3bbc759456975c168ea2ecb518e481 [33m+11ms[0m
[33;1maztec:note_processor [0m[VERBOSE] Deferred outgoing note for contract 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 at slot 0x0000000000000000000000000000000000000000000000000000000000000001 in tx 1478643d3efe3b3d82b1e56ec7e120a23b3bbc759456975c168ea2ecb518e481 [33m+0ms[0m
[31;1maztec:simulator:unconstrained_execution [0m[VERBOSE] Executing unconstrained function 0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c:0x00000000(compute_note_hash_and_optionally_a_nullifier) [31m+0ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[33;1maztec:note_processor [0m[VERBOSE] Added incoming note for contract 0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c at slot 0x14dc51e784653ae0b921e36abc5436089ac7dbeb89c13a15c83238eb9fcf0841 with nullifier 0x07a74314953ab8349f3f6a16f51454ff87e37aca412b144d568e5175fcd20250 [33m+232ms[0m
[33;1maztec:note_processor [0m[VERBOSE] Added outgoing note for contract 0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c at slot 0x14dc51e784653ae0b921e36abc5436089ac7dbeb89c13a15c83238eb9fcf0841 [33m+0ms[0m
[36;1maztec:pxe_service [0m[INFO] Registered account 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 [36m+2s[0m
[32;1maztec:pxe_service_bd0f00 [0m[INFO] Registered account 0x2f3bf1886050056aabbe425c72e2dfa653f71080bb7696647cab05c54f497ae8 [32m+1s[0m
[33;1maztec:note_processor [0m[WARN] DB has no contract with address 0x2f3bf1886050056aabbe425c72e2dfa653f71080bb7696647cab05c54f497ae8 [33m+0ms[0m
[33;1maztec:note_processor [0m[WARN] DB has no contract with address 0x2f3bf1886050056aabbe425c72e2dfa653f71080bb7696647cab05c54f497ae8 [33m+1ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[33;1maztec:note_processor [0m[VERBOSE] Deferred incoming note for contract 0x2f3bf1886050056aabbe425c72e2dfa653f71080bb7696647cab05c54f497ae8 at slot 0x0000000000000000000000000000000000000000000000000000000000000001 in tx 1facd099f88103cb546eb65fed65a75a731c3fa779aced2f8c9fe176a2afcce9 [33m+14ms[0m
[33;1maztec:note_processor [0m[VERBOSE] Deferred outgoing note for contract 0x2f3bf1886050056aabbe425c72e2dfa653f71080bb7696647cab05c54f497ae8 at slot 0x0000000000000000000000000000000000000000000000000000000000000001 in tx 1facd099f88103cb546eb65fed65a75a731c3fa779aced2f8c9fe176a2afcce9 [33m+0ms[0m
[36;1maztec:pxe_service [0m[INFO] Registered account 0x2f3bf1886050056aabbe425c72e2dfa653f71080bb7696647cab05c54f497ae8 [36m+1s[0m
[32;1maztec:pxe_service_bd0f00 [0m[INFO] Added contract SchnorrAccount at 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 [32m+1s[0m
[31;1maztec:simulator:unconstrained_execution [0m[VERBOSE] Executing unconstrained function 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78:0x00000000(compute_note_hash_and_optionally_a_nullifier) [31m+0ms[0m
[31;1maztec:simulator:unconstrained_execution [0m[VERBOSE] Executing unconstrained function 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78:0x00000000(compute_note_hash_and_optionally_a_nullifier) [31m+0ms[0m
[36;1maztec:full_prover_test:full_prover [0m[INFO] Full prover PXE started [36m+6s[0m
[36;1maztec:full_prover_test:full_prover [0m[VERBOSE] Shutting down simulated prover node [36m+0ms[0m
[36;1maztec:prover-node [0m[INFO] Stopping ProverNode [36m+47s[0m
[36;1maztec:prover-node:epoch-monitor [0m[INFO] Stopped EpochMonitor [36m+47s[0m
[36;1maztec:prover-node:claims-monitor [0m[VERBOSE] Stopping ClaimsMonitor [36m+5s[0m
[36;1maztec:prover-node:claims-monitor [0m[INFO] Stopped ClaimsMonitor [36m+0ms[0m
[34;1maztec:prover-client:prover-agent [0m[INFO] Agent stopped [34m+47s[0m
[34;1maztec:prover-client:prover-pool:queue [0m[INFO] Proving queue stopped [34m+47s[0m
[34;1maztec:archiver [0m[INFO] Stopped. [34m+5s[0m
[31;1maztec:world_state [0m[INFO] Stopped world state synchronizer [31m+5s[0m
[36;1maztec:prover-node [0m[INFO] Stopped ProverNode [36m+176ms[0m
[36;1maztec:full_prover_test:full_prover [0m[VERBOSE] Starting archiver for new prover node [36m+176ms[0m
[33;1maztec:archiver:lmdb [0m[INFO] Creating archiver ephemeral data store [33m+0ms[0m
[34;1maztec:archiver [0m[INFO] Performing initial chain sync to rollup contract 0x2279b7a0a67db372996a5fab50d91eaa73d2ebe6 [34m+0ms[0m
[34;1maztec:archiver [0m[VERBOSE] Retrieved no new L1 -> L2 messages between L1 blocks 10 and 29. [34m+3ms[0m
[34;1maztec:archiver:block-helper [0m[VERBOSE] Registering contract class 0x0f1cf77f11813ebba27b8b30eed1dad1afd77eeb44ff6be5002a15ce844a766b [34m+0ms[0m
[34;1maztec:archiver:block-helper [0m[VERBOSE] Store contract instance at 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 [34m+1ms[0m
[34;1maztec:archiver:block-helper [0m[VERBOSE] Store contract instance at 0x2f3bf1886050056aabbe425c72e2dfa653f71080bb7696647cab05c54f497ae8 [34m+0ms[0m
[34;1maztec:archiver:block-helper [0m[VERBOSE] Registering contract class 0x0cfc2c573815736bafb92d98afc3ec28d763d621235ca034fe25e5cdd012fe61 [34m+133ms[0m
[34;1maztec:archiver:block-helper [0m[VERBOSE] Store contract instance at 0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c [34m+0ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[34;1maztec:archiver [0m[VERBOSE] Processed 5 new L2 blocks up to 5 [34m+211ms[0m
[36;1maztec:full_prover_test:full_prover [0m[VERBOSE] Funding prover node at 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC [36m+539ms[0m
[34;1maztec:archiver [0m[VERBOSE] Updating the proven block number to 5 and epoch to 0 [34m+74ms[0m
[34;1maztec:archiver [0m[VERBOSE] No blocks to retrieve from 27 to 29 [34m+0ms[0m
[36;1maztec:full_prover_test:full_prover [0m[VERBOSE] Starting prover node [36m+16ms[0m
[34;1maztec:prover [0m[VERBOSE] Created archiver and synced to block 5 [34m+0ms[0m
[31;1maztec:world_state [0m[VERBOSE] Starting sync from 1 to latest block 5 [31m+0ms[0m
[35;1maztec:l2_block_stream [0m[VERBOSE] Starting L2 block stream proven=true pollIntervalMS=100 batchSize=undefined [35m+0ms[0m
[31;1maztec:world_state [0m[INFO] Started world state synchronizer from block 1 [31m+0ms[0m
[31;1maztec:world_state [0m[VERBOSE] Handling new L2 blocks from 1 to 5 [31m+4ms[0m
[31;1maztec:world_state [0m[VERBOSE] Handled new L2 block eventName=l2-block-handled duration=8.873653054237366 unfinalisedBlockNumber=1 finalisedBlockNumber=0 oldestHistoricBlock=1 txCount=2 blockNumber=1 blockTimestamp=1730721769 noteEncryptedLogLength=986 noteEncryptedLogCount=2 encryptedLogLength=16 encryptedLogCount=0 unencryptedLogCount=0 unencryptedLogSize=16 [31m+9ms[0m
[31;1maztec:world_state [0m[VERBOSE] Handled new L2 block eventName=l2-block-handled duration=9.729269981384277 unfinalisedBlockNumber=2 finalisedBlockNumber=0 oldestHistoricBlock=1 txCount=1 blockNumber=2 blockTimestamp=1730721793 noteEncryptedLogLength=8 noteEncryptedLogCount=0 encryptedLogLength=8 encryptedLogCount=0 unencryptedLogCount=3 unencryptedLogSize=97248 [31m+10ms[0m
[31;1maztec:world_state [0m[VERBOSE] Handled new L2 block eventName=l2-block-handled duration=10.336301922798157 unfinalisedBlockNumber=3 finalisedBlockNumber=0 oldestHistoricBlock=1 txCount=1 blockNumber=3 blockTimestamp=1730721817 noteEncryptedLogLength=8 noteEncryptedLogCount=0 encryptedLogLength=8 encryptedLogCount=0 unencryptedLogCount=2 unencryptedLogSize=96732 [31m+11ms[0m
[31;1maztec:world_state [0m[VERBOSE] Handled new L2 block eventName=l2-block-handled duration=24.42427897453308 unfinalisedBlockNumber=4 finalisedBlockNumber=0 oldestHistoricBlock=1 txCount=1 blockNumber=4 blockTimestamp=1730721841 noteEncryptedLogLength=8 noteEncryptedLogCount=0 encryptedLogLength=8 encryptedLogCount=0 unencryptedLogCount=0 unencryptedLogSize=12 [31m+24ms[0m
[31;1maztec:world_state [0m[VERBOSE] Handled new L2 block eventName=l2-block-handled duration=12.378659963607788 unfinalisedBlockNumber=5 finalisedBlockNumber=0 oldestHistoricBlock=1 txCount=1 blockNumber=5 blockTimestamp=1730721865 noteEncryptedLogLength=8 noteEncryptedLogCount=0 encryptedLogLength=8 encryptedLogCount=0 unencryptedLogCount=1 unencryptedLogSize=16472 [31m+13ms[0m
[31;1maztec:world_state [0m[VERBOSE] Chain proven at block 5 [31m+0ms[0m
[31;1maztec:world_state [0m[VERBOSE] Chain finalized at block 5 [31m+0ms[0m
[34;1maztec:prover [0m[INFO] Using native ACVM at ../../noir/noir-repo/target/release/acvm and working directory /tmp/02000000/acvm [34m+206ms[0m
[34;1maztec:archiver [0m[VERBOSE] Retrieved no new L1 -> L2 messages between L1 blocks 30 and 30. [34m+6s[0m
[34;1maztec:archiver [0m[VERBOSE] Updating the proven block number to 5 and epoch to 0 [34m+2ms[0m
[34;1maztec:archiver [0m[VERBOSE] No blocks to retrieve from 30 to 30 [34m+0ms[0m
[36;1maztec:bb-prover [0m[INFO] Using native BB at /mnt/user-data/mara/aztec-packages/barretenberg/cpp/build/bin/bb and working directory /tmp/bb-wPFf4H [36m+0ms[0m
[36;1maztec:bb-prover [0m[INFO] Using native ACVM at ../../noir/noir-repo/target/release/acvm and working directory /tmp/02000000/acvm [36m+0ms[0m
[34;1maztec:prover-client:prover-pool:queue [0m[INFO] Proving queue started [34m+0ms[0m
[34;1maztec:prover-client:prover-agent [0m[INFO] Agent started with concurrency=2 [34m+0ms[0m
[35;1maztec:createProverCoordination [0m[INFO] Using prover coordination via aztec node [35m+0ms[0m
[34;1maztec:prover-node:bond-manager [0m[VERBOSE] Prover bond top-up 4000 required to get 2000 to target 6000 [34m+0ms[0m
[34;1maztec:prover-node:bond-manager [0m[VERBOSE] Prover bond top-up of 4000 completed [34m+25ms[0m
[36;1maztec:prover-node:epoch-monitor [0m[INFO] Started EpochMonitor maxPendingJobs=100 pollingIntervalMs=100 [36m+0ms[0m
[36;1maztec:prover-node:claims-monitor [0m[INFO] Started ClaimsMonitor with prover address 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc maxPendingJobs=100 pollingIntervalMs=100 [36m+0ms[0m
[36;1maztec:prover-node [0m[INFO] Started ProverNode pollingIntervalMs=100 maxPendingJobs=100 [36m+0ms[0m
[36;1maztec:full_prover_test:full_prover [0m[WARN] Proofs are now enabled [36m+244ms[0m
[36;1maztec:prover-node:claims-monitor [0m[VERBOSE] Found new claim for epoch 0 by 0x0000000000000000000000000000000000000000 [36m+5ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[34;1maztec:archiver [0m[VERBOSE] Retrieved no new L1 -> L2 messages between L1 blocks 30 and 31. [34m+1s[0m
[34;1maztec:archiver [0m[VERBOSE] Updating the proven block number to 5 and epoch to 0 [34m+2ms[0m
[34;1maztec:archiver [0m[VERBOSE] No blocks to retrieve from 30 to 31 [34m+0ms[0m
[34;1maztec:archiver [0m[VERBOSE] Retrieved no new L1 -> L2 messages between L1 blocks 31 and 31. [34m+1s[0m
[34;1maztec:archiver [0m[VERBOSE] Updating the proven block number to 5 and epoch to 0 [34m+2ms[0m
[34;1maztec:archiver [0m[VERBOSE] No blocks to retrieve from 31 to 31 [34m+0ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+3s[0m
[36;1maztec:full_prover_test:full_prover [0m[INFO] Deployed real RootRollupArtifact verifier at 0x59b670e9fa9d0a427751af201d676719a970857b [36m+14s[0m
[36;1maztec:full_prover_test:full_prover [0m[INFO] Rollup only accepts valid proofs now [36m+9ms[0m
[35;1maztec:full [0m[INFO] Running test: full_prover makes both public and private transfers [35m+0ms[0m
[36;1maztec:full_prover_test:full_prover [0m[INFO] Starting test for public and private transfer [36m+3ms[0m
[31;1maztec:simulator:unconstrained_execution [0m[VERBOSE] Executing unconstrained function 0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c:0x4375727c(balance_of_private) [31m+0ms[0m
[33;1maztec:pxe_service_bc0f00 [0m[VERBOSE] Unconstrained simulation for 0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c.balance_of_private completed [33m+18s[0m
[31;1maztec:simulator:private_execution [0m[VERBOSE] Executing external function SchnorrAccount:entrypoint@0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 [31m+0ms[0m
[31;1maztec:simulator:client_execution_context [0m[VERBOSE] Created PublicExecutionRequest to public_dispatch@0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c, of type [enqueued], side-effect counter [3] [31m+0ms[0m
[32;1maztec:pxe_service_bd0f00 [0m[VERBOSE] Simulation completed for 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78:entrypoint [32m+15s[0m
[31;1maztec:node [0m[INFO] Simulating tx 22cff2770557773aac187bc3da54fd57eaddefc876e823a08f6a40687144341d [31m+23s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[34;1maztec:archiver [0m[VERBOSE] Retrieved no new L1 -> L2 messages between L1 blocks 32 and 33. [34m+14s[0m
[34;1maztec:archiver [0m[VERBOSE] Retrieved no new L1 -> L2 messages between L1 blocks 32 and 33. [34m+14s[0m
[34;1maztec:archiver [0m[VERBOSE] Updating the proven block number to 5 and epoch to 0 [34m+6ms[0m
[34;1maztec:archiver [0m[VERBOSE] No blocks to retrieve from 32 to 33 [34m+1ms[0m
[34;1maztec:archiver [0m[VERBOSE] Updating the proven block number to 5 and epoch to 0 [34m+6ms[0m
[34;1maztec:archiver [0m[VERBOSE] No blocks to retrieve from 32 to 33 [34m+1ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Processing tx 22cff2770557773aac187bc3da54fd57eaddefc876e823a08f6a40687144341d [33m+0ms[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Executing public external function Token:balance_of_public (via dispatch)@0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c with 12000000 allocated L2 gas. [36m+23s[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Token:balance_of_public (via dispatch) returned, reverted: false. eventName=avm-simulation appCircuitName=Token:balance_of_public (via dispatch) duration=183.24685895442963 bytecodeSize=37708 [36m+183ms[0m
[36;1maztec:simulator:public_executor [0m[VERBOSE] [AVM] Token:balance_of_public (via dispatch) simulation complete. Reverted=false. Consumed 27282 L2 gas, ending with 11972718 L2 gas left. [36m+1ms[0m
[32;1maztec:pxe_service_bd0f00 [0m[INFO] Executed local simulation for 22cff2770557773aac187bc3da54fd57eaddefc876e823a08f6a40687144341d [32m+2s[0m
[36;1maztec:full_prover_test:full_prover [0m[INFO] Proving txs [36m+3s[0m
[31;1maztec:simulator:private_execution [0m[VERBOSE] Executing external function SchnorrAccount:entrypoint@0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 [31m+0ms[0m
[31;1maztec:simulator:private_execution [0m[VERBOSE] Executing external function SchnorrAccount:entrypoint@0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78 [31m+0ms[0m
[31;1maztec:simulator:client_execution_context [0m[VERBOSE] Created PublicExecutionRequest to public_dispatch@0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c, of type [enqueued], side-effect counter [3] [31m+0ms[0m
[31;1maztec:simulator:private_execution [0m[VERBOSE] Executing external function Token:transfer@0x1b99a46103bf947d5e422e7bf39fedcc759d29b98ff583cd9b4c5ea79e28f30c [31m+0ms[0m
[32;1maztec:pxe_service_bd0f00 [0m[VERBOSE] Simulation completed for 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78:entrypoint [32m+379ms[0m
[33;1maztec:pxe_service_bc0f00 [0m[VERBOSE] Simulation completed for 0x08a884b761bf510bc032a884aa3ec2ce1f326b2463039e0b64df4c05a6273b78:entrypoint [33m+3s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+3s[0m
[32;1maztec:pxe_service_bd0f00 [0m[INFO] Executed local simulation for 066c31b890e14a6067f23e7466039d03693d47c4c4087e5e4b2b8b692fc7e52f [32m+1s[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] Computing VK of App(SchnorrAccount:entrypoint) circuit... [32m+0ms[0m
[33;1maztec:pxe_service_bc0f00 [0m[INFO] Executed local simulation for 07897be8931c4abd36f752ef215f6ada2d48e373d6a8fb7b7fd7bab33a952d54 [33m+2s[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] Computing VK of App(SchnorrAccount:entrypoint) circuit... [36m+0ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+2s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] Generated App(SchnorrAccount:entrypoint) VK in 4712 ms [36m+5s[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] Generated App(SchnorrAccount:entrypoint) VK in 5693 ms [32m+6s[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] Computing VK of App(Token:transfer) circuit... [36m+371ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] Generating Client IVC proof [32m+2s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+2s[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] bytecodePath /tmp/bb-nz67DO/tmp-5jz7vF/acir.msgpack [32m+560ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] outputPath /tmp/bb-nz67DO/tmp-5jz7vF [32m+0ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - Executing BB with: client_ivc_prove_output_all_msgpack -o /tmp/bb-nz67DO/tmp-5jz7vF -b /tmp/bb-nz67DO/tmp-5jz7vF/acir.msgpack -w /tmp/bb-nz67DO/tmp-5jz7vF/witnesses.msgpack -v [32m+0ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - bb command is: client_ivc_prove_output_all_msgpack
using cached bn254 crs of size 53687092 at "/mnt/user-data/mara/.bb-crs/bn254_g1.dat" [32m+93ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+2s[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] Generated App(Token:transfer) VK in 3404 ms [36m+3s[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] Generating Client IVC proof [36m+2s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+2s[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] bytecodePath /tmp/bb-nz67DO/tmp-AZENIR/acir.msgpack [36m+651ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] outputPath /tmp/bb-nz67DO/tmp-AZENIR [36m+0ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - Executing BB with: client_ivc_prove_output_all_msgpack -o /tmp/bb-nz67DO/tmp-AZENIR -b /tmp/bb-nz67DO/tmp-AZENIR/acir.msgpack -w /tmp/bb-nz67DO/tmp-AZENIR/witnesses.msgpack -v [36m+0ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - bb command is: client_ivc_prove_output_all_msgpack [36m+85ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - using cached bn254 crs of size 53687092 at "/mnt/user-data/mara/.bb-crs/bn254_g1.dat" [36m+0ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+2s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - Initializing BN254 prover CRS from memory with num points = 16777217 [32m+7s[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - using cached grumpkin crs of size 419430 at: "/mnt/user-data/mara/.bb-crs/grumpkin_g1.dat" [32m+77ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - Initializing Grumpkin prover CRS from memory with num points = 32769 [32m+16ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - DeciderProvingKey(Circuit&)
creating decider proving key [32m+997ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - Finalized circuit size: 26369 [32m+7ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - Log dyadic circuit size: 20 [32m+2ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - constructing proving key [32m+0ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating wires [32m+0ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating gate selectors [32m+54ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating non-gate selectors [32m+11ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating ecc op wires and selector [32m+81ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating table polynomials [32m+14ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating sigmas and ids [32m+4ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating lookup read counts and tags [32m+108ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating lookup and databus inverses [32m+3ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - constructing z_perm [32m+5ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating lagrange polynomials [32m+13ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - constructing prover instance after trace populate
constructing databus polynomials [32m+60ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - constructing lookup table polynomials [32m+36ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - constructing lookup read counts [32m+1ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - ACIR: Setting is_kernel to TRUE. [32m+1s[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - we are never here I assume? [32m+0ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - DeciderProvingKey(Circuit&)
creating decider proving key [32m+25ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - Finalized circuit size: 39047 [32m+5ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - Log dyadic circuit size: 20 [32m+4ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - constructing proving key [32m+0ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating wires [32m+0ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - Initializing BN254 prover CRS from memory with num points = 16777217 [36m+6s[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating gate selectors [32m+51ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating non-gate selectors [32m+9ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - using cached grumpkin crs of size 419430 at: "/mnt/user-data/mara/.bb-crs/grumpkin_g1.dat" [36m+69ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - Initializing Grumpkin prover CRS from memory with num points = 32769 [36m+13ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating ecc op wires and selector [32m+82ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating table polynomials [32m+14ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating sigmas and ids [32m+6ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating lookup read counts and tags [32m+109ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating lookup and databus inverses [32m+1ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - constructing z_perm [32m+7ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating lagrange polynomials [32m+14ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - constructing prover instance after trace populate
constructing databus polynomials [32m+65ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - constructing lookup table polynomials
constructing lookup read counts [32m+35ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - DeciderProvingKey(Circuit&)
creating decider proving key [36m+1s[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - Finalized circuit size: 26369 [36m+7ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - Log dyadic circuit size: 20 [36m+2ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - constructing proving key [36m+0ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating wires [36m+0ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating gate selectors [36m+75ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating non-gate selectors [36m+10ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating ecc op wires and selector [36m+133ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating table polynomials [36m+24ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating sigmas and ids [36m+6ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating lookup read counts and tags [36m+179ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating lookup and databus inverses [36m+0ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - constructing z_perm [36m+12ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating lagrange polynomials [36m+24ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - constructing prover instance after trace populate
constructing databus polynomials [36m+97ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - constructing lookup table polynomials [36m+64ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - constructing lookup read counts [36m+1ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - ACIR: Setting is_kernel to TRUE. [32m+4s[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - we are never here I assume? [32m+15ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - DeciderProvingKey(Circuit&)
creating decider proving key [32m+124ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - Finalized circuit size: 89829 [32m+22ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - Log dyadic circuit size: 20
constructing proving key
allocating wires [32m+1ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating gate selectors [32m+9ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating non-gate selectors [32m+2ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating ecc op wires and selector [32m+65ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating table polynomials [32m+21ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating sigmas and ids [32m+0ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating lookup read counts and tags [32m+156ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating lookup and databus inverses [32m+2ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - constructing z_perm [32m+10ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating lagrange polynomials [32m+22ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - constructing prover instance after trace populate
constructing databus polynomials [32m+180ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - constructing lookup table polynomials
constructing lookup read counts [32m+36ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - ACIR: Setting is_kernel to TRUE.
we are never here I assume? [36m+3s[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - DeciderProvingKey(Circuit&)
creating decider proving key [36m+95ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - Finalized circuit size: 39047 [36m+9ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - Log dyadic circuit size: 20
constructing proving key
allocating wires [36m+0ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating gate selectors [36m+73ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating non-gate selectors [36m+4ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating ecc op wires and selector [36m+119ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating table polynomials [36m+38ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating sigmas and ids [36m+6ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating lookup read counts and tags [36m+188ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating lookup and databus inverses [36m+4ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - constructing z_perm [36m+9ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating lagrange polynomials [36m+31ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - constructing prover instance after trace populate
constructing databus polynomials [36m+159ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - constructing lookup table polynomials
constructing lookup read counts [36m+62ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - ACIR: Setting is_kernel to TRUE.
we are never here I assume? [32m+5s[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - DeciderProvingKey(Circuit&)
creating decider proving key [32m+193ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - Finalized circuit size: 52452 [32m+31ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - Log dyadic circuit size: 20 [32m+3ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - constructing proving key
allocating wires [32m+3ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating gate selectors [32m+67ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating non-gate selectors [32m+7ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating ecc op wires and selector [32m+76ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating table polynomials [32m+16ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating sigmas and ids [32m+4ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - DeciderProvingKey(Circuit&)
creating decider proving key [36m+4s[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - Finalized circuit size: 27958 [36m+9ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - Log dyadic circuit size: 20
constructing proving key
allocating wires [36m+6ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating gate selectors [36m+14ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating non-gate selectors [36m+3ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating lookup read counts and tags
allocating lookup and databus inverses
constructing z_perm [32m+161ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - allocating lagrange polynomials [32m+24ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating ecc op wires and selector [36m+57ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating table polynomials [36m+14ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating sigmas and ids [36m+1ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - constructing prover instance after trace populate
constructing databus polynomials [32m+174ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating lookup read counts and tags [36m+149ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating lookup and databus inverses [36m+0ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - constructing z_perm [36m+7ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating lagrange polynomials [36m+25ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - constructing lookup table polynomials
constructing lookup read counts [32m+60ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - constructing prover instance after trace populate
constructing databus polynomials [36m+78ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - constructing lookup table polynomials
constructing lookup read counts [36m+58ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - Minimum required block sizes for structured trace:
executing relation checking rounds... [32m+4s[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - ecc_op: 380
pub_inputs: 3029
busread: 2960
arithmetic: 39255
delta_range: 7936
elliptic: 1386
aux: 10761
poseidon2_external: 4242
poseidon2_internal: 24170
lookup: 2076 [32m+1ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - ACIR: Setting is_kernel to TRUE. [36m+4s[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - ACIR: Setting is_kernel to TRUE. [36m+0ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - we are never here I assume? [36m+1ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - DeciderProvingKey(Circuit&)
creating decider proving key [36m+494ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - Finalized circuit size: 78173 [36m+13ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - Log dyadic circuit size: 20
constructing proving key
allocating wires [36m+12ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating gate selectors [36m+12ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating non-gate selectors [36m+9ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating ecc op wires and selector [36m+12ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating table polynomials [36m+6ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating sigmas and ids [36m+0ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating lookup read counts and tags
allocating lookup and databus inverses
constructing z_perm [36m+161ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating lagrange polynomials [36m+8ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 0 [32m+934ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - constructing prover instance after trace populate
constructing databus polynomials [36m+217ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 1 [32m+118ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - constructing lookup table polynomials
constructing lookup read counts [36m+75ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 2 [32m+83ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 3 [32m+38ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 4 [32m+27ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 5 [32m+18ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 6 [32m+13ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 7 [32m+13ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 8 [32m+15ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 9 [32m+27ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 10 [32m+2ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 11 [32m+5ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 12 [32m+0ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 13 [32m+3ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 14 [32m+1ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 15 [32m+6ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 16 [32m+4ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 17 [32m+4ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 18
completed sumcheck round 19 [32m+13ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - executing pcs opening rounds... [32m+78ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - made commitment key [32m+6ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - executed multivariate-to-univarite reduction [32m+1s[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - computed opening proof [32m+170ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - num_public_inputs of the last folding proof BEFORE SUBTRACTION3029
num_public_inputs of the last folding proof 2997 [32m+179ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - DeciderProvingKey(Circuit&)
creating decider proving key [32m+212ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - Finalized circuit size: 124461
Log dyadic circuit size: 17 [32m+4ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - constructing proving key [32m+1ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - constructing prover instance after trace populate
constructing databus polynomials [32m+76ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - constructing lookup table polynomials
constructing lookup read counts [32m+3ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - created oink prover [32m+226ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - created oink proof [32m+266ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - created decider prover
executing relation checking rounds... [32m+1ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 0 [32m+33ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 1 [32m+14ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 2 [32m+8ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 3 [32m+5ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 4 [32m+4ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 5 [32m+1ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 6 [32m+3ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 7 [32m+1ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 8 [32m+3ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 9 [32m+2ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 10 [32m+1ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 11 [32m+4ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 12 [32m+5ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 13 [32m+1ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 14 [32m+4ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 15 [32m+2ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 16 [32m+2ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - executing pcs opening rounds... [32m+0ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - made commitment key [32m+2ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - executed multivariate-to-univarite reduction [32m+229ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - computed opening proof [32m+22ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - ACIR: Setting is_kernel to TRUE. [36m+3s[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - we are never here I assume? [36m+9ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - DeciderProvingKey(Circuit&)
creating decider proving key [36m+72ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - Finalized circuit size: 89829 [36m+13ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - Log dyadic circuit size: 20 [36m+10ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - constructing proving key [36m+0ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating wires [36m+0ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating gate selectors [36m+13ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating non-gate selectors [36m+10ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating ecc op wires and selector [36m+9ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating table polynomials [36m+2ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating sigmas and ids [36m+2ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating lookup read counts and tags [36m+31ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating lookup and databus inverses [36m+0ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - constructing z_perm [36m+2ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - allocating lagrange polynomials [36m+17ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - constructing prover instance after trace populate
constructing databus polynomials [36m+103ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - constructing lookup table polynomials
constructing lookup read counts [36m+38ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 0 [32m+433ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 1 [32m+26ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 2 [32m+24ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 3 [32m+78ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 4 [32m+25ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 5 [32m+16ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 6 [32m+13ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 7 [32m+16ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 8 [32m+10ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 9 [32m+7ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 10 [32m+7ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 11 [32m+4ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 12 [32m+5ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 0 [32m+1s[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 1 [32m+18ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 2 [32m+17ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 3 [32m+10ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 4 [32m+7ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 5 [32m+6ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 6 [32m+7ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 7 [32m+3ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 8 [32m+3ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 9 [32m+3ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 10 [32m+16ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 11 [32m+11ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 12 [32m+6ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 13 [32m+5ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - completed sumcheck round 14 [32m+10ms[0m
[33;1maztec:sequencer [0m[VERBOSE] Sequencer sync check succeeded worldStateNumber=5 worldStateHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a l2BlockSourceNumber=5 l2BlockSourceHash=0x247883468590886041ad708495d733453f0963d99f323181a78428115b82783a p2pNumber=5 l1ToL2MessageSourceNumber=5 [33m+1s[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - am I here at all? [32m+566ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - Ultra verified: 1
Merge verified: 1 [32m+26ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - ECCVM verified: 1 [32m+36ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - ACIR: Setting is_kernel to TRUE. [36m+2s[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - we are never here I assume? [36m+1ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - Translator verified: 1 1
Goblin verified: 1 [32m+22ms[0m
[32;1maztec:pxe:bb-native-prover:bd0f00 [0m[INFO] client ivc proof BB out - ensure valid proof: 1
write proof and vk data to files.. [32m+1ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - DeciderProvingKey(Circuit&)
creating decider proving key [36m+87ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - Finalized circuit size: 25399 [36m+4ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - Log dyadic circuit size: 20 [36m+3ms[0m
[36;1maztec:pxe:bb-native-prover:bc0f00 [0m[INFO] client ivc proof BB out - constructing proving key
allocating wires [36m+2ms[0m