Setting up Oraichain dev environment
Last updated
Last updated
This tutorial will help you setup development environment for enabling you to write your first smart contract on Oraichain , which is a blockchain bridging the gap between Artificial intelligence and blockchain thus offering a world of limitless possibilities . if you wanna deep dive into the intricacies of oraichain , I encourage you to read their whitepaper . So let’s begin.
For following along this tutorial I encourage you to working with linux , it would be really easy for you to install all dependencies in linux , if you are working on windows you can install Windows subsystem for linux (WSL) , which will basically enable you to run linux shell in your windows machine .
Smart contracts in Oraichain are written using Cosmwasm , which is a library for writing smart contracts in rust so we need to start by installing rust which can be done using the following steps :
Check if you have installed rust correctly or not
For confirming your installation run the below given commands :
rustup is basically your rust manager , which manages the versions of rust , and for oraichain development we need the stable release of rust thus u should run the below command .
now confirm the installation of rust using the below
Cargo is the package manager of rust world , it will help you install and manage all the packages and dependencies for your project .
Our smart contracts will be compiled in to wasm bytecode , which is basically a bytecode format understood by browser. Our wasm will be compiled from rust so we will be using rustup for that , to add the wasm target run the command
Now we are prepared to get some boilerplate installed into our system , so let’s move on to next step .
Another requirement we need to generate the boilerplate is Cargo Generate. This can be installed via CLI using commands:
cargo-generate is a command-line tool used in Rust programming for generating new Rust projects from predefined templates. It allows developers to quickly set up a new project with a specific structure, dependencies, and configuration.
Now we have installed all the dependencies to help us get started , so lets use the smart contract template by the Interwasm team for enabling us to craft smart contracts using the cosmwasm framework , simply enter the CLI command .
using the older version
The version I will be using is 1.0-minimal
. This version has minimal boilerplate so we won't have to delete much, although it isn't the latest version. So run the command:
Here is a snapshot of how it will look , after successful installation you should be having the same output .
Now you need to check into the directory of your folder , in my case hello-cw for you it might be the name you have selected for your project .
Run the below command to enter your project directory
For installing cwtools simply enter the command
This tool can be your secret weapon as a SamOrai as it enables you to compile your smart contract and interact with it as well , we will learn more about it in further sections
For installing cosmwasm ide simply install it from this link .after installing it locally into your machine you should be having something like this
With this we have completed the required set up for starting up with Oraichain development in further sections we are going to learn about writing smart contracts and deploying them on Oraichain .