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
//! [`BrontesBatchPricer`] calculates and track the prices of tokens
//! on decentralized exchanges on a per-transaction basis. It builds and
//! maintains a main token graph which is used to derive smaller subgraphs used
//! to price tokens relative to a defined quote token.
//!
//! ## Core Functionality
//!
//! ### Subgraph Utilization
//! The system leverages subgraphs, which are smaller, focused graph structures
//! extracted from the larger token graph. Subgraphs are built when a classified
//! event occurs on a token. When this occurs a subgraph is made for the pair if
//! one doesn't already exist. This allows for fast computation of a tokens
//! price. These subgraphs constantly update with new blocks, updating their
//! nodes and edges to reflect new liquidity pools.  
//!
//! ### Graph Management
//! The system adds new pools to the token graph as they appear in new blocks,
//! ensuring that all valid trading paths are represented.
//!
//! ### Lazy Loading
//! New pools and their states are fetched as required

use brontes_metrics::pricing::DexPricingMetrics;
use brontes_types::{
    db::dex::PriceAt, execute_on, normalized_actions::pool::NormalizedPoolConfigUpdate,
    BrontesTaskExecutor, UnboundedYapperReceiver,
};
use rayon::iter::{IntoParallelIterator, ParallelIterator};

use crate::graphs::StateWithDependencies;
pub mod function_call_bench;
mod graphs;
pub mod protocols;
mod subgraph_query;
pub mod types;
use std::{
    collections::{hash_map::Entry, VecDeque},
    sync::{
        atomic::{AtomicBool, Ordering::SeqCst},
        Arc,
    },
    task::{Context, Poll},
};

use alloy_primitives::Address;
pub use brontes_types::price_graph_types::{
    PoolPairInfoDirection, PoolPairInformation, SubGraphEdge, SubGraphsEntry,
};
use brontes_types::{
    db::dex::{DexPrices, DexQuotes},
    pair::Pair,
    traits::TracingProvider,
    FastHashMap, FastHashSet,
};
use futures::Stream;
pub use graphs::{
    AllPairGraph, GraphManager, StateTracker, SubGraphRegistry, SubgraphVerifier,
    VerificationResults,
};
use itertools::Itertools;
use malachite::{
    num::basic::traits::{One, Zero},
    Rational,
};
use protocols::lazy::{LazyExchangeLoader, LazyResult, LoadResult};
pub use protocols::{Protocol, *};
use subgraph_query::*;
use tracing::{debug, error, info};
use types::{DexPriceMsg, PairWithFirstPoolHop, PoolUpdate};

use crate::types::PoolState;

const MAX_BLOCK_MOVEMENT: Rational = Rational::const_from_unsigneds(99_999, 100_000);

pub struct BrontesBatchPricer<T: TracingProvider> {
    range_id:        usize,
    quote_asset:     Address,
    current_block:   u64,
    completed_block: u64,
    finished:        Arc<AtomicBool>,
    needs_more_data: Arc<AtomicBool>,

    /// receiver from classifier, classifier is ran sequentially to guarantee
    /// order
    update_rx:       UnboundedYapperReceiver<DexPriceMsg>,
    /// holds the state transfers and state void overrides for the given block.
    /// it works by processing all state transitions for a block and
    /// allowing lazy loading to occur. Once lazy loading has occurred and there
    /// are no more events for the current block, all the state transitions
    /// are applied in order with the price at the transaction index being
    /// calculated and inserted into the results and returned.
    buffer:          StateBuffer,
    /// holds new graph nodes / edges that can be added at every given block.
    /// this is done to ensure any route from a base to our quote asset will
    /// only pass though valid created pools.
    new_graph_pairs: FastHashMap<Address, (Protocol, Pair)>,
    /// manages all graph related items
    graph_manager:   GraphManager,
    /// lazy loads dex pairs so we only fetch init state that is needed
    lazy_loader:     LazyExchangeLoader<T>,
    dex_quotes:      FastHashMap<u64, DexQuotes>,
    /// pairs that failed to be verified. we use this to avoid the fallback for
    /// transfers
    failed_pairs:    FastHashMap<u64, Vec<PairWithFirstPoolHop>>,
    /// when we are pulling from the channel, because its not peekable we always
    /// pull out one more than we want. this acts as a cache for it
    overlap_update:  Option<PoolUpdate>,
    /// a queue of blocks that we should skip pricing for and just upkeep state
    skip_pricing:    VecDeque<u64>,
    /// metrics
    metrics:         Option<DexPricingMetrics>,
}

impl<T: TracingProvider> BrontesBatchPricer<T> {
    pub fn new(
        range_id: usize,
        finished: Arc<AtomicBool>,
        quote_asset: Address,
        graph_manager: GraphManager,
        update_rx: UnboundedYapperReceiver<DexPriceMsg>,
        provider: Arc<T>,
        current_block: u64,
        new_graph_pairs: FastHashMap<Address, (Protocol, Pair)>,
        needs_more_data: Arc<AtomicBool>,
        metrics: Option<DexPricingMetrics>,
        executor: BrontesTaskExecutor,
    ) -> Self {
        Self {
            range_id,
            finished,
            failed_pairs: FastHashMap::default(),
            new_graph_pairs,
            quote_asset,
            buffer: StateBuffer::new(),
            update_rx,
            graph_manager,
            dex_quotes: FastHashMap::default(),
            lazy_loader: LazyExchangeLoader::new(provider, executor),
            current_block,
            completed_block: current_block,
            overlap_update: None,
            skip_pricing: VecDeque::new(),
            needs_more_data,
            metrics,
        }
    }

