pub trait ExchangePoolLiquidityReader: Send + Sync {
// Required method
fn usdc_pool_balance<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<Decimal, ApiError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}