From 241b983b65a1e144a1516b5335cd5b7f8474c0bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hasan=20=C4=B0rice?= <50718382+iricehasan@users.noreply.github.com> Date: Sat, 29 Jun 2024 15:25:31 +0300 Subject: [PATCH] Update junod-local-dev-setup.md Fix the Juno tag to the latest version v22.0.1 from v14.1.0 and, update the Rust Optimizer version to the latest 0.16.0 --- developer-guides/junod-local-dev-setup.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/developer-guides/junod-local-dev-setup.md b/developer-guides/junod-local-dev-setup.md index 31f8fb1..bc9e15b 100644 --- a/developer-guides/junod-local-dev-setup.md +++ b/developer-guides/junod-local-dev-setup.md @@ -43,7 +43,7 @@ docker run -it \ -p 26657:26657 \ -e STAKE_TOKEN=ujunox \ -e UNSAFE_CORS=true \ - ghcr.io/cosmoscontracts/juno:14.1.0 \ + ghcr.io/cosmoscontracts/juno:v22.0.1 \ ./setup_and_run.sh juno16g2rahf5846rxzp3fwlswy08fz8ccuwk03k57y ``` @@ -75,7 +75,7 @@ To call Juno inside a container, use `docker exec` like so: docker run --rm -v "$(pwd)":/code \ --mount type=volume,source="$(basename "$(pwd)")_cache",target=/code/target \ --mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \ - cosmwasm/rust-optimizer:0.12.11 + cosmwasm/rust-optimizer:0.16.0 # copy wasm to container docker cp artifacts/your_compiled.wasm juno_node_1:/your_compiled.wasm