A tool to verify a CosmWasm build result against its source.
When uploading a smart contract to a blockchain, storage is very expensive. For this reason we only want to store the absolute minimum of data required for execution on chain. However, a Wasm bytecode does not allow for reviewing the functionality that is executed in a smart contract. For auditing we need to look into the original source, which we can link on chain. In order to verify that the build result indeed matches the linked source code, we use CosmWasm Verify.
A source code is compiled into Wasm bytecode using a "builder", i.e. a compiler toolchain that typically optimizes the code for small size or low execution cost. Builders are identified by docker images in CosmWasm, which is a convenient way to represent a whole suite of tools and scripts in a short identifier.
The same source code can be compiled using different builders, e.g. when the tooling improves over time or to do custom optimization priorities (some user prefers smaller code, another user prefers cheaper execution).
CosmWasm Verify has 3 input parameters:
- Source is an URL to an optinally compressed tar archive. Currently supported protocols are: https.
- Builder is a docker image, including version.
- Checksum is the expeced SHA256 hash of the compiled wasm bytecode.
The script cosmwasm-verify
takes those 3 inputs as positional arguments. It outputs all kind
of stuff during the build process, which is meant for your entertainment and debugging.
The only guaranteed interface for verification is result code 0
in case of a successful verification and a different code if anything goes wrong.
Setup the script in your session with
git clone https://github.com/CosmWasm/cosmwasm-verify
export PATH="$PWD/cosmwasm-verify/bin:$PATH"
An example call would be
cosmwasm-verify \
https://crates.io/api/v1/crates/cw-erc20/0.7.0/download \
cosmwasm/rust-optimizer:0.10.4 \
d04368320ad55089384adb171aaea39e43d710d7608829adba0300ed30aa2988
# Shows the return code of the last script
echo $?
CosmWasm Verify is CosmWasm specific but generic enough to support multiple languages. The primary smart contract language at the moment is Rust and the primary Rust builder is cosmwasm-opt. The upcoming AssemblyScript support will require a different builder but should be handles equally by CosmWasm Verify.
In order to make our lifes easier, we need a trade-off between flexibility and pre-defined rules. Here are a set of conventions required for CosmWasm Verify to work.
- The builder is a docker image that works out of the box with
docker run <builder>
. - The builder docker image contains at least two name components (organization and name) and does not exceed a length of 128 ASCII chars.[1]
- The builder takes a volume mounted at
/code
which is the root of the code to be built. - The builder must create an
artifacts/
directory in the current directory with a<contract_name>.wasm
for each compiled contract.
- The source URL points to an optionally compressed tar archive that includes a single top directory which.
- All checksums are lower hex encoded SHA-256 hashes
[1] This is enforced by the blockchain, not CosmWasm Verify.
CosmWasm Verify aims to run in every UNIX-like environment. It requires the following tools to work:
bash
wget
docker
sha256sum
orshasum