curve-math 0.1.0-alpha.2

Pure Rust port of Curve Finance AMM math (StableSwap + CryptoSwap). Wei-level precision, fuzz-verified against on-chain get_dy for 200+ pools.
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
//! Unified `Pool` enum covering all Curve pool variants.
//!
//! # Variant identification
//!
//! | Variant          | Era / Template                    | Key traits                                   | Example pools                        |
//! |------------------|-----------------------------------|----------------------------------------------|--------------------------------------|
//! | `StableSwapV0`   | Earliest (2020)                   | A_PRECISION=1, no -1, fee after denorm       | sUSD, Compound, USDT, y, BUSD        |
//! | `StableSwapV1`   | 3pool era (2021)                  | A_PRECISION=1, -1 offset, fee after denorm   | 3pool, ren, sbtc, hbtc               |
//! | `StableSwapV2`   | Base/plain template               | A_PRECISION=100, -1, fee before denorm       | FRAX/USDC, stETH, factory plain      |
//! | `StableSwapALend`| Aave lending template             | A_PRECISION=100, no -1, dynamic fee, PREC_MUL| Aave, sAAVE, IB, aETH               |
//! | `StableSwapNG`   | StableSwap-NG factory             | A_PRECISION=100, -1, dynamic fee, before dnrm| NG plain + meta pools                |
//! | `StableSwapMeta` | Meta pool template                | A_PRECISION=100, -1, fee before denorm       | GUSD, HUSD, factory meta             |
//! | `TwoCryptoV1`    | Legacy CurveCryptoSwap2           | 2-coin, Newton y, price_scale                | CRV/ETH                              |
//! | `TwoCryptoNG`    | twocrypto-ng factory              | 2-coin, Cardano cubic y, price_scale         | crvUSD/FXN, most new 2-coin crypto   |
//! | `TriCryptoV1`    | Legacy tricrypto                  | 3-coin, Newton y, 2 price_scales             | tricrypto2 (USDT/WBTC/WETH)          |
//! | `TriCryptoNG`    | tricrypto-ng factory              | 3-coin, hybrid cubic y, 2 price_scales       | tricrypto-ng (USDC/WBTC/WETH)        |
//!
//! **How to identify which variant to use:**
//! - Pools from a known factory → the factory determines the variant (NG, twocrypto-ng, tricrypto-ng)
//! - Legacy pools → match by pool address against known deployments
//! - If the pool has `gamma()` → CryptoSwap; otherwise StableSwap
//! - If StableSwap has `stored_rates()` → NG (including v5+ crvUSD factory pools without offpeg)
//!   **Note:** `stored_rates()` return encoding varies by pool version:
//!   v5+ returns fixed-size `uint256[N_COINS]` (no ABI length prefix),
//!   v6+ returns dynamic `uint256[]` (with offset + length prefix).
//!   Consumers reading rates on-chain must handle both formats.
//! - If StableSwap has `offpeg_fee_multiplier()` without `stored_rates()` → ALend
//! - If StableSwap has `version()` → NG (v6+ crvUSD factory pools without stored_rates or offpeg)
//! - Check `A_PRECISION` (1 for V0/V1, 100 for V2/Meta/ALend/NG)

use alloy_primitives::U256;

use crate::swap;

/// Error returned by Pool setter methods.
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum PoolError {
    /// Field does not exist on this pool variant.
    NotApplicable,
    /// Index exceeds the number of coins or price scales.
    IndexOutOfRange,
}

impl std::fmt::Display for PoolError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::NotApplicable => f.write_str("field not applicable to this pool variant"),
            Self::IndexOutOfRange => f.write_str("index out of range"),
        }
    }
}

impl std::error::Error for PoolError {}

