From 3faa399b433f9c226054028b25d2455799e29151 Mon Sep 17 00:00:00 2001 From: ccgarant Date: Sun, 9 Jun 2024 16:02:39 -0400 Subject: [PATCH] node updates for 8.9.3 --- .../cardano-submit-tx-api-tutorial.md | 4 ++-- docs/stake-pool-guides/docker-pool-guide.md | 10 +++++----- .../updating-a-cardano-node/static-build.mdx | 6 +++--- .../updating-a-cardano-node/using-dynamic-build.mdx | 8 ++++---- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/docs/cardano-developer-guides/cardano-submit-tx-api-tutorial.md b/docs/cardano-developer-guides/cardano-submit-tx-api-tutorial.md index ab012d40..d897e694 100644 --- a/docs/cardano-developer-guides/cardano-submit-tx-api-tutorial.md +++ b/docs/cardano-developer-guides/cardano-submit-tx-api-tutorial.md @@ -31,11 +31,11 @@ wget -O 8_1_2.zip https://github.com/armada-alliance/cardano-node-binaries/blob/ Unzip the contents of the zip file. ```bash title=">_ Terminal" -unzip 8_1_2.zip -d cardano-node-8.1.2 +unzip 8_1_2.zip -d cardano-node-8.9.3 ``` ```bash title=">_ Terminal" -mv cardano-node-8.1.2/cardano-node/cardano-submit-api ~/.local/bin/ +mv cardano-node-8.9.3/cardano-node/cardano-submit-api ~/.local/bin/ ``` ## Make a simple bash script to run the Cardano Submit API diff --git a/docs/stake-pool-guides/docker-pool-guide.md b/docs/stake-pool-guides/docker-pool-guide.md index 348c5fca..ed170a64 100644 --- a/docs/stake-pool-guides/docker-pool-guide.md +++ b/docs/stake-pool-guides/docker-pool-guide.md @@ -121,7 +121,7 @@ Either way, the docker image includes: Pull the image with: ```bash -docker pull armadaalliance/armada-cn:8.7.2 +docker pull armadaalliance/armada-cn:8.9.3 ``` You should see your Cardano node docker image in the list: @@ -132,7 +132,7 @@ docker images ```bash REPOSITORY TAG IMAGE ID CREATED SIZE -armadaalliance/armada-cn 8.7.2 da4414775ce6 37 seconds ago 700MB +armadaalliance/armada-cn 8.9.3 da4414775ce6 37 seconds ago 700MB ``` You can now proceed with chapter 4, in order to start the node. @@ -155,7 +155,7 @@ You should see your Cardano node docker image in the list, e.g. ```bash title=">_ Terminal" REPOSITORY TAG IMAGE ID CREATED SIZE -armadaalliance/armada-cn 8.7.2 da4414775ce6 37 seconds ago 700MB +armadaalliance/armada-cn 8.9.3 da4414775ce6 37 seconds ago 700MB f3891eef21e4 3 minutes ago 1.09GB ``` @@ -191,7 +191,7 @@ Important: Change the directory paths CN_CONFIG_PATH and CN_DB_PATH to the corre ```bash title=">_ Terminal" ##Configuration for relay and block producing node CNIMAGENAME="armada/armada-cn" ## Name of the Cardano docker image -CNVERSION="8.7.2" ## Version of the cardano-node. It must match with the version of the docker i> +CNVERSION="8.9.3" ## Version of the cardano-node. It must match with the version of the docker i> CNNETWORK="preprod" ## Use "mainnet" if connecting node to the mainnet CNMODE="relay" ## Use "bp" if you configure the node as block production node CNPORT="3001" ## Define the port of the node @@ -228,7 +228,7 @@ If the docker node started successfully, you might see something like this: ```bash title=">_ Terminal" CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES -fed0cfbf7d86 armadaalliance/armada-cn:8.7.2 "bash title=">_ Terminal" -c /home/carda…" 12 seconds ago Up 10 seconds (healthy) 0.0.0.0:3001->3001/tcp, :::3001->3001/tcp, 0.0.0.0:12799->12798/tcp, :::12799->12798/tcp cardano-node-testnet-1.34.1 +fed0cfbf7d86 armadaalliance/armada-cn:8.9.3 "bash title=">_ Terminal" -c /home/carda…" 12 seconds ago Up 10 seconds (healthy) 0.0.0.0:3001->3001/tcp, :::3001->3001/tcp, 0.0.0.0:12799->12798/tcp, :::12799->12798/tcp cardano-node-testnet-1.34.1 ``` You can also check the logs of the running cardano-node: diff --git a/docs/stake-pool-guides/updating-a-cardano-node/static-build.mdx b/docs/stake-pool-guides/updating-a-cardano-node/static-build.mdx index d5116264..0f0a5882 100644 --- a/docs/stake-pool-guides/updating-a-cardano-node/static-build.mdx +++ b/docs/stake-pool-guides/updating-a-cardano-node/static-build.mdx @@ -8,7 +8,7 @@ This guide follows the same setup as our [Pi-Node guide and image](../pi-pool-tu ::: :::success -#### Current Official Cardano Node Version: [8.1.2](https://github.com/input-output-hk/cardano-node) +#### Current Official Cardano Node Version: [8.9.3](https://github.com/input-output-hk/cardano-node) ::: ### Overview 🗒 @@ -73,7 +73,7 @@ cardano-node --version #### Output: ```bash title=">_ Terminal" -cardano-node 8.1.2 - linux-aarch64 - ghc-8.10 +cardano-node 8.9.3 - linux-aarch64 - ghc-8.10 git rev 0000000000000000000000000000000000000000 ``` @@ -86,7 +86,7 @@ cardano-cli --version #### Output: ```bash title=">_ Terminal" -cardano-cli 8.1.2 - linux-aarch64 - ghc-8.10 +cardano-cli 8.9.3 - linux-aarch64 - ghc-8.10 git rev 0000000000000000000000000000000000000000 ``` diff --git a/docs/stake-pool-guides/updating-a-cardano-node/using-dynamic-build.mdx b/docs/stake-pool-guides/updating-a-cardano-node/using-dynamic-build.mdx index 763bdbef..4c7d508e 100644 --- a/docs/stake-pool-guides/updating-a-cardano-node/using-dynamic-build.mdx +++ b/docs/stake-pool-guides/updating-a-cardano-node/using-dynamic-build.mdx @@ -11,7 +11,7 @@ import TabItem from "@theme/TabItem"; :::success -#### Current Official Cardano Node Version: [8.1.2](https://github.com/input-output-hk/cardano-node) +#### Current Official Cardano Node Version: [8.9.3](https://github.com/input-output-hk/cardano-node) ::: ### Overview 🗒 @@ -145,7 +145,7 @@ This ensures the system is aware of libsodium (not just at the user level). Dynamic binaries and Cardano node configuration files provided by [SRN pool ](https://armada-alliance.com/stake-pools/cc1b1c03798884c636703443a23b8d9e827d6c0417921600394198a0):pray: at our [Github repository](https://github.com/armada-alliance/cardano-node-binaries). ```bash title=">_ Terminal" -wget -O cardano-8_1_2-aarch64-ubuntu_2004.zip https://github.com/armada-alliance/cardano-node-binaries/blob/main/dynamic-binaries/8.1.2/cardano-8_1_2-aarch64-ubuntu_2004.zip?raw=true +wget -O cardano-8_1_2-aarch64-ubuntu_2004.zip https://github.com/armada-alliance/cardano-node-binaries/blob/main/dynamic-binaries/8.9.3/cardano-8_1_2-aarch64-ubuntu_2004.zip?raw=true ``` Extract the content from the zip file. @@ -190,7 +190,7 @@ cardano-node --version #### Output: ```bash title=">_ Terminal" -cardano-node 8.1.2 - linux-aarch64 - ghc-8.10 +cardano-node 8.9.3 - linux-aarch64 - ghc-8.10 git rev d2d90b48c5577b4412d5c9c9968b55f8ab4b9767 ``` @@ -203,7 +203,7 @@ cardano-cli --version #### Output: ```bash title=">_ Terminal" -cardano-cli 8.1.2 - linux-aarch64 - ghc-8.10 +cardano-cli 8.9.3 - linux-aarch64 - ghc-8.10 git rev d2d90b48c5577b4412d5c9c9968b55f8ab4b9767 ```