pub struct Module { /* private fields */ }Implementations§
Source§impl Module
impl Module
pub fn new(rpc: Rc<HttpClient>) -> Self
Sourcepub async fn balance(
&self,
address: &str,
denom: &str,
) -> Result<QueryBalanceResponse, CosmosClient>
pub async fn balance( &self, address: &str, denom: &str, ) -> Result<QueryBalanceResponse, CosmosClient>
§Errors
Will return Err if :
- a prost encode / decode fail
- the json-rpc return an error code
- if there is some network error
Sourcepub async fn all_balances(
&self,
address: &str,
pagination: Option<PageRequest>,
) -> Result<QueryAllBalancesResponse, CosmosClient>
pub async fn all_balances( &self, address: &str, pagination: Option<PageRequest>, ) -> Result<QueryAllBalancesResponse, CosmosClient>
§Errors
Will return Err if :
- a prost encode / decode fail
- the json-rpc return an error code
- if there is some network error
Sourcepub async fn spendable_balances(
&self,
address: &str,
pagination: Option<PageRequest>,
) -> Result<QuerySpendableBalancesResponse, CosmosClient>
pub async fn spendable_balances( &self, address: &str, pagination: Option<PageRequest>, ) -> Result<QuerySpendableBalancesResponse, CosmosClient>
§Errors
Will return Err if :
- a prost encode / decode fail
- the json-rpc return an error code
- if there is some network error
Sourcepub async fn total_supply(
&self,
pagination: Option<PageRequest>,
) -> Result<QueryTotalSupplyResponse, CosmosClient>
pub async fn total_supply( &self, pagination: Option<PageRequest>, ) -> Result<QueryTotalSupplyResponse, CosmosClient>
§Errors
Will return Err if :
- a prost encode / decode fail
- the json-rpc return an error code
- if there is some network error
Sourcepub async fn supply_of(
&self,
denom: &str,
) -> Result<QuerySupplyOfResponse, CosmosClient>
pub async fn supply_of( &self, denom: &str, ) -> Result<QuerySupplyOfResponse, CosmosClient>
§Errors
Will return Err if :
- a prost encode / decode fail
- the json-rpc return an error code
- if there is some network error
Sourcepub async fn params(&self) -> Result<QueryParamsResponse, CosmosClient>
pub async fn params(&self) -> Result<QueryParamsResponse, CosmosClient>
§Errors
Will return Err if :
- a prost encode / decode fail
- the json-rpc return an error code
- if there is some network error
Sourcepub async fn denom_metadata(
&self,
denom: &str,
) -> Result<QueryDenomMetadataResponse, CosmosClient>
pub async fn denom_metadata( &self, denom: &str, ) -> Result<QueryDenomMetadataResponse, CosmosClient>
§Errors
Will return Err if :
- a prost encode / decode fail
- the json-rpc return an error code
- if there is some network error
Sourcepub async fn denoms_metadata(
&self,
pagination: Option<PageRequest>,
) -> Result<QueryDenomsMetadataResponse, CosmosClient>
pub async fn denoms_metadata( &self, pagination: Option<PageRequest>, ) -> Result<QueryDenomsMetadataResponse, CosmosClient>
§Errors
Will return Err if :
- a prost encode / decode fail
- the json-rpc return an error code
- if there is some network error
Auto Trait Implementations§
impl Freeze for Module
impl !RefUnwindSafe for Module
impl !Send for Module
impl !Sync for Module
impl Unpin for Module
impl !UnwindSafe for Module
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request