Skip to content

Releases: CosmosContracts/cw-unity-prop

v0.3.4-alpha

22 Sep 21:49
Compare
Choose a tag to compare
v0.3.4-alpha Pre-release
Pre-release

Changes to check support of wasmd v0.29.0-rc1

What's Changed

Full Changelog: v0.3.2...v0.3.4-alpha

v0.3.3

09 Sep 16:15
5db1d23
Compare
Choose a tag to compare
v0.3.3 Pre-release
Pre-release

CI-only changes and integration test version bumps.

What's Changed

Full Changelog: v0.3.2...v0.3.3

v0.3.2

25 May 09:40
Compare
Choose a tag to compare
v0.3.2 Pre-release
Pre-release

Removes a cmd in CI that stopped the already running container.

Full Changelog: v0.3.1...v0.3.2

v0.3.1

25 May 09:20
0ce6c75
Compare
Choose a tag to compare
v0.3.1 Pre-release
Pre-release

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

24 Apr 09:09
71dc2f6
Compare
Choose a tag to compare

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

11 Apr 13:04
876cca8
Compare
Choose a tag to compare

Upgrade dependencies to current ahead of testing cycle.

What's Changed

Full Changelog: v0.1.0...v0.2.0

v0.1.0

08 Apr 17:24
d9623a3
Compare
Choose a tag to compare

The first stable, provisionally audited version of the contract.

What's Changed

New Contributors

Full Changelog: https://github.com/CosmosContracts/cw-unity-prop/commits/v0.1.0