provwasm-std 2.8.0

Rust bindings that enable CosmWasm smart contracts to interact with custom modules in the Provenance Blockchain
Documentation
1
2
3
4
5
6
7
8
9
// Conditionally compile IBC modules based on feature flags
#[cfg(any(feature = "ibc-all", feature = "ibc-applications"))]
pub mod applications;

#[cfg(any(feature = "ibc-all", feature = "ibc-core"))]
pub mod core;

#[cfg(any(feature = "ibc-all", feature = "ibc-lightclients"))]
pub mod lightclients;