Intro to writing Cosmwasm Smart contract
In this article, we will explore the fundamentals of CosmWasm smart contracts on Oraichain. Through the course of this article, we will understand token contracts, ready to deploy on Oraichain CosmWasm.
Once we are all set with the required requisites, let’s start working on our first token contract on Oraichain.
Setting up the Dev Environment
To understand, how to set the dev environment for writing CosmWasm smart contracts, follow the previous tutorial about setting up dev environment for oraichain .
Create a new CosmWasm Smart Contract
To create a new CosmWasm smart contract we will set up the cw-template
with the help of the following command:
Install the cw20-base
To install cw20-base, navigate to the first-token
directory, after setting up the cw-template
Then navigate to the Cargo.toml
to add the following dependencies under the dependencies
section:
💡 The CW20 token standard in CosmWasm is similar to your ERC20 token standard for EVM compatible architectures. Similar to your OpenZeppelin library for Ethereum smart contracts, Cosmos has cw-plus GitHub repo for CosmWasm smart contract templates.
Modify the contract files ⚙️
Now that , we have completed the setup , so lets modify the boilerplate code and get our token ready 🪙 . To know what each file is used for you can refer this tutorial .
We will be changing the logic inside the following files :
msg.rs
lib.rs
contract.rs
schemas.rs
For this tutorial you can ignore other files .
So let’s begin by editing src/msg.rs
file in our code editor , you can paste the following code
let’s breakdown one by one what is happening in this code .
use schemars::JsonSchema
: This line imports theJsonSchema
trait from theschemars
crate. TheJsonSchema
trait is used for generating JSON schemas for Rust data structures.use serde::{Deserialize, Serialize};
: This line imports theDeserialize
andSerialize
traits from theserde
crate. These traits are used for serializing Rust data structures into JSON and deserializing JSON back into Rust data structures.#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, JsonSchema)]
: This is a Rust attribute macro used for automatically deriving implementations of several traits for theMigrateMsg
struct. Specifically:Serialize
andDeserialize
are derived for serialization and deserialization purposes.Clone
is derived to allow creating copies of the struct.Debug
is derived to enable debug printing of the struct.PartialEq
is derived to enable comparison of instances of the struct for equality.JsonSchema
is derived to generate a JSON schema for the struct. This schema can be used for documentation or validation purposes. We will discuss the MigrateMsg struct in further steps .
Edit src/lib.rs
src/lib.rs
Now open the lib.rs and paste the following code
💡 in lib.rs we declare the crates we are using , and for this tutorial we are only modifying the contract.rs and msg.rs file .
Open src/contract.rs
and edit it
src/contract.rs
and edit itNow paste the following code in src/contract.rs
Now let’s break down the above code and understand it’s logic .
Since the execution and query logic we are using are from cw20-base crate we are not required to write our own logic for that ,
using the
use cosmwasm_std::{to_binary, Binary, Deps, DepsMut, Env, MessageInfo, Response, StdResult,};
we are importing the functionalities of cosmwasm-std library let’s understand each of them :deps
- The dependencies, this contains your contract storage, the ability to query other contracts and balances, and some API functionality.env
- The environment, contains contract information such as its address, block information such as current height and time, as well as some optional transaction info.info
- Message metadata, contains the sender of the message (Addr
) and the funds sent with it aVec<Coin>
.msg
- TheInstantiateMsg
you define insrc/msg.rs
.
Then we are using the
use cw2::set_contract_version
for setting the contract version in the instantiate function of our contract .We are using the cw-20 utilities in our execute and query functions and calling the needful functions when we need them . For example let us take the code snippet
In this code snippet we are executing the mint function from the cw20 crate which is taking recipient and amount as arguments , the mint function will mint the specified amount of tokens to the recipient account which is an address .
Instantiating the contract
We have discussed the steps for instantiating the contract and setting up cosmwasm-ide in this tutorial , for now I will directly demonstrate the procedure to interact with our deployed contract .
After following all the steps in this tutorial , you should be getting the similar interface at the cosmwasm-ide .let’s fill them
I am filling up the following options , you can toggle between option 1 or option 2 according to your requirements
Now let’s interact with our contract , I have queried token balance for my account
Hurray !! we are getting the correct response , Now we have successfully created our first token and deployed it on oraichain .
This tutorial was to introduce you to the cw20 token standard and cosmwasm contract , in future tutorials we will dive deep into the practices of writing badass cosmwasm smart contracts . till then stay tuned . Happy Hacking ✌️ .
Last updated