/// All known Curve pool variants with their parameters.
///
/// # State update frequency for indexer/adapter implementations
///
/// Each field falls into one of three categories:
///
/// | Category | When to update | Fields |
/// |----------|---------------|--------|
/// | **Per-block** | Every block (or on every swap event) | `balances`, `rates` (if oracle), `d`, `price_scale` |
/// | **Per-event** | On admin events (rare, days/weeks) | `amp` (during A ramping) |
/// | **Static** | Once at pool creation | `fee`, `offpeg_fee_multiplier`, `precision_mul` |
///
/// For `rates`: plain tokens have static rates (`10^(36-decimals)`), but ERC4626/oracle
/// tokens have dynamic rates that change per-block. Read `stored_rates()` from the pool
/// contract to get current rates for oracle-enabled pools.
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum Pool {
    /// Oldest StableSwap pools (sUSD, Compound, USDT, y, BUSD).
    /// A_PRECISION=1, no -1 offset, fee after denormalize.
    StableSwapV0 {
        balances: Vec<U256>,
        rates: Vec<U256>,
        amp: U256,
        fee: U256,
    },

    /// 3pool-era StableSwap (3pool, ren, sbtc, hbtc).
    /// A_PRECISION=1, -1 offset, fee after denormalize.
    StableSwapV1 {
        balances: Vec<U256>,
        rates: Vec<U256>,
        amp: U256,
        fee: U256,
    },

    /// Base/plain template StableSwap (FRAX/USDC, stETH, factory plain).
    /// A_PRECISION=100, -1 offset, fee before denormalize.
    StableSwapV2 {
        balances: Vec<U256>,
        rates: Vec<U256>,
        amp: U256,
        fee: U256,
    },

    /// Aave-style lending StableSwap (Aave, sAAVE, IB, aETH).
    /// A_PRECISION=100, no -1 offset, dynamic fee, uses precision_mul.
    StableSwapALend {
        balances: Vec<U256>,
        precision_mul: Vec<U256>,
        amp: U256,
        fee: U256,
        offpeg_fee_multiplier: U256,
    },

    /// StableSwap-NG (plain + meta NG pools).
    /// A_PRECISION=100, -1 offset, dynamic fee, fee before denormalize.
    StableSwapNG {
        balances: Vec<U256>,
        rates: Vec<U256>,
        amp: U256,
        fee: U256,
        offpeg_fee_multiplier: U256,
    },

    /// Meta pool StableSwap (GUSD/3CRV, HUSD, factory meta).
    /// A_PRECISION=100, -1 offset, fee before denormalize.
    /// `rates[1]` must be set to fresh `virtual_price` from base pool.
    StableSwapMeta {
        balances: Vec<U256>,
        rates: Vec<U256>,
        amp: U256,
        fee: U256,
    },

    /// Legacy 2-coin CryptoSwap (CurveCryptoSwap2).
    /// Newton iteration for y.
    TwoCryptoV1 {
        balances: [U256; 2],
        precisions: [U256; 2],
        price_scale: U256,
        d: U256,
        ann: U256,
        gamma: U256,
        mid_fee: U256,
        out_fee: U256,
        fee_gamma: U256,
    },

    /// Next-gen 2-coin CryptoSwap (twocrypto-ng).
    /// Cardano cubic formula for y.
    TwoCryptoNG {
        balances: [U256; 2],
        precisions: [U256; 2],
        price_scale: U256,
        d: U256,
        ann: U256,
        gamma: U256,
        mid_fee: U256,
        out_fee: U256,
        fee_gamma: U256,
    },

    /// TwoCryptoNG pools using StableSwap MATH (v0.1.0).
    /// CryptoSwap interface but StableSwap invariant (gamma ignored).
    /// Detect via: pool.MATH().version() == "v0.1.0"
    TwoCryptoStable {
        balances: [U256; 2],
        precisions: [U256; 2],
        price_scale: U256,
        d: U256,
        ann: U256,
        mid_fee: U256,
        out_fee: U256,
        fee_gamma: U256,
    },

    /// Legacy 3-coin CryptoSwap (tricrypto2).
    /// Newton iteration for y.
    TriCryptoV1 {
        balances: [U256; 3],
        precisions: [U256; 3],
        price_scale: [U256; 2],
        d: U256,
        ann: U256,
        gamma: U256,
        mid_fee: U256,
        out_fee: U256,
        fee_gamma: U256,
    },

    /// Next-gen 3-coin CryptoSwap (tricrypto-ng).
    /// Hybrid cubic + Newton for y.
    TriCryptoNG {
        balances: [U256; 3],
        precisions: [U256; 3],
        price_scale: [U256; 2],
        d: U256,
        ann: U256,
        gamma: U256,
        mid_fee: U256,
        out_fee: U256,
        fee_gamma: U256,
    },
}

