Releases: CosmosContracts/cw-unity-prop
Releases · CosmosContracts/cw-unity-prop
v0.3.4-alpha
Changes to check support of wasmd v0.29.0-rc1
What's Changed
- Update CI script by @the-frey in #13
- tooling: help test latest junod/wasmd combo by @the-frey in #14
Full Changelog: v0.3.2...v0.3.4-alpha
v0.3.3
v0.3.2
Removes a cmd in CI that stopped the already running container.
Full Changelog: v0.3.1...v0.3.2
v0.3.1
A point release so the contracts can be exposed to Juno for CI purposes
What's Changed
- More integration tests by @the-frey in #7
- Add test for starting claim with no withdraw. by @ezekiiel in #8
- Bump versions of docker container by @the-frey in #9
- Upgrade juno to v6 rc by @the-frey in #10
- Bump CI to latest juno version with latest wasmd by @the-frey in #11
- Add scripts so mainline juno repo can build by @the-frey in #12
New Contributors
- @ezekiiel made their first contribution in #8
Full Changelog: v0.3.0...v0.3.1
v0.3.0
Non-essential changes, but improves error handling in query cases.
Also adds checksums file to releases so it can be verified.
Link to audit: https://github.com/securityDAO/audits/blob/main/cosmwasm/cw-unity-prop/v0.4_cw-unity-prop_audit.pdf
To use:
export WALLET="<wallet-name>"
export TXFLAG="--gas-prices 0.1ujuno --gas auto --gas-adjustment 1.3 -y -b block --chain-id juno-1"
# get wasm and store
mkdir cw-unity-prop && cd cw-unity-prop
wget https://github.com/CosmosContracts/cw-unity-prop/releases/download/v0.3.0/cw_unity_prop.wasm
UNITY_PROP_CODE_ID=$(junod tx wasm store "cw_unity_prop.wasm" --from $WALLET $TXFLAG --output json | jq -r '.logs[0].events[-1].attributes[0].value')
# init it
INIT='{
"native_denom": "ujuno",
"withdraw_address": "<admin-address>",
"withdraw_delay_in_days": 28
}'
junod tx wasm instantiate $UNITY_PROP_CODE_ID "$INIT" --from $WALLET --label "Juno Unity Prop v0.3.0" $TXFLAG --no-admin
What's Changed
Full Changelog: v0.2.0...v0.3.0
v0.2.0
v0.1.0
The first stable, provisionally audited version of the contract.
What's Changed
- Add additional CI by @the-frey in #2
- Add release hook that builds every github tag by @the-frey in #3
New Contributors
Full Changelog: https://github.com/CosmosContracts/cw-unity-prop/commits/v0.1.0