1
0
mirror of https://github.com/payden/libwsclient synced 2025-06-13 12:53:52 +00:00
payden_libwsclient/bot/order_manager.rs
2025-05-16 15:09:24 +09:00

13 lines
369 B
Rust

use solana_sdk::transaction::Transaction;
pub struct OrderManager {}
impl OrderManager {
pub fn new(_rpc_client: solana_client::rpc_client::RpcClient) -> Self {
Self {}
}
pub fn update(&mut self, _market_conditions: &crate::models::market_conditions::MarketConditions) {}
pub async fn manage_orders(&self, _executed_txs: &[Transaction]) {}
}