impl Pool {
    /// Token balances in native units (wei).
    pub fn balances(&self) -> &[U256] {
        match self {
            Pool::StableSwapV0 { balances, .. }
            | Pool::StableSwapV1 { balances, .. }
            | Pool::StableSwapV2 { balances, .. }
            | Pool::StableSwapALend { balances, .. }
            | Pool::StableSwapNG { balances, .. }
            | Pool::StableSwapMeta { balances, .. } => balances,
            Pool::TwoCryptoV1 { balances, .. }
            | Pool::TwoCryptoNG { balances, .. }
            | Pool::TwoCryptoStable { balances, .. } => balances,
            Pool::TriCryptoV1 { balances, .. } | Pool::TriCryptoNG { balances, .. } => balances,
        }
    }

    /// Compute output amount for swapping `dx` of coin `i` into coin `j`.
    ///
    /// Returns `None` if the swap would fail (zero input, out of range, etc.).
    /// Matches Curve's on-chain `get_dy` at wei-level precision.
    ///
    /// # Arguments
    /// * `i` — index of input coin
    /// * `j` — index of output coin
    /// * `dx` — amount of coin `i` to swap (in coin's native decimals)
    pub fn get_amount_out(&self, i: usize, j: usize, dx: U256) -> Option<U256> {
        match self {
            Pool::StableSwapV0 {
                balances,
                rates,
                amp,
                fee,
            } => swap::stableswap_v0::get_amount_out(balances, rates, *amp, *fee, i, j, dx),
            Pool::StableSwapV1 {
                balances,
                rates,
                amp,
                fee,
            } => swap::stableswap_v1::get_amount_out(balances, rates, *amp, *fee, i, j, dx),
            Pool::StableSwapV2 {
                balances,
                rates,
                amp,
                fee,
            } => swap::stableswap_v2::get_amount_out(balances, rates, *amp, *fee, i, j, dx),
            Pool::StableSwapALend {
                balances,
                precision_mul,
                amp,
                fee,
                offpeg_fee_multiplier,
            } => swap::stableswap_alend::get_amount_out(
                balances,
                precision_mul,
                *amp,
                *fee,
                *offpeg_fee_multiplier,
                i,
                j,
                dx,
            ),
            Pool::StableSwapNG {
                balances,
                rates,
                amp,
                fee,
                offpeg_fee_multiplier,
            } => swap::stableswap_ng::get_amount_out(
                balances,
                rates,
                *amp,
                *fee,
                *offpeg_fee_multiplier,
                i,
                j,
                dx,
            ),
            Pool::StableSwapMeta {
                balances,
                rates,
                amp,
                fee,
            } => swap::stableswap_meta::get_amount_out(balances, rates, *amp, *fee, i, j, dx),
            Pool::TwoCryptoV1 {
                balances,
                precisions,
                price_scale,
                d,
                ann,
                gamma,
                mid_fee,
                out_fee,
                fee_gamma,
            } => swap::twocrypto_v1::get_amount_out(
                balances,
                precisions,
                *price_scale,
                *d,
                *ann,
                *gamma,
                *mid_fee,
                *out_fee,
                *fee_gamma,
                i,
                j,
                dx,
            ),
            Pool::TwoCryptoNG {
                balances,
                precisions,
                price_scale,
                d,
                ann,
                gamma,
                mid_fee,
                out_fee,
                fee_gamma,
            } => swap::twocrypto_ng::get_amount_out(
                balances,
                precisions,
                *price_scale,
                *d,
                *ann,
                *gamma,
                *mid_fee,
                *out_fee,
                *fee_gamma,
                i,
                j,
                dx,
            ),
            Pool::TwoCryptoStable {
                balances,
                precisions,
                price_scale,
                d,
                ann,
                mid_fee,
                out_fee,
                fee_gamma,
            } => swap::twocrypto_stable::get_amount_out(
                balances,
                precisions,
                *price_scale,
                *d,
                *ann,
                *mid_fee,
                *out_fee,
                *fee_gamma,
                i,
                j,
                dx,
            ),
            Pool::TriCryptoV1 {
                balances,
                precisions,
                price_scale,
                d,
                ann,
                gamma,
                mid_fee,
                out_fee,
                fee_gamma,
            } => swap::tricrypto_v1::get_amount_out(
                balances,
                precisions,
                price_scale,
                *d,
                *ann,
                *gamma,
                *mid_fee,
                *out_fee,
                *fee_gamma,
                i,
                j,
                dx,
            ),
            Pool::TriCryptoNG {
                balances,
                precisions,
                price_scale,
                d,
                ann,
                gamma,
                mid_fee,
                out_fee,
                fee_gamma,
            } => swap::tricrypto_ng::get_amount_out(
                balances,
                precisions,
                price_scale,
                *d,
                *ann,
                *gamma,
                *mid_fee,
                *out_fee,
                *fee_gamma,
                i,
                j,
                dx,
            ),
        }
    }

