Previously in this series, we created a simple CosmWasm contract by defining contract entry points using the cosmwasm-std library. In this post, we...
CosmWasm is a powerful smart contract platform designed for the Cosmos SDK that allows developers to build efficient, secure, and scalable blockchain...
This article explains structs in Rust, how to define and instantiate them, and how to implement struct methods. What are structs? These are the custom...
In rust every value has an owner, at a given point in time there can be only one owner to the value. The value will be dropped once the owner goes out...
Error Handling · Previously in this series, we finished our CLI application in rust using CLAP. In this final post of this series, we will cover error...
Decrypt Command · Previously in this series, we covered the encryption command and configured the main function to handle the parsed arguments for the...