    pub fn current_block_processing(&self) -> u64 {
        self.completed_block
    }

    /// testing / benching utils
    pub fn completed_block(&mut self) -> &mut u64 {
        &mut self.completed_block
    }

    /// testing / benching utils
    pub fn snapshot_graph_state(&self) -> (SubGraphRegistry, SubgraphVerifier, StateTracker) {
        self.graph_manager.snapshot_state()
    }

    /// testing / benching utils
    pub fn set_state(
        &mut self,
        sub_graph_registry: SubGraphRegistry,
        verifier: SubgraphVerifier,
        state: StateTracker,
    ) {
        self.graph_manager
            .set_state(sub_graph_registry, verifier, state)
    }

    /// Handles pool updates for the BrontesBatchPricer system.
    ///
    /// This function processes a vector of `PoolUpdate` messages, updating the
    /// current block tracking and incorporating new pools into the graph
    /// manager. It filters updates to identify and add new pools, using
    /// details such as address, protocol, and pair. The function also
    /// manages state transitions and pools, buffering state changes by
    /// block number and adding subgraphs for new pools if they don't
    /// already exist in the graph manager.
    ///
    /// Essentially, it ensures the graph manager remains synchronized with the
    /// latest block data, maintaining the integrity and accuracy of
    /// the decentralized exchange pricing mechanism.
    #[brontes_macros::metrics_call(ptr=metrics,function_call_count, self.range_id, "on_pool_updates")]
    fn on_pool_updates(&mut self, updates: Vec<PoolUpdate>) {
        if updates.is_empty() {
            return
        };

        if let Some(msg) = updates.first() {
            if msg.block > self.current_block {
                self.current_block = msg.block;
            }
        }

        // insert new pools accessed on this block.
        updates
            .iter()
            .filter_map(|update| {
                let (protocol, pair) = self.new_graph_pairs.remove(&update.get_pool_address())?;
                Some((update.get_pool_address(), protocol, pair, update.block))
            })
            .for_each(|(pool_addr, protocol, pair, block)| {
                self.graph_manager
                    .add_pool(pair, pool_addr, protocol, block);
            });

        updates.iter().for_each(|msg| {
            let Some(pair) = msg.get_pair(self.quote_asset) else { return };
            let is_transfer = msg.is_transfer();

            let block = msg.block;
            let pair0 = Pair(pair.0, self.quote_asset);
            let pair1 = Pair(pair.1, self.quote_asset);

            let gt = Some(pair).filter(|_| !is_transfer).unwrap_or_default();

            // mark that they will be used
            self.graph_manager.mark_future_use(pair0, gt, block);
            self.graph_manager.mark_future_use(pair1, gt.flip(), block);

            let pair0 = PairWithFirstPoolHop::from_pair_gt(pair0, gt);
            let pair1 = PairWithFirstPoolHop::from_pair_gt(pair1, gt.flip());

            // mark low liq ones for removal when this block is completed
            self.graph_manager.prune_low_liq_subgraphs(
                pair0,
                self.quote_asset,
                self.completed_block + 1,
            );
            self.graph_manager.prune_low_liq_subgraphs(
                pair1,
                self.quote_asset,
                self.completed_block + 1,
            );
        });

        tracing::debug!("search triggered by pool updates");
        let (state, pools) = execute_on!(target = pricing, {
            graph_search_par(&self.graph_manager, self.quote_asset, updates)
        });
        tracing::debug!("search triggered by on pool updates completed");

        state.into_iter().flatten().for_each(|(addr, update)| {
            let block = update.block;
            self.buffer
                .updates
                .entry(block)
                .or_default()
                .push_back((addr, update));
        });

        pools.into_iter().flatten().for_each(
            |NewGraphDetails { pair, extends_pair, block, edges }| {
                if edges.is_empty() {
                    tracing::debug!(?pair, ?extends_pair, "new pool has no graph edges");
                    return
                }

                if self.graph_manager.has_subgraph_goes_through(pair) {
                    tracing::debug!(?pair, ?extends_pair, "already have pairs");
                    return
                }

                self.add_subgraph(pair, extends_pair, block, edges, false);
            },
        );
    }

    #[brontes_macros::metrics_call(ptr=metrics,function_call_count, self.range_id, "pool_updates_no_pricing")]
    fn on_pool_update_no_pricing(&mut self, updates: Vec<PoolUpdate>) {
        if let Some(msg) = updates.first() {
            if msg.block > self.current_block {
                self.current_block = msg.block;
            }
        }

        updates
            .iter()
            .filter_map(|update| {
                let (protocol, pair) = self.new_graph_pairs.remove(&update.get_pool_address())?;
                Some((update.get_pool_address(), protocol, pair, update.block))
            })
            .for_each(|(pool_addr, protocol, pair, block)| {
                self.graph_manager
                    .add_pool(pair, pool_addr, protocol, block);
            });

        updates.into_iter().for_each(|update| {
            self.graph_manager
                .update_state(update.get_pool_address(), update);
        });
    }

    fn get_dex_price(
        &mut self,
        pool_pair: Pair,
        goes_through: Pair,
    ) -> Option<(Rational, Rational, usize)> {
        if pool_pair.0 == pool_pair.1 {
            return Some((Rational::ONE, Rational::from(1_000_000), usize::MAX))
        }
        self.graph_manager.get_price(pool_pair, goes_through)
    }

