fix(transfers): update rust & wasmd versions in README.md (#111)
This commit is contained in:
parent
88f738daae
commit
e1b13a0e06
1 changed files with 5 additions and 13 deletions
|
@ -8,8 +8,9 @@ and withdraw whatever funds they have.
|
||||||
|
|
||||||
### Install Rust
|
### Install Rust
|
||||||
|
|
||||||
We only have this working so far with Rust v1.76.0 since we're running against
|
The minimum Rust supported version is v1.74.1.
|
||||||
wasmd v0.44.
|
The recommended Rust version v1.79.0 since we're running against
|
||||||
|
wasmd v0.45.
|
||||||
|
|
||||||
Install rust by executing a script from the internet (😅):
|
Install rust by executing a script from the internet (😅):
|
||||||
|
|
||||||
|
@ -17,15 +18,6 @@ Install rust by executing a script from the internet (😅):
|
||||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
||||||
```
|
```
|
||||||
|
|
||||||
You may want to exit and start a new terminal session to get the rust toolchain
|
|
||||||
on your path.
|
|
||||||
|
|
||||||
Now downgrade rust to v1.76.0:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
rustup install 1.76.0
|
|
||||||
rustup default 1.76.0
|
|
||||||
```
|
|
||||||
|
|
||||||
Check the version with `cargo version`.
|
Check the version with `cargo version`.
|
||||||
|
|
||||||
|
@ -56,12 +48,12 @@ You need grpcurl:
|
||||||
go install github.com/fullstorydev/grpcurl/cmd/grpcurl@latest
|
go install github.com/fullstorydev/grpcurl/cmd/grpcurl@latest
|
||||||
```
|
```
|
||||||
|
|
||||||
You need wasmd v0.44.0:
|
You need wasmd v0.45.0:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/cosmwasm/wasmd/
|
git clone https://github.com/cosmwasm/wasmd/
|
||||||
cd wasmd
|
cd wasmd
|
||||||
git checkout v0.44.0
|
git checkout v0.45.0
|
||||||
go install ./cmd/wasmd
|
go install ./cmd/wasmd
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue