pub struct OrcaConfigsApiResponse {
pub aquafarms: HashMap<String, AquaFarm>,
pub collectibles: HashMap<String, Collectible>,
pub double_dips: HashMap<String, DoubleDip>,
pub pools: HashMap<String, Pool>,
pub program_ids: ProgramIds,
pub tokens: HashMap<String, Token>,
pub coingecko_ids: HashMap<String, String>,
pub ftx_ids: HashMap<String, String>,
}
Expand description
the resposne body from orca’s configuration api
Fields§
§aquafarms: HashMap<String, AquaFarm>
§collectibles: HashMap<String, Collectible>
§double_dips: HashMap<String, DoubleDip>
§pools: HashMap<String, Pool>
§program_ids: ProgramIds
§tokens: HashMap<String, Token>
§coingecko_ids: HashMap<String, String>
§ftx_ids: HashMap<String, String>
Implementations§
Source§impl OrcaConfigsApiResponse
impl OrcaConfigsApiResponse
pub async fn fetch_orca_config() -> Result<Self>
Sourcepub fn find_pool(
&self,
name: &str,
stable: bool,
aquafarm: bool,
) -> Result<Pool>
pub fn find_pool( &self, name: &str, stable: bool, aquafarm: bool, ) -> Result<Pool>
used to lookup pool information for the given pool matching name
if aquafarm is true, search query becomes name[aquafarm]
if stable is true, search query becomes name[stable]
if stable & aquafarm is true, search query becomes name[stable][aquafarm]
Trait Implementations§
Source§impl Clone for OrcaConfigsApiResponse
impl Clone for OrcaConfigsApiResponse
Source§fn clone(&self) -> OrcaConfigsApiResponse
fn clone(&self) -> OrcaConfigsApiResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for OrcaConfigsApiResponse
impl Debug for OrcaConfigsApiResponse
Source§impl<'de> Deserialize<'de> for OrcaConfigsApiResponse
impl<'de> Deserialize<'de> for OrcaConfigsApiResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for OrcaConfigsApiResponse
impl RefUnwindSafe for OrcaConfigsApiResponse
impl Send for OrcaConfigsApiResponse
impl Sync for OrcaConfigsApiResponse
impl Unpin for OrcaConfigsApiResponse
impl UnwindSafe for OrcaConfigsApiResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more