pub struct Noesis { /* private fields */ }Implementations§
Source§impl Noesis
impl Noesis
pub fn new(api_key: impl Into<String>) -> Self
pub fn with_base_url( api_key: impl Into<String>, base_url: impl Into<String>, ) -> Self
pub async fn token_preview(&self, mint: &str) -> Result<Value>
pub async fn token_scan(&self, mint: &str) -> Result<Value>
pub async fn token_top_holders(&self, mint: &str) -> Result<Value>
pub async fn token_bundles(&self, mint: &str) -> Result<Value>
pub async fn token_fresh_wallets(&self, mint: &str) -> Result<Value>
pub async fn token_dev_profile(&self, mint: &str) -> Result<Value>
pub async fn token_best_traders(&self, mint: &str) -> Result<Value>
pub async fn token_early_buyers(&self, mint: &str, hours: u32) -> Result<Value>
pub async fn wallet_profile(&self, addr: &str) -> Result<Value>
pub async fn wallet_history(&self, addr: &str) -> Result<Value>
pub async fn wallet_connections(&self, addr: &str) -> Result<Value>
pub async fn wallets_batch_identity( &self, addresses: &[String], ) -> Result<Value>
pub async fn cross_holders(&self, tokens: &[String]) -> Result<Value>
pub async fn cross_traders(&self, tokens: &[String]) -> Result<Value>
pub async fn chain_status(&self) -> Result<Value>
pub async fn chain_fees(&self) -> Result<Value>
pub async fn account(&self, addr: &str) -> Result<Value>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Noesis
impl !RefUnwindSafe for Noesis
impl Send for Noesis
impl Sync for Noesis
impl Unpin for Noesis
impl UnsafeUnpin for Noesis
impl !UnwindSafe for Noesis
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