    /// Compute minimum input of coin `i` to receive at least `desired_output` of coin `j`.
    ///
    /// Returns `None` if the swap is not feasible.
    /// Guaranteed: `get_amount_out(i, j, get_amount_in(i, j, dy)) >= dy`.
    pub fn get_amount_in(&self, i: usize, j: usize, desired_output: U256) -> Option<U256> {
        match self {
            Pool::StableSwapV0 {
                balances,
                rates,
                amp,
                fee,
            } => swap::stableswap_v0::get_amount_in(
                balances,
                rates,
                *amp,
                *fee,
                i,
                j,
                desired_output,
            ),
            Pool::StableSwapV1 {
                balances,
                rates,
                amp,
                fee,
            } => swap::stableswap_v1::get_amount_in(
                balances,
                rates,
                *amp,
                *fee,
                i,
                j,
                desired_output,
            ),
            Pool::StableSwapV2 {
                balances,
                rates,
                amp,
                fee,
            } => swap::stableswap_v2::get_amount_in(
                balances,
                rates,
                *amp,
                *fee,
                i,
                j,
                desired_output,
            ),
            Pool::StableSwapALend {
                balances,
                precision_mul,
                amp,
                fee,
                offpeg_fee_multiplier,
            } => swap::stableswap_alend::get_amount_in(
                balances,
                precision_mul,
                *amp,
                *fee,
                *offpeg_fee_multiplier,
                i,
                j,
                desired_output,
            ),
            Pool::StableSwapNG {
                balances,
                rates,
                amp,
                fee,
                offpeg_fee_multiplier,
            } => swap::stableswap_ng::get_amount_in(
                balances,
                rates,
                *amp,
                *fee,
                *offpeg_fee_multiplier,
                i,
                j,
                desired_output,
            ),
            Pool::StableSwapMeta {
                balances,
                rates,
                amp,
                fee,
            } => swap::stableswap_meta::get_amount_in(
                balances,
                rates,
                *amp,
                *fee,
                i,
                j,
                desired_output,
            ),
            Pool::TwoCryptoV1 {
                balances,
                precisions,
                price_scale,
                d,
                ann,
                gamma,
                mid_fee,
                out_fee,
                fee_gamma,
            } => swap::twocrypto_v1::get_amount_in(
                balances,
                precisions,
                *price_scale,
                *d,
                *ann,
                *gamma,
                *mid_fee,
                *out_fee,
                *fee_gamma,
                i,
                j,
                desired_output,
            ),
            Pool::TwoCryptoNG {
                balances,
                precisions,
                price_scale,
                d,
                ann,
                gamma,
                mid_fee,
                out_fee,
                fee_gamma,
            } => swap::twocrypto_ng::get_amount_in(
                balances,
                precisions,
                *price_scale,
                *d,
                *ann,
                *gamma,
                *mid_fee,
                *out_fee,
                *fee_gamma,
                i,
                j,
                desired_output,
            ),
            Pool::TwoCryptoStable {
                balances,
                precisions,
                price_scale,
                d,
                ann,
                mid_fee,
                out_fee,
                fee_gamma,
            } => swap::twocrypto_stable::get_amount_in(
                balances,
                precisions,
                *price_scale,
                *d,
                *ann,
                *mid_fee,
                *out_fee,
                *fee_gamma,
                i,
                j,
                desired_output,
            ),
            Pool::TriCryptoV1 {
                balances,
                precisions,
                price_scale,
                d,
                ann,
                gamma,
                mid_fee,
                out_fee,
                fee_gamma,
            } => swap::tricrypto_v1::get_amount_in(
                balances,
                precisions,
                price_scale,
                *d,
                *ann,
                *gamma,
                *mid_fee,
                *out_fee,
                *fee_gamma,
                i,
                j,
                desired_output,
            ),
            Pool::TriCryptoNG {
                balances,
                precisions,
                price_scale,
                d,
                ann,
                gamma,
                mid_fee,
                out_fee,
                fee_gamma,
            } => swap::tricrypto_ng::get_amount_in(
                balances,
                precisions,
                price_scale,
                *d,
                *ann,
                *gamma,
                *mid_fee,
                *out_fee,
                *fee_gamma,
                i,
                j,
                desired_output,
            ),
        }
    }