    /// For a given block number and tx idx, finds the path to the following
    /// tokens and inserts the data into dex_quotes.
    fn store_dex_price(&mut self, block: u64, tx_idx: u64, pool_pair: Pair, prices: DexPrices) {
        tracing::debug!(?block,?tx_idx, ?pool_pair, %prices, "storing price");
        // insert the pool keys into the price map
        match self.dex_quotes.entry(block) {
            Entry::Occupied(mut quotes) => {
                let q = quotes.get_mut();
                let size = q.0.len();
                // pad the vector
                for _ in size..=tx_idx as usize {
                    q.0.push(None)
                }
                let tx = q.0.get_mut(tx_idx as usize).unwrap();

                if let Some(tx) = tx.as_mut() {
                    let is_transfer = prices.is_transfer;
                    let res = tx.insert(pool_pair, prices);
                    if is_transfer {
                        if let Some(r) = res {
                            if !r.is_transfer {
                                tx.insert(pool_pair, r);
                            }
                        }
                    }
                } else {
                    let mut tx_pairs = FastHashMap::default();
                    tx_pairs.insert(pool_pair, prices);
                    *tx = Some(tx_pairs)
                }
            }
            Entry::Vacant(v) => {
                // pad the vec to the tx index
                let mut vec = Vec::new();
                for _ in 0..=tx_idx as usize {
                    vec.push(None);
                }
                // insert
                let mut map = FastHashMap::default();
                map.insert(pool_pair, prices);

                let entry = vec.get_mut(tx_idx as usize).unwrap();
                *entry = Some(map);

                v.insert(DexQuotes(vec));
            }
        }
    }

    /// Similar to update known state but doesn't apply the state transfer given
    /// the pool is from end of block.
    fn init_new_pool_override(&mut self, addr: Address, msg: PoolUpdate) {
        let tx_idx = msg.tx_idx;
        let block = msg.block;
        let is_transfer = msg.is_transfer();

        let Some(pool_pair) = msg.get_pair(self.quote_asset) else {
            info!(?addr, "failed to get pair for pool");
            return;
        };

        // generate all variants of the price that might be used in the inspectors
        let pair0 = Pair(pool_pair.0, self.quote_asset);
        let pair1 = Pair(pool_pair.1, self.quote_asset);

        let flipped_pool = pool_pair.flip();

        if let Some((price0, pool_liq, connections)) = self.get_dex_price(pair0, pool_pair) {
            let mut bad = false;
            self.failed_pairs.retain(|r_block, s| {
                if block != *r_block {
                    return true
                }
                s.retain(|key| {
                    let p = key.get_pair();
                    let gt = key.get_goes_through();

                    if p == pair0 && gt == pool_pair {
                        bad = true;
                        false
                    } else {
                        true
                    }
                });

                !s.is_empty()
            });

            if !bad {
                let price0 = DexPrices {
                    post_state: price0.clone(),
                    pool_liquidity: pool_liq,
                    pre_state: price0,
                    goes_through: pool_pair,
                    first_hop_connections: connections,
                    is_transfer,
                };
                self.store_dex_price(block, tx_idx, pair0, price0);
            }
        };

        if let Some((price1, pool_liq, connections)) = self.get_dex_price(pair1, flipped_pool) {
            let mut bad = false;
            self.failed_pairs.retain(|r_block, s| {
                if block != *r_block {
                    return true
                }
                s.retain(|key| {
                    let p = key.get_pair();
                    let gt = key.get_goes_through();
                    if p == pair1 && gt == flipped_pool {
                        bad = true;
                        false
                    } else {
                        true
                    }
                });

                !s.is_empty()
            });

            if !bad {
                let price1 = DexPrices {
                    post_state: price1.clone(),
                    pre_state: price1,
                    pool_liquidity: pool_liq,
                    goes_through: flipped_pool,
                    first_hop_connections: connections,
                    is_transfer,
                };
                self.store_dex_price(block, tx_idx, pair1, price1);
            }
        };
    }

