frame-suite 0.1.1

Core traits, semantic abstractions, and foundational interfaces for the FRAME Suite runtime architecture
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
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
// SPDX-License-Identifier: MPL-2.0
//
// Part of Auguth Labs open-source softwares.
// Built for the Substrate framework.
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at https://mozilla.org/MPL/2.0/.
//
// Copyright (c) 2026 Auguth Labs (OPC) Pvt Ltd, India

// ===============================================================================
// ``````````````````````````````` COMMITMENT SUITE ``````````````````````````````
// ===============================================================================

//! A composable framework for expressing financial intent as **immutable commitments**.
//!
//! ## Overview
//!
//! This module defines a comprehensive set of traits for building financial
//! commitment systems that are **semantic, composable, transparent, and consistent**.
//!
//! At its core, a commitment represents **bonding value to a specific digest under a reason**.
//!
//! Instead of treating value as passive balance, this framework models value as
//! something actively **bound with purpose and context**.
//!
//! Every commitment binds an asset to:
//! - a **Reason** - why the value is committed
//! - a **Digest** - the exact terms or context the value is bonded to
//!
//! Together, they form a **verifiable, immutable agreement**.
//!
//! Commitments can carry meaning through variants (e.g., long/short,
//! for/against, positive/negative), support grouping via indexes and pools,
//! and allow real-time inspection of state.
//!
//! The **reason provider (runtime logic)** governs how committed value evolves:
//! it can update digest-level values, effectively managing all bonded funds
//! under that reason. Individual commitments are **resolved lazily**, meaning
//! adjustments are realized only when commitments are settled.
//!
//! ## Mental Model
//!
//! A commitment can be understood as:
//!
//! "Bond this value, for this purpose, to this exact context."
//!
//! - Reason provides intent (staking, escrow, trade, vote)
//! - Digest defines the binding target (hash, identifier, agreement)
//! - Asset represents the value being bonded
//!
//! This abstraction unifies patterns across financial systems such as
//! staking, escrow, betting, trading, and governance.
//!
//! ## Trait Architecture
//!
//! The framework is layered:
//!
//! ### Foundation
//! - [`Commitment`] - atomic bonding and lifecycle of commitments
//! - [`InspectAsset`] - available funds introspection
//! - [`DigestModel`] - digest classification
//!
//! ### Grouping
//! - [`CommitIndex`] - a single commitment distributed across multiple digests
//!   under a reason, as if placed individually
//!
//! - [`CommitPool`] - manager-controlled allocation of bonded funds across
//!   multiple digests under a reason, without custodial ownership
//!
//! ### Semantics
//! - [`CommitVariant`] - directional meaning (long/short, for/against)
//! - [`IndexVariant`] - variants applied to indexed commitments
//! - [`PoolVariant`] - variants applied to pooled commitments
//!
//! These traits compose into a layered system:
//! - Base layer: [`Commitment`], [`InspectAsset`], [`DigestModel`]
//! - Grouping layer: [`CommitIndex`], [`CommitPool`]
//! - Variant layer: [`CommitVariant`], [`IndexVariant`], [`PoolVariant`]
//!
//! ## Core Properties
//!
//! - **Atomic** - bonded commitments cannot be partially altered  
//! - **Immutable** - [`Commitment::Digest`] and reason define permanent binding  
//! - **Value-bound** - always tied to quantifiable assets  
//! - **Composable** - higher-level abstractions reuse the same rules  
//! - **Inspectable** - real-time bonded state is always queryable  
//!
//! ## Why This Exists
//!
//! Many financial systems repeatedly implement the same primitives:
//! - locking or bonding funds  
//! - enforcing rules  
//! - tracking intent  
//! - preventing duplication  
//!
//! This framework provides a unified abstraction to express all of them
//! consistently and safely.
//!
//! ## Invariants
//!
//! - One commitment per `(proprietor, reason)`  
//! - Commitments are immutable (value may only increase via
//!   [`Commitment::raise_commit`])  
//! - [`Commitment::Digest`] defines the binding target and scope  
//! - State reflects current values via [`Commitment::get_digest_value`],
//!   not historical deposits  
//!
//! ## Use Cases
//!
//! This framework is applicable across domains such as:
//!
//! - Financial systems (bets, trades, hedges)  
//! - Prediction markets (affirmative/negative stakes)  
//! - Voting protocols (for/against commitments)  
//! - Portfolio management (indexed and pooled commitments)  
//! - Escrow and contract systems  
//!
//! ## Summary
//!
//! **Commitment = bonding value to a digest under a reason**
//!
//! This module transforms raw assets into structured, meaningful agreements
//! that can be composed into complex financial systems.

// ===============================================================================
// ``````````````````````````````````` IMPORTS ```````````````````````````````````
// ===============================================================================

// --- Core ---
use core::cmp::Ordering;

// --- Local crate imports ---
use crate::{
    base::{
        Asset, Countable, Delimited, Elastic, Keyed, Percentage, RuntimeEnum, RuntimeError,
        Storable,
    },
    misc::{Directive, Extent},
};

// --- FRAME Support ----
use frame_support::ensure;

// --- Substrate primitives ---
use sp_runtime::{
    traits::{Saturating, Zero},
    DispatchError, DispatchResult, Vec,
};

// ===============================================================================
// ```````````````````````````````` INSPECT ASSET ````````````````````````````````
// ===============================================================================

/// A trait for inspecting the total available funds of an proprietor.
///
/// This allows querying all funds that are available to a proprietor,
/// including liquid balances and any amounts held for specific purposes
/// that the system considers available.
///
/// In this trait's context, "available funds" means those balances
/// that can be used for operations in context.
///
/// Generics:
/// - **Proprietor** - the entity that owns the asset and can make commitments.
pub trait InspectAsset<Proprietor> {
    /// Representing the Quantifiable Asset Type.
    type Asset: Asset;

    /// Retrieves the total available funds for a given proprietor.
    ///
    /// This must include all balances that can be utilized for the
    /// implementation purposes.
    ///
    /// ## Returns
    /// - [`Self::Asset`] containing the total available funds for the proprietor
    fn available_funds(who: &Proprietor) -> Self::Asset;
}

// ===============================================================================
// ````````````````````````````````` DIGEST MODEL ````````````````````````````````
// ===============================================================================

/// A trait for determining the model variant of a digest.
///
/// In this system, a "digest" represents a compact identifier for
/// a commitment or resource.
///
/// Since all digests share a common base type, this trait provides a
/// way to classify or wrap them into distinct model variants
/// (e.g., Direct, Index, Pools) to improve clarity and enforce type safety.
pub trait DigestModel<Proprietor>: Commitment<Proprietor> {
    /// Wraps [`Commitment::Digest`] to reduce ambiguity.
    type Model: Delimited + RuntimeEnum + Storable;

    /// Determines the appropriate model variant for the given digest and reason.
    ///
    /// ## Returns
    /// - `Ok(Model)` if the digest is recognized.
    /// - `Err(DispatchError)` if the digest cannot be determined.
    fn determine_digest(
        digest: &Self::Digest,
        reason: &Self::Reason,
    ) -> Result<Self::Model, DispatchError>;
}

// ===============================================================================
// `````````````````````````````` COMMITMENT ERRORS ``````````````````````````````
// ===============================================================================

/// Commitment-related error type used in trait defaults.
pub enum CommitError {
    /// Insufficient funds to perform the requested
    /// commitment operation.
    InsufficientFunds,

    /// A commitment already exists for the given proprietor
    /// and commitment reason.
    CommitAlreadyExists,

    /// Minting is not permitted under the current constraints
    /// or exceeds allowed limits.
    MintingOffLimits,

    /// Reaping (burning) is not permitted under the current
    /// constraints or exceeds allowed limits.
    ReapingOffLimits,

    /// Placing a new commitment is not permitted under the current constraints
    /// or exceeds allowed limits.
    PlacingOffLimits,

    /// Increasing (raising) an existing commitment is not permitted under the
    /// current constraints or exceeds allowed limits.
    RaisingOffLimits,
}

/// A trait for mapping **domain-level Commitment errors** into
/// **caller- or pallet-specific error types**.
///
/// This trait acts as a bridge between the generic, FRAME-agnostic
/// [`CommitError`] enum and the concrete error type expected by the
/// execution context.
pub trait CommitErrorHandler {
    /// Concrete error type produced by the handler.
    ///
    /// Implements conversion to [`DispatchError`].
    type Error: RuntimeError;

    /// Converts a generic [`CommitError`] into the handler's
    /// concrete error type which implements `Into<DispatchError>`.
    ///
    /// This function centralizes error translation logic and ensures
    /// that all balance-related failures are surfaced consistently
    /// according to the caller's error domain.
    fn from_commit_error(e: CommitError) -> Self::Error;
}

// ===============================================================================
// `````````````````````````````````` COMMITMENT `````````````````````````````````
// ===============================================================================

/// Represents an **atomic, immutable financial agreement** between parties.
///
/// It is anchored in:
/// - a **Reason** (category/purpose),
/// - a **Digest** (commitment context),
/// - and the act of committing a value.
///
/// ## Key Concepts
///
/// - **Commitment**: Locking or assigning an asset under agreed terms.
/// - **Reason**: Purpose/category (e.g., staking, escrow, collateral,
/// investment, betting).
/// - **Digest**: Immutable reference to the commitment's context or terms
/// (often a cryptographic hash or a contextual identifier).
/// - **Proprietor**: Entity responsible for holding/committing the asset.
/// - **Asset**: Value being committed.
///
/// ## Why Commitment?
///
/// Many financial systems - staking, escrow, lending, betting, auctions - share
/// a common pattern: one party proposes terms (digest), another commits a value
/// under those terms, and both agree on the purpose (reason).
///
/// Without a unifying abstraction, each system must reimplement logic for:
/// - Locking assets
/// - Ensuring immutability of terms
/// - Preventing double commitments
/// - Categorizing commitments by purpose
///
/// The `Commitment` trait standardizes this pattern, enabling:
/// - **Consistency**: Same behavior across different financial constructs.
/// - **Composability**: Higher-level constructs (pools, indexes, markets) reuse
/// the same rules.
/// - **Auditability**: Commitments can be inspected and verified.
///
/// ## Properties
///
/// - **Atomic**: Commitments cannot be partially altered.
/// - **Immutable**: Digest + Reason permanently define the commitment.
/// - **Category-driven**: Reason defines interpretation.
/// - **Value-based**: Always tied to a quantifiable asset.
///
/// ## Real-World Analogies
///
/// | Use Case       | Reason             | Digest              | Commitment    |
/// |----------------|--------------------|---------------------|---------------|
/// | Stake          | `"staking"`        | Conditions hash     | Staked amount |
/// | Escrow         | `"escrow"`         | Contract terms hash | Locked funds  |
/// | Collateral     | `"loan collateral"`| Loan agreement hash | Pledged asset |
/// | Betting        | `"bet"`            | Bet terms           | Wagered asset |
/// | Market position| `"market trade"`   | Order terms         | Locked funds  |
/// | Auction        | `"auction bid"`    | Bid terms           | Bid amount    |
///
///
/// ## Examples
///
/// - **Staking**: Alice stakes 100 tokens for reason `"staking"` with digest `"ant_pool_hash"`.
///   - Proprietor: Alice
///   - Reason: `"staking"`
///   - Digest: `"ant_pool_hash"`
///   - Asset: 100 tokens.
///
/// - **Betting**: Bob places a bet of 50 tokens for reason `"bet_games"` with digest
/// `"nfl_betting"`.
///   - Locks Bob's stake until event outcome.
///
/// - **Escrow**: Carol commits 1000 tokens into escrow for reason `"escrows"` with
/// digest `"freelance"`.
///   - Funds locked until conditions are fulfilled.
///
/// - **Market Order**: Dave places a buy order worth 500 tokens for reason
/// `"market_orders"` with digest `"cryptocurrencies"`.
///   - Funds locked until order executes or cancels.
///
/// ## Invariants
///
/// - Proprietor can commit to **only one digest per reason**.
/// - Commitments are **atomic** and **immutable**.
/// - Commitment value may increase via [`Commitment::raise_commit`] but cannot
/// be decreased arbitrarily.
/// - Commitment values are dynamic, reflecting real-time state.
/// - Digest values may be updated by the reason provider via
/// [`Commitment::set_digest_value`] and must propagate to all related commitments.
///
/// **Summary:**  
/// Commitment = locked asset,  
/// Reason = purpose/category,  
/// Digest = agreement terms hash,  
/// Act of commitment = immutable financial agreement.
///
/// Generics:
/// - **Proprietor** - the entity that owns the asset and can make commitments.
pub trait Commitment<Proprietor>: InspectAsset<Proprietor> + CommitErrorHandler {
    /// The source used to generate the digest.
    type DigestSource: Elastic;

