diff --git a/pages/nodes/run_node/method1.mdx b/pages/nodes/run_node/method1.mdx index 2ea6e129..f5dc649e 100644 --- a/pages/nodes/run_node/method1.mdx +++ b/pages/nodes/run_node/method1.mdx @@ -5,7 +5,7 @@ import { Callout, Steps } from "nextra/components"; ## Installing AvalancheGo -The first step to running a Beam Node is installing AvalancheGo, the client for the Avalanche network. The easiest method is using the installer which you can find [here](https://build.avax.network/docs/nodes/using-install-script/installing-avalanche-go). Please note that this guide is compatible with AvalancheGo version 1.13.0. +The first step to running a Beam Node is installing AvalancheGo, the client for the Avalanche network. The easiest method is using the installer which you can find [here](https://build.avax.network/docs/nodes/using-install-script/installing-avalanche-go). Please note that this guide is compatible with AvalancheGo version 1.14.0. ## Installing the Beam Network-EVM @@ -18,8 +18,8 @@ First, download the Subnet-EVM binary from [Ava-Labs GitHub](https://github.com/ ```bash mkdir subnetevm cd subnetevm -wget https://github.com/ava-labs/subnet-evm/releases/download/v0.7.3/subnet-evm_0.7.3_linux_amd64.tar.gz -tar -xvzf subnet-evm_0.7.3_linux_amd64.tar.gz +wget https://github.com/ava-labs/subnet-evm/releases/download/v0.8.0/subnet-evm_0.8.0_linux_amd64.tar.gz +tar -xvzf subnet-evm_0.8.0_linux_amd64.tar.gz cp subnet-evm ~/.avalanchego/plugins/kLPs8zGsTVZ28DhP1VefPCFbCgS7o5bDNez8JUxPVw9E6Ubbz ``` diff --git a/pages/nodes/run_node/method2.mdx b/pages/nodes/run_node/method2.mdx index e96195b3..224a17af 100644 --- a/pages/nodes/run_node/method2.mdx +++ b/pages/nodes/run_node/method2.mdx @@ -53,7 +53,7 @@ docker run -it -d \ -e AVAGO_HTTP_HOST=0.0.0.0 \ -e AVAGO_TRACK_SUBNETS=eYwmVU67LmSfZb1RwqCMhBYkFyG8ftxn6jAwqzFmxC9STBWLC \ -e VM_ID=kLPs8zGsTVZ28DhP1VefPCFbCgS7o5bDNez8JUxPVw9E6Ubbz \ - avaplatform/subnet-evm_avalanchego:v0.7.4_v1.13.1 + avaplatform/subnet-evm_avalanchego:v0.8.0_v1.14.0 ``` diff --git a/public/scripts/docker-setup-beam-validator.sh b/public/scripts/docker-setup-beam-validator.sh index adecf903..0441885c 100644 --- a/public/scripts/docker-setup-beam-validator.sh +++ b/public/scripts/docker-setup-beam-validator.sh @@ -13,8 +13,8 @@ ALIAS_TARGET="srEXiWaHuhNyGwPUi444Tu47ZEDwxTWrbQiuD7FmgSAQ6X7Dy" SUBNET_ID="eYwmVU67LmSfZb1RwqCMhBYkFyG8ftxn6jAwqzFmxC9STBWLC" NODE_INFO_FILE="node-info.json" -SUBNET_EVM_VERSION="v0.7.9" -AVALANCHEGO_VERSION="v1.13.5" +SUBNET_EVM_VERSION="v0.8.0" +AVALANCHEGO_VERSION="v1.14.0" IMAGE_TAG="${SUBNET_EVM_VERSION}_${AVALANCHEGO_VERSION}" IMAGE_NAME="avaplatform/subnet-evm_avalanchego:$IMAGE_TAG"