    fn update_known_state(&mut self, addr: Address, msg: PoolUpdate) {
        let tx_idx = msg.tx_idx;
        let block = msg.block;
        let is_transfer = msg.is_transfer();
        let Some(pool_pair) = msg.get_pair(self.quote_asset) else {
            error!(?addr, "failed to get pair for pool");
            self.graph_manager.update_state(addr, msg);
            return;
        };

        let pair0 = Pair(pool_pair.0, self.quote_asset);
        let pair1 = Pair(pool_pair.1, self.quote_asset);

        let flipped_pool = pool_pair.flip();

        let price0_pre = self.get_dex_price(pair0, pool_pair);
        let price1_pre = self.get_dex_price(pair1, flipped_pool);

        self.graph_manager.update_state(addr, msg);

        let price0_post = self.get_dex_price(pair0, pool_pair);
        let price1_post = self.get_dex_price(pair1, flipped_pool);

        if let (Some((price0_pre, _, con)), Some((price0_post, pool_liq, _))) =
            (price0_pre, price0_post)
        {
            let mut bad = false;
            self.failed_pairs.retain(|r_block, s| {
                if block != *r_block {
                    return true
                }
                s.retain(|key| {
                    let p = key.get_pair();
                    let gt = key.get_goes_through();
                    if p == pair1 && gt == flipped_pool {
                        bad = true;
                        false
                    } else {
                        true
                    }
                });

                !s.is_empty()
            });

            if !bad {
                self.store_dex_price(
                    block,
                    tx_idx,
                    pair0,
                    DexPrices {
                        pre_state: price0_pre,
                        post_state: price0_post,
                        goes_through: pool_pair,
                        pool_liquidity: pool_liq,
                        first_hop_connections: con,
                        is_transfer,
                    },
                );
            } else {
                tracing::debug!(?tx_idx, ?block, ?pair0, "failed pairs no inserts");
            }
        } else if self
            .graph_manager
            .subgraph_verifier
            .is_verifying_with_block(PairWithFirstPoolHop::from_pair_gt(pair0, pool_pair), block)
        {
            error!(?tx_idx, ?block, ?pair0, ?pool_pair, "pair is currently being verified");
        } else {
            debug!(?tx_idx, ?block, ?pair0, ?pool_pair, "no pricing for pair");
        }

        if let (Some((price1_pre, _, con)), Some((price1_post, pool_liq, _))) =
            (price1_pre, price1_post)
        {
            let mut bad = false;
            self.failed_pairs.retain(|r_block, s| {
                if block != *r_block {
                    return true
                }
                s.retain(|key| {
                    let p = key.get_pair();
                    let gt = key.get_goes_through();
                    if p == pair1 && gt == flipped_pool {
                        bad = true;
                        false
                    } else {
                        true
                    }
                });

                !s.is_empty()
            });
            if !bad {
                self.store_dex_price(
                    block,
                    tx_idx,
                    pair1,
                    DexPrices {
                        pre_state: price1_pre,
                        post_state: price1_post,
                        goes_through: flipped_pool,
                        pool_liquidity: pool_liq,
                        first_hop_connections: con,
                        is_transfer,
                    },
                );
            } else {
                tracing::debug!(?tx_idx, ?block, ?pair1, "failed pairs no inserts");
            }
        } else if self
            .graph_manager
            .subgraph_verifier
            .is_verifying_with_block(PairWithFirstPoolHop::from_pair_gt(pair1, flipped_pool), block)
        {
            error!(?tx_idx, ?block, ?pair1, ?flipped_pool, "pair is currently being verified");
        } else {
            debug!(?tx_idx, ?block, ?pair0, ?pool_pair, "no pricing for pair");
        }
    }

    /// Processes the result of lazy pool state loading.
    ///
    /// Updates the graph state or handles errors.
    ///
    /// # Behavior
    /// If the pool state is successfully loaded, the function updates the graph
    /// manager with the new state.
    ///
    /// If the pool was initialized in the current block and the load result
    /// indicates an error, an override is set to prevent invalid state
    /// application. It then triggers subgraph verification for relevant
    /// pairs. In case of a load error, it handles the error by calling
    /// `on_state_load_error`.

    #[brontes_macros::metrics_call(ptr=metrics,function_call_count, self.range_id, "pool_resolve")]
    fn on_pool_resolve(&mut self, state: Vec<LazyResult>) {
        let failed_queries = state
            .into_iter()
            .filter_map(|state| {
                let LazyResult { block, state, load_result, dependent_count } = state;

                if let Some(state) = state {
                    let addr = state.address();
                    let state = StateWithDependencies { state, dependents: dependent_count };

                    self.graph_manager.new_state(addr, state);

                    // pool was initialized this block. lets set the override to avoid invalid state
                    if !load_result.is_ok() {
                        self.buffer.overrides.entry(block).or_default().insert(addr);
                    }

                    return None
                } else if let LoadResult::Err {
                    block,
                    pool_address,
                    pool_pair,
                    protocol,
                    deps,
                    ..
                } = load_result
                {
                    self.new_graph_pairs
                        .insert(pool_address, (protocol, pool_pair));
                    self.graph_manager
                        .remove_pair_graph_address(pool_pair, pool_address);

                    let failed_queries = deps
                        .into_iter()
                        .filter(|&pair| {
                            self.graph_manager
                                .pool_dep_failure(&pair, pool_address, pool_pair)
                        })
                        .map(|pair| {
                            self.lazy_loader.full_failure(pair);
                            tracing::debug!(?pair, "failed state query dep");
                            RequeryPairs {
                                pair,
                                extends_pair: None,
                                block,
                                frayed_ends: Default::default(),
                                ignore_state: Default::default(),
                            }
                        })
                        .collect_vec();

                    return Some(failed_queries)
                }
                None
            })
            .flatten()
            .collect_vec();

        self.requery_bad_state_par(failed_queries, false);
    }