    /// The immutable substance proposed by the first party - the "sealed deed content".
    /// It represents the details of the deed or offer that expects a commitment.
    ///
    /// Digest is the core of a commitment: it proves what the commitment is tied to,
    /// and ensures it is fixed and immutable.
    type Digest: Keyed;

    /// The category or type of the commitment.
    /// Provides meaning to the digest by placing it in context.
    type Reason: Elastic + Storable + RuntimeEnum;

    /// Represents the qualitative configuration of a commit operation.
    ///
    /// Encodes behavioral characteristics such as precision and fortitude,
    /// influencing how commitments are evaluated and executed. (e.g. exact
    /// vs approximate, polite vs forceful execution).
    ///
    /// Default is provided if in case no preference is provided.
    type Intent: Delimited + Directive + Default;

    /// Provides optional advisory bounds for commitment and digest operations.
    ///
    /// These limits act as an additional validation layer on top of core
    /// invariants, helping prevent premature or extreme values without
    /// affecting correctness.
    ///
    /// Uses [`Extent`] to express minimum, maximum, or optimal values.
    type Limits: Extent<Scalar = Self::Asset>;

    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    // ``````````````````````````````````` CHECKERS ``````````````````````````````````
    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    /// Checks whether a commitment exists for the given proprietor and reason.
    ///
    /// ### Returns
    /// - `Ok(())` if the commitment exists
    /// - `Err(DispatchError)` if no commitment is found
    fn commit_exists(who: &Proprietor, reason: &Self::Reason) -> DispatchResult;

    /// Checks whether a specific digest exists for the given reason.
    ///
    /// ### Returns
    /// - `Ok(())` if the digest exists
    /// - `Err(DispatchError)` if the digest is not found
    fn digest_exists(reason: &Self::Reason, digest: &Self::Digest) -> DispatchResult;

    /// Validates whether a new commitment can be placed.
    ///
    /// Ensures that no existing commitment exists for the given reason (enforcing
    /// the "one digest per reason" invariant) and that the proprietor has sufficient
    /// available funds to cover the commitment value.
    ///
    /// ## Returns
    /// - `Ok(())` if validation succeeds
    /// - `Err(DispatchError)` if a commitment already exists or insufficient funds are available
    fn can_place_commit(
        who: &Proprietor,
        reason: &Self::Reason,
        digest: &Self::Digest,
        value: Self::Asset,
        qualifier: &Self::Intent,
    ) -> DispatchResult {
        ensure!(
            Self::commit_exists(who, reason).is_err(),
            Self::from_commit_error(CommitError::CommitAlreadyExists)
        );
        let max = Self::available_funds(who);
        ensure!(
            max >= value,
            Self::from_commit_error(CommitError::InsufficientFunds)
        );
        let limits = Self::place_commit_limits(who, reason, digest, qualifier)?;
        ensure!(
            limits.contains(value),
            Self::from_commit_error(CommitError::PlacingOffLimits)
        );
        Ok(())
    }

    /// Validates whether an existing commitment can be increased.
    ///
    /// Ensures that a commitment for the given reason already exists and that
    /// the proprietor has sufficient available funds to increase the commitment
    /// by the specified value.
    ///
    /// ## Returns
    /// - `Ok(())` if validation succeeds
    /// - `Err(DispatchError)` if any of the condition fails.
    fn can_raise_commit(
        who: &Proprietor,
        reason: &Self::Reason,
        value: Self::Asset,
        qualifier: &Self::Intent,
    ) -> DispatchResult {
        Self::commit_exists(who, reason)?;
        let max = Self::available_funds(who);
        ensure!(
            max >= value,
            Self::from_commit_error(CommitError::InsufficientFunds)
        );
        let limits = Self::raise_commit_limits(who, reason, qualifier)?;
        ensure!(
            limits.contains(value),
            Self::from_commit_error(CommitError::RaisingOffLimits)
        );
        Ok(())
    }

    /// Validates whether an existing commitment can be resolved.
    ///
    /// Ensures that a commitment for the given reason exists before
    /// allowing resolution/closing.
    ///
    /// ## Returns
    /// - `Ok(())` if validation succeeds
    /// - `Err(DispatchError)` if no such commitment exists
    fn can_resolve_commit(who: &Proprietor, reason: &Self::Reason) -> DispatchResult {
        Self::commit_exists(who, reason)?;
        Ok(())
    }

    /// Validates whether a digest's value can be set or updated.
    ///
    /// Ensures that the specified digest exists under the given reason,
    /// and that the intended value update respects advisory limits
    /// (mint or reap depending on direction).
    ///
    /// The `qualifier` may influence how limits are interpreted.
    ///
    /// ## Returns
    /// - `Ok(())` if validation succeeds
    /// - `Err(DispatchError)` if the digest does not exist or limits are violated
    fn can_set_digest_value(
        reason: &Self::Reason,
        digest: &Self::Digest,
        value: Self::Asset,
        qualifier: &Self::Intent,
    ) -> DispatchResult {
        // Get current value
        let current = Self::get_digest_value(reason, digest)?;
        match current.cmp(&value) {
            Ordering::Less => {
                // Mint path (increase)
                let limits = Self::digest_mint_limits(digest, reason, qualifier)?;
                let mintable = value.saturating_sub(current);
                ensure!(
                    limits.contains(mintable),
                    Self::from_commit_error(CommitError::MintingOffLimits)
                )
            }
            Ordering::Greater => {
                // Reap path (decrease)
                let limits = Self::digest_reap_limits(digest, reason, qualifier)?;
                let reapable = current.saturating_sub(value);
                ensure!(
                    limits.contains(reapable),
                    Self::from_commit_error(CommitError::ReapingOffLimits)
                )
            }
            Ordering::Equal => {
                // No-op, always valid
            }
        }
        Ok(())
    }

    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    // ``````````````````````````````````` GETTERS ```````````````````````````````````
    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    /// Retrieves the digest tied to a proprietor's commitment for the given reason.
    ///
    /// Since the system enforces only one digest per reason, its expected to be
    /// only a single digest or none.
    ///
    /// ### Returns
    /// - `Ok(Digest)` containing the commitment's digest
    /// - `Err(DispatchError)` if no commitment exists for the reason
    fn get_commit_digest(
        who: &Proprietor,
        reason: &Self::Reason,
    ) -> Result<Self::Digest, DispatchError>;

    /// Retrieves the total aggregated value for all commitments under the given reason.
    ///
    /// ### Returns
    /// - `Self::Asset` containing the total value across all commitments for the reason
    fn get_total_value(reason: &Self::Reason) -> Self::Asset;

    /// Retrieves the current real-time value of a proprietor's commitment for the given reason.
    ///
    /// Returns the live committed value at the moment of calling, reflecting any
    /// changes to the underlying digest value since the commitment was initially
    /// placed. This is not a historical value but the actual current state, as
    /// digest values can be updated via [`set_digest_value`](Self::set_digest_value).
    ///
    /// ### Returns
    /// - `Ok(Asset)` containing the current commitment value
    /// - `Err(DispatchError)` if the commitment does not exist
    fn get_commit_value(
        who: &Proprietor,
        reason: &Self::Reason,
    ) -> Result<Self::Asset, DispatchError>;

    /// Retrieves the current aggregated value for the given digest under the specified reason.
    ///
    /// Returns the real-time sum of all commitments tied to the digest.
    /// Useful for evaluating the full scope of commitments to a specific digest.
    ///
    /// ### Returns
    /// - `Ok(Asset)` containing the aggregated digest value
    /// - `Err(DispatchError)` if the digest does not exist or lookup fails
    fn get_digest_value(
        reason: &Self::Reason,
        digest: &Self::Digest,
    ) -> Result<Self::Asset, DispatchError>;

    /// Provides advisory bounds for increasing (minting) a digest's value.
    ///
    /// Acts as an optional guard to prevent abrupt or excessive growth,
    /// complementing core digest update logic.
    fn digest_mint_limits(
        _digest: &Self::Digest,
        _reason: &Self::Reason,
        _qualifier: &Self::Intent,
    ) -> Result<Self::Limits, DispatchError> {
        // By default, this returns a baseline limit,
        // representing a static or fallback bound when no dynamic limits are applied.
        //
        // Implementors may override this to provide context-specific limits.
        Ok(Self::Limits::none())
    }

    /// Provides advisory bounds for placing a new commitment.
    ///
    /// Acts as an optional pre-validation layer to prevent premature or
    /// undesirable commits by constraining value ranges.
    fn place_commit_limits(
        _who: &Proprietor,
        _reason: &Self::Reason,
        _digest: &Self::Digest,
        _qualifier: &Self::Intent,
    ) -> Result<Self::Limits, DispatchError> {
        // By default, this returns an unbounded extent,
        // meaning no additional constraints are applied unless overridden.
        //
        // Implementors may override this to provide context-specific limits.
        Ok(Self::Limits::none())
    }

    /// Provides advisory bounds for increasing an existing commitment.
    ///
    /// Acts as an optional guard to prevent excessive or premature raises,
    /// complementing core checks like existence and available funds.
    fn raise_commit_limits(
        _who: &Proprietor,
        _reason: &Self::Reason,
        _qualifier: &Self::Intent,
    ) -> Result<Self::Limits, DispatchError> {
        // By default, this returns an unbounded extent,
        // meaning no additional constraints are applied unless overridden.
        //
        // Implementors may override this to provide context-specific limits.
        Ok(Self::Limits::none())
    }

