fix(transfers): update rust & wasmd versions in README.md (#111)

This commit is contained in:
dusterbloom 2024-07-23 21:46:10 +02:00 committed by GitHub
parent 88f738daae
commit e1b13a0e06
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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
``` ```