    /// Attempts to verify subgraphs for a given set of pairs and handles the
    /// verification results.
    ///
    /// # Behavior
    /// The function triggers subgraph verification for each provided pair and
    /// block number combination. On successful verification, it prunes bad
    /// edges from the subgraph and updates the graph manager with the verified
    /// subgraph. If verification fails, it prunes bad edges and prepares
    /// the failed pair for requery. After processing the verification
    /// results, it requeues any pairs that need to be reverified due to failed
    /// verification.
    #[brontes_macros::metrics_call(ptr=metrics,function_call_count, self.range_id, "try_verify_subgraph")]
    fn try_verify_subgraph(&mut self, pairs: Vec<(u64, Option<u64>, PairWithFirstPoolHop)>) {
        self.graph_manager
            .subgraph_verifier
            .print_rem(self.completed_block);

        let requery = self
            .graph_manager
            .verify_subgraph(pairs, self.quote_asset)
            .into_iter()
            .filter_map(|result| match result {
                VerificationResults::Passed(passed) => {
                    passed.prune_state.into_iter().for_each(|(_, bad_edges)| {
                        for bad_edge in bad_edges {
                            if let Some((addr, protocol, pair)) = self
                                .graph_manager
                                .remove_pair_graph_address(bad_edge.pair, bad_edge.pool_address)
                            {
                                self.new_graph_pairs.insert(addr, (protocol, pair));
                            }
                        }
                    });
                    self.graph_manager
                        .add_verified_subgraph(passed.subgraph, passed.block);

                    None
                }
                VerificationResults::Failed(failed) => {
                    failed.prune_state.into_iter().for_each(|(_, bad_edges)| {
                        for bad_edge in bad_edges {
                            if let Some((addr, protocol, pair)) = self
                                .graph_manager
                                .remove_pair_graph_address(bad_edge.pair, bad_edge.pool_address)
                            {
                                self.new_graph_pairs.insert(addr, (protocol, pair));
                            }
                        }
                    });

                    Some(RequeryPairs {
                        pair:         failed.pair,
                        extends_pair: failed.extends,
                        block:        failed.block,
                        frayed_ends:  failed.frayed_ends,
                        ignore_state: failed.ignore_state,
                    })
                }
                VerificationResults::Abort(pair, block) => {
                    tracing::debug!(target: "brontes_pricing::missing_pricing",
                                    ?pair,
                                    ?block,
                                    "aborted verification process");
                    self.failed_pairs.entry(block).or_default().push(pair);

                    None
                }
            })
            .collect_vec();

        self.requery_bad_state_par(requery, true);
    }

    /// Requeries the state of subgraphs for given pairs that encountered issues
    /// during verification.
    ///
    /// # Behavior
    /// This function is invoked when subgraph verification fails for certain
    /// pairs. It reattempts to construct valid subgraphs by: 1. Requerying
    /// the state for each pair and block number, considering any ignored pairs
    /// during the graph construction. 2. Adding newly constructed subgraphs
    /// if they are non-empty, or recursively removing problematic pairs and
    /// requerying if necessary. 3. In cases where no valid paths are found
    /// after requery, it escalates the verification by analyzing alternative
    /// paths or pairs.
    #[brontes_macros::metrics_call(ptr=metrics,function_call_count, self.range_id, "bad_state_requery")]
    fn requery_bad_state_par(&mut self, pairs: Vec<RequeryPairs>, frayed_ext: bool) {
        if pairs.is_empty() {
            return
        }
        tracing::debug!("requerying bad state");

        let new_state = execute_on!(target = pricing, par_state_query(&self.graph_manager, pairs));

        if new_state.is_empty() {
            error!("requery bad state returned nothing");
        }

        let mut recusing = Vec::new();

        let rundown = new_state
            .into_iter()
            .filter_map(|StateQueryRes { pair, block, edges, extends_pair }| {
                let edges = edges.into_iter().flatten().unique().collect_vec();
                tracing::debug!(?pair, ?extends_pair);
                // add regularly
                if edges.is_empty() {
                    tracing::debug!(?pair, ?extends_pair, "no edges found");

                    return Some((pair, block))
                }

                let Some((id, need_state, force_rundown)) =
                    self.add_subgraph(pair, extends_pair, block, edges, frayed_ext)
                else {
                    tracing::debug!("requery bad state add subgraph failed");
                    return None;
                };

                if force_rundown && !need_state {
                    tracing::debug!("force rundown requery bad state par");
                    return Some((pair, block))
                } else if !need_state {
                    recusing.push((block, id, pair))
                }

                None
            })
            .collect_vec();

        if !recusing.is_empty() {
            tracing::debug!("requery bad state");
            execute_on!(target = pricing, self.try_verify_subgraph(recusing));
        }

        self.par_rundown(rundown);

        tracing::debug!("finished requerying bad state");
    }