    /// Provides advisory bounds for decreasing (reaping) a digest's value.
    ///
    /// Acts as an optional guard to prevent aggressive or premature reductions,
    /// complementing core invariants that ensure correctness.
    fn digest_reap_limits(
        _digest: &Self::Digest,
        _reason: &Self::Reason,
        _qualifier: &Self::Intent,
    ) -> Result<Self::Limits, DispatchError> {
        // By default, this returns a baseline limit,
        // representing a static or fallback bound when no dynamic limits are applied.
        // Implementors may override this to provide context-specific limits.
        Ok(Self::Limits::none())
    }

    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    // ````````````````````````````````` CONSTRUCTORS ````````````````````````````````
    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    /// Generates a unique digest from the provided source.
    ///
    /// Creates an immutable identifier that represents the commitment's terms,
    /// ensuring collision-free digest generation across the system.
    ///
    /// ## Returns
    /// - `Ok(Digest)` containing the generated unique digest
    /// - `Err(DispatchError)` if digest generation fails
    fn gen_digest(via: &Self::DigestSource) -> Result<Self::Digest, DispatchError>;

    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    // ``````````````````````````````````` MUTATORS ``````````````````````````````````
    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    /// Places an immutable commitment for the specified digest and reason.
    ///
    /// Locks the specified value under the given digest and reason, creating
    /// an atomic commitment that cannot be reduced or partially withdrawn.
    ///
    /// The qualifier parameter enforces exactness or best-effort semantics,
    /// while also specifying whether the system must force achieving the
    /// commitment conditions.
    ///
    /// ## Returns
    /// - `Ok(Asset)` containing the actual value committed to the digest
    /// - `Err(DispatchError)` if placement fails due to insufficient funds or
    /// validation errors
    fn place_commit(
        who: &Proprietor,
        reason: &Self::Reason,
        digest: &Self::Digest,
        value: Self::Asset,
        qualifier: &Self::Intent,
    ) -> Result<Self::Asset, DispatchError>;

    /// Resolves and releases the commitment tied to the specified reason.
    ///
    /// Finalizes the commitment for the given proprietor and reason, releasing
    /// the locked value.
    ///
    /// Proprietors are enforced to commit to a **single digest per reason**,
    /// ensuring unambiguous resolution. Higher-level traits such as [`CommitIndex`]
    /// or [`CommitPool`] can be built to allow indexed or pooled commitments on top of
    /// this invariant.
    ///    
    /// The returned value may differ from the original deposit depending on the reason's
    /// context and any adjustments made during the commitment's lifetime possibly
    /// via [`Commitment::set_digest_value`].
    ///
    /// ## Returns
    /// - `Ok(Asset)` containing the fully resolved commitment value
    /// - `Err(DispatchError)` if the commitment does not exist or resolution fails
    fn resolve_commit(
        who: &Proprietor,
        reason: &Self::Reason,
    ) -> Result<Self::Asset, DispatchError>;

    /// Increases the value of an existing commitment.
    ///
    /// Adds the specified value to an existing commitment for the given reason.
    /// This operation can only be performed if a commitment already exists.
    ///
    /// The qualifier parameter control how the increase is applied.
    ///
    /// ## Returns
    /// - `Ok(Asset)` containing the increment actually added (not the total value)
    /// - `Err(DispatchError)` if the commitment does not exist or if the increase fails
    fn raise_commit(
        who: &Proprietor,
        reason: &Self::Reason,
        value: Self::Asset,
        qualifier: &Self::Intent,
    ) -> Result<Self::Asset, DispatchError>;

    /// Sets or updates the aggregated value of the specified digest.
    ///
    /// Allows the reason provider (implementer) to adjust the digest's value,
    /// which automatically propagates to all individual commitments tied to that
    /// digest.
    ///
    /// The `qualifier` defines how the update is applied (e.g., exact vs best-effort,
    /// forceful vs relaxed), and determines the execution semantics for the direction
    /// of change (increase or decrease relative to the current value).
    ///
    /// ### Returns
    /// - `Ok(Asset)` containing the actual value applied to the digest
    /// - `Err(DispatchError)` if the digest does not exist or update fails
    fn set_digest_value(
        reason: &Self::Reason,
        digest: &Self::Digest,
        value: Self::Asset,
        qualifier: &Self::Intent,
    ) -> Result<Self::Asset, DispatchError>;

    /// Removes a digest if it has no associated commitments.
    ///
    /// Permanently deletes the specified digest from the system if its aggregated
    /// value is zero, freeing resources and cleaning up unused entries.
    /// This is a maintenance operation and it should ensures no commitments exist
    /// for the digest before reaping.
    ///
    /// ### Returns
    /// - `Ok(())` if the digest is successfully removed
    /// - `Err(DispatchError)` if the digest does not exist or still has active commitments
    fn reap_digest(digest: &Self::Digest, reason: &Self::Reason) -> DispatchResult;

    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    // ```````````````````````````````````` HOOKS ````````````````````````````````````
    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    /// Hook called after a commitment is successfully placed.
    ///
    /// Provides an extension point for triggering side-effects such as events,
    /// logging, external state updates, or notifications when a new commitment
    /// is established.
    ///
    /// Default implementation is a no-op.
    fn on_commit_place(
        _who: &Proprietor,
        _reason: &Self::Reason,
        _digest: &Self::Digest,
        _value: Self::Asset,
    ) {
    }

    /// Hook called after a commitment is successfully raised (increased).
    ///
    /// Provides an extension point for triggering side-effects such as recalculations,
    /// notifications, event emissions, or external state synchronization when an
    /// existing commitment's value is increased.
    ///
    /// Default implementation is a no-op.
    fn on_commit_raise(
        _who: &Proprietor,
        _reason: &Self::Reason,
        _digest: &Self::Digest,
        _value: Self::Asset,
    ) {
    }

    /// Hook called after a commitment is successfully resolved.
    ///
    /// Provides an extension point for performing cleanup, distributing rewards or
    /// penalties, audit logging, or triggering any finalization logic when a
    /// commitment is released.
    ///
    /// Default implementation is a no-op.
    fn on_commit_resolve(
        _who: &Proprietor,
        _reason: &Self::Reason,
        _digest: &Self::Digest,
        _value: Self::Asset,
    ) {
    }

    /// Hook called after a digest's value is updated.
    ///
    /// Provides an extension point for triggering recalculation of dependent
    /// commitments, propagating changes to related state, or emitting events
    /// when a digest's aggregated value changes.
    ///
    /// Default implementation is a no-op.
    fn on_digest_update(_digest: &Self::Digest, _reason: &Self::Reason, _value: Self::Asset) {}

    /// Hook called after a digest is reaped (removed).
    ///
    /// Provides an extension point for cleanup tasks, logging, freeing
    /// related resources, or triggering external notifications when a digest
    /// is permanently removed from the system.
    ///
    /// `dust` represents any residual value that was unclaimable and
    /// effectively considered dead.
    ///
    /// Default implementation is a no-op.
    fn on_reap_digest(_digest: &Self::Digest, _reason: &Self::Reason, _dust: Self::Asset) {}
}

// ===============================================================================
// ````````````````````````````````` COMMIT INDEX ````````````````````````````````
// ===============================================================================

/// `CommitIndex` extends [`Commitment`] by providing a **higher-level financial abstraction**
/// that groups multiple commitments under a single "index".
///
/// This enables proprietors to manage related commitments collectively,
/// while preserving the **atomicity** and **immutability** guarantees of `Commitment`.
///
/// ## Use Cases
///
/// - Portfolio management: Aggregate commitments.
/// - Betting pools: Collective tracking and settlement.
/// - Multi-asset contracts: Manage grouped assets with shares.
/// - Escrow pools: Efficient tracking of grouped escrows.
/// - Market positions: Aggregate for easier tracking.
///
/// ## Why `CommitIndex`?
///
/// The base `Commitment` trait enforces:
/// > "One reason -> one digest".
///
/// This is restrictive when:
/// - A proprietor needs to manage **multiple related commitments under one reason**.
/// - Aggregation of commitments is required.
/// - Ownership of grouped commitments must be tracked proportionally.
/// - Trustless, composable structures are desired.
///
/// `CommitIndex` solves this by introducing **indexes**:
/// - An **index digest** references multiple committed digests (entries).
/// - Each entry remains an independent `Commitment`.
/// - The index enables aggregation, share-tracking, and collective management
/// without breaking core commitment rules.
///
/// ## Core Principles
///
/// 1. **Wrapper over commitments**
///    - Index digest groups multiple committed digests.
///    - Entries retain individual commitment properties.
///
/// 2. **Management layer**
///    - Tracks shares and values for each entry.
///    - Aggregates entry values into a single index value.
///
/// 3. **Integrity**
///    - Entries remain independent commitments.
///    - Index creation does not alter entry commitments.
///
/// 4. **Trustless design**
///    - Anyone can interact with indexes without requiring creator consent,
///      provided the share structure allows it.
///
/// ## Examples
///
/// ### Example 1: Portfolio Staking
///
/// Alice stakes multiple digests under a single reason to manage risk:
///
/// | Reason     | Digest        | Value |
/// |------------|---------------|-------|
/// | "staking"  | "digest_a123" | 100   |
/// | "staking"  | "digest_b456" | 200   |
/// | "staking"  | "digest_c789" | 300   |
///
/// Each row is an independent commitment.
/// Alice creates a `CommitIndex`:
/// - Reason = `"staking"`
/// - Digest = `"index_digest_xyz"`
/// - Entries = `[digest_a123, digest_b456, digest_c789]`
/// - Shares = `[1, 2, 3]`
///
/// Total value = `600`, with proportional share tracking.
///
/// ### Example 2: Betting Pool
///
/// Bettors commit value for different bets under the same reason:
///
/// | Reason         | Digest           | Value |
/// |----------------|------------------|-------|
/// | "betting_pool" | "digest_bet101" | 50    |
/// | "betting_pool" | "digest_bet102" | 80    |
///
/// CommitIndex:
/// - Reason = `"betting_pool"`
/// - Digest = `"index_digest_betting"`
/// - Entries = `[digest_bet101, digest_bet102]`
/// - Shares = `[2, 3]`
///
/// Total value = `130`, with proportional share tracking.
///
/// ### Example 3: Market Position Index
///
/// Dave aggregates multiple market positions:
///
/// | Reason            | Digest         | Value |
/// |-------------------|----------------|-------|
/// | "market_positions"| "digest_order1"| 500   |
/// | "market_positions"| "digest_order2"| 300   |
///
/// CommitIndex:
/// - Reason = `"market_positions"`
/// - Digest = `"index_digest_market"`
/// - Entries = `[digest_order1, digest_order2]`
/// - Shares = `[5, 3]`
///
/// Aggregates positions without altering atomic commitments.
///
/// ### Example 4: Escrow Pool
///
/// Multiple escrows under one reason:
///
/// | Reason       | Digest          | Value |
/// |--------------|-----------------|-------|
/// | "escrow_pool"| "digest_escrow1"| 1000  |
/// | "escrow_pool"| "digest_escrow2"| 1500  |
///
/// CommitIndex:
/// - Reason = `"escrow_pool"`
/// - Digest = `"index_digest_escrow"`
/// - Entries = `[digest_escrow1, digest_escrow2]`
/// - Shares = `[1, 1.5]`
///
/// Tracks total escrow commitments (`2500`) and proportional ownership.
///
/// ## Invariants
///
/// - An index digest is a managed wrapper over multiple committed digests.
/// - Each entry is an independent `Commitment`.
/// - Index creation preserves atomicity, immutability, and reason-digest invariants.
/// - Shares define proportional ownership of aggregated commitments.
/// - Must maintain the base-invariant "One Reason -> One Digest"
///
/// Generics:
/// - **Proprietor** - the entity that owns the asset and can make commitments.
pub trait CommitIndex<Proprietor>: Commitment<Proprietor> {
    /// The type representing an index.
    /// This could be a struct containing entries and shares.
    type Index: Elastic + Storable;

