CosmWasm Starter Pack
This is a stripped down version of https://github.com/InterWasm/cw-template.
This is a template to build smart contracts in Rust to run inside a Cosmos SDK module on all chains that enable it. To understand the framework better, please read the overview in the cosmwasm repo, and dig into the cosmwasm docs. This assumes you understand the theory and just want to get coding.
Creating a new repo from template
Assuming you have a recent version of rust and cargo (v1.51.0+) installed (via rustup), then the following should get you a new repo to start a contract:
Install cargo-generate and cargo-run-script. Unless you did that before, run this line now:
cargo install cargo-generate cargo-run-script --features vendored-openssl
Now, use it to create your new contract. Go to the folder in which you want to place it and run:
cargo generate --git https://github.com/AndrewPochapsky/cosmwasm-starter.git --name PROJECT_NAME
You will now have a new folder called PROJECT_NAME
(I hope you changed that to something else)
containing a simple working contract and build system that you can customize.
Create a Repo
After generating, you have a initialized local git repo, but no commits, and no remote.
Go to a server (eg. github) and create a new upstream repo (called YOUR-GIT-URL
below).
Then run the following:
# this is needed to create a valid Cargo.lock file (see below)
cargo check
git branch -M main
git add .
git commit -m 'Initial Commit'
git remote add origin YOUR-GIT-URL
git push -u origin master
CI Support
We have template configurations for both GitHub Actions and Circle CI in the generated project, so you can get up and running with CI right away.
One note is that the CI runs all cargo
commands
with --locked
to ensure it uses the exact same versions as you have locally. This also means
you must have an up-to-date Cargo.lock
file, which is not auto-generated.
The first time you set up the project (or after adding any dep), you should ensure the
Cargo.lock
file is updated, so the CI will test properly. This can be done simply by
running cargo check
or cargo unit-test
.