    /// rundown occurs when we have hit a attempt limit for trying to find high
    /// liquidity nodes for a pair subgraph. when this happens, we take all
    /// of the low liquidity nodes and generate all unique paths through each
    /// and then add it to the subgraph. And then allow for these low liquidity
    /// nodes as they are the only nodes for the given pair.
    #[brontes_macros::metrics_call(ptr=metrics,function_call_count, self.range_id, "rundown")]
    fn par_rundown(&mut self, pairs: Vec<(PairWithFirstPoolHop, u64)>) {
        if pairs.is_empty() {
            return
        }

        let new_subgraphs = execute_on!(target = pricing, {
            pairs
                .into_iter()
                .map(|(pair, block)| {
                    // if the rundown was forced. this means that we don't need to be so aggressive
                    // with the ign
                    let ignores = self
                        .graph_manager
                        .verify_subgraph_on_new_path_failure(pair)
                        .unwrap_or_default();

                    let extends = self.graph_manager.subgraph_extends(pair);

                    if ignores.is_empty() {
                        tracing::debug!(
                            ?pair,
                            ?block,
                            "rundown for subgraph has no edges we are supposed to ignore"
                        );
                    }

                    // take all combinations of our ignore nodes. If the rundown was forced, we,
                    // won't bother trying to generate a diverse set and
                    if ignores.len() > 1 {
                        ignores
                            .iter()
                            .copied()
                            .combinations(ignores.len() - 1)
                            .map(|i| RequeryPairs {
                                pair,
                                extends_pair: extends,
                                block,
                                ignore_state: i.into_iter().collect::<FastHashSet<_>>(),
                                frayed_ends: vec![],
                            })
                            .collect_vec()
                    } else {
                        vec![RequeryPairs {
                            extends_pair: extends,
                            pair,
                            block,
                            ignore_state: FastHashSet::default(),
                            frayed_ends: vec![],
                        }]
                    }
                })
                .collect_vec()
                .into_par_iter()
                .map(|queries| {
                    let shit = queries.first().unwrap();
                    let pair = shit.pair;
                    let block = shit.block;
                    let (edges, mut extend): (Vec<_>, Vec<_>) =
                        par_state_query(&self.graph_manager, queries)
                            .into_iter()
                            .map(|e| (e.edges, e.extends_pair))
                            .unzip();

                    let edges = edges.into_iter().flatten().flatten().unique().collect_vec();

                    // if we dont have any edges, lets run with no ignores.
                    let (edges, extend) = (edges, extend.pop().flatten());

                    // add calls and try_verify calls

                    tracing::debug!(?pair, ?block, "finished rundown");
                    (pair, extend, block, edges, true)
                })
                .collect::<Vec<_>>()
        });

        let verify = new_subgraphs
            .into_iter()
            .filter_map(|(pair, extend, block, edges, frayed_ext)| {
                let (id, need_state, ..) =
                    self.add_subgraph(pair, extend, block, edges, frayed_ext)?;

                if !need_state {
                    return Some((block, id, pair))
                }
                None
            })
            .collect_vec();

        if verify.is_empty() {
            return
        }

        execute_on!(target = pricing, self.try_verify_subgraph(verify));
    }

    /// Adds a subgraph for verification based on the given pair, block, and
    /// edges.
    ///
    /// # Behavior
    /// This function is responsible for initializing the process of verifying a
    /// new subgraph. It involves: 1. Adding the subgraph to the
    /// verification queue with the necessary edges and state. 2. Initiating
    /// lazy loading for the exchange pools involved in the subgraph if they are
    /// not already being loaded. 3. Adding the pool as a dependent to an
    /// ongoing load operation if it's already in progress.
    ///
    /// The function returns a boolean indicating whether any lazy loading was
    /// triggered during its execution. This function ensures that all necessary
    /// pool states are loaded and ready for accurate subgraph verification.
    #[brontes_macros::metrics_call(ptr=metrics,function_call_count, self.range_id, "add subgraph")]
    fn add_subgraph(
        &mut self,
        pair: PairWithFirstPoolHop,
        extends_to: Option<Pair>,
        block: u64,
        edges: Vec<SubGraphEdge>,
        frayed_ext: bool,
    ) -> Option<(Option<u64>, bool, bool)> {
        let (needed_state, id, force_rundown) = if frayed_ext {
            let (need, id, force_rundown) = self
                .graph_manager
                .add_frayed_end_extension(pair, block, edges)?;
            (need, Some(id), force_rundown)
        } else {
            (
                self.graph_manager
                    .add_subgraph_for_verification(pair, extends_to, block, edges),
                None,
                false,
            )
        };

        let mut triggered = false;
        // because we run these state fetches in parallel, we come across the issue
        // where in block N we have a path, it however doesn't get verified so we go to
        // query more state. however the new path it takes goes through a pool that is
        // being inited with state from block N + I, when we go to calculate the price
        // the state will be off thus giving us a incorrect price
        for pool_info in needed_state {
            let is_lazy_loading =
                if let Some(blocks) = self.lazy_loader.is_loading_block(&pool_info.pool_addr) {
                    blocks.contains(&block)
                } else {
                    false
                };

            if !is_lazy_loading {
                self.lazy_loader.lazy_load_exchange(
                    pair,
                    Pair(pool_info.token_0, pool_info.token_1),
                    id,
                    pool_info.pool_addr,
                    block,
                    pool_info.dex_type,
                    self.metrics.clone(),
                );
                triggered = true;
            } else {
                self.lazy_loader
                    .add_protocol_parent(block, id, pool_info.pool_addr, pair);
                triggered = true;
            }
        }

        Some((id, triggered, force_rundown))
    }

    /// if the state loader isn't loading anything and we still have pending
    /// pairs,
    #[brontes_macros::metrics_call(ptr=metrics,function_call_count, self.range_id, "try_flush_out_pending_verification")]
    fn try_flush_out_pending_verification(&mut self) {
        if !self.lazy_loader.can_progress(&self.completed_block) {
            return
        }

        let rem_block = self
            .graph_manager
            .subgraph_verifier
            .get_rem_for_block(self.completed_block);

        if rem_block.is_empty() {
            return
        }

        self.par_rundown(
            rem_block
                .into_iter()
                .zip(vec![self.completed_block].into_iter().cycle())
                .collect_vec(),
        );
    }

    fn can_progress(&self) -> bool {
        self.lazy_loader.can_progress(&self.completed_block)
            && self
                .graph_manager
                .verification_done_for_block(self.completed_block)
            && self.completed_block < self.current_block
    }