    /// The type representing shares for an entry.
    ///
    /// Should be a simple unsigned numeric type.
    type Shares: Countable;

    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    // ``````````````````````````````````` CHECKERS ``````````````````````````````````
    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    /// Checks whether an index exists for the given reason and index digest.
    ///
    /// ## Returns
    /// - `Ok(())` if the index exists
    /// - `Err(DispatchError)` if the index is not found
    fn index_exists(reason: &Self::Reason, index_of: &Self::Digest) -> DispatchResult;

    /// Checks whether a specific entry exists within the given index.
    ///
    /// Verifies that the specified entry digest is part of the index's
    /// entry list under the given reason.
    ///
    /// ## Returns
    /// - `Ok(())` if the entry exists within the index
    /// - `Err(DispatchError)` if the entry is not found in the index
    fn entry_exists(
        reason: &Self::Reason,
        index_of: &Self::Digest,
        entry_of: &Self::Digest,
    ) -> DispatchResult;

    /// Checks whether any index exists for the given reason.
    ///
    /// Verifies that at least one index has been created under the
    /// specified reason across all proprietors.
    ///
    /// ## Returns
    /// - `Ok(())` if at least one index exists for the reason
    /// - `Err(DispatchError)` if no indexes are found for the reason
    fn has_index(reason: &Self::Reason) -> DispatchResult;

    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    // ``````````````````````````````````` GETTERS ```````````````````````````````````
    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    /// Retrieves the complete index structure for the given reason and index digest.
    ///
    /// Returns the full index object containing all entries, shares, and
    /// associated metadata for inspection or processing.
    ///
    /// ## Returns
    /// - `Ok(Index)` containing the complete index structure i.e.,
    /// [`CommitIndex::Index`]
    /// - `Err(DispatchError)` if the index does not exist
    fn get_index(
        reason: &Self::Reason,
        index_of: &Self::Digest,
    ) -> Result<Self::Index, DispatchError>;

    /// Retrieves the real-time aggregated value of the specified index.
    ///
    /// Computes the total value by summing the current values of all entry digests
    /// under the index. Since the supertrait [`Commitment`] allows digest values
    /// to be updated via [`Commitment::set_digest_value`], this reflects the
    /// **live state** rather than historical deposits.
    ///
    /// Ensures each entry's digest value is current before aggregation.
    ///
    /// ## Returns
    /// - `Ok(Asset)` containing the total aggregated value of the index
    /// - `Err(DispatchError)` if the index does not exist or value computation fails
    fn get_index_value(
        reason: &Self::Reason,
        index_of: &Self::Digest,
    ) -> Result<Self::Asset, DispatchError> {
        Self::index_exists(reason, index_of)?;
        let entries_values = Self::get_entries_value(reason, index_of)?;
        let mut value = Self::Asset::zero();
        for (_, val) in entries_values {
            value = value.saturating_add(val);
        }
        Ok(value)
    }

    /// Retrieves the shares of each entry in the given index.
    ///
    /// Returns a list of entry digests paired with their corresponding shares,
    /// representing each entry's proportional weight within the index.
    ///
    /// ## Returns
    /// - `Ok(Vec<(Self::Digest, Self::Shares)>)` containing entry-share pairs
    /// - `Err(DispatchError)` if the index does not exist or retrieval fails
    fn get_entries_shares(
        reason: &Self::Reason,
        index_of: &Self::Digest,
    ) -> Result<Vec<(Self::Digest, Self::Shares)>, DispatchError>;

    /// Retrieves the real-time values of all entries within the specified index.
    ///
    /// Each entry's value is fetched individually and reflects any changes since
    /// the commitment was created, as the supertrait [`Commitment`] allows digest
    /// values to be updated via [`Commitment::set_digest_value`].
    ///
    /// Returns a list of entry digests paired with their current committed values.
    ///
    /// ## Returns
    /// - `Ok(Vec<(Self::Digest, Self::Asset)>)` containing entry-value pairs
    /// - `Err(DispatchError)` if the index does not exist or value retrieval fails
    fn get_entries_value(
        reason: &Self::Reason,
        index_of: &Self::Digest,
    ) -> Result<Vec<(Self::Digest, Self::Asset)>, DispatchError> {
        Self::index_exists(reason, index_of)?;
        let entries = Self::get_entries_shares(reason, index_of)?;
        let mut vec = Vec::new();
        for (entry_of, _) in entries {
            let value = Self::get_entry_value(reason, index_of, &entry_of)?;
            vec.push((entry_of, value))
        }
        Ok(vec)
    }

    /// Retrieves the real-time committed value of a specific entry within an index.
    ///
    /// Returns the current value for the given entry digest under the specified
    /// reason and index. Since the supertrait [`Commitment`] allows digest values
    /// to be updated via [`Commitment::set_digest_value`], this reflects the
    /// **live state** rather than the original deposit.
    ///
    /// ## Returns
    /// - `Ok(Asset)` containing the entry's current committed value
    /// - `Err(DispatchError)` if the index or entry does not exist
    fn get_entry_value(
        reason: &Self::Reason,
        index_of: &Self::Digest,
        entry_of: &Self::Digest,
    ) -> Result<Self::Asset, DispatchError>;

    /// Retrieves the real-time values of a proprietor's commitments to all entries
    /// within the specified index.
    ///
    /// Each entry's value is computed individually for the given proprietor and
    /// reflects any changes since commitment, as the supertrait [`Commitment`]
    /// allows digest values to be updated via [`Commitment::set_digest_value`].
    ///
    /// Returns a list of entry digests paired with their current committed values
    /// for the specified proprietor.
    ///
    /// ## Returns
    /// - `Ok(Vec<(Self::Digest, Self::Asset)>)` containing entry-value pairs for the proprietor
    /// - `Err(DispatchError)` if the index does not exist or value retrieval fails
    fn get_entries_value_for(
        who: &Proprietor,
        reason: &Self::Reason,
        index_of: &Self::Digest,
    ) -> Result<Vec<(Self::Digest, Self::Asset)>, DispatchError> {
        Self::index_exists(reason, index_of)?;
        let entries = Self::get_entries_shares(reason, index_of)?;
        let mut vec = Vec::new();
        for (entry_of, _) in entries {
            let value = Self::get_entry_value_for(who, reason, index_of, &entry_of)?;
            vec.push((entry_of, value))
        }
        Ok(vec)
    }

    /// Retrieves the real-time value of a proprietor's commitment to a specific
    /// entry within an index.
    ///
    /// Returns the live committed value for the given proprietor and entry digest.
    /// Since the supertrait [`Commitment`] allows digest values to be updated via
    /// [`Commitment::set_digest_value`], this reflects the **current state** rather
    /// than the deposited total.
    ///
    /// ## Returns
    /// - `Ok(Asset)` containing the proprietor's current commitment to the entry
    /// - `Err(DispatchError)` if the index or entry does not exist
    fn get_entry_value_for(
        who: &Proprietor,
        reason: &Self::Reason,
        index_of: &Self::Digest,
        entry_of: &Self::Digest,
    ) -> Result<Self::Asset, DispatchError>;

    /// Retrieves the real-time total value of a proprietor's commitment to an index.
    ///
    /// Aggregates the live committed values of all entry digests within the index
    /// for the given proprietor. Since the supertrait [`Commitment`] allows digest
    /// values to be updated via [`Commitment::set_digest_value`], this reflects
    /// the **current total** rather than historical deposits.
    ///
    /// ## Returns
    /// - `Ok(Asset)` containing the proprietor's total commitment to the index
    /// - `Err(DispatchError)` if the index does not exist or computation fails
    fn get_index_value_for(
        who: &Proprietor,
        reason: &Self::Reason,
        index_of: &Self::Digest,
    ) -> Result<Self::Asset, DispatchError> {
        Self::index_exists(reason, index_of)?;
        let mut value = Self::Asset::zero();
        let entries = Self::get_entries_value_for(who, reason, index_of)?;
        for (_, val) in entries {
            value = value.saturating_add(val)
        }
        Ok(value)
    }

    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    // ````````````````````````````````` CONSTRUCTORS ````````````````````````````````
    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    /// Generates a unique digest for the given index object.
    ///
    /// Creates a distinct identifier derived from the proprietor, reason, and
    /// index structure (including entries and shares). The generated digest
    /// must be collision-resistant and unique across all indexes of reason.
    ///
    /// ### Returns
    /// - `Ok(Digest)` containing the generated unique index digest
    /// - `Err(DispatchError)` if digest generation fails due to invalid inputs
    fn gen_index_digest(
        from: &Proprietor,
        reason: &Self::Reason,
        index: &Self::Index,
    ) -> Result<Self::Digest, DispatchError>;

    /// Prepares an index object from the provided entry data.
    ///
    /// Constructs a valid index structure from a list of `(Digest, Shares)` pairs,
    /// where each pair represents:
    /// - **Digest**: The unique identifier of an entry within the index
    /// - **Shares**: The proportional weight or ownership of that entry
    ///
    /// This method:
    /// - Validates entry data for consistency and integrity
    /// - Ensures no duplicate digests exist
    /// - Rejects entries with nil/empty digests or zero shares
    /// - Creates an immutable, atomic index object
    ///
    /// ## Returns
    /// - `Ok(Index)` containing the prepared index structure
    /// - `Err(DispatchError)` if preparation fails due to invalid data or validation errors
    fn prepare_index(
        who: &Proprietor,
        reason: &Self::Reason,
        entries: &[(Self::Digest, Self::Shares)],
    ) -> Result<Self::Index, DispatchError>;

    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    // ``````````````````````````````````` MUTATORS ``````````````````````````````````
    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    /// Binds the prepared index to the specified digest under the given reason.
    ///
    /// Associates the provided digest with the index structure, making it
    /// queryable and usable within the commitment system. The index object
    /// should be safely prepared via [`CommitIndex::prepare_index`] before
    /// calling this method.
    ///
    /// This operation ensures:
    /// - The digest uniquely identifies the index
    /// - All entries and shares are preserved with integrity
    /// - The index conforms to [`CommitIndex`] invariants
    ///
    /// ## Returns
    /// - `Ok(())` if the index is successfully set
    /// - `Err(DispatchError)` if the operation fails due to invalid data or conflicts
    fn set_index(
        who: &Proprietor,
        reason: &Self::Reason,
        index: &Self::Index,
        digest: &Self::Digest,
    ) -> DispatchResult;

