-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbenchmark-inventory.json
More file actions
8835 lines (8835 loc) · 411 KB
/
benchmark-inventory.json
File metadata and controls
8835 lines (8835 loc) · 411 KB
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
{
"benchmark": "verity-benchmark",
"manifest_schema_version": 1,
"inventory_source": {
"families": "families/*/family.yaml",
"implementations": "families/*/implementations/*/implementation.yaml",
"active_cases": "cases/*/*/case.yaml",
"active_tasks": "cases/*/*/tasks/*.yaml",
"backlog_cases": "backlog/*/*/case.yaml",
"backlog_tasks": "backlog/*/*/tasks/*.yaml"
},
"summary": {
"family_count": 27,
"implementation_count": 28,
"active_case_count": 25,
"backlog_case_count": 3,
"active_task_count": 134,
"backlog_task_count": 8,
"buildable_case_count": 27,
"runnable_task_count": 141,
"case_stage_counts": {
"build_green": 23,
"candidate": 1,
"proof_complete": 4
},
"translation_status_counts": {
"blocked": 1,
"translated": 27
},
"proof_status_counts": {
"blocked": 1,
"complete": 19,
"partial": 7,
"proof": 1
},
"task_track_counts": {
"proof-only": 142
},
"task_property_class_counts": {
"access_control_identity": 10,
"accounting_and_rate_guard": 1,
"accounting_bound": 16,
"accounting_conservation": 15,
"accounting_effect": 2,
"accounting_invariant_break": 1,
"accounting_update": 6,
"arithmetic_rounding": 3,
"authorization_state": 9,
"balance_conservation": 2,
"balance_credit_update": 2,
"balance_update": 1,
"calldata_decoder_bounds": 1,
"calldata_decoder_faithfulness": 1,
"calldata_decoder_metadata": 1,
"compliance_boundary": 3,
"exploit_trace": 1,
"fee_payout_bound": 1,
"frame_property": 2,
"guarded_solvency": 7,
"isOwner_effect": 3,
"lifecycle_accounting": 3,
"linked_list_acyclicity": 4,
"linked_list_invariant": 8,
"mapping_consistency": 1,
"monotonic_counter": 2,
"non_leakage": 1,
"noninterference": 1,
"output_range": 2,
"overflow_safety": 1,
"pps_nondecrease": 1,
"price_band": 2,
"price_computation": 5,
"reserve_state_transition": 5,
"silent_failure": 2,
"storage_update": 1,
"storage_write": 6,
"subtree_partition": 1,
"supply_invariance": 1,
"supply_update": 2,
"threshold_activation": 1,
"threshold_partition": 1,
"total_conservation": 1,
"tree_conservation": 1,
"weighted_selection": 1
},
"task_proof_family_counts": {
"arithmetic_accounting": 2,
"auction_clearing_correctness": 1,
"authorization_enablement": 25,
"functional_correctness": 32,
"protocol_transition_correctness": 22,
"refinement_equivalence": 11,
"state_preservation_local_effects": 49
},
"family_split_counts": {
"active": 24,
"backlog": 2,
"mixed": 1
}
},
"families": [
{
"family_id": "alchemix",
"display_name": "Alchemix",
"split": "active",
"status": "active",
"description": "Benchmark family for Alchemix Finance V3 self-repaying lending. Covers the lazy-accrual debt accounting machinery \u2014 earmarking, redemption, and the conservation invariants that bridge per-account state to the global Transmuter claim.",
"implementation_ids": [
"v3"
],
"case_ids": [
"alchemix/earmark_conservation"
],
"source_languages": [
"solidity"
],
"manifest_path": "families/alchemix/family.yaml"
},
{
"family_id": "balancer",
"display_name": "Balancer",
"split": "active",
"status": "active",
"description": "Benchmark family for Balancer protocol math and pool accounting invariants. The initial case targets ReClamm concentrated-liquidity swap rounding.",
"implementation_ids": [
"reclamm"
],
"case_ids": [
"balancer/reclamm_swap_rounding"
],
"source_languages": [
"solidity"
],
"manifest_path": "families/balancer/family.yaml"
},
{
"family_id": "cork",
"display_name": "Cork Protocol",
"split": "active",
"status": "active",
"description": "Benchmark family for Cork Protocol (Phoenix version) covering pool solvency invariants from the Certora formal verification report (September-December 2025). Targets the P-02 solvency gap where Certora timed out on unwindExerciseOther.",
"implementation_ids": [
"phoenix"
],
"case_ids": [
"cork/pool_solvency"
],
"source_languages": [
"solidity"
],
"manifest_path": "families/cork/family.yaml"
},
{
"family_id": "damn_vulnerable_defi",
"display_name": "Damn Vulnerable DeFi",
"split": "active",
"status": "active",
"description": "Active benchmark family for compact Damn Vulnerable DeFi protocol slices that isolate high-signal exploit patterns from the training challenges.",
"implementation_ids": [
"v2"
],
"case_ids": [
"damn_vulnerable_defi/side_entrance"
],
"source_languages": [
"solidity"
],
"manifest_path": "families/damn_vulnerable_defi/family.yaml"
},
{
"family_id": "ethereum",
"display_name": "Ethereum",
"split": "active",
"status": "active",
"description": "Ethereum L1 benchmark slices covering deposit processing pinned from public upstream artifacts.",
"implementation_ids": [
"deposit_contract"
],
"case_ids": [
"ethereum/deposit_contract_minimal"
],
"source_languages": [
"vyper"
],
"manifest_path": "families/ethereum/family.yaml"
},
{
"family_id": "forgeyields",
"display_name": "ForgeYields",
"split": "active",
"status": "active",
"description": "ForgeYields protocol verification cases.",
"implementation_ids": [
"contracts"
],
"case_ids": [
"forgeyields/global_solvency"
],
"source_languages": [
"solidity"
],
"manifest_path": "families/forgeyields/family.yaml"
},
{
"family_id": "ipor",
"display_name": "IPOR",
"split": "active",
"status": "active",
"description": "IPOR protocol verification cases.",
"implementation_ids": [
"ipor_fusion"
],
"case_ids": [
"ipor/plasma_vault_redeem_split"
],
"source_languages": [
"solidity"
],
"manifest_path": "families/ipor/family.yaml"
},
{
"family_id": "kleros",
"display_name": "Kleros",
"split": "active",
"status": "active",
"description": "Active benchmark family for Kleros protocol slices focused on proving conservation and selection properties over jury-sampling logic.",
"implementation_ids": [
"kleros_v2"
],
"case_ids": [
"kleros/sortition_trees"
],
"source_languages": [
"solidity"
],
"manifest_path": "families/kleros/family.yaml"
},
{
"family_id": "lagoon",
"display_name": "Lagoon",
"split": "active",
"status": "active",
"description": "ERC-7540 vault infrastructure with guardrails for vault valuation updates.",
"implementation_ids": [
"v0_6_0"
],
"case_ids": [
"lagoon/guardrails"
],
"source_languages": [
"solidity"
],
"manifest_path": "families/lagoon/family.yaml"
},
{
"family_id": "lido",
"display_name": "Lido",
"split": "active",
"status": "active",
"description": "Benchmark family for Lido protocol slices covering vault collateral locking arithmetic and solvency invariants from the V3 vaults feature branch.",
"implementation_ids": [
"core"
],
"case_ids": [
"lido/vaulthub_locked"
],
"source_languages": [
"solidity"
],
"manifest_path": "families/lido/family.yaml"
},
{
"family_id": "nexus_mutual",
"display_name": "Nexus Mutual",
"split": "active",
"status": "active",
"description": "Active benchmark family for Nexus Mutual protocol slices centered on proving arithmetic and behavioral properties over real contract pricing logic.",
"implementation_ids": [
"smart_contracts"
],
"case_ids": [
"nexus_mutual/ramm_price_band"
],
"source_languages": [
"solidity"
],
"manifest_path": "families/nexus_mutual/family.yaml"
},
{
"family_id": "onedelta",
"display_name": "1delta",
"split": "active",
"status": "active",
"description": "Benchmark family for 1delta composer routing and compact-calldata execution invariants. The initial case targets caller-address integrity for user-fund pulls through transfer commands, flash-loan callback continuations, swap-callback continuations, and the V3 direct callback-pull shortcut.",
"implementation_ids": [
"ethereum-composer"
],
"case_ids": [
"onedelta/caller_address_integrity"
],
"source_languages": [
"solidity"
],
"manifest_path": "families/onedelta/family.yaml"
},
{
"family_id": "openzeppelin",
"display_name": "OpenZeppelin",
"split": "backlog",
"status": "backlog",
"description": "Backlog benchmark family for OpenZeppelin contract logic, starting with an ERC-4626 virtual-offset deposit slice focused on rounding and inflation-attack mitigation.",
"implementation_ids": [
"contracts"
],
"case_ids": [
"openzeppelin/erc4626_virtual_offset_deposit"
],
"source_languages": [
"solidity"
],
"manifest_path": "families/openzeppelin/family.yaml"
},
{
"family_id": "paladin_votes",
"display_name": "Paladin Votes",
"split": "active",
"status": "active",
"description": "Governance recovery flow benchmarks drawn from the Sonic earn recovery system with emphasis on accounting and claim-state updates.",
"implementation_ids": [
"stream_recovery_claim"
],
"case_ids": [
"paladin_votes/stream_recovery_claim_usdc"
],
"source_languages": [
"solidity"
],
"manifest_path": "families/paladin_votes/family.yaml"
},
{
"family_id": "piku",
"display_name": "Piku",
"split": "active",
"status": "active",
"description": "Piku USP accounting benchmarks over the Inverter oracle-priced funding manager and queued redemption processor.",
"implementation_ids": [
"inverter_oracle_queue"
],
"case_ids": [
"piku/fund_conservation"
],
"source_languages": [
"solidity"
],
"manifest_path": "families/piku/family.yaml"
},
{
"family_id": "polaris",
"display_name": "Polaris",
"split": "active",
"status": "active",
"description": "Polaris bonding curve and reserve-accounting benchmarks.",
"implementation_ids": [
"bonding_curve"
],
"case_ids": [
"polaris/bonding_curve"
],
"source_languages": [
"solidity"
],
"manifest_path": "families/polaris/family.yaml"
},
{
"family_id": "polygon",
"display_name": "Polygon / Agglayer",
"split": "active",
"status": "active",
"description": "Polygon Agglayer bridge and interoperability verification cases.",
"implementation_ids": [
"agglayer_bridge"
],
"case_ids": [
"polygon/agglayer_bridge"
],
"source_languages": [
"solidity"
],
"manifest_path": "families/polygon/family.yaml"
},
{
"family_id": "reserve",
"display_name": "Reserve",
"split": "active",
"status": "active",
"description": "Active benchmark family for Reserve DTF Protocol slices, focused on proving arithmetic and behavioral properties over the rebalance and auction surfaces of the production Folio contracts.",
"implementation_ids": [
"dtfs"
],
"case_ids": [
"reserve/auction_price_band"
],
"source_languages": [
"solidity"
],
"manifest_path": "families/reserve/family.yaml"
},
{
"family_id": "rootstock",
"display_name": "Rootstock",
"split": "active",
"status": "active",
"description": "Benchmark family for Rootstock bridge and Flyover liquidity accounting invariants.",
"implementation_ids": [
"flyover-lbc"
],
"case_ids": [
"rootstock/flyover_quote_lifecycle"
],
"source_languages": [
"solidity"
],
"manifest_path": "families/rootstock/family.yaml"
},
{
"family_id": "safe",
"display_name": "Safe",
"split": "active",
"status": "active",
"description": "Benchmark family for Safe smart account (formerly Gnosis Safe) covering the OwnerManager linked list invariants from the Certora OwnerReach.spec.",
"implementation_ids": [
"smart_account"
],
"case_ids": [
"safe/owner_manager_reach"
],
"source_languages": [
"solidity"
],
"manifest_path": "families/safe/family.yaml"
},
{
"family_id": "term_finance",
"display_name": "Term Finance",
"split": "active",
"status": "active",
"description": "Active benchmark family for Term Finance fixed-rate lending auction correctness properties.",
"implementation_ids": [
"term_finance_contracts"
],
"case_ids": [
"term_finance/term_auction_clearing"
],
"source_languages": [
"solidity"
],
"manifest_path": "families/term_finance/family.yaml"
},
{
"family_id": "termmax",
"display_name": "TermMax",
"split": "active",
"status": "active",
"description": "Active benchmark family for TermMax protocol slices centered on proving AMM pricing-state transitions and fee-consistent reserve updates.",
"implementation_ids": [
"contracts_v2"
],
"case_ids": [
"termmax/order_v2_buy_xt_single_segment"
],
"source_languages": [
"solidity"
],
"manifest_path": "families/termmax/family.yaml"
},
{
"family_id": "uniswap_v2",
"display_name": "Uniswap V2",
"split": "backlog",
"status": "backlog",
"description": "Backlog benchmark family for Uniswap V2 core logic, starting with a fee-adjusted swap invariant slice over reserve updates.",
"implementation_ids": [
"v2_core"
],
"case_ids": [
"uniswap_v2/pair_fee_adjusted_swap"
],
"source_languages": [
"solidity"
],
"manifest_path": "families/uniswap_v2/family.yaml"
},
{
"family_id": "usual",
"display_name": "Usual",
"split": "mixed",
"status": "mixed",
"description": "Usual stablecoin/RWA protocol cases focused on collateralized mint and redeem accounting for USD0 and related collateral assets.",
"implementation_ids": [
"private_repo",
"verified_proxy"
],
"case_ids": [
"usual/placeholder",
"usual/dao_collateral"
],
"source_languages": [
"solidity"
],
"manifest_path": "families/usual/family.yaml"
},
{
"family_id": "wildcat",
"display_name": "Wildcat",
"split": "active",
"status": "active",
"description": "Benchmark family for Wildcat protocol slices focused on borrower liquidity obligations, reserve accounting, and withdrawal-priority-aware safety properties.",
"implementation_ids": [
"v2_protocol"
],
"case_ids": [
"wildcat/borrow_liquidity_safety"
],
"source_languages": [
"solidity"
],
"manifest_path": "families/wildcat/family.yaml"
},
{
"family_id": "zama",
"display_name": "Zama",
"split": "active",
"status": "active",
"description": "Benchmark family for Zama fhEVM confidential contract logic, starting with the ERC-7984 confidential token standard (co-developed with OpenZeppelin). Focuses on verifying the accounting correctness of FHE-based token operations where balances and transfer amounts are encrypted.",
"implementation_ids": [
"confidential_contracts"
],
"case_ids": [
"zama/erc7984_confidential_token"
],
"source_languages": [
"solidity"
],
"manifest_path": "families/zama/family.yaml"
},
{
"family_id": "zodiac",
"display_name": "Zodiac Roles",
"split": "active",
"status": "active",
"description": "Benchmark family for Gnosis Guild Zodiac Roles permissioning logic, starting with the Roles v3 lazy ABI decoder and condition field-extraction surface.",
"implementation_ids": [
"roles-v3"
],
"case_ids": [
"zodiac/roles_decoder_faithfulness"
],
"source_languages": [
"solidity"
],
"manifest_path": "families/zodiac/family.yaml"
}
],
"implementations": [
{
"family_id": "alchemix",
"implementation_id": "v3",
"display_name": "Alchemix V3",
"split": "active",
"status": "translated",
"upstream_repo": "https://github.com/alchemix-finance/v3",
"upstream_commit": "117c95b6ee11a75221d6fbdc79f16ac6acdb96f5",
"source_language": "solidity",
"source_artifact_path": "src/AlchemistV3.sol",
"case_ids": [
"alchemix/earmark_conservation"
],
"notes": "Implementation entry for the Alchemix V3 master branch, benchmarking the earmarking accounting system (_earmark, _sync, _computeUnrealizedAccount, redeem, _subEarmarkedDebt, _subDebt) and the lazy-projected earmark conservation invariant the team identified as most important (Ov3rkoalafied, 2026-04-24).",
"manifest_path": "families/alchemix/implementations/v3/implementation.yaml"
},
{
"family_id": "balancer",
"implementation_id": "reclamm",
"display_name": "Balancer ReClamm",
"split": "active",
"status": "translated",
"upstream_repo": "https://github.com/balancer/reclamm",
"upstream_commit": "cff18033d401a61326a2d6c078507084cbdc864b",
"source_language": "solidity",
"source_artifact_path": "contracts/lib/ReClammMath.sol",
"case_ids": [
"balancer/reclamm_swap_rounding"
],
"notes": "ReClamm is a Balancer v3 two-token readjusting concentrated-liquidity AMM. This implementation entry covers the swap quote arithmetic in ReClammMath.computeOutGivenIn / computeInGivenOut and the ReClammPool.onSwap dispatch path.",
"manifest_path": "families/balancer/implementations/reclamm/implementation.yaml"
},
{
"family_id": "cork",
"implementation_id": "phoenix",
"display_name": "Cork Phoenix",
"split": "active",
"status": "translated",
"upstream_repo": "https://github.com/Cork-Technology/phoenix",
"upstream_commit": "40d9b173c4b2262a93f36167355b5311d5f58e6b",
"source_language": "solidity",
"source_artifact_path": "contracts/libraries/PoolLib.sol",
"case_ids": [
"cork/pool_solvency"
],
"notes": "Implementation entry for Cork Protocol Phoenix version (v1.1.2), benchmarking the pool solvency invariant (Certora P-02) for the unwindExerciseOther function path.",
"manifest_path": "families/cork/implementations/phoenix/implementation.yaml"
},
{
"family_id": "damn_vulnerable_defi",
"implementation_id": "v2",
"display_name": "Damn Vulnerable DeFi v2",
"split": "active",
"status": "translated",
"upstream_repo": "https://github.com/OpenZeppelin/damn-vulnerable-defi",
"upstream_commit": "6797353c7cb5409e3d388e9e8f13954f9bb5f609",
"source_language": "solidity",
"source_artifact_path": "contracts/side-entrance/SideEntranceLenderPool.sol",
"case_ids": [
"damn_vulnerable_defi/side_entrance"
],
"notes": "Active implementation entry for the Damn Vulnerable DeFi challenge set, starting with the Side Entrance flash-loan repayment bug modeled as a compact pool-balance versus credited-liability slice.",
"manifest_path": "families/damn_vulnerable_defi/implementations/v2/implementation.yaml"
},
{
"family_id": "ethereum",
"implementation_id": "deposit_contract",
"display_name": "Ethereum Deposit Contract",
"split": "active",
"status": "translated",
"upstream_repo": "https://github.com/ethereum/deposit_contract",
"upstream_commit": "691feb18330d3d102b5a4b3d4434fac7571f51b8",
"source_language": "vyper",
"source_artifact_path": "deposit_contract/contracts/validator_registration.v.py",
"case_ids": [
"ethereum/deposit_contract_minimal"
],
"notes": "Canonical validator deposit contract used for the minimal counter and threshold slice translated into Lean.",
"manifest_path": "families/ethereum/implementations/deposit_contract/implementation.yaml"
},
{
"family_id": "forgeyields",
"implementation_id": "contracts",
"display_name": "ForgeYields Contracts",
"split": "active",
"status": "translated",
"upstream_repo": "https://etherscan.io/address/0xf1d326d806fa5d0d1f3747505397553cd31b191a#code",
"upstream_commit": "etherscan-verified-source",
"source_language": "solidity",
"source_artifact_path": "TokenGateway.sol",
"case_ids": [
"forgeyields/global_solvency"
],
"notes": "Focused TokenGateway accounting implementation entry for the guarded global-solvency benchmark.",
"manifest_path": "families/forgeyields/implementations/contracts/implementation.yaml"
},
{
"family_id": "ipor",
"implementation_id": "ipor_fusion",
"display_name": "IPOR Fusion",
"split": "active",
"status": "translated",
"upstream_repo": "https://github.com/IPOR-Labs/ipor-fusion",
"upstream_commit": "3a83157ee75a7c1752d9151aff43eb92a50cb346",
"source_language": "solidity",
"source_artifact_path": "contracts/vaults/PlasmaVault.sol",
"case_ids": [
"ipor/plasma_vault_redeem_split"
],
"notes": "Focused PlasmaVault redeem accounting implementation entry for the split redemption fee-rounding benchmark.",
"manifest_path": "families/ipor/implementations/ipor_fusion/implementation.yaml"
},
{
"family_id": "kleros",
"implementation_id": "kleros_v2",
"display_name": "Kleros V2",
"split": "active",
"status": "translated",
"upstream_repo": "https://github.com/kleros/kleros-v2",
"upstream_commit": "75125dfa54eee723cac239f20e5746d15786196b",
"source_language": "solidity",
"source_artifact_path": "contracts/src/libraries/SortitionTrees.sol",
"case_ids": [
"kleros/sortition_trees"
],
"notes": "Active implementation entry for Kleros V2, currently benchmarking a fixed-tree slice of the sortition library.",
"manifest_path": "families/kleros/implementations/kleros_v2/implementation.yaml"
},
{
"family_id": "lagoon",
"implementation_id": "v0_6_0",
"display_name": "Lagoon v0.6.0",
"split": "active",
"status": "translated",
"upstream_repo": "https://github.com/hopperlabsxyz/lagoon-v0",
"upstream_commit": "a8e73f5a5276aa4047b901083cbce127d7f7b470",
"source_language": "solidity",
"source_artifact_path": "src/v0.6.0/libraries/GuardrailsLib.sol",
"case_ids": [
"lagoon/guardrails"
],
"notes": "GuardrailsLib pure compliance decision for v0.6.0 vault valuation guardrails.",
"manifest_path": "families/lagoon/implementations/v0_6_0/implementation.yaml"
},
{
"family_id": "lido",
"implementation_id": "core",
"display_name": "Lido Core (V3 Vaults)",
"split": "active",
"status": "translated",
"upstream_repo": "https://github.com/lidofinance/core",
"upstream_commit": "96738395ca3bffd6513700a45d4c9389662c5835",
"source_language": "solidity",
"source_artifact_path": "contracts/0.8.25/vaults/VaultHub.sol",
"case_ids": [
"lido/vaulthub_locked"
],
"notes": "Implementation entry for the Lido core repository (master), benchmarking the VaultHub _locked() collateral computation and its solvency invariants.",
"manifest_path": "families/lido/implementations/core/implementation.yaml"
},
{
"family_id": "nexus_mutual",
"implementation_id": "smart_contracts",
"display_name": "Nexus Mutual Smart Contracts",
"split": "active",
"status": "translated",
"upstream_repo": "https://github.com/NexusMutual/smart-contracts",
"upstream_commit": "ad212043a78953a2cd98cd02b06c8e3e354c6023",
"source_language": "solidity",
"source_artifact_path": "contracts/modules/capital/Ramm.sol",
"case_ids": [
"nexus_mutual/ramm_price_band"
],
"notes": "Active implementation entry for the Nexus Mutual smart-contract repository, currently benchmarking the RAMM price-band slice.",
"manifest_path": "families/nexus_mutual/implementations/smart_contracts/implementation.yaml"
},
{
"family_id": "onedelta",
"implementation_id": "ethereum-composer",
"display_name": "OneDeltaComposerEthereum",
"split": "active",
"status": "translated",
"upstream_repo": "https://www.codeslaw.app/contracts/ethereum/0x97648606fcc22bd96f87345ac83bd6cfcdf0acba",
"upstream_commit": "verified-source-0x97648606fcc22bd96f87345ac83bd6cfcdf0acba",
"source_language": "solidity",
"source_artifact_path": "contracts/1delta/composer/chains/ethereum/Composer.sol",
"case_ids": [
"onedelta/caller_address_integrity"
],
"notes": "Ethereum deployment of the 1delta composer. This implementation entry covers the BaseComposer dispatch surface, Ethereum callback inheritance, and transfer command paths used by the caller-address integrity case.",
"manifest_path": "families/onedelta/implementations/ethereum-composer/implementation.yaml"
},
{
"family_id": "openzeppelin",
"implementation_id": "contracts",
"display_name": "OpenZeppelin Contracts",
"split": "backlog",
"status": "translated",
"upstream_repo": "https://github.com/OpenZeppelin/openzeppelin-contracts",
"upstream_commit": "45f032d1bcf1a88b7bc90154d7eef76c87bf9d45",
"source_language": "solidity",
"source_artifact_path": "contracts/token/ERC20/extensions/ERC4626.sol",
"case_ids": [
"openzeppelin/erc4626_virtual_offset_deposit"
],
"notes": "Backlog implementation entry for the OpenZeppelin ERC-4626 reference implementation, scoped to a compact virtual-offset deposit slice that captures rounding-sensitive share minting behavior.",
"manifest_path": "families/openzeppelin/implementations/contracts/implementation.yaml"
},
{
"family_id": "paladin_votes",
"implementation_id": "stream_recovery_claim",
"display_name": "Stream Recovery Claim",
"split": "active",
"status": "translated",
"upstream_repo": "https://github.com/Figu3/sonic-earn-recovery-system",
"upstream_commit": "699cbbc79def374cab9739e451acbbf866293d12",
"source_language": "solidity",
"source_artifact_path": "src/StreamRecoveryClaim.sol",
"case_ids": [
"paladin_votes/stream_recovery_claim_usdc"
],
"notes": "Claim accounting contract translated as a single-round slice with Merkle verification abstracted away from the benchmark.",
"manifest_path": "families/paladin_votes/implementations/stream_recovery_claim/implementation.yaml"
},
{
"family_id": "piku",
"implementation_id": "inverter_oracle_queue",
"display_name": "Inverter Oracle Queue Funding Manager",
"split": "active",
"status": "translated",
"upstream_repo": "https://github.com/InverterNetwork/contracts",
"upstream_commit": "8b7bc438344d646bab05b751c8eb4a7f0c8ca588",
"source_language": "solidity",
"source_artifact_path": "src/modules/fundingManager/oracle/FM_PC_Oracle_Redeeming_v1.sol",
"case_ids": [
"piku/fund_conservation"
],
"notes": "Docs-matching Piku workflow implementation: oracle-priced funding manager, manual queue payment processor, and manual oracle price module.",
"manifest_path": "families/piku/implementations/inverter_oracle_queue/implementation.yaml"
},
{
"family_id": "polaris",
"implementation_id": "bonding_curve",
"display_name": "Polaris Bonding Curve",
"split": "active",
"status": "translated",
"upstream_repo": "https://github.com/Polaris-Finance/bonding-curve",
"upstream_commit": "540c4ba5d0b86c0f42399d214f02120f3f8719b0",
"source_language": "solidity",
"source_artifact_path": "src/BaseBondingCurve.sol",
"case_ids": [
"polaris/bonding_curve"
],
"notes": "BaseBondingCurve reserve-ratio accounting for pETH buys, sells, and fee-router burns.",
"manifest_path": "families/polaris/implementations/bonding_curve/implementation.yaml"
},
{
"family_id": "polygon",
"implementation_id": "agglayer_bridge",
"display_name": "Polygon AgglayerBridge",
"split": "active",
"status": "translated",
"upstream_repo": "https://github.com/agglayer/agglayer-contracts",
"upstream_commit": "110bda5a03e70ee7331bc06407a8e79226d3e520",
"source_language": "solidity",
"source_artifact_path": "contracts/AgglayerBridge.sol",
"case_ids": [
"polygon/agglayer_bridge"
],
"notes": "Verity model of the AgglayerBridge claim path, focused on valid exit-root membership and source-network/leaf-index nullifier consumption.",
"manifest_path": "families/polygon/implementations/agglayer_bridge/implementation.yaml"
},
{
"family_id": "reserve",
"implementation_id": "dtfs",
"display_name": "Reserve DTF Protocol",
"split": "active",
"status": "translated",
"upstream_repo": "https://github.com/reserve-protocol/dtfs",
"upstream_commit": "14f75d18856d587adfaff24e77e5b20dda7c7267",
"source_language": "solidity",
"source_artifact_path": "contracts/utils/RebalancingLib.sol",
"case_ids": [
"reserve/auction_price_band"
],
"notes": "Active implementation entry for Reserve's DTF Protocol repository, currently benchmarking the auction price-band slice on RebalancingLib._price.",
"manifest_path": "families/reserve/implementations/dtfs/implementation.yaml"
},
{
"family_id": "rootstock",
"implementation_id": "flyover-lbc",
"display_name": "Rootstock Flyover LBC",
"split": "active",
"status": "translated",
"upstream_repo": "https://github.com/rsksmart/liquidity-bridge-contract",
"upstream_commit": "88a6d1ad64aeb3ad24e01042f4211ad8649784b9",
"source_language": "solidity",
"source_artifact_path": "src/PegOutContract.sol",
"case_ids": [
"rootstock/flyover_quote_lifecycle"
],
"notes": "Flyover's Liquidity Bridge Contract accelerates Rootstock peg-ins and peg-outs through liquidity providers. This implementation entry covers the peg-out quote lifecycle in PegOutContract.",
"manifest_path": "families/rootstock/implementations/flyover-lbc/implementation.yaml"
},
{
"family_id": "safe",
"implementation_id": "smart_account",
"display_name": "Safe Smart Account",
"split": "active",
"status": "translated",
"upstream_repo": "https://github.com/safe-global/safe-smart-account",
"upstream_commit": "a2e19c6aa42a45ceec68057f3fa387f169c5b321",
"source_language": "solidity",
"source_artifact_path": "contracts/base/OwnerManager.sol",
"case_ids": [
"safe/owner_manager_reach"
],
"notes": "Implementation entry for the Safe smart account OwnerManager module, benchmarking linked list invariant preservation under addOwnerWithThreshold, removeOwner, swapOwner, and setupOwners.",
"manifest_path": "families/safe/implementations/smart_account/implementation.yaml"
},
{
"family_id": "term_finance",
"implementation_id": "term_finance_contracts",
"display_name": "Term Finance Contracts",
"split": "active",
"status": "translated",
"upstream_repo": "https://github.com/term-finance/term-finance-contracts",
"upstream_commit": "127b74d871fc74e3a03d6d3b0f1fafe7e5d10275",
"source_language": "solidity",
"source_artifact_path": "contracts/TermAuction.sol",
"case_ids": [
"term_finance/term_auction_clearing"
],
"notes": "Implementation entry for the Term Finance protocol contracts repository, currently covering TermAuction clearing assignment correctness.",
"manifest_path": "families/term_finance/implementations/term_finance_contracts/implementation.yaml"
},
{
"family_id": "termmax",
"implementation_id": "contracts_v2",
"display_name": "TermMax Contracts V2",
"split": "active",
"status": "translated",
"upstream_repo": "https://github.com/term-structure/termmax-contract-v2",
"upstream_commit": "64bd47b98e064c7fb91ab4a59b70520e0ec285d5",
"source_language": "solidity",
"source_artifact_path": "contracts/v2/TermMaxOrderV2.sol",
"case_ids": [
"termmax/order_v2_buy_xt_single_segment"
],
"notes": "Active implementation entry for the TermMax V2 contracts repository, currently benchmarking the single-segment `debtToken -> XT` pricing-state transition slice of `TermMaxOrderV2`.",
"manifest_path": "families/termmax/implementations/contracts_v2/implementation.yaml"
},
{
"family_id": "uniswap_v2",
"implementation_id": "v2_core",
"display_name": "Uniswap V2 Core",
"split": "backlog",
"status": "translated",
"upstream_repo": "https://github.com/Uniswap/v2-core",
"upstream_commit": "ee547b17853e71ed4e0101ccfd52e70d5acded58",
"source_language": "solidity",
"source_artifact_path": "contracts/UniswapV2Pair.sol",
"case_ids": [
"uniswap_v2/pair_fee_adjusted_swap"
],
"notes": "Backlog implementation entry for the canonical Uniswap V2 pair contract, scoped to a compact swap invariant and reserve-update slice.",
"manifest_path": "families/uniswap_v2/implementations/v2_core/implementation.yaml"
},
{
"family_id": "usual",
"implementation_id": "private_repo",
"display_name": "Usual Private Repository",
"split": "backlog",
"status": "blocked",
"upstream_repo": null,
"upstream_commit": null,
"source_language": "solidity",
"source_artifact_path": "TBD",
"case_ids": [
"usual/placeholder"
],
"notes": "Intake is blocked on repository access, so no implementation artifact or case slice can be pinned yet.",
"manifest_path": "families/usual/implementations/private_repo/implementation.yaml"
},
{
"family_id": "usual",
"implementation_id": "verified_proxy",
"display_name": "Usual USD0 DaoCollateral Verified Proxy",
"split": "active",
"status": "translated",
"upstream_repo": null,
"upstream_commit": null,
"source_language": "solidity",
"source_artifact_path": "https://etherscan.io/address/0x0eec861d49f15f585d6bb4301fc4f89bce22af4e#code",
"case_ids": [
"usual/dao_collateral"
],
"notes": "Source was taken from the verified Etherscan implementation behind the public DaoCollateral proxy at 0xde6e1F680C4816446C8D515989E2358636A38b04.",
"manifest_path": "families/usual/implementations/verified_proxy/implementation.yaml"
},
{
"family_id": "wildcat",
"implementation_id": "v2_protocol",
"display_name": "Wildcat V2 Protocol",
"split": "active",
"status": "translated",
"upstream_repo": "https://github.com/wildcat-finance/v2-protocol",
"upstream_commit": "a70f297fbd1b1ab597e0e9a3458a2d13a34b4657",
"source_language": "solidity",
"source_artifact_path": "src/market/WildcatMarket.sol",
"case_ids": [
"wildcat/borrow_liquidity_safety"
],
"notes": "Implementation entry for Wildcat V2. This benchmark case isolates the borrow path and proves the positive-borrow liquidity preservation property against the tagged `v2.0.0` market logic.",
"manifest_path": "families/wildcat/implementations/v2_protocol/implementation.yaml"
},
{
"family_id": "zama",
"implementation_id": "confidential_contracts",
"display_name": "OpenZeppelin Confidential Contracts (ERC-7984)",
"split": "active",
"status": "translated",
"upstream_repo": "https://github.com/OpenZeppelin/openzeppelin-confidential-contracts",
"upstream_commit": "83364738f0d2b1655c60627588e3493099c359f7",
"source_language": "solidity",
"source_artifact_path": "contracts/token/ERC7984/ERC7984.sol",
"case_ids": [
"zama/erc7984_confidential_token"
],
"notes": "OpenZeppelin's reference implementation of ERC-7984, the confidential fungible token standard for Zama's fhEVM. Uses FHESafeMath for overflow-safe encrypted arithmetic and the FHE.select pattern for branchless conditional transfers.",
"manifest_path": "families/zama/implementations/confidential_contracts/implementation.yaml"
},
{
"family_id": "zodiac",
"implementation_id": "roles-v3",
"display_name": "Zodiac Roles v3 ABI Decoder",