From bc5d0068e4d3f87eb2e9917f04b3d39240c68c30 Mon Sep 17 00:00:00 2001 From: Noon van der Silk Date: Wed, 10 Jul 2024 09:55:57 +0100 Subject: [PATCH] bump mithril version --- docs/docs/tutorial/index.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/docs/tutorial/index.md b/docs/docs/tutorial/index.md index 1964d19fa25..ae625750109 100644 --- a/docs/docs/tutorial/index.md +++ b/docs/docs/tutorial/index.md @@ -33,11 +33,12 @@ After ensuring the tools above are available, begin by downloading pre-built bin ```shell mkdir -p bin version=0.17.0 +mithril_version=2423.0 curl -L -O https://github.com/input-output-hk/hydra/releases/download/${version}/hydra-x86_64-linux-${version}.zip unzip -d bin hydra-x86_64-linux-${version}.zip curl -L -o - https://github.com/IntersectMBO/cardano-node/releases/download/8.11.0/cardano-node-8.11.0-linux.tar.gz \ | tar xz ./bin/cardano-node ./bin/cardano-cli -curl -L -o - https://github.com/input-output-hk/mithril/releases/download/2412.0/mithril-2412.0-linux-x64.tar.gz \ +curl -L -o - https://github.com/input-output-hk/mithril/releases/download/{mithril_version}/mithril-{mithril_version}-linux-x64.tar.gz \ | tar xz -C bin mithril-client chmod +x bin/* ``` @@ -48,11 +49,12 @@ chmod +x bin/* ```shell mkdir -p bin version=0.17.0 +mithril_version=2423.0 curl -L -O https://github.com/input-output-hk/hydra/releases/download/${version}/hydra-aarch64-darwin-${version}.zip unzip -d bin hydra-aarch64-darwin-${version}.zip curl -L -o - https://github.com/IntersectMBO/cardano-node/releases/download/8.11.0/cardano-node-8.11.0-macos.tar.gz \ | tar xz --wildcards ./bin/cardano-node ./bin/cardano-cli './bin/*.dylib' -curl -L -o - https://github.com/input-output-hk/mithril/releases/download/2412.0/mithril-2412.0-macos-x64.tar.gz \ +curl -L -o - https://github.com/input-output-hk/mithril/releases/download/{mithril_version}/mithril-{mithril_version}-macos-x64.tar.gz \ | tar xz -C bin chmod +x bin/* ``` @@ -512,7 +514,7 @@ cardano-cli transaction submit --tx-file bob-commit-tx.json ``` -After you've prepared your transactions, the `hydra-node` will find all UTxO associated with the funds key and create a draft of the commit transaction. You'll then sign this transaction using the funds key and submit it to the Cardano layer 1 network. +After you've prepared your transactions, the `hydra-node` will find all UTxO associated with the funds key and create a draft of the commit transaction. You'll then sign this transaction using the funds key and submit it to the Cardano layer 1 network. Once the `hydra-node` sees this transaction, you should see a `Committed` status displayed on your WebSocket connection.