Oraichain DAO
  • Introduction
    • About Oraichain
    • Oraichain Architechure
    • Blockchain and AI Powerhouse
    • Applications and use cases
  • Setting up wallet on Oraichain
    • Intro
    • Owallet
    • How to set up Keplr
  • Getting Started
    • Testnet
    • Mainnet
      • Become a Sentry node operator by Docker
      • Build Linux binary from source and become a Sentry Node Operator
      • Running a validator node on Oraichain .
    • Setting up Oraichain dev environment
  • Cosmwasm Quick Start
    • Understanding Cosmwasm File Structure
    • Intro to writing Cosmwasm Smart contract
    • Writing CW-721 NFT Contract
    • Deploying Smart contracts on Oraichain
    • Building a Favourite number dApp
  • RPC and tooling
    • RPC Endpoints
    • Tooling and Infra
    • Developer cheatsheet
  • Welcome to Oraichain DAO
    • Governance
      • Staking to Delegate on Oraichain
      • Selecting a Validator
      • DAO Treasury
    • How to Join
Powered by GitBook
On this page
  • Learn more about cosmwasm
  • Commands that always help 🌟
  • Tools for Deploying the contracts and interacting with them
  1. RPC and tooling

Developer cheatsheet

PreviousTooling and InfraNextGovernance

Last updated 1 year ago

This section contains all the neccessary resources that are required for developing full fledged dApps on Oraichain .

Learn more about cosmwasm

For learning more about cosmwasm here are the resources :

For learning about tools that are used for building dApps on Oraichain you can refer

Commands that always help 🌟

For bootstrapping a dApp project on Oraichain

  1. Install Beaker

cargo install -f beaker # `-f` flag for up-to-date version 

  1. using Interwasm DAO's template

cargo generate --git https://github.com/CosmWasm/cw-template.git --branch 1.0-minimal --name cw-starter

Tools for Deploying the contracts and interacting with them

cw-simulate : your sword for deploying the contracts on oraichain ⚔️

yarn add @oraichain/cw-simulate -D

cw-tools : build and generate schemas for your contract in one go

npm install -g @oraichain/cwtools

For learning more about beaker do refer to .

For learning more about cw-simulate do refer it's

Do checkout their for learning more about this

Cosmwasm book
cosmwasm zero to hero github repo
ts-codegen (For creating types and methods from your contract )
ts-code yt playlist
cosmos kit (For getting wallet connect functionality on client )
Interchain UI
beaker's github
documentation
github