stargaze

Prop 160: CosmWasm Fixed Multisig Contract v1.0.1

Store WASM Code

Contract uploaded: cw3_fixed_multisig.wasm.

The source code is available at https://github.com/CosmWasm/cw-plus/tree/v1.0.1/contracts/cw3-fixed-multisig.

This is a basic CosmWasm multisig contract that enables on-chain multisigs that are easier to use than the native Cosmos SDK multisig.

Creators can use this to distribute their mint revenue and royalties to a multisig that can be controlled by a group of people. Multisigs can also be used to launch collections, manage NFT vaults, etc.

### 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.11<br />

This results in the following SHA256 checksum:

<br />77d9cd64a295d21080986b43b3c3fea71c219b22cbeccbddebca1a7188f431b9<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/cw3_fixed_multisig.wasm<br />