mantrachain_std/lib.rs
1#![doc = include_str!("../README.md")]
2#![cfg_attr(docsrs, feature(doc_cfg))]
3#![forbid(unsafe_code)]
4#![warn(trivial_casts, trivial_numeric_casts, unused_import_braces)]
5
6/// The version (commit hash) of the Cosmos SDK used when generating this library.
7pub const MANTRACHAIN_VERSION: &str = include_str!("types/MANTRACHAIN_COMMIT");
8
9mod serde;
10pub mod shim;
11
12#[allow(deprecated)]
13pub mod types;
14
15pub use shim::{cosmwasm_to_proto_coins, try_proto_to_cosmwasm_coins};