    /// Marginal spot price dy/dx as `(numerator, denominator)`, fee-inclusive.
    ///
    /// For a small swap of coin `i` → coin `j`, the price is approximately
    /// `numerator / denominator` in units of coin `j` per coin `i`.
    pub fn spot_price(&self, i: usize, j: usize) -> Option<(U256, U256)> {
        match self {
            Pool::StableSwapV0 {
                balances,
                rates,
                amp,
                fee,
            } => swap::stableswap_v0::spot_price(balances, rates, *amp, *fee, i, j),
            Pool::StableSwapV1 {
                balances,
                rates,
                amp,
                fee,
            } => swap::stableswap_v1::spot_price(balances, rates, *amp, *fee, i, j),
            Pool::StableSwapV2 {
                balances,
                rates,
                amp,
                fee,
            } => swap::stableswap_v2::spot_price(balances, rates, *amp, *fee, i, j),
            Pool::StableSwapALend {
                balances,
                precision_mul,
                amp,
                fee,
                offpeg_fee_multiplier,
            } => swap::stableswap_alend::spot_price(
                balances,
                precision_mul,
                *amp,
                *fee,
                *offpeg_fee_multiplier,
                i,
                j,
            ),
            Pool::StableSwapNG {
                balances,
                rates,
                amp,
                fee,
                offpeg_fee_multiplier,
            } => swap::stableswap_ng::spot_price(
                balances,
                rates,
                *amp,
                *fee,
                *offpeg_fee_multiplier,
                i,
                j,
            ),
            Pool::StableSwapMeta {
                balances,
                rates,
                amp,
                fee,
            } => swap::stableswap_meta::spot_price(balances, rates, *amp, *fee, i, j),
            Pool::TwoCryptoV1 {
                balances,
                precisions,
                price_scale,
                d,
                ann,
                gamma,
                mid_fee,
                out_fee,
                fee_gamma,
            } => swap::twocrypto_v1::spot_price(
                balances,
                precisions,
                *price_scale,
                *d,
                *ann,
                *gamma,
                *mid_fee,
                *out_fee,
                *fee_gamma,
                i,
                j,
            ),
            Pool::TwoCryptoNG {
                balances,
                precisions,
                price_scale,
                d,
                ann,
                gamma,
                mid_fee,
                out_fee,
                fee_gamma,
            } => swap::twocrypto_ng::spot_price(
                balances,
                precisions,
                *price_scale,
                *d,
                *ann,
                *gamma,
                *mid_fee,
                *out_fee,
                *fee_gamma,
                i,
                j,
            ),
            Pool::TwoCryptoStable {
                balances,
                precisions,
                price_scale,
                d,
                ann,
                mid_fee,
                out_fee,
                fee_gamma,
            } => swap::twocrypto_stable::spot_price(
                balances,
                precisions,
                *price_scale,
                *d,
                *ann,
                *mid_fee,
                *out_fee,
                *fee_gamma,
                i,
                j,
            ),
            Pool::TriCryptoV1 {
                balances,
                precisions,
                price_scale,
                d,
                ann,
                gamma,
                mid_fee,
                out_fee,
                fee_gamma,
            } => swap::tricrypto_v1::spot_price(
                balances,
                precisions,
                price_scale,
                *d,
                *ann,
                *gamma,
                *mid_fee,
                *out_fee,
                *fee_gamma,
                i,
                j,
            ),
            Pool::TriCryptoNG {
                balances,
                precisions,
                price_scale,
                d,
                ann,
                gamma,
                mid_fee,
                out_fee,
                fee_gamma,
            } => swap::tricrypto_ng::spot_price(
                balances,
                precisions,
                price_scale,
                *d,
                *ann,
                *gamma,
                *mid_fee,
                *out_fee,
                *fee_gamma,
                i,
                j,
            ),
        }
    }

