Store WASM Code
This uploads the code for Open Edition Minter
The source code is available at https://github.com/public-awesome/launchpad/releases/tag/v3.0.0-beta.1
### Compile Instructions
sh<br />docker run --rm -v \$(pwd)\:/code \\<br /> --mount type=volume,source=\$(basename \$(pwd)\)_cache\,target=/code/target \\<br /> --mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \\<br /> cosmwasm/workspace-optimizer:0.12.13<br />
This results in the following SHA256 checksum:
<br />e9aaa59b4bb41f1ae3976fb38f8b3e94265d35b0f9ddf27cc34ae1a5b241a7ff open_edition_minter.wasm<br />
### Verify On-chain Contract
sh<br />starsd q gov proposal $id --output json \\<br />| jq -r '.content.wasm_byte_code' \\<br />| base64 -d \\<br />| gzip -dc \\<br />| sha256sum<br />
### Verify Local Contract
<br />sha256sum artifacts/open_edition_minter.wasm<br /><br />