drift-labs / drift-rs

rust sdk to interact with drift v2
Apache License 2.0
22 stars 15 forks source link

Subscribe all markets/oracles helper #79

Closed jordy25519 closed 21 hours ago

jordy25519 commented 1 week ago

Sometimes its useful to subscribe to all markets. Should make a helper for that e.g:

pub enum Markets {
   All,
   Only(&[MarketId])
}
client.subscibe_markets(Markets::All);
client.subscribe_oracles(Markets::Only([MarketId::perp(0)]);
fedemagnani commented 1 day ago

Hi, can I take this?