    /// Amplification parameter (`amp` for StableSwap, `ann` for CryptoSwap).
    pub fn amp(&self) -> U256 {
        match self {
            Pool::StableSwapV0 { amp, .. }
            | Pool::StableSwapV1 { amp, .. }
            | Pool::StableSwapV2 { amp, .. }
            | Pool::StableSwapALend { amp, .. }
            | Pool::StableSwapNG { amp, .. }
            | Pool::StableSwapMeta { amp, .. } => *amp,
            Pool::TwoCryptoV1 { ann, .. }
            | Pool::TwoCryptoNG { ann, .. }
            | Pool::TwoCryptoStable { ann, .. } => *ann,
            Pool::TriCryptoV1 { ann, .. } | Pool::TriCryptoNG { ann, .. } => *ann,
        }
    }

    /// Fee for StableSwap variants. Returns `None` for CryptoSwap.
    pub fn fee(&self) -> Option<U256> {
        match self {
            Pool::StableSwapV0 { fee, .. }
            | Pool::StableSwapV1 { fee, .. }
            | Pool::StableSwapV2 { fee, .. }
            | Pool::StableSwapALend { fee, .. }
            | Pool::StableSwapNG { fee, .. }
            | Pool::StableSwapMeta { fee, .. } => Some(*fee),
            _ => None,
        }
    }

    /// CryptoSwap fee parameters. Returns `None` for StableSwap.
    pub fn crypto_fees(&self) -> Option<(U256, U256, U256)> {
        match self {
            Pool::TwoCryptoV1 {
                mid_fee,
                out_fee,
                fee_gamma,
                ..
            }
            | Pool::TwoCryptoNG {
                mid_fee,
                out_fee,
                fee_gamma,
                ..
            }
            | Pool::TwoCryptoStable {
                mid_fee,
                out_fee,
                fee_gamma,
                ..
            }
            | Pool::TriCryptoV1 {
                mid_fee,
                out_fee,
                fee_gamma,
                ..
            }
            | Pool::TriCryptoNG {
                mid_fee,
                out_fee,
                fee_gamma,
                ..
            } => Some((*mid_fee, *out_fee, *fee_gamma)),
            _ => None,
        }
    }