    /// Updates the shares of a single entry within an existing index.
    ///
    /// Since indexes are immutable once created, this method internally:
    /// 1. Prepares a new index with the updated share for the specified entry
    /// 2. Generates a new digest for the modified index
    /// 3. Returns the new index digest
    ///
    /// Since no explicit entry-removal methods are provided, this method may be
    /// used to remove an entry when its share is set to zero.
    ///
    /// By invariant, commitment indexes must not contain entries with zero shares.
    ///
    /// For updating multiple entries, use [`CommitIndex::prepare_index`] and
    /// [`CommitIndex::set_index`] to create a completely new index structure.
    ///
    /// ## Returns
    /// - `Ok(Digest)` containing the new index digest after share update
    /// - `Err(DispatchError)` if the index or entry does not exist, or update fails
    fn set_entry_shares(
        who: &Proprietor,
        reason: &Self::Reason,
        index_of: &Self::Digest,
        entry_of: &Self::Digest,
        shares: Self::Shares,
    ) -> Result<Self::Digest, DispatchError>;

    /// Removes an index if it contains no active commitments.
    ///
    /// Permanently deletes the specified index digest under the given reason,
    /// freeing associated resources. Indexes can only be reaped when they have
    /// no committed entries or remaining balances.
    ///
    /// ## Returns
    /// - `Ok(())` if the index is successfully removed
    /// - `Err(DispatchError)` if the index does not exist or contains active commitments
    fn reap_index(reason: &Self::Reason, index_of: &Self::Digest) -> DispatchResult;

    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    // ```````````````````````````````````` HOOKS ````````````````````````````````````
    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    /// Hook called after an index is created and its digest is set by a proprietor.
    ///
    /// Provides an extension point for triggering side-effects such as events,
    /// logging, recalculations, or external state updates when a new index is
    /// established.
    ///
    /// Default implementation is a no-op.
    fn on_set_index(
        _who: &Proprietor,
        _index_of: &Self::Digest,
        _reason: &Self::Reason,
        _index: &Self::Index,
    ) {
    }

    /// Hook called after an index is reaped (removed).
    ///
    /// Provides an extension point for cleanup tasks, logging, freeing
    /// related resources, or triggering external notifications when an index
    /// is permanently removed from the system.
    ///
    /// `dust` represents any residual value that was unclaimable and
    /// effectively considered dead.
    ///
    /// Default implementation is a no-op.
    fn on_reap_index(_index_of: &Self::Digest, _reason: &Self::Reason, _dust: Self::Asset) {}
}

// ===============================================================================
// ````````````````````````````````` COMMIT POOL `````````````````````````````````
// ===============================================================================

/// `CommitPool` extends [`Commitment`] and [`CommitIndex`] to provide a **managed,
/// dynamic commitment abstraction**.
///
/// It enables a trusted manager to actively manage where deposited assets are committed
/// - effectively controlling how and where value is allocated across different digests
/// within a pool.
///
/// While `CommitIndex` aggregates multiple commitments under a single digest,
/// `CommitPool` introduces **live management**:
/// - Proprietors deposit assets into a managed pool.  
/// - The pool manager determines how these assets are allocated across underlying
///   commitments to optimize yield, diversify risk, or execute specific strategies.  
/// - Proprietors trust the manager to act within agreed rules and immutable commission terms.
///
/// In short, Pool digests are stable identities; index digests are content hashes.
///
/// ## Purpose
///
/// Pools are useful for:
/// - Managed staking or investment
/// - Delegated liquidity provision
/// - Escrow pools with oversight
/// - Collective asset management with dynamic strategy
///
/// They preserve the atomicity and immutability of individual commitments while enabling
/// flexible allocation.
///
/// ## Core Principles
///
/// 1. **Managed aggregation**
///    - Pools group commitments under a single digest for a given reason.
///    - Slots remain immutable commitments.
///
/// 2. **Dynamic shares**
///    - Managers adjust shares to change exposure or strategy.
///    - Share changes require releasing and recovering the pool.
///
/// 3. **Semi-trusted management**
///    - Managers cannot withdraw deposits directly.
///    - Operations are restricted by pool rules and fixed commission rates.
///
/// 4. **Immutable commission**
///    - Commission rates are fixed at pool creation for transparency and trust.
///
/// ## Examples
///
/// ### Example 1: Managed Staking Pool
///
/// Manager Dave creates a managed pool:
/// - Reason = `"managed_staking"`
/// - Digest = `"dave_pool"`
/// - Entries = `[digest_a123, digest_b456, digest_c789]`
/// - Shares = `[1, 2, 3]`
/// - Commission = `2%`
///
/// Alice, Bob, and Carol deposit tokens into a staking pool managed by Dave:
///
/// | Proprietor | Reason    | Digest        | Value |
/// |------------|-----------|---------------|-------|
/// | Alice      | staking   | dave_pool     | 100   |
/// | Bob        | staking   | dave_pool     | 200   |
/// | Carol      | staking   | dave_pool     | 300   |
///
/// The pool holds a total value of `600`, managed dynamically without altering deposits.  
///
/// Dave can rebalance the pool or add new staking positions (new entry digests)  
/// as opportunities arise, while depositors retain proportional ownership.
///
/// This makes `CommitPool` distinct from `CommitIndex`,  
/// which has **static entries and immutable share structures**.
///
/// #### Dynamic Reallocation and Expansion
///
/// After creation, the manager can **update both shares and entries**:
///
/// - Before:
///   - Entries = `[digest_a123, digest_b456, digest_c789]`
///   - Shares  = `[1, 2, 3]`
///
/// - After:
///   - Entries = `[digest_a123, digest_b456, digest_c789, digest_d999]`
///   - Shares  = `[2, 1, 4, 2]`
///
/// This allows the pool to grow by adding new slots (digests)  
/// and to rebalance proportional exposure.  
/// Proprietors can view current allocations at any time,  
/// but allocations and entries may change as part of active management.
///
/// ### Example 2: Managed Liquidity Pool
///
/// Manager creates:
/// - Reason = `"liquidity"`
/// - Digest = `"pool_digest_lp"`
/// - Entries = `[digest_lp_001, digest_lp_002]`
/// - Shares = `[5, 7]`
/// - Commission = `1%`
///
/// The pool manager may later add new liquidity positions (e.g., `digest_lp_003`)  
/// or adjust existing shares to respond to market demand.  
/// Depositors continue to share in the aggregated performance of the evolving pool.
///
/// ### Example 3: Escrow Pool with Commission
///
/// Carol and Bob deposit into a managed escrow pool:
///
/// | Proprietor | Reason        | Digest              | Value |
/// |------------|---------------|---------------------|-------|
/// | Carol      | escrow        | pool_digest_escrow  | 1000  |
/// | Bob        | escrow        | pool_digest_escrow  | 1500  |
///
/// Manager creates:
/// - Reason = `"escrow"`
/// - Digest = `"pool_digest_escrow"`
/// - Shares = `[1, 1.5]`
/// - Commission = `0.5%`
///
/// The manager can later add new escrow digests or rebalance shares  
/// to adjust allocations, while commission is paid automatically upon resolution.
///
/// ### Example 4: Delegated Investment Pool
///
/// Investors deposit:
///
/// | Proprietor | Reason           | Digest         | Value |
/// |------------|------------------|----------------|-------|
/// | A          | investment       | inv_pool       | 1000  |
/// | B          | investment       | inv_pool       | 2000  |
///
/// Manager creates:
/// - Reason = `"investment"`
/// - Digest = `"inv_pool"`
/// - Shares = `[1, 2]`
/// - Commission = `1.5%`
///
/// After creation:
/// - The manager may add new investment digests or update existing ones.  
/// - Proprietors can see current allocations, but these can change over time.  
///
/// ## Invariants
///
/// - A pool digest wraps multiple committed entries.
/// - Pools are created from indexes.
/// - Mutations require full release and recovering.
/// - Managers cannot withdraw deposits, only adjust shares.
/// - Commission rate is fixed at creation.
/// - Commission is paid upon commitment resolution.
/// - Share adjustments must preserve proportional commitments.
///
/// ## Summary
///
/// `CommitPool` enables managed aggregation of commitments with dynamic share adjustment,
/// preserving safety, immutability, and fixed commission rates.
///
/// Ideal for managed staking, liquidity provision, delegated investment, escrow pools,
/// and collective asset management where live management is required.
///
/// Generics:
/// - **Proprietor** - the entity that owns the asset and can make commitments.
pub trait CommitPool<Proprietor>: Commitment<Proprietor> + CommitIndex<Proprietor> {
    /// The type representing a managed pool.
    ///
    /// Typically a struct that includes:
    /// - The pool's manager (of type `Proprietor`)
    /// - A list of slot digests and their shares
    /// - The commission rate
    /// - Metadata
    type Pool: Elastic + Storable;

    /// The type representing a pool's commission.
    ///
    /// Can be a numeric percentage, ratio, or more complex type
    /// encoding the manager's commission or performance fee model.
    type Commission: Percentage;

    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    // ``````````````````````````````````` CHECKERS ``````````````````````````````````
    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    /// Checks whether a pool exists for the given reason and pool digest.
    ///
    /// ## Returns
    /// - `Ok(())` if the pool exists
    /// - `Err(DispatchError)` if the pool is not found
    fn pool_exists(reason: &Self::Reason, pool_of: &Self::Digest) -> DispatchResult;

    /// Checks whether a specific slot exists within the given pool.
    ///
    /// Verifies that the specified slot digest is part of the pool's
    /// slot list under the given reason.
    ///
    /// ## Returns
    /// - `Ok(())` if the slot exists within the pool
    /// - `Err(DispatchError)` if the slot is not found in the pool
    fn slot_exists(
        reason: &Self::Reason,
        pool_of: &Self::Digest,
        slot_of: &Self::Digest,
    ) -> DispatchResult;

    /// Checks whether any pool exists for the given reason.
    ///
    /// Verifies that at least one pool has been created under the
    /// specified reason across all managers.
    ///
    /// ## Returns
    /// - `Ok(())` if at least one pool exists for the reason
    /// - `Err(DispatchError)` if no pools are found for the reason
    fn has_pool(reason: &Self::Reason) -> DispatchResult;

    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    // ``````````````````````````````````` GETTERS ```````````````````````````````````
    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    /// Retrieves the manager (controller) of the specified pool.
    ///
    /// Returns the proprietor who is responsible for managing the pool's
    /// allocations, slot configurations, and commission distribution.
    ///
    /// ## Returns
    /// - `Ok(Proprietor)` containing the pool's manager
    /// - `Err(DispatchError)` if the pool does not exist
    fn get_manager(
        reason: &Self::Reason,
        pool_of: &Self::Digest,
    ) -> Result<Proprietor, DispatchError>;

    /// Retrieves the commission rate associated with the specified pool.
    ///
    /// Returns the fixed commission structure that determines what portion
    /// of the pool's yield or value the manager is entitled to receive.
    ///
    /// ## Returns
    /// - `Ok(Commission)` containing the pool's commission structure
    /// - `Err(DispatchError)` if the pool does not exist
    fn get_commission(
        reason: &Self::Reason,
        pool_of: &Self::Digest,
    ) -> Result<Self::Commission, DispatchError>;

    /// Retrieves the complete pool structure for the given reason and pool digest.
    ///
    /// Returns the full pool object containing all slots, shares, manager identity,
    /// commission details, and associated metadata for inspection or processing.
    ///
    /// ## Returns
    /// - `Ok(Pool)` containing the complete pool structure
    /// - `Err(DispatchError)` if the pool does not exist
    fn get_pool(reason: &Self::Reason, pool_of: &Self::Digest)
        -> Result<Self::Pool, DispatchError>;

