CosmWasm 二 项目创建
使用cw-template模板初始化
环境要求
- Rust 1.55+
安装cargo-generate
cargo install cargo-generate --features vendored-openssl
cargo install cargo-run-script
创建新的合约
cargo generate --git https://github.com/CosmWasm/cw-template.git --name PROJECT_NAME
使用旧版本需要加上版本号作为参数
cargo generate --git https://github.com/CosmWasm/cw-template.git --branch <version> --name PROJECT_NAME
Example:
cargo generate --git https://github.com/CosmWasm/cw-template.git --branch 0.16 --name PROJECT_NAME