    /// Rates for StableSwap variants (V0/V1/V2/NG/Meta).
    /// Returns `None` for ALend (uses precision_mul) and CryptoSwap.
    pub fn rates(&self) -> Option<&[U256]> {
        match self {
            Pool::StableSwapV0 { rates, .. }
            | Pool::StableSwapV1 { rates, .. }
            | Pool::StableSwapV2 { rates, .. }
            | Pool::StableSwapNG { rates, .. }
            | Pool::StableSwapMeta { rates, .. } => Some(rates),
            _ => None,
        }
    }

    /// Pool invariant D. Returns `None` for StableSwap (D is computed, not stored).
    pub fn d(&self) -> Option<U256> {
        match self {
            Pool::TwoCryptoV1 { d, .. }
            | Pool::TwoCryptoNG { d, .. }
            | Pool::TwoCryptoStable { d, .. } => Some(*d),
            Pool::TriCryptoV1 { d, .. } | Pool::TriCryptoNG { d, .. } => Some(*d),
            _ => None,
        }
    }

    /// Gamma parameter. Returns `None` for StableSwap and TwoCryptoStable.
    pub fn gamma(&self) -> Option<U256> {
        match self {
            Pool::TwoCryptoV1 { gamma, .. } | Pool::TwoCryptoNG { gamma, .. } => Some(*gamma),
            Pool::TriCryptoV1 { gamma, .. } | Pool::TriCryptoNG { gamma, .. } => Some(*gamma),
            _ => None,
        }
    }

    /// Precision multipliers for ALend. Returns `None` for all other variants.
    pub fn precision_mul(&self) -> Option<&[U256]> {
        match self {
            Pool::StableSwapALend { precision_mul, .. } => Some(precision_mul),
            _ => None,
        }
    }

    /// Precisions for CryptoSwap variants. Returns `None` for StableSwap.
    pub fn precisions(&self) -> Option<&[U256]> {
        match self {
            Pool::TwoCryptoV1 { precisions, .. }
            | Pool::TwoCryptoNG { precisions, .. }
            | Pool::TwoCryptoStable { precisions, .. } => Some(precisions),
            Pool::TriCryptoV1 { precisions, .. } | Pool::TriCryptoNG { precisions, .. } => {
                Some(precisions)
            }
            _ => None,
        }
    }

    /// Offpeg fee multiplier. Returns `None` for variants without dynamic fee.
    pub fn offpeg_fee_multiplier(&self) -> Option<U256> {
        match self {
            Pool::StableSwapNG {
                offpeg_fee_multiplier,
                ..
            }
            | Pool::StableSwapALend {
                offpeg_fee_multiplier,
                ..
            } => Some(*offpeg_fee_multiplier),
            _ => None,
        }
    }

    /// Price scale(s). Returns `None` for StableSwap.
    pub fn price_scale(&self) -> Option<&[U256]> {
        match self {
            Pool::TwoCryptoV1 { price_scale, .. }
            | Pool::TwoCryptoNG { price_scale, .. }
            | Pool::TwoCryptoStable { price_scale, .. } => std::slice::from_ref(price_scale).into(),
            Pool::TriCryptoV1 { price_scale, .. } | Pool::TriCryptoNG { price_scale, .. } => {
                Some(price_scale)
            }
            _ => None,
        }
    }

    /// Set balance for coin at `index`. **Per-block update.**
    pub fn set_balance(&mut self, index: usize, value: U256) -> Result<(), PoolError> {
        let bal = match self {
            Pool::StableSwapV0 { balances, .. }
            | Pool::StableSwapV1 { balances, .. }
            | Pool::StableSwapV2 { balances, .. }
            | Pool::StableSwapALend { balances, .. }
            | Pool::StableSwapNG { balances, .. }
            | Pool::StableSwapMeta { balances, .. } => balances.get_mut(index),
            Pool::TwoCryptoV1 { balances, .. }
            | Pool::TwoCryptoNG { balances, .. }
            | Pool::TwoCryptoStable { balances, .. } => balances.get_mut(index),
            Pool::TriCryptoV1 { balances, .. } | Pool::TriCryptoNG { balances, .. } => {
                balances.get_mut(index)
            }
        };
        *bal.ok_or(PoolError::IndexOutOfRange)? = value;
        Ok(())
    }

