Store WASM Code
This uploads the code for Marketplace v1.6.0 the following updates:
- Adds a new BuyFor message that accepts an asset recipient.
The source code is available at https://github.com/public-awesome/marketplace/releases/tag/v1.6.0
### 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 />04879bd1a3c75f311a02b5100765b0542bcd5e48105b5fa643af9c63344860ae sg_marketplace.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/sg_marketplace.wasm<br /><br />