    /// Retrieves the real-time aggregated value of the specified pool.
    ///
    /// Computes the total value by summing the current values of all slot digests
    /// under the pool. Since the supertrait [`Commitment`] allows digest values
    /// to be updated via [`Commitment::set_digest_value`], this reflects the
    /// **live state** rather than historical deposits.
    ///
    /// The aggregated value represents the total exposure of all depositors
    /// across all slots managed by the pool.
    ///
    /// ## Returns
    /// - `Ok(Asset)` containing the total aggregated value of the pool
    /// - `Err(DispatchError)` if the pool does not exist or value computation fails
    fn get_pool_value(
        reason: &Self::Reason,
        pool_of: &Self::Digest,
    ) -> Result<Self::Asset, DispatchError> {
        Self::pool_exists(reason, pool_of)?;
        let slots_values = Self::get_slots_value(reason, pool_of)?;
        let mut value: <Self as InspectAsset<Proprietor>>::Asset = Self::Asset::zero();
        for (_, val) in slots_values {
            value = value.saturating_add(val);
        }
        Ok(value)
    }

    /// Retrieves the shares of all slots within the specified pool.
    ///
    /// Returns a list of slot digests paired with their corresponding shares,
    /// representing each slot's proportional weight within the pool's
    /// managed allocation strategy.
    ///
    /// ## Returns
    /// - `Ok(Vec<(Self::Digest, Self::Shares)>)` containing slot-share pairs
    /// - `Err(DispatchError)` if the pool does not exist or retrieval fails
    fn get_slots_shares(
        reason: &Self::Reason,
        pool_of: &Self::Digest,
    ) -> Result<Vec<(Self::Digest, Self::Shares)>, DispatchError>;

    /// Retrieves the real-time values of all slots within the specified pool.
    ///
    /// Each slot's value is fetched individually and reflects any changes since
    /// the commitment was created, as the supertrait [`Commitment`] allows digest
    /// values to be updated via [`Commitment::set_digest_value`].
    ///
    /// Returns a list of slot digests paired with their current committed values,
    /// representing the live state of the pool's allocation.
    ///
    /// ## Returns
    /// - `Ok(Vec<(Self::Digest, Self::Asset)>)` containing slot-value pairs
    /// - `Err(DispatchError)` if the pool does not exist or value retrieval fails
    fn get_slots_value(
        reason: &Self::Reason,
        pool_of: &Self::Digest,
    ) -> Result<Vec<(Self::Digest, Self::Asset)>, DispatchError> {
        Self::pool_exists(reason, pool_of)?;
        let slots = Self::get_slots_shares(reason, pool_of)?;
        let mut vec = Vec::new();
        for (slot_of, _) in slots {
            let value = Self::get_slot_value(reason, pool_of, &slot_of)?;
            vec.push((slot_of, value))
        }
        Ok(vec)
    }

    /// Retrieves the real-time committed value of a specific slot within a pool.
    ///
    /// Returns the current value for the given slot digest under the specified
    /// reason and pool. Since the supertrait [`Commitment`] allows digest values
    /// to be updated via [`Commitment::set_digest_value`], this reflects the
    /// **live state** rather than the original allocation.
    ///
    /// If no funds are available in a valid slot, it is expected to return zero.
    ///
    /// ## Returns
    /// - `Ok(Asset)` containing the slot's current committed value
    /// - `Err(DispatchError)` if the pool or slot does not exist
    fn get_slot_value(
        reason: &Self::Reason,
        pool_of: &Self::Digest,
        slot_of: &Self::Digest,
    ) -> Result<Self::Asset, DispatchError>;

    /// Retrieves the real-time values of a proprietor's commitments to all slots
    /// within the specified pool.
    ///
    /// Each slot's value is computed individually for the given proprietor and
    /// reflects any changes since commitment, as the supertrait [`Commitment`]
    /// allows digest values to be updated via [`Commitment::set_digest_value`].
    ///
    /// Returns a list of slot digests paired with their current committed values
    /// for the specified proprietor, showing their proportional exposure across
    /// the pool's managed allocation.
    ///
    /// ### Returns
    /// - `Ok(Vec<(Self::Digest, Self::Asset)>)` containing slot-value pairs for the proprietor
    /// - `Err(DispatchError)` if the pool does not exist or value retrieval fails
    fn get_slots_value_for(
        who: &Proprietor,
        reason: &Self::Reason,
        pool_of: &Self::Digest,
    ) -> Result<Vec<(Self::Digest, Self::Asset)>, DispatchError> {
        Self::pool_exists(reason, pool_of)?;
        let slots = Self::get_slots_shares(reason, pool_of)?;
        let mut vec = Vec::new();
        for (slot_of, _) in slots {
            let value = Self::get_slot_value_for(who, reason, pool_of, &slot_of)?;
            vec.push((slot_of, value))
        }
        Ok(vec)
    }

    /// Retrieves the real-time value of a proprietor's commitment to a specific
    /// slot within a pool.
    ///
    /// Returns the live committed value for the given proprietor and slot digest.
    /// Since the supertrait [`Commitment`] allows digest values to be updated via
    /// [`Commitment::set_digest_value`], this reflects the **current state** rather
    /// than the deposited total.
    ///
    /// ### Returns
    /// - `Ok(Asset)` containing the proprietor's current commitment to the slot
    /// - `Err(DispatchError)` if the pool or slot does not exist
    fn get_slot_value_for(
        who: &Proprietor,
        reason: &Self::Reason,
        pool_of: &Self::Digest,
        slot_of: &Self::Digest,
    ) -> Result<Self::Asset, DispatchError>;

    /// Retrieves the real-time total value of a proprietor's commitment to a pool.
    ///
    /// Aggregates the live committed values of all slot digests within the pool
    /// for the given proprietor. Since the supertrait [`Commitment`] allows digest
    /// values to be updated via [`Commitment::set_digest_value`], this reflects
    /// the **current total** rather than historical deposits.
    ///
    /// Represents the proprietor's total exposure to the pool's managed allocation
    /// strategy.
    ///
    /// ### Returns
    /// - `Ok(Asset)` containing the proprietor's total commitment to the pool
    /// - `Err(DispatchError)` if the pool does not exist or computation fails
    fn get_pool_value_for(
        who: &Proprietor,
        reason: &Self::Reason,
        pool_of: &Self::Digest,
    ) -> Result<Self::Asset, DispatchError> {
        Self::pool_exists(reason, pool_of)?;
        let mut value = Self::Asset::zero();
        let slots = Self::get_slots_value_for(who, reason, pool_of)?;
        for (_, val) in slots {
            value = value.saturating_add(val)
        }
        Ok(value)
    }

    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    // ````````````````````````````````` CONSTRUCTORS ````````````````````````````````
    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    /// Generates a unique digest that serves as the identifier for a pool configuration.
    ///
    /// Creates a collision-resistant identifier derived from:
    /// - The manager's identity
    /// - The reason (category/purpose)
    /// - The underlying index digest
    /// - The commission structure
    ///
    /// The generated digest acts as a **globally unique identifier** across all pools,
    /// ensuring that even similar configurations or identical indexes result in
    /// distinct pool identities when managed by different entities or with different
    /// commission rates.
    ///
    /// ## Returns
    /// - `Ok(Digest)` containing the generated unique pool digest
    /// - `Err(DispatchError)` if digest generation fails due to invalid inputs
    fn gen_pool_digest(
        manager: &Proprietor,
        reason: &Self::Reason,
        index_of: &Self::Digest,
        commission: Self::Commission,
    ) -> Result<Self::Digest, DispatchError>;

    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    // ``````````````````````````````````` MUTATORS ``````````````````````````````````
    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    /// Creates a managed pool from an existing index with a fixed commission rate.
    ///
    /// Links the pool to an existing index structure under the specified reason
    /// and pool digest, establishing a managed aggregation layer with dynamic
    /// allocation capabilities.
    ///
    /// This method:
    /// - Validates that the base index exists and is accessible
    /// - Ensures the pool digest is unique and available
    /// - Records the manager (who) and immutable commission rate
    /// - Enables trustless participation for depositors who rely on the index structure
    ///
    /// **Pools can be created from any valid index**, regardless of who created it,
    /// enabling permissionless pool creation while maintaining security.
    ///
    /// Once created, the pool introduces **managed control and commission logic** over
    /// the linked index, allowing the manager to dynamically update slots, adjust slot shares
    /// and allocations.
    ///
    /// ## Returns
    /// - `Ok(())` if the pool is successfully created
    /// - `Err(DispatchError)` if the index does not exist, pool digest conflicts, or validation fails
    fn set_pool(
        who: &Proprietor,
        reason: &Self::Reason,
        pool_of: &Self::Digest,
        index_of: &Self::Digest,
        commission: Self::Commission,
    ) -> DispatchResult;

    /// Assigns or updates the manager of an existing pool.
    ///
    /// Transfers management control of the pool to a new proprietor, who then
    /// assumes responsibility for slot configuration, share adjustments, and commission control.
    ///
    /// This operation preserves all existing commitments, shares, and commission
    /// structures while changing only the entity authorized to manage the pool.
    ///
    /// ### Returns
    /// - `Ok(())` if the manager is successfully updated
    /// - `Err(DispatchError)` if the pool does not exist or authorization fails
    fn set_pool_manager(
        reason: &Self::Reason,
        pool_of: &Self::Digest,
        manager: &Proprietor,
    ) -> DispatchResult;

    /// Updates the shares of a specific slot within an existing pool.
    ///
    /// Allows the pool manager to dynamically reallocate exposure between slots
    /// without recreating the entire pool structure. This enables responsive
    /// strategy adjustments based on market conditions, performance metrics,
    /// or risk management requirements.
    ///
    /// The operation preserves all existing commitments while adjusting the
    /// proportional weight of the specified slot within the pool's allocation.
    ///
    /// ### Returns
    /// - `Ok(())` if the slot shares are successfully updated
    /// - `Err(DispatchError)` if the pool or slot does not exist, or authorization fails
    fn set_slot_shares(
        who: &Proprietor,
        reason: &Self::Reason,
        pool_of: &Self::Digest,
        slot_of: &Self::Digest,
        shares: Self::Shares,
    ) -> DispatchResult;

    /// Creates a new pool digest from an index with a specified commission rate.
    ///
    /// Generates a unique pool identifier by combining the index structure with
    /// a commission rate, enabling multiple pools with different commission
    /// structures to be created from the same underlying index.
    ///
    /// Since commission rates are **immutable** after pool creation to protect
    /// depositors, this method allows participants to create or select pools
    /// with their preferred commission terms without altering existing pools.
    ///
    /// The generated digest serves as the unique identifier for the new pool
    /// configuration and can be used for subsequent pool operations.
    ///
    /// ## Returns
    /// - `Ok(Digest)` containing the newly generated pool digest
    /// - `Err(DispatchError)` if pool creation fails due to invalid parameters or conflicts
    fn set_commission(
        who: &Proprietor,
        reason: &Self::Reason,
        index_of: &Self::Digest,
        commission: Self::Commission,
    ) -> Result<Self::Digest, DispatchError> {
        let pool_of = Self::gen_pool_digest(who, reason, index_of, commission)?;
        Self::set_pool(who, reason, &pool_of, index_of, commission)?;
        Ok(pool_of)
    }

