mirror of
https://github.com/payden/libwsclient
synced 2025-06-13 12:53:52 +00:00
9 lines
213 B
Rust
9 lines
213 B
Rust
use solana_sdk::pubkey::Pubkey;
|
|
use std::collections::HashMap;
|
|
|
|
pub struct MarketConditions {
|
|
pub liquidity: f64,
|
|
pub volume: f64,
|
|
pub volatility: f64,
|
|
pub account_balances: HashMap<Pubkey, f64>,
|
|
} |