nibiru_std/bindings/mod.rs
1//! bindings/mod.rs: Nibiru `CosmosMsg::Custom<T>` module bindings for smart contracts.
2//!
3//! Bindings refer to a layer of code that allows two different programming
4//! languages or systems to communicate with each other.
5//! In the context of CosmWasm smart contracts and the Cosmos SDK, bindings
6//! allow the Go-based Cosmos SDK to interact with and execute smart contracts,
7//! which are written in Rust and compiled to WebAssembly (Wasm).
8
9pub mod msg;