-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4bba462
commit 25ba160
Showing
5 changed files
with
37 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,20 +6,41 @@ | |
|
||
Release Procedure is defined in the [CONTRIBUTING](CONTRIBUTING.md#release-procedure) document. | ||
|
||
## v6.3.0 | ||
## v6.4.0 | ||
|
||
Highlights: | ||
|
||
- Cosmos SDK v0.47.7 patch update. | ||
- New queries: `oracle/MissCounters`, `uibc/Inflows`, `uibc/QuotaExpires`, `leverage/RegisteredTokenMarkets` | ||
- Cosmos SDK v0.47.10 patch update. | ||
- IBC Hooks: we integrated ICS20 Memo handling. | ||
- Update `uibc/MsgGovUpdateQuota` Msg type to handle the new inflow parameters. | ||
- Update `uibc/QueryAllOutflowsResponse` to include denom symbol (token name) in every outflow. | ||
|
||
[CHANGELOG](CHANGELOG.md) | ||
|
||
### IBC Hooks | ||
|
||
This release bring the first part of the seamless cross chain money market transactions. At UX we want to provide the best User Experience for handling lending and leverage. In this release we support the following `x/leverage` messages: | ||
|
||
- `MsgSupply` | ||
- `MsgSupplyCollateral` | ||
- `MsgLiquidate` | ||
|
||
The operation can only use tokens as the part of the IBC transfer (after any intermediate deductions) and the supplier / liquidator must be the IBC recipient (we don't acting on someone else behalf). Authz is not supported. The remaining tokens will be credited to the recipient. | ||
|
||
### Validators | ||
|
||
**Upgrade Title** (for Cosmovisor): **v6.3**. | ||
**Upgrade Title** (for Cosmovisor): **v6.4**. | ||
|
||
Update Price Feeder to `umee/2.4.2+`. | ||
|
||
#### libwasmvm update | ||
|
||
Our dependencies have been updated. The binary requires `libwasmvm v1.5.2`. When you build the binary from source on the server machine you probably don't need any change. However when you download a binary from GitHub, or from other source, make sure you update the `/usr/lib/libwasmvm.<cpu_arch>.so`. For example: | ||
|
||
- copy from `$GOPATH/pkg/mod/github.com/!cosm!wasm/[email protected]/internal/api/libwasmvm.$(uname -m).so` | ||
- or download from github `wget https://raw.githubusercontent.com/CosmWasm/wasmvm/v1.5.2/internal/api/libwasmvm.$(uname -m).so -O /lib/libwasmvm.$(uname -m).so` | ||
|
||
You don't need to do anything if you are using our Docker image. | ||
|
||
### Upgrade instructions | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,11 +10,13 @@ Full documentation is hosted at [learning.ux.xyz](https://learning.ux.xyz). Howe | |
|
||
You need 2 binaries to run a validator: `umeed` and `price-feeder`. | ||
|
||
Make sure you run the right binary for the testnet or the mainnet. Consult the chain upgrades on [mainnet](https://www.mintscan.io/umee/proposals) and [testnet](https://explorer.network.umee.cc/Canon-4/gov). | ||
|
||
### Umeed | ||
|
||
You can get a binary by: | ||
|
||
1. [Build](./README.md#build) yourself and follow the latest [Release Notes](./RELEASE_NOTES.md). Make sure you run the right binary for the testnet or the mainnet. Consult the chain upgrades on [mainnet](https://www.mintscan.io/umee/proposals) and [testnet](https://explorer.network.umee.cc/Canon-4/gov). | ||
1. [Build](./README.md#build) yourself and follow the latest [Release Notes](./RELEASE_NOTES.md). | ||
Check failure on line 19 in docs/VALIDATOR.md GitHub Actions / markdown-lintTrailing spaces
|
||
|
||
2. If you build the binary on a different OS than your validator OS, then you need to copy `libwasmvm`: | ||
|
||
|
@@ -24,7 +26,7 @@ You can get a binary by: | |
|
||
NOTE: use the correct `wasmvm` version, according to the latest [Release Notes](./RELEASE_NOTES.md) or the [compatibility matrix](./README.md#release-compatibility-matrix). | ||
|
||
3. Download the right [binary build](https://github.com/umee-network/umee/releases) or use a [container image](https://github.com/umee-network/umee/pkgs/container/umeed) (docker). The binary build is compatible with the latest Ubuntu LTS x86-64. You MUST also copy the `libwasmvm` (see note in 2. about libwasmvm version): | ||
3. Download the right [binary build](https://github.com/umee-network/umee/releases). The binary build is compatible with the latest Ubuntu LTS x86-64. You MUST also copy the `libwasmvm` (see note in 2. about libwasmvm version): | ||
|
||
```sh | ||
wget https://raw.githubusercontent.com/CosmWasm/wasmvm/<version>/internal/api/libwasmvm.$(uname -m).so -O /lib/libwasmvm.$(uname -m).so | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters