# Install Warp CLI
cargo install cw-warp
# Initialize a new CosmWasm project for Secret Network
warp init new-project --chain scrt && cd new-project
# Scaffold a new test contract
warp new test-contract
# Compile the contracts to optimized wasm bytecode
warp build -o
# Run tests against the contract
warp test
# Deploy the contract to a chain
warp deploy