    /// Removes a pool if it contains no active commitments.
    ///
    /// Permanently deletes the specified pool digest under the given reason,
    /// freeing associated resources and references. Pools can only be reaped when
    /// **no proprietors have active commitments** to any of its slots.
    ///
    /// Attempting to reap a non-empty pool must return an error.
    ///
    /// ## Returns
    /// - `Ok(())` if the pool is successfully removed
    /// - `Err(DispatchError)` if the pool does not exist or contains active commitments
    fn reap_pool(reason: &Self::Reason, pool_of: &Self::Digest) -> DispatchResult;

    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    // ```````````````````````````````````` HOOKS ````````````````````````````````````
    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    /// Hook called after a pool is successfully created by a proprietor (assumed to be
    /// the current pool-manager).
    ///
    /// Provides an extension point for triggering side-effects such as events,
    /// logging, recalculations, or external state updates when a pool is
    /// established or modified.
    ///
    /// Default implementation is a no-op.
    fn on_set_pool(
        _who: &Proprietor,
        _pool_of: &Self::Digest,
        _reason: &Self::Reason,
        _pool: &Self::Pool,
    ) {
    }

    /// Hook called after slot shares are updated within a pool.
    ///
    /// Provides an extension point for triggering recalculations, propagating
    /// changes to related state, or emitting events when a slot's shares are
    /// adjusted as part of the pool's dynamic allocation strategy.
    ///
    /// Default implementation is a no-op.
    fn on_set_slot_shares(
        _pool_of: &Self::Digest,
        _reason: &Self::Reason,
        _slot_of: &Self::Digest,
        _shares: Self::Shares,
    ) {
    }

    /// Hook called after a pool's manager is changed.
    ///
    /// Provides an extension point for triggering governance events, audit logging,
    /// or external notifications when management control of a pool is transferred
    /// to a new proprietor.
    ///
    /// Default implementation is a no-op.
    fn on_set_manager(_pool_of: &Self::Digest, _reason: &Self::Reason, _manager: &Proprietor) {}

    /// Hook called after a pool is reaped (removed).
    ///
    /// Provides an extension point for cleanup tasks, audit logging, freeing
    /// related resources, or triggering external notifications when a pool
    /// is permanently removed from the system.
    ///
    /// `dust` represents any residual value that was unclaimable and
    /// effectively considered dead.
    ///
    /// Default implementation is a no-op.
    fn on_reap_pool(_pool_of: &Self::Digest, _reason: &Self::Reason, _dust: Self::Asset) {}
}

// ===============================================================================
// ``````````````````````````````` COMMIT VARIANT ````````````````````````````````
// ===============================================================================

/// `CommitVariant` extends [`Commitment`] by introducing **variant-based commitments** -
/// allowing each commitment to represent a specific *position* or *type*,
/// such as positive/negative, long/short, or other directional states.
///
/// This abstraction is useful in financial systems where commitments
/// can have opposing or complementary meanings (e.g., bets, trades, or hedges),
/// and where such **variants** must be consistently classified and tracked
/// under the same digest or reason.
///
/// ## Purpose
///
/// In standard [`Commitment`], each digest represents a single locked or committed value.
/// However, many financial instruments carry a **semantic variant**, such as:
/// - Positive / Negative exposure
/// - Long / Short position
/// - Buy / Sell order
/// - For / Against vote
///
/// `CommitVariant` provides an abstract way to encode and manage such distinctions
/// without altering the base commitment model.
///
/// ## Core Principles
///
/// 1. **Variant as classification**
///    - Each commitment may declare a variant indicating its nature or direction.
///    - Variants are accounted for directly under the commitment's digest.
///
/// 2. **Digest-level association**
///    - A commitment's digest uniquely identifies both its value and variant.
///    - Variants must be recorded or derivable from the digest state.
///
/// 3. **Financial semantics**
///    - Designed for use in scenarios like betting, derivatives, prediction markets,
///      and financial trilemmas where commitments can oppose or complement each other.
///
/// ## Example Use Cases
///
/// - **Betting systems**: Represent "for" and "against" commitments.
/// - **Trading platforms**: Track "long" and "short" positions.
/// - **Hedging mechanisms**: Manage opposing commitments under one reason.
/// - **Voting protocols**: Represent affirmative and negative stake commitments.
///
/// ## Summary
///
/// `CommitVariant` offers an abstract and extensible layer over [`Commitment`],
/// enabling richer semantics and directionality (positive/negative or other variants)
/// to be embedded into financial commitment logic in a consistent, trustless manner.
///
/// Generics:
/// - **Proprietor** - the entity that owns the asset and can make commitments.
pub trait CommitVariant<Proprietor>: Commitment<Proprietor> {
    /// The type representing a commitment's position or variant.
    type Position: RuntimeEnum + Delimited;

    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    // ``````````````````````````````````` CHECKERS ``````````````````````````````````
    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    /// Validates whether a specific digest variant's value can be set or updated.
    ///
    /// Ensures that:
    /// - The variant is initialized (has a balance entry)
    /// - The intended update respects mint/reap advisory limits
    ///
    /// ## Returns
    /// - `Ok(())` if validation succeeds
    /// - `Err(DispatchError)` if the digest/variant is invalid or limits are violated
    fn can_set_digest_variant_value(
        reason: &Self::Reason,
        digest: &Self::Digest,
        value: Self::Asset,
        variant: &Self::Position,
        qualifier: &Self::Intent,
    ) -> DispatchResult {
        let current = Self::get_digest_variant_value(reason, digest, variant)?;
        match current.cmp(&value) {
            Ordering::Less => {
                // Mint path (increase)
                let limits = Self::digest_mint_limits(digest, reason, qualifier)?;
                let mintable = value.saturating_sub(current);
                ensure!(
                    limits.contains(mintable),
                    Self::from_commit_error(CommitError::MintingOffLimits)
                )
            }
            Ordering::Greater => {
                // Reap path (decrease)
                let limits = Self::digest_reap_limits(digest, reason, qualifier)?;
                let reapable = current.saturating_sub(value);
                ensure!(
                    limits.contains(reapable),
                    Self::from_commit_error(CommitError::ReapingOffLimits)
                )
            }
            Ordering::Equal => {
                // No-op
            }
        }

        Ok(())
    }

    /// Validates whether a new commitment can be placed for a specific variant.
    ///
    /// Ensures that no existing commitment exists for the given reason (enforcing
    /// the "one digest per reason" invariant) and that the proprietor has sufficient
    /// available funds to cover the commitment value.
    ///
    /// Additionally validates that the value satisfies variant-specific placement
    /// limits derived from the lazy balance model.
    ///
    /// ## Returns
    /// - `Ok(())` if validation succeeds
    /// - `Err(DispatchError)` if a commitment already exists, insufficient funds are available,
    ///   or the value violates variant-specific limits
    fn can_place_commit_of_variant(
        who: &Proprietor,
        reason: &Self::Reason,
        digest: &Self::Digest,
        variant: &Self::Position,
        value: Self::Asset,
        qualifier: &Self::Intent,
    ) -> DispatchResult {
        ensure!(
            Self::commit_exists(who, reason).is_err(),
            Self::from_commit_error(CommitError::CommitAlreadyExists)
        );
        let max = Self::available_funds(who);
        ensure!(
            max >= value,
            Self::from_commit_error(CommitError::InsufficientFunds)
        );
        let limits = Self::place_commit_limits_of_variant(who, reason, digest, variant, qualifier)?;
        ensure!(
            limits.contains(value),
            Self::from_commit_error(CommitError::PlacingOffLimits)
        );

        Ok(())
    }

    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    // ``````````````````````````````````` GETTERS ```````````````````````````````````
    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    /// Retrieves the position/variant of a proprietor's commitment for
    /// the given reason.
    ///
    /// Returns the active variant under which the proprietor's commitment
    /// is currently classified. Since each proprietor can have only **one
    /// commitment per reason** (base trait invariant), they also have only
    /// **one active variant per reason**.
    ///
    /// ## Returns
    /// - `Ok(Position)` containing the commitment's current variant
    /// - `Err(DispatchError)` if no commitment exists for the reason
    fn get_commit_variant(
        who: &Proprietor,
        reason: &Self::Reason,
    ) -> Result<Self::Position, DispatchError>;

    /// Retrieves the aggregated value for a specific digest and variant combination.
    ///
    /// Returns the real-time sum of all commitments to the given digest that are
    /// classified under the specified variant. This enables querying variant-specific
    /// exposure across all proprietors.
    ///
    /// When both [`Commitment`] and `CommitVariant` are implemented:
    /// - [`Commitment::get_digest_value`] returns the aggregate across **all variants**
    /// - This method returns the aggregate for **a specific variant**
    ///
    /// ## Returns
    /// - `Ok(Asset)` containing the variant-specific aggregated value
    /// - `Err(DispatchError)` if the digest or variant does not exist
    fn get_digest_variant_value(
        reason: &Self::Reason,
        digest: &Self::Digest,
        variant: &Self::Position,
    ) -> Result<Self::Asset, DispatchError>;

    /// Provides advisory bounds for increasing (minting) a digest's
    /// specific variant-balance.
    ///
    /// Acts as an optional guard to prevent abrupt or excessive growth,
    /// complementing core digest update logic.
    fn digest_mint_limits_of_variant(
        _digest: &Self::Digest,
        _reason: &Self::Reason,
        _variant: &Self::Position,
        _qualifier: &Self::Intent,
    ) -> Result<Self::Limits, DispatchError> {
        // By default, this returns a baseline limit,
        // representing a static or fallback bound when no dynamic limits are applied.
        //
        // Implementors may override this to provide context-specific limits.
        Ok(Self::Limits::none())
    }

    /// Provides advisory bounds for decreasing (reaping) a digest's
    /// specific variant-balance.
    ///
    /// Acts as an optional guard to prevent aggressive or premature reductions,
    /// complementing core invariants that ensure correctness.
    fn digest_reap_limits_of_variant(
        _digest: &Self::Digest,
        _reason: &Self::Reason,
        _variant: &Self::Position,
        _qualifier: &Self::Intent,
    ) -> Result<Self::Limits, DispatchError> {
        // By default, this returns a baseline limit,
        // representing a static or fallback bound when no dynamic limits are applied.
        // Implementors may override this to provide context-specific limits.
        Ok(Self::Limits::none())
    }

