provwasm_std/
lib.rs

1/// The version (commit hash) of the Cosmos SDK used when generating this library.
2pub const PROVENANCE_VERSION: &str = include_str!("types/PROVENANCE_COMMIT");
3
4pub mod metadata_address;
5pub mod shim;
6#[allow(
7    deprecated,
8    unused_imports,
9    clippy::large_enum_variant,
10    clippy::too_many_arguments
11)]
12pub mod types;
13
14pub use shim::{cosmwasm_to_proto_coins, try_proto_to_cosmwasm_coins};
15
16// Indicate that smart contracts that use this lib can only be run on the Provenance Blockchain.
17#[no_mangle]
18extern "C" fn requires_provenance() {}