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
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
// Copyright (c) 2022 MASSA LABS <info@massa.net>

//! This module deals with executing final and active slots, as well as read-only requests.
//! It also keeps a history of executed slots, thus holding the speculative state of the ledger.
//!
//! Execution usually happens in the following way:
//! * an execution context is set up
//! * the VM is called for execution within this context
//! * the output of the execution is extracted from the context

use crate::active_history::{ActiveHistory, HistorySearchResult};
use crate::context::{ExecutionContext, ExecutionContextSnapshot};
use crate::interface_impl::InterfaceImpl;
use crate::stats::ExecutionStatsCounter;
#[cfg(feature = "dump-block")]
use crate::storage_backend::StorageBackend;
use massa_async_pool::AsyncMessage;
use massa_deferred_calls::DeferredCall;
use massa_event_cache::controller::EventCacheController;
use massa_execution_exports::{
    ExecutedBlockInfo, ExecutionBlockMetadata, ExecutionChannels, ExecutionConfig, ExecutionError,
    ExecutionOutput, ExecutionQueryCycleInfos, ExecutionQueryStakerInfo, ExecutionStackElement,
    ReadOnlyExecutionOutput, ReadOnlyExecutionRequest, ReadOnlyExecutionTarget,
    SlotExecutionOutput,
};
use massa_final_state::FinalStateController;
use massa_metrics::MassaMetrics;
use massa_models::address::ExecutionAddressCycleInfo;
use massa_models::bytecode::Bytecode;
use massa_models::datastore::get_prefix_bounds;
use massa_models::deferred_calls::DeferredCallId;
use massa_models::denunciation::{Denunciation, DenunciationIndex};
use massa_models::execution::EventFilter;
use massa_models::output_event::SCOutputEvent;
use massa_models::prehash::PreHashSet;
use massa_models::stats::ExecutionStats;
use massa_models::timeslots::get_block_slot_timestamp;
use massa_models::types::{SetOrDelete, SetUpdateOrDelete};
use massa_models::{
    address::Address,
    block_id::BlockId,
    operation::{OperationId, OperationType, SecureShareOperation},
};
use massa_models::{amount::Amount, slot::Slot};
use massa_module_cache::config::ModuleCacheConfig;
use massa_module_cache::controller::ModuleCache;
use massa_pos_exports::SelectorController;
use massa_sc_runtime::{CondomLimits, Interface, Response, VMError};
use massa_versioning::versioning::MipStore;
use massa_wallet::Wallet;
use parking_lot::{Mutex, RwLock};
use std::collections::{BTreeMap, BTreeSet};
use std::sync::Arc;
use tracing::{debug, info, trace, warn};

use crate::execution_info::{
    AsyncMessageExecutionResult, DeferredCallExecutionResult, DenunciationResult,
};
#[cfg(feature = "execution-info")]
use crate::execution_info::{ExecutionInfo, ExecutionInfoForSlot, OperationInfo};
#[cfg(feature = "execution-trace")]
use crate::trace_history::TraceHistory;
#[cfg(feature = "execution-trace")]
use massa_execution_exports::{AbiTrace, SlotAbiCallStack, Transfer};
#[cfg(feature = "dump-block")]
use massa_models::block::FilledBlock;
#[cfg(feature = "execution-trace")]
use massa_models::config::{BASE_OPERATION_GAS_COST, MAX_GAS_PER_BLOCK, MAX_OPERATIONS_PER_BLOCK};
#[cfg(feature = "dump-block")]
use massa_models::operation::Operation;
#[cfg(feature = "execution-trace")]
use massa_models::prehash::PreHashMap;
#[cfg(feature = "dump-block")]
use massa_models::secure_share::SecureShare;
#[cfg(feature = "dump-block")]
use massa_proto_rs::massa::model::v1 as grpc_model;
#[cfg(feature = "dump-block")]
use prost::Message;

/// Used to acquire a lock on the execution context
macro_rules! context_guard {
    ($self:ident) => {
        $self.execution_context.lock()
    };
}

#[cfg(feature = "execution-trace")]
/// ABI and execution succeed or not
pub type ExecutionResult = (Vec<AbiTrace>, bool);
#[cfg(not(feature = "execution-trace"))]
pub type ExecutionResult = ();

#[cfg(feature = "execution-trace")]
/// ABIs
pub type ExecutionResultInner = Vec<AbiTrace>;
#[cfg(not(feature = "execution-trace"))]
/// ABIs
pub type ExecutionResultInner = ();

/// Structure holding consistent speculative and final execution states,
/// and allowing access to them.
pub(crate) struct ExecutionState {
    // execution config
    config: ExecutionConfig,
    // History of the outputs of recently executed slots. Slots should be consecutive, newest at the back.
    // Whenever an active slot is executed, it is appended at the back of active_history.
    // Whenever an executed active slot becomes final,
    // its output is popped from the front of active_history and applied to the final state.
    // It has atomic R/W access.
    pub active_history: Arc<RwLock<ActiveHistory>>,
    // a cursor pointing to the highest executed slot
    pub active_cursor: Slot,
    // a cursor pointing to the highest executed final slot
    pub final_cursor: Slot,
    // store containing execution events that became final
    final_events_cache: Box<dyn EventCacheController>,
    // final state with atomic R/W access
    final_state: Arc<RwLock<dyn FinalStateController>>,
    // execution context (see documentation in context.rs)
    execution_context: Arc<Mutex<ExecutionContext>>,
    // execution interface allowing the VM runtime to access the Massa context
    execution_interface: Box<dyn Interface>,
    // execution statistics
    stats_counter: ExecutionStatsCounter,
    // cache of pre compiled sc modules
    pub module_cache: Arc<RwLock<ModuleCache>>,
    // MipStore (Versioning)
    mip_store: MipStore,
    // wallet used to verify double staking on local addresses
    wallet: Arc<RwLock<Wallet>>,
    // selector controller to get draws
    selector: Box<dyn SelectorController>,
    // channels used by the execution worker
    channels: ExecutionChannels,
    /// prometheus metrics
    massa_metrics: MassaMetrics,
    #[cfg(feature = "execution-trace")]
    pub(crate) trace_history: Arc<RwLock<TraceHistory>>,
    #[cfg(feature = "execution-info")]
    pub(crate) execution_info: Arc<RwLock<ExecutionInfo>>,
    #[cfg(feature = "dump-block")]
    block_storage_backend: Arc<RwLock<dyn StorageBackend>>,
    cur_execution_version: u32,
}

impl ExecutionState {
    /// Create a new execution state. This should be called only once at the start of the execution worker.
    ///
    /// # Arguments
    /// * `config`: execution configuration
    /// * `final_state`: atomic access to the final state
    ///
    /// # returns
    /// A new `ExecutionState`
    #[allow(clippy::too_many_arguments)]
    pub fn new(
        config: ExecutionConfig,
        final_state: Arc<RwLock<dyn FinalStateController>>,
        mip_store: MipStore,
        selector: Box<dyn SelectorController>,
        channels: ExecutionChannels,
        wallet: Arc<RwLock<Wallet>>,
        massa_metrics: MassaMetrics,
        event_cache: Box<dyn EventCacheController>,
        #[cfg(feature = "dump-block")] block_storage_backend: Arc<RwLock<dyn StorageBackend>>,
    ) -> ExecutionState {
        // Get the slot at the output of which the final state is attached.
        // This should be among the latest final slots.
        let last_final_slot;
        let execution_trail_hash;
        {
            let final_state_read = final_state.read();
            last_final_slot = final_state_read.get_slot();
            execution_trail_hash = final_state_read.get_execution_trail_hash();
        }

        // Create default active history
        let active_history: Arc<RwLock<ActiveHistory>> = Default::default();

        // Initialize the SC module cache
        let module_cache = Arc::new(RwLock::new(ModuleCache::new(ModuleCacheConfig {
            hd_cache_path: config.hd_cache_path.clone(),
            gas_costs: config.gas_costs.clone(),
            lru_cache_size: config.lru_cache_size,
            hd_cache_size: config.hd_cache_size,
            snip_amount: config.snip_amount,
            max_module_length: config.max_bytecode_size,
            condom_limits: config.condom_limits.clone(),
        })));

        // Create an empty placeholder execution context, with shared atomic access
        let execution_context = ExecutionContext::new(
            config.clone(),
            final_state.clone(),
            active_history.clone(),
            module_cache.clone(),
            mip_store.clone(),
            execution_trail_hash,
        );
        let cur_execution_version = execution_context.execution_component_version;
        let execution_context = Arc::new(Mutex::new(execution_context));

        // Instantiate the interface providing ABI access to the VM, share the execution context with it
        let execution_interface = Box::new(InterfaceImpl::new(
            config.clone(),
            execution_context.clone(),
        ));

        // build the execution state
        ExecutionState {
            final_state,
            execution_context,
            execution_interface,
            // empty execution output history: it is not recovered through bootstrap
            active_history,
            // empty final event store: it is not recovered through bootstrap
            // final_events: Default::default(),
            final_events_cache: event_cache,
            // no active slots executed yet: set active_cursor to the last final block
            active_cursor: last_final_slot,
            final_cursor: last_final_slot,
            stats_counter: ExecutionStatsCounter::new(config.stats_time_window_duration),
            module_cache,
            mip_store,
            selector,
            channels,
            wallet,
            massa_metrics,
            #[cfg(feature = "execution-trace")]
            trace_history: Arc::new(RwLock::new(TraceHistory::new(
                config.max_execution_traces_slot_limit as u32,
                std::cmp::min(
                    MAX_OPERATIONS_PER_BLOCK,
                    (MAX_GAS_PER_BLOCK / BASE_OPERATION_GAS_COST) as u32,
                ),
            ))),
            #[cfg(feature = "execution-info")]
            execution_info: Arc::new(RwLock::new(ExecutionInfo::new(
                config.max_execution_traces_slot_limit as u32,
            ))),
            config,
            #[cfg(feature = "dump-block")]
            block_storage_backend,
            cur_execution_version,
        }
    }

    /// Get the fingerprint of the final state
    pub fn get_final_state_fingerprint(&self) -> massa_hash::Hash {
        self.final_state.read().get_fingerprint()
    }

    /// Get execution statistics
    pub fn get_stats(&self) -> ExecutionStats {
        self.stats_counter
            .get_stats(self.active_cursor, self.final_cursor)
    }