    /// Set rate for coin at `index`. **Per-block for oracle tokens, static otherwise.**
    ///
    /// Applies to StableSwap variants with rates (V0/V1/V2/NG/Meta).
    pub fn set_rate(&mut self, index: usize, value: U256) -> Result<(), PoolError> {
        match self {
            Pool::StableSwapV0 { rates, .. }
            | Pool::StableSwapV1 { rates, .. }
            | Pool::StableSwapV2 { rates, .. }
            | Pool::StableSwapNG { rates, .. }
            | Pool::StableSwapMeta { rates, .. } => {
                *rates.get_mut(index).ok_or(PoolError::IndexOutOfRange)? = value;
                Ok(())
            }
            _ => Err(PoolError::NotApplicable),
        }
    }

    /// Set pool invariant D. **Per-block update for CryptoSwap.**
    pub fn set_d(&mut self, value: U256) -> Result<(), PoolError> {
        match self {
            Pool::TwoCryptoV1 { d, .. }
            | Pool::TwoCryptoNG { d, .. }
            | Pool::TwoCryptoStable { d, .. } => {
                *d = value;
                Ok(())
            }
            Pool::TriCryptoV1 { d, .. } | Pool::TriCryptoNG { d, .. } => {
                *d = value;
                Ok(())
            }
            _ => Err(PoolError::NotApplicable),
        }
    }

    /// Set price_scale at `index`. **Per-block update for CryptoSwap.**
    pub fn set_price_scale(&mut self, index: usize, value: U256) -> Result<(), PoolError> {
        match self {
            Pool::TwoCryptoV1 { price_scale, .. }
            | Pool::TwoCryptoNG { price_scale, .. }
            | Pool::TwoCryptoStable { price_scale, .. } => {
                if index != 0 {
                    return Err(PoolError::IndexOutOfRange);
                }
                *price_scale = value;
                Ok(())
            }
            Pool::TriCryptoV1 { price_scale, .. } | Pool::TriCryptoNG { price_scale, .. } => {
                *price_scale
                    .get_mut(index)
                    .ok_or(PoolError::IndexOutOfRange)? = value;
                Ok(())
            }
            _ => Err(PoolError::NotApplicable),
        }
    }

    /// Set amplification parameter. **Semi-static (changes during A ramping).**
    ///
    /// Applicable to all variants.
    pub fn set_amp(&mut self, value: U256) {
        match self {
            Pool::StableSwapV0 { amp, .. }
            | Pool::StableSwapV1 { amp, .. }
            | Pool::StableSwapV2 { amp, .. }
            | Pool::StableSwapALend { amp, .. }
            | Pool::StableSwapNG { amp, .. }
            | Pool::StableSwapMeta { amp, .. } => *amp = value,
            Pool::TwoCryptoV1 { ann, .. }
            | Pool::TwoCryptoNG { ann, .. }
            | Pool::TwoCryptoStable { ann, .. } => *ann = value,
            Pool::TriCryptoV1 { ann, .. } | Pool::TriCryptoNG { ann, .. } => *ann = value,
        }
    }

    /// Set gamma parameter. **Semi-static (changes during gamma ramping).**
    ///
    /// Returns `Err` for StableSwap and TwoCryptoStable variants.
    pub fn set_gamma(&mut self, value: U256) -> Result<(), PoolError> {
        match self {
            Pool::TwoCryptoV1 { gamma, .. } | Pool::TwoCryptoNG { gamma, .. } => {
                *gamma = value;
                Ok(())
            }
            Pool::TriCryptoV1 { gamma, .. } | Pool::TriCryptoNG { gamma, .. } => {
                *gamma = value;
                Ok(())
            }
            _ => Err(PoolError::NotApplicable),
        }
    }
}