Fetch weights/fee _state changes_ from GBQ, not the reconstructed state
markusbkoch opened this issue · 0 comments
The following is downloading the reconstructed state from GBQ, which is very resource intensive. GBQ has to process all state changes to reconstruct the state at every block and the downloaded dataset is much larger than it needed be, since most of the time weights and fees remains constant. Most pools are finalized and those parameters can't change at all.
BalancerPools_Model/data/pulldata.py
Lines 228 to 231 in 9489bb0
I suggest this be modified so as to only download the state changes (basically the events
subquery in view_pools_fees.sql
and view_pools_weights.sql
) and the state be reconstructed as part of the cadCAD simulation. This would be analogous to the current approach for swaps, joins, exits.