    /// Applies the output of an execution to the final execution state.
    /// The newly applied final output should be from the slot just after the last executed final slot
    ///
    /// # Arguments
    /// * `exec_out`: execution output to apply
    pub fn apply_final_execution_output(&mut self, mut exec_out: ExecutionOutput) {
        if self.final_cursor >= exec_out.slot {
            panic!("attempting to apply a final execution output at or before the current final_cursor");
        }

        // count stats
        if exec_out.block_info.is_some() {
            self.stats_counter.register_final_blocks(1);
            self.stats_counter.register_final_executed_operations(
                exec_out.state_changes.executed_ops_changes.len(),
            );
            self.stats_counter.register_final_executed_denunciations(
                exec_out.state_changes.executed_denunciations_changes.len(),
            );
        }

        // Update versioning stats
        // This will update the MIP store and must be called before final state write
        // as it will also write the MIP store on disk
        self.update_versioning_stats(&exec_out.block_info, &exec_out.slot);

        let exec_out_2 = exec_out.clone();
        #[cfg(feature = "slot-replayer")]
        {
            println!(">>> Execution changes");
            println!("{:#?}", serde_json::to_string_pretty(&exec_out));
            println!("<<<");
        }
        // apply state changes to the final ledger
        self.final_state
            .write()
            .finalize(exec_out.slot, exec_out.state_changes);

        // update the final ledger's slot
        self.final_cursor = exec_out.slot;

        // update active cursor:
        // if it was at the previous latest final block, set it to point to the new one
        if self.active_cursor < self.final_cursor {
            self.active_cursor = self.final_cursor;
        }

        // append generated events to the final event store
        exec_out.events.finalize();

        let ts = get_block_slot_timestamp(
            self.config.thread_count,
            self.config.t0,
            self.config.genesis_timestamp,
            exec_out.slot,
        )
        .expect("Time overflow");

        let cur_version = self
            .final_state
            .read()
            .get_mip_store()
            .get_network_version_active_at(ts);

        if cur_version == 0 {
            // Truncate the events before saving them to the event store
            // Note: this is only needed during the MIP transition period
            // When it becomes active, we will refuse such events so no need to truncate them
            for event in exec_out.events.0.iter_mut() {
                event.data.truncate(self.config.max_event_size_v1);
            }
        }

        self.final_events_cache.save_events(exec_out.events.0);

        // update the prometheus metrics
        self.massa_metrics
            .set_active_cursor(self.active_cursor.period, self.active_cursor.thread);
        self.massa_metrics
            .set_final_cursor(self.final_cursor.period, self.final_cursor.thread);
        self.massa_metrics.inc_operations_final_counter(
            exec_out_2.state_changes.executed_ops_changes.len() as u64,
        );
        self.massa_metrics
            .set_active_history(self.active_history.read().0.len());

        self.massa_metrics
            .inc_sc_messages_final_by(exec_out_2.state_changes.async_pool_changes.0.len());

        self.massa_metrics.set_async_message_pool_size(
            self.final_state
                .read()
                .get_async_pool()
                .message_info_cache
                .len(),
        );

        self.massa_metrics.inc_executed_final_slot();
        if exec_out.block_info.is_some() {
            self.massa_metrics.inc_executed_final_slot_with_block();
        }

        // Broadcast a final slot execution output to active channel subscribers.
        if self.config.broadcast_enabled {
            let slot_exec_out = SlotExecutionOutput::FinalizedSlot(exec_out_2);
            if let Err(err) = self
                .channels
                .slot_execution_output_sender
                .send(slot_exec_out)
            {
                trace!(
                    "error, failed to broadcast final execution output for slot {} due to: {}",
                    exec_out.slot,
                    err
                );
            }
        }

        #[cfg(feature = "execution-trace")]
        {
            if self.config.broadcast_traces_enabled {
                if let Some((slot_trace, _)) = exec_out.slot_trace.clone() {
                    if let Err(err) = self
                        .channels
                        .slot_execution_traces_sender
                        .send((slot_trace, true))
                    {
                        trace!(
                            "error, failed to broadcast abi trace for slot {} due to: {}",
                            exec_out.slot.clone(),
                            err
                        );
                    }
                }
            }
        }

        #[cfg(feature = "dump-block")]
        {
            let mut block_ser = vec![];
            if let Some(block_info) = exec_out.block_info {
                let block_id = block_info.block_id;
                let storage = exec_out.storage.unwrap();
                let guard = storage.read_blocks();
                let secured_block = guard
                    .get(&block_id)
                    .unwrap_or_else(|| panic!("Unable to get block for block id: {}", block_id));

                let operations: Vec<(OperationId, Option<SecureShare<Operation, OperationId>>)> =
                    secured_block
                        .content
                        .operations
                        .iter()
                        .map(|operation_id| {
                            match storage.read_operations().get(operation_id).cloned() {
                                Some(verifiable_operation) => {
                                    (*operation_id, Some(verifiable_operation))
                                }
                                None => (*operation_id, None),
                            }
                        })
                        .collect();

                let filled_block = FilledBlock {
                    header: secured_block.content.header.clone(),
                    operations,
                };

                let grpc_filled_block = grpc_model::FilledBlock::from(filled_block);
                grpc_filled_block.encode(&mut block_ser).unwrap();
            }

            self.block_storage_backend
                .write()
                .write(&exec_out.slot, &block_ser);
        }
    }

    /// Applies an execution output to the active (non-final) state
    /// The newly active final output should be from the slot just after the last executed active slot
    ///
    /// # Arguments
    /// * `exec_out`: execution output to apply
    pub fn apply_active_execution_output(&mut self, exec_out: ExecutionOutput) {
        if self.active_cursor >= exec_out.slot {
            panic!("attempting to apply an active execution output at or before the current active_cursor");
        }
        if exec_out.slot <= self.final_cursor {
            panic!("attempting to apply an active execution output at or before the current final_cursor");
        }

        // update active cursor to reflect the new latest active slot
        self.active_cursor = exec_out.slot;

        // add the execution output at the end of the output history
        self.active_history.write().0.push_back(exec_out);

        // update the prometheus metrics
        self.massa_metrics
            .set_active_history(self.active_history.read().0.len())
    }

    /// Helper function.
    /// Within a locked execution context (lock is taken at the beginning of the function then released at the end):
    /// - if not yet executed then transfer fee and add the operation to the context then return a context snapshot
    ///
    /// # Arguments
    /// * `operation`: operation to be schedule
    /// * `sender_addr`: sender address for the operation (for fee transfer)
    fn prepare_operation_for_execution(
        &self,
        operation: &SecureShareOperation,
        sender_addr: Address,
    ) -> Result<ExecutionContextSnapshot, ExecutionError> {
        let operation_id = operation.id;

        // lock execution context
        let mut context = context_guard!(self);
        let execution_component_version = context.execution_component_version;

        // ignore the operation if it was already executed
        if context.is_op_executed(&operation_id) {
            return Err(ExecutionError::IncludeOperationError(
                "operation was executed previously".to_string(),
            ));
        }

        // Compute the minimal amount of coins the sender is allowed to have after the execution of this op based on `op.max_spending`.
        // Note that the max spending might exceed the sender's balance.
        let creator_initial_balance = context
            .get_balance(&sender_addr)
            .unwrap_or_else(Amount::zero);
        context.creator_min_balance = Some(
            creator_initial_balance
                .saturating_sub(operation.get_max_spending(self.config.roll_price)),
        );

        // set the context origin operation ID
        // Note: set operation ID early as if context.transfer_coins fails, event_create will use
        // operation ID in the event message
        context.origin_operation_id = Some(operation_id);

        // debit the fee from the operation sender
        if let Err(err) =
            context.transfer_coins(Some(sender_addr), None, operation.content.fee, false)
        {
            let mut error = format!("could not spend fees: {}", err);
            let max_event_size = match execution_component_version {
                0 => self.config.max_event_size_v0,
                _ => self.config.max_event_size_v1,
            };
            if error.len() > max_event_size {
                error.truncate(max_event_size);
            }
            let event = context.event_create(error.clone(), true);
            context.event_emit(event);
            return Err(ExecutionError::IncludeOperationError(error));
        }

        // from here, fees have been transferred.
        // Op will be executed just after in the context of a snapshot.

        // save a snapshot of the context to revert any further changes on error
        let context_snapshot = context.get_snapshot();

        // set the creator address
        context.creator_address = Some(operation.content_creator_address);
        context.gas_remaining_before_subexecution = None;
        context.recursion_counter = 0;
        context.user_event_count_in_current_exec = 0;

        Ok(context_snapshot)
    }

    /// Execute an operation in the context of a block.
    /// Assumes the execution context was initialized at the beginning of the slot.
    ///
    /// # Arguments
    /// * `operation`: operation to execute
    /// * `block_slot`: slot of the block in which the op is included
    /// * `remaining_block_gas`: mutable reference towards the remaining gas in the block
    /// * `block_credits`: mutable reference towards the total block reward/fee credits
    pub fn execute_operation(
        &self,
        operation: &SecureShareOperation,
        block_slot: Slot,
        remaining_block_gas: &mut u64,
        block_credits: &mut Amount,
    ) -> Result<ExecutionResult, ExecutionError> {
        // check validity period
        if !(operation
            .get_validity_range(self.config.operation_validity_period)
            .contains(&block_slot.period))
        {
            return Err(ExecutionError::InvalidSlotRange);
        }

        // check remaining block gas
        let op_gas = operation.get_gas_usage(
            self.config.base_operation_gas_cost,
            self.config.gas_costs.sp_compilation_cost,
        );
        let new_remaining_block_gas = remaining_block_gas.checked_sub(op_gas).ok_or_else(|| {
            ExecutionError::NotEnoughGas(
                "not enough remaining block gas to execute operation".to_string(),
            )
        })?;

        // get the operation's sender address
        let sender_addr = operation.content_creator_address;

        // get the thread to which the operation belongs
        let op_thread = sender_addr.get_thread(self.config.thread_count);

        // check block/op thread compatibility
        if op_thread != block_slot.thread {
            return Err(ExecutionError::IncludeOperationError(
                "operation vs block thread mismatch".to_string(),
            ));
        }

        // get operation ID
        let operation_id = operation.id;

        // Add fee from operation.
        let new_block_credits = block_credits.saturating_add(operation.content.fee);

        let context_snapshot = self.prepare_operation_for_execution(operation, sender_addr)?;

        // update block gas
        *remaining_block_gas = new_remaining_block_gas;

        // update block credits
        *block_credits = new_block_credits;

        #[cfg(feature = "execution-trace")]
        let res = vec![];
        #[allow(clippy::let_unit_value)]
        #[cfg(not(feature = "execution-trace"))]
        let res = ();
        // Call the execution process specific to the operation type.
        let mut execution_result = match &operation.content.op {
            OperationType::ExecuteSC { .. } => {
                self.execute_executesc_op(&operation.content.op, sender_addr)
            }
            OperationType::CallSC { .. } => {
                self.execute_callsc_op(&operation.content.op, sender_addr)
            }
            OperationType::RollBuy { .. } => self
                .execute_roll_buy_op(&operation.content.op, sender_addr)
                .map(|_| res),
            OperationType::RollSell { .. } => self
                .execute_roll_sell_op(&operation.content.op, sender_addr)
                .map(|_| res),
            OperationType::Transaction { .. } => self
                .execute_transaction_op(&operation.content.op, sender_addr)
                .map(|_| res),
        };

        {
            // lock execution context
            let mut context = context_guard!(self);

            if execution_result.is_ok() {
                // check that the `max_coins` spending limit was respected by the sender
                if let Some(creator_min_balance) = &context.creator_min_balance {
                    let creator_balance = context
                        .get_balance(&sender_addr)
                        .unwrap_or_else(Amount::zero);
                    if &creator_balance < creator_min_balance {
                        execution_result = Err(ExecutionError::RuntimeError(format!(
                            "at the end of the execution of the operation, the sender {} was expected to have at least {} coins according to the operation's max spending, but has only {}.",
                            sender_addr, creator_min_balance, creator_balance
                        )));
                    }
                }
            }

            // check execution results
            match execution_result {
                Ok(_value) => {
                    context.insert_executed_op(
                        operation_id,
                        true,
                        Slot::new(operation.content.expire_period, op_thread),
                    );
                    #[cfg(feature = "execution-trace")]
                    {
                        Ok((_value, true))
                    }
                    #[cfg(not(feature = "execution-trace"))]
                    {
                        Ok(())
                    }
                }
                Err(err) => {
                    // an error occurred: emit error event and reset context to snapshot
                    let err = ExecutionError::RuntimeError(format!(
                        "runtime error when executing operation {}: {}",
                        operation_id, &err
                    ));
                    debug!("{}", &err);
                    context.reset_to_snapshot(context_snapshot, err);

                    // Insert op AFTER the context has been restored (otherwise it would be overwritten)
                    context.insert_executed_op(
                        operation_id,
                        false,
                        Slot::new(operation.content.expire_period, op_thread),
                    );
                    #[cfg(feature = "execution-trace")]
                    {
                        Ok((vec![], false))
                    }
                    #[cfg(not(feature = "execution-trace"))]
                    {
                        Ok(())
                    }
                }
            }
        }
    }

