stargaze

Prop 154: Launchpad Whitelist Contract v2.1.0

Store WASM Code

This uploads the code for whitelist, a contract for creating zero mint fee whitelists.

The source code is available at https://github.com/public-awesome/launchpad/releases/tag/v2.1.0.

### Compile Instructions

sh<br />docker run --rm -v \$(pwd)\:/code --platform linux/amd64 \\<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 />565a8664d2dd300b4c8aa74a024e22af9f083824c36e062a7f8cd30d6e299285 sg_whitelist.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_whitelist.wasm<br /><br />