Build smart contracts on the cloud powered by gitpod.
After your workspace is ready, follow next steps.
✔️ Close all terminals, and start new one.
✔️ Create your smartcontract project.
cargo generate --git https://github.com/CosmWasm/cosmwasm-template.git --name PROJECT_NAME
cd PROJECT_NAME
This create a basic counter smartcontract.
✔️ Build your smartcontract
cargo wasm
This produce project.wasm
in target/wasm32-unknown-unknown/release
directory, that you can download from editor.
Follow this guide to optimize your release.
Finally you can upload to a chain like juno chain. 🚀