    /// Execute a denunciation in the context of a block.
    ///
    /// # Arguments
    /// * `denunciation`: denunciation to process
    /// * `block_credits`: mutable reference towards the total block reward/fee credits
    fn execute_denunciation(
        &self,
        denunciation: &Denunciation,
        block_slot: &Slot,
        block_credits: &mut Amount,
    ) -> Result<DenunciationResult, ExecutionError> {
        let addr_denounced = Address::from_public_key(denunciation.get_public_key());

        // acquire write access to the context
        let mut context = context_guard!(self);

        let de_slot = denunciation.get_slot();

        if de_slot.period <= self.config.last_start_period {
            // denunciation created before last restart (can be 0 or >= 0 after a network restart) - ignored
            // Note: as we use '<=', also ignore denunciation created for genesis block
            return Err(ExecutionError::IncludeDenunciationError(format!(
                "Denunciation target ({}) is before the last start period: {}",
                de_slot, self.config.last_start_period
            )));
        }

        // ignore denunciation if not valid
        if !denunciation.is_valid() {
            return Err(ExecutionError::IncludeDenunciationError(
                "denunciation is not valid".to_string(),
            ));
        }

        // ignore denunciation if too old or expired

        if Denunciation::is_expired(
            &de_slot.period,
            &block_slot.period,
            &self.config.denunciation_expire_periods,
        ) {
            // too old - cannot be denounced anymore
            return Err(ExecutionError::IncludeDenunciationError(format!(
                "Denunciation target ({}) is too old with respect to the block ({})",
                de_slot, block_slot
            )));
        }

        if de_slot > block_slot {
            // too much in the future - ignored
            // Note: de_slot == block_slot is OK,
            //       for example if the block producer wants to denounce someone who multi-endorsed
            //       for the block's slot
            return Err(ExecutionError::IncludeDenunciationError(format!(
                "Denunciation target ({}) is at a later slot than the block slot ({})",
                de_slot, block_slot
            )));
        }

        // ignore the denunciation if it was already executed
        let de_idx = DenunciationIndex::from(denunciation);
        if context.is_denunciation_executed(&de_idx) {
            return Err(ExecutionError::IncludeDenunciationError(
                "Denunciation was already executed".to_string(),
            ));
        }

        // Check selector
        // Note 1: Has to be done after slot limit and executed check
        // Note 2: that this is done for a node to create a Block with 'fake' denunciation thus
        //       include them in executed denunciation and prevent (by occupying the corresponding entry)
        //       any further 'real' denunciation.

        match &denunciation {
            Denunciation::Endorsement(_de) => {
                // Get selected address from selector and check
                let selection = self
                    .selector
                    .get_selection(*de_slot)
                    .expect("Could not get producer from selector");
                let selected_addr = selection
                    .endorsements
                    .get(*denunciation.get_index().unwrap_or(&0) as usize)
                    .expect("could not get selection for endorsement at index");

                if *selected_addr != addr_denounced {
                    return Err(ExecutionError::IncludeDenunciationError(
                        "Attempt to execute a denunciation but address was not selected"
                            .to_string(),
                    ));
                }
            }
            Denunciation::BlockHeader(_de) => {
                let selected_addr = self
                    .selector
                    .get_producer(*de_slot)
                    .expect("Cannot get producer from selector");

                if selected_addr != addr_denounced {
                    return Err(ExecutionError::IncludeDenunciationError(
                        "Attempt to execute a denunciation but address was not selected"
                            .to_string(),
                    ));
                }
            }
        }

        context.insert_executed_denunciation(&de_idx);

        let slashed = context.try_slash_rolls(
            &addr_denounced,
            self.config.roll_count_to_slash_on_denunciation,
        );

        match slashed.as_ref() {
            Ok(slashed_amount) => {
                // Add slashed amount / 2 to block reward
                let amount = slashed_amount.checked_div_u64(2).ok_or_else(|| {
                    ExecutionError::RuntimeError(format!(
                        "Unable to divide slashed amount: {} by 2",
                        slashed_amount
                    ))
                })?;
                *block_credits = block_credits.saturating_add(amount);
            }
            Err(e) => {
                warn!("Unable to slash rolls or deferred credits: {}", e);
            }
        }

        if self
            .wallet
            .read()
            .get_wallet_address_list()
            .contains(&addr_denounced)
        {
            match &denunciation.is_for_block_header() {
                true => panic!("You are being slashed at slot {} for double-staking using address {}. The node is stopping to prevent any further loss. Block header denunciation of block at slot {:?}. Denunciation's public key: {:?}", block_slot, addr_denounced, denunciation.get_slot(), denunciation.get_public_key()),
                false => panic!("You are being slashed at slot {} for double-staking using address {}. The node is stopping to prevent any further loss. Endorsement denunciation of endorsement at slot {:?} and index {:?}. Denunciation's public key: {:?}", block_slot, addr_denounced, denunciation.get_slot(), denunciation.get_index(), denunciation.get_public_key())
            }
        }

        Ok(DenunciationResult {
            address_denounced: addr_denounced,
            slot: *de_slot,
            slashed: slashed.unwrap_or_default(),
        })
    }

    /// Execute an operation of type `RollSell`
    /// Will panic if called with another operation type
    ///
    /// # Arguments
    /// * `operation`: the `WrappedOperation` to process, must be an `RollSell`
    /// * `sender_addr`: address of the sender
    pub fn execute_roll_sell_op(
        &self,
        operation: &OperationType,
        seller_addr: Address,
    ) -> Result<(), ExecutionError> {
        // process roll sell operations only
        let roll_count = match operation {
            OperationType::RollSell { roll_count } => roll_count,
            _ => panic!("unexpected operation type"),
        };

        // acquire write access to the context
        let mut context = context_guard!(self);

        // Set call stack
        // This needs to be defined before anything can fail, so that the emitted event contains the right stack
        context.stack = vec![ExecutionStackElement {
            address: seller_addr,
            coins: Amount::default(),
            owned_addresses: vec![seller_addr],
            operation_datastore: None,
        }];

        // try to sell the rolls
        if let Err(err) = context.try_sell_rolls(&seller_addr, *roll_count) {
            return Err(ExecutionError::RollSellError(format!(
                "{} failed to sell {} rolls: {}",
                seller_addr, roll_count, err
            )));
        }
        Ok(())
    }

    /// Execute an operation of type `RollBuy`
    /// Will panic if called with another operation type
    ///
    /// # Arguments
    /// * `operation`: the `WrappedOperation` to process, must be an `RollBuy`
    /// * `buyer_addr`: address of the buyer
    pub fn execute_roll_buy_op(
        &self,
        operation: &OperationType,
        buyer_addr: Address,
    ) -> Result<(), ExecutionError> {
        // process roll buy operations only
        let roll_count = match operation {
            OperationType::RollBuy { roll_count } => roll_count,
            _ => panic!("unexpected operation type"),
        };

        // acquire write access to the context
        let mut context = context_guard!(self);

        // Set call stack
        // This needs to be defined before anything can fail, so that the emitted event contains the right stack
        context.stack = vec![ExecutionStackElement {
            address: buyer_addr,
            coins: Default::default(),
            owned_addresses: vec![buyer_addr],
            operation_datastore: None,
        }];

        // compute the amount of coins to spend
        let spend_coins = match self.config.roll_price.checked_mul_u64(*roll_count) {
            Some(v) => v,
            None => {
                return Err(ExecutionError::RollBuyError(format!(
                    "{} failed to buy {} rolls: overflow on the required coin amount",
                    buyer_addr, roll_count
                )));
            }
        };

        // spend `roll_price` * `roll_count` coins from the buyer
        if let Err(err) = context.transfer_coins(Some(buyer_addr), None, spend_coins, false) {
            return Err(ExecutionError::RollBuyError(format!(
                "{} failed to buy {} rolls: {}",
                buyer_addr, roll_count, err
            )));
        }

        // add rolls to the buyer within the context
        context.add_rolls(&buyer_addr, *roll_count);

        Ok(())
    }

    /// Execute an operation of type `Transaction`
    /// Will panic if called with another operation type
    ///
    /// # Arguments
    /// * `operation`: the `WrappedOperation` to process, must be a `Transaction`
    /// * `operation_id`: ID of the operation
    /// * `sender_addr`: address of the sender
    pub fn execute_transaction_op(
        &self,
        operation: &OperationType,
        sender_addr: Address,
    ) -> Result<(), ExecutionError> {
        // process transaction operations only
        let (recipient_address, amount) = match operation {
            OperationType::Transaction {
                recipient_address,
                amount,
            } => (recipient_address, amount),
            _ => panic!("unexpected operation type"),
        };

        // acquire write access to the context
        let mut context = context_guard!(self);

        // Set call stack
        // This needs to be defined before anything can fail, so that the emitted event contains the right stack
        context.stack = vec![ExecutionStackElement {
            address: sender_addr,
            coins: *amount,
            owned_addresses: vec![sender_addr],
            operation_datastore: None,
        }];

        // transfer coins from sender to destination
        if let Err(err) =
            context.transfer_coins(Some(sender_addr), Some(*recipient_address), *amount, true)
        {
            return Err(ExecutionError::TransactionError(format!(
                "transfer of {} coins from {} to {} failed: {}",
                amount, sender_addr, recipient_address, err
            )));
        }

        Ok(())
    }

