cosmos-grpc-client 0.2.1

Cosmos grpc client with wallet integration
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod client;
mod definitions;
mod errors;
mod math;
mod wallet;

pub use crate::client::GrpcClient;
pub use crate::definitions::{BroadcastMode, CoinType};
pub use cosmwasm_std::{Decimal, StdError, StdResult, Uint128};
pub use wallet::Wallet;

#[cfg(feature = "osmosis")]
pub use osmosis_std;

pub use cosmos_sdk_proto;
pub use cosmrs;