CosmWasm Warp CLI

CosmWasm Warp CLI

Prototype, build, test, and deploy CosmWasm Smart Contracts with minimal friction across multiple chains

One tool across the entire development cycyle

# 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