    /// Execute an operation of type `ExecuteSC`
    /// Will panic if called with another operation type
    ///
    /// # Arguments
    /// * `operation`: the `WrappedOperation` to process, must be an `ExecuteSC`
    /// * `sender_addr`: address of the sender
    pub fn execute_executesc_op(
        &self,
        operation: &OperationType,
        sender_addr: Address,
    ) -> Result<ExecutionResultInner, ExecutionError> {
        // process ExecuteSC operations only
        let (bytecode, max_gas, datastore) = match &operation {
            OperationType::ExecuteSC {
                data,
                max_gas,
                datastore,
                ..
            } => (data, max_gas, datastore),
            _ => panic!("unexpected operation type"),
        };

        let condom_limits;
        {
            // acquire write access to the context
            let mut context = context_guard!(self);

            condom_limits = context.get_condom_limits();
            // Set the call stack to a single element:
            // * the execution will happen in the context of the address of the operation's sender
            // * the context will give the operation's sender write access to its own ledger entry
            // This needs to be defined before anything can fail, so that the emitted event
            // contains the right stack
            context.stack = vec![ExecutionStackElement {
                address: sender_addr,
                coins: Amount::zero(),
                owned_addresses: vec![sender_addr],
                operation_datastore: Some(datastore.clone()),
            }];
        };

        // load the tmp module
        let module =
            self.module_cache
                .read()
                .load_tmp_module(bytecode, *max_gas, condom_limits.clone())?;
        // run the VM
        let _res = massa_sc_runtime::run_main(
            &*self.execution_interface,
            module,
            *max_gas,
            self.config.gas_costs.clone(),
            condom_limits,
        )
        .map_err(|error| ExecutionError::VMError {
            context: "ExecuteSC".to_string(),
            error,
        })?;

        #[cfg(feature = "execution-trace")]
        {
            Ok(_res.trace.into_iter().map(|t| t.into()).collect())
        }
        #[cfg(not(feature = "execution-trace"))]
        {
            Ok(())
        }
    }

    /// Execute an operation of type `CallSC`
    /// Will panic if called with another operation type
    ///
    /// # Arguments
    /// * `operation`: the `WrappedOperation` to process, must be an `CallSC`
    /// * `block_creator_addr`: address of the block creator
    /// * `operation_id`: ID of the operation
    /// * `sender_addr`: address of the sender
    pub fn execute_callsc_op(
        &self,
        operation: &OperationType,
        sender_addr: Address,
    ) -> Result<ExecutionResultInner, ExecutionError> {
        // process CallSC operations only
        let (max_gas, target_addr, target_func, param, coins) = match &operation {
            OperationType::CallSC {
                max_gas,
                target_addr,
                target_func,
                param,
                coins,
                ..
            } => (*max_gas, *target_addr, target_func, param, *coins),
            _ => panic!("unexpected operation type"),
        };

        // prepare the current slot context for executing the operation
        let bytecode;
        let condom_limits;
        {
            // acquire write access to the context
            let mut context = context_guard!(self);

            condom_limits = context.get_condom_limits();

            // Set the call stack
            // This needs to be defined before anything can fail, so that the emitted event contains the right stack
            context.stack = vec![
                ExecutionStackElement {
                    address: sender_addr,
                    coins: Default::default(),
                    owned_addresses: vec![sender_addr],
                    operation_datastore: None,
                },
                ExecutionStackElement {
                    address: target_addr,
                    coins,
                    owned_addresses: vec![target_addr],
                    operation_datastore: None,
                },
            ];

            // Ensure that the target address is an SC address
            // Ensure that the target address exists
            context.check_target_sc_address(target_addr)?;

            // Transfer coins from the sender to the target
            if let Err(err) =
                context.transfer_coins(Some(sender_addr), Some(target_addr), coins, false)
            {
                return Err(ExecutionError::RuntimeError(format!(
                    "failed to transfer {} operation coins from {} to {}: {}",
                    coins, sender_addr, target_addr, err
                )));
            }

            // quit if there is no function to be called
            if target_func.is_empty() {
                return Err(ExecutionError::RuntimeError(
                    "no function to call in the CallSC operation".to_string(),
                ));
            }

            // Load bytecode. Assume empty bytecode if not found.
            bytecode = context.get_bytecode(&target_addr).unwrap_or_default().0;
        }

        // load and execute the compiled module
        // IMPORTANT: do not keep a lock here as `run_function` uses the `get_module` interface

        let module =
            self.module_cache
                .write()
                .load_module(&bytecode, max_gas, condom_limits.clone())?;
        let response = massa_sc_runtime::run_function(
            &*self.execution_interface,
            module,
            target_func,
            param,
            max_gas,
            self.config.gas_costs.clone(),
            condom_limits,
        );
        match response {
            Ok(Response { init_gas_cost, .. })
            | Err(VMError::ExecutionError { init_gas_cost, .. }) => {
                self.module_cache
                    .write()
                    .set_init_cost(&bytecode, init_gas_cost);
            }
            _ => (),
        }
        let _response = response.map_err(|error| ExecutionError::VMError {
            context: "CallSC".to_string(),
            error,
        })?;
        #[cfg(feature = "execution-trace")]
        {
            Ok(_response.trace.into_iter().map(|t| t.into()).collect())
        }
        #[cfg(not(feature = "execution-trace"))]
        {
            Ok(())
        }
    }

    /// Tries to execute an asynchronous message
    /// If the execution failed reimburse the message sender.
    ///
    /// # Arguments
    /// * message: message information
    /// * bytecode: executable target bytecode, or None if unavailable
    pub fn execute_async_message(
        &self,
        message: AsyncMessage,
        bytecode: Option<Bytecode>,
        execution_version: u32,
    ) -> Result<AsyncMessageExecutionResult, ExecutionError> {
        let mut result = AsyncMessageExecutionResult::new();
        #[cfg(feature = "execution-info")]
        {
            // TODO: From impl + no ::new -> no cfg feature
            result.sender = Some(message.sender);
            result.destination = Some(message.destination);
        }

        // prepare execution context
        let context_snapshot;
        let bytecode = {
            let mut context = context_guard!(self);
            context_snapshot = context.get_snapshot();
            context.creator_address = None;
            context.creator_min_balance = None;
            context.stack = vec![
                ExecutionStackElement {
                    address: message.sender,
                    coins: match execution_version {
                        0 => message.coins,
                        _ => Default::default(),
                    },
                    owned_addresses: vec![message.sender],
                    operation_datastore: None,
                },
                ExecutionStackElement {
                    address: message.destination,
                    coins: message.coins,
                    owned_addresses: vec![message.destination],
                    operation_datastore: None,
                },
            ];
            context.origin_operation_id = None;
            context.gas_remaining_before_subexecution = None;
            context.recursion_counter = 0;
            context.user_event_count_in_current_exec = 0;

            // check the target address
            if let Err(err) = context.check_target_sc_address(message.destination) {
                context.reset_to_snapshot(context_snapshot, err.clone());
                context.cancel_async_message(&message);
                return Err(err);
            }

            // if there is no bytecode: fail
            let bytecode = match bytecode {
                Some(bytecode) => bytecode,
                None => {
                    let err = ExecutionError::RuntimeError("no target bytecode found".into());
                    context.reset_to_snapshot(context_snapshot, err.clone());
                    context.cancel_async_message(&message);
                    return Err(err);
                }
            };

            // credit coins to the target address
            if let Err(err) =
                context.transfer_coins(None, Some(message.destination), message.coins, false)
            {
                // coin crediting failed: reset context to snapshot and reimburse sender
                let err = ExecutionError::RuntimeError(format!(
                    "could not credit coins to target of async execution: {}",
                    err
                ));

                context.reset_to_snapshot(context_snapshot, err.clone());
                context.cancel_async_message(&message);
                return Err(err);
            } else {
                result.coins = Some(message.coins);
            }

            bytecode.0
        };

        // load and execute the compiled module
        // IMPORTANT: do not keep a lock here as `run_function` uses the `get_module` interface
        let module = match context_guard!(self).execution_component_version {
            0 => self.module_cache.write().load_module(
                &bytecode,
                message.max_gas,
                CondomLimits::default(),
            )?,
            _ => {
                match self.module_cache.write().load_module(
                    &bytecode,
                    message.max_gas,
                    self.config.condom_limits.clone(),
                ) {
                    Ok(module) => module,
                    Err(err) => {
                        let err = ExecutionError::RuntimeError(format!(
                            "could not load module for async execution: {}",
                            err
                        ));
                        let mut context = context_guard!(self);
                        context.reset_to_snapshot(context_snapshot, err.clone());
                        context.cancel_async_message(&message);
                        return Err(err);
                    }
                }
            }
        };

        let response = massa_sc_runtime::run_function(
            &*self.execution_interface,
            module,
            &message.function,
            &message.function_params,
            message.max_gas,
            self.config.gas_costs.clone(),
            self.config.condom_limits.clone(),
        );
        match response {
            Ok(res) => {
                self.module_cache
                    .write()
                    .set_init_cost(&bytecode, res.init_gas_cost);
                #[cfg(feature = "execution-trace")]
                {
                    result.traces = Some((res.trace.into_iter().map(|t| t.into()).collect(), true));
                }
                #[cfg(feature = "execution-info")]
                {
                    result.success = true;
                }
                Ok(result)
            }
            Err(error) => {
                if let VMError::ExecutionError { init_gas_cost, .. } = error {
                    self.module_cache
                        .write()
                        .set_init_cost(&bytecode, init_gas_cost);
                }
                // execution failed: reset context to snapshot and reimburse sender
                let err = ExecutionError::VMError {
                    context: "Asynchronous Message".to_string(),
                    error,
                };
                let mut context = context_guard!(self);
                context.reset_to_snapshot(context_snapshot, err.clone());
                context.cancel_async_message(&message);
                Err(err)
            }
        }
    }

