pub trait QpSessionRegistry: Send + Sync {
// Required methods
fn send_rfq_to_eligible(
&self,
eligible_wallets: &[WalletAddress],
message: QpOutboundMessage,
);
fn get_connected_wallets(&self) -> Vec<WalletAddress>;
}