    /// lets the state loader know if  it should be pre processing more blocks.
    /// this lets us sync between the two tasks and only let a certain amount
    /// of pre-processing occur.
    fn process_future_blocks(&self) {
        if self.completed_block + 6 > self.current_block {
            self.metrics
                .as_ref()
                .inspect(|m| m.needs_more_data(self.range_id, true));
            self.needs_more_data.store(true, SeqCst);
        } else {
            self.needs_more_data.store(false, SeqCst);
            self.metrics
                .as_ref()
                .inspect(|m| m.needs_more_data(self.range_id, false));
        }
    }

    /// Attempts to resolve the block & start processing the next block.
    #[brontes_macros::metrics_call(ptr=metrics,function_call_count, self.range_id, "try_resolve_block")]
    fn try_resolve_block(&mut self) -> Option<(u64, DexQuotes)> {
        // if there are still requests for the given block or the current block isn't
        // complete yet, then we wait
        if !self.can_progress() {
            return None
        }

        self.graph_manager.finalize_block(self.completed_block);

        // if all block requests are complete, lets apply all the state transitions we
        // had for the given block which will allow us to generate all pricing
        let (buffer, overrides) = (
            self.buffer
                .updates
                .remove(&self.completed_block)
                .unwrap_or_default(),
            self.buffer
                .overrides
                .remove(&self.completed_block)
                .unwrap_or_default(),
        );

        for (address, update) in buffer {
            if overrides.contains(&address) {
                // we will just init the pool but nothing else since the state of the pool is
                // end of block
                self.init_new_pool_override(address, update)
            } else {
                // make sure to apply state updates
                self.update_known_state(address, update);
            }
        }

        let block = self.completed_block;

        let mut res = self
            .dex_quotes
            .remove(&self.completed_block)
            .unwrap_or(DexQuotes(vec![]));

        self.handle_drastic_price_changes(&mut res);
        // prune dead subgraphs
        self.graph_manager
            .prune_dead_subgraphs(self.completed_block);

        self.metrics
            .as_ref()
            .inspect(|m| m.range_finished_block(self.range_id));
        self.should_return().then_some((block, res))
    }

    // checks skip
    fn should_return(&mut self) -> bool {
        // remove ones lower than completed
        self.skip_pricing.retain(|b| b >= &self.completed_block);

        let res = self
            .skip_pricing
            .front()
            .map(|f| f != &self.completed_block)
            .unwrap_or(true);

        self.completed_block += 1;
        res
    }

    /// For the given DexQuotes, checks to see if the start price vs the end
    /// price contains a drastic change. This is done to avoid incorrect
    /// prices. prices can have drastic changes within the block (think
    /// sandwich for example). However we know that any incorrect price
    /// should be corrected before the end of the block. We use this knowledge
    /// to see if the price had a massive valid change or is just being
    /// manipulated for mev.
    fn handle_drastic_price_changes(&mut self, prices: &mut DexQuotes) {
        let mut first = FastHashMap::default();
        let mut last = FastHashMap::default();

        prices
            .0
            .iter()
            .filter_map(|p| p.as_ref())
            .for_each(|tx_prices| {
                for (k, p) in tx_prices {
                    let gt = p.goes_through;
                    if let Entry::Vacant(v) = first.entry((*k, gt)) {
                        v.insert(p.clone().get_price(PriceAt::Before));
                        last.insert((*k, gt), p.clone().get_price(PriceAt::After));
                    } else {
                        last.insert((*k, gt), p.clone().get_price(PriceAt::After));
                    }
                }
            });

        // all pairs over max price movement
        let removals = first
            .into_iter()
            .filter_map(|(key, price)| Some((key, price, last.remove(&key)?)))
            .filter_map(|(key, first_price, last_price)| {
                let block_movement = if last_price > first_price {
                    if last_price == Rational::ZERO {
                        return None
                    }
                    (&last_price - &first_price) / last_price
                } else {
                    if first_price == Rational::ZERO {
                        return None
                    }
                    (&first_price - &last_price) / first_price
                };
                if block_movement > MAX_BLOCK_MOVEMENT {
                    Some(key)
                } else {
                    None
                }
            })
            .collect::<FastHashSet<_>>();

        prices
            .0
            .iter_mut()
            .filter_map(|p| p.as_mut())
            .for_each(|map| map.retain(|k, v| !removals.contains(&(*k, v.goes_through))));

        removals.into_iter().for_each(|pair| {
            tracing::debug!(target: "brontes::missing_pricing",pair=?pair.0,
                            goes_through=?pair.1, "drastic price change detected. removing pair");
            self.graph_manager
                .remove_subgraph(PairWithFirstPoolHop::from_pair_gt(pair.0, pair.1));
        })
    }

    #[brontes_macros::metrics_call(ptr=metrics,function_call_count, self.range_id, "on_close")]
    fn on_close(&mut self) -> Option<(u64, DexQuotes)> {
        if self.completed_block > self.current_block
            || !self
                .graph_manager
                .verification_done_for_block(self.completed_block)
        {
            return None
        }

        self.graph_manager.finalize_block(self.completed_block);

        // if all block requests are complete, lets apply all the state transitions we
        // had for the given block which will allow us to generate all pricing
        let (buffer, overrides) = (
            self.buffer
                .updates
                .remove(&self.completed_block)
                .unwrap_or_default(),
            self.buffer
                .overrides
                .remove(&self.completed_block)
                .unwrap_or_default(),
        );

        for (address, update) in buffer {
            if overrides.contains(&address) {
                self.init_new_pool_override(address, update)
            } else {
                self.update_known_state(address, update);
            }
        }

        let block = self.completed_block;

        let mut res = self
            .dex_quotes
            .remove(&self.completed_block)
            .unwrap_or(DexQuotes(vec![]));

        self.handle_drastic_price_changes(&mut res);
        // prune dead subgraphs
        self.graph_manager
            .prune_dead_subgraphs(self.completed_block);

        self.metrics
            .as_ref()
            .inspect(|m| m.range_finished_block(self.range_id));

        self.should_return().then_some((block, res))
    }

