Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pages/nodes/run_node/method1.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

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

Expand Down
2 changes: 1 addition & 1 deletion pages/nodes/run_node/method2.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

</Steps>
Expand Down
4 changes: 2 additions & 2 deletions public/scripts/docker-setup-beam-validator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down