    fn execute_deferred_call(
        &self,
        id: &DeferredCallId,
        call: DeferredCall,
    ) -> Result<DeferredCallExecutionResult, ExecutionError> {
        let mut result = DeferredCallExecutionResult::new(&call);

        let snapshot = {
            let mut context = context_guard!(self);

            // refund the sender for the storage costs
            let amount = DeferredCall::get_storage_cost(
                self.config.storage_costs_constants.ledger_cost_per_byte,
                call.parameters.len() as u64,
                self.config.max_function_length,
            );
            if let Err(e) = context.transfer_coins(None, Some(call.sender_address), amount, false) {
                warn!(
                    "could not refund storage costs to sender: {} - amount: {} - e:{}",
                    call.sender_address,
                    amount,
                    e.to_string()
                );
            }

            context.get_snapshot()
        };

        if call.cancelled {
            Ok(result)
        } else {
            let deferred_call_execution = || {
                let bytecode = {
                    // acquire write access to the context
                    let mut context = context_guard!(self);

                    // Set the call stack
                    // This needs to be defined before anything can fail, so that the emitted event contains the right stack
                    context.stack = vec![
                        ExecutionStackElement {
                            address: call.sender_address,
                            coins: Default::default(),
                            owned_addresses: vec![call.sender_address],
                            operation_datastore: None,
                        },
                        ExecutionStackElement {
                            address: call.target_address,
                            coins: call.coins,
                            owned_addresses: vec![call.target_address],
                            operation_datastore: None,
                        },
                    ];
                    context.origin_operation_id = None;
                    context.gas_remaining_before_subexecution = None;
                    context.recursion_counter = 0;
                    context.user_event_count_in_current_exec = 0;

                    // Ensure that the target address is an SC address
                    // Ensure that the target address exists
                    context.check_target_sc_address(call.target_address)?;

                    // credit coins to the target address
                    if let Err(err) =
                        context.transfer_coins(None, Some(call.target_address), call.coins, false)
                    {
                        // coin crediting failed: reset context to snapshot and reimburse sender
                        return Err(ExecutionError::DeferredCallsError(format!(
                            "could not credit coins to target of deferred call execution: {}",
                            err
                        )));
                    }

                    // quit if there is no function to be called
                    if call.target_function.is_empty() {
                        return Err(ExecutionError::DeferredCallsError(
                            "no function to call in the deferred call".to_string(),
                        ));
                    }

                    // Load bytecode. Assume empty bytecode if not found.
                    context
                        .get_bytecode(&call.target_address)
                        .ok_or(ExecutionError::DeferredCallsError(
                            "no bytecode found".to_string(),
                        ))?
                        .0
                };

                let module = self.module_cache.write().load_module(
                    &bytecode,
                    call.get_effective_gas(self.config.deferred_calls_config.call_cst_gas_cost),
                    self.config.condom_limits.clone(),
                )?;
                let response = massa_sc_runtime::run_function(
                    &*self.execution_interface,
                    module,
                    &call.target_function,
                    &call.parameters,
                    call.get_effective_gas(self.config.deferred_calls_config.call_cst_gas_cost),
                    self.config.gas_costs.clone(),
                    self.config.condom_limits.clone(),
                );

                match response {
                    Ok(res) => {
                        self.module_cache
                            .write()
                            .set_init_cost(&bytecode, res.init_gas_cost);
                        #[cfg(feature = "execution-trace")]
                        {
                            result.traces =
                                Some((res.trace.into_iter().map(|t| t.into()).collect(), true));
                        }
                        // #[cfg(feature = "execution-info")]
                        // {
                        // result.success = true;
                        // }
                        result.success = true;
                        Ok(result)
                    }
                    Err(error) => {
                        if let VMError::ExecutionError { init_gas_cost, .. } = error {
                            self.module_cache
                                .write()
                                .set_init_cost(&bytecode, init_gas_cost);
                        }
                        // execution failed: reset context to snapshot and reimburse sender
                        Err(ExecutionError::VMError {
                            context: "Deferred Call".to_string(),
                            error,
                        })
                    }
                }
            };

            // execute the deferred call
            let execution_result = deferred_call_execution();

            // if the execution failed, reset the context to the snapshot
            if let Err(err) = &execution_result {
                let mut context = context_guard!(self);
                context.reset_to_snapshot(snapshot, err.clone());
                context.deferred_call_fail_exec(id, &call);
            }
            execution_result
        }
    }
    /// Executes a full slot (with or without a block inside) without causing any changes to the state,
    /// just yielding the execution output.
    ///
    /// # Arguments
    /// * `slot`: slot to execute
    /// * `exec_target`: metadata of the block to execute, if not miss
    /// * `selector`: Reference to the selector
    ///
    /// # Returns
    /// An `ExecutionOutput` structure summarizing the output of the executed slot
    pub fn execute_slot(
        &mut self,
        slot: &Slot,
        exec_target: Option<&(BlockId, ExecutionBlockMetadata)>,
        selector: Box<dyn SelectorController>,
    ) -> ExecutionOutput {
        #[cfg(feature = "execution-trace")]
        let mut slot_trace = SlotAbiCallStack {
            slot: *slot,
            operation_call_stacks: PreHashMap::default(),
            asc_call_stacks: vec![],
            deferred_call_stacks: vec![],
        };
        #[cfg(feature = "execution-trace")]
        let mut transfers = vec![];

        #[cfg(feature = "execution-info")]
        let mut exec_info = ExecutionInfoForSlot::new();

        // Create a new execution context for the whole active slot
        let mut execution_context = ExecutionContext::active_slot(
            self.config.clone(),
            *slot,
            exec_target.as_ref().map(|(b_id, _)| *b_id),
            self.final_state.clone(),
            self.active_history.clone(),
            self.module_cache.clone(),
            self.mip_store.clone(),
        );

        let execution_version = execution_context.execution_component_version;
        if self.cur_execution_version != execution_version {
            // Reset the cache because a new execution version has become active
            info!("A new execution version has become active! Resetting the module-cache.");
            self.module_cache.write().reset();
            self.cur_execution_version = execution_version;
        }

        let mut deferred_calls_slot_gas = 0;
        // (success, fail, cancel)
        let mut deferred_calls_stats = (0, 0, 0);

        // deferred calls execution

        match execution_version {
            0 => {
                // Get asynchronous messages to execute
                let messages = execution_context.take_async_batch_v0(
                    self.config.max_async_gas,
                    self.config.async_msg_cst_gas_cost,
                );

                // Apply the created execution context for slot execution
                *context_guard!(self) = execution_context;

                // Try executing asynchronous messages.
                // Effects are cancelled on failure and the sender is reimbursed.
                for (opt_bytecode, message) in messages {
                    match self.execute_async_message(message, opt_bytecode, execution_version) {
                        Ok(_message_return) => {
                            cfg_if::cfg_if! {
                                if #[cfg(feature = "execution-trace")] {
                                    // Safe to unwrap
                                    slot_trace.asc_call_stacks.push(_message_return.traces.unwrap().0);
                                } else if #[cfg(feature = "execution-info")] {
                                    slot_trace.asc_call_stacks.push(_message_return.traces.clone().unwrap().0);
                                    exec_info.async_messages.push(Ok(_message_return));
                                }
                            }
                        }
                        Err(err) => {
                            let msg = format!("failed executing async message: {}", err);
                            #[cfg(feature = "execution-info")]
                            exec_info.async_messages.push(Err(msg.clone()));
                            debug!(msg);
                        }
                    }
                }
            }
            _ => {
                // Deferred calls
                let calls = execution_context.deferred_calls_advance_slot(*slot);

                deferred_calls_slot_gas = calls.effective_slot_gas;

                // Apply the created execution context for slot execution
                *context_guard!(self) = execution_context;

                for (id, call) in calls.slot_calls {
                    let cancelled = call.cancelled;
                    match self.execute_deferred_call(&id, call) {
                        Ok(_exec) => {
                            if cancelled {
                                deferred_calls_stats.2 += 1;
                                continue;
                            }
                            deferred_calls_stats.0 += 1;
                            info!("executed deferred call: {:?}", id);
                            cfg_if::cfg_if! {
                                if #[cfg(feature = "execution-trace")] {
                                    // Safe to unwrap
                                    slot_trace.deferred_call_stacks.push(_exec.traces.unwrap().0);
                                } else if #[cfg(feature = "execution-info")] {
                                    slot_trace.deferred_call_stacks.push(_exec.traces.clone().unwrap().0);
                                    exec_info.deferred_calls_messages.push(Ok(_exec));
                                }
                            }
                        }
                        Err(err) => {
                            deferred_calls_stats.1 += 1;
                            let msg = format!("failed executing deferred call: {}", err);
                            #[cfg(feature = "execution-info")]
                            exec_info.deferred_calls_messages.push(Err(msg.clone()));
                            dbg!(msg);
                        }
                    }
                }
            }
        }

        // Block execution

        let mut block_info: Option<ExecutedBlockInfo> = None;
        // Set block gas (max_gas_per_block - gas used by deferred calls)
        let mut remaining_block_gas = self.config.max_gas_per_block;

        // Check if there is a block at this slot
        if let Some((block_id, block_metadata)) = exec_target {
            let block_store = block_metadata
                .storage
                .as_ref()
                .expect("Cannot execute a block for which the storage is missing");

            // Retrieve the block from storage
            let stored_block = block_store
                .read_blocks()
                .get(block_id)
                .expect("Missing block in storage.")
                .clone();

            block_info = Some(ExecutedBlockInfo {
                block_id: *block_id,
                current_version: stored_block.content.header.content.current_version,
                announced_version: stored_block.content.header.content.announced_version,
            });

            // gather all operations
            let operations = {
                let ops = block_store.read_operations();
                stored_block
                    .content
                    .operations
                    .into_iter()
                    .map(|op_id| {
                        ops.get(&op_id)
                            .expect("block operation absent from storage")
                            .clone()
                    })
                    .collect::<Vec<_>>()
            };

            debug!("executing {} operations at slot {}", operations.len(), slot);

            // gather all available endorsement creators and target blocks
            let endorsement_creators: Vec<Address> = stored_block
                .content
                .header
                .content
                .endorsements
                .iter()
                .map(|endo| endo.content_creator_address)
                .collect();
            let endorsement_target_creator = block_metadata
                .same_thread_parent_creator
                .expect("same thread parent creator missing");

            // Block credits count every operation fee, denunciation slash and endorsement reward.
            // We initialize the block credits with the block reward to stimulate block production
            // even in the absence of operations and denunciations.
            let mut block_credits = self.config.block_reward;

            // Try executing the operations of this block in the order in which they appear in the block.
            // Errors are logged but do not interrupt the execution of the slot.
            for operation in operations.into_iter() {
                match self.execute_operation(
                    &operation,
                    stored_block.content.header.content.slot,
                    &mut remaining_block_gas,
                    &mut block_credits,
                ) {
                    Ok(_op_return) => {
                        #[cfg(feature = "execution-trace")]
                        {
                            slot_trace
                                .operation_call_stacks
                                .insert(operation.id, _op_return.0);
                            match &operation.content.op {
                                OperationType::Transaction {
                                    recipient_address,
                                    amount,
                                } => {
                                    let receiver_balance = {
                                        let context = context_guard!(self);
                                        context.get_balance(recipient_address).unwrap_or_default()
                                    };
                                    let mut effective_received_amount = *amount;
                                    if receiver_balance
                                        == amount
                                            .checked_sub(
                                                self.config
                                                    .storage_costs_constants
                                                    .ledger_entry_base_cost,
                                            )
                                            .unwrap_or_default()
                                    {
                                        effective_received_amount = amount
                                            .checked_sub(
                                                self.config
                                                    .storage_costs_constants
                                                    .ledger_entry_base_cost,
                                            )
                                            .unwrap_or_default();
                                    }
                                    transfers.push(Transfer {
                                        from: operation.content_creator_address,
                                        to: *recipient_address,
                                        amount: *amount,
                                        effective_received_amount,
                                        op_id: operation.id,
                                        succeed: _op_return.1,
                                        fee: operation.content.fee,
                                    });
                                }
                                OperationType::CallSC {
                                    target_addr, coins, ..
                                } => {
                                    transfers.push(Transfer {
                                        from: operation.content_creator_address,
                                        to: *target_addr,
                                        amount: *coins,
                                        effective_received_amount: *coins,
                                        op_id: operation.id,
                                        succeed: _op_return.1,
                                        fee: operation.content.fee,
                                    });
                                }
                                _ => {}
                            }
                        }

                        #[cfg(feature = "execution-info")]
                        {
                            match &operation.content.op {
                                OperationType::RollBuy { roll_count } => exec_info
                                    .operations
                                    .push(OperationInfo::RollBuy(*roll_count)),
                                OperationType::RollSell { roll_count } => exec_info
                                    .operations
                                    .push(OperationInfo::RollSell(*roll_count)),
                                _ => {}
                            }
                        }
                    }
                    Err(err) => {
                        debug!(
                            "failed executing operation {} in block {}: {}",
                            operation.id, block_id, err
                        );
                    }
                }
            }

            // Try executing the denunciations of this block
            for denunciation in &stored_block.content.header.content.denunciations {
                match self.execute_denunciation(
                    denunciation,
                    &stored_block.content.header.content.slot,
                    &mut block_credits,
                ) {
                    Ok(_de_res) => {
                        #[cfg(feature = "execution-info")]
                        exec_info.denunciations.push(Ok(_de_res));
                    }
                    Err(e) => {
                        let msg = format!(
                            "Failed processing denunciation: {:?}, in block: {}: {}",
                            denunciation, block_id, e
                        );
                        #[cfg(feature = "execution-info")]
                        exec_info.denunciations.push(Err(msg.clone()));
                        debug!(msg);
                    }
                }
            }

            // Get block creator address
            let block_creator_addr = stored_block.content_creator_address;

            // acquire lock on execution context
            let mut context = context_guard!(self);

            // Update speculative rolls state production stats
            context.update_production_stats(&block_creator_addr, *slot, Some(*block_id));

            match execution_version {
                0 => {
                    // Credit endorsement producers and endorsed block producers
                    let mut remaining_credit = block_credits;
                    let block_credit_part = block_credits
                        .checked_div_u64(3 * (1 + (self.config.endorsement_count)))
                        .expect("critical: block_credits checked_div factor is 0");

                    for endorsement_creator in endorsement_creators {
                        // credit creator of the endorsement with coins
                        match context.transfer_coins(
                            None,
                            Some(endorsement_creator),
                            block_credit_part,
                            false,
                        ) {
                            Ok(_) => {
                                remaining_credit =
                                    remaining_credit.saturating_sub(block_credit_part);

                                #[cfg(feature = "execution-info")]
                                exec_info
                                    .endorsement_creator_rewards
                                    .insert(endorsement_creator, block_credit_part);
                            }
                            Err(err) => {
                                debug!(
                                    "failed to credit {} coins to endorsement creator {} for an endorsed block execution: {}",
                                    block_credit_part, endorsement_creator, err
                                )
                            }
                        }

                        // credit creator of the endorsed block with coins
                        match context.transfer_coins(
                            None,
                            Some(endorsement_target_creator),
                            block_credit_part,
                            false,
                        ) {
                            Ok(_) => {
                                remaining_credit =
                                    remaining_credit.saturating_sub(block_credit_part);
                                #[cfg(feature = "execution-info")]
                                {
                                    exec_info.endorsement_target_reward =
                                        Some((endorsement_target_creator, block_credit_part));
                                }
                            }
                            Err(err) => {
                                debug!(
                                    "failed to credit {} coins to endorsement target creator {} on block execution: {}",
                                    block_credit_part, endorsement_target_creator, err
                                )
                            }
                        }
                    }

                    // Credit block creator with remaining_credit
                    if let Err(err) = context.transfer_coins(
                        None,
                        Some(block_creator_addr),
                        remaining_credit,
                        false,
                    ) {
                        debug!(
                            "failed to credit {} coins to block creator {} on block execution: {}",
                            remaining_credit, block_creator_addr, err
                        )
                    } else {
                        #[cfg(feature = "execution-info")]
                        {
                            exec_info.block_producer_reward =
                                Some((block_creator_addr, remaining_credit));
                        }
                    }
                }
                _ => {
                    // Divide the total block credits into parts + remainder
                    let block_credit_part_count = 3 * (1 + self.config.endorsement_count);
                    let block_credit_part = block_credits
                        .checked_div_u64(block_credit_part_count)
                        .expect("critical: block_credits checked_div factor is 0");
                    let remainder = block_credits
                        .checked_rem_u64(block_credit_part_count)
                        .expect("critical: block_credits checked_rem factor is 0");

                    // Give 3 parts + remainder to the block producer to stimulate block production
                    // even in the absence of endorsements.
                    let mut block_producer_credit = block_credit_part
                        .saturating_mul_u64(3)
                        .saturating_add(remainder);

                    for endorsement_creator in endorsement_creators {
                        // Credit the creator of the block with 1 part to stimulate endorsement inclusion of endorsements,
                        // and dissuade from emitting the block too early (before the endorsements have propageted).
                        block_producer_credit =
                            block_producer_credit.saturating_add(block_credit_part);

                        // Credit creator of the endorsement with 1 part to stimulate the production of endorsements.
                        // This also motivates endorsers to not publish their endorsements too early (will not endorse the right block),
                        // and to not publish too late (will not be included in the block).
                        match context.transfer_coins(
                            None,
                            Some(endorsement_creator),
                            block_credit_part,
                            false,
                        ) {
                            Ok(_) => {
                                #[cfg(feature = "execution-info")]
                                exec_info
                                    .endorsement_creator_rewards
                                    .insert(endorsement_creator, block_credit_part);
                            }
                            Err(err) => {
                                debug!(
                                    "failed to credit {} coins to endorsement creator {} for an endorsed block execution: {}",
                                    block_credit_part, endorsement_creator, err
                                )
                            }
                        }

                        // Credit the creator of the endorsed block with 1 part.
                        // This is done to incentivize block producers to be endorsed,
                        // typically by not publishing their blocks too late.
                        match context.transfer_coins(
                            None,
                            Some(endorsement_target_creator),
                            block_credit_part,
                            false,
                        ) {
                            Ok(_) => {
                                #[cfg(feature = "execution-info")]
                                {
                                    exec_info.endorsement_target_reward =
                                        Some((endorsement_target_creator, block_credit_part));
                                }
                            }
                            Err(err) => {
                                debug!(
                                    "failed to credit {} coins to endorsement target creator {} on block execution: {}",
                                    block_credit_part, endorsement_target_creator, err
                                )
                            }
                        }
                    }

                    // Credit block producer
                    if let Err(err) = context.transfer_coins(
                        None,
                        Some(block_creator_addr),
                        block_producer_credit,
                        false,
                    ) {
                        debug!(
                            "failed to credit {} coins to block creator {} on block execution: {}",
                            block_producer_credit, block_creator_addr, err
                        )
                    } else {
                        #[cfg(feature = "execution-info")]
                        {
                            exec_info.block_producer_reward =
                                Some((block_creator_addr, block_producer_credit));
                        }
                    }
                }
            }
        } else {
            // the slot is a miss, check who was supposed to be the creator and update production stats
            let producer_addr = selector
                .get_producer(*slot)
                .expect("couldn't get the expected block producer for a missed slot");
            context_guard!(self).update_production_stats(&producer_addr, *slot, None);
        }

        // Async msg execution

        if execution_version > 0 {
            // Get asynchronous messages to execute
            // The gas available for async messages is the remaining block gas + async remaining gas (max_async - gas used by deferred calls)
            let async_msg_gas_available = self
                .config
                .max_async_gas
                .saturating_sub(deferred_calls_slot_gas)
                .saturating_add(remaining_block_gas);

            // Get asynchronous messages to execute
            let messages = context_guard!(self)
                .take_async_batch_v1(async_msg_gas_available, self.config.async_msg_cst_gas_cost);

            // clear operation id (otherwise events will be generated using this operation id)
            self.execution_context.lock().origin_operation_id = None;

            // Try executing asynchronous messages.
            // Effects are cancelled on failure and the sender is reimbursed.
            for (_message_id, message) in messages {
                let opt_bytecode = context_guard!(self).get_bytecode(&message.destination);

                match self.execute_async_message(message, opt_bytecode, execution_version) {
                    Ok(_message_return) => {
                        cfg_if::cfg_if! {
                            if #[cfg(feature = "execution-trace")] {
                                // Safe to unwrap
                                slot_trace.asc_call_stacks.push(_message_return.traces.unwrap().0);
                            } else if #[cfg(feature = "execution-info")] {
                                slot_trace.asc_call_stacks.push(_message_return.traces.clone().unwrap().0);
                                exec_info.async_messages.push(Ok(_message_return));
                            }
                        }
                    }
                    Err(err) => {
                        let msg = format!("failed executing async message: {}", err);
                        #[cfg(feature = "execution-info")]
                        exec_info.async_messages.push(Err(msg.clone()));
                        debug!(msg);
                    }
                }
            }
        }

        #[cfg(feature = "execution-trace")]
        self.trace_history
            .write()
            .save_traces_for_slot(*slot, slot_trace.clone());
        #[cfg(feature = "execution-trace")]
        self.trace_history
            .write()
            .save_transfers_for_slot(*slot, transfers.clone());

        // Finish slot
        #[allow(unused_mut)]
        let mut exec_out = context_guard!(self).settle_slot(block_info);
        #[cfg(feature = "execution-trace")]
        {
            exec_out.slot_trace = Some((slot_trace, transfers));
        };
        #[cfg(feature = "dump-block")]
        {
            exec_out.storage = match exec_target {
                Some((_block_id, block_metadata)) => block_metadata.storage.clone(),
                _ => None,
            }
        }

        #[cfg(feature = "execution-info")]
        {
            exec_info.deferred_credits_execution =
                std::mem::replace(&mut exec_out.deferred_credits_execution, vec![]);
            exec_info.cancel_async_message_execution =
                std::mem::replace(&mut exec_out.cancel_async_message_execution, vec![]);
            exec_info.auto_sell_execution =
                std::mem::replace(&mut exec_out.auto_sell_execution, vec![]);
            self.execution_info.write().save_for_slot(*slot, exec_info);
        }

        // Broadcast a slot execution output to active channel subscribers.
        if self.config.broadcast_enabled {
            let slot_exec_out = SlotExecutionOutput::ExecutedSlot(exec_out.clone());
            if let Err(err) = self
                .channels
                .slot_execution_output_sender
                .send(slot_exec_out)
            {
                trace!(
                    "error, failed to broadcast execution output for slot {} due to: {}",
                    exec_out.slot.clone(),
                    err
                );
            }
        }

        exec_out.state_changes.deferred_call_changes.exec_stats = deferred_calls_stats;

        // Return the execution output
        exec_out
    }

    /// Execute a candidate slot
    pub fn execute_candidate_slot(
        &mut self,
        slot: &Slot,
        exec_target: Option<&(BlockId, ExecutionBlockMetadata)>,
        selector: Box<dyn SelectorController>,
    ) {
        let target_id = exec_target.as_ref().map(|(b_id, _)| *b_id);
        debug!(
            "execute_candidate_slot: executing slot={} target={:?}",
            slot, target_id
        );

        if slot <= &self.final_cursor {
            panic!(
                "could not execute candidate slot {} because final_cursor is at {}",
                slot, self.final_cursor
            );
        }

        // if the slot was already executed, truncate active history to cancel the slot and all the ones after
        if &self.active_cursor >= slot {
            debug!(
                "execute_candidate_slot: truncating down from slot {}",
                self.active_cursor
            );
            self.active_history
                .write()
                .truncate_from(slot, self.config.thread_count);
            self.active_cursor = slot
                .get_prev_slot(self.config.thread_count)
                .expect("overflow when iterating on slots");
        }
        let exec_out = self.execute_slot(slot, exec_target, selector);

        #[cfg(feature = "execution-trace")]
        {
            if self.config.broadcast_traces_enabled {
                if let Some((slot_trace, _)) = exec_out.slot_trace.clone() {
                    if let Err(err) = self
                        .channels
                        .slot_execution_traces_sender
                        .send((slot_trace, false))
                    {
                        trace!(
                            "error, failed to broadcast abi trace for slot {} due to: {}",
                            exec_out.slot.clone(),
                            err
                        );
                    }
                }
            }
        }

        // apply execution output to active state
        self.apply_active_execution_output(exec_out);

        debug!("execute_candidate_slot: execution finished & state applied");
    }

    /// Execute an SCE-final slot
    pub fn execute_final_slot(
        &mut self,
        slot: &Slot,
        exec_target: Option<&(BlockId, ExecutionBlockMetadata)>,
        selector: Box<dyn SelectorController>,
    ) {
        let target_id = exec_target.as_ref().map(|(b_id, _)| *b_id);
        debug!(
            "execute_final_slot: executing slot={} target={:?}",
            slot, target_id
        );

        if slot <= &self.final_cursor {
            debug!(
                "execute_final_slot: final slot already executed (final_cursor = {})",
                self.final_cursor
            );
            return;
        }

        // check if the final slot execution result is already cached at the front of the speculative execution history
        let first_exec_output = self.active_history.write().0.pop_front();

        if let Some(exec_out) = first_exec_output {
            if &exec_out.slot == slot
                && exec_out.block_info.as_ref().map(|i| i.block_id) == target_id
            {
                // speculative execution front result matches what we want to compute
                // apply the cached output and return
                self.apply_final_execution_output(exec_out);
                return;
            } else {
                // speculative cache mismatch
                warn!(
                    "speculative execution cache mismatch (final slot={}/block={:?}, front speculative slot={}/block={:?}). Resetting the cache.",
                    slot, target_id, exec_out.slot, exec_out.block_info.map(|i| i.block_id)
                );
            }
        } else {
            // cache entry absent
            info!(
                "speculative execution cache empty, executing final slot={}/block={:?}",
                slot, target_id
            );
        }

        // truncate the whole execution queue
        self.active_history.write().0.clear();
        self.active_cursor = self.final_cursor;

        // execute slot
        let exec_out = self.execute_slot(slot, exec_target, selector);

        // apply execution output to final state
        self.apply_final_execution_output(exec_out);

        debug!(
            "execute_final_slot: execution finished & result applied & versioning stats updated"
        );
    }

    /// Runs a read-only execution request.
    /// The executed bytecode appears to be able to read and write the consensus state,
    /// but all accumulated changes are simply returned as an `ExecutionOutput` object,
    /// and not actually applied to the consensus state.
    ///
    /// # Arguments
    /// * `req`: a read-only execution request
    ///
    /// # Returns
    ///  `ExecutionOutput` describing the output of the execution, or an error
    pub(crate) fn execute_readonly_request(
        &self,
        req: ReadOnlyExecutionRequest,
    ) -> Result<ReadOnlyExecutionOutput, ExecutionError> {
        // TODO ensure that speculative things are reset after every execution ends (incl. on error and readonly)
        // otherwise, on prod stats accumulation etc... from the API we might be counting the remainder of this speculative execution

        // check if read only request max gas is above the threshold
        if req.max_gas > self.config.max_read_only_gas {
            return Err(ExecutionError::TooMuchGas(format!(
                "execution gas for read-only call is {} which is above the maximum allowed {}",
                req.max_gas, self.config.max_read_only_gas
            )));
        }

        // set the execution slot to be the one after the latest executed active slot
        let slot = self
            .active_cursor
            .get_next_slot(self.config.thread_count)
            .expect("slot overflow in readonly execution from active slot");

        // create a readonly execution context
        let execution_context = ExecutionContext::readonly(
            self.config.clone(),
            slot,
            req.call_stack,
            self.final_state.clone(),
            self.active_history.clone(),
            self.module_cache.clone(),
            self.mip_store.clone(),
        );

        // run the interpreter according to the target type
        let exec_response = match req.target {
            ReadOnlyExecutionTarget::BytecodeExecution(bytecode) => {
                let condom_limits = execution_context.get_condom_limits();
                {
                    let mut context = context_guard!(self);
                    *context = execution_context;

                    let call_stack_addr = context.get_call_stack();

                    // transfer fee
                    if let (Some(fee), Some(addr)) = (req.fee, call_stack_addr.first()) {
                        context.transfer_coins(Some(*addr), None, fee, false)?;
                    }
                }

                // load the tmp module
                let module = self.module_cache.read().load_tmp_module(
                    &bytecode,
                    req.max_gas,
                    condom_limits.clone(),
                )?;

                // run the VM
                massa_sc_runtime::run_main(
                    &*self.execution_interface,
                    module,
                    req.max_gas,
                    self.config.gas_costs.clone(),
                    condom_limits,
                )
                .map_err(|error| ExecutionError::VMError {
                    context: "ReadOnlyExecutionTarget::BytecodeExecution".to_string(),
                    error,
                })?
            }

            ReadOnlyExecutionTarget::FunctionCall {
                target_addr,
                target_func,
                parameter,
            } => {
                // get the bytecode, default to an empty vector
                let bytecode = execution_context
                    .get_bytecode(&target_addr)
                    .unwrap_or_default()
                    .0;

                let condom_limits = execution_context.get_condom_limits();
                {
                    let mut context = context_guard!(self);
                    *context = execution_context;

                    // Ensure that the target address is an SC address and exists
                    context.check_target_sc_address(target_addr)?;

                    let call_stack_addr = context.get_call_stack();

                    // transfer fee
                    if let (Some(fee), Some(addr)) = (req.fee, call_stack_addr.first()) {
                        context.transfer_coins(Some(*addr), None, fee, false)?;
                    }

                    // transfer coins
                    if let (Some(coins), Some(from), Some(to)) =
                        (req.coins, call_stack_addr.first(), call_stack_addr.get(1))
                    {
                        context.transfer_coins(Some(*from), Some(*to), coins, false)?;
                    }
                }

                // load and execute the compiled module
                // IMPORTANT: do not keep a lock here as `run_function` uses the `get_module` interface
                let module = self.module_cache.write().load_module(
                    &bytecode,
                    req.max_gas,
                    condom_limits.clone(),
                )?;

                let response = massa_sc_runtime::run_function(
                    &*self.execution_interface,
                    module,
                    &target_func,
                    &parameter,
                    req.max_gas,
                    self.config.gas_costs.clone(),
                    condom_limits,
                );

                match response {
                    Ok(Response { init_gas_cost, .. })
                    | Err(VMError::ExecutionError { init_gas_cost, .. }) => {
                        self.module_cache
                            .write()
                            .set_init_cost(&bytecode, init_gas_cost);
                    }
                    _ => (),
                }

                response.map_err(|error| ExecutionError::VMError {
                    context: "ReadOnlyExecutionTarget::FunctionCall".to_string(),
                    error,
                })?
            }
        };

        // return the execution output
        let execution_output = context_guard!(self).settle_slot(None);
        let exact_exec_cost = req.max_gas.saturating_sub(exec_response.remaining_gas);

        // compute a gas cost, estimating the gas of the last SC call to be max_instance_cost
        let corrected_cost = match (context_guard!(self)).gas_remaining_before_subexecution {
            Some(gas_remaining) => req
                .max_gas
                .saturating_sub(gas_remaining) // yield gas used until last subexecution
                .saturating_add(self.config.gas_costs.max_instance_cost),
            None => self.config.gas_costs.max_instance_cost, // no subexecution, just max_instance_cost
        };

        // keep the max of the two so the last SC call has at least max_instance_cost of gas
        let estimated_cost = u64::max(exact_exec_cost, corrected_cost);
        debug!(
            "execute_readonly_request:
            exec_response.remaining_gas: {}
            exact_exec_cost: {}
            corrected_cost: {}
            estimated_cost: {}",
            exec_response.remaining_gas, exact_exec_cost, corrected_cost, estimated_cost
        );

        Ok(ReadOnlyExecutionOutput {
            out: execution_output,
            gas_cost: estimated_cost,
            call_result: exec_response.ret,
        })
    }

    /// Gets a balance both at the latest final and candidate executed slots
    pub fn get_final_and_candidate_balance(
        &self,
        address: &Address,
    ) -> (Option<Amount>, Option<Amount>) {
        let final_balance = self.final_state.read().get_ledger().get_balance(address);
        let search_result = self.active_history.read().fetch_balance(address);
        (
            final_balance,
            match search_result {
                HistorySearchResult::Present(active_balance) => Some(active_balance),
                HistorySearchResult::NoInfo => final_balance,
                HistorySearchResult::Absent => None,
            },
        )
    }

    /// Gets a balance both at the latest final and candidate executed slots
    pub fn get_final_and_active_bytecode(
        &self,
        address: &Address,
    ) -> (Option<Bytecode>, Option<Bytecode>) {
        let final_bytecode = self.final_state.read().get_ledger().get_bytecode(address);
        let search_result = self.active_history.read().fetch_bytecode(address);
        let speculative_v = match search_result {
            HistorySearchResult::Present(active_bytecode) => Some(active_bytecode),
            HistorySearchResult::NoInfo => final_bytecode.clone(),
            HistorySearchResult::Absent => None,
        };
        (final_bytecode, speculative_v)
    }

    /// Gets roll counts both at the latest final and active executed slots
    pub fn get_final_and_candidate_rolls(&self, address: &Address) -> (u64, u64) {
        let final_rolls = self
            .final_state
            .read()
            .get_pos_state()
            .get_rolls_for(address);
        let active_rolls = self
            .active_history
            .read()
            .fetch_roll_count(address)
            .unwrap_or(final_rolls);
        (final_rolls, active_rolls)
    }

    /// Gets a data entry both at the latest final and active executed slots
    pub fn get_final_and_active_data_entry(
        &self,
        address: &Address,
        key: &[u8],
    ) -> (Option<Vec<u8>>, Option<Vec<u8>>) {
        let final_entry = self
            .final_state
            .read()
            .get_ledger()
            .get_data_entry(address, key);
        let search_result = self
            .active_history
            .read()
            .fetch_active_history_data_entry(address, key);
        (
            final_entry.clone(),
            match search_result {
                HistorySearchResult::Present(active_entry) => Some(active_entry),
                HistorySearchResult::NoInfo => final_entry,
                HistorySearchResult::Absent => None,
            },
        )
    }

    /// Get every final and active datastore key of the given address
    #[allow(clippy::type_complexity)]
    pub fn get_final_and_candidate_datastore_keys(
        &self,
        addr: &Address,
        prefix: &[u8],
    ) -> (Option<BTreeSet<Vec<u8>>>, Option<BTreeSet<Vec<u8>>>) {
        // here, get the final keys from the final ledger, and make a copy of it for the candidate list
        // let final_keys = final_state.read().ledger.get_datastore_keys(addr);
        let final_keys = self
            .final_state
            .read()
            .get_ledger()
            .get_datastore_keys(addr, prefix);

        let mut candidate_keys = final_keys.clone();

        // compute prefix range
        let prefix_range = get_prefix_bounds(prefix);
        let range_ref = (prefix_range.0.as_ref(), prefix_range.1.as_ref());

        // traverse the history from oldest to newest, applying additions and deletions
        for output in &self.active_history.read().0 {
            match output.state_changes.ledger_changes.get(addr) {
                // address absent from the changes
                None => (),

                // address ledger entry being reset to an absolute new list of keys
                Some(SetUpdateOrDelete::Set(new_ledger_entry)) => {
                    candidate_keys = Some(
                        new_ledger_entry
                            .datastore
                            .range::<Vec<u8>, _>(range_ref)
                            .map(|(k, _v)| k.clone())
                            .collect(),
                    );
                }

                // address ledger entry being updated
                Some(SetUpdateOrDelete::Update(entry_updates)) => {
                    let c_k = candidate_keys.get_or_insert_with(Default::default);
                    for (ds_key, ds_update) in
                        entry_updates.datastore.range::<Vec<u8>, _>(range_ref)
                    {
                        match ds_update {
                            SetOrDelete::Set(_) => c_k.insert(ds_key.clone()),
                            SetOrDelete::Delete => c_k.remove(ds_key),
                        };
                    }
                }

                // address ledger entry being deleted
                Some(SetUpdateOrDelete::Delete) => {
                    candidate_keys = None;
                }
            }
        }

        (final_keys, candidate_keys)
    }

    pub fn get_address_cycle_infos(&self, address: &Address) -> Vec<ExecutionAddressCycleInfo> {
        context_guard!(self).get_address_cycle_infos(address, self.config.periods_per_cycle)
    }

    /// Returns for a given cycle the stakers taken into account
    /// by the selector. That correspond to the `roll_counts` in `cycle - 3`.
    ///
    /// By default it returns an empty map.
    pub fn get_cycle_active_rolls(&self, cycle: u64) -> BTreeMap<Address, u64> {
        self.final_state
            .read()
            .get_pos_state()
            .get_all_active_rolls(cycle)
    }

    /// Gets execution events optionally filtered by:
    /// * start slot
    /// * end slot
    /// * emitter address
    /// * original caller address
    /// * operation id
    /// * event state (final, candidate or both)
    pub fn get_filtered_sc_output_event(&self, filter: EventFilter) -> Vec<SCOutputEvent> {
        match filter.is_final {
            Some(true) => self
                .final_events_cache
                .get_filtered_sc_output_events(&filter),
            Some(false) => self
                .active_history
                .read()
                .0
                .iter()
                .flat_map(|item| item.events.get_filtered_sc_output_events(&filter))
                .collect(),
            None => self
                .final_events_cache
                .get_filtered_sc_output_events(&filter)
                .into_iter()
                .chain(
                    self.active_history
                        .read()
                        .0
                        .iter()
                        .flat_map(|item| item.events.get_filtered_sc_output_events(&filter)),
                )
                .collect(),
        }
    }

    /// Check if a denunciation has been executed given a `DenunciationIndex`
    /// Returns a tuple of booleans:
    /// * first boolean is true if the denunciation has been executed speculatively
    /// * second boolean is true if the denunciation has been executed in the final state
    pub fn get_denunciation_execution_status(
        &self,
        denunciation_index: &DenunciationIndex,
    ) -> (bool, bool) {
        // check final state
        let executed_final = self
            .final_state
            .read()
            .get_executed_denunciations()
            .contains(denunciation_index);
        if executed_final {
            return (true, true);
        }

        // check active history
        let executed_candidate = {
            matches!(
                self.active_history
                    .read()
                    .fetch_executed_denunciation(denunciation_index),
                HistorySearchResult::Present(())
            )
        };

        (executed_candidate, false)
    }

    /// Get cycle infos
    pub fn get_cycle_infos(
        &self,
        cycle: u64,
        restrict_to_addresses: Option<&PreHashSet<Address>>,
    ) -> Option<ExecutionQueryCycleInfos> {
        let final_state_lock = self.final_state.read();

        // check if cycle is complete
        let is_final = match final_state_lock.get_pos_state().is_cycle_complete(cycle) {
            Some(v) => v,
            None => return None,
        };

        // active rolls
        let staker_infos: BTreeMap<Address, ExecutionQueryStakerInfo>;
        if let Some(addrs) = restrict_to_addresses {
            staker_infos = addrs
                .iter()
                .map(|addr| {
                    let staker_info = ExecutionQueryStakerInfo {
                        active_rolls: final_state_lock
                            .get_pos_state()
                            .get_address_active_rolls(addr, cycle)
                            .unwrap_or(0),
                        production_stats: final_state_lock
                            .get_pos_state()
                            .get_production_stats_for_address(cycle, addr)
                            .unwrap_or_default(),
                    };
                    (*addr, staker_info)
                })
                .collect()
        } else {
            let active_rolls = final_state_lock.get_pos_state().get_all_roll_counts(cycle);
            let production_stats = final_state_lock
                .get_pos_state()
                .get_all_production_stats(cycle)
                .unwrap_or_default();
            let all_addrs: BTreeSet<Address> = active_rolls
                .keys()
                .chain(production_stats.keys())
                .copied()
                .collect();
            staker_infos = all_addrs
                .into_iter()
                .map(|addr| {
                    let staker_info = ExecutionQueryStakerInfo {
                        active_rolls: active_rolls.get(&addr).copied().unwrap_or(0),
                        production_stats: production_stats.get(&addr).copied().unwrap_or_default(),
                    };
                    (addr, staker_info)
                })
                .collect()
        }

        // build result
        Some(ExecutionQueryCycleInfos {
            cycle,
            is_final,
            staker_infos,
        })
    }

    /// Get future deferred credits of an address
    pub fn get_address_future_deferred_credits(
        &self,
        address: &Address,
        max_slot: std::ops::Bound<Slot>,
    ) -> BTreeMap<Slot, Amount> {
        context_guard!(self).get_address_future_deferred_credits(
            address,
            self.config.thread_count,
            max_slot,
        )
    }

    /// Get future deferred credits of an address
    /// Returns tuple: (speculative, final)
    pub fn get_address_deferred_credits(
        &self,
        address: &Address,
    ) -> (BTreeMap<Slot, Amount>, BTreeMap<Slot, Amount>) {
        // get values from final state
        let res_final: BTreeMap<Slot, Amount> = self
            .final_state
            .read()
            .get_pos_state()
            .get_deferred_credits_range(.., Some(address))
            .credits
            .iter()
            .filter_map(|(slot, addr_amount)| {
                addr_amount.get(address).map(|amount| (*slot, *amount))
            })
            .collect();

        // get values from active history, backwards
        let mut res_speculative: BTreeMap<Slot, Amount> = BTreeMap::default();
        for hist_item in self.active_history.read().0.iter().rev() {
            for (slot, addr_amount) in &hist_item.state_changes.pos_changes.deferred_credits.credits
            {
                if let Some(amount) = addr_amount.get(address) {
                    res_speculative.entry(*slot).or_insert(*amount);
                };
            }
        }

        // fill missing speculative entries with final entries
        for (slot, amount) in &res_final {
            res_speculative.entry(*slot).or_insert(*amount);
        }

        // remove zero entries from speculative
        res_speculative.retain(|_s, a| !a.is_zero());

        (res_speculative, res_final)
    }

    /// Get the execution status of a batch of operations.
    ///
    ///  Return value: vector of
    ///  `(Option<speculative_status>, Option<final_status>)`
    ///  If an Option is None it means that the op execution was not found.
    ///  Note that old op executions are forgotten.
    /// Otherwise, the status is a boolean indicating whether the execution was successful (true) or if there was an error (false.)
    pub fn get_ops_exec_status(&self, batch: &[OperationId]) -> Vec<(Option<bool>, Option<bool>)> {
        let speculative_exec = self.active_history.read().get_ops_exec_status(batch);
        let final_exec = self.final_state.read().get_ops_exec_status(batch);
        speculative_exec
            .into_iter()
            .zip(final_exec)
            .map(|(speculative_v, final_v)| {
                match (speculative_v, final_v) {
                    (None, Some(f)) => (Some(f), Some(f)), // special case: a final execution should also appear as speculative
                    (s, f) => (s, f),
                }
            })
            .collect()
    }

    /// Update MipStore with block header stats
    pub fn update_versioning_stats(&mut self, block_info: &Option<ExecutedBlockInfo>, slot: &Slot) {
        let slot_ts = get_block_slot_timestamp(
            self.config.thread_count,
            self.config.t0,
            self.config.genesis_timestamp,
            *slot,
        )
        .expect("Cannot get timestamp from slot");

        self.mip_store.update_network_version_stats(
            slot_ts,
            block_info
                .as_ref()
                .map(|i| (i.current_version, i.announced_version)),
        );
    }

    pub fn deferred_call_quote(
        &self,
        target_slot: Slot,
        max_request_gas: u64,
        params_size: u64,
    ) -> (Slot, u64, bool, Amount) {
        let gas_request =
            max_request_gas.saturating_add(self.config.deferred_calls_config.call_cst_gas_cost);
        let context = context_guard!(self);

        match context.deferred_calls_compute_call_fee(
            target_slot,
            gas_request,
            context.slot,
            params_size,
        ) {
            Ok(fee) => (target_slot, gas_request, true, fee),
            Err(_) => (target_slot, gas_request, false, Amount::zero()),
        }
    }

    pub fn deferred_call_info(&self, call_id: &DeferredCallId) -> Option<DeferredCall> {
        let context = context_guard!(self);
        context.get_deferred_call(call_id)
    }

    pub fn get_deferred_calls_by_slot(&self, slot: Slot) -> Vec<DeferredCallId> {
        context_guard!(self)
            .get_deferred_calls_by_slot(slot)
            .into_keys()
            .collect()
    }
}