    #[brontes_macros::metrics_call(ptr=metrics,function_call_count, self.range_id, "poll_state_processing")]
    fn poll_state_processing(
        &mut self,
        cx: &mut Context<'_>,
    ) -> Option<Poll<Option<(u64, DexQuotes)>>> {
        let mut buf = vec![];
        while let Poll::Ready(Some(state)) = self.lazy_loader.poll_next(cx) {
            buf.push(state);
        }

        if !buf.is_empty() {
            self.on_pool_resolve(buf);
        }

        let pairs = self.lazy_loader.pairs_to_verify();
        if !pairs.is_empty() {
            execute_on!(target = pricing, self.try_verify_subgraph(pairs));
        }

        self.try_flush_out_pending_verification();

        // // check if we can progress to the next block.
        self.try_resolve_block()
            .map(|prices| Poll::Ready(Some(prices)))
    }
}

impl<T: TracingProvider> Stream for BrontesBatchPricer<T> {
    type Item = (u64, DexQuotes);

    #[brontes_macros::metrics_call(ptr=metrics, poll_rate, self.range_id)]
    fn poll_next(
        mut self: std::pin::Pin<&mut Self>,
        cx: &mut std::task::Context<'_>,
    ) -> std::task::Poll<Option<Self::Item>> {
        if let Some(new_prices) = self.poll_state_processing(cx) {
            return new_prices
        }

        // ensure clearing when finished
        if self.finished.load(SeqCst) {
            cx.waker().wake_by_ref();
        }

        // small budget as pretty heavy loop
        let mut budget = 4;
        'outer: loop {
            self.process_future_blocks();

            let mut block_updates = Vec::new();
            loop {
                match self.update_rx.poll_recv(cx).map(|inner| {
                    inner.and_then(|action| match action {
                        DexPriceMsg::DisablePricingFor(block) => {
                            self.skip_pricing.push_back(block);
                            tracing::debug!(?block, "skipping pricing");
                            Some(PollResult::Skip)
                        }
                        DexPriceMsg::Update(update) => Some(PollResult::State(update)),
                        DexPriceMsg::DiscoveredPool(NormalizedPoolConfigUpdate {
                            protocol,
                            tokens,
                            pool_address,
                            ..
                        }) => {
                            if protocol.has_state_updater() {
                                self.new_graph_pairs
                                    .insert(pool_address, (protocol, Pair(tokens[0], tokens[1])));
                            };
                            Some(PollResult::DiscoveredPool)
                        }
                        DexPriceMsg::Closed => None,
                    })
                }) {
                    Poll::Ready(Some(u)) => {
                        if let PollResult::State(update) = u {
                            if let Some(overlap) = self.overlap_update.take() {
                                block_updates.push(overlap);
                            }
                            if update.block == self.current_block {
                                block_updates.push(update);
                            } else {
                                self.overlap_update = Some(update);
                                cx.waker().wake_by_ref();
                                break
                            }
                        }
                    }
                    Poll::Ready(None) => {
                        cx.waker().wake_by_ref();
                        break
                    }
                    Poll::Pending => {
                        if self.lazy_loader.is_empty()
                            && self.lazy_loader.can_progress(&self.completed_block)
                            && self
                                .graph_manager
                                .verification_done_for_block(self.completed_block)
                            && block_updates.is_empty()
                            && self.finished.load(SeqCst)
                        {
                            return Poll::Ready(self.on_close())
                        }
                        break
                    }
                }
            }

            if block_updates.is_empty() {
                break 'outer
            }

            #[allow(clippy::blocks_in_conditions)]
            if block_updates
                .first()
                .map(|u| u.block)
                .map(|block_update_num| self.skip_pricing.contains(&block_update_num))
                .unwrap_or(false)
            {
                self.on_pool_update_no_pricing(block_updates);
            } else {
                self.on_pool_updates(block_updates);
            }

            budget -= 1;
            if budget == 0 {
                break 'outer
            }
        }

        Poll::Pending
    }
}

enum PollResult {
    State(PoolUpdate),
    DiscoveredPool,
    Skip,
}

/// a ordered buffer for holding state transitions for a block while the lazy
/// loading of pools is being applied
pub struct StateBuffer {
    /// updates for a given block in order that they occur
    pub updates:   FastHashMap<u64, VecDeque<(Address, PoolUpdate)>>,
    /// when we have a override for a given address at a block. it means that
    /// we don't want to apply any pool updates for the block. This is useful
    /// for when a pool is  at a block and we can only query the end
    /// of block state. we can override all pool updates for the init block
    /// to ensure our pool state is in sync
    pub overrides: FastHashMap<u64, FastHashSet<Address>>,
}

impl Default for StateBuffer {
    fn default() -> Self {
        Self::new()
    }
}

impl StateBuffer {
    pub fn new() -> Self {
        Self { updates: FastHashMap::default(), overrides: FastHashMap::default() }
    }
}