    /// Provides advisory bounds for placing a new commitment
    /// under a given variant.
    ///
    /// Acts as an optional pre-validation layer to prevent premature or
    /// undesirable commits by constraining value ranges.
    fn place_commit_limits_of_variant(
        _who: &Proprietor,
        _reason: &Self::Reason,
        _digest: &Self::Digest,
        _variant: &Self::Position,
        _qualifier: &Self::Intent,
    ) -> Result<Self::Limits, DispatchError> {
        // By default, this returns an unbounded extent,
        // meaning no additional constraints are applied unless overridden.
        //
        // Implementors may override this to provide context-specific limits.
        Ok(Self::Limits::none())
    }

    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    // ``````````````````````````````````` MUTATORS ``````````````````````````````````
    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    /// Sets or updates the aggregated value for a specific digest and variant.
    ///
    /// Updates the value associated with a particular variant of a digest,
    /// propagating changes to all commitments tied to that digest-variant pair.
    ///
    /// When both [`Commitment`] and [`CommitVariant`] are utilized in a system:
    /// - [`Commitment::set_digest_value`] may set the **default variant**.
    /// - This method updates **the specified variant**.
    ///
    /// The `qualifier` defines how the update is applied (e.g., exact vs best-effort,
    /// forceful vs bounded), and may influence the final value that is actually set.
    ///
    /// ## Returns
    /// - `Ok(Asset)` containing the actual value applied to the specified digest-variant
    /// - `Err(DispatchError)` if the digest, variant, or reason is invalid, or update fails
    fn set_digest_variant_value(
        reason: &Self::Reason,
        digest: &Self::Digest,
        value: Self::Asset,
        variant: &Self::Position,
        qualifier: &Self::Intent,
    ) -> Result<Self::Asset, DispatchError>;

    /// Changes the variant of an existing commitment.
    ///
    /// Transitions a commitment from its current variant to a new variant while
    /// preserving the committed value. Since commitments are immutable, this
    /// operation uses the **resolve-and-replace pattern**.
    ///
    /// Ensures that variant changes maintain consistency with the underlying
    /// commitment state and respect the semantics of the commitment system.
    ///
    /// In case if the variant already exists, the function safely returns.
    ///
    /// ## Returns
    /// - `Ok(())` if the variant is successfully changed
    /// - `Err(DispatchError)` if:
    ///   - No commitment exists for the reason
    ///   - New variant matches current variant
    ///   - Commitment resolution or placement fails
    fn set_commit_variant(
        who: &Proprietor,
        reason: &Self::Reason,
        variant: &Self::Position,
        qualifier: &Self::Intent,
    ) -> DispatchResult {
        Self::commit_exists(who, reason)?;
        let current_variant = Self::get_commit_variant(who, reason)?;
        if current_variant == *variant {
            return Ok(());
        }
        let digest = Self::get_commit_digest(who, reason)?;
        let re_deposit = Self::resolve_commit(who, reason)?;
        Self::place_commit_of_variant(who, reason, &digest, re_deposit, variant, qualifier)?;
        Ok(())
    }

    /// Places a commitment under a specific variant.
    ///
    /// Creates a new commitment with explicit variant classification, enabling
    /// directional or positional semantics from the moment of placement.
    ///
    /// This extends [`Commitment::place_commit`] by adding variant specification.
    /// When both traits are implemented:
    /// - [`Commitment::place_commit`] may use a **default variant**
    /// - This method allows **explicit variant selection**
    ///
    /// The method must:
    /// - Record the commitment under the specified variant
    /// - Associate the variant with the digest at the commitment level
    /// - Respect qualifier parameters
    /// - Return the actual committed value after any adjustments
    ///
    /// ## Returns
    /// - `Ok(Asset)` containing the actual value committed under the variant
    /// - `Err(DispatchError)` if placement fails.
    fn place_commit_of_variant(
        who: &Proprietor,
        reason: &Self::Reason,
        digest: &Self::Digest,
        value: Self::Asset,
        variant: &Self::Position,
        qualifier: &Self::Intent,
    ) -> Result<Self::Asset, DispatchError>;

    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    // ```````````````````````````````````` HOOKS ````````````````````````````````````
    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    /// Hook called after placing a commitment under a specific variant.
    ///
    /// Provides an extension point for triggering custom side-effects when a new
    /// variant-based commitment is placed.
    ///
    /// Default implementation is a no-op.
    fn on_place_commit_on_variant(
        _who: &Proprietor,
        _reason: &Self::Reason,
        _digest: &Self::Digest,
        _value: Self::Asset,
        _variant: &Self::Position,
    ) {
    }

    /// Hook called after a commitment's variant is changed.
    ///
    /// Provides an extension point for responding to variant transitions.
    /// Receives both the digest and value to enable comprehensive
    /// state management and analytics.
    ///
    /// Default implementation is a no-op.
    fn on_set_commit_variant(
        _who: &Proprietor,
        _reason: &Self::Reason,
        _digest: &Self::Digest,
        _value: Self::Asset,
        _variant: &Self::Position,
    ) {
    }

    /// Hook called after a digest's variant value is updated.
    ///
    /// Provides an extension point for reacting to variant-specific value changes.
    ///
    /// Default implementation is a no-op.
    fn on_set_digest_variant(
        _digest: &Self::Digest,
        _reason: &Self::Reason,
        _value: Self::Asset,
        _variant: &Self::Position,
    ) {
    }
}

// ===============================================================================
// ``````````````````````````````` INDEX VARIANT `````````````````````````````````
// ===============================================================================

/// A trait for managing and querying **variants** of index entries and its commitments.
///
/// Extends [`CommitVariant`] and [`CommitIndex`], allowing indexed commitments
/// to carry additional positional/variant metadata.  
///
/// This trait enables tracking, setting, and preparing variant entries in an index context.
///
/// Generics:
/// - **Proprietor** - the entity that owns the asset and can make commitments.
pub trait IndexVariant<Proprietor>: CommitVariant<Proprietor> + CommitIndex<Proprietor> {
    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    // ````````````````````````````````` CONSTRUCTORS ````````````````````````````````
    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    /// Prepares an index from entry data with explicit variant classification.
    ///
    /// Constructs a variant-aware index structure from a list of `(Digest, Shares, Position)` tuples,
    /// where each tuple represents:
    /// - **Digest**: The unique identifier of an entry within the index
    /// - **Shares**: The proportional weight or ownership of that entry
    /// - **Position**: The variant classification for that entry
    ///
    /// This extends [`CommitIndex::prepare_index`] by adding variant specification for each entry.
    /// When both traits are implemented:
    /// - [`CommitIndex::prepare_index`] may assign a **default variant** to all entries
    /// - This method allows **explicit variant specification** per entry
    ///
    /// ## Returns
    /// - `Ok(Index)` containing the prepared variant-aware index structure
    /// - `Err(DispatchError)` if preparation fails
    fn prepare_index_of_variants(
        who: &Proprietor,
        reason: &Self::Reason,
        entries: Vec<(Self::Digest, Self::Shares, Self::Position)>,
    ) -> Result<Self::Index, DispatchError>;

    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    // ``````````````````````````````````` GETTERS ```````````````````````````````````
    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    /// Retrieves the variant associated with a specific entry within an index.
    ///
    /// Returns the position classification for the given entry digest under the
    /// specified reason and index digest. This enables querying the directional
    /// or positional semantics of individual entries within a mixed-variant index.
    ///
    /// ## Returns
    /// - `Ok(Position)` containing the entry's variant
    /// - `Err(DispatchError)` if the index or entry does not exist
    fn get_entry_variant(
        reason: &Self::Reason,
        index_of: &Self::Digest,
        entry_of: &Self::Digest,
    ) -> Result<Self::Position, DispatchError>;

    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    // ``````````````````````````````````` MUTATORS ``````````````````````````````````
    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    /// Associates or updates a variant for a specific entry within an index.
    ///
    /// Records a position (variant) for an entry digest within the context of a given
    /// index digest and reason. If shares are provided, they are updated alongside the variant.
    ///
    /// Since indexes are **immutable** once created, this method internally
    /// generates a new digest for the modified index and returns the new index digest.
    ///
    /// For updating multiple entry variants simultaneously, use
    /// [`IndexVariant::prepare_index_of_variants`] to construct a completely new index structure.
    ///
    /// This behavior partly mirrors [`CommitIndex::set_index`], and can be
    /// considered a higher-level wrapper around index reconstruction and binding.
    ///
    /// As such, it is assumed that any side-effects or lifecycle handling are
    /// delegated through the underlying [`CommitIndex::set_index`] call, and
    /// therefore this method does **not** introduce a separate hook.
    ///
    /// ## Returns
    /// - `Ok(Digest)` containing the new index digest after variant update
    /// - `Err(DispatchError)` if the index or entry does not exist, or update fails
    fn set_entry_of_variant(
        who: &Proprietor,
        reason: &Self::Reason,
        index_of: &Self::Digest,
        entry_of: &Self::Digest,
        variant: Self::Position,
        shares: Option<Self::Shares>,
    ) -> Result<Self::Digest, DispatchError>;
}

// ===============================================================================
// ```````````````````````````````` POOL VARIANT `````````````````````````````````
// ===============================================================================

/// A trait for managing and querying **variants** of pool slots and their commitments.
///
/// Extends [`CommitPool`] to allow pool commitments to carry additional positional
/// or variant metadata.
///
/// Provides the ability to retrieve, set, and react to variant changes within a pool context.
///
/// Generics:
/// - **Proprietor** - the entity that owns the asset and can make commitments.
pub trait PoolVariant<Proprietor>:
    CommitVariant<Proprietor> + CommitPool<Proprietor> + CommitIndex<Proprietor>
{
    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    // ``````````````````````````````````` GETTERS ```````````````````````````````````
    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    /// Retrieves the variant (position) associated with a specific slot within a pool.
    ///
    /// Returns the position classification for the given slot digest under the
    /// specified reason and pool digest. This enables querying the directional
    /// or positional semantics of individual slots within a managed variant-aware pool.
    ///
    /// ## Returns
    /// - `Ok(Position)` containing the slot's variant
    /// - `Err(DispatchError)` if the pool or slot does not exist
    fn get_slot_variant(
        reason: &Self::Reason,
        pool_of: &Self::Digest,
        slot_of: &Self::Digest,
    ) -> Result<Self::Position, DispatchError>;

    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    // ``````````````````````````````````` MUTATORS ``````````````````````````````````
    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    /// Associates or updates a variant for a specific slot within a pool.
    ///
    /// Records a position (variant) for a slot digest within the context of a given
    /// pool digest and reason. If shares are provided, they are updated alongside the variant.
    ///
    /// Since pools are **mutable** (unlike indexes), this method directly updates
    /// the slot's variant without creating a new pool digest.
    ///
    /// This is a **managed operation** - typically restricted to the pool manager
    /// or authorized entities, ensuring controlled strategy execution while
    /// protecting depositor interests.
    ///
    /// ## Returns
    /// - `Ok(())` if the variant is successfully updated
    /// - `Err(DispatchError)` if fails
    fn set_slot_of_variant(
        who: &Proprietor,
        reason: &Self::Reason,
        pool_of: &Self::Digest,
        slot_of: &Self::Digest,
        variant: Self::Position,
        shares: Option<Self::Shares>,
    ) -> DispatchResult;

    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    // ```````````````````````````````````` HOOKS ````````````````````````````````````
    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    /// Hook called after a slot variant is updated within a pool.
    ///
    /// Provides an extension point for triggering side-effects when a slot's
    /// variant is associated or changed within a managed pool.
    ///
    /// Receives both the slot digest and optional shares to enable comprehensive
    /// state management and analytics when managed slot configurations change.
    ///
    /// Default implementation is a no-op.
    fn on_set_slot_of_variant(
        _pool_of: &Self::Digest,
        _reason: &Self::Reason,
        _slot_of: &Self::Digest,
        _shares: Option<Self::Shares>,
        _variant: &Self::Position,
    ) {
    }
}