-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(nibiru-std): stargate queries and stargate msg trait impls
- Loading branch information
1 parent
becc614
commit cc1fa0d
Showing
3 changed files
with
252 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,12 @@ | ||
//! bindings/mod.rs: Nibiru `CosmosMsg::Custom<T>` module bindings for smart contracts. | ||
//! | ||
//! Bindings refer to a layer of code that allows two different programming | ||
//! languages or systems to communicate with each other. | ||
//! In the context of CosmWasm smart contracts and the Cosmos SDK, bindings | ||
//! allow the Go-based Cosmos SDK to interact with and execute smart contracts, | ||
//! which are written in Rust and compiled to WebAssembly (Wasm). | ||
pub mod msg; | ||
pub mod querier; | ||
pub mod query; | ||
pub mod state; | ||
pub mod state; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters